Instructions to use finalform/foamQwen2.5-7B-Instruct-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use finalform/foamQwen2.5-7B-Instruct-fp16 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B-Instruct") model = PeftModel.from_pretrained(base_model, "finalform/foamQwen2.5-7B-Instruct-fp16") - Transformers
How to use finalform/foamQwen2.5-7B-Instruct-fp16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="finalform/foamQwen2.5-7B-Instruct-fp16") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("finalform/foamQwen2.5-7B-Instruct-fp16", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use finalform/foamQwen2.5-7B-Instruct-fp16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "finalform/foamQwen2.5-7B-Instruct-fp16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "finalform/foamQwen2.5-7B-Instruct-fp16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/finalform/foamQwen2.5-7B-Instruct-fp16
- SGLang
How to use finalform/foamQwen2.5-7B-Instruct-fp16 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 "finalform/foamQwen2.5-7B-Instruct-fp16" \ --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": "finalform/foamQwen2.5-7B-Instruct-fp16", "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 "finalform/foamQwen2.5-7B-Instruct-fp16" \ --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": "finalform/foamQwen2.5-7B-Instruct-fp16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use finalform/foamQwen2.5-7B-Instruct-fp16 with Docker Model Runner:
docker model run hf.co/finalform/foamQwen2.5-7B-Instruct-fp16
Upload folder using huggingface_hub
Browse files- adapter_model.safetensors +1 -1
- optimizer.pt +1 -1
- rng_state.pth +1 -1
- scaler.pt +1 -1
- scheduler.pt +1 -1
- trainer_state.json +483 -3
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 645975704
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4528ab87f9ce39434c392e7a67cad0fb130753649ef9e5cb24d321781a9bbcfb
|
| 3 |
size 645975704
|
optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1292087499
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87c7b9c830848e5452e2a2554acbc8ebf215a4ed3446dc4441cc05860a5f82d8
|
| 3 |
size 1292087499
|
rng_state.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 14645
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94e1c5b5a299195c16e2136ce4b158c5bef8b18fb216a95951511ee6a27a0e40
|
| 3 |
size 14645
|
scaler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1383
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03db65b95f9d6052d21e0bca73ef5811c9250fdf4e71820d48477895469025d8
|
| 3 |
size 1383
|
scheduler.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1465
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:951c5397aaebd0765bacaf853fdf43a5f8d077a2f0f518d9f0dba2068e909691
|
| 3 |
size 1465
|
trainer_state.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
-
"epoch":
|
| 6 |
"eval_steps": 500,
|
| 7 |
-
"global_step":
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
|
@@ -479,6 +479,486 @@
|
|
| 479 |
"eval_samples_per_second": 10.778,
|
| 480 |
"eval_steps_per_second": 5.403,
|
| 481 |
"step": 1245
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 482 |
}
|
| 483 |
],
|
| 484 |
"logging_steps": 25,
|
|
@@ -498,7 +978,7 @@
|
|
| 498 |
"attributes": {}
|
| 499 |
}
|
| 500 |
},
|
| 501 |
-
"total_flos":
|
| 502 |
"train_batch_size": 2,
|
| 503 |
"trial_name": null,
|
| 504 |
"trial_params": null
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 6.0,
|
| 6 |
"eval_steps": 500,
|
| 7 |
+
"global_step": 2490,
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
|
|
|
| 479 |
"eval_samples_per_second": 10.778,
|
| 480 |
"eval_steps_per_second": 5.403,
|
| 481 |
"step": 1245
|
| 482 |
+
},
|
| 483 |
+
{
|
| 484 |
+
"epoch": 3.012070006035003,
|
| 485 |
+
"grad_norm": 0.019530098885297775,
|
| 486 |
+
"learning_rate": 0.00032513066101458505,
|
| 487 |
+
"loss": 0.0106,
|
| 488 |
+
"mean_token_accuracy": 0.996635879437948,
|
| 489 |
+
"num_tokens": 10218496.0,
|
| 490 |
+
"step": 1250
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"epoch": 3.0724200362100182,
|
| 494 |
+
"grad_norm": 0.014008881524205208,
|
| 495 |
+
"learning_rate": 0.0003182506174518353,
|
| 496 |
+
"loss": 0.0106,
|
| 497 |
+
"mean_token_accuracy": 0.9967661571502685,
|
| 498 |
+
"num_tokens": 10423296.0,
|
| 499 |
+
"step": 1275
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 3.1327700663850333,
|
| 503 |
+
"grad_norm": 0.023790989071130753,
|
| 504 |
+
"learning_rate": 0.0003113217990394111,
|
| 505 |
+
"loss": 0.0116,
|
| 506 |
+
"mean_token_accuracy": 0.9965166473388671,
|
| 507 |
+
"num_tokens": 10628096.0,
|
| 508 |
+
"step": 1300
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"epoch": 3.1931200965600484,
|
| 512 |
+
"grad_norm": 0.019647866487503052,
|
| 513 |
+
"learning_rate": 0.0003043495914147805,
|
| 514 |
+
"loss": 0.0104,
|
| 515 |
+
"mean_token_accuracy": 0.9967123413085938,
|
| 516 |
+
"num_tokens": 10832896.0,
|
| 517 |
+
"step": 1325
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 3.2534701267350634,
|
| 521 |
+
"grad_norm": 0.031535252928733826,
|
| 522 |
+
"learning_rate": 0.0002973394139410128,
|
| 523 |
+
"loss": 0.0105,
|
| 524 |
+
"mean_token_accuracy": 0.9966634178161621,
|
| 525 |
+
"num_tokens": 11037696.0,
|
| 526 |
+
"step": 1350
|
| 527 |
+
},
|
| 528 |
+
{
|
| 529 |
+
"epoch": 3.3138201569100785,
|
| 530 |
+
"grad_norm": 0.035145845264196396,
|
| 531 |
+
"learning_rate": 0.00029029671549441144,
|
| 532 |
+
"loss": 0.0103,
|
| 533 |
+
"mean_token_accuracy": 0.9967025566101074,
|
| 534 |
+
"num_tokens": 11242496.0,
|
| 535 |
+
"step": 1375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 3.3741701870850935,
|
| 539 |
+
"grad_norm": 0.011679012328386307,
|
| 540 |
+
"learning_rate": 0.0002832269702292078,
|
| 541 |
+
"loss": 0.01,
|
| 542 |
+
"mean_token_accuracy": 0.9966927719116211,
|
| 543 |
+
"num_tokens": 11447296.0,
|
| 544 |
+
"step": 1400
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"epoch": 3.4345202172601086,
|
| 548 |
+
"grad_norm": 0.009404915384948254,
|
| 549 |
+
"learning_rate": 0.0002761356733226058,
|
| 550 |
+
"loss": 0.01,
|
| 551 |
+
"mean_token_accuracy": 0.9966976642608643,
|
| 552 |
+
"num_tokens": 11652096.0,
|
| 553 |
+
"step": 1425
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 3.4948702474351236,
|
| 557 |
+
"grad_norm": 0.01060599833726883,
|
| 558 |
+
"learning_rate": 0.00026902833670348577,
|
| 559 |
+
"loss": 0.0098,
|
| 560 |
+
"mean_token_accuracy": 0.9968199729919434,
|
| 561 |
+
"num_tokens": 11856896.0,
|
| 562 |
+
"step": 1450
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 3.5552202776101387,
|
| 566 |
+
"grad_norm": 0.011005139909684658,
|
| 567 |
+
"learning_rate": 0.00026191048476808935,
|
| 568 |
+
"loss": 0.0101,
|
| 569 |
+
"mean_token_accuracy": 0.9967221260070801,
|
| 570 |
+
"num_tokens": 12061696.0,
|
| 571 |
+
"step": 1475
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"epoch": 3.6155703077851538,
|
| 575 |
+
"grad_norm": 0.00999362114816904,
|
| 576 |
+
"learning_rate": 0.0002547876500860108,
|
| 577 |
+
"loss": 0.0098,
|
| 578 |
+
"mean_token_accuracy": 0.9968640041351319,
|
| 579 |
+
"num_tokens": 12266496.0,
|
| 580 |
+
"step": 1500
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 3.675920337960169,
|
| 584 |
+
"grad_norm": 0.014084997586905956,
|
| 585 |
+
"learning_rate": 0.0002476653690998382,
|
| 586 |
+
"loss": 0.0098,
|
| 587 |
+
"mean_token_accuracy": 0.9968199729919434,
|
| 588 |
+
"num_tokens": 12471296.0,
|
| 589 |
+
"step": 1525
|
| 590 |
+
},
|
| 591 |
+
{
|
| 592 |
+
"epoch": 3.736270368135184,
|
| 593 |
+
"grad_norm": 0.010335746221244335,
|
| 594 |
+
"learning_rate": 0.00024054917782178188,
|
| 595 |
+
"loss": 0.0099,
|
| 596 |
+
"mean_token_accuracy": 0.9967123413085938,
|
| 597 |
+
"num_tokens": 12676096.0,
|
| 598 |
+
"step": 1550
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 3.796620398310199,
|
| 602 |
+
"grad_norm": 0.009000259451568127,
|
| 603 |
+
"learning_rate": 0.0002334446075306396,
|
| 604 |
+
"loss": 0.0097,
|
| 605 |
+
"mean_token_accuracy": 0.9969129276275634,
|
| 606 |
+
"num_tokens": 12880896.0,
|
| 607 |
+
"step": 1575
|
| 608 |
+
},
|
| 609 |
+
{
|
| 610 |
+
"epoch": 3.856970428485214,
|
| 611 |
+
"grad_norm": 0.009936418384313583,
|
| 612 |
+
"learning_rate": 0.00022635718047243897,
|
| 613 |
+
"loss": 0.0098,
|
| 614 |
+
"mean_token_accuracy": 0.9967465877532959,
|
| 615 |
+
"num_tokens": 13085696.0,
|
| 616 |
+
"step": 1600
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"epoch": 3.9173204586602295,
|
| 620 |
+
"grad_norm": 0.009142445400357246,
|
| 621 |
+
"learning_rate": 0.00021929240556810162,
|
| 622 |
+
"loss": 0.0094,
|
| 623 |
+
"mean_token_accuracy": 0.9967563724517823,
|
| 624 |
+
"num_tokens": 13290496.0,
|
| 625 |
+
"step": 1625
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 3.9776704888352445,
|
| 629 |
+
"grad_norm": 0.011989991180598736,
|
| 630 |
+
"learning_rate": 0.00021225577413146564,
|
| 631 |
+
"loss": 0.0096,
|
| 632 |
+
"mean_token_accuracy": 0.9968640041351319,
|
| 633 |
+
"num_tokens": 13495296.0,
|
| 634 |
+
"step": 1650
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"epoch": 4.0,
|
| 638 |
+
"eval_loss": 0.009996045380830765,
|
| 639 |
+
"eval_mean_token_accuracy": 0.9968979861285235,
|
| 640 |
+
"eval_num_tokens": 13570048.0,
|
| 641 |
+
"eval_runtime": 34.2398,
|
| 642 |
+
"eval_samples_per_second": 10.777,
|
| 643 |
+
"eval_steps_per_second": 5.403,
|
| 644 |
+
"step": 1660
|
| 645 |
+
},
|
| 646 |
+
{
|
| 647 |
+
"epoch": 4.036210018105009,
|
| 648 |
+
"grad_norm": 0.012058747932314873,
|
| 649 |
+
"learning_rate": 0.0002052527556009917,
|
| 650 |
+
"loss": 0.0094,
|
| 651 |
+
"mean_token_accuracy": 0.9968678877525723,
|
| 652 |
+
"num_tokens": 13692928.0,
|
| 653 |
+
"step": 1675
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 4.096560048280024,
|
| 657 |
+
"grad_norm": 0.009371360763907433,
|
| 658 |
+
"learning_rate": 0.00019828879328847448,
|
| 659 |
+
"loss": 0.0093,
|
| 660 |
+
"mean_token_accuracy": 0.9968884658813476,
|
| 661 |
+
"num_tokens": 13897728.0,
|
| 662 |
+
"step": 1700
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 4.15691007845504,
|
| 666 |
+
"grad_norm": 0.008277242071926594,
|
| 667 |
+
"learning_rate": 0.00019136930014806037,
|
| 668 |
+
"loss": 0.0092,
|
| 669 |
+
"mean_token_accuracy": 0.9968346500396729,
|
| 670 |
+
"num_tokens": 14102528.0,
|
| 671 |
+
"step": 1725
|
| 672 |
+
},
|
| 673 |
+
{
|
| 674 |
+
"epoch": 4.217260108630055,
|
| 675 |
+
"grad_norm": 0.008042911067605019,
|
| 676 |
+
"learning_rate": 0.00018449965456886262,
|
| 677 |
+
"loss": 0.009,
|
| 678 |
+
"mean_token_accuracy": 0.9969080352783203,
|
| 679 |
+
"num_tokens": 14307328.0,
|
| 680 |
+
"step": 1750
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"epoch": 4.27761013880507,
|
| 684 |
+
"grad_norm": 0.010238353163003922,
|
| 685 |
+
"learning_rate": 0.0001776851961944424,
|
| 686 |
+
"loss": 0.0092,
|
| 687 |
+
"mean_token_accuracy": 0.9969129276275634,
|
| 688 |
+
"num_tokens": 14512128.0,
|
| 689 |
+
"step": 1775
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 4.337960168980085,
|
| 693 |
+
"grad_norm": 0.009031562134623528,
|
| 694 |
+
"learning_rate": 0.00017093122177240684,
|
| 695 |
+
"loss": 0.0093,
|
| 696 |
+
"mean_token_accuracy": 0.9969667434692383,
|
| 697 |
+
"num_tokens": 14716928.0,
|
| 698 |
+
"step": 1800
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"epoch": 4.3983101991551,
|
| 702 |
+
"grad_norm": 0.0108866598457098,
|
| 703 |
+
"learning_rate": 0.00016424298103734827,
|
| 704 |
+
"loss": 0.0091,
|
| 705 |
+
"mean_token_accuracy": 0.9969080352783203,
|
| 706 |
+
"num_tokens": 14921728.0,
|
| 707 |
+
"step": 1825
|
| 708 |
+
},
|
| 709 |
+
{
|
| 710 |
+
"epoch": 4.458660229330115,
|
| 711 |
+
"grad_norm": 0.00900843646377325,
|
| 712 |
+
"learning_rate": 0.0001576256726303272,
|
| 713 |
+
"loss": 0.0093,
|
| 714 |
+
"mean_token_accuracy": 0.9969324970245361,
|
| 715 |
+
"num_tokens": 15126528.0,
|
| 716 |
+
"step": 1850
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 4.51901025950513,
|
| 720 |
+
"grad_norm": 0.008820630609989166,
|
| 721 |
+
"learning_rate": 0.00015108444005806725,
|
| 722 |
+
"loss": 0.0093,
|
| 723 |
+
"mean_token_accuracy": 0.9968835735321044,
|
| 724 |
+
"num_tokens": 15331328.0,
|
| 725 |
+
"step": 1875
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"epoch": 4.579360289680145,
|
| 729 |
+
"grad_norm": 0.009221971966326237,
|
| 730 |
+
"learning_rate": 0.00014462436769500773,
|
| 731 |
+
"loss": 0.0091,
|
| 732 |
+
"mean_token_accuracy": 0.9968933582305908,
|
| 733 |
+
"num_tokens": 15536128.0,
|
| 734 |
+
"step": 1900
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"epoch": 4.63971031985516,
|
| 738 |
+
"grad_norm": 0.010153044946491718,
|
| 739 |
+
"learning_rate": 0.0001382504768313155,
|
| 740 |
+
"loss": 0.0092,
|
| 741 |
+
"mean_token_accuracy": 0.9969031429290771,
|
| 742 |
+
"num_tokens": 15740928.0,
|
| 743 |
+
"step": 1925
|
| 744 |
+
},
|
| 745 |
+
{
|
| 746 |
+
"epoch": 4.700060350030175,
|
| 747 |
+
"grad_norm": 0.009132993407547474,
|
| 748 |
+
"learning_rate": 0.00013196772176993376,
|
| 749 |
+
"loss": 0.0093,
|
| 750 |
+
"mean_token_accuracy": 0.997020559310913,
|
| 751 |
+
"num_tokens": 15945728.0,
|
| 752 |
+
"step": 1950
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 4.76041038020519,
|
| 756 |
+
"grad_norm": 0.009844532236456871,
|
| 757 |
+
"learning_rate": 0.00012578098597569682,
|
| 758 |
+
"loss": 0.0093,
|
| 759 |
+
"mean_token_accuracy": 0.9968884658813476,
|
| 760 |
+
"num_tokens": 16150528.0,
|
| 761 |
+
"step": 1975
|
| 762 |
+
},
|
| 763 |
+
{
|
| 764 |
+
"epoch": 4.820760410380205,
|
| 765 |
+
"grad_norm": 0.010243461467325687,
|
| 766 |
+
"learning_rate": 0.00011969507827950694,
|
| 767 |
+
"loss": 0.0094,
|
| 768 |
+
"mean_token_accuracy": 0.9969080352783203,
|
| 769 |
+
"num_tokens": 16355328.0,
|
| 770 |
+
"step": 2000
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"epoch": 4.88111044055522,
|
| 774 |
+
"grad_norm": 0.010576976463198662,
|
| 775 |
+
"learning_rate": 0.00011371472914052234,
|
| 776 |
+
"loss": 0.0091,
|
| 777 |
+
"mean_token_accuracy": 0.9969520664215088,
|
| 778 |
+
"num_tokens": 16560128.0,
|
| 779 |
+
"step": 2025
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 4.941460470730235,
|
| 783 |
+
"grad_norm": 0.008221893571317196,
|
| 784 |
+
"learning_rate": 0.00010784458696926253,
|
| 785 |
+
"loss": 0.0092,
|
| 786 |
+
"mean_token_accuracy": 0.9968737888336182,
|
| 787 |
+
"num_tokens": 16764928.0,
|
| 788 |
+
"step": 2050
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"epoch": 5.0,
|
| 792 |
+
"grad_norm": 0.02519950643181801,
|
| 793 |
+
"learning_rate": 0.0001020892145144872,
|
| 794 |
+
"loss": 0.009,
|
| 795 |
+
"mean_token_accuracy": 0.996883018729613,
|
| 796 |
+
"num_tokens": 16962560.0,
|
| 797 |
+
"step": 2075
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"epoch": 5.0,
|
| 801 |
+
"eval_loss": 0.009800967760384083,
|
| 802 |
+
"eval_mean_token_accuracy": 0.9968027836567647,
|
| 803 |
+
"eval_num_tokens": 16962560.0,
|
| 804 |
+
"eval_runtime": 34.241,
|
| 805 |
+
"eval_samples_per_second": 10.777,
|
| 806 |
+
"eval_steps_per_second": 5.403,
|
| 807 |
+
"step": 2075
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"epoch": 5.060350030175015,
|
| 811 |
+
"grad_norm": 0.009994215331971645,
|
| 812 |
+
"learning_rate": 9.645308531666052e-05,
|
| 813 |
+
"loss": 0.0089,
|
| 814 |
+
"mean_token_accuracy": 0.9969227123260498,
|
| 815 |
+
"num_tokens": 17167360.0,
|
| 816 |
+
"step": 2100
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"epoch": 5.12070006035003,
|
| 820 |
+
"grad_norm": 0.00914147961884737,
|
| 821 |
+
"learning_rate": 9.094058023075292e-05,
|
| 822 |
+
"loss": 0.0087,
|
| 823 |
+
"mean_token_accuracy": 0.9971526527404785,
|
| 824 |
+
"num_tokens": 17372160.0,
|
| 825 |
+
"step": 2125
|
| 826 |
+
},
|
| 827 |
+
{
|
| 828 |
+
"epoch": 5.181050090525045,
|
| 829 |
+
"grad_norm": 0.008889489807188511,
|
| 830 |
+
"learning_rate": 8.555598402108725e-05,
|
| 831 |
+
"loss": 0.009,
|
| 832 |
+
"mean_token_accuracy": 0.9970107746124267,
|
| 833 |
+
"num_tokens": 17576960.0,
|
| 834 |
+
"step": 2150
|
| 835 |
+
},
|
| 836 |
+
{
|
| 837 |
+
"epoch": 5.24140012070006,
|
| 838 |
+
"grad_norm": 0.009806985966861248,
|
| 839 |
+
"learning_rate": 8.030348203087353e-05,
|
| 840 |
+
"loss": 0.009,
|
| 841 |
+
"mean_token_accuracy": 0.9970596981048584,
|
| 842 |
+
"num_tokens": 17781760.0,
|
| 843 |
+
"step": 2175
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 5.301750150875075,
|
| 847 |
+
"grad_norm": 0.009788556955754757,
|
| 848 |
+
"learning_rate": 7.518715692902254e-05,
|
| 849 |
+
"loss": 0.009,
|
| 850 |
+
"mean_token_accuracy": 0.9970352363586426,
|
| 851 |
+
"num_tokens": 17986560.0,
|
| 852 |
+
"step": 2200
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"epoch": 5.36210018105009,
|
| 856 |
+
"grad_norm": 0.010473587550222874,
|
| 857 |
+
"learning_rate": 7.021098553676493e-05,
|
| 858 |
+
"loss": 0.0089,
|
| 859 |
+
"mean_token_accuracy": 0.996927604675293,
|
| 860 |
+
"num_tokens": 18191360.0,
|
| 861 |
+
"step": 2225
|
| 862 |
+
},
|
| 863 |
+
{
|
| 864 |
+
"epoch": 5.422450211225105,
|
| 865 |
+
"grad_norm": 0.011041617952287197,
|
| 866 |
+
"learning_rate": 6.537883573654501e-05,
|
| 867 |
+
"loss": 0.0089,
|
| 868 |
+
"mean_token_accuracy": 0.9969618511199951,
|
| 869 |
+
"num_tokens": 18396160.0,
|
| 870 |
+
"step": 2250
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"epoch": 5.4828002414001205,
|
| 874 |
+
"grad_norm": 0.008172512985765934,
|
| 875 |
+
"learning_rate": 6.069446346558982e-05,
|
| 876 |
+
"loss": 0.0088,
|
| 877 |
+
"mean_token_accuracy": 0.9970352363586426,
|
| 878 |
+
"num_tokens": 18600960.0,
|
| 879 |
+
"step": 2275
|
| 880 |
+
},
|
| 881 |
+
{
|
| 882 |
+
"epoch": 5.5431502715751355,
|
| 883 |
+
"grad_norm": 0.009114045649766922,
|
| 884 |
+
"learning_rate": 5.616150979649147e-05,
|
| 885 |
+
"loss": 0.0089,
|
| 886 |
+
"mean_token_accuracy": 0.9970548057556152,
|
| 887 |
+
"num_tokens": 18805760.0,
|
| 888 |
+
"step": 2300
|
| 889 |
+
},
|
| 890 |
+
{
|
| 891 |
+
"epoch": 5.603500301750151,
|
| 892 |
+
"grad_norm": 0.008835142478346825,
|
| 893 |
+
"learning_rate": 5.178349810707104e-05,
|
| 894 |
+
"loss": 0.0088,
|
| 895 |
+
"mean_token_accuracy": 0.9969912052154541,
|
| 896 |
+
"num_tokens": 19010560.0,
|
| 897 |
+
"step": 2325
|
| 898 |
+
},
|
| 899 |
+
{
|
| 900 |
+
"epoch": 5.663850331925166,
|
| 901 |
+
"grad_norm": 0.008637483231723309,
|
| 902 |
+
"learning_rate": 4.756383134172478e-05,
|
| 903 |
+
"loss": 0.0088,
|
| 904 |
+
"mean_token_accuracy": 0.9970939445495606,
|
| 905 |
+
"num_tokens": 19215360.0,
|
| 906 |
+
"step": 2350
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 5.724200362100181,
|
| 910 |
+
"grad_norm": 0.008629810996353626,
|
| 911 |
+
"learning_rate": 4.3505789366381116e-05,
|
| 912 |
+
"loss": 0.0088,
|
| 913 |
+
"mean_token_accuracy": 0.9970254516601562,
|
| 914 |
+
"num_tokens": 19420160.0,
|
| 915 |
+
"step": 2375
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"epoch": 5.784550392275197,
|
| 919 |
+
"grad_norm": 0.009468801319599152,
|
| 920 |
+
"learning_rate": 3.9612526419123156e-05,
|
| 921 |
+
"loss": 0.0088,
|
| 922 |
+
"mean_token_accuracy": 0.9969618511199951,
|
| 923 |
+
"num_tokens": 19624960.0,
|
| 924 |
+
"step": 2400
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"epoch": 5.844900422450211,
|
| 928 |
+
"grad_norm": 0.009678692556917667,
|
| 929 |
+
"learning_rate": 3.5887068658460824e-05,
|
| 930 |
+
"loss": 0.0088,
|
| 931 |
+
"mean_token_accuracy": 0.9969667434692383,
|
| 932 |
+
"num_tokens": 19829760.0,
|
| 933 |
+
"step": 2425
|
| 934 |
+
},
|
| 935 |
+
{
|
| 936 |
+
"epoch": 5.905250452625227,
|
| 937 |
+
"grad_norm": 0.010459608398377895,
|
| 938 |
+
"learning_rate": 3.2332311811155415e-05,
|
| 939 |
+
"loss": 0.0088,
|
| 940 |
+
"mean_token_accuracy": 0.9969618511199951,
|
| 941 |
+
"num_tokens": 20034560.0,
|
| 942 |
+
"step": 2450
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"epoch": 5.965600482800241,
|
| 946 |
+
"grad_norm": 0.011055945418775082,
|
| 947 |
+
"learning_rate": 2.8951018921426954e-05,
|
| 948 |
+
"loss": 0.0088,
|
| 949 |
+
"mean_token_accuracy": 0.9969667434692383,
|
| 950 |
+
"num_tokens": 20239360.0,
|
| 951 |
+
"step": 2475
|
| 952 |
+
},
|
| 953 |
+
{
|
| 954 |
+
"epoch": 6.0,
|
| 955 |
+
"eval_loss": 0.009622456505894661,
|
| 956 |
+
"eval_mean_token_accuracy": 0.9968900525892103,
|
| 957 |
+
"eval_num_tokens": 20355072.0,
|
| 958 |
+
"eval_runtime": 34.2252,
|
| 959 |
+
"eval_samples_per_second": 10.782,
|
| 960 |
+
"eval_steps_per_second": 5.405,
|
| 961 |
+
"step": 2490
|
| 962 |
}
|
| 963 |
],
|
| 964 |
"logging_steps": 25,
|
|
|
|
| 978 |
"attributes": {}
|
| 979 |
}
|
| 980 |
},
|
| 981 |
+
"total_flos": 8.832594777263309e+17,
|
| 982 |
"train_batch_size": 2,
|
| 983 |
"trial_name": null,
|
| 984 |
"trial_params": null
|