Model save
Browse files- .gitattributes +1 -0
- README.md +58 -0
- added_tokens.json +24 -0
- all_results.json +8 -0
- config.json +29 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- special_tokens_map.json +25 -0
- tokenizer.json +3 -0
- tokenizer_config.json +208 -0
- train_results.json +8 -0
- trainer_state.json +1176 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
| 10 |
+
---
|
| 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
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 23 |
+
generator = pipeline("text-generation", model="TTTXXX01/Qwen2.5-1.5B-Open-R1-Distill", device="cuda")
|
| 24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 25 |
+
print(output["generated_text"])
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with SFT.
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.16.0.dev0
|
| 38 |
+
- Transformers: 4.50.0.dev0
|
| 39 |
+
- Pytorch: 2.5.1
|
| 40 |
+
- Datasets: 3.2.0
|
| 41 |
+
- Tokenizers: 0.21.0
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
Cite TRL as:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@misc{vonwerra2022trl,
|
| 51 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 52 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
|
| 53 |
+
year = 2020,
|
| 54 |
+
journal = {GitHub repository},
|
| 55 |
+
publisher = {GitHub},
|
| 56 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 57 |
+
}
|
| 58 |
+
```
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 76902580617216.0,
|
| 3 |
+
"train_loss": 0.8954443154511629,
|
| 4 |
+
"train_runtime": 2979.2909,
|
| 5 |
+
"train_samples": 16610,
|
| 6 |
+
"train_samples_per_second": 29.022,
|
| 7 |
+
"train_steps_per_second": 0.227
|
| 8 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Qwen2ForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 1536,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 8960,
|
| 13 |
+
"max_position_embeddings": 32768,
|
| 14 |
+
"max_window_layers": 21,
|
| 15 |
+
"model_type": "qwen2",
|
| 16 |
+
"num_attention_heads": 12,
|
| 17 |
+
"num_hidden_layers": 28,
|
| 18 |
+
"num_key_value_heads": 2,
|
| 19 |
+
"rms_norm_eps": 1e-06,
|
| 20 |
+
"rope_scaling": null,
|
| 21 |
+
"rope_theta": 1000000.0,
|
| 22 |
+
"sliding_window": 32768,
|
| 23 |
+
"tie_word_embeddings": true,
|
| 24 |
+
"torch_dtype": "bfloat16",
|
| 25 |
+
"transformers_version": "4.50.0.dev0",
|
| 26 |
+
"use_cache": false,
|
| 27 |
+
"use_sliding_window": false,
|
| 28 |
+
"vocab_size": 151936
|
| 29 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.1,
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "4.50.0.dev0"
|
| 14 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ead5885652df72fd5e894b8d4a6f2687be83348668f4fbb41498335ddc6896b
|
| 3 |
+
size 3087467144
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|im_end|>"
|
| 25 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
| 199 |
+
"clean_up_tokenization_spaces": false,
|
| 200 |
+
"eos_token": "<|im_end|>",
|
| 201 |
+
"errors": "replace",
|
| 202 |
+
"extra_special_tokens": {},
|
| 203 |
+
"model_max_length": 131072,
|
| 204 |
+
"pad_token": "<|im_end|>",
|
| 205 |
+
"split_special_tokens": false,
|
| 206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 207 |
+
"unk_token": null
|
| 208 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 76902580617216.0,
|
| 3 |
+
"train_loss": 0.8954443154511629,
|
| 4 |
+
"train_runtime": 2979.2909,
|
| 5 |
+
"train_samples": 16610,
|
| 6 |
+
"train_samples_per_second": 29.022,
|
| 7 |
+
"train_steps_per_second": 0.227
|
| 8 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 0.9990749306197965,
|
| 5 |
+
"eval_steps": 100,
|
| 6 |
+
"global_step": 675,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"epoch": 0.0074005550416281225,
|
| 13 |
+
"grad_norm": 3.177191289894466,
|
| 14 |
+
"learning_rate": 1.4705882352941177e-06,
|
| 15 |
+
"loss": 1.3165,
|
| 16 |
+
"mean_token_accuracy": 0.6722319513559342,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.014801110083256245,
|
| 21 |
+
"grad_norm": 2.6088289605013553,
|
| 22 |
+
"learning_rate": 2.9411764705882355e-06,
|
| 23 |
+
"loss": 1.2993,
|
| 24 |
+
"mean_token_accuracy": 0.6761676907539368,
|
| 25 |
+
"step": 10
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"epoch": 0.022201665124884366,
|
| 29 |
+
"grad_norm": 1.8025295755143065,
|
| 30 |
+
"learning_rate": 4.411764705882353e-06,
|
| 31 |
+
"loss": 1.2498,
|
| 32 |
+
"mean_token_accuracy": 0.6809571325778961,
|
| 33 |
+
"step": 15
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
"epoch": 0.02960222016651249,
|
| 37 |
+
"grad_norm": 1.360111684564471,
|
| 38 |
+
"learning_rate": 5.882352941176471e-06,
|
| 39 |
+
"loss": 1.1656,
|
| 40 |
+
"mean_token_accuracy": 0.6947763726115227,
|
| 41 |
+
"step": 20
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"epoch": 0.03700277520814061,
|
| 45 |
+
"grad_norm": 1.1759295551453683,
|
| 46 |
+
"learning_rate": 7.352941176470589e-06,
|
| 47 |
+
"loss": 1.1017,
|
| 48 |
+
"mean_token_accuracy": 0.7044237658381463,
|
| 49 |
+
"step": 25
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"epoch": 0.04440333024976873,
|
| 53 |
+
"grad_norm": 1.061735320045955,
|
| 54 |
+
"learning_rate": 8.823529411764707e-06,
|
| 55 |
+
"loss": 1.0567,
|
| 56 |
+
"mean_token_accuracy": 0.711904264986515,
|
| 57 |
+
"step": 30
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"epoch": 0.05180388529139685,
|
| 61 |
+
"grad_norm": 0.8713959637687153,
|
| 62 |
+
"learning_rate": 1.0294117647058823e-05,
|
| 63 |
+
"loss": 1.0365,
|
| 64 |
+
"mean_token_accuracy": 0.7145705297589302,
|
| 65 |
+
"step": 35
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"epoch": 0.05920444033302498,
|
| 69 |
+
"grad_norm": 0.7436472669410157,
|
| 70 |
+
"learning_rate": 1.1764705882352942e-05,
|
| 71 |
+
"loss": 1.0062,
|
| 72 |
+
"mean_token_accuracy": 0.7207741469144822,
|
| 73 |
+
"step": 40
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.0666049953746531,
|
| 77 |
+
"grad_norm": 0.6770471931078331,
|
| 78 |
+
"learning_rate": 1.323529411764706e-05,
|
| 79 |
+
"loss": 0.9913,
|
| 80 |
+
"mean_token_accuracy": 0.7230612337589264,
|
| 81 |
+
"step": 45
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"epoch": 0.07400555041628122,
|
| 85 |
+
"grad_norm": 0.727714758755595,
|
| 86 |
+
"learning_rate": 1.4705882352941179e-05,
|
| 87 |
+
"loss": 0.9877,
|
| 88 |
+
"mean_token_accuracy": 0.723396073281765,
|
| 89 |
+
"step": 50
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"epoch": 0.08140610545790934,
|
| 93 |
+
"grad_norm": 0.652729730737128,
|
| 94 |
+
"learning_rate": 1.6176470588235296e-05,
|
| 95 |
+
"loss": 0.9887,
|
| 96 |
+
"mean_token_accuracy": 0.7221124798059464,
|
| 97 |
+
"step": 55
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"epoch": 0.08880666049953746,
|
| 101 |
+
"grad_norm": 0.6748396000851912,
|
| 102 |
+
"learning_rate": 1.7647058823529414e-05,
|
| 103 |
+
"loss": 0.9623,
|
| 104 |
+
"mean_token_accuracy": 0.7282059744000435,
|
| 105 |
+
"step": 60
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"epoch": 0.09620721554116558,
|
| 109 |
+
"grad_norm": 0.7455601674451239,
|
| 110 |
+
"learning_rate": 1.911764705882353e-05,
|
| 111 |
+
"loss": 0.9389,
|
| 112 |
+
"mean_token_accuracy": 0.7343959599733353,
|
| 113 |
+
"step": 65
|
| 114 |
+
},
|
| 115 |
+
{
|
| 116 |
+
"epoch": 0.1036077705827937,
|
| 117 |
+
"grad_norm": 0.7205237519429679,
|
| 118 |
+
"learning_rate": 1.9999464266898485e-05,
|
| 119 |
+
"loss": 0.9363,
|
| 120 |
+
"mean_token_accuracy": 0.7341798335313797,
|
| 121 |
+
"step": 70
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.11100832562442182,
|
| 125 |
+
"grad_norm": 0.6761562987995131,
|
| 126 |
+
"learning_rate": 1.9993437928712977e-05,
|
| 127 |
+
"loss": 0.9287,
|
| 128 |
+
"mean_token_accuracy": 0.7366939783096313,
|
| 129 |
+
"step": 75
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.11840888066604996,
|
| 133 |
+
"grad_norm": 0.6258146988020813,
|
| 134 |
+
"learning_rate": 1.998071963486563e-05,
|
| 135 |
+
"loss": 0.9155,
|
| 136 |
+
"mean_token_accuracy": 0.739334599673748,
|
| 137 |
+
"step": 80
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"epoch": 0.12580943570767808,
|
| 141 |
+
"grad_norm": 0.6733569737409223,
|
| 142 |
+
"learning_rate": 1.9961317901970953e-05,
|
| 143 |
+
"loss": 0.9525,
|
| 144 |
+
"mean_token_accuracy": 0.7295718863606453,
|
| 145 |
+
"step": 85
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.1332099907493062,
|
| 149 |
+
"grad_norm": 0.743632057242932,
|
| 150 |
+
"learning_rate": 1.993524572210807e-05,
|
| 151 |
+
"loss": 0.9202,
|
| 152 |
+
"mean_token_accuracy": 0.7370142132043839,
|
| 153 |
+
"step": 90
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"epoch": 0.14061054579093432,
|
| 157 |
+
"grad_norm": 0.716928295057326,
|
| 158 |
+
"learning_rate": 1.990252055412077e-05,
|
| 159 |
+
"loss": 0.9193,
|
| 160 |
+
"mean_token_accuracy": 0.7373814687132836,
|
| 161 |
+
"step": 95
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"epoch": 0.14801110083256244,
|
| 165 |
+
"grad_norm": 0.7488361154025786,
|
| 166 |
+
"learning_rate": 1.9863164311926433e-05,
|
| 167 |
+
"loss": 0.9361,
|
| 168 |
+
"mean_token_accuracy": 0.7317471757531167,
|
| 169 |
+
"step": 100
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"epoch": 0.14801110083256244,
|
| 173 |
+
"eval_loss": 0.948440670967102,
|
| 174 |
+
"eval_mean_token_accuracy": 0.7347100342021269,
|
| 175 |
+
"eval_runtime": 2.2555,
|
| 176 |
+
"eval_samples_per_second": 227.443,
|
| 177 |
+
"eval_steps_per_second": 7.537,
|
| 178 |
+
"step": 100
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.15541165587419056,
|
| 182 |
+
"grad_norm": 0.7545500165332985,
|
| 183 |
+
"learning_rate": 1.981720334984174e-05,
|
| 184 |
+
"loss": 0.9131,
|
| 185 |
+
"mean_token_accuracy": 0.738304789364338,
|
| 186 |
+
"step": 105
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"epoch": 0.16281221091581868,
|
| 190 |
+
"grad_norm": 0.6714889267086921,
|
| 191 |
+
"learning_rate": 1.9764668444934853e-05,
|
| 192 |
+
"loss": 0.9285,
|
| 193 |
+
"mean_token_accuracy": 0.7349614411592483,
|
| 194 |
+
"step": 110
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"epoch": 0.1702127659574468,
|
| 198 |
+
"grad_norm": 0.7034072212899232,
|
| 199 |
+
"learning_rate": 1.970559477641606e-05,
|
| 200 |
+
"loss": 0.9374,
|
| 201 |
+
"mean_token_accuracy": 0.7316902503371239,
|
| 202 |
+
"step": 115
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"epoch": 0.17761332099907493,
|
| 206 |
+
"grad_norm": 0.6885016901937203,
|
| 207 |
+
"learning_rate": 1.9640021902080523e-05,
|
| 208 |
+
"loss": 0.9205,
|
| 209 |
+
"mean_token_accuracy": 0.7357160747051239,
|
| 210 |
+
"step": 120
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"epoch": 0.18501387604070305,
|
| 214 |
+
"grad_norm": 0.8086237971910268,
|
| 215 |
+
"learning_rate": 1.9567993731818988e-05,
|
| 216 |
+
"loss": 0.9293,
|
| 217 |
+
"mean_token_accuracy": 0.7338817775249481,
|
| 218 |
+
"step": 125
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"epoch": 0.19241443108233117,
|
| 222 |
+
"grad_norm": 0.6989058176964525,
|
| 223 |
+
"learning_rate": 1.9489558498214197e-05,
|
| 224 |
+
"loss": 0.901,
|
| 225 |
+
"mean_token_accuracy": 0.7415365695953369,
|
| 226 |
+
"step": 130
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.1998149861239593,
|
| 230 |
+
"grad_norm": 0.7305313392237672,
|
| 231 |
+
"learning_rate": 1.9404768724242667e-05,
|
| 232 |
+
"loss": 0.9173,
|
| 233 |
+
"mean_token_accuracy": 0.7361627712845802,
|
| 234 |
+
"step": 135
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.2072155411655874,
|
| 238 |
+
"grad_norm": 0.6973933093812819,
|
| 239 |
+
"learning_rate": 1.931368118810346e-05,
|
| 240 |
+
"loss": 0.9245,
|
| 241 |
+
"mean_token_accuracy": 0.7330761030316353,
|
| 242 |
+
"step": 140
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"epoch": 0.21461609620721553,
|
| 246 |
+
"grad_norm": 0.7461846459283855,
|
| 247 |
+
"learning_rate": 1.92163568851975e-05,
|
| 248 |
+
"loss": 0.9079,
|
| 249 |
+
"mean_token_accuracy": 0.738995099067688,
|
| 250 |
+
"step": 145
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 0.22201665124884365,
|
| 254 |
+
"grad_norm": 0.7301837725192737,
|
| 255 |
+
"learning_rate": 1.911286098728296e-05,
|
| 256 |
+
"loss": 0.9151,
|
| 257 |
+
"mean_token_accuracy": 0.7362136021256447,
|
| 258 |
+
"step": 150
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"epoch": 0.2294172062904718,
|
| 262 |
+
"grad_norm": 0.7342584513023421,
|
| 263 |
+
"learning_rate": 1.900326279883392e-05,
|
| 264 |
+
"loss": 0.8928,
|
| 265 |
+
"mean_token_accuracy": 0.7425991594791412,
|
| 266 |
+
"step": 155
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"epoch": 0.23681776133209992,
|
| 270 |
+
"grad_norm": 0.7146515917545667,
|
| 271 |
+
"learning_rate": 1.8887635710631716e-05,
|
| 272 |
+
"loss": 0.903,
|
| 273 |
+
"mean_token_accuracy": 0.7400299459695816,
|
| 274 |
+
"step": 160
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"epoch": 0.24421831637372804,
|
| 278 |
+
"grad_norm": 0.7257585574386105,
|
| 279 |
+
"learning_rate": 1.8766057150619865e-05,
|
| 280 |
+
"loss": 0.899,
|
| 281 |
+
"mean_token_accuracy": 0.742052273452282,
|
| 282 |
+
"step": 165
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"epoch": 0.25161887141535616,
|
| 286 |
+
"grad_norm": 0.7268105075263449,
|
| 287 |
+
"learning_rate": 1.8638608532055635e-05,
|
| 288 |
+
"loss": 0.8907,
|
| 289 |
+
"mean_token_accuracy": 0.74239691644907,
|
| 290 |
+
"step": 170
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.2590194264569843,
|
| 294 |
+
"grad_norm": 0.7022570191545928,
|
| 295 |
+
"learning_rate": 1.8505375198992856e-05,
|
| 296 |
+
"loss": 0.8943,
|
| 297 |
+
"mean_token_accuracy": 0.7421710699796676,
|
| 298 |
+
"step": 175
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.2664199814986124,
|
| 302 |
+
"grad_norm": 0.6941380153773058,
|
| 303 |
+
"learning_rate": 1.836644636913258e-05,
|
| 304 |
+
"loss": 0.9017,
|
| 305 |
+
"mean_token_accuracy": 0.7397396937012672,
|
| 306 |
+
"step": 180
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"epoch": 0.2738205365402405,
|
| 310 |
+
"grad_norm": 0.769558466923145,
|
| 311 |
+
"learning_rate": 1.8221915074079764e-05,
|
| 312 |
+
"loss": 0.901,
|
| 313 |
+
"mean_token_accuracy": 0.7404634222388268,
|
| 314 |
+
"step": 185
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 0.28122109158186864,
|
| 318 |
+
"grad_norm": 0.7350550486663548,
|
| 319 |
+
"learning_rate": 1.8071878097046064e-05,
|
| 320 |
+
"loss": 0.8957,
|
| 321 |
+
"mean_token_accuracy": 0.7418173685669899,
|
| 322 |
+
"step": 190
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"epoch": 0.28862164662349676,
|
| 326 |
+
"grad_norm": 0.8224959927887223,
|
| 327 |
+
"learning_rate": 1.7916435908040413e-05,
|
| 328 |
+
"loss": 0.8949,
|
| 329 |
+
"mean_token_accuracy": 0.7417901813983917,
|
| 330 |
+
"step": 195
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"epoch": 0.2960222016651249,
|
| 334 |
+
"grad_norm": 0.6953581808975053,
|
| 335 |
+
"learning_rate": 1.7755692596590778e-05,
|
| 336 |
+
"loss": 0.8784,
|
| 337 |
+
"mean_token_accuracy": 0.7457014679908752,
|
| 338 |
+
"step": 200
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"epoch": 0.2960222016651249,
|
| 342 |
+
"eval_loss": 0.918442964553833,
|
| 343 |
+
"eval_mean_token_accuracy": 0.740125414203195,
|
| 344 |
+
"eval_runtime": 2.2305,
|
| 345 |
+
"eval_samples_per_second": 229.998,
|
| 346 |
+
"eval_steps_per_second": 7.622,
|
| 347 |
+
"step": 200
|
| 348 |
+
},
|
| 349 |
+
{
|
| 350 |
+
"epoch": 0.303422756706753,
|
| 351 |
+
"grad_norm": 0.7419101943548216,
|
| 352 |
+
"learning_rate": 1.7589755802042188e-05,
|
| 353 |
+
"loss": 0.8845,
|
| 354 |
+
"mean_token_accuracy": 0.7441424265503883,
|
| 355 |
+
"step": 205
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"epoch": 0.3108233117483811,
|
| 359 |
+
"grad_norm": 0.7669971354189095,
|
| 360 |
+
"learning_rate": 1.7418736641477636e-05,
|
| 361 |
+
"loss": 0.892,
|
| 362 |
+
"mean_token_accuracy": 0.7429123550653458,
|
| 363 |
+
"step": 210
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 0.31822386679000925,
|
| 367 |
+
"grad_norm": 0.6972844496459716,
|
| 368 |
+
"learning_rate": 1.7242749635310222e-05,
|
| 369 |
+
"loss": 0.8953,
|
| 370 |
+
"mean_token_accuracy": 0.7420253306627274,
|
| 371 |
+
"step": 215
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"epoch": 0.32562442183163737,
|
| 375 |
+
"grad_norm": 0.6937171575053857,
|
| 376 |
+
"learning_rate": 1.7061912630596252e-05,
|
| 377 |
+
"loss": 0.8993,
|
| 378 |
+
"mean_token_accuracy": 0.7398321017622947,
|
| 379 |
+
"step": 220
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.3330249768732655,
|
| 383 |
+
"grad_norm": 0.7043511747509719,
|
| 384 |
+
"learning_rate": 1.6876346722120747e-05,
|
| 385 |
+
"loss": 0.8923,
|
| 386 |
+
"mean_token_accuracy": 0.7421431481838227,
|
| 387 |
+
"step": 225
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 0.3404255319148936,
|
| 391 |
+
"grad_norm": 0.6730043425143185,
|
| 392 |
+
"learning_rate": 1.6686176171308125e-05,
|
| 393 |
+
"loss": 0.8928,
|
| 394 |
+
"mean_token_accuracy": 0.7426223739981651,
|
| 395 |
+
"step": 230
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.34782608695652173,
|
| 399 |
+
"grad_norm": 0.737587447928668,
|
| 400 |
+
"learning_rate": 1.6491528323012412e-05,
|
| 401 |
+
"loss": 0.8661,
|
| 402 |
+
"mean_token_accuracy": 0.7481935888528823,
|
| 403 |
+
"step": 235
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"epoch": 0.35522664199814985,
|
| 407 |
+
"grad_norm": 0.7244554083116739,
|
| 408 |
+
"learning_rate": 1.6292533520242663e-05,
|
| 409 |
+
"loss": 0.8961,
|
| 410 |
+
"mean_token_accuracy": 0.7406120985746384,
|
| 411 |
+
"step": 240
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"epoch": 0.36262719703977797,
|
| 415 |
+
"grad_norm": 0.7315804958892015,
|
| 416 |
+
"learning_rate": 1.6089325016880737e-05,
|
| 417 |
+
"loss": 0.8874,
|
| 418 |
+
"mean_token_accuracy": 0.7421499833464622,
|
| 419 |
+
"step": 245
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"epoch": 0.3700277520814061,
|
| 423 |
+
"grad_norm": 0.7567313800333578,
|
| 424 |
+
"learning_rate": 1.588203888844982e-05,
|
| 425 |
+
"loss": 0.8876,
|
| 426 |
+
"mean_token_accuracy": 0.7425247818231583,
|
| 427 |
+
"step": 250
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"epoch": 0.3774283071230342,
|
| 431 |
+
"grad_norm": 0.6653583712120348,
|
| 432 |
+
"learning_rate": 1.5670813940993504e-05,
|
| 433 |
+
"loss": 0.8788,
|
| 434 |
+
"mean_token_accuracy": 0.7458489209413528,
|
| 435 |
+
"step": 255
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"epoch": 0.38482886216466233,
|
| 439 |
+
"grad_norm": 0.733449596064922,
|
| 440 |
+
"learning_rate": 1.5455791618126407e-05,
|
| 441 |
+
"loss": 0.8738,
|
| 442 |
+
"mean_token_accuracy": 0.747231662273407,
|
| 443 |
+
"step": 260
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 0.39222941720629045,
|
| 447 |
+
"grad_norm": 0.6686426325981755,
|
| 448 |
+
"learning_rate": 1.5237115906318565e-05,
|
| 449 |
+
"loss": 0.8598,
|
| 450 |
+
"mean_token_accuracy": 0.7507629364728927,
|
| 451 |
+
"step": 265
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.3996299722479186,
|
| 455 |
+
"grad_norm": 0.6802416771307679,
|
| 456 |
+
"learning_rate": 1.5014933238477069e-05,
|
| 457 |
+
"loss": 0.8803,
|
| 458 |
+
"mean_token_accuracy": 0.7450703024864197,
|
| 459 |
+
"step": 270
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"epoch": 0.4070305272895467,
|
| 463 |
+
"grad_norm": 0.6803809436457597,
|
| 464 |
+
"learning_rate": 1.4789392395889468e-05,
|
| 465 |
+
"loss": 0.8892,
|
| 466 |
+
"mean_token_accuracy": 0.7419334053993225,
|
| 467 |
+
"step": 275
|
| 468 |
+
},
|
| 469 |
+
{
|
| 470 |
+
"epoch": 0.4144310823311748,
|
| 471 |
+
"grad_norm": 0.6782449247763823,
|
| 472 |
+
"learning_rate": 1.4560644408594602e-05,
|
| 473 |
+
"loss": 0.8841,
|
| 474 |
+
"mean_token_accuracy": 0.7436173692345619,
|
| 475 |
+
"step": 280
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 0.42183163737280294,
|
| 479 |
+
"grad_norm": 0.6706778748459544,
|
| 480 |
+
"learning_rate": 1.432884245424761e-05,
|
| 481 |
+
"loss": 0.8593,
|
| 482 |
+
"mean_token_accuracy": 0.7501708671450615,
|
| 483 |
+
"step": 285
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"epoch": 0.42923219241443106,
|
| 487 |
+
"grad_norm": 0.629588319976625,
|
| 488 |
+
"learning_rate": 1.4094141755546816e-05,
|
| 489 |
+
"loss": 0.8864,
|
| 490 |
+
"mean_token_accuracy": 0.7426062509417534,
|
| 491 |
+
"step": 290
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"epoch": 0.4366327474560592,
|
| 495 |
+
"grad_norm": 0.6534539592813607,
|
| 496 |
+
"learning_rate": 1.3856699476291176e-05,
|
| 497 |
+
"loss": 0.8813,
|
| 498 |
+
"mean_token_accuracy": 0.7445191234350205,
|
| 499 |
+
"step": 295
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 0.4440333024976873,
|
| 503 |
+
"grad_norm": 0.6531177465719469,
|
| 504 |
+
"learning_rate": 1.3616674616137902e-05,
|
| 505 |
+
"loss": 0.8855,
|
| 506 |
+
"mean_token_accuracy": 0.7432371079921722,
|
| 507 |
+
"step": 300
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.4440333024976873,
|
| 511 |
+
"eval_loss": 0.9005297422409058,
|
| 512 |
+
"eval_mean_token_accuracy": 0.7435211083468269,
|
| 513 |
+
"eval_runtime": 2.1841,
|
| 514 |
+
"eval_samples_per_second": 234.879,
|
| 515 |
+
"eval_steps_per_second": 7.784,
|
| 516 |
+
"step": 300
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"epoch": 0.4514338575393155,
|
| 520 |
+
"grad_norm": 0.6764938521503993,
|
| 521 |
+
"learning_rate": 1.3374227904130724e-05,
|
| 522 |
+
"loss": 0.8768,
|
| 523 |
+
"mean_token_accuracy": 0.7450968131422997,
|
| 524 |
+
"step": 305
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 0.4588344125809436,
|
| 528 |
+
"grad_norm": 0.6668766120300613,
|
| 529 |
+
"learning_rate": 1.3129521691070108e-05,
|
| 530 |
+
"loss": 0.8773,
|
| 531 |
+
"mean_token_accuracy": 0.7450328126549721,
|
| 532 |
+
"step": 310
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.4662349676225717,
|
| 536 |
+
"grad_norm": 0.6544104397781916,
|
| 537 |
+
"learning_rate": 1.2882719840797473e-05,
|
| 538 |
+
"loss": 0.8647,
|
| 539 |
+
"mean_token_accuracy": 0.7483975812792778,
|
| 540 |
+
"step": 315
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"epoch": 0.47363552266419984,
|
| 544 |
+
"grad_norm": 0.6964650273926961,
|
| 545 |
+
"learning_rate": 1.2633987620466229e-05,
|
| 546 |
+
"loss": 0.8776,
|
| 547 |
+
"mean_token_accuracy": 0.7449721306562423,
|
| 548 |
+
"step": 320
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 0.48103607770582796,
|
| 552 |
+
"grad_norm": 0.6760295127441673,
|
| 553 |
+
"learning_rate": 1.2383491589873122e-05,
|
| 554 |
+
"loss": 0.8518,
|
| 555 |
+
"mean_token_accuracy": 0.7523161709308624,
|
| 556 |
+
"step": 325
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.4884366327474561,
|
| 560 |
+
"grad_norm": 0.7033529173201427,
|
| 561 |
+
"learning_rate": 1.213139948992394e-05,
|
| 562 |
+
"loss": 0.8844,
|
| 563 |
+
"mean_token_accuracy": 0.7438430100679397,
|
| 564 |
+
"step": 330
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"epoch": 0.4958371877890842,
|
| 568 |
+
"grad_norm": 0.6871954944102536,
|
| 569 |
+
"learning_rate": 1.187788013030837e-05,
|
| 570 |
+
"loss": 0.8849,
|
| 571 |
+
"mean_token_accuracy": 0.7425705894827843,
|
| 572 |
+
"step": 335
|
| 573 |
+
},
|
| 574 |
+
{
|
| 575 |
+
"epoch": 0.5032377428307123,
|
| 576 |
+
"grad_norm": 0.6933286861474868,
|
| 577 |
+
"learning_rate": 1.1623103276459086e-05,
|
| 578 |
+
"loss": 0.8528,
|
| 579 |
+
"mean_token_accuracy": 0.7521709442138672,
|
| 580 |
+
"step": 340
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 0.5106382978723404,
|
| 584 |
+
"grad_norm": 0.6363450700691029,
|
| 585 |
+
"learning_rate": 1.1367239535870913e-05,
|
| 586 |
+
"loss": 0.8646,
|
| 587 |
+
"mean_token_accuracy": 0.7477859854698181,
|
| 588 |
+
"step": 345
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"epoch": 0.5180388529139686,
|
| 592 |
+
"grad_norm": 0.6653630665619888,
|
| 593 |
+
"learning_rate": 1.1110460243856051e-05,
|
| 594 |
+
"loss": 0.8637,
|
| 595 |
+
"mean_token_accuracy": 0.7493386000394822,
|
| 596 |
+
"step": 350
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"epoch": 0.5254394079555966,
|
| 600 |
+
"grad_norm": 0.6365954356336695,
|
| 601 |
+
"learning_rate": 1.085293734881197e-05,
|
| 602 |
+
"loss": 0.8793,
|
| 603 |
+
"mean_token_accuracy": 0.7437799334526062,
|
| 604 |
+
"step": 355
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.5328399629972248,
|
| 608 |
+
"grad_norm": 0.6482396213688127,
|
| 609 |
+
"learning_rate": 1.0594843297078736e-05,
|
| 610 |
+
"loss": 0.8864,
|
| 611 |
+
"mean_token_accuracy": 0.7421556279063225,
|
| 612 |
+
"step": 360
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.5402405180388529,
|
| 616 |
+
"grad_norm": 0.5978479864664993,
|
| 617 |
+
"learning_rate": 1.0336350917462925e-05,
|
| 618 |
+
"loss": 0.8711,
|
| 619 |
+
"mean_token_accuracy": 0.7455282881855965,
|
| 620 |
+
"step": 365
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"epoch": 0.547641073080481,
|
| 624 |
+
"grad_norm": 0.6352522703312433,
|
| 625 |
+
"learning_rate": 1.0077633305505402e-05,
|
| 626 |
+
"loss": 0.8621,
|
| 627 |
+
"mean_token_accuracy": 0.7483859598636627,
|
| 628 |
+
"step": 370
|
| 629 |
+
},
|
| 630 |
+
{
|
| 631 |
+
"epoch": 0.5550416281221091,
|
| 632 |
+
"grad_norm": 0.583125055528318,
|
| 633 |
+
"learning_rate": 9.818863707570476e-06,
|
| 634 |
+
"loss": 0.8666,
|
| 635 |
+
"mean_token_accuracy": 0.7479881674051285,
|
| 636 |
+
"step": 375
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"epoch": 0.5624421831637373,
|
| 640 |
+
"grad_norm": 0.5983135711702808,
|
| 641 |
+
"learning_rate": 9.560215404834094e-06,
|
| 642 |
+
"loss": 0.854,
|
| 643 |
+
"mean_token_accuracy": 0.7515028819441796,
|
| 644 |
+
"step": 380
|
| 645 |
+
},
|
| 646 |
+
{
|
| 647 |
+
"epoch": 0.5698427382053654,
|
| 648 |
+
"grad_norm": 0.66607415159737,
|
| 649 |
+
"learning_rate": 9.30186159724869e-06,
|
| 650 |
+
"loss": 0.8866,
|
| 651 |
+
"mean_token_accuracy": 0.7421105548739433,
|
| 652 |
+
"step": 385
|
| 653 |
+
},
|
| 654 |
+
{
|
| 655 |
+
"epoch": 0.5772432932469935,
|
| 656 |
+
"grad_norm": 0.6589171171886975,
|
| 657 |
+
"learning_rate": 9.043975287562443e-06,
|
| 658 |
+
"loss": 0.8731,
|
| 659 |
+
"mean_token_accuracy": 0.7452987268567085,
|
| 660 |
+
"step": 390
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 0.5846438482886216,
|
| 664 |
+
"grad_norm": 0.5975097347178077,
|
| 665 |
+
"learning_rate": 8.786729165470584e-06,
|
| 666 |
+
"loss": 0.8544,
|
| 667 |
+
"mean_token_accuracy": 0.7503033667802811,
|
| 668 |
+
"step": 395
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.5920444033302498,
|
| 672 |
+
"grad_norm": 0.5880774684284151,
|
| 673 |
+
"learning_rate": 8.530295491976338e-06,
|
| 674 |
+
"loss": 0.8771,
|
| 675 |
+
"mean_token_accuracy": 0.743344958126545,
|
| 676 |
+
"step": 400
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.5920444033302498,
|
| 680 |
+
"eval_loss": 0.8894326090812683,
|
| 681 |
+
"eval_mean_token_accuracy": 0.7462173945763532,
|
| 682 |
+
"eval_runtime": 2.2034,
|
| 683 |
+
"eval_samples_per_second": 232.821,
|
| 684 |
+
"eval_steps_per_second": 7.715,
|
| 685 |
+
"step": 400
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.599444958371878,
|
| 689 |
+
"grad_norm": 0.6586001508431684,
|
| 690 |
+
"learning_rate": 8.274845984038916e-06,
|
| 691 |
+
"loss": 0.8799,
|
| 692 |
+
"mean_token_accuracy": 0.7435967609286308,
|
| 693 |
+
"step": 405
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"epoch": 0.606845513413506,
|
| 697 |
+
"grad_norm": 0.6563149320698979,
|
| 698 |
+
"learning_rate": 8.020551699585843e-06,
|
| 699 |
+
"loss": 0.8585,
|
| 700 |
+
"mean_token_accuracy": 0.7488940998911857,
|
| 701 |
+
"step": 410
|
| 702 |
+
},
|
| 703 |
+
{
|
| 704 |
+
"epoch": 0.6142460684551342,
|
| 705 |
+
"grad_norm": 0.6467103246127786,
|
| 706 |
+
"learning_rate": 7.76758292296659e-06,
|
| 707 |
+
"loss": 0.857,
|
| 708 |
+
"mean_token_accuracy": 0.749502919614315,
|
| 709 |
+
"step": 415
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 0.6216466234967623,
|
| 713 |
+
"grad_norm": 0.6285282151154958,
|
| 714 |
+
"learning_rate": 7.5161090509242005e-06,
|
| 715 |
+
"loss": 0.8535,
|
| 716 |
+
"mean_token_accuracy": 0.7506792798638344,
|
| 717 |
+
"step": 420
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.6290471785383904,
|
| 721 |
+
"grad_norm": 0.593269666228136,
|
| 722 |
+
"learning_rate": 7.2662984791613186e-06,
|
| 723 |
+
"loss": 0.8856,
|
| 724 |
+
"mean_token_accuracy": 0.7416229456663131,
|
| 725 |
+
"step": 425
|
| 726 |
+
},
|
| 727 |
+
{
|
| 728 |
+
"epoch": 0.6364477335800185,
|
| 729 |
+
"grad_norm": 0.6265219491146319,
|
| 730 |
+
"learning_rate": 7.01831848957653e-06,
|
| 731 |
+
"loss": 0.8426,
|
| 732 |
+
"mean_token_accuracy": 0.7525223389267921,
|
| 733 |
+
"step": 430
|
| 734 |
+
},
|
| 735 |
+
{
|
| 736 |
+
"epoch": 0.6438482886216467,
|
| 737 |
+
"grad_norm": 0.6540537180687881,
|
| 738 |
+
"learning_rate": 6.772335138246548e-06,
|
| 739 |
+
"loss": 0.8637,
|
| 740 |
+
"mean_token_accuracy": 0.7479850202798843,
|
| 741 |
+
"step": 435
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"epoch": 0.6512488436632747,
|
| 745 |
+
"grad_norm": 0.6272241952867025,
|
| 746 |
+
"learning_rate": 6.528513144229256e-06,
|
| 747 |
+
"loss": 0.8769,
|
| 748 |
+
"mean_token_accuracy": 0.7446604073047638,
|
| 749 |
+
"step": 440
|
| 750 |
+
},
|
| 751 |
+
{
|
| 752 |
+
"epoch": 0.6586493987049029,
|
| 753 |
+
"grad_norm": 0.6412492424827846,
|
| 754 |
+
"learning_rate": 6.287015779262064e-06,
|
| 755 |
+
"loss": 0.8601,
|
| 756 |
+
"mean_token_accuracy": 0.7496762722730637,
|
| 757 |
+
"step": 445
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.666049953746531,
|
| 761 |
+
"grad_norm": 0.6364246186796825,
|
| 762 |
+
"learning_rate": 6.048004758429451e-06,
|
| 763 |
+
"loss": 0.8731,
|
| 764 |
+
"mean_token_accuracy": 0.7458465754985809,
|
| 765 |
+
"step": 450
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 0.6734505087881592,
|
| 769 |
+
"grad_norm": 0.6481294272069511,
|
| 770 |
+
"learning_rate": 5.811640131872867e-06,
|
| 771 |
+
"loss": 0.8718,
|
| 772 |
+
"mean_token_accuracy": 0.7455393671989441,
|
| 773 |
+
"step": 455
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.6808510638297872,
|
| 777 |
+
"grad_norm": 0.6538372322320247,
|
| 778 |
+
"learning_rate": 5.578080177615575e-06,
|
| 779 |
+
"loss": 0.8698,
|
| 780 |
+
"mean_token_accuracy": 0.7460493981838227,
|
| 781 |
+
"step": 460
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"epoch": 0.6882516188714154,
|
| 785 |
+
"grad_norm": 0.6414820765760701,
|
| 786 |
+
"learning_rate": 5.347481295574141e-06,
|
| 787 |
+
"loss": 0.87,
|
| 788 |
+
"mean_token_accuracy": 0.7468993857502937,
|
| 789 |
+
"step": 465
|
| 790 |
+
},
|
| 791 |
+
{
|
| 792 |
+
"epoch": 0.6956521739130435,
|
| 793 |
+
"grad_norm": 0.6748378427316896,
|
| 794 |
+
"learning_rate": 5.119997902827584e-06,
|
| 795 |
+
"loss": 0.8701,
|
| 796 |
+
"mean_token_accuracy": 0.746560038626194,
|
| 797 |
+
"step": 470
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"epoch": 0.7030527289546716,
|
| 801 |
+
"grad_norm": 0.6672877517701615,
|
| 802 |
+
"learning_rate": 4.8957823302142916e-06,
|
| 803 |
+
"loss": 0.8539,
|
| 804 |
+
"mean_token_accuracy": 0.7499445468187332,
|
| 805 |
+
"step": 475
|
| 806 |
+
},
|
| 807 |
+
{
|
| 808 |
+
"epoch": 0.7104532839962997,
|
| 809 |
+
"grad_norm": 0.6265876084304774,
|
| 810 |
+
"learning_rate": 4.674984720325961e-06,
|
| 811 |
+
"loss": 0.8584,
|
| 812 |
+
"mean_token_accuracy": 0.7491385713219643,
|
| 813 |
+
"step": 480
|
| 814 |
+
},
|
| 815 |
+
{
|
| 816 |
+
"epoch": 0.7178538390379279,
|
| 817 |
+
"grad_norm": 0.6111267777143303,
|
| 818 |
+
"learning_rate": 4.457752926966888e-06,
|
| 819 |
+
"loss": 0.863,
|
| 820 |
+
"mean_token_accuracy": 0.7480010226368904,
|
| 821 |
+
"step": 485
|
| 822 |
+
},
|
| 823 |
+
{
|
| 824 |
+
"epoch": 0.7252543940795559,
|
| 825 |
+
"grad_norm": 0.6171085578696827,
|
| 826 |
+
"learning_rate": 4.244232416145839e-06,
|
| 827 |
+
"loss": 0.8553,
|
| 828 |
+
"mean_token_accuracy": 0.7512451887130738,
|
| 829 |
+
"step": 490
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.7326549491211841,
|
| 833 |
+
"grad_norm": 0.6134673195722344,
|
| 834 |
+
"learning_rate": 4.0345661686669745e-06,
|
| 835 |
+
"loss": 0.8418,
|
| 836 |
+
"mean_token_accuracy": 0.7540154755115509,
|
| 837 |
+
"step": 495
|
| 838 |
+
},
|
| 839 |
+
{
|
| 840 |
+
"epoch": 0.7400555041628122,
|
| 841 |
+
"grad_norm": 0.6114179913240297,
|
| 842 |
+
"learning_rate": 3.828894584384867e-06,
|
| 843 |
+
"loss": 0.8521,
|
| 844 |
+
"mean_token_accuracy": 0.75058134496212,
|
| 845 |
+
"step": 500
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"epoch": 0.7400555041628122,
|
| 849 |
+
"eval_loss": 0.881638765335083,
|
| 850 |
+
"eval_mean_token_accuracy": 0.7476796507835388,
|
| 851 |
+
"eval_runtime": 2.1765,
|
| 852 |
+
"eval_samples_per_second": 235.696,
|
| 853 |
+
"eval_steps_per_second": 7.811,
|
| 854 |
+
"step": 500
|
| 855 |
+
},
|
| 856 |
+
{
|
| 857 |
+
"epoch": 0.7474560592044404,
|
| 858 |
+
"grad_norm": 0.5908624287356645,
|
| 859 |
+
"learning_rate": 3.62735538818787e-06,
|
| 860 |
+
"loss": 0.8435,
|
| 861 |
+
"mean_token_accuracy": 0.753835891187191,
|
| 862 |
+
"step": 505
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"epoch": 0.7548566142460684,
|
| 866 |
+
"grad_norm": 0.6349914968001293,
|
| 867 |
+
"learning_rate": 3.4300835377726904e-06,
|
| 868 |
+
"loss": 0.859,
|
| 869 |
+
"mean_token_accuracy": 0.7497552573680878,
|
| 870 |
+
"step": 510
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"epoch": 0.7622571692876966,
|
| 874 |
+
"grad_norm": 0.6249019783111258,
|
| 875 |
+
"learning_rate": 3.2372111332720045e-06,
|
| 876 |
+
"loss": 0.8598,
|
| 877 |
+
"mean_token_accuracy": 0.7487373784184456,
|
| 878 |
+
"step": 515
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.7696577243293247,
|
| 882 |
+
"grad_norm": 0.5591637917072567,
|
| 883 |
+
"learning_rate": 3.048867328795588e-06,
|
| 884 |
+
"loss": 0.8459,
|
| 885 |
+
"mean_token_accuracy": 0.7519137054681778,
|
| 886 |
+
"step": 520
|
| 887 |
+
},
|
| 888 |
+
{
|
| 889 |
+
"epoch": 0.7770582793709528,
|
| 890 |
+
"grad_norm": 0.5809380019656564,
|
| 891 |
+
"learning_rate": 2.865178245944218e-06,
|
| 892 |
+
"loss": 0.8434,
|
| 893 |
+
"mean_token_accuracy": 0.7539234712719918,
|
| 894 |
+
"step": 525
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 0.7844588344125809,
|
| 898 |
+
"grad_norm": 0.5979787554825351,
|
| 899 |
+
"learning_rate": 2.686266889354211e-06,
|
| 900 |
+
"loss": 0.8551,
|
| 901 |
+
"mean_token_accuracy": 0.749787850677967,
|
| 902 |
+
"step": 530
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"epoch": 0.7918593894542091,
|
| 906 |
+
"grad_norm": 0.6570383338794986,
|
| 907 |
+
"learning_rate": 2.5122530643292274e-06,
|
| 908 |
+
"loss": 0.8398,
|
| 909 |
+
"mean_token_accuracy": 0.7541677594184876,
|
| 910 |
+
"step": 535
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.7992599444958371,
|
| 914 |
+
"grad_norm": 0.5690185301953747,
|
| 915 |
+
"learning_rate": 2.3432532966144526e-06,
|
| 916 |
+
"loss": 0.8588,
|
| 917 |
+
"mean_token_accuracy": 0.7488167569041252,
|
| 918 |
+
"step": 540
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"epoch": 0.8066604995374653,
|
| 922 |
+
"grad_norm": 0.6126326530553062,
|
| 923 |
+
"learning_rate": 2.1793807543668857e-06,
|
| 924 |
+
"loss": 0.8587,
|
| 925 |
+
"mean_token_accuracy": 0.7496563881635666,
|
| 926 |
+
"step": 545
|
| 927 |
+
},
|
| 928 |
+
{
|
| 929 |
+
"epoch": 0.8140610545790934,
|
| 930 |
+
"grad_norm": 0.5813800495207285,
|
| 931 |
+
"learning_rate": 2.0207451723739633e-06,
|
| 932 |
+
"loss": 0.8483,
|
| 933 |
+
"mean_token_accuracy": 0.7510766372084617,
|
| 934 |
+
"step": 550
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.8214616096207216,
|
| 938 |
+
"grad_norm": 0.60475915620152,
|
| 939 |
+
"learning_rate": 1.8674527785713247e-06,
|
| 940 |
+
"loss": 0.8545,
|
| 941 |
+
"mean_token_accuracy": 0.7497398748993873,
|
| 942 |
+
"step": 555
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"epoch": 0.8288621646623496,
|
| 946 |
+
"grad_norm": 0.5877402765902597,
|
| 947 |
+
"learning_rate": 1.7196062229088606e-06,
|
| 948 |
+
"loss": 0.8241,
|
| 949 |
+
"mean_token_accuracy": 0.7586015045642853,
|
| 950 |
+
"step": 560
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"epoch": 0.8362627197039778,
|
| 954 |
+
"grad_norm": 0.6526257609834386,
|
| 955 |
+
"learning_rate": 1.577304508612717e-06,
|
| 956 |
+
"loss": 0.8599,
|
| 957 |
+
"mean_token_accuracy": 0.7493316978216171,
|
| 958 |
+
"step": 565
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"epoch": 0.8436632747456059,
|
| 962 |
+
"grad_norm": 0.5496335012650355,
|
| 963 |
+
"learning_rate": 1.4406429258892762e-06,
|
| 964 |
+
"loss": 0.8695,
|
| 965 |
+
"mean_token_accuracy": 0.7459117889404296,
|
| 966 |
+
"step": 570
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"epoch": 0.851063829787234,
|
| 970 |
+
"grad_norm": 0.5725149070343283,
|
| 971 |
+
"learning_rate": 1.3097129881154936e-06,
|
| 972 |
+
"loss": 0.8474,
|
| 973 |
+
"mean_token_accuracy": 0.7515116304159164,
|
| 974 |
+
"step": 575
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 0.8584643848288621,
|
| 978 |
+
"grad_norm": 0.5826195818791827,
|
| 979 |
+
"learning_rate": 1.1846023705583442e-06,
|
| 980 |
+
"loss": 0.8397,
|
| 981 |
+
"mean_token_accuracy": 0.7539683729410172,
|
| 982 |
+
"step": 580
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.8658649398704903,
|
| 986 |
+
"grad_norm": 0.5831162329218164,
|
| 987 |
+
"learning_rate": 1.065394851664394e-06,
|
| 988 |
+
"loss": 0.8539,
|
| 989 |
+
"mean_token_accuracy": 0.7508011847734452,
|
| 990 |
+
"step": 585
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.8732654949121184,
|
| 994 |
+
"grad_norm": 0.5690042609302578,
|
| 995 |
+
"learning_rate": 9.521702569588199e-07,
|
| 996 |
+
"loss": 0.8504,
|
| 997 |
+
"mean_token_accuracy": 0.7507250353693962,
|
| 998 |
+
"step": 590
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"epoch": 0.8806660499537465,
|
| 1002 |
+
"grad_norm": 0.6061513356006372,
|
| 1003 |
+
"learning_rate": 8.450044055914497e-07,
|
| 1004 |
+
"loss": 0.8355,
|
| 1005 |
+
"mean_token_accuracy": 0.7554327353835106,
|
| 1006 |
+
"step": 595
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"epoch": 0.8880666049953746,
|
| 1010 |
+
"grad_norm": 0.6093688681665708,
|
| 1011 |
+
"learning_rate": 7.439690595656013e-07,
|
| 1012 |
+
"loss": 0.8578,
|
| 1013 |
+
"mean_token_accuracy": 0.7487704992294312,
|
| 1014 |
+
"step": 600
|
| 1015 |
+
},
|
| 1016 |
+
{
|
| 1017 |
+
"epoch": 0.8880666049953746,
|
| 1018 |
+
"eval_loss": 0.8783904910087585,
|
| 1019 |
+
"eval_mean_token_accuracy": 0.7484323873239405,
|
| 1020 |
+
"eval_runtime": 2.1674,
|
| 1021 |
+
"eval_samples_per_second": 236.687,
|
| 1022 |
+
"eval_steps_per_second": 7.843,
|
| 1023 |
+
"step": 600
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"epoch": 0.8954671600370028,
|
| 1027 |
+
"grad_norm": 0.5831016459790993,
|
| 1028 |
+
"learning_rate": 6.491318756837417e-07,
|
| 1029 |
+
"loss": 0.8609,
|
| 1030 |
+
"mean_token_accuracy": 0.7475288912653923,
|
| 1031 |
+
"step": 605
|
| 1032 |
+
},
|
| 1033 |
+
{
|
| 1034 |
+
"epoch": 0.902867715078631,
|
| 1035 |
+
"grad_norm": 0.6542072906593542,
|
| 1036 |
+
"learning_rate": 5.605563602421149e-07,
|
| 1037 |
+
"loss": 0.8443,
|
| 1038 |
+
"mean_token_accuracy": 0.7534396827220917,
|
| 1039 |
+
"step": 610
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 0.910268270120259,
|
| 1043 |
+
"grad_norm": 0.5861232155211408,
|
| 1044 |
+
"learning_rate": 4.783018265047179e-07,
|
| 1045 |
+
"loss": 0.8434,
|
| 1046 |
+
"mean_token_accuracy": 0.7532581895589828,
|
| 1047 |
+
"step": 615
|
| 1048 |
+
},
|
| 1049 |
+
{
|
| 1050 |
+
"epoch": 0.9176688251618872,
|
| 1051 |
+
"grad_norm": 0.589656767528558,
|
| 1052 |
+
"learning_rate": 4.024233549850509e-07,
|
| 1053 |
+
"loss": 0.8601,
|
| 1054 |
+
"mean_token_accuracy": 0.7474592179059982,
|
| 1055 |
+
"step": 620
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"epoch": 0.9250693802035153,
|
| 1059 |
+
"grad_norm": 0.6079418202447726,
|
| 1060 |
+
"learning_rate": 3.329717565622825e-07,
|
| 1061 |
+
"loss": 0.8627,
|
| 1062 |
+
"mean_token_accuracy": 0.7473152458667756,
|
| 1063 |
+
"step": 625
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.9324699352451434,
|
| 1067 |
+
"grad_norm": 0.5642595067063956,
|
| 1068 |
+
"learning_rate": 2.6999353845651113e-07,
|
| 1069 |
+
"loss": 0.8498,
|
| 1070 |
+
"mean_token_accuracy": 0.751298126578331,
|
| 1071 |
+
"step": 630
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"epoch": 0.9398704902867715,
|
| 1075 |
+
"grad_norm": 0.5943528086502035,
|
| 1076 |
+
"learning_rate": 2.1353087308590314e-07,
|
| 1077 |
+
"loss": 0.8604,
|
| 1078 |
+
"mean_token_accuracy": 0.7485680460929871,
|
| 1079 |
+
"step": 635
|
| 1080 |
+
},
|
| 1081 |
+
{
|
| 1082 |
+
"epoch": 0.9472710453283997,
|
| 1083 |
+
"grad_norm": 0.6023533437337313,
|
| 1084 |
+
"learning_rate": 1.6362156982656085e-07,
|
| 1085 |
+
"loss": 0.8516,
|
| 1086 |
+
"mean_token_accuracy": 0.7497690618038177,
|
| 1087 |
+
"step": 640
|
| 1088 |
+
},
|
| 1089 |
+
{
|
| 1090 |
+
"epoch": 0.9546716003700277,
|
| 1091 |
+
"grad_norm": 0.593669199055182,
|
| 1092 |
+
"learning_rate": 1.2029904969404482e-07,
|
| 1093 |
+
"loss": 0.858,
|
| 1094 |
+
"mean_token_accuracy": 0.7483691349625587,
|
| 1095 |
+
"step": 645
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 0.9620721554116559,
|
| 1099 |
+
"grad_norm": 0.6071566599390884,
|
| 1100 |
+
"learning_rate": 8.359232296349163e-08,
|
| 1101 |
+
"loss": 0.8689,
|
| 1102 |
+
"mean_token_accuracy": 0.7461004346609116,
|
| 1103 |
+
"step": 650
|
| 1104 |
+
},
|
| 1105 |
+
{
|
| 1106 |
+
"epoch": 0.969472710453284,
|
| 1107 |
+
"grad_norm": 0.5652597842178707,
|
| 1108 |
+
"learning_rate": 5.3525969743324356e-08,
|
| 1109 |
+
"loss": 0.8613,
|
| 1110 |
+
"mean_token_accuracy": 0.7479375675320625,
|
| 1111 |
+
"step": 655
|
| 1112 |
+
},
|
| 1113 |
+
{
|
| 1114 |
+
"epoch": 0.9768732654949122,
|
| 1115 |
+
"grad_norm": 0.8169480952806544,
|
| 1116 |
+
"learning_rate": 3.012012351554017e-08,
|
| 1117 |
+
"loss": 0.8535,
|
| 1118 |
+
"mean_token_accuracy": 0.7507029265165329,
|
| 1119 |
+
"step": 660
|
| 1120 |
+
},
|
| 1121 |
+
{
|
| 1122 |
+
"epoch": 0.9842738205365402,
|
| 1123 |
+
"grad_norm": 0.6206446909887987,
|
| 1124 |
+
"learning_rate": 1.3390457653639221e-08,
|
| 1125 |
+
"loss": 0.8293,
|
| 1126 |
+
"mean_token_accuracy": 0.7571084186434746,
|
| 1127 |
+
"step": 665
|
| 1128 |
+
},
|
| 1129 |
+
{
|
| 1130 |
+
"epoch": 0.9916743755781684,
|
| 1131 |
+
"grad_norm": 0.5839338538873344,
|
| 1132 |
+
"learning_rate": 3.3481749271768726e-09,
|
| 1133 |
+
"loss": 0.8508,
|
| 1134 |
+
"mean_token_accuracy": 0.7510079115629196,
|
| 1135 |
+
"step": 670
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.9990749306197965,
|
| 1139 |
+
"grad_norm": 0.5792536299339329,
|
| 1140 |
+
"learning_rate": 0.0,
|
| 1141 |
+
"loss": 0.831,
|
| 1142 |
+
"mean_token_accuracy": 0.7562000513076782,
|
| 1143 |
+
"step": 675
|
| 1144 |
+
},
|
| 1145 |
+
{
|
| 1146 |
+
"epoch": 0.9990749306197965,
|
| 1147 |
+
"step": 675,
|
| 1148 |
+
"total_flos": 76902580617216.0,
|
| 1149 |
+
"train_loss": 0.8954443154511629,
|
| 1150 |
+
"train_runtime": 2979.2909,
|
| 1151 |
+
"train_samples_per_second": 29.022,
|
| 1152 |
+
"train_steps_per_second": 0.227
|
| 1153 |
+
}
|
| 1154 |
+
],
|
| 1155 |
+
"logging_steps": 5,
|
| 1156 |
+
"max_steps": 675,
|
| 1157 |
+
"num_input_tokens_seen": 0,
|
| 1158 |
+
"num_train_epochs": 1,
|
| 1159 |
+
"save_steps": 500,
|
| 1160 |
+
"stateful_callbacks": {
|
| 1161 |
+
"TrainerControl": {
|
| 1162 |
+
"args": {
|
| 1163 |
+
"should_epoch_stop": false,
|
| 1164 |
+
"should_evaluate": false,
|
| 1165 |
+
"should_log": false,
|
| 1166 |
+
"should_save": false,
|
| 1167 |
+
"should_training_stop": false
|
| 1168 |
+
},
|
| 1169 |
+
"attributes": {}
|
| 1170 |
+
}
|
| 1171 |
+
},
|
| 1172 |
+
"total_flos": 76902580617216.0,
|
| 1173 |
+
"train_batch_size": 2,
|
| 1174 |
+
"trial_name": null,
|
| 1175 |
+
"trial_params": null
|
| 1176 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63399a0b91953bc0b06ed369616a558fde835b1c4f08b8fc92944e9bebbc3908
|
| 3 |
+
size 7416
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|