Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
open-r1
trl
sft
conversational
text-generation-inference
Instructions to use xiangmin/Qwen2.5-1.5B-Open-R1-Distill with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use xiangmin/Qwen2.5-1.5B-Open-R1-Distill with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="xiangmin/Qwen2.5-1.5B-Open-R1-Distill") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("xiangmin/Qwen2.5-1.5B-Open-R1-Distill") model = AutoModelForCausalLM.from_pretrained("xiangmin/Qwen2.5-1.5B-Open-R1-Distill") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use xiangmin/Qwen2.5-1.5B-Open-R1-Distill with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "xiangmin/Qwen2.5-1.5B-Open-R1-Distill" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "xiangmin/Qwen2.5-1.5B-Open-R1-Distill", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/xiangmin/Qwen2.5-1.5B-Open-R1-Distill
- SGLang
How to use xiangmin/Qwen2.5-1.5B-Open-R1-Distill 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 "xiangmin/Qwen2.5-1.5B-Open-R1-Distill" \ --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": "xiangmin/Qwen2.5-1.5B-Open-R1-Distill", "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 "xiangmin/Qwen2.5-1.5B-Open-R1-Distill" \ --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": "xiangmin/Qwen2.5-1.5B-Open-R1-Distill", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use xiangmin/Qwen2.5-1.5B-Open-R1-Distill with Docker Model Runner:
docker model run hf.co/xiangmin/Qwen2.5-1.5B-Open-R1-Distill
Model save
Browse files- README.md +2 -4
- all_results.json +4 -4
- train_results.json +4 -4
- trainer_state.json +215 -215
README.md
CHANGED
|
@@ -1,11 +1,9 @@
|
|
| 1 |
---
|
| 2 |
base_model: Qwen/Qwen2.5-1.5B-Instruct
|
| 3 |
-
datasets: open-r1/OpenR1-Math-220k
|
| 4 |
library_name: transformers
|
| 5 |
model_name: Qwen2.5-1.5B-Open-R1-Distill
|
| 6 |
tags:
|
| 7 |
- generated_from_trainer
|
| 8 |
-
- open-r1
|
| 9 |
- trl
|
| 10 |
- sft
|
| 11 |
licence: license
|
|
@@ -13,7 +11,7 @@ licence: license
|
|
| 13 |
|
| 14 |
# Model Card for Qwen2.5-1.5B-Open-R1-Distill
|
| 15 |
|
| 16 |
-
This model is a fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct)
|
| 17 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 18 |
|
| 19 |
## Quick start
|
|
@@ -29,7 +27,7 @@ print(output["generated_text"])
|
|
| 29 |
|
| 30 |
## Training procedure
|
| 31 |
|
| 32 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/cai-aml/huggingface/runs/
|
| 33 |
|
| 34 |
|
| 35 |
This model was trained with SFT.
|
|
|
|
| 1 |
---
|
| 2 |
base_model: Qwen/Qwen2.5-1.5B-Instruct
|
|
|
|
| 3 |
library_name: transformers
|
| 4 |
model_name: Qwen2.5-1.5B-Open-R1-Distill
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
|
|
|
| 7 |
- trl
|
| 8 |
- sft
|
| 9 |
licence: license
|
|
|
|
| 11 |
|
| 12 |
# Model Card for Qwen2.5-1.5B-Open-R1-Distill
|
| 13 |
|
| 14 |
+
This model is a fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct).
|
| 15 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 16 |
|
| 17 |
## Quick start
|
|
|
|
| 27 |
|
| 28 |
## Training procedure
|
| 29 |
|
| 30 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/cai-aml/huggingface/runs/dxxsdlyn)
|
| 31 |
|
| 32 |
|
| 33 |
This model was trained with SFT.
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 1147472759488512.0,
|
| 3 |
-
"train_loss": 0.
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 93733,
|
| 6 |
-
"train_samples_per_second":
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 1147472759488512.0,
|
| 3 |
+
"train_loss": 0.30104584323107625,
|
| 4 |
+
"train_runtime": 3582.5752,
|
| 5 |
"train_samples": 93733,
|
| 6 |
+
"train_samples_per_second": 26.164,
|
| 7 |
+
"train_steps_per_second": 0.205
|
| 8 |
}
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 1147472759488512.0,
|
| 3 |
-
"train_loss": 0.
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 93733,
|
| 6 |
-
"train_samples_per_second":
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 1147472759488512.0,
|
| 3 |
+
"train_loss": 0.30104584323107625,
|
| 4 |
+
"train_runtime": 3582.5752,
|
| 5 |
"train_samples": 93733,
|
| 6 |
+
"train_samples_per_second": 26.164,
|
| 7 |
+
"train_steps_per_second": 0.205
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -491,701 +491,701 @@
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"epoch": 0.41609822646657574,
|
| 494 |
-
"grad_norm": 0.
|
| 495 |
"learning_rate": 3.55443126760184e-05,
|
| 496 |
"loss": 0.5344,
|
| 497 |
-
"num_tokens":
|
| 498 |
"step": 305
|
| 499 |
},
|
| 500 |
{
|
| 501 |
"epoch": 0.4229195088676671,
|
| 502 |
-
"grad_norm": 0.
|
| 503 |
"learning_rate": 3.506806758087894e-05,
|
| 504 |
-
"loss": 0.
|
| 505 |
-
"num_tokens":
|
| 506 |
"step": 310
|
| 507 |
},
|
| 508 |
{
|
| 509 |
"epoch": 0.4297407912687585,
|
| 510 |
-
"grad_norm": 0.
|
| 511 |
"learning_rate": 3.458796781007437e-05,
|
| 512 |
"loss": 0.5267,
|
| 513 |
-
"num_tokens":
|
| 514 |
"step": 315
|
| 515 |
},
|
| 516 |
{
|
| 517 |
"epoch": 0.43656207366984995,
|
| 518 |
-
"grad_norm": 0.
|
| 519 |
"learning_rate": 3.410425789483854e-05,
|
| 520 |
"loss": 0.527,
|
| 521 |
-
"num_tokens":
|
| 522 |
"step": 320
|
| 523 |
},
|
| 524 |
{
|
| 525 |
"epoch": 0.4433833560709413,
|
| 526 |
-
"grad_norm": 0.
|
| 527 |
"learning_rate": 3.3617184205175304e-05,
|
| 528 |
"loss": 0.5335,
|
| 529 |
-
"num_tokens":
|
| 530 |
"step": 325
|
| 531 |
},
|
| 532 |
{
|
| 533 |
"epoch": 0.45020463847203274,
|
| 534 |
-
"grad_norm": 0.
|
| 535 |
"learning_rate": 3.312699482437392e-05,
|
| 536 |
"loss": 0.5207,
|
| 537 |
-
"num_tokens":
|
| 538 |
"step": 330
|
| 539 |
},
|
| 540 |
{
|
| 541 |
"epoch": 0.45702592087312416,
|
| 542 |
-
"grad_norm": 0.
|
| 543 |
"learning_rate": 3.263393942265168e-05,
|
| 544 |
"loss": 0.5274,
|
| 545 |
-
"num_tokens":
|
| 546 |
"step": 335
|
| 547 |
},
|
| 548 |
{
|
| 549 |
"epoch": 0.4638472032742155,
|
| 550 |
-
"grad_norm": 0.
|
| 551 |
"learning_rate": 3.213826912998838e-05,
|
| 552 |
"loss": 0.5199,
|
| 553 |
-
"num_tokens":
|
| 554 |
"step": 340
|
| 555 |
},
|
| 556 |
{
|
| 557 |
"epoch": 0.47066848567530695,
|
| 558 |
-
"grad_norm": 0.
|
| 559 |
"learning_rate": 3.164023640821719e-05,
|
| 560 |
-
"loss": 0.
|
| 561 |
-
"num_tokens":
|
| 562 |
"step": 345
|
| 563 |
},
|
| 564 |
{
|
| 565 |
"epoch": 0.47748976807639837,
|
| 566 |
-
"grad_norm": 0.
|
| 567 |
"learning_rate": 3.114009492243721e-05,
|
| 568 |
"loss": 0.5216,
|
| 569 |
-
"num_tokens":
|
| 570 |
"step": 350
|
| 571 |
},
|
| 572 |
{
|
| 573 |
"epoch": 0.4843110504774898,
|
| 574 |
-
"grad_norm": 0.
|
| 575 |
"learning_rate": 3.063809941181321e-05,
|
| 576 |
"loss": 0.5312,
|
| 577 |
-
"num_tokens":
|
| 578 |
"step": 355
|
| 579 |
},
|
| 580 |
{
|
| 581 |
"epoch": 0.49113233287858116,
|
| 582 |
-
"grad_norm": 0.
|
| 583 |
"learning_rate": 3.0134505559828203e-05,
|
| 584 |
"loss": 0.535,
|
| 585 |
-
"num_tokens":
|
| 586 |
"step": 360
|
| 587 |
},
|
| 588 |
{
|
| 589 |
"epoch": 0.4979536152796726,
|
| 590 |
-
"grad_norm": 0.
|
| 591 |
"learning_rate": 2.9629569864055125e-05,
|
| 592 |
-
"loss": 0.
|
| 593 |
-
"num_tokens":
|
| 594 |
"step": 365
|
| 595 |
},
|
| 596 |
{
|
| 597 |
"epoch": 0.504774897680764,
|
| 598 |
-
"grad_norm": 0.
|
| 599 |
"learning_rate": 2.9123549505513868e-05,
|
| 600 |
-
"loss": 0.
|
| 601 |
-
"num_tokens":
|
| 602 |
"step": 370
|
| 603 |
},
|
| 604 |
{
|
| 605 |
"epoch": 0.5115961800818554,
|
| 606 |
-
"grad_norm": 0.
|
| 607 |
"learning_rate": 2.8616702217680134e-05,
|
| 608 |
"loss": 0.5229,
|
| 609 |
-
"num_tokens":
|
| 610 |
"step": 375
|
| 611 |
},
|
| 612 |
{
|
| 613 |
"epoch": 0.5184174624829468,
|
| 614 |
-
"grad_norm": 0.
|
| 615 |
"learning_rate": 2.810928615521303e-05,
|
| 616 |
"loss": 0.5096,
|
| 617 |
-
"num_tokens":
|
| 618 |
"step": 380
|
| 619 |
},
|
| 620 |
{
|
| 621 |
"epoch": 0.5252387448840382,
|
| 622 |
-
"grad_norm": 0.
|
| 623 |
"learning_rate": 2.7601559762468022e-05,
|
| 624 |
"loss": 0.5188,
|
| 625 |
-
"num_tokens":
|
| 626 |
"step": 385
|
| 627 |
},
|
| 628 |
{
|
| 629 |
"epoch": 0.5320600272851296,
|
| 630 |
-
"grad_norm": 0.
|
| 631 |
"learning_rate": 2.7093781641862387e-05,
|
| 632 |
-
"loss": 0.
|
| 633 |
-
"num_tokens":
|
| 634 |
"step": 390
|
| 635 |
},
|
| 636 |
{
|
| 637 |
"epoch": 0.538881309686221,
|
| 638 |
-
"grad_norm": 0.
|
| 639 |
"learning_rate": 2.658621042216021e-05,
|
| 640 |
"loss": 0.5056,
|
| 641 |
-
"num_tokens":
|
| 642 |
"step": 395
|
| 643 |
},
|
| 644 |
{
|
| 645 |
"epoch": 0.5457025920873124,
|
| 646 |
-
"grad_norm": 0.
|
| 647 |
"learning_rate": 2.6079104626743845e-05,
|
| 648 |
-
"loss": 0.
|
| 649 |
-
"num_tokens":
|
| 650 |
"step": 400
|
| 651 |
},
|
| 652 |
{
|
| 653 |
"epoch": 0.5525238744884038,
|
| 654 |
-
"grad_norm": 0.
|
| 655 |
"learning_rate": 2.5572722541939113e-05,
|
| 656 |
-
"loss": 0.
|
| 657 |
-
"num_tokens":
|
| 658 |
"step": 405
|
| 659 |
},
|
| 660 |
{
|
| 661 |
"epoch": 0.5593451568894953,
|
| 662 |
-
"grad_norm": 0.
|
| 663 |
"learning_rate": 2.5067322085461315e-05,
|
| 664 |
-
"loss": 0.
|
| 665 |
-
"num_tokens":
|
| 666 |
"step": 410
|
| 667 |
},
|
| 668 |
{
|
| 669 |
"epoch": 0.5661664392905866,
|
| 670 |
-
"grad_norm": 0.
|
| 671 |
"learning_rate": 2.4563160675048846e-05,
|
| 672 |
-
"loss": 0.
|
| 673 |
-
"num_tokens":
|
| 674 |
"step": 415
|
| 675 |
},
|
| 676 |
{
|
| 677 |
"epoch": 0.572987721691678,
|
| 678 |
-
"grad_norm": 0.
|
| 679 |
"learning_rate": 2.406049509735156e-05,
|
| 680 |
"loss": 0.5154,
|
| 681 |
-
"num_tokens":
|
| 682 |
"step": 420
|
| 683 |
},
|
| 684 |
{
|
| 685 |
"epoch": 0.5798090040927695,
|
| 686 |
-
"grad_norm": 0.
|
| 687 |
"learning_rate": 2.355958137714056e-05,
|
| 688 |
"loss": 0.5108,
|
| 689 |
-
"num_tokens":
|
| 690 |
"step": 425
|
| 691 |
},
|
| 692 |
{
|
| 693 |
"epoch": 0.5866302864938608,
|
| 694 |
-
"grad_norm": 0.
|
| 695 |
"learning_rate": 2.3060674646906004e-05,
|
| 696 |
-
"loss": 0.
|
| 697 |
-
"num_tokens":
|
| 698 |
"step": 430
|
| 699 |
},
|
| 700 |
{
|
| 701 |
"epoch": 0.5934515688949522,
|
| 702 |
-
"grad_norm": 0.
|
| 703 |
"learning_rate": 2.2564029016909416e-05,
|
| 704 |
"loss": 0.5049,
|
| 705 |
-
"num_tokens":
|
| 706 |
"step": 435
|
| 707 |
},
|
| 708 |
{
|
| 709 |
"epoch": 0.6002728512960437,
|
| 710 |
-
"grad_norm": 0.
|
| 711 |
"learning_rate": 2.2069897445756627e-05,
|
| 712 |
"loss": 0.5028,
|
| 713 |
-
"num_tokens":
|
| 714 |
"step": 440
|
| 715 |
},
|
| 716 |
{
|
| 717 |
"epoch": 0.607094133697135,
|
| 718 |
-
"grad_norm": 0.
|
| 719 |
"learning_rate": 2.1578531611557322e-05,
|
| 720 |
"loss": 0.5158,
|
| 721 |
-
"num_tokens":
|
| 722 |
"step": 445
|
| 723 |
},
|
| 724 |
{
|
| 725 |
"epoch": 0.6139154160982264,
|
| 726 |
-
"grad_norm": 0.
|
| 727 |
"learning_rate": 2.109018178373675e-05,
|
| 728 |
-
"loss": 0.
|
| 729 |
-
"num_tokens":
|
| 730 |
"step": 450
|
| 731 |
},
|
| 732 |
{
|
| 733 |
"epoch": 0.6207366984993179,
|
| 734 |
-
"grad_norm": 0.
|
| 735 |
"learning_rate": 2.0605096695564973e-05,
|
| 736 |
-
"loss": 0.
|
| 737 |
-
"num_tokens":
|
| 738 |
"step": 455
|
| 739 |
},
|
| 740 |
{
|
| 741 |
"epoch": 0.6275579809004093,
|
| 742 |
-
"grad_norm": 0.
|
| 743 |
"learning_rate": 2.0123523417468466e-05,
|
| 744 |
"loss": 0.5115,
|
| 745 |
-
"num_tokens":
|
| 746 |
"step": 460
|
| 747 |
},
|
| 748 |
{
|
| 749 |
"epoch": 0.6343792633015006,
|
| 750 |
-
"grad_norm": 0.
|
| 751 |
"learning_rate": 1.9645707231188742e-05,
|
| 752 |
-
"loss": 0.
|
| 753 |
-
"num_tokens":
|
| 754 |
"step": 465
|
| 755 |
},
|
| 756 |
{
|
| 757 |
"epoch": 0.6412005457025921,
|
| 758 |
-
"grad_norm": 0.
|
| 759 |
"learning_rate": 1.9171891504851925e-05,
|
| 760 |
-
"loss": 0.
|
| 761 |
-
"num_tokens":
|
| 762 |
"step": 470
|
| 763 |
},
|
| 764 |
{
|
| 765 |
"epoch": 0.6480218281036835,
|
| 766 |
-
"grad_norm": 0.
|
| 767 |
"learning_rate": 1.8702317569013094e-05,
|
| 768 |
"loss": 0.5005,
|
| 769 |
-
"num_tokens":
|
| 770 |
"step": 475
|
| 771 |
},
|
| 772 |
{
|
| 773 |
"epoch": 0.654843110504775,
|
| 774 |
-
"grad_norm": 0.
|
| 775 |
"learning_rate": 1.8237224593738327e-05,
|
| 776 |
"loss": 0.5027,
|
| 777 |
-
"num_tokens":
|
| 778 |
"step": 480
|
| 779 |
},
|
| 780 |
{
|
| 781 |
"epoch": 0.6616643929058663,
|
| 782 |
-
"grad_norm": 0.
|
| 783 |
"learning_rate": 1.7776849466787223e-05,
|
| 784 |
-
"loss": 0.
|
| 785 |
-
"num_tokens":
|
| 786 |
"step": 485
|
| 787 |
},
|
| 788 |
{
|
| 789 |
"epoch": 0.6684856753069577,
|
| 790 |
-
"grad_norm": 0.
|
| 791 |
"learning_rate": 1.7321426672957896e-05,
|
| 792 |
"loss": 0.5025,
|
| 793 |
-
"num_tokens":
|
| 794 |
"step": 490
|
| 795 |
},
|
| 796 |
{
|
| 797 |
"epoch": 0.6753069577080492,
|
| 798 |
-
"grad_norm": 0.
|
| 799 |
"learning_rate": 1.6871188174655787e-05,
|
| 800 |
"loss": 0.4957,
|
| 801 |
-
"num_tokens":
|
| 802 |
"step": 495
|
| 803 |
},
|
| 804 |
{
|
| 805 |
"epoch": 0.6821282401091405,
|
| 806 |
-
"grad_norm": 0.
|
| 807 |
"learning_rate": 1.6426363293747334e-05,
|
| 808 |
"loss": 0.5001,
|
| 809 |
-
"num_tokens":
|
| 810 |
"step": 500
|
| 811 |
},
|
| 812 |
{
|
| 813 |
"epoch": 0.6889495225102319,
|
| 814 |
-
"grad_norm": 0.
|
| 815 |
"learning_rate": 1.598717859475846e-05,
|
| 816 |
-
"loss": 0.
|
| 817 |
-
"num_tokens":
|
| 818 |
"step": 505
|
| 819 |
},
|
| 820 |
{
|
| 821 |
"epoch": 0.6957708049113234,
|
| 822 |
-
"grad_norm": 0.
|
| 823 |
"learning_rate": 1.5553857769477553e-05,
|
| 824 |
-
"loss": 0.
|
| 825 |
-
"num_tokens":
|
| 826 |
"step": 510
|
| 827 |
},
|
| 828 |
{
|
| 829 |
"epoch": 0.7025920873124147,
|
| 830 |
-
"grad_norm": 0.
|
| 831 |
"learning_rate": 1.5126621523021518e-05,
|
| 832 |
"loss": 0.51,
|
| 833 |
-
"num_tokens":
|
| 834 |
"step": 515
|
| 835 |
},
|
| 836 |
{
|
| 837 |
"epoch": 0.7094133697135061,
|
| 838 |
-
"grad_norm": 0.
|
| 839 |
"learning_rate": 1.4705687461423209e-05,
|
| 840 |
-
"loss": 0.
|
| 841 |
-
"num_tokens":
|
| 842 |
"step": 520
|
| 843 |
},
|
| 844 |
{
|
| 845 |
"epoch": 0.7162346521145976,
|
| 846 |
-
"grad_norm": 0.
|
| 847 |
"learning_rate": 1.4291269980797139e-05,
|
| 848 |
-
"loss": 0.
|
| 849 |
-
"num_tokens":
|
| 850 |
"step": 525
|
| 851 |
},
|
| 852 |
{
|
| 853 |
"epoch": 0.723055934515689,
|
| 854 |
-
"grad_norm": 0.
|
| 855 |
"learning_rate": 1.3883580158140291e-05,
|
| 856 |
-
"loss": 0.
|
| 857 |
-
"num_tokens":
|
| 858 |
"step": 530
|
| 859 |
},
|
| 860 |
{
|
| 861 |
"epoch": 0.7298772169167803,
|
| 862 |
-
"grad_norm": 0.
|
| 863 |
"learning_rate": 1.3482825643823293e-05,
|
| 864 |
"loss": 0.5061,
|
| 865 |
-
"num_tokens":
|
| 866 |
"step": 535
|
| 867 |
},
|
| 868 |
{
|
| 869 |
"epoch": 0.7366984993178718,
|
| 870 |
-
"grad_norm": 0.
|
| 871 |
"learning_rate": 1.3089210555827086e-05,
|
| 872 |
"loss": 0.5118,
|
| 873 |
-
"num_tokens":
|
| 874 |
"step": 540
|
| 875 |
},
|
| 876 |
{
|
| 877 |
"epoch": 0.7435197817189632,
|
| 878 |
-
"grad_norm": 0.
|
| 879 |
"learning_rate": 1.270293537577855e-05,
|
| 880 |
"loss": 0.5148,
|
| 881 |
-
"num_tokens":
|
| 882 |
"step": 545
|
| 883 |
},
|
| 884 |
{
|
| 885 |
"epoch": 0.7503410641200545,
|
| 886 |
-
"grad_norm": 0.
|
| 887 |
"learning_rate": 1.232419684683844e-05,
|
| 888 |
-
"loss": 0.
|
| 889 |
-
"num_tokens":
|
| 890 |
"step": 550
|
| 891 |
},
|
| 892 |
{
|
| 893 |
"epoch": 0.757162346521146,
|
| 894 |
-
"grad_norm": 0.
|
| 895 |
"learning_rate": 1.1953187873493303e-05,
|
| 896 |
-
"loss": 0.
|
| 897 |
-
"num_tokens":
|
| 898 |
"step": 555
|
| 899 |
},
|
| 900 |
{
|
| 901 |
"epoch": 0.7639836289222374,
|
| 902 |
-
"grad_norm": 0.
|
| 903 |
"learning_rate": 1.1590097423302684e-05,
|
| 904 |
"loss": 0.496,
|
| 905 |
-
"num_tokens":
|
| 906 |
"step": 560
|
| 907 |
},
|
| 908 |
{
|
| 909 |
"epoch": 0.7708049113233287,
|
| 910 |
-
"grad_norm": 0.
|
| 911 |
"learning_rate": 1.1235110430651421e-05,
|
| 912 |
"loss": 0.496,
|
| 913 |
-
"num_tokens":
|
| 914 |
"step": 565
|
| 915 |
},
|
| 916 |
{
|
| 917 |
"epoch": 0.7776261937244202,
|
| 918 |
-
"grad_norm": 0.
|
| 919 |
"learning_rate": 1.0888407702556284e-05,
|
| 920 |
"loss": 0.4998,
|
| 921 |
-
"num_tokens":
|
| 922 |
"step": 570
|
| 923 |
},
|
| 924 |
{
|
| 925 |
"epoch": 0.7844474761255116,
|
| 926 |
-
"grad_norm": 0.
|
| 927 |
"learning_rate": 1.0550165826574766e-05,
|
| 928 |
-
"loss": 0.
|
| 929 |
-
"num_tokens":
|
| 930 |
"step": 575
|
| 931 |
},
|
| 932 |
{
|
| 933 |
"epoch": 0.791268758526603,
|
| 934 |
-
"grad_norm": 0.
|
| 935 |
"learning_rate": 1.0220557080862985e-05,
|
| 936 |
"loss": 0.5149,
|
| 937 |
-
"num_tokens":
|
| 938 |
"step": 580
|
| 939 |
},
|
| 940 |
{
|
| 941 |
"epoch": 0.7980900409276944,
|
| 942 |
-
"grad_norm": 0.
|
| 943 |
"learning_rate": 9.899749346428556e-06,
|
| 944 |
"loss": 0.5021,
|
| 945 |
-
"num_tokens":
|
| 946 |
"step": 585
|
| 947 |
},
|
| 948 |
{
|
| 949 |
"epoch": 0.8049113233287858,
|
| 950 |
-
"grad_norm": 0.
|
| 951 |
"learning_rate": 9.587906021623016e-06,
|
| 952 |
"loss": 0.5161,
|
| 953 |
-
"num_tokens":
|
| 954 |
"step": 590
|
| 955 |
},
|
| 956 |
{
|
| 957 |
"epoch": 0.8117326057298773,
|
| 958 |
-
"grad_norm": 0.
|
| 959 |
"learning_rate": 9.28518593891749e-06,
|
| 960 |
"loss": 0.5013,
|
| 961 |
-
"num_tokens":
|
| 962 |
"step": 595
|
| 963 |
},
|
| 964 |
{
|
| 965 |
"epoch": 0.8185538881309686,
|
| 966 |
-
"grad_norm": 0.
|
| 967 |
"learning_rate": 8.99174328400385e-06,
|
| 968 |
-
"loss": 0.
|
| 969 |
-
"num_tokens":
|
| 970 |
"step": 600
|
| 971 |
},
|
| 972 |
{
|
| 973 |
"epoch": 0.82537517053206,
|
| 974 |
-
"grad_norm": 0.
|
| 975 |
"learning_rate": 8.707727517262697e-06,
|
| 976 |
"loss": 0.5049,
|
| 977 |
-
"num_tokens":
|
| 978 |
"step": 605
|
| 979 |
},
|
| 980 |
{
|
| 981 |
"epoch": 0.8321964529331515,
|
| 982 |
-
"grad_norm": 0.
|
| 983 |
"learning_rate": 8.433283297638053e-06,
|
| 984 |
-
"loss": 0.
|
| 985 |
-
"num_tokens":
|
| 986 |
"step": 610
|
| 987 |
},
|
| 988 |
{
|
| 989 |
"epoch": 0.8390177353342428,
|
| 990 |
-
"grad_norm": 0.
|
| 991 |
"learning_rate": 8.168550408957632e-06,
|
| 992 |
"loss": 0.497,
|
| 993 |
-
"num_tokens":
|
| 994 |
"step": 615
|
| 995 |
},
|
| 996 |
{
|
| 997 |
"epoch": 0.8458390177353342,
|
| 998 |
-
"grad_norm": 0.
|
| 999 |
"learning_rate": 7.91366368873613e-06,
|
| 1000 |
"loss": 0.4944,
|
| 1001 |
-
"num_tokens":
|
| 1002 |
"step": 620
|
| 1003 |
},
|
| 1004 |
{
|
| 1005 |
"epoch": 0.8526603001364257,
|
| 1006 |
-
"grad_norm": 0.
|
| 1007 |
"learning_rate": 7.66875295949791e-06,
|
| 1008 |
-
"loss": 0.
|
| 1009 |
-
"num_tokens":
|
| 1010 |
"step": 625
|
| 1011 |
},
|
| 1012 |
{
|
| 1013 |
"epoch": 0.859481582537517,
|
| 1014 |
-
"grad_norm": 0.
|
| 1015 |
"learning_rate": 7.4339429626539e-06,
|
| 1016 |
"loss": 0.5102,
|
| 1017 |
-
"num_tokens":
|
| 1018 |
"step": 630
|
| 1019 |
},
|
| 1020 |
{
|
| 1021 |
"epoch": 0.8663028649386084,
|
| 1022 |
-
"grad_norm": 0.
|
| 1023 |
"learning_rate": 7.2093532949665715e-06,
|
| 1024 |
-
"loss": 0.
|
| 1025 |
-
"num_tokens":
|
| 1026 |
"step": 635
|
| 1027 |
},
|
| 1028 |
{
|
| 1029 |
"epoch": 0.8731241473396999,
|
| 1030 |
-
"grad_norm": 0.
|
| 1031 |
"learning_rate": 6.995098347635173e-06,
|
| 1032 |
"loss": 0.4933,
|
| 1033 |
-
"num_tokens":
|
| 1034 |
"step": 640
|
| 1035 |
},
|
| 1036 |
{
|
| 1037 |
"epoch": 0.8799454297407913,
|
| 1038 |
-
"grad_norm": 0.
|
| 1039 |
"learning_rate": 6.791287248032431e-06,
|
| 1040 |
"loss": 0.4966,
|
| 1041 |
-
"num_tokens":
|
| 1042 |
"step": 645
|
| 1043 |
},
|
| 1044 |
{
|
| 1045 |
"epoch": 0.8867667121418826,
|
| 1046 |
-
"grad_norm": 0.
|
| 1047 |
"learning_rate": 6.598023804122194e-06,
|
| 1048 |
-
"loss": 0.
|
| 1049 |
-
"num_tokens":
|
| 1050 |
"step": 650
|
| 1051 |
},
|
| 1052 |
{
|
| 1053 |
"epoch": 0.8935879945429741,
|
| 1054 |
-
"grad_norm": 0.
|
| 1055 |
"learning_rate": 6.415406451586528e-06,
|
| 1056 |
-
"loss": 0.
|
| 1057 |
-
"num_tokens":
|
| 1058 |
"step": 655
|
| 1059 |
},
|
| 1060 |
{
|
| 1061 |
"epoch": 0.9004092769440655,
|
| 1062 |
-
"grad_norm": 0.
|
| 1063 |
"learning_rate": 6.243528203689025e-06,
|
| 1064 |
-
"loss": 0.
|
| 1065 |
-
"num_tokens":
|
| 1066 |
"step": 660
|
| 1067 |
},
|
| 1068 |
{
|
| 1069 |
"epoch": 0.9072305593451568,
|
| 1070 |
-
"grad_norm": 0.
|
| 1071 |
"learning_rate": 6.0824766039e-06,
|
| 1072 |
"loss": 0.4994,
|
| 1073 |
-
"num_tokens":
|
| 1074 |
"step": 665
|
| 1075 |
},
|
| 1076 |
{
|
| 1077 |
"epoch": 0.9140518417462483,
|
| 1078 |
-
"grad_norm": 0.
|
| 1079 |
"learning_rate": 5.932333681307571e-06,
|
| 1080 |
-
"loss": 0.
|
| 1081 |
-
"num_tokens":
|
| 1082 |
"step": 670
|
| 1083 |
},
|
| 1084 |
{
|
| 1085 |
"epoch": 0.9208731241473397,
|
| 1086 |
-
"grad_norm": 0.
|
| 1087 |
"learning_rate": 5.793175908837471e-06,
|
| 1088 |
"loss": 0.4967,
|
| 1089 |
-
"num_tokens":
|
| 1090 |
"step": 675
|
| 1091 |
},
|
| 1092 |
{
|
| 1093 |
"epoch": 0.927694406548431,
|
| 1094 |
-
"grad_norm": 0.
|
| 1095 |
"learning_rate": 5.665074164302742e-06,
|
| 1096 |
"loss": 0.5064,
|
| 1097 |
-
"num_tokens":
|
| 1098 |
"step": 680
|
| 1099 |
},
|
| 1100 |
{
|
| 1101 |
"epoch": 0.9345156889495225,
|
| 1102 |
-
"grad_norm": 0.
|
| 1103 |
"learning_rate": 5.548093694303275e-06,
|
| 1104 |
-
"loss": 0.
|
| 1105 |
-
"num_tokens":
|
| 1106 |
"step": 685
|
| 1107 |
},
|
| 1108 |
{
|
| 1109 |
"epoch": 0.9413369713506139,
|
| 1110 |
-
"grad_norm": 0.
|
| 1111 |
"learning_rate": 5.442294080993446e-06,
|
| 1112 |
"loss": 0.5059,
|
| 1113 |
-
"num_tokens":
|
| 1114 |
"step": 690
|
| 1115 |
},
|
| 1116 |
{
|
| 1117 |
"epoch": 0.9481582537517054,
|
| 1118 |
-
"grad_norm": 0.
|
| 1119 |
"learning_rate": 5.347729211734919e-06,
|
| 1120 |
-
"loss": 0.
|
| 1121 |
-
"num_tokens":
|
| 1122 |
"step": 695
|
| 1123 |
},
|
| 1124 |
{
|
| 1125 |
"epoch": 0.9549795361527967,
|
| 1126 |
-
"grad_norm": 0.
|
| 1127 |
"learning_rate": 5.264447251649954e-06,
|
| 1128 |
"loss": 0.5057,
|
| 1129 |
-
"num_tokens":
|
| 1130 |
"step": 700
|
| 1131 |
},
|
| 1132 |
{
|
| 1133 |
"epoch": 0.9618008185538881,
|
| 1134 |
-
"grad_norm": 0.
|
| 1135 |
"learning_rate": 5.192490619089267e-06,
|
| 1136 |
-
"loss": 0.
|
| 1137 |
-
"num_tokens":
|
| 1138 |
"step": 705
|
| 1139 |
},
|
| 1140 |
{
|
| 1141 |
"epoch": 0.9686221009549796,
|
| 1142 |
-
"grad_norm": 0.
|
| 1143 |
"learning_rate": 5.1318959640269095e-06,
|
| 1144 |
-
"loss": 0.
|
| 1145 |
-
"num_tokens":
|
| 1146 |
"step": 710
|
| 1147 |
},
|
| 1148 |
{
|
| 1149 |
"epoch": 0.975443383356071,
|
| 1150 |
-
"grad_norm": 0.
|
| 1151 |
"learning_rate": 5.082694149393189e-06,
|
| 1152 |
-
"loss": 0.
|
| 1153 |
-
"num_tokens":
|
| 1154 |
"step": 715
|
| 1155 |
},
|
| 1156 |
{
|
| 1157 |
"epoch": 0.9822646657571623,
|
| 1158 |
-
"grad_norm": 0.
|
| 1159 |
"learning_rate": 5.044910235355121e-06,
|
| 1160 |
"loss": 0.4974,
|
| 1161 |
-
"num_tokens":
|
| 1162 |
"step": 720
|
| 1163 |
},
|
| 1164 |
{
|
| 1165 |
"epoch": 0.9890859481582538,
|
| 1166 |
-
"grad_norm": 0.
|
| 1167 |
"learning_rate": 5.0185634665524255e-06,
|
| 1168 |
-
"loss": 0.
|
| 1169 |
-
"num_tokens":
|
| 1170 |
"step": 725
|
| 1171 |
},
|
| 1172 |
{
|
| 1173 |
"epoch": 0.9959072305593452,
|
| 1174 |
-
"grad_norm": 0.
|
| 1175 |
"learning_rate": 5.003667262295572e-06,
|
| 1176 |
-
"loss": 0.
|
| 1177 |
-
"num_tokens":
|
| 1178 |
"step": 730
|
| 1179 |
},
|
| 1180 |
{
|
| 1181 |
"epoch": 1.0,
|
| 1182 |
-
"num_tokens":
|
| 1183 |
"step": 733,
|
| 1184 |
"total_flos": 1147472759488512.0,
|
| 1185 |
-
"train_loss": 0.
|
| 1186 |
-
"train_runtime":
|
| 1187 |
-
"train_samples_per_second":
|
| 1188 |
-
"train_steps_per_second": 0.
|
| 1189 |
}
|
| 1190 |
],
|
| 1191 |
"logging_steps": 5,
|
|
|
|
| 491 |
},
|
| 492 |
{
|
| 493 |
"epoch": 0.41609822646657574,
|
| 494 |
+
"grad_norm": 0.31150738136265943,
|
| 495 |
"learning_rate": 3.55443126760184e-05,
|
| 496 |
"loss": 0.5344,
|
| 497 |
+
"num_tokens": 3907038.0,
|
| 498 |
"step": 305
|
| 499 |
},
|
| 500 |
{
|
| 501 |
"epoch": 0.4229195088676671,
|
| 502 |
+
"grad_norm": 0.3468593061143695,
|
| 503 |
"learning_rate": 3.506806758087894e-05,
|
| 504 |
+
"loss": 0.532,
|
| 505 |
+
"num_tokens": 7683984.0,
|
| 506 |
"step": 310
|
| 507 |
},
|
| 508 |
{
|
| 509 |
"epoch": 0.4297407912687585,
|
| 510 |
+
"grad_norm": 0.31656776462890823,
|
| 511 |
"learning_rate": 3.458796781007437e-05,
|
| 512 |
"loss": 0.5267,
|
| 513 |
+
"num_tokens": 11403774.0,
|
| 514 |
"step": 315
|
| 515 |
},
|
| 516 |
{
|
| 517 |
"epoch": 0.43656207366984995,
|
| 518 |
+
"grad_norm": 0.2905862187240268,
|
| 519 |
"learning_rate": 3.410425789483854e-05,
|
| 520 |
"loss": 0.527,
|
| 521 |
+
"num_tokens": 15257500.0,
|
| 522 |
"step": 320
|
| 523 |
},
|
| 524 |
{
|
| 525 |
"epoch": 0.4433833560709413,
|
| 526 |
+
"grad_norm": 0.2862429453666647,
|
| 527 |
"learning_rate": 3.3617184205175304e-05,
|
| 528 |
"loss": 0.5335,
|
| 529 |
+
"num_tokens": 19040608.0,
|
| 530 |
"step": 325
|
| 531 |
},
|
| 532 |
{
|
| 533 |
"epoch": 0.45020463847203274,
|
| 534 |
+
"grad_norm": 0.34169112866025547,
|
| 535 |
"learning_rate": 3.312699482437392e-05,
|
| 536 |
"loss": 0.5207,
|
| 537 |
+
"num_tokens": 22896778.0,
|
| 538 |
"step": 330
|
| 539 |
},
|
| 540 |
{
|
| 541 |
"epoch": 0.45702592087312416,
|
| 542 |
+
"grad_norm": 0.28811353179764293,
|
| 543 |
"learning_rate": 3.263393942265168e-05,
|
| 544 |
"loss": 0.5274,
|
| 545 |
+
"num_tokens": 26707422.0,
|
| 546 |
"step": 335
|
| 547 |
},
|
| 548 |
{
|
| 549 |
"epoch": 0.4638472032742155,
|
| 550 |
+
"grad_norm": 0.25952079134670186,
|
| 551 |
"learning_rate": 3.213826912998838e-05,
|
| 552 |
"loss": 0.5199,
|
| 553 |
+
"num_tokens": 30745942.0,
|
| 554 |
"step": 340
|
| 555 |
},
|
| 556 |
{
|
| 557 |
"epoch": 0.47066848567530695,
|
| 558 |
+
"grad_norm": 0.27171779465267426,
|
| 559 |
"learning_rate": 3.164023640821719e-05,
|
| 560 |
+
"loss": 0.5131,
|
| 561 |
+
"num_tokens": 34577418.0,
|
| 562 |
"step": 345
|
| 563 |
},
|
| 564 |
{
|
| 565 |
"epoch": 0.47748976807639837,
|
| 566 |
+
"grad_norm": 0.2756410136692784,
|
| 567 |
"learning_rate": 3.114009492243721e-05,
|
| 568 |
"loss": 0.5216,
|
| 569 |
+
"num_tokens": 38388303.0,
|
| 570 |
"step": 350
|
| 571 |
},
|
| 572 |
{
|
| 573 |
"epoch": 0.4843110504774898,
|
| 574 |
+
"grad_norm": 0.2862166299702774,
|
| 575 |
"learning_rate": 3.063809941181321e-05,
|
| 576 |
"loss": 0.5312,
|
| 577 |
+
"num_tokens": 42263578.0,
|
| 578 |
"step": 355
|
| 579 |
},
|
| 580 |
{
|
| 581 |
"epoch": 0.49113233287858116,
|
| 582 |
+
"grad_norm": 0.2776215155538455,
|
| 583 |
"learning_rate": 3.0134505559828203e-05,
|
| 584 |
"loss": 0.535,
|
| 585 |
+
"num_tokens": 46141558.0,
|
| 586 |
"step": 360
|
| 587 |
},
|
| 588 |
{
|
| 589 |
"epoch": 0.4979536152796726,
|
| 590 |
+
"grad_norm": 0.27939238016420803,
|
| 591 |
"learning_rate": 2.9629569864055125e-05,
|
| 592 |
+
"loss": 0.5129,
|
| 593 |
+
"num_tokens": 49793997.0,
|
| 594 |
"step": 365
|
| 595 |
},
|
| 596 |
{
|
| 597 |
"epoch": 0.504774897680764,
|
| 598 |
+
"grad_norm": 0.27656045657678896,
|
| 599 |
"learning_rate": 2.9123549505513868e-05,
|
| 600 |
+
"loss": 0.5149,
|
| 601 |
+
"num_tokens": 53751059.0,
|
| 602 |
"step": 370
|
| 603 |
},
|
| 604 |
{
|
| 605 |
"epoch": 0.5115961800818554,
|
| 606 |
+
"grad_norm": 0.2612718920094276,
|
| 607 |
"learning_rate": 2.8616702217680134e-05,
|
| 608 |
"loss": 0.5229,
|
| 609 |
+
"num_tokens": 57661431.0,
|
| 610 |
"step": 375
|
| 611 |
},
|
| 612 |
{
|
| 613 |
"epoch": 0.5184174624829468,
|
| 614 |
+
"grad_norm": 0.2707456092353873,
|
| 615 |
"learning_rate": 2.810928615521303e-05,
|
| 616 |
"loss": 0.5096,
|
| 617 |
+
"num_tokens": 61347251.0,
|
| 618 |
"step": 380
|
| 619 |
},
|
| 620 |
{
|
| 621 |
"epoch": 0.5252387448840382,
|
| 622 |
+
"grad_norm": 0.2775857141913436,
|
| 623 |
"learning_rate": 2.7601559762468022e-05,
|
| 624 |
"loss": 0.5188,
|
| 625 |
+
"num_tokens": 65171476.0,
|
| 626 |
"step": 385
|
| 627 |
},
|
| 628 |
{
|
| 629 |
"epoch": 0.5320600272851296,
|
| 630 |
+
"grad_norm": 0.2749180870715325,
|
| 631 |
"learning_rate": 2.7093781641862387e-05,
|
| 632 |
+
"loss": 0.5214,
|
| 633 |
+
"num_tokens": 68967408.0,
|
| 634 |
"step": 390
|
| 635 |
},
|
| 636 |
{
|
| 637 |
"epoch": 0.538881309686221,
|
| 638 |
+
"grad_norm": 0.2736617594464445,
|
| 639 |
"learning_rate": 2.658621042216021e-05,
|
| 640 |
"loss": 0.5056,
|
| 641 |
+
"num_tokens": 72677498.0,
|
| 642 |
"step": 395
|
| 643 |
},
|
| 644 |
{
|
| 645 |
"epoch": 0.5457025920873124,
|
| 646 |
+
"grad_norm": 0.3724340666807813,
|
| 647 |
"learning_rate": 2.6079104626743845e-05,
|
| 648 |
+
"loss": 0.5275,
|
| 649 |
+
"num_tokens": 76420106.0,
|
| 650 |
"step": 400
|
| 651 |
},
|
| 652 |
{
|
| 653 |
"epoch": 0.5525238744884038,
|
| 654 |
+
"grad_norm": 0.30148187800324094,
|
| 655 |
"learning_rate": 2.5572722541939113e-05,
|
| 656 |
+
"loss": 0.536,
|
| 657 |
+
"num_tokens": 80241521.0,
|
| 658 |
"step": 405
|
| 659 |
},
|
| 660 |
{
|
| 661 |
"epoch": 0.5593451568894953,
|
| 662 |
+
"grad_norm": 0.2878146937468534,
|
| 663 |
"learning_rate": 2.5067322085461315e-05,
|
| 664 |
+
"loss": 0.5108,
|
| 665 |
+
"num_tokens": 84015002.0,
|
| 666 |
"step": 410
|
| 667 |
},
|
| 668 |
{
|
| 669 |
"epoch": 0.5661664392905866,
|
| 670 |
+
"grad_norm": 0.28481014661061205,
|
| 671 |
"learning_rate": 2.4563160675048846e-05,
|
| 672 |
+
"loss": 0.5158,
|
| 673 |
+
"num_tokens": 87814661.0,
|
| 674 |
"step": 415
|
| 675 |
},
|
| 676 |
{
|
| 677 |
"epoch": 0.572987721691678,
|
| 678 |
+
"grad_norm": 0.24871308571539336,
|
| 679 |
"learning_rate": 2.406049509735156e-05,
|
| 680 |
"loss": 0.5154,
|
| 681 |
+
"num_tokens": 91699614.0,
|
| 682 |
"step": 420
|
| 683 |
},
|
| 684 |
{
|
| 685 |
"epoch": 0.5798090040927695,
|
| 686 |
+
"grad_norm": 0.26997468779109357,
|
| 687 |
"learning_rate": 2.355958137714056e-05,
|
| 688 |
"loss": 0.5108,
|
| 689 |
+
"num_tokens": 95391791.0,
|
| 690 |
"step": 425
|
| 691 |
},
|
| 692 |
{
|
| 693 |
"epoch": 0.5866302864938608,
|
| 694 |
+
"grad_norm": 0.26920569189193183,
|
| 695 |
"learning_rate": 2.3060674646906004e-05,
|
| 696 |
+
"loss": 0.5156,
|
| 697 |
+
"num_tokens": 99120584.0,
|
| 698 |
"step": 430
|
| 699 |
},
|
| 700 |
{
|
| 701 |
"epoch": 0.5934515688949522,
|
| 702 |
+
"grad_norm": 0.3031035959753903,
|
| 703 |
"learning_rate": 2.2564029016909416e-05,
|
| 704 |
"loss": 0.5049,
|
| 705 |
+
"num_tokens": 103056557.0,
|
| 706 |
"step": 435
|
| 707 |
},
|
| 708 |
{
|
| 709 |
"epoch": 0.6002728512960437,
|
| 710 |
+
"grad_norm": 0.2579912157887462,
|
| 711 |
"learning_rate": 2.2069897445756627e-05,
|
| 712 |
"loss": 0.5028,
|
| 713 |
+
"num_tokens": 106885151.0,
|
| 714 |
"step": 440
|
| 715 |
},
|
| 716 |
{
|
| 717 |
"epoch": 0.607094133697135,
|
| 718 |
+
"grad_norm": 0.2784368496163028,
|
| 719 |
"learning_rate": 2.1578531611557322e-05,
|
| 720 |
"loss": 0.5158,
|
| 721 |
+
"num_tokens": 110648438.0,
|
| 722 |
"step": 445
|
| 723 |
},
|
| 724 |
{
|
| 725 |
"epoch": 0.6139154160982264,
|
| 726 |
+
"grad_norm": 0.23783581714130014,
|
| 727 |
"learning_rate": 2.109018178373675e-05,
|
| 728 |
+
"loss": 0.5147,
|
| 729 |
+
"num_tokens": 114528571.0,
|
| 730 |
"step": 450
|
| 731 |
},
|
| 732 |
{
|
| 733 |
"epoch": 0.6207366984993179,
|
| 734 |
+
"grad_norm": 0.2631301529092457,
|
| 735 |
"learning_rate": 2.0605096695564973e-05,
|
| 736 |
+
"loss": 0.5182,
|
| 737 |
+
"num_tokens": 118370098.0,
|
| 738 |
"step": 455
|
| 739 |
},
|
| 740 |
{
|
| 741 |
"epoch": 0.6275579809004093,
|
| 742 |
+
"grad_norm": 0.23896035357377207,
|
| 743 |
"learning_rate": 2.0123523417468466e-05,
|
| 744 |
"loss": 0.5115,
|
| 745 |
+
"num_tokens": 122107208.0,
|
| 746 |
"step": 460
|
| 747 |
},
|
| 748 |
{
|
| 749 |
"epoch": 0.6343792633015006,
|
| 750 |
+
"grad_norm": 0.23911200744006897,
|
| 751 |
"learning_rate": 1.9645707231188742e-05,
|
| 752 |
+
"loss": 0.5059,
|
| 753 |
+
"num_tokens": 125928696.0,
|
| 754 |
"step": 465
|
| 755 |
},
|
| 756 |
{
|
| 757 |
"epoch": 0.6412005457025921,
|
| 758 |
+
"grad_norm": 0.23484644246089895,
|
| 759 |
"learning_rate": 1.9171891504851925e-05,
|
| 760 |
+
"loss": 0.5245,
|
| 761 |
+
"num_tokens": 129727094.0,
|
| 762 |
"step": 470
|
| 763 |
},
|
| 764 |
{
|
| 765 |
"epoch": 0.6480218281036835,
|
| 766 |
+
"grad_norm": 0.24843133644098161,
|
| 767 |
"learning_rate": 1.8702317569013094e-05,
|
| 768 |
"loss": 0.5005,
|
| 769 |
+
"num_tokens": 133479496.0,
|
| 770 |
"step": 475
|
| 771 |
},
|
| 772 |
{
|
| 773 |
"epoch": 0.654843110504775,
|
| 774 |
+
"grad_norm": 0.2298705134606327,
|
| 775 |
"learning_rate": 1.8237224593738327e-05,
|
| 776 |
"loss": 0.5027,
|
| 777 |
+
"num_tokens": 137152722.0,
|
| 778 |
"step": 480
|
| 779 |
},
|
| 780 |
{
|
| 781 |
"epoch": 0.6616643929058663,
|
| 782 |
+
"grad_norm": 0.22725265159045924,
|
| 783 |
"learning_rate": 1.7776849466787223e-05,
|
| 784 |
+
"loss": 0.5171,
|
| 785 |
+
"num_tokens": 141015373.0,
|
| 786 |
"step": 485
|
| 787 |
},
|
| 788 |
{
|
| 789 |
"epoch": 0.6684856753069577,
|
| 790 |
+
"grad_norm": 0.23065567630923026,
|
| 791 |
"learning_rate": 1.7321426672957896e-05,
|
| 792 |
"loss": 0.5025,
|
| 793 |
+
"num_tokens": 144856028.0,
|
| 794 |
"step": 490
|
| 795 |
},
|
| 796 |
{
|
| 797 |
"epoch": 0.6753069577080492,
|
| 798 |
+
"grad_norm": 0.2535249608874267,
|
| 799 |
"learning_rate": 1.6871188174655787e-05,
|
| 800 |
"loss": 0.4957,
|
| 801 |
+
"num_tokens": 148620002.0,
|
| 802 |
"step": 495
|
| 803 |
},
|
| 804 |
{
|
| 805 |
"epoch": 0.6821282401091405,
|
| 806 |
+
"grad_norm": 0.2364234203218564,
|
| 807 |
"learning_rate": 1.6426363293747334e-05,
|
| 808 |
"loss": 0.5001,
|
| 809 |
+
"num_tokens": 152392981.0,
|
| 810 |
"step": 500
|
| 811 |
},
|
| 812 |
{
|
| 813 |
"epoch": 0.6889495225102319,
|
| 814 |
+
"grad_norm": 0.23889880611363135,
|
| 815 |
"learning_rate": 1.598717859475846e-05,
|
| 816 |
+
"loss": 0.5087,
|
| 817 |
+
"num_tokens": 156126810.0,
|
| 818 |
"step": 505
|
| 819 |
},
|
| 820 |
{
|
| 821 |
"epoch": 0.6957708049113234,
|
| 822 |
+
"grad_norm": 0.2380901600704711,
|
| 823 |
"learning_rate": 1.5553857769477553e-05,
|
| 824 |
+
"loss": 0.5056,
|
| 825 |
+
"num_tokens": 159876193.0,
|
| 826 |
"step": 510
|
| 827 |
},
|
| 828 |
{
|
| 829 |
"epoch": 0.7025920873124147,
|
| 830 |
+
"grad_norm": 0.23096714274240995,
|
| 831 |
"learning_rate": 1.5126621523021518e-05,
|
| 832 |
"loss": 0.51,
|
| 833 |
+
"num_tokens": 163718273.0,
|
| 834 |
"step": 515
|
| 835 |
},
|
| 836 |
{
|
| 837 |
"epoch": 0.7094133697135061,
|
| 838 |
+
"grad_norm": 0.2614099659251973,
|
| 839 |
"learning_rate": 1.4705687461423209e-05,
|
| 840 |
+
"loss": 0.5222,
|
| 841 |
+
"num_tokens": 167448213.0,
|
| 842 |
"step": 520
|
| 843 |
},
|
| 844 |
{
|
| 845 |
"epoch": 0.7162346521145976,
|
| 846 |
+
"grad_norm": 0.24328778538778423,
|
| 847 |
"learning_rate": 1.4291269980797139e-05,
|
| 848 |
+
"loss": 0.5065,
|
| 849 |
+
"num_tokens": 171213451.0,
|
| 850 |
"step": 525
|
| 851 |
},
|
| 852 |
{
|
| 853 |
"epoch": 0.723055934515689,
|
| 854 |
+
"grad_norm": 0.22585661056099277,
|
| 855 |
"learning_rate": 1.3883580158140291e-05,
|
| 856 |
+
"loss": 0.5005,
|
| 857 |
+
"num_tokens": 174975168.0,
|
| 858 |
"step": 530
|
| 859 |
},
|
| 860 |
{
|
| 861 |
"epoch": 0.7298772169167803,
|
| 862 |
+
"grad_norm": 0.215782449764828,
|
| 863 |
"learning_rate": 1.3482825643823293e-05,
|
| 864 |
"loss": 0.5061,
|
| 865 |
+
"num_tokens": 178872312.0,
|
| 866 |
"step": 535
|
| 867 |
},
|
| 868 |
{
|
| 869 |
"epoch": 0.7366984993178718,
|
| 870 |
+
"grad_norm": 0.222477664399686,
|
| 871 |
"learning_rate": 1.3089210555827086e-05,
|
| 872 |
"loss": 0.5118,
|
| 873 |
+
"num_tokens": 182675522.0,
|
| 874 |
"step": 540
|
| 875 |
},
|
| 876 |
{
|
| 877 |
"epoch": 0.7435197817189632,
|
| 878 |
+
"grad_norm": 0.2161279545613622,
|
| 879 |
"learning_rate": 1.270293537577855e-05,
|
| 880 |
"loss": 0.5148,
|
| 881 |
+
"num_tokens": 186661552.0,
|
| 882 |
"step": 545
|
| 883 |
},
|
| 884 |
{
|
| 885 |
"epoch": 0.7503410641200545,
|
| 886 |
+
"grad_norm": 0.22038438633805268,
|
| 887 |
"learning_rate": 1.232419684683844e-05,
|
| 888 |
+
"loss": 0.4995,
|
| 889 |
+
"num_tokens": 190341488.0,
|
| 890 |
"step": 550
|
| 891 |
},
|
| 892 |
{
|
| 893 |
"epoch": 0.757162346521146,
|
| 894 |
+
"grad_norm": 0.22277137142362485,
|
| 895 |
"learning_rate": 1.1953187873493303e-05,
|
| 896 |
+
"loss": 0.5001,
|
| 897 |
+
"num_tokens": 193975222.0,
|
| 898 |
"step": 555
|
| 899 |
},
|
| 900 |
{
|
| 901 |
"epoch": 0.7639836289222374,
|
| 902 |
+
"grad_norm": 0.22629794051271598,
|
| 903 |
"learning_rate": 1.1590097423302684e-05,
|
| 904 |
"loss": 0.496,
|
| 905 |
+
"num_tokens": 197695417.0,
|
| 906 |
"step": 560
|
| 907 |
},
|
| 908 |
{
|
| 909 |
"epoch": 0.7708049113233287,
|
| 910 |
+
"grad_norm": 0.22169310674789464,
|
| 911 |
"learning_rate": 1.1235110430651421e-05,
|
| 912 |
"loss": 0.496,
|
| 913 |
+
"num_tokens": 201577891.0,
|
| 914 |
"step": 565
|
| 915 |
},
|
| 916 |
{
|
| 917 |
"epoch": 0.7776261937244202,
|
| 918 |
+
"grad_norm": 0.23737206300393107,
|
| 919 |
"learning_rate": 1.0888407702556284e-05,
|
| 920 |
"loss": 0.4998,
|
| 921 |
+
"num_tokens": 205367508.0,
|
| 922 |
"step": 570
|
| 923 |
},
|
| 924 |
{
|
| 925 |
"epoch": 0.7844474761255116,
|
| 926 |
+
"grad_norm": 0.2393464614182903,
|
| 927 |
"learning_rate": 1.0550165826574766e-05,
|
| 928 |
+
"loss": 0.4997,
|
| 929 |
+
"num_tokens": 209296377.0,
|
| 930 |
"step": 575
|
| 931 |
},
|
| 932 |
{
|
| 933 |
"epoch": 0.791268758526603,
|
| 934 |
+
"grad_norm": 0.23434104494246727,
|
| 935 |
"learning_rate": 1.0220557080862985e-05,
|
| 936 |
"loss": 0.5149,
|
| 937 |
+
"num_tokens": 213335201.0,
|
| 938 |
"step": 580
|
| 939 |
},
|
| 940 |
{
|
| 941 |
"epoch": 0.7980900409276944,
|
| 942 |
+
"grad_norm": 0.2163862184189319,
|
| 943 |
"learning_rate": 9.899749346428556e-06,
|
| 944 |
"loss": 0.5021,
|
| 945 |
+
"num_tokens": 217141531.0,
|
| 946 |
"step": 585
|
| 947 |
},
|
| 948 |
{
|
| 949 |
"epoch": 0.8049113233287858,
|
| 950 |
+
"grad_norm": 0.20944439534899864,
|
| 951 |
"learning_rate": 9.587906021623016e-06,
|
| 952 |
"loss": 0.5161,
|
| 953 |
+
"num_tokens": 220976800.0,
|
| 954 |
"step": 590
|
| 955 |
},
|
| 956 |
{
|
| 957 |
"epoch": 0.8117326057298773,
|
| 958 |
+
"grad_norm": 0.240618025701599,
|
| 959 |
"learning_rate": 9.28518593891749e-06,
|
| 960 |
"loss": 0.5013,
|
| 961 |
+
"num_tokens": 224773409.0,
|
| 962 |
"step": 595
|
| 963 |
},
|
| 964 |
{
|
| 965 |
"epoch": 0.8185538881309686,
|
| 966 |
+
"grad_norm": 0.22360256823330674,
|
| 967 |
"learning_rate": 8.99174328400385e-06,
|
| 968 |
+
"loss": 0.4997,
|
| 969 |
+
"num_tokens": 228615374.0,
|
| 970 |
"step": 600
|
| 971 |
},
|
| 972 |
{
|
| 973 |
"epoch": 0.82537517053206,
|
| 974 |
+
"grad_norm": 0.22996095480097895,
|
| 975 |
"learning_rate": 8.707727517262697e-06,
|
| 976 |
"loss": 0.5049,
|
| 977 |
+
"num_tokens": 232345381.0,
|
| 978 |
"step": 605
|
| 979 |
},
|
| 980 |
{
|
| 981 |
"epoch": 0.8321964529331515,
|
| 982 |
+
"grad_norm": 0.20996010138499008,
|
| 983 |
"learning_rate": 8.433283297638053e-06,
|
| 984 |
+
"loss": 0.4993,
|
| 985 |
+
"num_tokens": 236263389.0,
|
| 986 |
"step": 610
|
| 987 |
},
|
| 988 |
{
|
| 989 |
"epoch": 0.8390177353342428,
|
| 990 |
+
"grad_norm": 0.21860095878565663,
|
| 991 |
"learning_rate": 8.168550408957632e-06,
|
| 992 |
"loss": 0.497,
|
| 993 |
+
"num_tokens": 240081011.0,
|
| 994 |
"step": 615
|
| 995 |
},
|
| 996 |
{
|
| 997 |
"epoch": 0.8458390177353342,
|
| 998 |
+
"grad_norm": 0.2245915474005529,
|
| 999 |
"learning_rate": 7.91366368873613e-06,
|
| 1000 |
"loss": 0.4944,
|
| 1001 |
+
"num_tokens": 243860094.0,
|
| 1002 |
"step": 620
|
| 1003 |
},
|
| 1004 |
{
|
| 1005 |
"epoch": 0.8526603001364257,
|
| 1006 |
+
"grad_norm": 0.2282695347327931,
|
| 1007 |
"learning_rate": 7.66875295949791e-06,
|
| 1008 |
+
"loss": 0.5105,
|
| 1009 |
+
"num_tokens": 247690866.0,
|
| 1010 |
"step": 625
|
| 1011 |
},
|
| 1012 |
{
|
| 1013 |
"epoch": 0.859481582537517,
|
| 1014 |
+
"grad_norm": 0.20590616989328062,
|
| 1015 |
"learning_rate": 7.4339429626539e-06,
|
| 1016 |
"loss": 0.5102,
|
| 1017 |
+
"num_tokens": 251638405.0,
|
| 1018 |
"step": 630
|
| 1019 |
},
|
| 1020 |
{
|
| 1021 |
"epoch": 0.8663028649386084,
|
| 1022 |
+
"grad_norm": 0.22956608740204826,
|
| 1023 |
"learning_rate": 7.2093532949665715e-06,
|
| 1024 |
+
"loss": 0.5081,
|
| 1025 |
+
"num_tokens": 255461423.0,
|
| 1026 |
"step": 635
|
| 1027 |
},
|
| 1028 |
{
|
| 1029 |
"epoch": 0.8731241473396999,
|
| 1030 |
+
"grad_norm": 0.20757611016240565,
|
| 1031 |
"learning_rate": 6.995098347635173e-06,
|
| 1032 |
"loss": 0.4933,
|
| 1033 |
+
"num_tokens": 259349061.0,
|
| 1034 |
"step": 640
|
| 1035 |
},
|
| 1036 |
{
|
| 1037 |
"epoch": 0.8799454297407913,
|
| 1038 |
+
"grad_norm": 0.20964621674214579,
|
| 1039 |
"learning_rate": 6.791287248032431e-06,
|
| 1040 |
"loss": 0.4966,
|
| 1041 |
+
"num_tokens": 263182542.0,
|
| 1042 |
"step": 645
|
| 1043 |
},
|
| 1044 |
{
|
| 1045 |
"epoch": 0.8867667121418826,
|
| 1046 |
+
"grad_norm": 0.21533152300615474,
|
| 1047 |
"learning_rate": 6.598023804122194e-06,
|
| 1048 |
+
"loss": 0.5039,
|
| 1049 |
+
"num_tokens": 267195187.0,
|
| 1050 |
"step": 650
|
| 1051 |
},
|
| 1052 |
{
|
| 1053 |
"epoch": 0.8935879945429741,
|
| 1054 |
+
"grad_norm": 0.20262214665120437,
|
| 1055 |
"learning_rate": 6.415406451586528e-06,
|
| 1056 |
+
"loss": 0.4994,
|
| 1057 |
+
"num_tokens": 271154055.0,
|
| 1058 |
"step": 655
|
| 1059 |
},
|
| 1060 |
{
|
| 1061 |
"epoch": 0.9004092769440655,
|
| 1062 |
+
"grad_norm": 0.20455436089558837,
|
| 1063 |
"learning_rate": 6.243528203689025e-06,
|
| 1064 |
+
"loss": 0.5033,
|
| 1065 |
+
"num_tokens": 275099879.0,
|
| 1066 |
"step": 660
|
| 1067 |
},
|
| 1068 |
{
|
| 1069 |
"epoch": 0.9072305593451568,
|
| 1070 |
+
"grad_norm": 0.2160125533680774,
|
| 1071 |
"learning_rate": 6.0824766039e-06,
|
| 1072 |
"loss": 0.4994,
|
| 1073 |
+
"num_tokens": 278896745.0,
|
| 1074 |
"step": 665
|
| 1075 |
},
|
| 1076 |
{
|
| 1077 |
"epoch": 0.9140518417462483,
|
| 1078 |
+
"grad_norm": 0.20835263251242925,
|
| 1079 |
"learning_rate": 5.932333681307571e-06,
|
| 1080 |
+
"loss": 0.5062,
|
| 1081 |
+
"num_tokens": 282763597.0,
|
| 1082 |
"step": 670
|
| 1083 |
},
|
| 1084 |
{
|
| 1085 |
"epoch": 0.9208731241473397,
|
| 1086 |
+
"grad_norm": 0.2056127608186567,
|
| 1087 |
"learning_rate": 5.793175908837471e-06,
|
| 1088 |
"loss": 0.4967,
|
| 1089 |
+
"num_tokens": 286505617.0,
|
| 1090 |
"step": 675
|
| 1091 |
},
|
| 1092 |
{
|
| 1093 |
"epoch": 0.927694406548431,
|
| 1094 |
+
"grad_norm": 0.20738306050857,
|
| 1095 |
"learning_rate": 5.665074164302742e-06,
|
| 1096 |
"loss": 0.5064,
|
| 1097 |
+
"num_tokens": 290255858.0,
|
| 1098 |
"step": 680
|
| 1099 |
},
|
| 1100 |
{
|
| 1101 |
"epoch": 0.9345156889495225,
|
| 1102 |
+
"grad_norm": 0.1943049409331778,
|
| 1103 |
"learning_rate": 5.548093694303275e-06,
|
| 1104 |
+
"loss": 0.4919,
|
| 1105 |
+
"num_tokens": 294083350.0,
|
| 1106 |
"step": 685
|
| 1107 |
},
|
| 1108 |
{
|
| 1109 |
"epoch": 0.9413369713506139,
|
| 1110 |
+
"grad_norm": 0.21891210362180955,
|
| 1111 |
"learning_rate": 5.442294080993446e-06,
|
| 1112 |
"loss": 0.5059,
|
| 1113 |
+
"num_tokens": 297956377.0,
|
| 1114 |
"step": 690
|
| 1115 |
},
|
| 1116 |
{
|
| 1117 |
"epoch": 0.9481582537517054,
|
| 1118 |
+
"grad_norm": 0.2045825966835107,
|
| 1119 |
"learning_rate": 5.347729211734919e-06,
|
| 1120 |
+
"loss": 0.5034,
|
| 1121 |
+
"num_tokens": 301755872.0,
|
| 1122 |
"step": 695
|
| 1123 |
},
|
| 1124 |
{
|
| 1125 |
"epoch": 0.9549795361527967,
|
| 1126 |
+
"grad_norm": 0.20096771321359547,
|
| 1127 |
"learning_rate": 5.264447251649954e-06,
|
| 1128 |
"loss": 0.5057,
|
| 1129 |
+
"num_tokens": 305542730.0,
|
| 1130 |
"step": 700
|
| 1131 |
},
|
| 1132 |
{
|
| 1133 |
"epoch": 0.9618008185538881,
|
| 1134 |
+
"grad_norm": 0.20627903017723062,
|
| 1135 |
"learning_rate": 5.192490619089267e-06,
|
| 1136 |
+
"loss": 0.49,
|
| 1137 |
+
"num_tokens": 309426949.0,
|
| 1138 |
"step": 705
|
| 1139 |
},
|
| 1140 |
{
|
| 1141 |
"epoch": 0.9686221009549796,
|
| 1142 |
+
"grad_norm": 0.20761322654529332,
|
| 1143 |
"learning_rate": 5.1318959640269095e-06,
|
| 1144 |
+
"loss": 0.5005,
|
| 1145 |
+
"num_tokens": 313113611.0,
|
| 1146 |
"step": 710
|
| 1147 |
},
|
| 1148 |
{
|
| 1149 |
"epoch": 0.975443383356071,
|
| 1150 |
+
"grad_norm": 0.2108636029151623,
|
| 1151 |
"learning_rate": 5.082694149393189e-06,
|
| 1152 |
+
"loss": 0.5114,
|
| 1153 |
+
"num_tokens": 316867560.0,
|
| 1154 |
"step": 715
|
| 1155 |
},
|
| 1156 |
{
|
| 1157 |
"epoch": 0.9822646657571623,
|
| 1158 |
+
"grad_norm": 0.2031630473017727,
|
| 1159 |
"learning_rate": 5.044910235355121e-06,
|
| 1160 |
"loss": 0.4974,
|
| 1161 |
+
"num_tokens": 320667324.0,
|
| 1162 |
"step": 720
|
| 1163 |
},
|
| 1164 |
{
|
| 1165 |
"epoch": 0.9890859481582538,
|
| 1166 |
+
"grad_norm": 0.19315901995067375,
|
| 1167 |
"learning_rate": 5.0185634665524255e-06,
|
| 1168 |
+
"loss": 0.4934,
|
| 1169 |
+
"num_tokens": 324513537.0,
|
| 1170 |
"step": 725
|
| 1171 |
},
|
| 1172 |
{
|
| 1173 |
"epoch": 0.9959072305593452,
|
| 1174 |
+
"grad_norm": 0.1922060062694041,
|
| 1175 |
"learning_rate": 5.003667262295572e-06,
|
| 1176 |
+
"loss": 0.5015,
|
| 1177 |
+
"num_tokens": 328290879.0,
|
| 1178 |
"step": 730
|
| 1179 |
},
|
| 1180 |
{
|
| 1181 |
"epoch": 1.0,
|
| 1182 |
+
"num_tokens": 330600785.0,
|
| 1183 |
"step": 733,
|
| 1184 |
"total_flos": 1147472759488512.0,
|
| 1185 |
+
"train_loss": 0.30104584323107625,
|
| 1186 |
+
"train_runtime": 3582.5752,
|
| 1187 |
+
"train_samples_per_second": 26.164,
|
| 1188 |
+
"train_steps_per_second": 0.205
|
| 1189 |
}
|
| 1190 |
],
|
| 1191 |
"logging_steps": 5,
|