Model save
Browse files- .gitattributes +1 -0
- README.md +68 -0
- added_tokens.json +24 -0
- config.json +30 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +346 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +209 -0
- trainer_state.json +1261 -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,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-7B
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: big-math-digits-v2-correctness
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- trl
|
| 8 |
+
- grpo
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for big-math-digits-v2-correctness
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [Qwen/Qwen2.5-7B](https://huggingface.co/Qwen/Qwen2.5-7B).
|
| 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="mehuldamani/big-math-digits-v2-correctness", 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 |
+
[<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/mehuldamani/grpo/runs/826vknbv)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.16.0.dev0
|
| 38 |
+
- Transformers: 4.48.3
|
| 39 |
+
- Pytorch: 2.5.1
|
| 40 |
+
- Datasets: 3.6.0
|
| 41 |
+
- Tokenizers: 0.21.1
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
Cite GRPO as:
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@article{zhihong2024deepseekmath,
|
| 49 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
| 50 |
+
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
|
| 51 |
+
year = 2024,
|
| 52 |
+
eprint = {arXiv:2402.03300},
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Cite TRL as:
|
| 58 |
+
|
| 59 |
+
```bibtex
|
| 60 |
+
@misc{vonwerra2022trl,
|
| 61 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 62 |
+
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},
|
| 63 |
+
year = 2020,
|
| 64 |
+
journal = {GitHub repository},
|
| 65 |
+
publisher = {GitHub},
|
| 66 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 67 |
+
}
|
| 68 |
+
```
|
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 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "Qwen/Qwen2.5-7B",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Qwen2ForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151643,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 3584,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 18944,
|
| 13 |
+
"max_position_embeddings": 131072,
|
| 14 |
+
"max_window_layers": 28,
|
| 15 |
+
"model_type": "qwen2",
|
| 16 |
+
"num_attention_heads": 28,
|
| 17 |
+
"num_hidden_layers": 28,
|
| 18 |
+
"num_key_value_heads": 4,
|
| 19 |
+
"rms_norm_eps": 1e-06,
|
| 20 |
+
"rope_scaling": null,
|
| 21 |
+
"rope_theta": 1000000.0,
|
| 22 |
+
"sliding_window": null,
|
| 23 |
+
"tie_word_embeddings": false,
|
| 24 |
+
"torch_dtype": "bfloat16",
|
| 25 |
+
"transformers_version": "4.48.3",
|
| 26 |
+
"use_cache": false,
|
| 27 |
+
"use_mrope": false,
|
| 28 |
+
"use_sliding_window": false,
|
| 29 |
+
"vocab_size": 152064
|
| 30 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"eos_token_id": 151643,
|
| 4 |
+
"max_new_tokens": 2048,
|
| 5 |
+
"transformers_version": "4.48.3"
|
| 6 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb27fc97f7e2c8c8ad0d58ecd1de79df820a77d8012b66d23c446d58059c4a58
|
| 3 |
+
size 4877660776
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a4ce7965c63c321d50e131e2bc9dbf2c9dd12ca669252d52779b938c8603ecf
|
| 3 |
+
size 4932751008
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d6d7ba7bb1ead4d638d394fc82c266a4f6232cfc04bd5c596a309b0b87a02ec
|
| 3 |
+
size 4330865200
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8cb7b844c73e01a224e6f47e4580fc9b7727d4731f86be4451731385348329a
|
| 3 |
+
size 1089994880
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 15231233024
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 129 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 130 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 131 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 133 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 134 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 135 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 137 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 138 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 139 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 140 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 141 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 142 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 143 |
+
"model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 144 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 145 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 146 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 147 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 148 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 149 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 150 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 151 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 153 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 154 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 155 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 156 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 157 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 158 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 159 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 160 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 161 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 162 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 163 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 164 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 165 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 237 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 251 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 256 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 257 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 258 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 259 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 260 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 285 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 286 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 288 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 289 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 297 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 298 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 299 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 300 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 301 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 302 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 303 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 304 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 305 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 306 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 307 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 308 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 309 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 310 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 311 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 312 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 313 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 314 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 315 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 316 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 317 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 318 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 319 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 320 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 321 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 322 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 323 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 324 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 325 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 326 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 327 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 328 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 329 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 330 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 331 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 332 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 333 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 334 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 335 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 336 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 337 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 338 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 339 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 340 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 341 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 342 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 343 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 344 |
+
"model.norm.weight": "model-00003-of-00004.safetensors"
|
| 345 |
+
}
|
| 346 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5eee858c5123a4279c3e1f7b81247343f356ac767940b2692a928ad929543214
|
| 3 |
+
size 11422063
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 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 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": "<|endoftext|>",
|
| 201 |
+
"errors": "replace",
|
| 202 |
+
"extra_special_tokens": {},
|
| 203 |
+
"model_max_length": 131072,
|
| 204 |
+
"pad_token": "<|endoftext|>",
|
| 205 |
+
"padding_side": "left",
|
| 206 |
+
"split_special_tokens": false,
|
| 207 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 208 |
+
"unk_token": null
|
| 209 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1261 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 0.49919376007799904,
|
| 5 |
+
"eval_steps": 50,
|
| 6 |
+
"global_step": 208,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"clip_ratio/high_max": 0.0,
|
| 13 |
+
"clip_ratio/high_mean": 0.0,
|
| 14 |
+
"clip_ratio/low_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_min": 0.0,
|
| 16 |
+
"clip_ratio/region_mean": 0.0,
|
| 17 |
+
"completions/clipped_ratio": 0.02065972222222221,
|
| 18 |
+
"completions/max_length": 4047.0,
|
| 19 |
+
"completions/max_terminated_length": 4047.0,
|
| 20 |
+
"completions/mean_length": 495.66493530273436,
|
| 21 |
+
"completions/mean_terminated_length": 506.1021301269531,
|
| 22 |
+
"completions/min_length": 0.0,
|
| 23 |
+
"completions/min_terminated_length": 2.4,
|
| 24 |
+
"epoch": 0.011999850001874977,
|
| 25 |
+
"grad_norm": 0.47694680094718933,
|
| 26 |
+
"learning_rate": 2.2727272727272728e-06,
|
| 27 |
+
"loss": 0.0099,
|
| 28 |
+
"num_tokens": 7626188.0,
|
| 29 |
+
"reward": 0.4157118022441864,
|
| 30 |
+
"reward_std": 0.35606788396835326,
|
| 31 |
+
"rewards/accuracy_reward": 0.25520833134651183,
|
| 32 |
+
"rewards/brier_reward": 0.0,
|
| 33 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 34 |
+
"rewards/format_reward": 0.5762152791023254,
|
| 35 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 36 |
+
"step": 5
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"clip_ratio/high_max": 0.0,
|
| 40 |
+
"clip_ratio/high_mean": 0.0,
|
| 41 |
+
"clip_ratio/low_mean": 0.0,
|
| 42 |
+
"clip_ratio/low_min": 0.0,
|
| 43 |
+
"clip_ratio/region_mean": 0.0,
|
| 44 |
+
"completions/clipped_ratio": 0.01171875,
|
| 45 |
+
"completions/max_length": 3730.2,
|
| 46 |
+
"completions/max_terminated_length": 3730.2,
|
| 47 |
+
"completions/mean_length": 371.2526123046875,
|
| 48 |
+
"completions/mean_terminated_length": 375.78693237304685,
|
| 49 |
+
"completions/min_length": 0.0,
|
| 50 |
+
"completions/min_terminated_length": 19.4,
|
| 51 |
+
"epoch": 0.023999700003749954,
|
| 52 |
+
"grad_norm": 0.0010379819432273507,
|
| 53 |
+
"learning_rate": 4.5454545454545455e-06,
|
| 54 |
+
"loss": -0.0026,
|
| 55 |
+
"num_tokens": 13787658.0,
|
| 56 |
+
"reward": 0.6760850787162781,
|
| 57 |
+
"reward_std": 0.2362564116716385,
|
| 58 |
+
"rewards/accuracy_reward": 0.4039930462837219,
|
| 59 |
+
"rewards/brier_reward": 0.0,
|
| 60 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 61 |
+
"rewards/format_reward": 0.9481770873069764,
|
| 62 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 63 |
+
"step": 10
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"clip_ratio/high_max": 0.0,
|
| 67 |
+
"clip_ratio/high_mean": 0.0,
|
| 68 |
+
"clip_ratio/low_mean": 0.0,
|
| 69 |
+
"clip_ratio/low_min": 0.0,
|
| 70 |
+
"clip_ratio/region_mean": 0.0,
|
| 71 |
+
"completions/clipped_ratio": 0.013975694444444442,
|
| 72 |
+
"completions/max_length": 4018.4,
|
| 73 |
+
"completions/max_terminated_length": 4018.4,
|
| 74 |
+
"completions/mean_length": 464.33099365234375,
|
| 75 |
+
"completions/mean_terminated_length": 471.20233764648435,
|
| 76 |
+
"completions/min_length": 0.0,
|
| 77 |
+
"completions/min_terminated_length": 54.6,
|
| 78 |
+
"epoch": 0.03599955000562493,
|
| 79 |
+
"grad_norm": 0.0006205081008374691,
|
| 80 |
+
"learning_rate": 4.898477157360406e-06,
|
| 81 |
+
"loss": -0.0066,
|
| 82 |
+
"num_tokens": 21040655.0,
|
| 83 |
+
"reward": 0.7481770992279053,
|
| 84 |
+
"reward_std": 0.18966231644153594,
|
| 85 |
+
"rewards/accuracy_reward": 0.5131944417953491,
|
| 86 |
+
"rewards/brier_reward": 0.0,
|
| 87 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 88 |
+
"rewards/format_reward": 0.9831597328186035,
|
| 89 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 90 |
+
"step": 15
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"clip_ratio/high_max": 0.0,
|
| 94 |
+
"clip_ratio/high_mean": 0.0,
|
| 95 |
+
"clip_ratio/low_mean": 0.0,
|
| 96 |
+
"clip_ratio/low_min": 0.0,
|
| 97 |
+
"clip_ratio/region_mean": 0.0,
|
| 98 |
+
"completions/clipped_ratio": 0.01649305555555556,
|
| 99 |
+
"completions/max_length": 3962.2,
|
| 100 |
+
"completions/max_terminated_length": 3962.2,
|
| 101 |
+
"completions/mean_length": 579.791845703125,
|
| 102 |
+
"completions/mean_terminated_length": 589.5614501953125,
|
| 103 |
+
"completions/min_length": 0.0,
|
| 104 |
+
"completions/min_terminated_length": 119.6,
|
| 105 |
+
"epoch": 0.04799940000749991,
|
| 106 |
+
"grad_norm": 0.00045936586684547365,
|
| 107 |
+
"learning_rate": 4.771573604060914e-06,
|
| 108 |
+
"loss": -0.0088,
|
| 109 |
+
"num_tokens": 29635473.0,
|
| 110 |
+
"reward": 0.7965711951255798,
|
| 111 |
+
"reward_std": 0.1594875305891037,
|
| 112 |
+
"rewards/accuracy_reward": 0.6106770873069763,
|
| 113 |
+
"rewards/brier_reward": 0.0,
|
| 114 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 115 |
+
"rewards/format_reward": 0.9824652791023254,
|
| 116 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 117 |
+
"step": 20
|
| 118 |
+
},
|
| 119 |
+
{
|
| 120 |
+
"clip_ratio/high_max": 0.0,
|
| 121 |
+
"clip_ratio/high_mean": 0.0,
|
| 122 |
+
"clip_ratio/low_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_min": 0.0,
|
| 124 |
+
"clip_ratio/region_mean": 0.0,
|
| 125 |
+
"completions/clipped_ratio": 0.012673611111111094,
|
| 126 |
+
"completions/max_length": 3394.8,
|
| 127 |
+
"completions/max_terminated_length": 3394.8,
|
| 128 |
+
"completions/mean_length": 605.4309936523438,
|
| 129 |
+
"completions/mean_terminated_length": 613.314404296875,
|
| 130 |
+
"completions/min_length": 0.0,
|
| 131 |
+
"completions/min_terminated_length": 129.6,
|
| 132 |
+
"epoch": 0.05999925000937488,
|
| 133 |
+
"grad_norm": 0.0004269441997166723,
|
| 134 |
+
"learning_rate": 4.644670050761422e-06,
|
| 135 |
+
"loss": -0.0069,
|
| 136 |
+
"num_tokens": 38536406.0,
|
| 137 |
+
"reward": 0.8223090291023254,
|
| 138 |
+
"reward_std": 0.13588928282260895,
|
| 139 |
+
"rewards/accuracy_reward": 0.6580729246139526,
|
| 140 |
+
"rewards/brier_reward": 0.0,
|
| 141 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 142 |
+
"rewards/format_reward": 0.9865451455116272,
|
| 143 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 144 |
+
"step": 25
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"clip_ratio/high_max": 0.0,
|
| 148 |
+
"clip_ratio/high_mean": 0.0,
|
| 149 |
+
"clip_ratio/low_mean": 0.0,
|
| 150 |
+
"clip_ratio/low_min": 0.0,
|
| 151 |
+
"clip_ratio/region_mean": 0.0,
|
| 152 |
+
"completions/clipped_ratio": 0.017361111111111115,
|
| 153 |
+
"completions/max_length": 3280.8,
|
| 154 |
+
"completions/max_terminated_length": 3280.8,
|
| 155 |
+
"completions/mean_length": 605.2468017578125,
|
| 156 |
+
"completions/mean_terminated_length": 616.0807861328125,
|
| 157 |
+
"completions/min_length": 0.0,
|
| 158 |
+
"completions/min_terminated_length": 123.0,
|
| 159 |
+
"epoch": 0.07199910001124986,
|
| 160 |
+
"grad_norm": 0.000590955838561058,
|
| 161 |
+
"learning_rate": 4.5177664974619295e-06,
|
| 162 |
+
"loss": -0.0102,
|
| 163 |
+
"num_tokens": 47420689.0,
|
| 164 |
+
"reward": 0.8153645873069764,
|
| 165 |
+
"reward_std": 0.14741556644439696,
|
| 166 |
+
"rewards/accuracy_reward": 0.6482638835906982,
|
| 167 |
+
"rewards/brier_reward": 0.0,
|
| 168 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 169 |
+
"rewards/format_reward": 0.9824652791023254,
|
| 170 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 171 |
+
"step": 30
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"clip_ratio/high_max": 0.0,
|
| 175 |
+
"clip_ratio/high_mean": 0.0,
|
| 176 |
+
"clip_ratio/low_mean": 0.0,
|
| 177 |
+
"clip_ratio/low_min": 0.0,
|
| 178 |
+
"clip_ratio/region_mean": 0.0,
|
| 179 |
+
"completions/clipped_ratio": 0.02178819444444442,
|
| 180 |
+
"completions/max_length": 3437.4,
|
| 181 |
+
"completions/max_terminated_length": 3437.4,
|
| 182 |
+
"completions/mean_length": 595.20625,
|
| 183 |
+
"completions/mean_terminated_length": 608.612451171875,
|
| 184 |
+
"completions/min_length": 0.0,
|
| 185 |
+
"completions/min_terminated_length": 141.2,
|
| 186 |
+
"epoch": 0.08399895001312484,
|
| 187 |
+
"grad_norm": 0.0004463954537641257,
|
| 188 |
+
"learning_rate": 4.390862944162436e-06,
|
| 189 |
+
"loss": -0.013,
|
| 190 |
+
"num_tokens": 56156825.0,
|
| 191 |
+
"reward": 0.8129774451255798,
|
| 192 |
+
"reward_std": 0.13939182609319686,
|
| 193 |
+
"rewards/accuracy_reward": 0.6477430462837219,
|
| 194 |
+
"rewards/brier_reward": 0.0,
|
| 195 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 196 |
+
"rewards/format_reward": 0.9782117962837219,
|
| 197 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 198 |
+
"step": 35
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"clip_ratio/high_max": 0.0,
|
| 202 |
+
"clip_ratio/high_mean": 0.0,
|
| 203 |
+
"clip_ratio/low_mean": 0.0,
|
| 204 |
+
"clip_ratio/low_min": 0.0,
|
| 205 |
+
"clip_ratio/region_mean": 0.0,
|
| 206 |
+
"completions/clipped_ratio": 0.025954861111111116,
|
| 207 |
+
"completions/max_length": 3589.0,
|
| 208 |
+
"completions/max_terminated_length": 3589.0,
|
| 209 |
+
"completions/mean_length": 608.2237060546875,
|
| 210 |
+
"completions/mean_terminated_length": 624.4381469726562,
|
| 211 |
+
"completions/min_length": 0.0,
|
| 212 |
+
"completions/min_terminated_length": 144.4,
|
| 213 |
+
"epoch": 0.09599880001499982,
|
| 214 |
+
"grad_norm": 0.0005039877141825855,
|
| 215 |
+
"learning_rate": 4.263959390862945e-06,
|
| 216 |
+
"loss": -0.0181,
|
| 217 |
+
"num_tokens": 65085002.0,
|
| 218 |
+
"reward": 0.8188802123069763,
|
| 219 |
+
"reward_std": 0.13610992431640626,
|
| 220 |
+
"rewards/accuracy_reward": 0.6638020873069763,
|
| 221 |
+
"rewards/brier_reward": 0.0,
|
| 222 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 223 |
+
"rewards/format_reward": 0.9739583253860473,
|
| 224 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 225 |
+
"step": 40
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"clip_ratio/high_max": 0.0,
|
| 229 |
+
"clip_ratio/high_mean": 0.0,
|
| 230 |
+
"clip_ratio/low_mean": 0.0,
|
| 231 |
+
"clip_ratio/low_min": 0.0,
|
| 232 |
+
"clip_ratio/region_mean": 0.0,
|
| 233 |
+
"completions/clipped_ratio": 0.024826388888888884,
|
| 234 |
+
"completions/max_length": 3807.0,
|
| 235 |
+
"completions/max_terminated_length": 3807.0,
|
| 236 |
+
"completions/mean_length": 640.9053955078125,
|
| 237 |
+
"completions/mean_terminated_length": 657.2029418945312,
|
| 238 |
+
"completions/min_length": 0.0,
|
| 239 |
+
"completions/min_terminated_length": 145.4,
|
| 240 |
+
"epoch": 0.1079986500168748,
|
| 241 |
+
"grad_norm": 0.00040095733129419386,
|
| 242 |
+
"learning_rate": 4.137055837563453e-06,
|
| 243 |
+
"loss": -0.0146,
|
| 244 |
+
"num_tokens": 74405416.0,
|
| 245 |
+
"reward": 0.8217013955116272,
|
| 246 |
+
"reward_std": 0.13904002010822297,
|
| 247 |
+
"rewards/accuracy_reward": 0.6684895753860474,
|
| 248 |
+
"rewards/brier_reward": 0.0,
|
| 249 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 250 |
+
"rewards/format_reward": 0.9749131917953491,
|
| 251 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 252 |
+
"step": 45
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"clip_ratio/high_max": 0.0,
|
| 256 |
+
"clip_ratio/high_mean": 0.0,
|
| 257 |
+
"clip_ratio/low_mean": 0.0,
|
| 258 |
+
"clip_ratio/low_min": 0.0,
|
| 259 |
+
"clip_ratio/region_mean": 0.0,
|
| 260 |
+
"completions/clipped_ratio": 0.02352430555555556,
|
| 261 |
+
"completions/max_length": 3562.0,
|
| 262 |
+
"completions/max_terminated_length": 3562.0,
|
| 263 |
+
"completions/mean_length": 639.3743896484375,
|
| 264 |
+
"completions/mean_terminated_length": 654.712939453125,
|
| 265 |
+
"completions/min_length": 0.0,
|
| 266 |
+
"completions/min_terminated_length": 162.4,
|
| 267 |
+
"epoch": 0.11999850001874976,
|
| 268 |
+
"grad_norm": 0.0005420144880190492,
|
| 269 |
+
"learning_rate": 4.0101522842639595e-06,
|
| 270 |
+
"loss": -0.0162,
|
| 271 |
+
"num_tokens": 83670529.0,
|
| 272 |
+
"reward": 0.8127604246139526,
|
| 273 |
+
"reward_std": 0.13803613781929017,
|
| 274 |
+
"rewards/accuracy_reward": 0.6490451335906983,
|
| 275 |
+
"rewards/brier_reward": 0.0,
|
| 276 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 277 |
+
"rewards/format_reward": 0.9764756798744202,
|
| 278 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 279 |
+
"step": 50
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 0.11999850001874976,
|
| 283 |
+
"eval_completions/clipped_ratio": 0.025868055555555547,
|
| 284 |
+
"eval_completions/max_length": 2410.0,
|
| 285 |
+
"eval_completions/max_terminated_length": 2410.0,
|
| 286 |
+
"eval_completions/mean_length": 618.3784891764323,
|
| 287 |
+
"eval_completions/mean_terminated_length": 634.7286783854166,
|
| 288 |
+
"eval_completions/min_length": 0.0,
|
| 289 |
+
"eval_completions/min_terminated_length": 202.16666666666666,
|
| 290 |
+
"eval_loss": 0.0,
|
| 291 |
+
"eval_num_tokens": 83670529.0,
|
| 292 |
+
"eval_reward": 0.816406269868215,
|
| 293 |
+
"eval_reward_std": 0.2650855928659439,
|
| 294 |
+
"eval_rewards/accuracy_reward": 0.6588541666666666,
|
| 295 |
+
"eval_rewards/brier_reward": 0.0,
|
| 296 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 297 |
+
"eval_rewards/format_reward": 0.9739583233992258,
|
| 298 |
+
"eval_rewards/mean_confidence_reward": 0.0,
|
| 299 |
+
"eval_runtime": 317.036,
|
| 300 |
+
"eval_samples_per_second": 3.154,
|
| 301 |
+
"eval_steps_per_second": 0.019,
|
| 302 |
+
"step": 50
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"clip_ratio/high_max": 0.0,
|
| 306 |
+
"clip_ratio/high_mean": 0.0,
|
| 307 |
+
"clip_ratio/low_mean": 0.0,
|
| 308 |
+
"clip_ratio/low_min": 0.0,
|
| 309 |
+
"clip_ratio/region_mean": 0.0,
|
| 310 |
+
"completions/clipped_ratio": 0.0265625,
|
| 311 |
+
"completions/max_length": 3296.0,
|
| 312 |
+
"completions/max_terminated_length": 3296.0,
|
| 313 |
+
"completions/mean_length": 634.9600708007813,
|
| 314 |
+
"completions/mean_terminated_length": 652.637939453125,
|
| 315 |
+
"completions/min_length": 0.0,
|
| 316 |
+
"completions/min_terminated_length": 145.6,
|
| 317 |
+
"epoch": 0.13199835002062474,
|
| 318 |
+
"grad_norm": 0.0007147942669689655,
|
| 319 |
+
"learning_rate": 3.883248730964467e-06,
|
| 320 |
+
"loss": -0.0147,
|
| 321 |
+
"num_tokens": 92867765.0,
|
| 322 |
+
"reward": 0.8098524332046508,
|
| 323 |
+
"reward_std": 0.13919124156236648,
|
| 324 |
+
"rewards/accuracy_reward": 0.6467013835906983,
|
| 325 |
+
"rewards/brier_reward": 0.0,
|
| 326 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 327 |
+
"rewards/format_reward": 0.9730034708976746,
|
| 328 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 329 |
+
"step": 55
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"clip_ratio/high_max": 0.0,
|
| 333 |
+
"clip_ratio/high_mean": 0.0,
|
| 334 |
+
"clip_ratio/low_mean": 0.0,
|
| 335 |
+
"clip_ratio/low_min": 0.0,
|
| 336 |
+
"clip_ratio/region_mean": 0.0,
|
| 337 |
+
"completions/clipped_ratio": 0.020486111111111115,
|
| 338 |
+
"completions/max_length": 3785.2,
|
| 339 |
+
"completions/max_terminated_length": 3785.2,
|
| 340 |
+
"completions/mean_length": 638.7587768554688,
|
| 341 |
+
"completions/mean_terminated_length": 652.251123046875,
|
| 342 |
+
"completions/min_length": 0.0,
|
| 343 |
+
"completions/min_terminated_length": 149.0,
|
| 344 |
+
"epoch": 0.14399820002249972,
|
| 345 |
+
"grad_norm": 0.0006786566809751093,
|
| 346 |
+
"learning_rate": 3.756345177664975e-06,
|
| 347 |
+
"loss": -0.0139,
|
| 348 |
+
"num_tokens": 102124762.0,
|
| 349 |
+
"reward": 0.8063802123069763,
|
| 350 |
+
"reward_std": 0.13464951664209365,
|
| 351 |
+
"rewards/accuracy_reward": 0.63359375,
|
| 352 |
+
"rewards/brier_reward": 0.0,
|
| 353 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 354 |
+
"rewards/format_reward": 0.9791666626930237,
|
| 355 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 356 |
+
"step": 60
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"clip_ratio/high_max": 0.0,
|
| 360 |
+
"clip_ratio/high_mean": 0.0,
|
| 361 |
+
"clip_ratio/low_mean": 0.0,
|
| 362 |
+
"clip_ratio/low_min": 0.0,
|
| 363 |
+
"clip_ratio/region_mean": 0.0,
|
| 364 |
+
"completions/clipped_ratio": 0.015364583333333326,
|
| 365 |
+
"completions/max_length": 3440.2,
|
| 366 |
+
"completions/max_terminated_length": 3440.2,
|
| 367 |
+
"completions/mean_length": 628.39228515625,
|
| 368 |
+
"completions/mean_terminated_length": 638.17490234375,
|
| 369 |
+
"completions/min_length": 0.0,
|
| 370 |
+
"completions/min_terminated_length": 141.6,
|
| 371 |
+
"epoch": 0.1559980500243747,
|
| 372 |
+
"grad_norm": 0.0004710310895461589,
|
| 373 |
+
"learning_rate": 3.629441624365482e-06,
|
| 374 |
+
"loss": -0.0085,
|
| 375 |
+
"num_tokens": 111259809.0,
|
| 376 |
+
"reward": 0.8261718869209289,
|
| 377 |
+
"reward_std": 0.11869495064020157,
|
| 378 |
+
"rewards/accuracy_reward": 0.6677951335906982,
|
| 379 |
+
"rewards/brier_reward": 0.0,
|
| 380 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 381 |
+
"rewards/format_reward": 0.9845486164093018,
|
| 382 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 383 |
+
"step": 65
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"clip_ratio/high_max": 0.0,
|
| 387 |
+
"clip_ratio/high_mean": 0.0,
|
| 388 |
+
"clip_ratio/low_mean": 0.0,
|
| 389 |
+
"clip_ratio/low_min": 0.0,
|
| 390 |
+
"clip_ratio/region_mean": 0.0,
|
| 391 |
+
"completions/clipped_ratio": 0.02109375,
|
| 392 |
+
"completions/max_length": 3541.8,
|
| 393 |
+
"completions/max_terminated_length": 3541.8,
|
| 394 |
+
"completions/mean_length": 620.9056396484375,
|
| 395 |
+
"completions/mean_terminated_length": 634.306201171875,
|
| 396 |
+
"completions/min_length": 0.0,
|
| 397 |
+
"completions/min_terminated_length": 114.4,
|
| 398 |
+
"epoch": 0.16799790002624967,
|
| 399 |
+
"grad_norm": 0.0005915550282225013,
|
| 400 |
+
"learning_rate": 3.5025380710659903e-06,
|
| 401 |
+
"loss": -0.0141,
|
| 402 |
+
"num_tokens": 120292706.0,
|
| 403 |
+
"reward": 0.8110677123069763,
|
| 404 |
+
"reward_std": 0.12359137833118439,
|
| 405 |
+
"rewards/accuracy_reward": 0.6433159708976746,
|
| 406 |
+
"rewards/brier_reward": 0.0,
|
| 407 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 408 |
+
"rewards/format_reward": 0.9788194417953491,
|
| 409 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 410 |
+
"step": 70
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"clip_ratio/high_max": 0.0,
|
| 414 |
+
"clip_ratio/high_mean": 0.0,
|
| 415 |
+
"clip_ratio/low_mean": 0.0,
|
| 416 |
+
"clip_ratio/low_min": 0.0,
|
| 417 |
+
"clip_ratio/region_mean": 0.0,
|
| 418 |
+
"completions/clipped_ratio": 0.013368055555555558,
|
| 419 |
+
"completions/max_length": 2899.0,
|
| 420 |
+
"completions/max_terminated_length": 2899.0,
|
| 421 |
+
"completions/mean_length": 608.4648559570312,
|
| 422 |
+
"completions/mean_terminated_length": 616.763671875,
|
| 423 |
+
"completions/min_length": 0.0,
|
| 424 |
+
"completions/min_terminated_length": 150.4,
|
| 425 |
+
"epoch": 0.17999775002812465,
|
| 426 |
+
"grad_norm": 0.00045338328345678747,
|
| 427 |
+
"learning_rate": 3.375634517766498e-06,
|
| 428 |
+
"loss": -0.008,
|
| 429 |
+
"num_tokens": 129169037.0,
|
| 430 |
+
"reward": 0.8407552123069764,
|
| 431 |
+
"reward_std": 0.11922919005155563,
|
| 432 |
+
"rewards/accuracy_reward": 0.6949652910232544,
|
| 433 |
+
"rewards/brier_reward": 0.0,
|
| 434 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 435 |
+
"rewards/format_reward": 0.9865451335906983,
|
| 436 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 437 |
+
"step": 75
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"clip_ratio/high_max": 0.0,
|
| 441 |
+
"clip_ratio/high_mean": 0.0,
|
| 442 |
+
"clip_ratio/low_mean": 0.0,
|
| 443 |
+
"clip_ratio/low_min": 0.0,
|
| 444 |
+
"clip_ratio/region_mean": 0.0,
|
| 445 |
+
"completions/clipped_ratio": 0.023177083333333327,
|
| 446 |
+
"completions/max_length": 3817.4,
|
| 447 |
+
"completions/max_terminated_length": 3817.4,
|
| 448 |
+
"completions/mean_length": 648.0177368164062,
|
| 449 |
+
"completions/mean_terminated_length": 663.47724609375,
|
| 450 |
+
"completions/min_length": 0.0,
|
| 451 |
+
"completions/min_terminated_length": 127.4,
|
| 452 |
+
"epoch": 0.19199760002999963,
|
| 453 |
+
"grad_norm": 0.00041271100053563714,
|
| 454 |
+
"learning_rate": 3.2487309644670053e-06,
|
| 455 |
+
"loss": -0.0138,
|
| 456 |
+
"num_tokens": 138489401.0,
|
| 457 |
+
"reward": 0.8135850667953491,
|
| 458 |
+
"reward_std": 0.12409738302230836,
|
| 459 |
+
"rewards/accuracy_reward": 0.6503472208976746,
|
| 460 |
+
"rewards/brier_reward": 0.0,
|
| 461 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 462 |
+
"rewards/format_reward": 0.9768229126930237,
|
| 463 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 464 |
+
"step": 80
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"clip_ratio/high_max": 0.0,
|
| 468 |
+
"clip_ratio/high_mean": 0.0,
|
| 469 |
+
"clip_ratio/low_mean": 0.0,
|
| 470 |
+
"clip_ratio/low_min": 0.0,
|
| 471 |
+
"clip_ratio/region_mean": 0.0,
|
| 472 |
+
"completions/clipped_ratio": 0.025868055555555537,
|
| 473 |
+
"completions/max_length": 3501.2,
|
| 474 |
+
"completions/max_terminated_length": 3501.2,
|
| 475 |
+
"completions/mean_length": 654.8557373046875,
|
| 476 |
+
"completions/mean_terminated_length": 672.3203979492188,
|
| 477 |
+
"completions/min_length": 0.0,
|
| 478 |
+
"completions/min_terminated_length": 166.8,
|
| 479 |
+
"epoch": 0.2039974500318746,
|
| 480 |
+
"grad_norm": 0.00039561674930155277,
|
| 481 |
+
"learning_rate": 3.121827411167513e-06,
|
| 482 |
+
"loss": -0.0162,
|
| 483 |
+
"num_tokens": 147922459.0,
|
| 484 |
+
"reward": 0.8282986283302307,
|
| 485 |
+
"reward_std": 0.13599332869052888,
|
| 486 |
+
"rewards/accuracy_reward": 0.6832465171813965,
|
| 487 |
+
"rewards/brier_reward": 0.0,
|
| 488 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 489 |
+
"rewards/format_reward": 0.9733506917953492,
|
| 490 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 491 |
+
"step": 85
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"clip_ratio/high_max": 0.0,
|
| 495 |
+
"clip_ratio/high_mean": 0.0,
|
| 496 |
+
"clip_ratio/low_mean": 0.0,
|
| 497 |
+
"clip_ratio/low_min": 0.0,
|
| 498 |
+
"clip_ratio/region_mean": 0.0,
|
| 499 |
+
"completions/clipped_ratio": 0.02430555555555558,
|
| 500 |
+
"completions/max_length": 3750.8,
|
| 501 |
+
"completions/max_terminated_length": 3750.8,
|
| 502 |
+
"completions/mean_length": 626.2822875976562,
|
| 503 |
+
"completions/mean_terminated_length": 641.9483764648437,
|
| 504 |
+
"completions/min_length": 0.0,
|
| 505 |
+
"completions/min_terminated_length": 136.6,
|
| 506 |
+
"epoch": 0.2159973000337496,
|
| 507 |
+
"grad_norm": 0.00046881154412403703,
|
| 508 |
+
"learning_rate": 2.9949238578680207e-06,
|
| 509 |
+
"loss": -0.0153,
|
| 510 |
+
"num_tokens": 157007823.0,
|
| 511 |
+
"reward": 0.8209635376930237,
|
| 512 |
+
"reward_std": 0.13299919813871383,
|
| 513 |
+
"rewards/accuracy_reward": 0.6667534708976746,
|
| 514 |
+
"rewards/brier_reward": 0.0,
|
| 515 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 516 |
+
"rewards/format_reward": 0.9751736164093018,
|
| 517 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 518 |
+
"step": 90
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"clip_ratio/high_max": 0.0,
|
| 522 |
+
"clip_ratio/high_mean": 0.0,
|
| 523 |
+
"clip_ratio/low_mean": 0.0,
|
| 524 |
+
"clip_ratio/low_min": 0.0,
|
| 525 |
+
"clip_ratio/region_mean": 0.0,
|
| 526 |
+
"completions/clipped_ratio": 0.018923611111111092,
|
| 527 |
+
"completions/max_length": 3614.2,
|
| 528 |
+
"completions/max_terminated_length": 3614.2,
|
| 529 |
+
"completions/mean_length": 643.94228515625,
|
| 530 |
+
"completions/mean_terminated_length": 656.3934814453125,
|
| 531 |
+
"completions/min_length": 0.0,
|
| 532 |
+
"completions/min_terminated_length": 131.2,
|
| 533 |
+
"epoch": 0.22799715003562457,
|
| 534 |
+
"grad_norm": 0.0003850593639072031,
|
| 535 |
+
"learning_rate": 2.8680203045685284e-06,
|
| 536 |
+
"loss": -0.0103,
|
| 537 |
+
"num_tokens": 166319638.0,
|
| 538 |
+
"reward": 0.8210069537162781,
|
| 539 |
+
"reward_std": 0.11787589490413666,
|
| 540 |
+
"rewards/accuracy_reward": 0.6611979007720947,
|
| 541 |
+
"rewards/brier_reward": 0.0,
|
| 542 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 543 |
+
"rewards/format_reward": 0.9808159828186035,
|
| 544 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 545 |
+
"step": 95
|
| 546 |
+
},
|
| 547 |
+
{
|
| 548 |
+
"clip_ratio/high_max": 0.0,
|
| 549 |
+
"clip_ratio/high_mean": 0.0,
|
| 550 |
+
"clip_ratio/low_mean": 0.0,
|
| 551 |
+
"clip_ratio/low_min": 0.0,
|
| 552 |
+
"clip_ratio/region_mean": 0.0,
|
| 553 |
+
"completions/clipped_ratio": 0.025347222222222233,
|
| 554 |
+
"completions/max_length": 3307.0,
|
| 555 |
+
"completions/max_terminated_length": 3307.0,
|
| 556 |
+
"completions/mean_length": 667.9455932617187,
|
| 557 |
+
"completions/mean_terminated_length": 685.2820556640625,
|
| 558 |
+
"completions/min_length": 0.0,
|
| 559 |
+
"completions/min_terminated_length": 149.2,
|
| 560 |
+
"epoch": 0.23999700003749952,
|
| 561 |
+
"grad_norm": 0.000390661385608837,
|
| 562 |
+
"learning_rate": 2.7411167512690357e-06,
|
| 563 |
+
"loss": -0.0161,
|
| 564 |
+
"num_tokens": 175915363.0,
|
| 565 |
+
"reward": 0.8228298664093018,
|
| 566 |
+
"reward_std": 0.127268485724926,
|
| 567 |
+
"rewards/accuracy_reward": 0.6711805582046508,
|
| 568 |
+
"rewards/brier_reward": 0.0,
|
| 569 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 570 |
+
"rewards/format_reward": 0.9744791626930237,
|
| 571 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 572 |
+
"step": 100
|
| 573 |
+
},
|
| 574 |
+
{
|
| 575 |
+
"epoch": 0.23999700003749952,
|
| 576 |
+
"eval_completions/clipped_ratio": 0.018923611111111127,
|
| 577 |
+
"eval_completions/max_length": 2499.1666666666665,
|
| 578 |
+
"eval_completions/max_terminated_length": 2499.1666666666665,
|
| 579 |
+
"eval_completions/mean_length": 652.9295349121094,
|
| 580 |
+
"eval_completions/mean_terminated_length": 665.5544128417969,
|
| 581 |
+
"eval_completions/min_length": 0.0,
|
| 582 |
+
"eval_completions/min_terminated_length": 209.0,
|
| 583 |
+
"eval_loss": 0.0,
|
| 584 |
+
"eval_num_tokens": 175915363.0,
|
| 585 |
+
"eval_reward": 0.8289930721124014,
|
| 586 |
+
"eval_reward_std": 0.2512400249640147,
|
| 587 |
+
"eval_rewards/accuracy_reward": 0.6744791666666666,
|
| 588 |
+
"eval_rewards/brier_reward": 0.0,
|
| 589 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 590 |
+
"eval_rewards/format_reward": 0.9835069477558136,
|
| 591 |
+
"eval_rewards/mean_confidence_reward": 0.0,
|
| 592 |
+
"eval_runtime": 315.8521,
|
| 593 |
+
"eval_samples_per_second": 3.166,
|
| 594 |
+
"eval_steps_per_second": 0.019,
|
| 595 |
+
"step": 100
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"clip_ratio/high_max": 0.0,
|
| 599 |
+
"clip_ratio/high_mean": 0.0,
|
| 600 |
+
"clip_ratio/low_mean": 0.0,
|
| 601 |
+
"clip_ratio/low_min": 0.0,
|
| 602 |
+
"clip_ratio/region_mean": 0.0,
|
| 603 |
+
"completions/clipped_ratio": 0.021267361111111115,
|
| 604 |
+
"completions/max_length": 3450.8,
|
| 605 |
+
"completions/max_terminated_length": 3450.8,
|
| 606 |
+
"completions/mean_length": 657.2955810546875,
|
| 607 |
+
"completions/mean_terminated_length": 671.5618774414063,
|
| 608 |
+
"completions/min_length": 0.0,
|
| 609 |
+
"completions/min_terminated_length": 130.6,
|
| 610 |
+
"epoch": 0.2519968500393745,
|
| 611 |
+
"grad_norm": 0.0004644222208298743,
|
| 612 |
+
"learning_rate": 2.6142131979695434e-06,
|
| 613 |
+
"loss": -0.0128,
|
| 614 |
+
"num_tokens": 185366192.0,
|
| 615 |
+
"reward": 0.8306857705116272,
|
| 616 |
+
"reward_std": 0.11819785684347153,
|
| 617 |
+
"rewards/accuracy_reward": 0.6831597328186035,
|
| 618 |
+
"rewards/brier_reward": 0.0,
|
| 619 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 620 |
+
"rewards/format_reward": 0.9782118082046509,
|
| 621 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 622 |
+
"step": 105
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"clip_ratio/high_max": 0.0,
|
| 626 |
+
"clip_ratio/high_mean": 0.0,
|
| 627 |
+
"clip_ratio/low_mean": 0.0,
|
| 628 |
+
"clip_ratio/low_min": 0.0,
|
| 629 |
+
"clip_ratio/region_mean": 0.0,
|
| 630 |
+
"completions/clipped_ratio": 0.01675347222222221,
|
| 631 |
+
"completions/max_length": 3521.8,
|
| 632 |
+
"completions/max_terminated_length": 3521.8,
|
| 633 |
+
"completions/mean_length": 664.1182495117188,
|
| 634 |
+
"completions/mean_terminated_length": 675.5516235351563,
|
| 635 |
+
"completions/min_length": 0.0,
|
| 636 |
+
"completions/min_terminated_length": 157.8,
|
| 637 |
+
"epoch": 0.2639967000412495,
|
| 638 |
+
"grad_norm": 0.0004074091266375035,
|
| 639 |
+
"learning_rate": 2.487309644670051e-06,
|
| 640 |
+
"loss": -0.0095,
|
| 641 |
+
"num_tokens": 194927202.0,
|
| 642 |
+
"reward": 0.8493489623069763,
|
| 643 |
+
"reward_std": 0.11185714602470398,
|
| 644 |
+
"rewards/accuracy_reward": 0.7157986283302307,
|
| 645 |
+
"rewards/brier_reward": 0.0,
|
| 646 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 647 |
+
"rewards/format_reward": 0.9828993082046509,
|
| 648 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 649 |
+
"step": 110
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"clip_ratio/high_max": 0.0,
|
| 653 |
+
"clip_ratio/high_mean": 0.0,
|
| 654 |
+
"clip_ratio/low_mean": 0.0,
|
| 655 |
+
"clip_ratio/low_min": 0.0,
|
| 656 |
+
"clip_ratio/region_mean": 0.0,
|
| 657 |
+
"completions/clipped_ratio": 0.019010416666666675,
|
| 658 |
+
"completions/max_length": 3542.0,
|
| 659 |
+
"completions/max_terminated_length": 3542.0,
|
| 660 |
+
"completions/mean_length": 662.1376831054688,
|
| 661 |
+
"completions/mean_terminated_length": 675.0173706054687,
|
| 662 |
+
"completions/min_length": 0.0,
|
| 663 |
+
"completions/min_terminated_length": 163.2,
|
| 664 |
+
"epoch": 0.27599655004312446,
|
| 665 |
+
"grad_norm": 0.0004749298677779734,
|
| 666 |
+
"learning_rate": 2.3604060913705588e-06,
|
| 667 |
+
"loss": -0.0124,
|
| 668 |
+
"num_tokens": 204436148.0,
|
| 669 |
+
"reward": 0.831163203716278,
|
| 670 |
+
"reward_std": 0.11646707653999329,
|
| 671 |
+
"rewards/accuracy_reward": 0.6817708373069763,
|
| 672 |
+
"rewards/brier_reward": 0.0,
|
| 673 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 674 |
+
"rewards/format_reward": 0.9805555701255798,
|
| 675 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 676 |
+
"step": 115
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"clip_ratio/high_max": 0.0,
|
| 680 |
+
"clip_ratio/high_mean": 0.0,
|
| 681 |
+
"clip_ratio/low_mean": 0.0,
|
| 682 |
+
"clip_ratio/low_min": 0.0,
|
| 683 |
+
"clip_ratio/region_mean": 0.0,
|
| 684 |
+
"completions/clipped_ratio": 0.014322916666666652,
|
| 685 |
+
"completions/max_length": 3572.0,
|
| 686 |
+
"completions/max_terminated_length": 3572.0,
|
| 687 |
+
"completions/mean_length": 650.0963623046875,
|
| 688 |
+
"completions/mean_terminated_length": 659.4545166015625,
|
| 689 |
+
"completions/min_length": 0.0,
|
| 690 |
+
"completions/min_terminated_length": 141.6,
|
| 691 |
+
"epoch": 0.28799640004499943,
|
| 692 |
+
"grad_norm": 0.0003820126294158399,
|
| 693 |
+
"learning_rate": 2.233502538071066e-06,
|
| 694 |
+
"loss": -0.0093,
|
| 695 |
+
"num_tokens": 213809034.0,
|
| 696 |
+
"reward": 0.8375434041023254,
|
| 697 |
+
"reward_std": 0.11465604901313782,
|
| 698 |
+
"rewards/accuracy_reward": 0.68984375,
|
| 699 |
+
"rewards/brier_reward": 0.0,
|
| 700 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 701 |
+
"rewards/format_reward": 0.985243046283722,
|
| 702 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 703 |
+
"step": 120
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"clip_ratio/high_max": 0.0,
|
| 707 |
+
"clip_ratio/high_mean": 0.0,
|
| 708 |
+
"clip_ratio/low_mean": 0.0,
|
| 709 |
+
"clip_ratio/low_min": 0.0,
|
| 710 |
+
"clip_ratio/region_mean": 0.0,
|
| 711 |
+
"completions/clipped_ratio": 0.013107638888888884,
|
| 712 |
+
"completions/max_length": 3326.0,
|
| 713 |
+
"completions/max_terminated_length": 3326.0,
|
| 714 |
+
"completions/mean_length": 648.654345703125,
|
| 715 |
+
"completions/mean_terminated_length": 657.3896240234375,
|
| 716 |
+
"completions/min_length": 0.0,
|
| 717 |
+
"completions/min_terminated_length": 160.8,
|
| 718 |
+
"epoch": 0.2999962500468744,
|
| 719 |
+
"grad_norm": 0.0004972605383954942,
|
| 720 |
+
"learning_rate": 2.1065989847715737e-06,
|
| 721 |
+
"loss": -0.0084,
|
| 722 |
+
"num_tokens": 223201116.0,
|
| 723 |
+
"reward": 0.8411892294883728,
|
| 724 |
+
"reward_std": 0.11022633463144302,
|
| 725 |
+
"rewards/accuracy_reward": 0.6955729126930237,
|
| 726 |
+
"rewards/brier_reward": 0.0,
|
| 727 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 728 |
+
"rewards/format_reward": 0.9868055701255798,
|
| 729 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 730 |
+
"step": 125
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.0,
|
| 734 |
+
"clip_ratio/high_mean": 0.0,
|
| 735 |
+
"clip_ratio/low_mean": 0.0,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.0,
|
| 738 |
+
"completions/clipped_ratio": 0.017447916666666653,
|
| 739 |
+
"completions/max_length": 3507.8,
|
| 740 |
+
"completions/max_terminated_length": 3507.8,
|
| 741 |
+
"completions/mean_length": 680.4585205078125,
|
| 742 |
+
"completions/mean_terminated_length": 692.4925903320312,
|
| 743 |
+
"completions/min_length": 0.0,
|
| 744 |
+
"completions/min_terminated_length": 150.8,
|
| 745 |
+
"epoch": 0.3119961000487494,
|
| 746 |
+
"grad_norm": 0.0004750330117531121,
|
| 747 |
+
"learning_rate": 1.9796954314720814e-06,
|
| 748 |
+
"loss": -0.0107,
|
| 749 |
+
"num_tokens": 232966718.0,
|
| 750 |
+
"reward": 0.8265190958976746,
|
| 751 |
+
"reward_std": 0.12254964411258698,
|
| 752 |
+
"rewards/accuracy_reward": 0.6706597208976746,
|
| 753 |
+
"rewards/brier_reward": 0.0,
|
| 754 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 755 |
+
"rewards/format_reward": 0.9823784708976746,
|
| 756 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 757 |
+
"step": 130
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"clip_ratio/high_max": 0.0,
|
| 761 |
+
"clip_ratio/high_mean": 0.0,
|
| 762 |
+
"clip_ratio/low_mean": 0.0,
|
| 763 |
+
"clip_ratio/low_min": 0.0,
|
| 764 |
+
"clip_ratio/region_mean": 0.0,
|
| 765 |
+
"completions/clipped_ratio": 0.01128472222222221,
|
| 766 |
+
"completions/max_length": 3688.2,
|
| 767 |
+
"completions/max_terminated_length": 3688.2,
|
| 768 |
+
"completions/mean_length": 672.9379272460938,
|
| 769 |
+
"completions/mean_terminated_length": 680.5967041015625,
|
| 770 |
+
"completions/min_length": 0.0,
|
| 771 |
+
"completions/min_terminated_length": 150.8,
|
| 772 |
+
"epoch": 0.32399595005062437,
|
| 773 |
+
"grad_norm": 0.0005158277926966548,
|
| 774 |
+
"learning_rate": 1.852791878172589e-06,
|
| 775 |
+
"loss": -0.006,
|
| 776 |
+
"num_tokens": 242613907.0,
|
| 777 |
+
"reward": 0.8388889074325562,
|
| 778 |
+
"reward_std": 0.11086668223142623,
|
| 779 |
+
"rewards/accuracy_reward": 0.6890625,
|
| 780 |
+
"rewards/brier_reward": 0.0,
|
| 781 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 782 |
+
"rewards/format_reward": 0.9887152671813965,
|
| 783 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 784 |
+
"step": 135
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"clip_ratio/high_max": 0.0,
|
| 788 |
+
"clip_ratio/high_mean": 0.0,
|
| 789 |
+
"clip_ratio/low_mean": 0.0,
|
| 790 |
+
"clip_ratio/low_min": 0.0,
|
| 791 |
+
"clip_ratio/region_mean": 0.0,
|
| 792 |
+
"completions/clipped_ratio": 0.012847222222222232,
|
| 793 |
+
"completions/max_length": 3413.0,
|
| 794 |
+
"completions/max_terminated_length": 3413.0,
|
| 795 |
+
"completions/mean_length": 675.3115478515625,
|
| 796 |
+
"completions/mean_terminated_length": 684.0101196289063,
|
| 797 |
+
"completions/min_length": 0.0,
|
| 798 |
+
"completions/min_terminated_length": 173.6,
|
| 799 |
+
"epoch": 0.33599580005249935,
|
| 800 |
+
"grad_norm": 0.00046416957047767937,
|
| 801 |
+
"learning_rate": 1.7258883248730964e-06,
|
| 802 |
+
"loss": -0.0076,
|
| 803 |
+
"num_tokens": 252299640.0,
|
| 804 |
+
"reward": 0.8318142294883728,
|
| 805 |
+
"reward_std": 0.11125441938638687,
|
| 806 |
+
"rewards/accuracy_reward": 0.6766493082046509,
|
| 807 |
+
"rewards/brier_reward": 0.0,
|
| 808 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 809 |
+
"rewards/format_reward": 0.9869791626930237,
|
| 810 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 811 |
+
"step": 140
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"clip_ratio/high_max": 0.0,
|
| 815 |
+
"clip_ratio/high_mean": 0.0,
|
| 816 |
+
"clip_ratio/low_mean": 0.0,
|
| 817 |
+
"clip_ratio/low_min": 0.0,
|
| 818 |
+
"clip_ratio/region_mean": 0.0,
|
| 819 |
+
"completions/clipped_ratio": 0.01015625,
|
| 820 |
+
"completions/max_length": 3253.2,
|
| 821 |
+
"completions/max_terminated_length": 3253.2,
|
| 822 |
+
"completions/mean_length": 660.1990600585938,
|
| 823 |
+
"completions/mean_terminated_length": 667.0159423828125,
|
| 824 |
+
"completions/min_length": 0.0,
|
| 825 |
+
"completions/min_terminated_length": 176.2,
|
| 826 |
+
"epoch": 0.34799565005437433,
|
| 827 |
+
"grad_norm": 0.00041169917676597834,
|
| 828 |
+
"learning_rate": 1.5989847715736043e-06,
|
| 829 |
+
"loss": -0.0057,
|
| 830 |
+
"num_tokens": 261771661.0,
|
| 831 |
+
"reward": 0.8521701455116272,
|
| 832 |
+
"reward_std": 0.10130168348550797,
|
| 833 |
+
"rewards/accuracy_reward": 0.7144965410232544,
|
| 834 |
+
"rewards/brier_reward": 0.0,
|
| 835 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 836 |
+
"rewards/format_reward": 0.9898437619209289,
|
| 837 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 838 |
+
"step": 145
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"clip_ratio/high_max": 0.0,
|
| 842 |
+
"clip_ratio/high_mean": 0.0,
|
| 843 |
+
"clip_ratio/low_mean": 0.0,
|
| 844 |
+
"clip_ratio/low_min": 0.0,
|
| 845 |
+
"clip_ratio/region_mean": 0.0,
|
| 846 |
+
"completions/clipped_ratio": 0.01050347222222221,
|
| 847 |
+
"completions/max_length": 3546.8,
|
| 848 |
+
"completions/max_terminated_length": 3546.8,
|
| 849 |
+
"completions/mean_length": 725.4683227539062,
|
| 850 |
+
"completions/mean_terminated_length": 733.1369995117187,
|
| 851 |
+
"completions/min_length": 0.0,
|
| 852 |
+
"completions/min_terminated_length": 173.0,
|
| 853 |
+
"epoch": 0.3599955000562493,
|
| 854 |
+
"grad_norm": 0.0005442510009743273,
|
| 855 |
+
"learning_rate": 1.4720812182741118e-06,
|
| 856 |
+
"loss": -0.0055,
|
| 857 |
+
"num_tokens": 272041312.0,
|
| 858 |
+
"reward": 0.8391059041023254,
|
| 859 |
+
"reward_std": 0.11063261181116105,
|
| 860 |
+
"rewards/accuracy_reward": 0.6887152671813965,
|
| 861 |
+
"rewards/brier_reward": 0.0,
|
| 862 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 863 |
+
"rewards/format_reward": 0.9894965291023254,
|
| 864 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 865 |
+
"step": 150
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.3599955000562493,
|
| 869 |
+
"eval_completions/clipped_ratio": 0.009548611111111105,
|
| 870 |
+
"eval_completions/max_length": 2648.6666666666665,
|
| 871 |
+
"eval_completions/max_terminated_length": 2648.6666666666665,
|
| 872 |
+
"eval_completions/mean_length": 697.2899576822916,
|
| 873 |
+
"eval_completions/mean_terminated_length": 704.1798807779948,
|
| 874 |
+
"eval_completions/min_length": 77.83333333333333,
|
| 875 |
+
"eval_completions/min_terminated_length": 218.5,
|
| 876 |
+
"eval_loss": 0.0,
|
| 877 |
+
"eval_num_tokens": 272041312.0,
|
| 878 |
+
"eval_reward": 0.8424479365348816,
|
| 879 |
+
"eval_reward_std": 0.24290807793537775,
|
| 880 |
+
"eval_rewards/accuracy_reward": 0.6953125,
|
| 881 |
+
"eval_rewards/brier_reward": 0.0,
|
| 882 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 883 |
+
"eval_rewards/format_reward": 0.9895833333333334,
|
| 884 |
+
"eval_rewards/mean_confidence_reward": 0.0,
|
| 885 |
+
"eval_runtime": 335.7366,
|
| 886 |
+
"eval_samples_per_second": 2.979,
|
| 887 |
+
"eval_steps_per_second": 0.018,
|
| 888 |
+
"step": 150
|
| 889 |
+
},
|
| 890 |
+
{
|
| 891 |
+
"clip_ratio/high_max": 0.0,
|
| 892 |
+
"clip_ratio/high_mean": 0.0,
|
| 893 |
+
"clip_ratio/low_mean": 0.0,
|
| 894 |
+
"clip_ratio/low_min": 0.0,
|
| 895 |
+
"clip_ratio/region_mean": 0.0,
|
| 896 |
+
"completions/clipped_ratio": 0.008246527777777768,
|
| 897 |
+
"completions/max_length": 3176.0,
|
| 898 |
+
"completions/max_terminated_length": 3176.0,
|
| 899 |
+
"completions/mean_length": 681.7713500976563,
|
| 900 |
+
"completions/mean_terminated_length": 687.5726318359375,
|
| 901 |
+
"completions/min_length": 0.0,
|
| 902 |
+
"completions/min_terminated_length": 186.8,
|
| 903 |
+
"epoch": 0.3719953500581243,
|
| 904 |
+
"grad_norm": 0.0005200021550990641,
|
| 905 |
+
"learning_rate": 1.3451776649746193e-06,
|
| 906 |
+
"loss": -0.0046,
|
| 907 |
+
"num_tokens": 281804950.0,
|
| 908 |
+
"reward": 0.8654947876930237,
|
| 909 |
+
"reward_std": 0.10751536339521409,
|
| 910 |
+
"rewards/accuracy_reward": 0.7392361164093018,
|
| 911 |
+
"rewards/brier_reward": 0.0,
|
| 912 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 913 |
+
"rewards/format_reward": 0.9917534828186035,
|
| 914 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 915 |
+
"step": 155
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"clip_ratio/high_max": 0.0,
|
| 919 |
+
"clip_ratio/high_mean": 0.0,
|
| 920 |
+
"clip_ratio/low_mean": 0.0,
|
| 921 |
+
"clip_ratio/low_min": 0.0,
|
| 922 |
+
"clip_ratio/region_mean": 0.0,
|
| 923 |
+
"completions/clipped_ratio": 0.013975694444444419,
|
| 924 |
+
"completions/max_length": 3486.4,
|
| 925 |
+
"completions/max_terminated_length": 3486.4,
|
| 926 |
+
"completions/mean_length": 683.7095581054688,
|
| 927 |
+
"completions/mean_terminated_length": 693.3710571289063,
|
| 928 |
+
"completions/min_length": 0.0,
|
| 929 |
+
"completions/min_terminated_length": 169.2,
|
| 930 |
+
"epoch": 0.38399520005999926,
|
| 931 |
+
"grad_norm": 0.00048736194730736315,
|
| 932 |
+
"learning_rate": 1.218274111675127e-06,
|
| 933 |
+
"loss": -0.0093,
|
| 934 |
+
"num_tokens": 291570500.0,
|
| 935 |
+
"reward": 0.8379774451255798,
|
| 936 |
+
"reward_std": 0.1071748360991478,
|
| 937 |
+
"rewards/accuracy_reward": 0.689930546283722,
|
| 938 |
+
"rewards/brier_reward": 0.0,
|
| 939 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 940 |
+
"rewards/format_reward": 0.9860242962837219,
|
| 941 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 942 |
+
"step": 160
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"clip_ratio/high_max": 0.0,
|
| 946 |
+
"clip_ratio/high_mean": 0.0,
|
| 947 |
+
"clip_ratio/low_mean": 0.0,
|
| 948 |
+
"clip_ratio/low_min": 0.0,
|
| 949 |
+
"clip_ratio/region_mean": 0.0,
|
| 950 |
+
"completions/clipped_ratio": 0.014670138888888884,
|
| 951 |
+
"completions/max_length": 3638.8,
|
| 952 |
+
"completions/max_terminated_length": 3638.8,
|
| 953 |
+
"completions/mean_length": 728.8395751953125,
|
| 954 |
+
"completions/mean_terminated_length": 739.8839111328125,
|
| 955 |
+
"completions/min_length": 0.0,
|
| 956 |
+
"completions/min_terminated_length": 187.0,
|
| 957 |
+
"epoch": 0.39599505006187424,
|
| 958 |
+
"grad_norm": 0.0005984375602565706,
|
| 959 |
+
"learning_rate": 1.0913705583756345e-06,
|
| 960 |
+
"loss": -0.0069,
|
| 961 |
+
"num_tokens": 301907724.0,
|
| 962 |
+
"reward": 0.8228298664093018,
|
| 963 |
+
"reward_std": 0.10787203758955002,
|
| 964 |
+
"rewards/accuracy_reward": 0.6605902791023255,
|
| 965 |
+
"rewards/brier_reward": 0.0,
|
| 966 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 967 |
+
"rewards/format_reward": 0.9850694537162781,
|
| 968 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 969 |
+
"step": 165
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"clip_ratio/high_max": 0.0,
|
| 973 |
+
"clip_ratio/high_mean": 0.0,
|
| 974 |
+
"clip_ratio/low_mean": 0.0,
|
| 975 |
+
"clip_ratio/low_min": 0.0,
|
| 976 |
+
"clip_ratio/region_mean": 0.0,
|
| 977 |
+
"completions/clipped_ratio": 0.011111111111111094,
|
| 978 |
+
"completions/max_length": 3545.2,
|
| 979 |
+
"completions/max_terminated_length": 3545.2,
|
| 980 |
+
"completions/mean_length": 690.5397583007813,
|
| 981 |
+
"completions/mean_terminated_length": 698.257373046875,
|
| 982 |
+
"completions/min_length": 0.0,
|
| 983 |
+
"completions/min_terminated_length": 167.2,
|
| 984 |
+
"epoch": 0.4079949000637492,
|
| 985 |
+
"grad_norm": 0.0004480788193177432,
|
| 986 |
+
"learning_rate": 9.644670050761422e-07,
|
| 987 |
+
"loss": -0.0055,
|
| 988 |
+
"num_tokens": 311753846.0,
|
| 989 |
+
"reward": 0.8578559160232544,
|
| 990 |
+
"reward_std": 0.10318245440721512,
|
| 991 |
+
"rewards/accuracy_reward": 0.7269097208976746,
|
| 992 |
+
"rewards/brier_reward": 0.0,
|
| 993 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 994 |
+
"rewards/format_reward": 0.9888020753860474,
|
| 995 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 996 |
+
"step": 170
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"clip_ratio/high_max": 0.0,
|
| 1000 |
+
"clip_ratio/high_mean": 0.0,
|
| 1001 |
+
"clip_ratio/low_mean": 0.0,
|
| 1002 |
+
"clip_ratio/low_min": 0.0,
|
| 1003 |
+
"clip_ratio/region_mean": 0.0,
|
| 1004 |
+
"completions/clipped_ratio": 0.010243055555555557,
|
| 1005 |
+
"completions/max_length": 3369.0,
|
| 1006 |
+
"completions/max_terminated_length": 3369.0,
|
| 1007 |
+
"completions/mean_length": 729.870068359375,
|
| 1008 |
+
"completions/mean_terminated_length": 737.4661865234375,
|
| 1009 |
+
"completions/min_length": 0.0,
|
| 1010 |
+
"completions/min_terminated_length": 162.2,
|
| 1011 |
+
"epoch": 0.4199947500656242,
|
| 1012 |
+
"grad_norm": 0.00047758789150975645,
|
| 1013 |
+
"learning_rate": 8.375634517766498e-07,
|
| 1014 |
+
"loss": -0.0068,
|
| 1015 |
+
"num_tokens": 322071837.0,
|
| 1016 |
+
"reward": 0.8517795085906983,
|
| 1017 |
+
"reward_std": 0.11207419633865356,
|
| 1018 |
+
"rewards/accuracy_reward": 0.7139756917953491,
|
| 1019 |
+
"rewards/brier_reward": 0.0,
|
| 1020 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1021 |
+
"rewards/format_reward": 0.9895833253860473,
|
| 1022 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1023 |
+
"step": 175
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"clip_ratio/high_max": 0.0,
|
| 1027 |
+
"clip_ratio/high_mean": 0.0,
|
| 1028 |
+
"clip_ratio/low_mean": 0.0,
|
| 1029 |
+
"clip_ratio/low_min": 0.0,
|
| 1030 |
+
"clip_ratio/region_mean": 0.0,
|
| 1031 |
+
"completions/clipped_ratio": 0.011111111111111094,
|
| 1032 |
+
"completions/max_length": 3660.4,
|
| 1033 |
+
"completions/max_terminated_length": 3660.4,
|
| 1034 |
+
"completions/mean_length": 702.6620727539063,
|
| 1035 |
+
"completions/mean_terminated_length": 710.5470703125,
|
| 1036 |
+
"completions/min_length": 0.0,
|
| 1037 |
+
"completions/min_terminated_length": 178.4,
|
| 1038 |
+
"epoch": 0.4319946000674992,
|
| 1039 |
+
"grad_norm": 0.0006071230163797736,
|
| 1040 |
+
"learning_rate": 7.106598984771574e-07,
|
| 1041 |
+
"loss": -0.0065,
|
| 1042 |
+
"num_tokens": 332068392.0,
|
| 1043 |
+
"reward": 0.8521267414093018,
|
| 1044 |
+
"reward_std": 0.10839989632368088,
|
| 1045 |
+
"rewards/accuracy_reward": 0.7157986164093018,
|
| 1046 |
+
"rewards/brier_reward": 0.0,
|
| 1047 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1048 |
+
"rewards/format_reward": 0.9884548544883728,
|
| 1049 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1050 |
+
"step": 180
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"clip_ratio/high_max": 0.0,
|
| 1054 |
+
"clip_ratio/high_mean": 0.0,
|
| 1055 |
+
"clip_ratio/low_mean": 0.0,
|
| 1056 |
+
"clip_ratio/low_min": 0.0,
|
| 1057 |
+
"clip_ratio/region_mean": 0.0,
|
| 1058 |
+
"completions/clipped_ratio": 0.014149305555555557,
|
| 1059 |
+
"completions/max_length": 3151.4,
|
| 1060 |
+
"completions/max_terminated_length": 3151.4,
|
| 1061 |
+
"completions/mean_length": 697.1512329101563,
|
| 1062 |
+
"completions/mean_terminated_length": 707.2808837890625,
|
| 1063 |
+
"completions/min_length": 0.0,
|
| 1064 |
+
"completions/min_terminated_length": 163.8,
|
| 1065 |
+
"epoch": 0.44399445006937416,
|
| 1066 |
+
"grad_norm": 0.000985562102869153,
|
| 1067 |
+
"learning_rate": 5.83756345177665e-07,
|
| 1068 |
+
"loss": -0.0069,
|
| 1069 |
+
"num_tokens": 341991542.0,
|
| 1070 |
+
"reward": 0.8358941197395324,
|
| 1071 |
+
"reward_std": 0.11062836647033691,
|
| 1072 |
+
"rewards/accuracy_reward": 0.6860243082046509,
|
| 1073 |
+
"rewards/brier_reward": 0.0,
|
| 1074 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1075 |
+
"rewards/format_reward": 0.9857638835906982,
|
| 1076 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1077 |
+
"step": 185
|
| 1078 |
+
},
|
| 1079 |
+
{
|
| 1080 |
+
"clip_ratio/high_max": 0.0,
|
| 1081 |
+
"clip_ratio/high_mean": 0.0,
|
| 1082 |
+
"clip_ratio/low_mean": 0.0,
|
| 1083 |
+
"clip_ratio/low_min": 0.0,
|
| 1084 |
+
"clip_ratio/region_mean": 0.0,
|
| 1085 |
+
"completions/clipped_ratio": 0.010763888888888884,
|
| 1086 |
+
"completions/max_length": 3502.8,
|
| 1087 |
+
"completions/max_terminated_length": 3502.8,
|
| 1088 |
+
"completions/mean_length": 693.5631103515625,
|
| 1089 |
+
"completions/mean_terminated_length": 701.1261474609375,
|
| 1090 |
+
"completions/min_length": 0.0,
|
| 1091 |
+
"completions/min_terminated_length": 167.0,
|
| 1092 |
+
"epoch": 0.45599430007124914,
|
| 1093 |
+
"grad_norm": 0.00046821607975289226,
|
| 1094 |
+
"learning_rate": 4.568527918781726e-07,
|
| 1095 |
+
"loss": -0.0062,
|
| 1096 |
+
"num_tokens": 351866253.0,
|
| 1097 |
+
"reward": 0.8616753458976746,
|
| 1098 |
+
"reward_std": 0.11032991707324982,
|
| 1099 |
+
"rewards/accuracy_reward": 0.7342013955116272,
|
| 1100 |
+
"rewards/brier_reward": 0.0,
|
| 1101 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1102 |
+
"rewards/format_reward": 0.9891493201255799,
|
| 1103 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1104 |
+
"step": 190
|
| 1105 |
+
},
|
| 1106 |
+
{
|
| 1107 |
+
"clip_ratio/high_max": 0.0,
|
| 1108 |
+
"clip_ratio/high_mean": 0.0,
|
| 1109 |
+
"clip_ratio/low_mean": 0.0,
|
| 1110 |
+
"clip_ratio/low_min": 0.0,
|
| 1111 |
+
"clip_ratio/region_mean": 0.0,
|
| 1112 |
+
"completions/clipped_ratio": 0.015017361111111117,
|
| 1113 |
+
"completions/max_length": 3624.0,
|
| 1114 |
+
"completions/max_terminated_length": 3624.0,
|
| 1115 |
+
"completions/mean_length": 707.9368286132812,
|
| 1116 |
+
"completions/mean_terminated_length": 718.9172485351562,
|
| 1117 |
+
"completions/min_length": 0.0,
|
| 1118 |
+
"completions/min_terminated_length": 125.0,
|
| 1119 |
+
"epoch": 0.46799415007312406,
|
| 1120 |
+
"grad_norm": 0.0005199919687584043,
|
| 1121 |
+
"learning_rate": 3.2994923857868026e-07,
|
| 1122 |
+
"loss": -0.0096,
|
| 1123 |
+
"num_tokens": 361904469.0,
|
| 1124 |
+
"reward": 0.8315538167953491,
|
| 1125 |
+
"reward_std": 0.10869046747684478,
|
| 1126 |
+
"rewards/accuracy_reward": 0.6782986164093018,
|
| 1127 |
+
"rewards/brier_reward": 0.0,
|
| 1128 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1129 |
+
"rewards/format_reward": 0.9848090410232544,
|
| 1130 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1131 |
+
"step": 195
|
| 1132 |
+
},
|
| 1133 |
+
{
|
| 1134 |
+
"clip_ratio/high_max": 0.0,
|
| 1135 |
+
"clip_ratio/high_mean": 0.0,
|
| 1136 |
+
"clip_ratio/low_mean": 0.0,
|
| 1137 |
+
"clip_ratio/low_min": 0.0,
|
| 1138 |
+
"clip_ratio/region_mean": 0.0,
|
| 1139 |
+
"completions/clipped_ratio": 0.008333333333333326,
|
| 1140 |
+
"completions/max_length": 3104.0,
|
| 1141 |
+
"completions/max_terminated_length": 3104.0,
|
| 1142 |
+
"completions/mean_length": 690.364599609375,
|
| 1143 |
+
"completions/mean_terminated_length": 696.1920288085937,
|
| 1144 |
+
"completions/min_length": 0.0,
|
| 1145 |
+
"completions/min_terminated_length": 176.2,
|
| 1146 |
+
"epoch": 0.47999400007499904,
|
| 1147 |
+
"grad_norm": 0.00045739096822217107,
|
| 1148 |
+
"learning_rate": 2.0304568527918783e-07,
|
| 1149 |
+
"loss": -0.0042,
|
| 1150 |
+
"num_tokens": 371727197.0,
|
| 1151 |
+
"reward": 0.8470920085906982,
|
| 1152 |
+
"reward_std": 0.09732583314180374,
|
| 1153 |
+
"rewards/accuracy_reward": 0.7025173544883728,
|
| 1154 |
+
"rewards/brier_reward": 0.0,
|
| 1155 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1156 |
+
"rewards/format_reward": 0.9916666626930237,
|
| 1157 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1158 |
+
"step": 200
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.47999400007499904,
|
| 1162 |
+
"eval_completions/clipped_ratio": 0.006076388888888877,
|
| 1163 |
+
"eval_completions/max_length": 2123.3333333333335,
|
| 1164 |
+
"eval_completions/max_terminated_length": 2123.3333333333335,
|
| 1165 |
+
"eval_completions/mean_length": 704.721201578776,
|
| 1166 |
+
"eval_completions/mean_terminated_length": 708.9297790527344,
|
| 1167 |
+
"eval_completions/min_length": 100.16666666666667,
|
| 1168 |
+
"eval_completions/min_terminated_length": 211.0,
|
| 1169 |
+
"eval_loss": 0.0,
|
| 1170 |
+
"eval_num_tokens": 371727197.0,
|
| 1171 |
+
"eval_reward": 0.8424479365348816,
|
| 1172 |
+
"eval_reward_std": 0.23790805538495383,
|
| 1173 |
+
"eval_rewards/accuracy_reward": 0.691840281089147,
|
| 1174 |
+
"eval_rewards/brier_reward": 0.0,
|
| 1175 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 1176 |
+
"eval_rewards/format_reward": 0.9930555522441864,
|
| 1177 |
+
"eval_rewards/mean_confidence_reward": 0.0,
|
| 1178 |
+
"eval_runtime": 336.264,
|
| 1179 |
+
"eval_samples_per_second": 2.974,
|
| 1180 |
+
"eval_steps_per_second": 0.018,
|
| 1181 |
+
"step": 200
|
| 1182 |
+
},
|
| 1183 |
+
{
|
| 1184 |
+
"clip_ratio/high_max": 0.0,
|
| 1185 |
+
"clip_ratio/high_mean": 0.0,
|
| 1186 |
+
"clip_ratio/low_mean": 0.0,
|
| 1187 |
+
"clip_ratio/low_min": 0.0,
|
| 1188 |
+
"clip_ratio/region_mean": 0.0,
|
| 1189 |
+
"completions/clipped_ratio": 0.01128472222222221,
|
| 1190 |
+
"completions/max_length": 3577.6,
|
| 1191 |
+
"completions/max_terminated_length": 3577.6,
|
| 1192 |
+
"completions/mean_length": 705.7981811523438,
|
| 1193 |
+
"completions/mean_terminated_length": 713.82548828125,
|
| 1194 |
+
"completions/min_length": 0.0,
|
| 1195 |
+
"completions/min_terminated_length": 167.4,
|
| 1196 |
+
"epoch": 0.491993850076874,
|
| 1197 |
+
"grad_norm": 0.0006899295258335769,
|
| 1198 |
+
"learning_rate": 7.614213197969544e-08,
|
| 1199 |
+
"loss": -0.0061,
|
| 1200 |
+
"num_tokens": 381725864.0,
|
| 1201 |
+
"reward": 0.8680121541023255,
|
| 1202 |
+
"reward_std": 0.10762782245874405,
|
| 1203 |
+
"rewards/accuracy_reward": 0.7473090291023254,
|
| 1204 |
+
"rewards/brier_reward": 0.0,
|
| 1205 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1206 |
+
"rewards/format_reward": 0.9887152910232544,
|
| 1207 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1208 |
+
"step": 205
|
| 1209 |
+
},
|
| 1210 |
+
{
|
| 1211 |
+
"clip_ratio/high_max": 0.0,
|
| 1212 |
+
"clip_ratio/high_mean": 0.0,
|
| 1213 |
+
"clip_ratio/low_mean": 0.0,
|
| 1214 |
+
"clip_ratio/low_min": 0.0,
|
| 1215 |
+
"clip_ratio/region_mean": 0.0,
|
| 1216 |
+
"completions/clipped_ratio": 0.00795717592592593,
|
| 1217 |
+
"completions/max_length": 3177.3333333333335,
|
| 1218 |
+
"completions/max_terminated_length": 3177.3333333333335,
|
| 1219 |
+
"completions/mean_length": 710.8990478515625,
|
| 1220 |
+
"completions/mean_terminated_length": 716.7127685546875,
|
| 1221 |
+
"completions/min_length": 0.0,
|
| 1222 |
+
"completions/min_terminated_length": 147.33333333333334,
|
| 1223 |
+
"epoch": 0.49919376007799904,
|
| 1224 |
+
"num_tokens": 387786798.0,
|
| 1225 |
+
"reward": 0.8449074029922485,
|
| 1226 |
+
"reward_std": 0.10756702721118927,
|
| 1227 |
+
"rewards/accuracy_reward": 0.6977719863255819,
|
| 1228 |
+
"rewards/brier_reward": 0.0,
|
| 1229 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 1230 |
+
"rewards/format_reward": 0.9920428395271301,
|
| 1231 |
+
"rewards/mean_confidence_reward": 0.0,
|
| 1232 |
+
"step": 208,
|
| 1233 |
+
"total_flos": 0.0,
|
| 1234 |
+
"train_loss": -0.00919347727456345,
|
| 1235 |
+
"train_runtime": 75450.0592,
|
| 1236 |
+
"train_samples_per_second": 0.199,
|
| 1237 |
+
"train_steps_per_second": 0.003
|
| 1238 |
+
}
|
| 1239 |
+
],
|
| 1240 |
+
"logging_steps": 5,
|
| 1241 |
+
"max_steps": 208,
|
| 1242 |
+
"num_input_tokens_seen": 387786798,
|
| 1243 |
+
"num_train_epochs": 1,
|
| 1244 |
+
"save_steps": 60,
|
| 1245 |
+
"stateful_callbacks": {
|
| 1246 |
+
"TrainerControl": {
|
| 1247 |
+
"args": {
|
| 1248 |
+
"should_epoch_stop": false,
|
| 1249 |
+
"should_evaluate": false,
|
| 1250 |
+
"should_log": false,
|
| 1251 |
+
"should_save": true,
|
| 1252 |
+
"should_training_stop": true
|
| 1253 |
+
},
|
| 1254 |
+
"attributes": {}
|
| 1255 |
+
}
|
| 1256 |
+
},
|
| 1257 |
+
"total_flos": 0.0,
|
| 1258 |
+
"train_batch_size": 6,
|
| 1259 |
+
"trial_name": null,
|
| 1260 |
+
"trial_params": null
|
| 1261 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73b4e03e35043b8f349eb1c1fb2a7107a1ab913a9e688a036af6e5c73e54f89a
|
| 3 |
+
size 8312
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|