Instructions to use rmdhirr/kenanga-lora-b-2-2400 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use rmdhirr/kenanga-lora-b-2-2400 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/gemma-3-12b-it-unsloth-bnb-4bit") model = PeftModel.from_pretrained(base_model, "rmdhirr/kenanga-lora-b-2-2400") - Transformers
How to use rmdhirr/kenanga-lora-b-2-2400 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rmdhirr/kenanga-lora-b-2-2400") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("rmdhirr/kenanga-lora-b-2-2400", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use rmdhirr/kenanga-lora-b-2-2400 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rmdhirr/kenanga-lora-b-2-2400" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rmdhirr/kenanga-lora-b-2-2400", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rmdhirr/kenanga-lora-b-2-2400
- SGLang
How to use rmdhirr/kenanga-lora-b-2-2400 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "rmdhirr/kenanga-lora-b-2-2400" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rmdhirr/kenanga-lora-b-2-2400", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "rmdhirr/kenanga-lora-b-2-2400" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rmdhirr/kenanga-lora-b-2-2400", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use rmdhirr/kenanga-lora-b-2-2400 with Docker Model Runner:
docker model run hf.co/rmdhirr/kenanga-lora-b-2-2400
| { | |
| "best_global_step": 2400, | |
| "best_metric": 1.1524348258972168, | |
| "best_model_checkpoint": "outputs/checkpoint-2400", | |
| "epoch": 0.37644106344600425, | |
| "eval_steps": 300, | |
| "global_step": 2400, | |
| "is_hyper_param_search": false, | |
| "is_local_process_zero": true, | |
| "is_world_process_zero": true, | |
| "log_history": [ | |
| { | |
| "epoch": 0.0009614460148062686, | |
| "grad_norm": 5.263479232788086, | |
| "learning_rate": 2.3032629558541267e-07, | |
| "loss": 2.2998, | |
| "step": 5 | |
| }, | |
| { | |
| "epoch": 0.0019228920296125373, | |
| "grad_norm": 4.919901371002197, | |
| "learning_rate": 5.182341650671785e-07, | |
| "loss": 2.2468, | |
| "step": 10 | |
| }, | |
| { | |
| "epoch": 0.002884338044418806, | |
| "grad_norm": 3.7949042320251465, | |
| "learning_rate": 8.061420345489444e-07, | |
| "loss": 2.2097, | |
| "step": 15 | |
| }, | |
| { | |
| "epoch": 0.0038457840592250746, | |
| "grad_norm": 3.5610361099243164, | |
| "learning_rate": 1.0940499040307102e-06, | |
| "loss": 2.083, | |
| "step": 20 | |
| }, | |
| { | |
| "epoch": 0.0048072300740313436, | |
| "grad_norm": 3.32427978515625, | |
| "learning_rate": 1.381957773512476e-06, | |
| "loss": 2.0052, | |
| "step": 25 | |
| }, | |
| { | |
| "epoch": 0.005768676088837612, | |
| "grad_norm": 3.5147716999053955, | |
| "learning_rate": 1.6698656429942417e-06, | |
| "loss": 2.043, | |
| "step": 30 | |
| }, | |
| { | |
| "epoch": 0.006730122103643881, | |
| "grad_norm": 2.091193437576294, | |
| "learning_rate": 1.9577735124760077e-06, | |
| "loss": 2.0161, | |
| "step": 35 | |
| }, | |
| { | |
| "epoch": 0.007691568118450149, | |
| "grad_norm": 2.3086185455322266, | |
| "learning_rate": 2.2456813819577732e-06, | |
| "loss": 1.9567, | |
| "step": 40 | |
| }, | |
| { | |
| "epoch": 0.008653014133256417, | |
| "grad_norm": 1.6346129179000854, | |
| "learning_rate": 2.5335892514395392e-06, | |
| "loss": 1.8985, | |
| "step": 45 | |
| }, | |
| { | |
| "epoch": 0.009614460148062687, | |
| "grad_norm": 1.260735034942627, | |
| "learning_rate": 2.821497120921305e-06, | |
| "loss": 1.8132, | |
| "step": 50 | |
| }, | |
| { | |
| "epoch": 0.010575906162868956, | |
| "grad_norm": 1.5411990880966187, | |
| "learning_rate": 3.109404990403071e-06, | |
| "loss": 1.6944, | |
| "step": 55 | |
| }, | |
| { | |
| "epoch": 0.011537352177675224, | |
| "grad_norm": 1.319563388824463, | |
| "learning_rate": 3.397312859884837e-06, | |
| "loss": 1.7036, | |
| "step": 60 | |
| }, | |
| { | |
| "epoch": 0.012498798192481493, | |
| "grad_norm": 1.0878187417984009, | |
| "learning_rate": 3.6852207293666026e-06, | |
| "loss": 1.7662, | |
| "step": 65 | |
| }, | |
| { | |
| "epoch": 0.013460244207287761, | |
| "grad_norm": 1.1386423110961914, | |
| "learning_rate": 3.973128598848369e-06, | |
| "loss": 1.6783, | |
| "step": 70 | |
| }, | |
| { | |
| "epoch": 0.01442169022209403, | |
| "grad_norm": 1.2391140460968018, | |
| "learning_rate": 4.2610364683301346e-06, | |
| "loss": 1.5672, | |
| "step": 75 | |
| }, | |
| { | |
| "epoch": 0.015383136236900298, | |
| "grad_norm": 1.0566521883010864, | |
| "learning_rate": 4.5489443378119e-06, | |
| "loss": 1.6949, | |
| "step": 80 | |
| }, | |
| { | |
| "epoch": 0.016344582251706565, | |
| "grad_norm": 1.0937573909759521, | |
| "learning_rate": 4.8368522072936665e-06, | |
| "loss": 1.5464, | |
| "step": 85 | |
| }, | |
| { | |
| "epoch": 0.017306028266512834, | |
| "grad_norm": 1.0400891304016113, | |
| "learning_rate": 5.124760076775432e-06, | |
| "loss": 1.5824, | |
| "step": 90 | |
| }, | |
| { | |
| "epoch": 0.018267474281319102, | |
| "grad_norm": 1.1960211992263794, | |
| "learning_rate": 5.4126679462571984e-06, | |
| "loss": 1.6269, | |
| "step": 95 | |
| }, | |
| { | |
| "epoch": 0.019228920296125374, | |
| "grad_norm": 1.197791576385498, | |
| "learning_rate": 5.7005758157389635e-06, | |
| "loss": 1.5177, | |
| "step": 100 | |
| }, | |
| { | |
| "epoch": 0.020190366310931643, | |
| "grad_norm": 0.9536961913108826, | |
| "learning_rate": 5.9884836852207295e-06, | |
| "loss": 1.6222, | |
| "step": 105 | |
| }, | |
| { | |
| "epoch": 0.02115181232573791, | |
| "grad_norm": 0.9854758977890015, | |
| "learning_rate": 6.2763915547024955e-06, | |
| "loss": 1.5503, | |
| "step": 110 | |
| }, | |
| { | |
| "epoch": 0.02211325834054418, | |
| "grad_norm": 0.8579792976379395, | |
| "learning_rate": 6.5642994241842614e-06, | |
| "loss": 1.5246, | |
| "step": 115 | |
| }, | |
| { | |
| "epoch": 0.02307470435535045, | |
| "grad_norm": 0.8161287307739258, | |
| "learning_rate": 6.852207293666027e-06, | |
| "loss": 1.5207, | |
| "step": 120 | |
| }, | |
| { | |
| "epoch": 0.024036150370156717, | |
| "grad_norm": 1.0825903415679932, | |
| "learning_rate": 7.1401151631477925e-06, | |
| "loss": 1.4963, | |
| "step": 125 | |
| }, | |
| { | |
| "epoch": 0.024997596384962985, | |
| "grad_norm": 0.9904459118843079, | |
| "learning_rate": 7.4280230326295585e-06, | |
| "loss": 1.5351, | |
| "step": 130 | |
| }, | |
| { | |
| "epoch": 0.025959042399769254, | |
| "grad_norm": 1.0706708431243896, | |
| "learning_rate": 7.715930902111324e-06, | |
| "loss": 1.477, | |
| "step": 135 | |
| }, | |
| { | |
| "epoch": 0.026920488414575523, | |
| "grad_norm": 0.910792887210846, | |
| "learning_rate": 8.003838771593091e-06, | |
| "loss": 1.563, | |
| "step": 140 | |
| }, | |
| { | |
| "epoch": 0.02788193442938179, | |
| "grad_norm": 0.8813047409057617, | |
| "learning_rate": 8.291746641074856e-06, | |
| "loss": 1.5286, | |
| "step": 145 | |
| }, | |
| { | |
| "epoch": 0.02884338044418806, | |
| "grad_norm": 1.135494589805603, | |
| "learning_rate": 8.579654510556621e-06, | |
| "loss": 1.4987, | |
| "step": 150 | |
| }, | |
| { | |
| "epoch": 0.029804826458994328, | |
| "grad_norm": 1.4200812578201294, | |
| "learning_rate": 8.867562380038388e-06, | |
| "loss": 1.5176, | |
| "step": 155 | |
| }, | |
| { | |
| "epoch": 0.030766272473800597, | |
| "grad_norm": 0.9361958503723145, | |
| "learning_rate": 9.155470249520153e-06, | |
| "loss": 1.5375, | |
| "step": 160 | |
| }, | |
| { | |
| "epoch": 0.031727718488606865, | |
| "grad_norm": 0.7996511459350586, | |
| "learning_rate": 9.44337811900192e-06, | |
| "loss": 1.504, | |
| "step": 165 | |
| }, | |
| { | |
| "epoch": 0.03268916450341313, | |
| "grad_norm": 0.8341512680053711, | |
| "learning_rate": 9.731285988483685e-06, | |
| "loss": 1.5099, | |
| "step": 170 | |
| }, | |
| { | |
| "epoch": 0.0336506105182194, | |
| "grad_norm": 0.8165861368179321, | |
| "learning_rate": 1.001919385796545e-05, | |
| "loss": 1.4714, | |
| "step": 175 | |
| }, | |
| { | |
| "epoch": 0.03461205653302567, | |
| "grad_norm": 1.0153369903564453, | |
| "learning_rate": 1.0307101727447217e-05, | |
| "loss": 1.4675, | |
| "step": 180 | |
| }, | |
| { | |
| "epoch": 0.03557350254783194, | |
| "grad_norm": 0.8753921985626221, | |
| "learning_rate": 1.0595009596928982e-05, | |
| "loss": 1.478, | |
| "step": 185 | |
| }, | |
| { | |
| "epoch": 0.036534948562638205, | |
| "grad_norm": 0.8925352096557617, | |
| "learning_rate": 1.088291746641075e-05, | |
| "loss": 1.4238, | |
| "step": 190 | |
| }, | |
| { | |
| "epoch": 0.037496394577444477, | |
| "grad_norm": 0.8326230049133301, | |
| "learning_rate": 1.1170825335892514e-05, | |
| "loss": 1.4648, | |
| "step": 195 | |
| }, | |
| { | |
| "epoch": 0.03845784059225075, | |
| "grad_norm": 1.0663974285125732, | |
| "learning_rate": 1.1458733205374281e-05, | |
| "loss": 1.5123, | |
| "step": 200 | |
| }, | |
| { | |
| "epoch": 0.039419286607057014, | |
| "grad_norm": 1.0833837985992432, | |
| "learning_rate": 1.1746641074856046e-05, | |
| "loss": 1.5031, | |
| "step": 205 | |
| }, | |
| { | |
| "epoch": 0.040380732621863286, | |
| "grad_norm": 0.8054072260856628, | |
| "learning_rate": 1.2034548944337811e-05, | |
| "loss": 1.4416, | |
| "step": 210 | |
| }, | |
| { | |
| "epoch": 0.04134217863666955, | |
| "grad_norm": 0.8595219850540161, | |
| "learning_rate": 1.2322456813819578e-05, | |
| "loss": 1.4417, | |
| "step": 215 | |
| }, | |
| { | |
| "epoch": 0.04230362465147582, | |
| "grad_norm": 0.8635595440864563, | |
| "learning_rate": 1.2610364683301345e-05, | |
| "loss": 1.4175, | |
| "step": 220 | |
| }, | |
| { | |
| "epoch": 0.04326507066628209, | |
| "grad_norm": 0.8640530705451965, | |
| "learning_rate": 1.289827255278311e-05, | |
| "loss": 1.4442, | |
| "step": 225 | |
| }, | |
| { | |
| "epoch": 0.04422651668108836, | |
| "grad_norm": 0.8653771281242371, | |
| "learning_rate": 1.3186180422264875e-05, | |
| "loss": 1.4193, | |
| "step": 230 | |
| }, | |
| { | |
| "epoch": 0.045187962695894625, | |
| "grad_norm": 0.7947669625282288, | |
| "learning_rate": 1.347408829174664e-05, | |
| "loss": 1.4092, | |
| "step": 235 | |
| }, | |
| { | |
| "epoch": 0.0461494087107009, | |
| "grad_norm": 0.8416963815689087, | |
| "learning_rate": 1.3761996161228407e-05, | |
| "loss": 1.5512, | |
| "step": 240 | |
| }, | |
| { | |
| "epoch": 0.04711085472550716, | |
| "grad_norm": 0.9726578593254089, | |
| "learning_rate": 1.4049904030710174e-05, | |
| "loss": 1.4525, | |
| "step": 245 | |
| }, | |
| { | |
| "epoch": 0.048072300740313434, | |
| "grad_norm": 1.0061571598052979, | |
| "learning_rate": 1.4337811900191939e-05, | |
| "loss": 1.4552, | |
| "step": 250 | |
| }, | |
| { | |
| "epoch": 0.0490337467551197, | |
| "grad_norm": 0.8465285897254944, | |
| "learning_rate": 1.4625719769673704e-05, | |
| "loss": 1.3991, | |
| "step": 255 | |
| }, | |
| { | |
| "epoch": 0.04999519276992597, | |
| "grad_norm": 0.9697036147117615, | |
| "learning_rate": 1.491362763915547e-05, | |
| "loss": 1.4067, | |
| "step": 260 | |
| }, | |
| { | |
| "epoch": 0.050956638784732236, | |
| "grad_norm": 0.9910932183265686, | |
| "learning_rate": 1.5201535508637236e-05, | |
| "loss": 1.4834, | |
| "step": 265 | |
| }, | |
| { | |
| "epoch": 0.05191808479953851, | |
| "grad_norm": 0.937353789806366, | |
| "learning_rate": 1.5489443378119003e-05, | |
| "loss": 1.4806, | |
| "step": 270 | |
| }, | |
| { | |
| "epoch": 0.05287953081434477, | |
| "grad_norm": 0.873612105846405, | |
| "learning_rate": 1.577735124760077e-05, | |
| "loss": 1.4694, | |
| "step": 275 | |
| }, | |
| { | |
| "epoch": 0.053840976829151045, | |
| "grad_norm": 0.7373448610305786, | |
| "learning_rate": 1.6065259117082533e-05, | |
| "loss": 1.4042, | |
| "step": 280 | |
| }, | |
| { | |
| "epoch": 0.05480242284395731, | |
| "grad_norm": 0.771385908126831, | |
| "learning_rate": 1.63531669865643e-05, | |
| "loss": 1.418, | |
| "step": 285 | |
| }, | |
| { | |
| "epoch": 0.05576386885876358, | |
| "grad_norm": 0.8392884731292725, | |
| "learning_rate": 1.6641074856046063e-05, | |
| "loss": 1.3782, | |
| "step": 290 | |
| }, | |
| { | |
| "epoch": 0.05672531487356985, | |
| "grad_norm": 0.8971521258354187, | |
| "learning_rate": 1.692898272552783e-05, | |
| "loss": 1.503, | |
| "step": 295 | |
| }, | |
| { | |
| "epoch": 0.05768676088837612, | |
| "grad_norm": 0.938372790813446, | |
| "learning_rate": 1.72168905950096e-05, | |
| "loss": 1.4005, | |
| "step": 300 | |
| }, | |
| { | |
| "epoch": 0.05768676088837612, | |
| "eval_loss": 1.4069678783416748, | |
| "eval_runtime": 1829.2346, | |
| "eval_samples_per_second": 11.372, | |
| "eval_steps_per_second": 2.843, | |
| "step": 300 | |
| }, | |
| { | |
| "epoch": 0.058648206903182384, | |
| "grad_norm": 0.8293926119804382, | |
| "learning_rate": 1.7504798464491364e-05, | |
| "loss": 1.3648, | |
| "step": 305 | |
| }, | |
| { | |
| "epoch": 0.059609652917988656, | |
| "grad_norm": 0.9733208417892456, | |
| "learning_rate": 1.779270633397313e-05, | |
| "loss": 1.4087, | |
| "step": 310 | |
| }, | |
| { | |
| "epoch": 0.06057109893279492, | |
| "grad_norm": 0.9246333241462708, | |
| "learning_rate": 1.8080614203454894e-05, | |
| "loss": 1.4551, | |
| "step": 315 | |
| }, | |
| { | |
| "epoch": 0.061532544947601193, | |
| "grad_norm": 0.7493950724601746, | |
| "learning_rate": 1.836852207293666e-05, | |
| "loss": 1.4551, | |
| "step": 320 | |
| }, | |
| { | |
| "epoch": 0.06249399096240746, | |
| "grad_norm": 1.0027576684951782, | |
| "learning_rate": 1.8656429942418428e-05, | |
| "loss": 1.3908, | |
| "step": 325 | |
| }, | |
| { | |
| "epoch": 0.06345543697721373, | |
| "grad_norm": 0.8040695190429688, | |
| "learning_rate": 1.894433781190019e-05, | |
| "loss": 1.424, | |
| "step": 330 | |
| }, | |
| { | |
| "epoch": 0.06441688299202, | |
| "grad_norm": 0.8406041264533997, | |
| "learning_rate": 1.9232245681381958e-05, | |
| "loss": 1.353, | |
| "step": 335 | |
| }, | |
| { | |
| "epoch": 0.06537832900682626, | |
| "grad_norm": 0.9334944486618042, | |
| "learning_rate": 1.952015355086372e-05, | |
| "loss": 1.431, | |
| "step": 340 | |
| }, | |
| { | |
| "epoch": 0.06633977502163253, | |
| "grad_norm": 0.7912152409553528, | |
| "learning_rate": 1.980806142034549e-05, | |
| "loss": 1.4298, | |
| "step": 345 | |
| }, | |
| { | |
| "epoch": 0.0673012210364388, | |
| "grad_norm": 0.9743331670761108, | |
| "learning_rate": 2.009596928982726e-05, | |
| "loss": 1.357, | |
| "step": 350 | |
| }, | |
| { | |
| "epoch": 0.06826266705124508, | |
| "grad_norm": 0.9452155232429504, | |
| "learning_rate": 2.0383877159309022e-05, | |
| "loss": 1.4023, | |
| "step": 355 | |
| }, | |
| { | |
| "epoch": 0.06922411306605133, | |
| "grad_norm": 0.8321967124938965, | |
| "learning_rate": 2.067178502879079e-05, | |
| "loss": 1.4188, | |
| "step": 360 | |
| }, | |
| { | |
| "epoch": 0.0701855590808576, | |
| "grad_norm": 0.8946035504341125, | |
| "learning_rate": 2.0959692898272552e-05, | |
| "loss": 1.3417, | |
| "step": 365 | |
| }, | |
| { | |
| "epoch": 0.07114700509566388, | |
| "grad_norm": 0.8722978234291077, | |
| "learning_rate": 2.124760076775432e-05, | |
| "loss": 1.4045, | |
| "step": 370 | |
| }, | |
| { | |
| "epoch": 0.07210845111047015, | |
| "grad_norm": 1.0040546655654907, | |
| "learning_rate": 2.1535508637236086e-05, | |
| "loss": 1.4069, | |
| "step": 375 | |
| }, | |
| { | |
| "epoch": 0.07306989712527641, | |
| "grad_norm": 0.8072942495346069, | |
| "learning_rate": 2.182341650671785e-05, | |
| "loss": 1.3406, | |
| "step": 380 | |
| }, | |
| { | |
| "epoch": 0.07403134314008268, | |
| "grad_norm": 0.9878551363945007, | |
| "learning_rate": 2.2111324376199616e-05, | |
| "loss": 1.4355, | |
| "step": 385 | |
| }, | |
| { | |
| "epoch": 0.07499278915488895, | |
| "grad_norm": 1.0963833332061768, | |
| "learning_rate": 2.2399232245681383e-05, | |
| "loss": 1.4208, | |
| "step": 390 | |
| }, | |
| { | |
| "epoch": 0.07595423516969523, | |
| "grad_norm": 0.9907721281051636, | |
| "learning_rate": 2.268714011516315e-05, | |
| "loss": 1.3403, | |
| "step": 395 | |
| }, | |
| { | |
| "epoch": 0.0769156811845015, | |
| "grad_norm": 0.9433814287185669, | |
| "learning_rate": 2.2975047984644916e-05, | |
| "loss": 1.3567, | |
| "step": 400 | |
| }, | |
| { | |
| "epoch": 0.07787712719930776, | |
| "grad_norm": 0.9044313430786133, | |
| "learning_rate": 2.326295585412668e-05, | |
| "loss": 1.4668, | |
| "step": 405 | |
| }, | |
| { | |
| "epoch": 0.07883857321411403, | |
| "grad_norm": 0.9079594612121582, | |
| "learning_rate": 2.3550863723608447e-05, | |
| "loss": 1.3796, | |
| "step": 410 | |
| }, | |
| { | |
| "epoch": 0.0798000192289203, | |
| "grad_norm": 0.9176523685455322, | |
| "learning_rate": 2.383877159309021e-05, | |
| "loss": 1.41, | |
| "step": 415 | |
| }, | |
| { | |
| "epoch": 0.08076146524372657, | |
| "grad_norm": 0.9850307106971741, | |
| "learning_rate": 2.4126679462571977e-05, | |
| "loss": 1.4052, | |
| "step": 420 | |
| }, | |
| { | |
| "epoch": 0.08172291125853283, | |
| "grad_norm": 1.0259281396865845, | |
| "learning_rate": 2.4414587332053744e-05, | |
| "loss": 1.4044, | |
| "step": 425 | |
| }, | |
| { | |
| "epoch": 0.0826843572733391, | |
| "grad_norm": 0.9912247061729431, | |
| "learning_rate": 2.470249520153551e-05, | |
| "loss": 1.3343, | |
| "step": 430 | |
| }, | |
| { | |
| "epoch": 0.08364580328814537, | |
| "grad_norm": 0.9430367946624756, | |
| "learning_rate": 2.4990403071017277e-05, | |
| "loss": 1.4015, | |
| "step": 435 | |
| }, | |
| { | |
| "epoch": 0.08460724930295165, | |
| "grad_norm": 0.9094961285591125, | |
| "learning_rate": 2.527831094049904e-05, | |
| "loss": 1.469, | |
| "step": 440 | |
| }, | |
| { | |
| "epoch": 0.0855686953177579, | |
| "grad_norm": 0.8672477006912231, | |
| "learning_rate": 2.5566218809980807e-05, | |
| "loss": 1.3456, | |
| "step": 445 | |
| }, | |
| { | |
| "epoch": 0.08653014133256418, | |
| "grad_norm": 0.9972670078277588, | |
| "learning_rate": 2.5854126679462574e-05, | |
| "loss": 1.2994, | |
| "step": 450 | |
| }, | |
| { | |
| "epoch": 0.08749158734737045, | |
| "grad_norm": 0.9733589887619019, | |
| "learning_rate": 2.6142034548944338e-05, | |
| "loss": 1.3375, | |
| "step": 455 | |
| }, | |
| { | |
| "epoch": 0.08845303336217672, | |
| "grad_norm": 0.9801984429359436, | |
| "learning_rate": 2.6429942418426104e-05, | |
| "loss": 1.3271, | |
| "step": 460 | |
| }, | |
| { | |
| "epoch": 0.08941447937698298, | |
| "grad_norm": 0.8056566715240479, | |
| "learning_rate": 2.6717850287907868e-05, | |
| "loss": 1.3696, | |
| "step": 465 | |
| }, | |
| { | |
| "epoch": 0.09037592539178925, | |
| "grad_norm": 0.9498573541641235, | |
| "learning_rate": 2.7005758157389635e-05, | |
| "loss": 1.3724, | |
| "step": 470 | |
| }, | |
| { | |
| "epoch": 0.09133737140659552, | |
| "grad_norm": 0.9388139247894287, | |
| "learning_rate": 2.7293666026871405e-05, | |
| "loss": 1.3394, | |
| "step": 475 | |
| }, | |
| { | |
| "epoch": 0.0922988174214018, | |
| "grad_norm": 0.9051626324653625, | |
| "learning_rate": 2.758157389635317e-05, | |
| "loss": 1.3465, | |
| "step": 480 | |
| }, | |
| { | |
| "epoch": 0.09326026343620805, | |
| "grad_norm": 1.0678194761276245, | |
| "learning_rate": 2.7869481765834935e-05, | |
| "loss": 1.3369, | |
| "step": 485 | |
| }, | |
| { | |
| "epoch": 0.09422170945101432, | |
| "grad_norm": 1.0179715156555176, | |
| "learning_rate": 2.81573896353167e-05, | |
| "loss": 1.2868, | |
| "step": 490 | |
| }, | |
| { | |
| "epoch": 0.0951831554658206, | |
| "grad_norm": 1.025252103805542, | |
| "learning_rate": 2.8445297504798465e-05, | |
| "loss": 1.4128, | |
| "step": 495 | |
| }, | |
| { | |
| "epoch": 0.09614460148062687, | |
| "grad_norm": 0.9994450211524963, | |
| "learning_rate": 2.8733205374280232e-05, | |
| "loss": 1.3105, | |
| "step": 500 | |
| }, | |
| { | |
| "epoch": 0.09710604749543313, | |
| "grad_norm": 1.0843088626861572, | |
| "learning_rate": 2.9021113243761996e-05, | |
| "loss": 1.4405, | |
| "step": 505 | |
| }, | |
| { | |
| "epoch": 0.0980674935102394, | |
| "grad_norm": 0.8648557662963867, | |
| "learning_rate": 2.9309021113243762e-05, | |
| "loss": 1.3738, | |
| "step": 510 | |
| }, | |
| { | |
| "epoch": 0.09902893952504567, | |
| "grad_norm": 1.0407732725143433, | |
| "learning_rate": 2.9596928982725526e-05, | |
| "loss": 1.4331, | |
| "step": 515 | |
| }, | |
| { | |
| "epoch": 0.09999038553985194, | |
| "grad_norm": 1.8220276832580566, | |
| "learning_rate": 2.9884836852207296e-05, | |
| "loss": 1.3347, | |
| "step": 520 | |
| }, | |
| { | |
| "epoch": 0.1009518315546582, | |
| "grad_norm": 0.8917143940925598, | |
| "learning_rate": 2.9990891610160915e-05, | |
| "loss": 1.3576, | |
| "step": 525 | |
| }, | |
| { | |
| "epoch": 0.10191327756946447, | |
| "grad_norm": 0.9336162209510803, | |
| "learning_rate": 2.9975710960429106e-05, | |
| "loss": 1.3353, | |
| "step": 530 | |
| }, | |
| { | |
| "epoch": 0.10287472358427074, | |
| "grad_norm": 0.9028390049934387, | |
| "learning_rate": 2.9960530310697297e-05, | |
| "loss": 1.4185, | |
| "step": 535 | |
| }, | |
| { | |
| "epoch": 0.10383616959907702, | |
| "grad_norm": 0.9123654365539551, | |
| "learning_rate": 2.9945349660965488e-05, | |
| "loss": 1.3747, | |
| "step": 540 | |
| }, | |
| { | |
| "epoch": 0.10479761561388327, | |
| "grad_norm": 0.9282749891281128, | |
| "learning_rate": 2.993016901123368e-05, | |
| "loss": 1.3323, | |
| "step": 545 | |
| }, | |
| { | |
| "epoch": 0.10575906162868955, | |
| "grad_norm": 1.06288743019104, | |
| "learning_rate": 2.9914988361501872e-05, | |
| "loss": 1.3638, | |
| "step": 550 | |
| }, | |
| { | |
| "epoch": 0.10672050764349582, | |
| "grad_norm": 0.9988644123077393, | |
| "learning_rate": 2.9899807711770063e-05, | |
| "loss": 1.3527, | |
| "step": 555 | |
| }, | |
| { | |
| "epoch": 0.10768195365830209, | |
| "grad_norm": 0.963537871837616, | |
| "learning_rate": 2.9884627062038254e-05, | |
| "loss": 1.3287, | |
| "step": 560 | |
| }, | |
| { | |
| "epoch": 0.10864339967310835, | |
| "grad_norm": 1.1065447330474854, | |
| "learning_rate": 2.9869446412306445e-05, | |
| "loss": 1.3152, | |
| "step": 565 | |
| }, | |
| { | |
| "epoch": 0.10960484568791462, | |
| "grad_norm": 0.9934567213058472, | |
| "learning_rate": 2.985426576257464e-05, | |
| "loss": 1.285, | |
| "step": 570 | |
| }, | |
| { | |
| "epoch": 0.11056629170272089, | |
| "grad_norm": 0.9684432148933411, | |
| "learning_rate": 2.983908511284283e-05, | |
| "loss": 1.4081, | |
| "step": 575 | |
| }, | |
| { | |
| "epoch": 0.11152773771752716, | |
| "grad_norm": 1.044866919517517, | |
| "learning_rate": 2.982390446311102e-05, | |
| "loss": 1.3684, | |
| "step": 580 | |
| }, | |
| { | |
| "epoch": 0.11248918373233342, | |
| "grad_norm": 0.9235266447067261, | |
| "learning_rate": 2.9808723813379215e-05, | |
| "loss": 1.2453, | |
| "step": 585 | |
| }, | |
| { | |
| "epoch": 0.1134506297471397, | |
| "grad_norm": 1.0257271528244019, | |
| "learning_rate": 2.9793543163647405e-05, | |
| "loss": 1.3664, | |
| "step": 590 | |
| }, | |
| { | |
| "epoch": 0.11441207576194597, | |
| "grad_norm": 1.1091939210891724, | |
| "learning_rate": 2.97783625139156e-05, | |
| "loss": 1.2905, | |
| "step": 595 | |
| }, | |
| { | |
| "epoch": 0.11537352177675224, | |
| "grad_norm": 0.9549099802970886, | |
| "learning_rate": 2.976318186418379e-05, | |
| "loss": 1.4162, | |
| "step": 600 | |
| }, | |
| { | |
| "epoch": 0.11537352177675224, | |
| "eval_loss": 1.3265293836593628, | |
| "eval_runtime": 1813.3194, | |
| "eval_samples_per_second": 11.472, | |
| "eval_steps_per_second": 2.868, | |
| "step": 600 | |
| }, | |
| { | |
| "epoch": 0.11633496779155851, | |
| "grad_norm": 1.1611406803131104, | |
| "learning_rate": 2.974800121445198e-05, | |
| "loss": 1.2258, | |
| "step": 605 | |
| }, | |
| { | |
| "epoch": 0.11729641380636477, | |
| "grad_norm": 1.0069003105163574, | |
| "learning_rate": 2.9732820564720172e-05, | |
| "loss": 1.2956, | |
| "step": 610 | |
| }, | |
| { | |
| "epoch": 0.11825785982117104, | |
| "grad_norm": 0.8448907732963562, | |
| "learning_rate": 2.9717639914988363e-05, | |
| "loss": 1.35, | |
| "step": 615 | |
| }, | |
| { | |
| "epoch": 0.11921930583597731, | |
| "grad_norm": 0.8714330792427063, | |
| "learning_rate": 2.9702459265256557e-05, | |
| "loss": 1.2409, | |
| "step": 620 | |
| }, | |
| { | |
| "epoch": 0.12018075185078358, | |
| "grad_norm": 0.8822401762008667, | |
| "learning_rate": 2.9687278615524747e-05, | |
| "loss": 1.3148, | |
| "step": 625 | |
| }, | |
| { | |
| "epoch": 0.12114219786558984, | |
| "grad_norm": 1.030093789100647, | |
| "learning_rate": 2.9672097965792938e-05, | |
| "loss": 1.3713, | |
| "step": 630 | |
| }, | |
| { | |
| "epoch": 0.12210364388039611, | |
| "grad_norm": 1.0077892541885376, | |
| "learning_rate": 2.965691731606113e-05, | |
| "loss": 1.354, | |
| "step": 635 | |
| }, | |
| { | |
| "epoch": 0.12306508989520239, | |
| "grad_norm": 1.0031296014785767, | |
| "learning_rate": 2.964173666632932e-05, | |
| "loss": 1.3483, | |
| "step": 640 | |
| }, | |
| { | |
| "epoch": 0.12402653591000866, | |
| "grad_norm": 0.9184396266937256, | |
| "learning_rate": 2.9626556016597514e-05, | |
| "loss": 1.2783, | |
| "step": 645 | |
| }, | |
| { | |
| "epoch": 0.12498798192481492, | |
| "grad_norm": 0.9425734281539917, | |
| "learning_rate": 2.9611375366865705e-05, | |
| "loss": 1.2896, | |
| "step": 650 | |
| }, | |
| { | |
| "epoch": 0.1259494279396212, | |
| "grad_norm": 0.8437754511833191, | |
| "learning_rate": 2.9596194717133895e-05, | |
| "loss": 1.3343, | |
| "step": 655 | |
| }, | |
| { | |
| "epoch": 0.12691087395442746, | |
| "grad_norm": 0.9617599844932556, | |
| "learning_rate": 2.9581014067402086e-05, | |
| "loss": 1.2472, | |
| "step": 660 | |
| }, | |
| { | |
| "epoch": 0.12787231996923373, | |
| "grad_norm": 0.9239601492881775, | |
| "learning_rate": 2.9565833417670277e-05, | |
| "loss": 1.3209, | |
| "step": 665 | |
| }, | |
| { | |
| "epoch": 0.12883376598404, | |
| "grad_norm": 0.9953628182411194, | |
| "learning_rate": 2.955065276793847e-05, | |
| "loss": 1.3152, | |
| "step": 670 | |
| }, | |
| { | |
| "epoch": 0.12979521199884628, | |
| "grad_norm": 0.8559119701385498, | |
| "learning_rate": 2.9535472118206662e-05, | |
| "loss": 1.3301, | |
| "step": 675 | |
| }, | |
| { | |
| "epoch": 0.13075665801365252, | |
| "grad_norm": 0.984180212020874, | |
| "learning_rate": 2.9520291468474853e-05, | |
| "loss": 1.3678, | |
| "step": 680 | |
| }, | |
| { | |
| "epoch": 0.1317181040284588, | |
| "grad_norm": 0.9163925647735596, | |
| "learning_rate": 2.9505110818743043e-05, | |
| "loss": 1.3398, | |
| "step": 685 | |
| }, | |
| { | |
| "epoch": 0.13267955004326507, | |
| "grad_norm": 1.1147078275680542, | |
| "learning_rate": 2.9489930169011234e-05, | |
| "loss": 1.2758, | |
| "step": 690 | |
| }, | |
| { | |
| "epoch": 0.13364099605807134, | |
| "grad_norm": 0.980420708656311, | |
| "learning_rate": 2.947474951927943e-05, | |
| "loss": 1.3137, | |
| "step": 695 | |
| }, | |
| { | |
| "epoch": 0.1346024420728776, | |
| "grad_norm": 1.0157663822174072, | |
| "learning_rate": 2.945956886954762e-05, | |
| "loss": 1.2144, | |
| "step": 700 | |
| }, | |
| { | |
| "epoch": 0.13556388808768388, | |
| "grad_norm": 0.8547846078872681, | |
| "learning_rate": 2.944438821981581e-05, | |
| "loss": 1.2879, | |
| "step": 705 | |
| }, | |
| { | |
| "epoch": 0.13652533410249015, | |
| "grad_norm": 1.018324851989746, | |
| "learning_rate": 2.9429207570084e-05, | |
| "loss": 1.267, | |
| "step": 710 | |
| }, | |
| { | |
| "epoch": 0.13748678011729643, | |
| "grad_norm": 0.832151472568512, | |
| "learning_rate": 2.941402692035219e-05, | |
| "loss": 1.3185, | |
| "step": 715 | |
| }, | |
| { | |
| "epoch": 0.13844822613210267, | |
| "grad_norm": 1.0583784580230713, | |
| "learning_rate": 2.9398846270620386e-05, | |
| "loss": 1.2489, | |
| "step": 720 | |
| }, | |
| { | |
| "epoch": 0.13940967214690894, | |
| "grad_norm": 1.0460695028305054, | |
| "learning_rate": 2.9383665620888576e-05, | |
| "loss": 1.3299, | |
| "step": 725 | |
| }, | |
| { | |
| "epoch": 0.1403711181617152, | |
| "grad_norm": 0.8800564408302307, | |
| "learning_rate": 2.9368484971156767e-05, | |
| "loss": 1.3494, | |
| "step": 730 | |
| }, | |
| { | |
| "epoch": 0.14133256417652149, | |
| "grad_norm": 0.9371108412742615, | |
| "learning_rate": 2.9353304321424958e-05, | |
| "loss": 1.3129, | |
| "step": 735 | |
| }, | |
| { | |
| "epoch": 0.14229401019132776, | |
| "grad_norm": 0.9252986907958984, | |
| "learning_rate": 2.933812367169315e-05, | |
| "loss": 1.3028, | |
| "step": 740 | |
| }, | |
| { | |
| "epoch": 0.14325545620613403, | |
| "grad_norm": 0.9625592827796936, | |
| "learning_rate": 2.9322943021961343e-05, | |
| "loss": 1.366, | |
| "step": 745 | |
| }, | |
| { | |
| "epoch": 0.1442169022209403, | |
| "grad_norm": 0.9188767671585083, | |
| "learning_rate": 2.9307762372229534e-05, | |
| "loss": 1.3584, | |
| "step": 750 | |
| }, | |
| { | |
| "epoch": 0.14517834823574657, | |
| "grad_norm": 0.8308439254760742, | |
| "learning_rate": 2.9292581722497724e-05, | |
| "loss": 1.2567, | |
| "step": 755 | |
| }, | |
| { | |
| "epoch": 0.14613979425055282, | |
| "grad_norm": 0.9764241576194763, | |
| "learning_rate": 2.9277401072765915e-05, | |
| "loss": 1.299, | |
| "step": 760 | |
| }, | |
| { | |
| "epoch": 0.1471012402653591, | |
| "grad_norm": 0.854916512966156, | |
| "learning_rate": 2.9262220423034106e-05, | |
| "loss": 1.2568, | |
| "step": 765 | |
| }, | |
| { | |
| "epoch": 0.14806268628016536, | |
| "grad_norm": 0.9988142251968384, | |
| "learning_rate": 2.92470397733023e-05, | |
| "loss": 1.2633, | |
| "step": 770 | |
| }, | |
| { | |
| "epoch": 0.14902413229497163, | |
| "grad_norm": 1.032973051071167, | |
| "learning_rate": 2.923185912357049e-05, | |
| "loss": 1.3592, | |
| "step": 775 | |
| }, | |
| { | |
| "epoch": 0.1499855783097779, | |
| "grad_norm": 1.057490587234497, | |
| "learning_rate": 2.921667847383868e-05, | |
| "loss": 1.3316, | |
| "step": 780 | |
| }, | |
| { | |
| "epoch": 0.15094702432458418, | |
| "grad_norm": 0.9987697005271912, | |
| "learning_rate": 2.9201497824106872e-05, | |
| "loss": 1.2957, | |
| "step": 785 | |
| }, | |
| { | |
| "epoch": 0.15190847033939045, | |
| "grad_norm": 1.0518527030944824, | |
| "learning_rate": 2.9186317174375063e-05, | |
| "loss": 1.3373, | |
| "step": 790 | |
| }, | |
| { | |
| "epoch": 0.15286991635419672, | |
| "grad_norm": 0.9941504001617432, | |
| "learning_rate": 2.9171136524643257e-05, | |
| "loss": 1.3207, | |
| "step": 795 | |
| }, | |
| { | |
| "epoch": 0.153831362369003, | |
| "grad_norm": 0.9565390348434448, | |
| "learning_rate": 2.9155955874911448e-05, | |
| "loss": 1.3035, | |
| "step": 800 | |
| }, | |
| { | |
| "epoch": 0.15479280838380924, | |
| "grad_norm": 0.9072451591491699, | |
| "learning_rate": 2.914077522517964e-05, | |
| "loss": 1.3077, | |
| "step": 805 | |
| }, | |
| { | |
| "epoch": 0.1557542543986155, | |
| "grad_norm": 0.8639485239982605, | |
| "learning_rate": 2.912559457544783e-05, | |
| "loss": 1.2388, | |
| "step": 810 | |
| }, | |
| { | |
| "epoch": 0.15671570041342178, | |
| "grad_norm": 0.8549638390541077, | |
| "learning_rate": 2.911041392571602e-05, | |
| "loss": 1.2112, | |
| "step": 815 | |
| }, | |
| { | |
| "epoch": 0.15767714642822805, | |
| "grad_norm": 0.9586772322654724, | |
| "learning_rate": 2.9095233275984214e-05, | |
| "loss": 1.3981, | |
| "step": 820 | |
| }, | |
| { | |
| "epoch": 0.15863859244303433, | |
| "grad_norm": 1.0374456644058228, | |
| "learning_rate": 2.9080052626252405e-05, | |
| "loss": 1.2159, | |
| "step": 825 | |
| }, | |
| { | |
| "epoch": 0.1596000384578406, | |
| "grad_norm": 0.9278589487075806, | |
| "learning_rate": 2.9064871976520596e-05, | |
| "loss": 1.2849, | |
| "step": 830 | |
| }, | |
| { | |
| "epoch": 0.16056148447264687, | |
| "grad_norm": 0.8326074481010437, | |
| "learning_rate": 2.9049691326788787e-05, | |
| "loss": 1.3178, | |
| "step": 835 | |
| }, | |
| { | |
| "epoch": 0.16152293048745314, | |
| "grad_norm": 1.0694983005523682, | |
| "learning_rate": 2.9034510677056977e-05, | |
| "loss": 1.2796, | |
| "step": 840 | |
| }, | |
| { | |
| "epoch": 0.1624843765022594, | |
| "grad_norm": 1.1848194599151611, | |
| "learning_rate": 2.901933002732517e-05, | |
| "loss": 1.3145, | |
| "step": 845 | |
| }, | |
| { | |
| "epoch": 0.16344582251706566, | |
| "grad_norm": 1.1083351373672485, | |
| "learning_rate": 2.9004149377593362e-05, | |
| "loss": 1.3274, | |
| "step": 850 | |
| }, | |
| { | |
| "epoch": 0.16440726853187193, | |
| "grad_norm": 0.8984082937240601, | |
| "learning_rate": 2.8988968727861553e-05, | |
| "loss": 1.3023, | |
| "step": 855 | |
| }, | |
| { | |
| "epoch": 0.1653687145466782, | |
| "grad_norm": 1.0397671461105347, | |
| "learning_rate": 2.8973788078129744e-05, | |
| "loss": 1.2713, | |
| "step": 860 | |
| }, | |
| { | |
| "epoch": 0.16633016056148447, | |
| "grad_norm": 0.9931337237358093, | |
| "learning_rate": 2.8958607428397935e-05, | |
| "loss": 1.26, | |
| "step": 865 | |
| }, | |
| { | |
| "epoch": 0.16729160657629075, | |
| "grad_norm": 1.0527026653289795, | |
| "learning_rate": 2.894342677866613e-05, | |
| "loss": 1.2944, | |
| "step": 870 | |
| }, | |
| { | |
| "epoch": 0.16825305259109702, | |
| "grad_norm": 1.153441309928894, | |
| "learning_rate": 2.892824612893432e-05, | |
| "loss": 1.2475, | |
| "step": 875 | |
| }, | |
| { | |
| "epoch": 0.1692144986059033, | |
| "grad_norm": 0.8572908639907837, | |
| "learning_rate": 2.891306547920251e-05, | |
| "loss": 1.242, | |
| "step": 880 | |
| }, | |
| { | |
| "epoch": 0.17017594462070953, | |
| "grad_norm": 1.0271085500717163, | |
| "learning_rate": 2.88978848294707e-05, | |
| "loss": 1.3052, | |
| "step": 885 | |
| }, | |
| { | |
| "epoch": 0.1711373906355158, | |
| "grad_norm": 1.0767736434936523, | |
| "learning_rate": 2.8882704179738892e-05, | |
| "loss": 1.2851, | |
| "step": 890 | |
| }, | |
| { | |
| "epoch": 0.17209883665032208, | |
| "grad_norm": 0.9310041069984436, | |
| "learning_rate": 2.8867523530007086e-05, | |
| "loss": 1.367, | |
| "step": 895 | |
| }, | |
| { | |
| "epoch": 0.17306028266512835, | |
| "grad_norm": 0.8906955122947693, | |
| "learning_rate": 2.8852342880275277e-05, | |
| "loss": 1.2853, | |
| "step": 900 | |
| }, | |
| { | |
| "epoch": 0.17306028266512835, | |
| "eval_loss": 1.2756867408752441, | |
| "eval_runtime": 1880.9614, | |
| "eval_samples_per_second": 11.059, | |
| "eval_steps_per_second": 2.765, | |
| "step": 900 | |
| }, | |
| { | |
| "epoch": 0.17402172867993462, | |
| "grad_norm": 0.8874945640563965, | |
| "learning_rate": 2.8837162230543468e-05, | |
| "loss": 1.252, | |
| "step": 905 | |
| }, | |
| { | |
| "epoch": 0.1749831746947409, | |
| "grad_norm": 0.992651641368866, | |
| "learning_rate": 2.882198158081166e-05, | |
| "loss": 1.3451, | |
| "step": 910 | |
| }, | |
| { | |
| "epoch": 0.17594462070954717, | |
| "grad_norm": 1.1066889762878418, | |
| "learning_rate": 2.8806800931079852e-05, | |
| "loss": 1.2555, | |
| "step": 915 | |
| }, | |
| { | |
| "epoch": 0.17690606672435344, | |
| "grad_norm": 1.0017170906066895, | |
| "learning_rate": 2.8791620281348043e-05, | |
| "loss": 1.3645, | |
| "step": 920 | |
| }, | |
| { | |
| "epoch": 0.17786751273915968, | |
| "grad_norm": 1.146898627281189, | |
| "learning_rate": 2.8776439631616234e-05, | |
| "loss": 1.3557, | |
| "step": 925 | |
| }, | |
| { | |
| "epoch": 0.17882895875396596, | |
| "grad_norm": 0.9736440777778625, | |
| "learning_rate": 2.8761258981884425e-05, | |
| "loss": 1.2755, | |
| "step": 930 | |
| }, | |
| { | |
| "epoch": 0.17979040476877223, | |
| "grad_norm": 0.9591579437255859, | |
| "learning_rate": 2.8746078332152616e-05, | |
| "loss": 1.2618, | |
| "step": 935 | |
| }, | |
| { | |
| "epoch": 0.1807518507835785, | |
| "grad_norm": 1.3127062320709229, | |
| "learning_rate": 2.873089768242081e-05, | |
| "loss": 1.2494, | |
| "step": 940 | |
| }, | |
| { | |
| "epoch": 0.18171329679838477, | |
| "grad_norm": 1.2093756198883057, | |
| "learning_rate": 2.8715717032689e-05, | |
| "loss": 1.3055, | |
| "step": 945 | |
| }, | |
| { | |
| "epoch": 0.18267474281319104, | |
| "grad_norm": 1.2279831171035767, | |
| "learning_rate": 2.870053638295719e-05, | |
| "loss": 1.2797, | |
| "step": 950 | |
| }, | |
| { | |
| "epoch": 0.18363618882799732, | |
| "grad_norm": 0.9829315543174744, | |
| "learning_rate": 2.8685355733225382e-05, | |
| "loss": 1.252, | |
| "step": 955 | |
| }, | |
| { | |
| "epoch": 0.1845976348428036, | |
| "grad_norm": 1.0075795650482178, | |
| "learning_rate": 2.8670175083493573e-05, | |
| "loss": 1.2432, | |
| "step": 960 | |
| }, | |
| { | |
| "epoch": 0.18555908085760983, | |
| "grad_norm": 0.9815109968185425, | |
| "learning_rate": 2.8654994433761767e-05, | |
| "loss": 1.3011, | |
| "step": 965 | |
| }, | |
| { | |
| "epoch": 0.1865205268724161, | |
| "grad_norm": 0.9473528265953064, | |
| "learning_rate": 2.8639813784029958e-05, | |
| "loss": 1.328, | |
| "step": 970 | |
| }, | |
| { | |
| "epoch": 0.18748197288722238, | |
| "grad_norm": 1.0563870668411255, | |
| "learning_rate": 2.862463313429815e-05, | |
| "loss": 1.4197, | |
| "step": 975 | |
| }, | |
| { | |
| "epoch": 0.18844341890202865, | |
| "grad_norm": 0.999548614025116, | |
| "learning_rate": 2.860945248456634e-05, | |
| "loss": 1.2636, | |
| "step": 980 | |
| }, | |
| { | |
| "epoch": 0.18940486491683492, | |
| "grad_norm": 1.0543882846832275, | |
| "learning_rate": 2.859427183483453e-05, | |
| "loss": 1.2293, | |
| "step": 985 | |
| }, | |
| { | |
| "epoch": 0.1903663109316412, | |
| "grad_norm": 1.0018796920776367, | |
| "learning_rate": 2.8579091185102724e-05, | |
| "loss": 1.262, | |
| "step": 990 | |
| }, | |
| { | |
| "epoch": 0.19132775694644746, | |
| "grad_norm": 1.0547089576721191, | |
| "learning_rate": 2.8563910535370915e-05, | |
| "loss": 1.2329, | |
| "step": 995 | |
| }, | |
| { | |
| "epoch": 0.19228920296125374, | |
| "grad_norm": 0.9648796916007996, | |
| "learning_rate": 2.8548729885639106e-05, | |
| "loss": 1.327, | |
| "step": 1000 | |
| }, | |
| { | |
| "epoch": 0.19325064897606, | |
| "grad_norm": 0.964148998260498, | |
| "learning_rate": 2.8533549235907296e-05, | |
| "loss": 1.2733, | |
| "step": 1005 | |
| }, | |
| { | |
| "epoch": 0.19421209499086625, | |
| "grad_norm": 1.0552051067352295, | |
| "learning_rate": 2.8518368586175487e-05, | |
| "loss": 1.2462, | |
| "step": 1010 | |
| }, | |
| { | |
| "epoch": 0.19517354100567252, | |
| "grad_norm": 1.1029739379882812, | |
| "learning_rate": 2.850318793644368e-05, | |
| "loss": 1.2478, | |
| "step": 1015 | |
| }, | |
| { | |
| "epoch": 0.1961349870204788, | |
| "grad_norm": 1.1883385181427002, | |
| "learning_rate": 2.8488007286711872e-05, | |
| "loss": 1.1937, | |
| "step": 1020 | |
| }, | |
| { | |
| "epoch": 0.19709643303528507, | |
| "grad_norm": 0.9168397784233093, | |
| "learning_rate": 2.8472826636980063e-05, | |
| "loss": 1.3682, | |
| "step": 1025 | |
| }, | |
| { | |
| "epoch": 0.19805787905009134, | |
| "grad_norm": 0.9574885964393616, | |
| "learning_rate": 2.8457645987248254e-05, | |
| "loss": 1.2358, | |
| "step": 1030 | |
| }, | |
| { | |
| "epoch": 0.1990193250648976, | |
| "grad_norm": 1.0165746212005615, | |
| "learning_rate": 2.8442465337516444e-05, | |
| "loss": 1.2765, | |
| "step": 1035 | |
| }, | |
| { | |
| "epoch": 0.19998077107970388, | |
| "grad_norm": 0.8473765254020691, | |
| "learning_rate": 2.842728468778464e-05, | |
| "loss": 1.1938, | |
| "step": 1040 | |
| }, | |
| { | |
| "epoch": 0.20094221709451016, | |
| "grad_norm": 1.000200629234314, | |
| "learning_rate": 2.841210403805283e-05, | |
| "loss": 1.2242, | |
| "step": 1045 | |
| }, | |
| { | |
| "epoch": 0.2019036631093164, | |
| "grad_norm": 1.1640363931655884, | |
| "learning_rate": 2.839692338832102e-05, | |
| "loss": 1.3152, | |
| "step": 1050 | |
| }, | |
| { | |
| "epoch": 0.20286510912412267, | |
| "grad_norm": 1.0977058410644531, | |
| "learning_rate": 2.838174273858921e-05, | |
| "loss": 1.2639, | |
| "step": 1055 | |
| }, | |
| { | |
| "epoch": 0.20382655513892894, | |
| "grad_norm": 1.0105798244476318, | |
| "learning_rate": 2.83665620888574e-05, | |
| "loss": 1.2381, | |
| "step": 1060 | |
| }, | |
| { | |
| "epoch": 0.20478800115373522, | |
| "grad_norm": 0.9707632064819336, | |
| "learning_rate": 2.8351381439125596e-05, | |
| "loss": 1.2691, | |
| "step": 1065 | |
| }, | |
| { | |
| "epoch": 0.2057494471685415, | |
| "grad_norm": 0.8312526345252991, | |
| "learning_rate": 2.8336200789393787e-05, | |
| "loss": 1.2571, | |
| "step": 1070 | |
| }, | |
| { | |
| "epoch": 0.20671089318334776, | |
| "grad_norm": 0.8867915868759155, | |
| "learning_rate": 2.8321020139661977e-05, | |
| "loss": 1.3126, | |
| "step": 1075 | |
| }, | |
| { | |
| "epoch": 0.20767233919815403, | |
| "grad_norm": 0.9358422160148621, | |
| "learning_rate": 2.8305839489930168e-05, | |
| "loss": 1.3131, | |
| "step": 1080 | |
| }, | |
| { | |
| "epoch": 0.2086337852129603, | |
| "grad_norm": 1.0027930736541748, | |
| "learning_rate": 2.829065884019836e-05, | |
| "loss": 1.3345, | |
| "step": 1085 | |
| }, | |
| { | |
| "epoch": 0.20959523122776655, | |
| "grad_norm": 0.9601215720176697, | |
| "learning_rate": 2.8275478190466553e-05, | |
| "loss": 1.2801, | |
| "step": 1090 | |
| }, | |
| { | |
| "epoch": 0.21055667724257282, | |
| "grad_norm": 0.8792690634727478, | |
| "learning_rate": 2.8260297540734744e-05, | |
| "loss": 1.2366, | |
| "step": 1095 | |
| }, | |
| { | |
| "epoch": 0.2115181232573791, | |
| "grad_norm": 1.0058884620666504, | |
| "learning_rate": 2.8245116891002935e-05, | |
| "loss": 1.192, | |
| "step": 1100 | |
| }, | |
| { | |
| "epoch": 0.21247956927218536, | |
| "grad_norm": 1.0079177618026733, | |
| "learning_rate": 2.8229936241271125e-05, | |
| "loss": 1.2698, | |
| "step": 1105 | |
| }, | |
| { | |
| "epoch": 0.21344101528699164, | |
| "grad_norm": 1.0556343793869019, | |
| "learning_rate": 2.8214755591539316e-05, | |
| "loss": 1.2477, | |
| "step": 1110 | |
| }, | |
| { | |
| "epoch": 0.2144024613017979, | |
| "grad_norm": 0.9617932438850403, | |
| "learning_rate": 2.819957494180751e-05, | |
| "loss": 1.2387, | |
| "step": 1115 | |
| }, | |
| { | |
| "epoch": 0.21536390731660418, | |
| "grad_norm": 0.9451227188110352, | |
| "learning_rate": 2.81843942920757e-05, | |
| "loss": 1.276, | |
| "step": 1120 | |
| }, | |
| { | |
| "epoch": 0.21632535333141045, | |
| "grad_norm": 0.9511146545410156, | |
| "learning_rate": 2.8169213642343892e-05, | |
| "loss": 1.2211, | |
| "step": 1125 | |
| }, | |
| { | |
| "epoch": 0.2172867993462167, | |
| "grad_norm": 0.9459360241889954, | |
| "learning_rate": 2.8154032992612082e-05, | |
| "loss": 1.1895, | |
| "step": 1130 | |
| }, | |
| { | |
| "epoch": 0.21824824536102297, | |
| "grad_norm": 0.9601720571517944, | |
| "learning_rate": 2.8138852342880273e-05, | |
| "loss": 1.2573, | |
| "step": 1135 | |
| }, | |
| { | |
| "epoch": 0.21920969137582924, | |
| "grad_norm": 0.9400343894958496, | |
| "learning_rate": 2.8123671693148467e-05, | |
| "loss": 1.2944, | |
| "step": 1140 | |
| }, | |
| { | |
| "epoch": 0.2201711373906355, | |
| "grad_norm": 1.0376919507980347, | |
| "learning_rate": 2.8108491043416658e-05, | |
| "loss": 1.2634, | |
| "step": 1145 | |
| }, | |
| { | |
| "epoch": 0.22113258340544178, | |
| "grad_norm": 0.9042131304740906, | |
| "learning_rate": 2.809331039368485e-05, | |
| "loss": 1.2978, | |
| "step": 1150 | |
| }, | |
| { | |
| "epoch": 0.22209402942024806, | |
| "grad_norm": 0.8955277800559998, | |
| "learning_rate": 2.807812974395304e-05, | |
| "loss": 1.314, | |
| "step": 1155 | |
| }, | |
| { | |
| "epoch": 0.22305547543505433, | |
| "grad_norm": 0.9650217890739441, | |
| "learning_rate": 2.806294909422123e-05, | |
| "loss": 1.3183, | |
| "step": 1160 | |
| }, | |
| { | |
| "epoch": 0.2240169214498606, | |
| "grad_norm": 0.9972891211509705, | |
| "learning_rate": 2.8047768444489425e-05, | |
| "loss": 1.2108, | |
| "step": 1165 | |
| }, | |
| { | |
| "epoch": 0.22497836746466685, | |
| "grad_norm": 0.841851532459259, | |
| "learning_rate": 2.8032587794757615e-05, | |
| "loss": 1.2214, | |
| "step": 1170 | |
| }, | |
| { | |
| "epoch": 0.22593981347947312, | |
| "grad_norm": 1.0023276805877686, | |
| "learning_rate": 2.8017407145025806e-05, | |
| "loss": 1.3031, | |
| "step": 1175 | |
| }, | |
| { | |
| "epoch": 0.2269012594942794, | |
| "grad_norm": 0.9950117468833923, | |
| "learning_rate": 2.8002226495293997e-05, | |
| "loss": 1.2046, | |
| "step": 1180 | |
| }, | |
| { | |
| "epoch": 0.22786270550908566, | |
| "grad_norm": 0.9552078247070312, | |
| "learning_rate": 2.7987045845562188e-05, | |
| "loss": 1.2556, | |
| "step": 1185 | |
| }, | |
| { | |
| "epoch": 0.22882415152389193, | |
| "grad_norm": 0.9237502813339233, | |
| "learning_rate": 2.7971865195830382e-05, | |
| "loss": 1.3269, | |
| "step": 1190 | |
| }, | |
| { | |
| "epoch": 0.2297855975386982, | |
| "grad_norm": 0.8797445893287659, | |
| "learning_rate": 2.7956684546098576e-05, | |
| "loss": 1.2626, | |
| "step": 1195 | |
| }, | |
| { | |
| "epoch": 0.23074704355350448, | |
| "grad_norm": 1.0588504076004028, | |
| "learning_rate": 2.7941503896366767e-05, | |
| "loss": 1.2855, | |
| "step": 1200 | |
| }, | |
| { | |
| "epoch": 0.23074704355350448, | |
| "eval_loss": 1.2411783933639526, | |
| "eval_runtime": 1809.2447, | |
| "eval_samples_per_second": 11.498, | |
| "eval_steps_per_second": 2.875, | |
| "step": 1200 | |
| }, | |
| { | |
| "epoch": 0.23170848956831075, | |
| "grad_norm": 0.9612005352973938, | |
| "learning_rate": 2.7926323246634958e-05, | |
| "loss": 1.2355, | |
| "step": 1205 | |
| }, | |
| { | |
| "epoch": 0.23266993558311702, | |
| "grad_norm": 1.047343373298645, | |
| "learning_rate": 2.7911142596903148e-05, | |
| "loss": 1.3218, | |
| "step": 1210 | |
| }, | |
| { | |
| "epoch": 0.23363138159792327, | |
| "grad_norm": 1.1566919088363647, | |
| "learning_rate": 2.7895961947171342e-05, | |
| "loss": 1.235, | |
| "step": 1215 | |
| }, | |
| { | |
| "epoch": 0.23459282761272954, | |
| "grad_norm": 0.9153907895088196, | |
| "learning_rate": 2.7880781297439533e-05, | |
| "loss": 1.2727, | |
| "step": 1220 | |
| }, | |
| { | |
| "epoch": 0.2355542736275358, | |
| "grad_norm": 0.9632519483566284, | |
| "learning_rate": 2.7865600647707724e-05, | |
| "loss": 1.258, | |
| "step": 1225 | |
| }, | |
| { | |
| "epoch": 0.23651571964234208, | |
| "grad_norm": 0.9103459119796753, | |
| "learning_rate": 2.7850419997975915e-05, | |
| "loss": 1.2255, | |
| "step": 1230 | |
| }, | |
| { | |
| "epoch": 0.23747716565714835, | |
| "grad_norm": 0.9904808402061462, | |
| "learning_rate": 2.7835239348244105e-05, | |
| "loss": 1.1586, | |
| "step": 1235 | |
| }, | |
| { | |
| "epoch": 0.23843861167195463, | |
| "grad_norm": 0.9824590086936951, | |
| "learning_rate": 2.78200586985123e-05, | |
| "loss": 1.343, | |
| "step": 1240 | |
| }, | |
| { | |
| "epoch": 0.2394000576867609, | |
| "grad_norm": 1.057007074356079, | |
| "learning_rate": 2.780487804878049e-05, | |
| "loss": 1.2222, | |
| "step": 1245 | |
| }, | |
| { | |
| "epoch": 0.24036150370156717, | |
| "grad_norm": 1.0756044387817383, | |
| "learning_rate": 2.778969739904868e-05, | |
| "loss": 1.2955, | |
| "step": 1250 | |
| }, | |
| { | |
| "epoch": 0.2413229497163734, | |
| "grad_norm": 0.9179213643074036, | |
| "learning_rate": 2.7774516749316872e-05, | |
| "loss": 1.3747, | |
| "step": 1255 | |
| }, | |
| { | |
| "epoch": 0.24228439573117969, | |
| "grad_norm": 0.8226995468139648, | |
| "learning_rate": 2.7759336099585063e-05, | |
| "loss": 1.1311, | |
| "step": 1260 | |
| }, | |
| { | |
| "epoch": 0.24324584174598596, | |
| "grad_norm": 0.933071494102478, | |
| "learning_rate": 2.7744155449853257e-05, | |
| "loss": 1.2981, | |
| "step": 1265 | |
| }, | |
| { | |
| "epoch": 0.24420728776079223, | |
| "grad_norm": 1.0771886110305786, | |
| "learning_rate": 2.7728974800121448e-05, | |
| "loss": 1.2566, | |
| "step": 1270 | |
| }, | |
| { | |
| "epoch": 0.2451687337755985, | |
| "grad_norm": 1.0421266555786133, | |
| "learning_rate": 2.771379415038964e-05, | |
| "loss": 1.2516, | |
| "step": 1275 | |
| }, | |
| { | |
| "epoch": 0.24613017979040477, | |
| "grad_norm": 1.0798468589782715, | |
| "learning_rate": 2.769861350065783e-05, | |
| "loss": 1.2286, | |
| "step": 1280 | |
| }, | |
| { | |
| "epoch": 0.24709162580521105, | |
| "grad_norm": 1.0607397556304932, | |
| "learning_rate": 2.768343285092602e-05, | |
| "loss": 1.23, | |
| "step": 1285 | |
| }, | |
| { | |
| "epoch": 0.24805307182001732, | |
| "grad_norm": 1.0066001415252686, | |
| "learning_rate": 2.7668252201194214e-05, | |
| "loss": 1.1863, | |
| "step": 1290 | |
| }, | |
| { | |
| "epoch": 0.24901451783482356, | |
| "grad_norm": 0.9080028533935547, | |
| "learning_rate": 2.7653071551462405e-05, | |
| "loss": 1.2056, | |
| "step": 1295 | |
| }, | |
| { | |
| "epoch": 0.24997596384962983, | |
| "grad_norm": 1.03952157497406, | |
| "learning_rate": 2.7637890901730596e-05, | |
| "loss": 1.2561, | |
| "step": 1300 | |
| }, | |
| { | |
| "epoch": 0.25093740986443613, | |
| "grad_norm": 0.9551082849502563, | |
| "learning_rate": 2.7622710251998786e-05, | |
| "loss": 1.2647, | |
| "step": 1305 | |
| }, | |
| { | |
| "epoch": 0.2518988558792424, | |
| "grad_norm": 1.0255504846572876, | |
| "learning_rate": 2.7607529602266977e-05, | |
| "loss": 1.2722, | |
| "step": 1310 | |
| }, | |
| { | |
| "epoch": 0.2528603018940486, | |
| "grad_norm": 0.976844310760498, | |
| "learning_rate": 2.759234895253517e-05, | |
| "loss": 1.2058, | |
| "step": 1315 | |
| }, | |
| { | |
| "epoch": 0.2538217479088549, | |
| "grad_norm": 0.9272964000701904, | |
| "learning_rate": 2.7577168302803362e-05, | |
| "loss": 1.2655, | |
| "step": 1320 | |
| }, | |
| { | |
| "epoch": 0.25478319392366117, | |
| "grad_norm": 0.9797655344009399, | |
| "learning_rate": 2.7561987653071553e-05, | |
| "loss": 1.278, | |
| "step": 1325 | |
| }, | |
| { | |
| "epoch": 0.25574463993846747, | |
| "grad_norm": 0.9461880326271057, | |
| "learning_rate": 2.7546807003339744e-05, | |
| "loss": 1.2449, | |
| "step": 1330 | |
| }, | |
| { | |
| "epoch": 0.2567060859532737, | |
| "grad_norm": 0.9833115339279175, | |
| "learning_rate": 2.7531626353607934e-05, | |
| "loss": 1.1786, | |
| "step": 1335 | |
| }, | |
| { | |
| "epoch": 0.25766753196808, | |
| "grad_norm": 1.1373913288116455, | |
| "learning_rate": 2.751644570387613e-05, | |
| "loss": 1.2068, | |
| "step": 1340 | |
| }, | |
| { | |
| "epoch": 0.25862897798288625, | |
| "grad_norm": 0.9782432317733765, | |
| "learning_rate": 2.750126505414432e-05, | |
| "loss": 1.2333, | |
| "step": 1345 | |
| }, | |
| { | |
| "epoch": 0.25959042399769255, | |
| "grad_norm": 1.0395206212997437, | |
| "learning_rate": 2.748608440441251e-05, | |
| "loss": 1.1949, | |
| "step": 1350 | |
| }, | |
| { | |
| "epoch": 0.2605518700124988, | |
| "grad_norm": 0.9710389971733093, | |
| "learning_rate": 2.74709037546807e-05, | |
| "loss": 1.2321, | |
| "step": 1355 | |
| }, | |
| { | |
| "epoch": 0.26151331602730504, | |
| "grad_norm": 0.9782922267913818, | |
| "learning_rate": 2.7455723104948895e-05, | |
| "loss": 1.2246, | |
| "step": 1360 | |
| }, | |
| { | |
| "epoch": 0.26247476204211134, | |
| "grad_norm": 1.0231250524520874, | |
| "learning_rate": 2.7440542455217086e-05, | |
| "loss": 1.2761, | |
| "step": 1365 | |
| }, | |
| { | |
| "epoch": 0.2634362080569176, | |
| "grad_norm": 0.9569921493530273, | |
| "learning_rate": 2.7425361805485276e-05, | |
| "loss": 1.1911, | |
| "step": 1370 | |
| }, | |
| { | |
| "epoch": 0.2643976540717239, | |
| "grad_norm": 1.121079921722412, | |
| "learning_rate": 2.7410181155753467e-05, | |
| "loss": 1.2505, | |
| "step": 1375 | |
| }, | |
| { | |
| "epoch": 0.26535910008653013, | |
| "grad_norm": 0.9387443661689758, | |
| "learning_rate": 2.7395000506021658e-05, | |
| "loss": 1.2585, | |
| "step": 1380 | |
| }, | |
| { | |
| "epoch": 0.26632054610133643, | |
| "grad_norm": 1.0291073322296143, | |
| "learning_rate": 2.7379819856289852e-05, | |
| "loss": 1.1902, | |
| "step": 1385 | |
| }, | |
| { | |
| "epoch": 0.2672819921161427, | |
| "grad_norm": 1.0154651403427124, | |
| "learning_rate": 2.7364639206558043e-05, | |
| "loss": 1.1511, | |
| "step": 1390 | |
| }, | |
| { | |
| "epoch": 0.268243438130949, | |
| "grad_norm": 1.0184061527252197, | |
| "learning_rate": 2.7349458556826234e-05, | |
| "loss": 1.2372, | |
| "step": 1395 | |
| }, | |
| { | |
| "epoch": 0.2692048841457552, | |
| "grad_norm": 1.0806524753570557, | |
| "learning_rate": 2.7334277907094424e-05, | |
| "loss": 1.2685, | |
| "step": 1400 | |
| }, | |
| { | |
| "epoch": 0.27016633016056146, | |
| "grad_norm": 1.0703365802764893, | |
| "learning_rate": 2.7319097257362615e-05, | |
| "loss": 1.2318, | |
| "step": 1405 | |
| }, | |
| { | |
| "epoch": 0.27112777617536776, | |
| "grad_norm": 1.0059064626693726, | |
| "learning_rate": 2.730391660763081e-05, | |
| "loss": 1.227, | |
| "step": 1410 | |
| }, | |
| { | |
| "epoch": 0.272089222190174, | |
| "grad_norm": 1.0088706016540527, | |
| "learning_rate": 2.7288735957899e-05, | |
| "loss": 1.2514, | |
| "step": 1415 | |
| }, | |
| { | |
| "epoch": 0.2730506682049803, | |
| "grad_norm": 0.8656735420227051, | |
| "learning_rate": 2.727355530816719e-05, | |
| "loss": 1.1894, | |
| "step": 1420 | |
| }, | |
| { | |
| "epoch": 0.27401211421978655, | |
| "grad_norm": 0.9790570139884949, | |
| "learning_rate": 2.725837465843538e-05, | |
| "loss": 1.1832, | |
| "step": 1425 | |
| }, | |
| { | |
| "epoch": 0.27497356023459285, | |
| "grad_norm": 1.1856906414031982, | |
| "learning_rate": 2.7243194008703572e-05, | |
| "loss": 1.2734, | |
| "step": 1430 | |
| }, | |
| { | |
| "epoch": 0.2759350062493991, | |
| "grad_norm": 0.9872468113899231, | |
| "learning_rate": 2.7228013358971767e-05, | |
| "loss": 1.26, | |
| "step": 1435 | |
| }, | |
| { | |
| "epoch": 0.27689645226420534, | |
| "grad_norm": 0.8397803902626038, | |
| "learning_rate": 2.7212832709239957e-05, | |
| "loss": 1.239, | |
| "step": 1440 | |
| }, | |
| { | |
| "epoch": 0.27785789827901164, | |
| "grad_norm": 0.871387243270874, | |
| "learning_rate": 2.7197652059508148e-05, | |
| "loss": 1.1995, | |
| "step": 1445 | |
| }, | |
| { | |
| "epoch": 0.2788193442938179, | |
| "grad_norm": 0.9028294682502747, | |
| "learning_rate": 2.718247140977634e-05, | |
| "loss": 1.2067, | |
| "step": 1450 | |
| }, | |
| { | |
| "epoch": 0.2797807903086242, | |
| "grad_norm": 1.0373823642730713, | |
| "learning_rate": 2.716729076004453e-05, | |
| "loss": 1.2968, | |
| "step": 1455 | |
| }, | |
| { | |
| "epoch": 0.2807422363234304, | |
| "grad_norm": 0.8917548656463623, | |
| "learning_rate": 2.7152110110312724e-05, | |
| "loss": 1.2429, | |
| "step": 1460 | |
| }, | |
| { | |
| "epoch": 0.2817036823382367, | |
| "grad_norm": 1.0244743824005127, | |
| "learning_rate": 2.7136929460580915e-05, | |
| "loss": 1.2312, | |
| "step": 1465 | |
| }, | |
| { | |
| "epoch": 0.28266512835304297, | |
| "grad_norm": 1.1365673542022705, | |
| "learning_rate": 2.7121748810849105e-05, | |
| "loss": 1.2658, | |
| "step": 1470 | |
| }, | |
| { | |
| "epoch": 0.28362657436784927, | |
| "grad_norm": 1.018379807472229, | |
| "learning_rate": 2.7106568161117296e-05, | |
| "loss": 1.2666, | |
| "step": 1475 | |
| }, | |
| { | |
| "epoch": 0.2845880203826555, | |
| "grad_norm": 1.031159520149231, | |
| "learning_rate": 2.7091387511385487e-05, | |
| "loss": 1.2293, | |
| "step": 1480 | |
| }, | |
| { | |
| "epoch": 0.28554946639746176, | |
| "grad_norm": 0.9636439681053162, | |
| "learning_rate": 2.707620686165368e-05, | |
| "loss": 1.2292, | |
| "step": 1485 | |
| }, | |
| { | |
| "epoch": 0.28651091241226806, | |
| "grad_norm": 0.9116979837417603, | |
| "learning_rate": 2.7061026211921872e-05, | |
| "loss": 1.2468, | |
| "step": 1490 | |
| }, | |
| { | |
| "epoch": 0.2874723584270743, | |
| "grad_norm": 1.0782617330551147, | |
| "learning_rate": 2.7045845562190063e-05, | |
| "loss": 1.2427, | |
| "step": 1495 | |
| }, | |
| { | |
| "epoch": 0.2884338044418806, | |
| "grad_norm": 0.8577907085418701, | |
| "learning_rate": 2.7030664912458253e-05, | |
| "loss": 1.1824, | |
| "step": 1500 | |
| }, | |
| { | |
| "epoch": 0.2884338044418806, | |
| "eval_loss": 1.2134031057357788, | |
| "eval_runtime": 1809.8508, | |
| "eval_samples_per_second": 11.494, | |
| "eval_steps_per_second": 2.874, | |
| "step": 1500 | |
| }, | |
| { | |
| "epoch": 0.23605991686926517, | |
| "grad_norm": 0.9484060406684875, | |
| "learning_rate": 2.7855373947498763e-05, | |
| "loss": 1.2617, | |
| "step": 1505 | |
| }, | |
| { | |
| "epoch": 0.23684416908477768, | |
| "grad_norm": 1.177593469619751, | |
| "learning_rate": 2.7842991579990096e-05, | |
| "loss": 1.2651, | |
| "step": 1510 | |
| }, | |
| { | |
| "epoch": 0.23762842130029016, | |
| "grad_norm": 1.026624083518982, | |
| "learning_rate": 2.783060921248143e-05, | |
| "loss": 1.2084, | |
| "step": 1515 | |
| }, | |
| { | |
| "epoch": 0.23841267351580267, | |
| "grad_norm": 0.9503470659255981, | |
| "learning_rate": 2.7818226844972762e-05, | |
| "loss": 1.1794, | |
| "step": 1520 | |
| }, | |
| { | |
| "epoch": 0.23919692573131518, | |
| "grad_norm": 1.0257048606872559, | |
| "learning_rate": 2.7805844477464095e-05, | |
| "loss": 1.2519, | |
| "step": 1525 | |
| }, | |
| { | |
| "epoch": 0.2399811779468277, | |
| "grad_norm": 0.9679185152053833, | |
| "learning_rate": 2.7793462109955424e-05, | |
| "loss": 1.2237, | |
| "step": 1530 | |
| }, | |
| { | |
| "epoch": 0.2407654301623402, | |
| "grad_norm": 0.9033888578414917, | |
| "learning_rate": 2.7781079742446757e-05, | |
| "loss": 1.2419, | |
| "step": 1535 | |
| }, | |
| { | |
| "epoch": 0.2415496823778527, | |
| "grad_norm": 1.0314648151397705, | |
| "learning_rate": 2.776869737493809e-05, | |
| "loss": 1.1416, | |
| "step": 1540 | |
| }, | |
| { | |
| "epoch": 0.24233393459336522, | |
| "grad_norm": 1.0082125663757324, | |
| "learning_rate": 2.7756315007429422e-05, | |
| "loss": 1.21, | |
| "step": 1545 | |
| }, | |
| { | |
| "epoch": 0.24311818680887773, | |
| "grad_norm": 1.155539631843567, | |
| "learning_rate": 2.7743932639920755e-05, | |
| "loss": 1.2061, | |
| "step": 1550 | |
| }, | |
| { | |
| "epoch": 0.24390243902439024, | |
| "grad_norm": 0.9028305411338806, | |
| "learning_rate": 2.7731550272412088e-05, | |
| "loss": 1.2128, | |
| "step": 1555 | |
| }, | |
| { | |
| "epoch": 0.24468669123990275, | |
| "grad_norm": 0.9822825193405151, | |
| "learning_rate": 2.771916790490342e-05, | |
| "loss": 1.1644, | |
| "step": 1560 | |
| }, | |
| { | |
| "epoch": 0.24547094345541526, | |
| "grad_norm": 1.0660860538482666, | |
| "learning_rate": 2.7706785537394754e-05, | |
| "loss": 1.1766, | |
| "step": 1565 | |
| }, | |
| { | |
| "epoch": 0.24625519567092777, | |
| "grad_norm": 1.035258173942566, | |
| "learning_rate": 2.7694403169886083e-05, | |
| "loss": 1.2011, | |
| "step": 1570 | |
| }, | |
| { | |
| "epoch": 0.24703944788644028, | |
| "grad_norm": 1.058321475982666, | |
| "learning_rate": 2.7682020802377416e-05, | |
| "loss": 1.2155, | |
| "step": 1575 | |
| }, | |
| { | |
| "epoch": 0.2478237001019528, | |
| "grad_norm": 0.8912761807441711, | |
| "learning_rate": 2.766963843486875e-05, | |
| "loss": 1.2136, | |
| "step": 1580 | |
| }, | |
| { | |
| "epoch": 0.2486079523174653, | |
| "grad_norm": 1.1558911800384521, | |
| "learning_rate": 2.765725606736008e-05, | |
| "loss": 1.1699, | |
| "step": 1585 | |
| }, | |
| { | |
| "epoch": 0.2493922045329778, | |
| "grad_norm": 1.0567753314971924, | |
| "learning_rate": 2.764487369985141e-05, | |
| "loss": 1.1509, | |
| "step": 1590 | |
| }, | |
| { | |
| "epoch": 0.2501764567484903, | |
| "grad_norm": 1.043428659439087, | |
| "learning_rate": 2.7632491332342744e-05, | |
| "loss": 1.1715, | |
| "step": 1595 | |
| }, | |
| { | |
| "epoch": 0.2509607089640028, | |
| "grad_norm": 1.096039056777954, | |
| "learning_rate": 2.7620108964834077e-05, | |
| "loss": 1.23, | |
| "step": 1600 | |
| }, | |
| { | |
| "epoch": 0.25174496117951534, | |
| "grad_norm": 1.0177409648895264, | |
| "learning_rate": 2.760772659732541e-05, | |
| "loss": 1.1831, | |
| "step": 1605 | |
| }, | |
| { | |
| "epoch": 0.2525292133950278, | |
| "grad_norm": 0.9627098441123962, | |
| "learning_rate": 2.759534422981674e-05, | |
| "loss": 1.1984, | |
| "step": 1610 | |
| }, | |
| { | |
| "epoch": 0.25331346561054036, | |
| "grad_norm": 0.9108409285545349, | |
| "learning_rate": 2.7582961862308072e-05, | |
| "loss": 1.2579, | |
| "step": 1615 | |
| }, | |
| { | |
| "epoch": 0.25409771782605284, | |
| "grad_norm": 1.1243115663528442, | |
| "learning_rate": 2.7570579494799405e-05, | |
| "loss": 1.1519, | |
| "step": 1620 | |
| }, | |
| { | |
| "epoch": 0.2548819700415654, | |
| "grad_norm": 0.9947587847709656, | |
| "learning_rate": 2.7558197127290737e-05, | |
| "loss": 1.2171, | |
| "step": 1625 | |
| }, | |
| { | |
| "epoch": 0.25566622225707786, | |
| "grad_norm": 0.9268325567245483, | |
| "learning_rate": 2.754581475978207e-05, | |
| "loss": 1.1465, | |
| "step": 1630 | |
| }, | |
| { | |
| "epoch": 0.2564504744725904, | |
| "grad_norm": 0.9441059231758118, | |
| "learning_rate": 2.7533432392273403e-05, | |
| "loss": 1.1612, | |
| "step": 1635 | |
| }, | |
| { | |
| "epoch": 0.2572347266881029, | |
| "grad_norm": 0.9630559682846069, | |
| "learning_rate": 2.7521050024764736e-05, | |
| "loss": 1.2094, | |
| "step": 1640 | |
| }, | |
| { | |
| "epoch": 0.2580189789036154, | |
| "grad_norm": 0.8531478047370911, | |
| "learning_rate": 2.7508667657256065e-05, | |
| "loss": 1.1541, | |
| "step": 1645 | |
| }, | |
| { | |
| "epoch": 0.2588032311191279, | |
| "grad_norm": 0.8630156517028809, | |
| "learning_rate": 2.7496285289747398e-05, | |
| "loss": 1.1737, | |
| "step": 1650 | |
| }, | |
| { | |
| "epoch": 0.25958748333464043, | |
| "grad_norm": 1.0434770584106445, | |
| "learning_rate": 2.748390292223873e-05, | |
| "loss": 1.1819, | |
| "step": 1655 | |
| }, | |
| { | |
| "epoch": 0.2603717355501529, | |
| "grad_norm": 1.0269476175308228, | |
| "learning_rate": 2.7471520554730064e-05, | |
| "loss": 1.2117, | |
| "step": 1660 | |
| }, | |
| { | |
| "epoch": 0.26115598776566545, | |
| "grad_norm": 1.110245704650879, | |
| "learning_rate": 2.7459138187221397e-05, | |
| "loss": 1.226, | |
| "step": 1665 | |
| }, | |
| { | |
| "epoch": 0.26194023998117794, | |
| "grad_norm": 1.0157169103622437, | |
| "learning_rate": 2.744675581971273e-05, | |
| "loss": 1.1693, | |
| "step": 1670 | |
| }, | |
| { | |
| "epoch": 0.2627244921966905, | |
| "grad_norm": 1.019687533378601, | |
| "learning_rate": 2.7434373452204062e-05, | |
| "loss": 1.1955, | |
| "step": 1675 | |
| }, | |
| { | |
| "epoch": 0.26350874441220296, | |
| "grad_norm": 1.6299337148666382, | |
| "learning_rate": 2.7421991084695395e-05, | |
| "loss": 1.2044, | |
| "step": 1680 | |
| }, | |
| { | |
| "epoch": 0.2642929966277155, | |
| "grad_norm": 1.0400195121765137, | |
| "learning_rate": 2.7409608717186724e-05, | |
| "loss": 1.2014, | |
| "step": 1685 | |
| }, | |
| { | |
| "epoch": 0.265077248843228, | |
| "grad_norm": 0.9269382357597351, | |
| "learning_rate": 2.7397226349678057e-05, | |
| "loss": 1.1195, | |
| "step": 1690 | |
| }, | |
| { | |
| "epoch": 0.2658615010587405, | |
| "grad_norm": 0.8400747179985046, | |
| "learning_rate": 2.738484398216939e-05, | |
| "loss": 1.2513, | |
| "step": 1695 | |
| }, | |
| { | |
| "epoch": 0.266645753274253, | |
| "grad_norm": 1.018113136291504, | |
| "learning_rate": 2.7372461614660723e-05, | |
| "loss": 1.201, | |
| "step": 1700 | |
| }, | |
| { | |
| "epoch": 0.26743000548976553, | |
| "grad_norm": 0.9843900203704834, | |
| "learning_rate": 2.7360079247152056e-05, | |
| "loss": 1.115, | |
| "step": 1705 | |
| }, | |
| { | |
| "epoch": 0.268214257705278, | |
| "grad_norm": 0.9973382353782654, | |
| "learning_rate": 2.734769687964339e-05, | |
| "loss": 1.1881, | |
| "step": 1710 | |
| }, | |
| { | |
| "epoch": 0.26899850992079055, | |
| "grad_norm": 0.9756709337234497, | |
| "learning_rate": 2.733531451213472e-05, | |
| "loss": 1.1922, | |
| "step": 1715 | |
| }, | |
| { | |
| "epoch": 0.26978276213630303, | |
| "grad_norm": 0.9447654485702515, | |
| "learning_rate": 2.7322932144626054e-05, | |
| "loss": 1.1474, | |
| "step": 1720 | |
| }, | |
| { | |
| "epoch": 0.27056701435181557, | |
| "grad_norm": 1.0497111082077026, | |
| "learning_rate": 2.7310549777117384e-05, | |
| "loss": 1.2021, | |
| "step": 1725 | |
| }, | |
| { | |
| "epoch": 0.27135126656732805, | |
| "grad_norm": 1.121382236480713, | |
| "learning_rate": 2.7298167409608716e-05, | |
| "loss": 1.2463, | |
| "step": 1730 | |
| }, | |
| { | |
| "epoch": 0.27213551878284054, | |
| "grad_norm": 0.9564398527145386, | |
| "learning_rate": 2.728578504210005e-05, | |
| "loss": 1.1741, | |
| "step": 1735 | |
| }, | |
| { | |
| "epoch": 0.2729197709983531, | |
| "grad_norm": 0.993923544883728, | |
| "learning_rate": 2.7273402674591382e-05, | |
| "loss": 1.1696, | |
| "step": 1740 | |
| }, | |
| { | |
| "epoch": 0.27370402321386555, | |
| "grad_norm": 1.1519091129302979, | |
| "learning_rate": 2.7261020307082715e-05, | |
| "loss": 1.2981, | |
| "step": 1745 | |
| }, | |
| { | |
| "epoch": 0.2744882754293781, | |
| "grad_norm": 1.1992340087890625, | |
| "learning_rate": 2.7248637939574048e-05, | |
| "loss": 1.2348, | |
| "step": 1750 | |
| }, | |
| { | |
| "epoch": 0.2752725276448906, | |
| "grad_norm": 0.954759418964386, | |
| "learning_rate": 2.723625557206538e-05, | |
| "loss": 1.0986, | |
| "step": 1755 | |
| }, | |
| { | |
| "epoch": 0.2760567798604031, | |
| "grad_norm": 0.9630308151245117, | |
| "learning_rate": 2.7223873204556713e-05, | |
| "loss": 1.1829, | |
| "step": 1760 | |
| }, | |
| { | |
| "epoch": 0.2768410320759156, | |
| "grad_norm": 0.8537359833717346, | |
| "learning_rate": 2.7211490837048043e-05, | |
| "loss": 1.1762, | |
| "step": 1765 | |
| }, | |
| { | |
| "epoch": 0.27762528429142813, | |
| "grad_norm": 0.8548294305801392, | |
| "learning_rate": 2.7199108469539376e-05, | |
| "loss": 1.1497, | |
| "step": 1770 | |
| }, | |
| { | |
| "epoch": 0.2784095365069406, | |
| "grad_norm": 1.1810269355773926, | |
| "learning_rate": 2.718672610203071e-05, | |
| "loss": 1.0642, | |
| "step": 1775 | |
| }, | |
| { | |
| "epoch": 0.27919378872245315, | |
| "grad_norm": 1.244332194328308, | |
| "learning_rate": 2.717434373452204e-05, | |
| "loss": 1.1635, | |
| "step": 1780 | |
| }, | |
| { | |
| "epoch": 0.27997804093796563, | |
| "grad_norm": 0.9151502251625061, | |
| "learning_rate": 2.7161961367013374e-05, | |
| "loss": 1.2191, | |
| "step": 1785 | |
| }, | |
| { | |
| "epoch": 0.28076229315347817, | |
| "grad_norm": 0.9919447898864746, | |
| "learning_rate": 2.7149578999504707e-05, | |
| "loss": 1.1431, | |
| "step": 1790 | |
| }, | |
| { | |
| "epoch": 0.28154654536899065, | |
| "grad_norm": 1.0805011987686157, | |
| "learning_rate": 2.713719663199604e-05, | |
| "loss": 1.1191, | |
| "step": 1795 | |
| }, | |
| { | |
| "epoch": 0.2823307975845032, | |
| "grad_norm": 1.0525835752487183, | |
| "learning_rate": 2.7124814264487373e-05, | |
| "loss": 1.1335, | |
| "step": 1800 | |
| }, | |
| { | |
| "epoch": 0.2823307975845032, | |
| "eval_loss": 1.1871418952941895, | |
| "eval_runtime": 180.9498, | |
| "eval_samples_per_second": 11.053, | |
| "eval_steps_per_second": 2.763, | |
| "step": 1800 | |
| }, | |
| { | |
| "epoch": 0.2831150498000157, | |
| "grad_norm": 0.9144219756126404, | |
| "learning_rate": 2.7112431896978702e-05, | |
| "loss": 1.2166, | |
| "step": 1805 | |
| }, | |
| { | |
| "epoch": 0.2838993020155282, | |
| "grad_norm": 1.0782276391983032, | |
| "learning_rate": 2.7100049529470035e-05, | |
| "loss": 1.165, | |
| "step": 1810 | |
| }, | |
| { | |
| "epoch": 0.2846835542310407, | |
| "grad_norm": 1.0270676612854004, | |
| "learning_rate": 2.7087667161961368e-05, | |
| "loss": 1.2225, | |
| "step": 1815 | |
| }, | |
| { | |
| "epoch": 0.28546780644655323, | |
| "grad_norm": 1.1217344999313354, | |
| "learning_rate": 2.70752847944527e-05, | |
| "loss": 1.1336, | |
| "step": 1820 | |
| }, | |
| { | |
| "epoch": 0.2862520586620657, | |
| "grad_norm": 1.1019388437271118, | |
| "learning_rate": 2.7062902426944033e-05, | |
| "loss": 1.1739, | |
| "step": 1825 | |
| }, | |
| { | |
| "epoch": 0.28703631087757825, | |
| "grad_norm": 1.0203742980957031, | |
| "learning_rate": 2.7050520059435366e-05, | |
| "loss": 1.1209, | |
| "step": 1830 | |
| }, | |
| { | |
| "epoch": 0.28782056309309073, | |
| "grad_norm": 0.9274325370788574, | |
| "learning_rate": 2.70381376919267e-05, | |
| "loss": 1.164, | |
| "step": 1835 | |
| }, | |
| { | |
| "epoch": 0.28860481530860327, | |
| "grad_norm": 1.072279453277588, | |
| "learning_rate": 2.702575532441803e-05, | |
| "loss": 1.1874, | |
| "step": 1840 | |
| }, | |
| { | |
| "epoch": 0.28938906752411575, | |
| "grad_norm": 1.0064656734466553, | |
| "learning_rate": 2.701337295690936e-05, | |
| "loss": 1.2334, | |
| "step": 1845 | |
| }, | |
| { | |
| "epoch": 0.2901733197396283, | |
| "grad_norm": 1.0672551393508911, | |
| "learning_rate": 2.7000990589400694e-05, | |
| "loss": 1.1567, | |
| "step": 1850 | |
| }, | |
| { | |
| "epoch": 0.29095757195514077, | |
| "grad_norm": 1.044426441192627, | |
| "learning_rate": 2.6988608221892027e-05, | |
| "loss": 1.1743, | |
| "step": 1855 | |
| }, | |
| { | |
| "epoch": 0.2917418241706533, | |
| "grad_norm": 0.9725475907325745, | |
| "learning_rate": 2.697622585438336e-05, | |
| "loss": 1.1858, | |
| "step": 1860 | |
| }, | |
| { | |
| "epoch": 0.2925260763861658, | |
| "grad_norm": 1.3251436948776245, | |
| "learning_rate": 2.6963843486874692e-05, | |
| "loss": 1.1101, | |
| "step": 1865 | |
| }, | |
| { | |
| "epoch": 0.2933103286016783, | |
| "grad_norm": 0.9774639010429382, | |
| "learning_rate": 2.6951461119366025e-05, | |
| "loss": 1.14, | |
| "step": 1870 | |
| }, | |
| { | |
| "epoch": 0.2940945808171908, | |
| "grad_norm": 0.8695831894874573, | |
| "learning_rate": 2.6939078751857358e-05, | |
| "loss": 1.2076, | |
| "step": 1875 | |
| }, | |
| { | |
| "epoch": 0.2948788330327033, | |
| "grad_norm": 1.1581186056137085, | |
| "learning_rate": 2.6926696384348688e-05, | |
| "loss": 1.1829, | |
| "step": 1880 | |
| }, | |
| { | |
| "epoch": 0.29566308524821583, | |
| "grad_norm": 0.9855690002441406, | |
| "learning_rate": 2.691431401684002e-05, | |
| "loss": 1.0984, | |
| "step": 1885 | |
| }, | |
| { | |
| "epoch": 0.2964473374637283, | |
| "grad_norm": 0.9336042404174805, | |
| "learning_rate": 2.6901931649331353e-05, | |
| "loss": 1.194, | |
| "step": 1890 | |
| }, | |
| { | |
| "epoch": 0.29723158967924085, | |
| "grad_norm": 0.9858350157737732, | |
| "learning_rate": 2.6889549281822686e-05, | |
| "loss": 1.2448, | |
| "step": 1895 | |
| }, | |
| { | |
| "epoch": 0.29801584189475333, | |
| "grad_norm": 1.166487693786621, | |
| "learning_rate": 2.687716691431402e-05, | |
| "loss": 1.2255, | |
| "step": 1900 | |
| }, | |
| { | |
| "epoch": 0.29880009411026587, | |
| "grad_norm": 1.1159576177597046, | |
| "learning_rate": 2.686478454680535e-05, | |
| "loss": 1.2223, | |
| "step": 1905 | |
| }, | |
| { | |
| "epoch": 0.29958434632577835, | |
| "grad_norm": 0.9471052289009094, | |
| "learning_rate": 2.6852402179296684e-05, | |
| "loss": 1.1046, | |
| "step": 1910 | |
| }, | |
| { | |
| "epoch": 0.3003685985412909, | |
| "grad_norm": 1.2097647190093994, | |
| "learning_rate": 2.6840019811788017e-05, | |
| "loss": 1.2032, | |
| "step": 1915 | |
| }, | |
| { | |
| "epoch": 0.30115285075680337, | |
| "grad_norm": 0.9261752367019653, | |
| "learning_rate": 2.6827637444279347e-05, | |
| "loss": 1.2118, | |
| "step": 1920 | |
| }, | |
| { | |
| "epoch": 0.3019371029723159, | |
| "grad_norm": 1.0517253875732422, | |
| "learning_rate": 2.681525507677068e-05, | |
| "loss": 1.1608, | |
| "step": 1925 | |
| }, | |
| { | |
| "epoch": 0.3027213551878284, | |
| "grad_norm": 1.0006099939346313, | |
| "learning_rate": 2.6802872709262012e-05, | |
| "loss": 1.2163, | |
| "step": 1930 | |
| }, | |
| { | |
| "epoch": 0.3035056074033409, | |
| "grad_norm": 1.055713176727295, | |
| "learning_rate": 2.6790490341753345e-05, | |
| "loss": 1.0843, | |
| "step": 1935 | |
| }, | |
| { | |
| "epoch": 0.3042898596188534, | |
| "grad_norm": 1.0398874282836914, | |
| "learning_rate": 2.6778107974244678e-05, | |
| "loss": 1.1755, | |
| "step": 1940 | |
| }, | |
| { | |
| "epoch": 0.30507411183436595, | |
| "grad_norm": 0.94144606590271, | |
| "learning_rate": 2.676572560673601e-05, | |
| "loss": 1.186, | |
| "step": 1945 | |
| }, | |
| { | |
| "epoch": 0.30585836404987843, | |
| "grad_norm": 0.9723899364471436, | |
| "learning_rate": 2.6753343239227344e-05, | |
| "loss": 1.1243, | |
| "step": 1950 | |
| }, | |
| { | |
| "epoch": 0.30664261626539097, | |
| "grad_norm": 1.2370935678482056, | |
| "learning_rate": 2.6740960871718676e-05, | |
| "loss": 1.2102, | |
| "step": 1955 | |
| }, | |
| { | |
| "epoch": 0.30742686848090345, | |
| "grad_norm": 1.2505570650100708, | |
| "learning_rate": 2.6728578504210006e-05, | |
| "loss": 1.1864, | |
| "step": 1960 | |
| }, | |
| { | |
| "epoch": 0.308211120696416, | |
| "grad_norm": 1.3583003282546997, | |
| "learning_rate": 2.6716196136701335e-05, | |
| "loss": 1.1566, | |
| "step": 1965 | |
| }, | |
| { | |
| "epoch": 0.30899537291192847, | |
| "grad_norm": 0.9221394658088684, | |
| "learning_rate": 2.6703813769192668e-05, | |
| "loss": 1.2274, | |
| "step": 1970 | |
| }, | |
| { | |
| "epoch": 0.309779625127441, | |
| "grad_norm": 1.09176504611969, | |
| "learning_rate": 2.6691431401684e-05, | |
| "loss": 1.2366, | |
| "step": 1975 | |
| }, | |
| { | |
| "epoch": 0.3105638773429535, | |
| "grad_norm": 1.0992720127105713, | |
| "learning_rate": 2.6679049034175334e-05, | |
| "loss": 1.2034, | |
| "step": 1980 | |
| }, | |
| { | |
| "epoch": 0.311348129558466, | |
| "grad_norm": 0.9352986216545105, | |
| "learning_rate": 2.6666666666666667e-05, | |
| "loss": 1.2083, | |
| "step": 1985 | |
| }, | |
| { | |
| "epoch": 0.3121323817739785, | |
| "grad_norm": 0.9142504334449768, | |
| "learning_rate": 2.6654284299158e-05, | |
| "loss": 1.1766, | |
| "step": 1990 | |
| }, | |
| { | |
| "epoch": 0.31291663398949104, | |
| "grad_norm": 0.9476444721221924, | |
| "learning_rate": 2.6641901931649332e-05, | |
| "loss": 1.1211, | |
| "step": 1995 | |
| }, | |
| { | |
| "epoch": 0.3137008862050035, | |
| "grad_norm": 1.0240795612335205, | |
| "learning_rate": 2.662951956414066e-05, | |
| "loss": 1.1624, | |
| "step": 2000 | |
| }, | |
| { | |
| "epoch": 0.31448513842051606, | |
| "grad_norm": 0.9615570902824402, | |
| "learning_rate": 2.6617137196631994e-05, | |
| "loss": 1.1661, | |
| "step": 2005 | |
| }, | |
| { | |
| "epoch": 0.31526939063602855, | |
| "grad_norm": 1.0321637392044067, | |
| "learning_rate": 2.6604754829123327e-05, | |
| "loss": 1.1595, | |
| "step": 2010 | |
| }, | |
| { | |
| "epoch": 0.31605364285154103, | |
| "grad_norm": 1.2370376586914062, | |
| "learning_rate": 2.659237246161466e-05, | |
| "loss": 1.218, | |
| "step": 2015 | |
| }, | |
| { | |
| "epoch": 0.31683789506705357, | |
| "grad_norm": 1.012313723564148, | |
| "learning_rate": 2.6579990094105993e-05, | |
| "loss": 1.1164, | |
| "step": 2020 | |
| }, | |
| { | |
| "epoch": 0.31762214728256605, | |
| "grad_norm": 1.0664358139038086, | |
| "learning_rate": 2.6567607726597326e-05, | |
| "loss": 1.1516, | |
| "step": 2025 | |
| }, | |
| { | |
| "epoch": 0.3184063994980786, | |
| "grad_norm": 1.0644055604934692, | |
| "learning_rate": 2.655522535908866e-05, | |
| "loss": 1.2166, | |
| "step": 2030 | |
| }, | |
| { | |
| "epoch": 0.31919065171359107, | |
| "grad_norm": 0.9738732576370239, | |
| "learning_rate": 2.654284299157999e-05, | |
| "loss": 1.144, | |
| "step": 2035 | |
| }, | |
| { | |
| "epoch": 0.3199749039291036, | |
| "grad_norm": 1.080315351486206, | |
| "learning_rate": 2.653046062407132e-05, | |
| "loss": 1.1568, | |
| "step": 2040 | |
| }, | |
| { | |
| "epoch": 0.3207591561446161, | |
| "grad_norm": 1.4979441165924072, | |
| "learning_rate": 2.6518078256562654e-05, | |
| "loss": 1.2082, | |
| "step": 2045 | |
| }, | |
| { | |
| "epoch": 0.3215434083601286, | |
| "grad_norm": 1.1411837339401245, | |
| "learning_rate": 2.6505695889053986e-05, | |
| "loss": 1.1533, | |
| "step": 2050 | |
| }, | |
| { | |
| "epoch": 0.3223276605756411, | |
| "grad_norm": 1.117168664932251, | |
| "learning_rate": 2.649331352154532e-05, | |
| "loss": 1.2033, | |
| "step": 2055 | |
| }, | |
| { | |
| "epoch": 0.32311191279115364, | |
| "grad_norm": 1.1053581237792969, | |
| "learning_rate": 2.6480931154036652e-05, | |
| "loss": 1.1623, | |
| "step": 2060 | |
| }, | |
| { | |
| "epoch": 0.3238961650066661, | |
| "grad_norm": 0.9980604648590088, | |
| "learning_rate": 2.6468548786527985e-05, | |
| "loss": 1.1331, | |
| "step": 2065 | |
| }, | |
| { | |
| "epoch": 0.32468041722217866, | |
| "grad_norm": 1.0467514991760254, | |
| "learning_rate": 2.6456166419019318e-05, | |
| "loss": 1.0776, | |
| "step": 2070 | |
| }, | |
| { | |
| "epoch": 0.32546466943769115, | |
| "grad_norm": 0.9543486833572388, | |
| "learning_rate": 2.6443784051510647e-05, | |
| "loss": 1.1842, | |
| "step": 2075 | |
| }, | |
| { | |
| "epoch": 0.3262489216532037, | |
| "grad_norm": 1.0781240463256836, | |
| "learning_rate": 2.643140168400198e-05, | |
| "loss": 1.2276, | |
| "step": 2080 | |
| }, | |
| { | |
| "epoch": 0.32703317386871616, | |
| "grad_norm": 0.9011218547821045, | |
| "learning_rate": 2.6419019316493313e-05, | |
| "loss": 1.1861, | |
| "step": 2085 | |
| }, | |
| { | |
| "epoch": 0.3278174260842287, | |
| "grad_norm": 0.9879097938537598, | |
| "learning_rate": 2.6406636948984646e-05, | |
| "loss": 1.1592, | |
| "step": 2090 | |
| }, | |
| { | |
| "epoch": 0.3286016782997412, | |
| "grad_norm": 0.9515993595123291, | |
| "learning_rate": 2.639425458147598e-05, | |
| "loss": 1.1446, | |
| "step": 2095 | |
| }, | |
| { | |
| "epoch": 0.3293859305152537, | |
| "grad_norm": 0.8950434327125549, | |
| "learning_rate": 2.638187221396731e-05, | |
| "loss": 1.1898, | |
| "step": 2100 | |
| }, | |
| { | |
| "epoch": 0.3293859305152537, | |
| "eval_loss": 1.1681427955627441, | |
| "eval_runtime": 179.1096, | |
| "eval_samples_per_second": 11.166, | |
| "eval_steps_per_second": 2.792, | |
| "step": 2100 | |
| }, | |
| { | |
| "epoch": 0.3301701827307662, | |
| "grad_norm": 0.9106898307800293, | |
| "learning_rate": 2.6369489846458644e-05, | |
| "loss": 1.1754, | |
| "step": 2105 | |
| }, | |
| { | |
| "epoch": 0.33095443494627874, | |
| "grad_norm": 1.0223875045776367, | |
| "learning_rate": 2.6357107478949977e-05, | |
| "loss": 1.1653, | |
| "step": 2110 | |
| }, | |
| { | |
| "epoch": 0.3317386871617912, | |
| "grad_norm": 1.2506979703903198, | |
| "learning_rate": 2.6344725111441306e-05, | |
| "loss": 1.1476, | |
| "step": 2115 | |
| }, | |
| { | |
| "epoch": 0.33252293937730376, | |
| "grad_norm": 1.1079163551330566, | |
| "learning_rate": 2.633234274393264e-05, | |
| "loss": 1.1618, | |
| "step": 2120 | |
| }, | |
| { | |
| "epoch": 0.33330719159281624, | |
| "grad_norm": 1.060522198677063, | |
| "learning_rate": 2.6319960376423972e-05, | |
| "loss": 1.2003, | |
| "step": 2125 | |
| }, | |
| { | |
| "epoch": 0.3340914438083288, | |
| "grad_norm": 1.1587939262390137, | |
| "learning_rate": 2.6307578008915305e-05, | |
| "loss": 1.0764, | |
| "step": 2130 | |
| }, | |
| { | |
| "epoch": 0.33487569602384126, | |
| "grad_norm": 1.041363000869751, | |
| "learning_rate": 2.6295195641406638e-05, | |
| "loss": 1.1807, | |
| "step": 2135 | |
| }, | |
| { | |
| "epoch": 0.3356599482393538, | |
| "grad_norm": 1.0703729391098022, | |
| "learning_rate": 2.628281327389797e-05, | |
| "loss": 1.1269, | |
| "step": 2140 | |
| }, | |
| { | |
| "epoch": 0.3364442004548663, | |
| "grad_norm": 1.1608914136886597, | |
| "learning_rate": 2.6270430906389303e-05, | |
| "loss": 1.1839, | |
| "step": 2145 | |
| }, | |
| { | |
| "epoch": 0.3372284526703788, | |
| "grad_norm": 1.1163076162338257, | |
| "learning_rate": 2.6258048538880636e-05, | |
| "loss": 1.129, | |
| "step": 2150 | |
| }, | |
| { | |
| "epoch": 0.3380127048858913, | |
| "grad_norm": 1.1649436950683594, | |
| "learning_rate": 2.6245666171371966e-05, | |
| "loss": 1.1632, | |
| "step": 2155 | |
| }, | |
| { | |
| "epoch": 0.3387969571014038, | |
| "grad_norm": 0.9917750954627991, | |
| "learning_rate": 2.62332838038633e-05, | |
| "loss": 1.2069, | |
| "step": 2160 | |
| }, | |
| { | |
| "epoch": 0.3395812093169163, | |
| "grad_norm": 1.0782402753829956, | |
| "learning_rate": 2.622090143635463e-05, | |
| "loss": 1.1399, | |
| "step": 2165 | |
| }, | |
| { | |
| "epoch": 0.3403654615324288, | |
| "grad_norm": 1.0078198909759521, | |
| "learning_rate": 2.6208519068845964e-05, | |
| "loss": 1.1705, | |
| "step": 2170 | |
| }, | |
| { | |
| "epoch": 0.34114971374794134, | |
| "grad_norm": 0.9952524304389954, | |
| "learning_rate": 2.6196136701337297e-05, | |
| "loss": 1.1471, | |
| "step": 2175 | |
| }, | |
| { | |
| "epoch": 0.3419339659634538, | |
| "grad_norm": 1.0381946563720703, | |
| "learning_rate": 2.618375433382863e-05, | |
| "loss": 1.1568, | |
| "step": 2180 | |
| }, | |
| { | |
| "epoch": 0.34271821817896636, | |
| "grad_norm": 1.0317137241363525, | |
| "learning_rate": 2.6171371966319962e-05, | |
| "loss": 1.1823, | |
| "step": 2185 | |
| }, | |
| { | |
| "epoch": 0.34350247039447884, | |
| "grad_norm": 0.9337929487228394, | |
| "learning_rate": 2.6158989598811295e-05, | |
| "loss": 1.1432, | |
| "step": 2190 | |
| }, | |
| { | |
| "epoch": 0.3442867226099914, | |
| "grad_norm": 0.9774899482727051, | |
| "learning_rate": 2.6146607231302625e-05, | |
| "loss": 1.062, | |
| "step": 2195 | |
| }, | |
| { | |
| "epoch": 0.34507097482550386, | |
| "grad_norm": 1.2686885595321655, | |
| "learning_rate": 2.6134224863793958e-05, | |
| "loss": 1.1447, | |
| "step": 2200 | |
| }, | |
| { | |
| "epoch": 0.3458552270410164, | |
| "grad_norm": 1.043630599975586, | |
| "learning_rate": 2.612184249628529e-05, | |
| "loss": 1.1469, | |
| "step": 2205 | |
| }, | |
| { | |
| "epoch": 0.3466394792565289, | |
| "grad_norm": 0.9587001800537109, | |
| "learning_rate": 2.6109460128776623e-05, | |
| "loss": 1.1216, | |
| "step": 2210 | |
| }, | |
| { | |
| "epoch": 0.3474237314720414, | |
| "grad_norm": 0.9291378855705261, | |
| "learning_rate": 2.6097077761267956e-05, | |
| "loss": 1.1394, | |
| "step": 2215 | |
| }, | |
| { | |
| "epoch": 0.3482079836875539, | |
| "grad_norm": 1.1724514961242676, | |
| "learning_rate": 2.608469539375929e-05, | |
| "loss": 1.0988, | |
| "step": 2220 | |
| }, | |
| { | |
| "epoch": 0.34899223590306644, | |
| "grad_norm": 1.0215635299682617, | |
| "learning_rate": 2.607231302625062e-05, | |
| "loss": 1.1086, | |
| "step": 2225 | |
| }, | |
| { | |
| "epoch": 0.3497764881185789, | |
| "grad_norm": 1.0366919040679932, | |
| "learning_rate": 2.6059930658741954e-05, | |
| "loss": 1.1486, | |
| "step": 2230 | |
| }, | |
| { | |
| "epoch": 0.35056074033409146, | |
| "grad_norm": 1.0955818891525269, | |
| "learning_rate": 2.6047548291233284e-05, | |
| "loss": 1.114, | |
| "step": 2235 | |
| }, | |
| { | |
| "epoch": 0.35134499254960394, | |
| "grad_norm": 0.9413565993309021, | |
| "learning_rate": 2.6035165923724617e-05, | |
| "loss": 1.2112, | |
| "step": 2240 | |
| }, | |
| { | |
| "epoch": 0.3521292447651165, | |
| "grad_norm": 0.9644827842712402, | |
| "learning_rate": 2.602278355621595e-05, | |
| "loss": 1.1204, | |
| "step": 2245 | |
| }, | |
| { | |
| "epoch": 0.35291349698062896, | |
| "grad_norm": 0.9966211915016174, | |
| "learning_rate": 2.6010401188707282e-05, | |
| "loss": 1.1577, | |
| "step": 2250 | |
| }, | |
| { | |
| "epoch": 0.3536977491961415, | |
| "grad_norm": 0.9792212247848511, | |
| "learning_rate": 2.5998018821198615e-05, | |
| "loss": 1.1731, | |
| "step": 2255 | |
| }, | |
| { | |
| "epoch": 0.354482001411654, | |
| "grad_norm": 1.0859739780426025, | |
| "learning_rate": 2.5985636453689948e-05, | |
| "loss": 1.0999, | |
| "step": 2260 | |
| }, | |
| { | |
| "epoch": 0.3552662536271665, | |
| "grad_norm": 1.0696343183517456, | |
| "learning_rate": 2.597325408618128e-05, | |
| "loss": 1.1291, | |
| "step": 2265 | |
| }, | |
| { | |
| "epoch": 0.356050505842679, | |
| "grad_norm": 0.8906198740005493, | |
| "learning_rate": 2.596087171867261e-05, | |
| "loss": 1.1939, | |
| "step": 2270 | |
| }, | |
| { | |
| "epoch": 0.35683475805819154, | |
| "grad_norm": 0.9733899235725403, | |
| "learning_rate": 2.5948489351163943e-05, | |
| "loss": 1.0984, | |
| "step": 2275 | |
| }, | |
| { | |
| "epoch": 0.357619010273704, | |
| "grad_norm": 1.212216854095459, | |
| "learning_rate": 2.5936106983655276e-05, | |
| "loss": 1.1115, | |
| "step": 2280 | |
| }, | |
| { | |
| "epoch": 0.35840326248921656, | |
| "grad_norm": 0.895348072052002, | |
| "learning_rate": 2.592372461614661e-05, | |
| "loss": 1.0905, | |
| "step": 2285 | |
| }, | |
| { | |
| "epoch": 0.35918751470472904, | |
| "grad_norm": 0.8904415965080261, | |
| "learning_rate": 2.591134224863794e-05, | |
| "loss": 1.2289, | |
| "step": 2290 | |
| }, | |
| { | |
| "epoch": 0.3599717669202416, | |
| "grad_norm": 0.9107303023338318, | |
| "learning_rate": 2.5898959881129274e-05, | |
| "loss": 1.1023, | |
| "step": 2295 | |
| }, | |
| { | |
| "epoch": 0.36075601913575406, | |
| "grad_norm": 1.031053066253662, | |
| "learning_rate": 2.5886577513620607e-05, | |
| "loss": 1.0644, | |
| "step": 2300 | |
| }, | |
| { | |
| "epoch": 0.36154027135126654, | |
| "grad_norm": 0.9950774312019348, | |
| "learning_rate": 2.587419514611194e-05, | |
| "loss": 1.1475, | |
| "step": 2305 | |
| }, | |
| { | |
| "epoch": 0.3623245235667791, | |
| "grad_norm": 1.0093636512756348, | |
| "learning_rate": 2.586181277860327e-05, | |
| "loss": 1.1459, | |
| "step": 2310 | |
| }, | |
| { | |
| "epoch": 0.36310877578229156, | |
| "grad_norm": 1.3535128831863403, | |
| "learning_rate": 2.5849430411094602e-05, | |
| "loss": 1.1934, | |
| "step": 2315 | |
| }, | |
| { | |
| "epoch": 0.3638930279978041, | |
| "grad_norm": 0.996488094329834, | |
| "learning_rate": 2.5837048043585935e-05, | |
| "loss": 1.1603, | |
| "step": 2320 | |
| }, | |
| { | |
| "epoch": 0.3646772802133166, | |
| "grad_norm": 1.5754882097244263, | |
| "learning_rate": 2.5824665676077268e-05, | |
| "loss": 1.0841, | |
| "step": 2325 | |
| }, | |
| { | |
| "epoch": 0.3654615324288291, | |
| "grad_norm": 1.000685214996338, | |
| "learning_rate": 2.58122833085686e-05, | |
| "loss": 1.2038, | |
| "step": 2330 | |
| }, | |
| { | |
| "epoch": 0.3662457846443416, | |
| "grad_norm": 1.0758228302001953, | |
| "learning_rate": 2.5799900941059934e-05, | |
| "loss": 1.1153, | |
| "step": 2335 | |
| }, | |
| { | |
| "epoch": 0.36703003685985414, | |
| "grad_norm": 1.0312342643737793, | |
| "learning_rate": 2.5787518573551266e-05, | |
| "loss": 1.1022, | |
| "step": 2340 | |
| }, | |
| { | |
| "epoch": 0.3678142890753666, | |
| "grad_norm": 0.98909991979599, | |
| "learning_rate": 2.5775136206042596e-05, | |
| "loss": 1.1798, | |
| "step": 2345 | |
| }, | |
| { | |
| "epoch": 0.36859854129087916, | |
| "grad_norm": 1.0817371606826782, | |
| "learning_rate": 2.5762753838533925e-05, | |
| "loss": 1.1854, | |
| "step": 2350 | |
| }, | |
| { | |
| "epoch": 0.36938279350639164, | |
| "grad_norm": 1.0057563781738281, | |
| "learning_rate": 2.5750371471025258e-05, | |
| "loss": 1.1812, | |
| "step": 2355 | |
| }, | |
| { | |
| "epoch": 0.3701670457219042, | |
| "grad_norm": 1.2944605350494385, | |
| "learning_rate": 2.573798910351659e-05, | |
| "loss": 1.077, | |
| "step": 2360 | |
| }, | |
| { | |
| "epoch": 0.37095129793741666, | |
| "grad_norm": 1.098381519317627, | |
| "learning_rate": 2.5725606736007924e-05, | |
| "loss": 1.1499, | |
| "step": 2365 | |
| }, | |
| { | |
| "epoch": 0.3717355501529292, | |
| "grad_norm": 0.9754157066345215, | |
| "learning_rate": 2.5713224368499256e-05, | |
| "loss": 1.134, | |
| "step": 2370 | |
| }, | |
| { | |
| "epoch": 0.3725198023684417, | |
| "grad_norm": 1.0134391784667969, | |
| "learning_rate": 2.570084200099059e-05, | |
| "loss": 1.133, | |
| "step": 2375 | |
| }, | |
| { | |
| "epoch": 0.3733040545839542, | |
| "grad_norm": 1.020948886871338, | |
| "learning_rate": 2.5688459633481922e-05, | |
| "loss": 1.1475, | |
| "step": 2380 | |
| }, | |
| { | |
| "epoch": 0.3740883067994667, | |
| "grad_norm": 1.0865211486816406, | |
| "learning_rate": 2.5676077265973255e-05, | |
| "loss": 1.163, | |
| "step": 2385 | |
| }, | |
| { | |
| "epoch": 0.37487255901497923, | |
| "grad_norm": 1.0372055768966675, | |
| "learning_rate": 2.5663694898464584e-05, | |
| "loss": 1.1459, | |
| "step": 2390 | |
| }, | |
| { | |
| "epoch": 0.3756568112304917, | |
| "grad_norm": 0.95745849609375, | |
| "learning_rate": 2.5651312530955917e-05, | |
| "loss": 1.1553, | |
| "step": 2395 | |
| }, | |
| { | |
| "epoch": 0.37644106344600425, | |
| "grad_norm": 1.1391905546188354, | |
| "learning_rate": 2.563893016344725e-05, | |
| "loss": 1.0905, | |
| "step": 2400 | |
| }, | |
| { | |
| "epoch": 0.37644106344600425, | |
| "eval_loss": 1.1524348258972168, | |
| "eval_runtime": 178.5756, | |
| "eval_samples_per_second": 11.2, | |
| "eval_steps_per_second": 2.8, | |
| "step": 2400 | |
| } | |
| ], | |
| "logging_steps": 5, | |
| "max_steps": 12752, | |
| "num_input_tokens_seen": 0, | |
| "num_train_epochs": 2, | |
| "save_steps": 300, | |
| "stateful_callbacks": { | |
| "EarlyStoppingCallback": [ | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| }, | |
| { | |
| "args": { | |
| "early_stopping_patience": 8, | |
| "early_stopping_threshold": 0.01 | |
| }, | |
| "attributes": { | |
| "early_stopping_patience_counter": 0 | |
| } | |
| } | |
| ], | |
| "TrainerControl": { | |
| "args": { | |
| "should_epoch_stop": false, | |
| "should_evaluate": false, | |
| "should_log": false, | |
| "should_save": true, | |
| "should_training_stop": false | |
| }, | |
| "attributes": {} | |
| } | |
| }, | |
| "total_flos": 1.4247328016884516e+18, | |
| "train_batch_size": 8, | |
| "trial_name": null, | |
| "trial_params": null | |
| } | |