Model save
Browse files- .gitattributes +1 -0
- README.md +68 -0
- added_tokens.json +24 -0
- config.json +31 -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: mehuldamani/qwen-base-verifier-sft-v1
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: big-math-digits-v2-brier
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- trl
|
| 8 |
+
- grpo
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for big-math-digits-v2-brier
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [mehuldamani/qwen-base-verifier-sft-v1](https://huggingface.co/mehuldamani/qwen-base-verifier-sft-v1).
|
| 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-brier", 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/lsp5z7k5)
|
| 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,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "mehuldamani/qwen-base-verifier-sft-v1",
|
| 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 |
+
"pad_token_id": 151647,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_scaling": null,
|
| 22 |
+
"rope_theta": 1000000.0,
|
| 23 |
+
"sliding_window": null,
|
| 24 |
+
"tie_word_embeddings": false,
|
| 25 |
+
"torch_dtype": "bfloat16",
|
| 26 |
+
"transformers_version": "4.48.3",
|
| 27 |
+
"use_cache": false,
|
| 28 |
+
"use_mrope": false,
|
| 29 |
+
"use_sliding_window": false,
|
| 30 |
+
"vocab_size": 152064
|
| 31 |
+
}
|
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:1bd4f2475391cb46e81e959aa2ba3a71e17aa6f1d6fab488b3633e307a300469
|
| 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:1424c4559fcbb10cb89c8900b1a6a5d9d84ecdc7dc8d658195e2f0d74455458d
|
| 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:5716b3d9c19beaf3762b69442c6cf792400fba773aaf6c9ab3631c57dbb49aec
|
| 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:197ca509b87d841115e317b7143069cf056765dab4bf770e6270f5013719df77
|
| 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": "<|object_ref_end|>",
|
| 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:94a4bd93feb237e711dbe18b039f5614fa36b21f115621ade2ca27edc119f976
|
| 3 |
+
size 11422068
|
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": "<|object_ref_end|>",
|
| 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.04618055555555556,
|
| 18 |
+
"completions/max_length": 4000.2,
|
| 19 |
+
"completions/max_terminated_length": 4000.2,
|
| 20 |
+
"completions/mean_length": 995.653466796875,
|
| 21 |
+
"completions/mean_terminated_length": 1043.9063598632813,
|
| 22 |
+
"completions/min_length": 0.0,
|
| 23 |
+
"completions/min_terminated_length": 223.4,
|
| 24 |
+
"epoch": 0.011999850001874977,
|
| 25 |
+
"grad_norm": 0.001468590460717678,
|
| 26 |
+
"learning_rate": 2.2727272727272728e-06,
|
| 27 |
+
"loss": -0.0262,
|
| 28 |
+
"num_tokens": 14584136.0,
|
| 29 |
+
"reward": 0.8028841495513916,
|
| 30 |
+
"reward_std": 0.5060957491397857,
|
| 31 |
+
"rewards/accuracy_reward": 0.35407986044883727,
|
| 32 |
+
"rewards/brier_reward": 0.5074836075305938,
|
| 33 |
+
"rewards/confidence_one_or_zero": 0.4384548604488373,
|
| 34 |
+
"rewards/format_reward": 0.7441840171813965,
|
| 35 |
+
"rewards/mean_confidence_reward": 0.6029745936393738,
|
| 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.03776041666666665,
|
| 45 |
+
"completions/max_length": 3788.0,
|
| 46 |
+
"completions/max_terminated_length": 3788.0,
|
| 47 |
+
"completions/mean_length": 952.0879516601562,
|
| 48 |
+
"completions/mean_terminated_length": 989.9261596679687,
|
| 49 |
+
"completions/min_length": 0.0,
|
| 50 |
+
"completions/min_terminated_length": 233.0,
|
| 51 |
+
"epoch": 0.023999700003749954,
|
| 52 |
+
"grad_norm": 0.000640683458186686,
|
| 53 |
+
"learning_rate": 4.5454545454545455e-06,
|
| 54 |
+
"loss": -0.0367,
|
| 55 |
+
"num_tokens": 28634909.0,
|
| 56 |
+
"reward": 1.0157596111297607,
|
| 57 |
+
"reward_std": 0.3558866620063782,
|
| 58 |
+
"rewards/accuracy_reward": 0.4484375,
|
| 59 |
+
"rewards/brier_reward": 0.6547639966011047,
|
| 60 |
+
"rewards/confidence_one_or_zero": 0.42048611044883727,
|
| 61 |
+
"rewards/format_reward": 0.9282986044883728,
|
| 62 |
+
"rewards/mean_confidence_reward": 0.5301635503768921,
|
| 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.030295138888888885,
|
| 72 |
+
"completions/max_length": 3773.6,
|
| 73 |
+
"completions/max_terminated_length": 3773.6,
|
| 74 |
+
"completions/mean_length": 968.6600708007812,
|
| 75 |
+
"completions/mean_terminated_length": 999.1074096679688,
|
| 76 |
+
"completions/min_length": 0.0,
|
| 77 |
+
"completions/min_terminated_length": 320.6,
|
| 78 |
+
"epoch": 0.03599955000562493,
|
| 79 |
+
"grad_norm": 0.0007433110731653869,
|
| 80 |
+
"learning_rate": 4.898477157360406e-06,
|
| 81 |
+
"loss": -0.033,
|
| 82 |
+
"num_tokens": 42895857.0,
|
| 83 |
+
"reward": 1.0568380117416383,
|
| 84 |
+
"reward_std": 0.24810748398303986,
|
| 85 |
+
"rewards/accuracy_reward": 0.4456597208976746,
|
| 86 |
+
"rewards/brier_reward": 0.7031617760658264,
|
| 87 |
+
"rewards/confidence_one_or_zero": 0.1889756962656975,
|
| 88 |
+
"rewards/format_reward": 0.9648437380790711,
|
| 89 |
+
"rewards/mean_confidence_reward": 0.34892988204956055,
|
| 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.030642361111111092,
|
| 99 |
+
"completions/max_length": 3860.2,
|
| 100 |
+
"completions/max_terminated_length": 3860.2,
|
| 101 |
+
"completions/mean_length": 888.786279296875,
|
| 102 |
+
"completions/mean_terminated_length": 917.262744140625,
|
| 103 |
+
"completions/min_length": 0.0,
|
| 104 |
+
"completions/min_terminated_length": 294.2,
|
| 105 |
+
"epoch": 0.04799940000749991,
|
| 106 |
+
"grad_norm": 0.0007100884104147553,
|
| 107 |
+
"learning_rate": 4.771573604060914e-06,
|
| 108 |
+
"loss": -0.0317,
|
| 109 |
+
"num_tokens": 56248371.0,
|
| 110 |
+
"reward": 1.1035695791244506,
|
| 111 |
+
"reward_std": 0.2411518782377243,
|
| 112 |
+
"rewards/accuracy_reward": 0.4994791686534882,
|
| 113 |
+
"rewards/brier_reward": 0.7392470240592957,
|
| 114 |
+
"rewards/confidence_one_or_zero": 0.004427083267364651,
|
| 115 |
+
"rewards/format_reward": 0.9684027791023254,
|
| 116 |
+
"rewards/mean_confidence_reward": 0.5068701922893524,
|
| 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.027517361111111117,
|
| 126 |
+
"completions/max_length": 3753.2,
|
| 127 |
+
"completions/max_terminated_length": 3753.2,
|
| 128 |
+
"completions/mean_length": 845.354345703125,
|
| 129 |
+
"completions/mean_terminated_length": 869.4375122070312,
|
| 130 |
+
"completions/min_length": 0.0,
|
| 131 |
+
"completions/min_terminated_length": 275.0,
|
| 132 |
+
"epoch": 0.05999925000937488,
|
| 133 |
+
"grad_norm": 0.0007387480000033975,
|
| 134 |
+
"learning_rate": 4.644670050761422e-06,
|
| 135 |
+
"loss": -0.0278,
|
| 136 |
+
"num_tokens": 69111301.0,
|
| 137 |
+
"reward": 1.1421298265457154,
|
| 138 |
+
"reward_std": 0.24627233445644378,
|
| 139 |
+
"rewards/accuracy_reward": 0.5638888835906982,
|
| 140 |
+
"rewards/brier_reward": 0.7484833002090454,
|
| 141 |
+
"rewards/confidence_one_or_zero": 0.0007812500058207661,
|
| 142 |
+
"rewards/format_reward": 0.971875,
|
| 143 |
+
"rewards/mean_confidence_reward": 0.6265876889228821,
|
| 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.03671875,
|
| 153 |
+
"completions/max_length": 3877.8,
|
| 154 |
+
"completions/max_terminated_length": 3877.8,
|
| 155 |
+
"completions/mean_length": 911.8454223632813,
|
| 156 |
+
"completions/mean_terminated_length": 946.828125,
|
| 157 |
+
"completions/min_length": 0.0,
|
| 158 |
+
"completions/min_terminated_length": 215.6,
|
| 159 |
+
"epoch": 0.07199910001124986,
|
| 160 |
+
"grad_norm": 0.0017544181318953633,
|
| 161 |
+
"learning_rate": 4.5177664974619295e-06,
|
| 162 |
+
"loss": -0.0379,
|
| 163 |
+
"num_tokens": 82725680.0,
|
| 164 |
+
"reward": 1.1499913215637207,
|
| 165 |
+
"reward_std": 0.24166221618652345,
|
| 166 |
+
"rewards/accuracy_reward": 0.5868923664093018,
|
| 167 |
+
"rewards/brier_reward": 0.7504922270774841,
|
| 168 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 169 |
+
"rewards/format_reward": 0.9625868082046509,
|
| 170 |
+
"rewards/mean_confidence_reward": 0.5598831534385681,
|
| 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.034895833333333307,
|
| 180 |
+
"completions/max_length": 3889.6,
|
| 181 |
+
"completions/max_terminated_length": 3889.6,
|
| 182 |
+
"completions/mean_length": 903.557470703125,
|
| 183 |
+
"completions/mean_terminated_length": 936.7724609375,
|
| 184 |
+
"completions/min_length": 0.0,
|
| 185 |
+
"completions/min_terminated_length": 288.8,
|
| 186 |
+
"epoch": 0.08399895001312484,
|
| 187 |
+
"grad_norm": 0.0007147829746827483,
|
| 188 |
+
"learning_rate": 4.390862944162436e-06,
|
| 189 |
+
"loss": -0.034,
|
| 190 |
+
"num_tokens": 96212102.0,
|
| 191 |
+
"reward": 1.1824100971221925,
|
| 192 |
+
"reward_std": 0.2268961787223816,
|
| 193 |
+
"rewards/accuracy_reward": 0.6289930462837219,
|
| 194 |
+
"rewards/brier_reward": 0.7714917182922363,
|
| 195 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 196 |
+
"rewards/format_reward": 0.9643229246139526,
|
| 197 |
+
"rewards/mean_confidence_reward": 0.6222647666931153,
|
| 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.03116319444444444,
|
| 207 |
+
"completions/max_length": 3932.8,
|
| 208 |
+
"completions/max_terminated_length": 3932.8,
|
| 209 |
+
"completions/mean_length": 823.3291748046875,
|
| 210 |
+
"completions/mean_terminated_length": 849.9028564453125,
|
| 211 |
+
"completions/min_length": 0.0,
|
| 212 |
+
"completions/min_terminated_length": 282.8,
|
| 213 |
+
"epoch": 0.09599880001499982,
|
| 214 |
+
"grad_norm": 0.0005586285842582583,
|
| 215 |
+
"learning_rate": 4.263959390862945e-06,
|
| 216 |
+
"loss": -0.0364,
|
| 217 |
+
"num_tokens": 108816374.0,
|
| 218 |
+
"reward": 1.1980676889419555,
|
| 219 |
+
"reward_std": 0.22116016447544098,
|
| 220 |
+
"rewards/accuracy_reward": 0.6493055582046509,
|
| 221 |
+
"rewards/brier_reward": 0.7783258199691773,
|
| 222 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 223 |
+
"rewards/format_reward": 0.9684895873069763,
|
| 224 |
+
"rewards/mean_confidence_reward": 0.7160234451293945,
|
| 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.024565972222222232,
|
| 234 |
+
"completions/max_length": 3847.6,
|
| 235 |
+
"completions/max_terminated_length": 3847.6,
|
| 236 |
+
"completions/mean_length": 782.091845703125,
|
| 237 |
+
"completions/mean_terminated_length": 801.8463256835937,
|
| 238 |
+
"completions/min_length": 0.0,
|
| 239 |
+
"completions/min_terminated_length": 259.0,
|
| 240 |
+
"epoch": 0.1079986500168748,
|
| 241 |
+
"grad_norm": 0.0006557401502504945,
|
| 242 |
+
"learning_rate": 4.137055837563453e-06,
|
| 243 |
+
"loss": -0.0253,
|
| 244 |
+
"num_tokens": 120961336.0,
|
| 245 |
+
"reward": 1.200283408164978,
|
| 246 |
+
"reward_std": 0.2178070664405823,
|
| 247 |
+
"rewards/accuracy_reward": 0.6548611164093018,
|
| 248 |
+
"rewards/brier_reward": 0.7712975144386292,
|
| 249 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 250 |
+
"rewards/format_reward": 0.9743923664093017,
|
| 251 |
+
"rewards/mean_confidence_reward": 0.7877369880676269,
|
| 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.02421875,
|
| 261 |
+
"completions/max_length": 3791.8,
|
| 262 |
+
"completions/max_terminated_length": 3791.8,
|
| 263 |
+
"completions/mean_length": 786.1929809570313,
|
| 264 |
+
"completions/mean_terminated_length": 805.8355224609375,
|
| 265 |
+
"completions/min_length": 0.0,
|
| 266 |
+
"completions/min_terminated_length": 240.6,
|
| 267 |
+
"epoch": 0.11999850001874976,
|
| 268 |
+
"grad_norm": 0.0006151842535473406,
|
| 269 |
+
"learning_rate": 4.0101522842639595e-06,
|
| 270 |
+
"loss": -0.0249,
|
| 271 |
+
"num_tokens": 133115879.0,
|
| 272 |
+
"reward": 1.2045230865478516,
|
| 273 |
+
"reward_std": 0.20249704420566558,
|
| 274 |
+
"rewards/accuracy_reward": 0.6519965291023254,
|
| 275 |
+
"rewards/brier_reward": 0.7813406109809875,
|
| 276 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 277 |
+
"rewards/format_reward": 0.9756944417953491,
|
| 278 |
+
"rewards/mean_confidence_reward": 0.72891925573349,
|
| 279 |
+
"step": 50
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 0.11999850001874976,
|
| 283 |
+
"eval_completions/clipped_ratio": 0.022569444444444458,
|
| 284 |
+
"eval_completions/max_length": 2390.1666666666665,
|
| 285 |
+
"eval_completions/max_terminated_length": 2390.1666666666665,
|
| 286 |
+
"eval_completions/mean_length": 807.0597432454427,
|
| 287 |
+
"eval_completions/mean_terminated_length": 825.7537841796875,
|
| 288 |
+
"eval_completions/min_length": 77.83333333333333,
|
| 289 |
+
"eval_completions/min_terminated_length": 333.6666666666667,
|
| 290 |
+
"eval_loss": 0.0,
|
| 291 |
+
"eval_num_tokens": 133115879.0,
|
| 292 |
+
"eval_reward": 1.2035881280899048,
|
| 293 |
+
"eval_reward_std": 0.3418561766544978,
|
| 294 |
+
"eval_rewards/accuracy_reward": 0.6475694378217062,
|
| 295 |
+
"eval_rewards/brier_reward": 0.7847678065299988,
|
| 296 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 297 |
+
"eval_rewards/format_reward": 0.9748263955116272,
|
| 298 |
+
"eval_rewards/mean_confidence_reward": 0.623480906089147,
|
| 299 |
+
"eval_runtime": 325.6138,
|
| 300 |
+
"eval_samples_per_second": 3.071,
|
| 301 |
+
"eval_steps_per_second": 0.018,
|
| 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.029861111111111095,
|
| 311 |
+
"completions/max_length": 3624.8,
|
| 312 |
+
"completions/max_terminated_length": 3624.8,
|
| 313 |
+
"completions/mean_length": 839.8423828125,
|
| 314 |
+
"completions/mean_terminated_length": 866.0277465820312,
|
| 315 |
+
"completions/min_length": 0.0,
|
| 316 |
+
"completions/min_terminated_length": 262.4,
|
| 317 |
+
"epoch": 0.13199835002062474,
|
| 318 |
+
"grad_norm": 0.0006012032390572131,
|
| 319 |
+
"learning_rate": 3.883248730964467e-06,
|
| 320 |
+
"loss": -0.0267,
|
| 321 |
+
"num_tokens": 145871439.0,
|
| 322 |
+
"reward": 1.1937550544738769,
|
| 323 |
+
"reward_std": 0.18426936566829683,
|
| 324 |
+
"rewards/accuracy_reward": 0.647656238079071,
|
| 325 |
+
"rewards/brier_reward": 0.7702242016792298,
|
| 326 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 327 |
+
"rewards/format_reward": 0.9696180582046509,
|
| 328 |
+
"rewards/mean_confidence_reward": 0.5814600586891174,
|
| 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.023611111111111093,
|
| 338 |
+
"completions/max_length": 3906.2,
|
| 339 |
+
"completions/max_terminated_length": 3906.2,
|
| 340 |
+
"completions/mean_length": 821.8163940429688,
|
| 341 |
+
"completions/mean_terminated_length": 841.79453125,
|
| 342 |
+
"completions/min_length": 0.0,
|
| 343 |
+
"completions/min_terminated_length": 273.2,
|
| 344 |
+
"epoch": 0.14399820002249972,
|
| 345 |
+
"grad_norm": 0.0006839183042757213,
|
| 346 |
+
"learning_rate": 3.756345177664975e-06,
|
| 347 |
+
"loss": -0.0259,
|
| 348 |
+
"num_tokens": 158435340.0,
|
| 349 |
+
"reward": 1.1945719718933105,
|
| 350 |
+
"reward_std": 0.1913407564163208,
|
| 351 |
+
"rewards/accuracy_reward": 0.6302083373069763,
|
| 352 |
+
"rewards/brier_reward": 0.7827078938484192,
|
| 353 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 354 |
+
"rewards/format_reward": 0.9762152791023254,
|
| 355 |
+
"rewards/mean_confidence_reward": 0.619076383113861,
|
| 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.019357638888888907,
|
| 365 |
+
"completions/max_length": 3618.6,
|
| 366 |
+
"completions/max_terminated_length": 3618.6,
|
| 367 |
+
"completions/mean_length": 749.66796875,
|
| 368 |
+
"completions/mean_terminated_length": 764.5959350585938,
|
| 369 |
+
"completions/min_length": 0.0,
|
| 370 |
+
"completions/min_terminated_length": 192.4,
|
| 371 |
+
"epoch": 0.1559980500243747,
|
| 372 |
+
"grad_norm": 0.0007240342674776912,
|
| 373 |
+
"learning_rate": 3.629441624365482e-06,
|
| 374 |
+
"loss": -0.0186,
|
| 375 |
+
"num_tokens": 170165563.0,
|
| 376 |
+
"reward": 1.2224555015563965,
|
| 377 |
+
"reward_std": 0.18082822263240814,
|
| 378 |
+
"rewards/accuracy_reward": 0.6611111164093018,
|
| 379 |
+
"rewards/brier_reward": 0.8033169031143188,
|
| 380 |
+
"rewards/confidence_one_or_zero": 0.0006076388992369175,
|
| 381 |
+
"rewards/format_reward": 0.9804687619209289,
|
| 382 |
+
"rewards/mean_confidence_reward": 0.7073316097259521,
|
| 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.024392361111111115,
|
| 392 |
+
"completions/max_length": 3395.4,
|
| 393 |
+
"completions/max_terminated_length": 3395.4,
|
| 394 |
+
"completions/mean_length": 733.86416015625,
|
| 395 |
+
"completions/mean_terminated_length": 752.2443115234375,
|
| 396 |
+
"completions/min_length": 0.0,
|
| 397 |
+
"completions/min_terminated_length": 192.8,
|
| 398 |
+
"epoch": 0.16799790002624967,
|
| 399 |
+
"grad_norm": 0.0005545295425690711,
|
| 400 |
+
"learning_rate": 3.5025380710659903e-06,
|
| 401 |
+
"loss": -0.0235,
|
| 402 |
+
"num_tokens": 181697822.0,
|
| 403 |
+
"reward": 1.2054958105087281,
|
| 404 |
+
"reward_std": 0.18330176770687104,
|
| 405 |
+
"rewards/accuracy_reward": 0.6433159589767456,
|
| 406 |
+
"rewards/brier_reward": 0.7922271609306335,
|
| 407 |
+
"rewards/confidence_one_or_zero": 0.007031250232830644,
|
| 408 |
+
"rewards/format_reward": 0.9754340291023255,
|
| 409 |
+
"rewards/mean_confidence_reward": 0.7130208492279053,
|
| 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.018055555555555537,
|
| 419 |
+
"completions/max_length": 3356.2,
|
| 420 |
+
"completions/max_terminated_length": 3356.2,
|
| 421 |
+
"completions/mean_length": 770.8174438476562,
|
| 422 |
+
"completions/mean_terminated_length": 785.1328491210937,
|
| 423 |
+
"completions/min_length": 0.0,
|
| 424 |
+
"completions/min_terminated_length": 255.8,
|
| 425 |
+
"epoch": 0.17999775002812465,
|
| 426 |
+
"grad_norm": 0.00040936042205430567,
|
| 427 |
+
"learning_rate": 3.375634517766498e-06,
|
| 428 |
+
"loss": -0.0181,
|
| 429 |
+
"num_tokens": 193642535.0,
|
| 430 |
+
"reward": 1.244530153274536,
|
| 431 |
+
"reward_std": 0.1650351107120514,
|
| 432 |
+
"rewards/accuracy_reward": 0.7009548544883728,
|
| 433 |
+
"rewards/brier_reward": 0.8063218355178833,
|
| 434 |
+
"rewards/confidence_one_or_zero": 0.011805555410683155,
|
| 435 |
+
"rewards/format_reward": 0.9817708373069763,
|
| 436 |
+
"rewards/mean_confidence_reward": 0.6228342056274414,
|
| 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.01788194444444442,
|
| 446 |
+
"completions/max_length": 3750.2,
|
| 447 |
+
"completions/max_terminated_length": 3750.2,
|
| 448 |
+
"completions/mean_length": 820.3263061523437,
|
| 449 |
+
"completions/mean_terminated_length": 835.380224609375,
|
| 450 |
+
"completions/min_length": 0.0,
|
| 451 |
+
"completions/min_terminated_length": 227.0,
|
| 452 |
+
"epoch": 0.19199760002999963,
|
| 453 |
+
"grad_norm": 0.0005090378108434379,
|
| 454 |
+
"learning_rate": 3.2487309644670053e-06,
|
| 455 |
+
"loss": -0.0183,
|
| 456 |
+
"num_tokens": 206145974.0,
|
| 457 |
+
"reward": 1.2273483753204346,
|
| 458 |
+
"reward_std": 0.17248319387435912,
|
| 459 |
+
"rewards/accuracy_reward": 0.6702256798744202,
|
| 460 |
+
"rewards/brier_reward": 0.8026000380516052,
|
| 461 |
+
"rewards/confidence_one_or_zero": 0.04418402835726738,
|
| 462 |
+
"rewards/format_reward": 0.9818576455116272,
|
| 463 |
+
"rewards/mean_confidence_reward": 0.6209765553474427,
|
| 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.019357638888888862,
|
| 473 |
+
"completions/max_length": 3891.0,
|
| 474 |
+
"completions/max_terminated_length": 3891.0,
|
| 475 |
+
"completions/mean_length": 804.060595703125,
|
| 476 |
+
"completions/mean_terminated_length": 820.0193115234375,
|
| 477 |
+
"completions/min_length": 0.0,
|
| 478 |
+
"completions/min_terminated_length": 287.4,
|
| 479 |
+
"epoch": 0.2039974500318746,
|
| 480 |
+
"grad_norm": 0.0005799650680273771,
|
| 481 |
+
"learning_rate": 3.121827411167513e-06,
|
| 482 |
+
"loss": -0.0182,
|
| 483 |
+
"num_tokens": 218495952.0,
|
| 484 |
+
"reward": 1.2420600414276124,
|
| 485 |
+
"reward_std": 0.1854027807712555,
|
| 486 |
+
"rewards/accuracy_reward": 0.6829861044883728,
|
| 487 |
+
"rewards/brier_reward": 0.8210820078849792,
|
| 488 |
+
"rewards/confidence_one_or_zero": 0.1517361119389534,
|
| 489 |
+
"rewards/format_reward": 0.9800347328186035,
|
| 490 |
+
"rewards/mean_confidence_reward": 0.7053038239479065,
|
| 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.02152777777777779,
|
| 500 |
+
"completions/max_length": 3442.0,
|
| 501 |
+
"completions/max_terminated_length": 3442.0,
|
| 502 |
+
"completions/mean_length": 785.1589477539062,
|
| 503 |
+
"completions/mean_terminated_length": 802.4694091796875,
|
| 504 |
+
"completions/min_length": 0.0,
|
| 505 |
+
"completions/min_terminated_length": 251.8,
|
| 506 |
+
"epoch": 0.2159973000337496,
|
| 507 |
+
"grad_norm": 0.0006302814581431448,
|
| 508 |
+
"learning_rate": 2.9949238578680207e-06,
|
| 509 |
+
"loss": -0.0238,
|
| 510 |
+
"num_tokens": 230609655.0,
|
| 511 |
+
"reward": 1.239054799079895,
|
| 512 |
+
"reward_std": 0.1893111288547516,
|
| 513 |
+
"rewards/accuracy_reward": 0.6869791626930237,
|
| 514 |
+
"rewards/brier_reward": 0.812728750705719,
|
| 515 |
+
"rewards/confidence_one_or_zero": 0.07578125055879355,
|
| 516 |
+
"rewards/format_reward": 0.9783854126930237,
|
| 517 |
+
"rewards/mean_confidence_reward": 0.7320529341697692,
|
| 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.01640625,
|
| 527 |
+
"completions/max_length": 3389.6,
|
| 528 |
+
"completions/max_terminated_length": 3389.6,
|
| 529 |
+
"completions/mean_length": 803.64306640625,
|
| 530 |
+
"completions/mean_terminated_length": 817.1105712890625,
|
| 531 |
+
"completions/min_length": 0.0,
|
| 532 |
+
"completions/min_terminated_length": 249.6,
|
| 533 |
+
"epoch": 0.22799715003562457,
|
| 534 |
+
"grad_norm": 0.0005609573563560843,
|
| 535 |
+
"learning_rate": 2.8680203045685284e-06,
|
| 536 |
+
"loss": -0.0168,
|
| 537 |
+
"num_tokens": 242959303.0,
|
| 538 |
+
"reward": 1.235309100151062,
|
| 539 |
+
"reward_std": 0.17818428277969361,
|
| 540 |
+
"rewards/accuracy_reward": 0.6747395753860473,
|
| 541 |
+
"rewards/brier_reward": 0.812617826461792,
|
| 542 |
+
"rewards/confidence_one_or_zero": 0.003298611124046147,
|
| 543 |
+
"rewards/format_reward": 0.9832465291023255,
|
| 544 |
+
"rewards/mean_confidence_reward": 0.7121918439865113,
|
| 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.01901041666666665,
|
| 554 |
+
"completions/max_length": 3287.0,
|
| 555 |
+
"completions/max_terminated_length": 3287.0,
|
| 556 |
+
"completions/mean_length": 840.3250122070312,
|
| 557 |
+
"completions/mean_terminated_length": 856.58330078125,
|
| 558 |
+
"completions/min_length": 0.0,
|
| 559 |
+
"completions/min_terminated_length": 301.4,
|
| 560 |
+
"epoch": 0.23999700003749952,
|
| 561 |
+
"grad_norm": 0.0004377439618110657,
|
| 562 |
+
"learning_rate": 2.7411167512690357e-06,
|
| 563 |
+
"loss": -0.0176,
|
| 564 |
+
"num_tokens": 255738919.0,
|
| 565 |
+
"reward": 1.248662257194519,
|
| 566 |
+
"reward_std": 0.1747280478477478,
|
| 567 |
+
"rewards/accuracy_reward": 0.6919270873069763,
|
| 568 |
+
"rewards/brier_reward": 0.8243943214416504,
|
| 569 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 570 |
+
"rewards/format_reward": 0.9809895873069763,
|
| 571 |
+
"rewards/mean_confidence_reward": 0.6675564289093018,
|
| 572 |
+
"step": 100
|
| 573 |
+
},
|
| 574 |
+
{
|
| 575 |
+
"epoch": 0.23999700003749952,
|
| 576 |
+
"eval_completions/clipped_ratio": 0.014756944444444456,
|
| 577 |
+
"eval_completions/max_length": 2268.0,
|
| 578 |
+
"eval_completions/max_terminated_length": 2268.0,
|
| 579 |
+
"eval_completions/mean_length": 831.62744140625,
|
| 580 |
+
"eval_completions/mean_terminated_length": 844.1648966471354,
|
| 581 |
+
"eval_completions/min_length": 63.833333333333336,
|
| 582 |
+
"eval_completions/min_terminated_length": 332.5,
|
| 583 |
+
"eval_loss": 0.0,
|
| 584 |
+
"eval_num_tokens": 255738919.0,
|
| 585 |
+
"eval_reward": 1.2433301011721294,
|
| 586 |
+
"eval_reward_std": 0.3282207002242406,
|
| 587 |
+
"eval_rewards/accuracy_reward": 0.6788194378217062,
|
| 588 |
+
"eval_rewards/brier_reward": 0.8243207434813181,
|
| 589 |
+
"eval_rewards/confidence_one_or_zero": 0.0,
|
| 590 |
+
"eval_rewards/format_reward": 0.9835069477558136,
|
| 591 |
+
"eval_rewards/mean_confidence_reward": 0.649522582689921,
|
| 592 |
+
"eval_runtime": 322.2356,
|
| 593 |
+
"eval_samples_per_second": 3.103,
|
| 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.01571180555555558,
|
| 604 |
+
"completions/max_length": 3524.2,
|
| 605 |
+
"completions/max_terminated_length": 3524.2,
|
| 606 |
+
"completions/mean_length": 841.7855102539063,
|
| 607 |
+
"completions/mean_terminated_length": 855.2962036132812,
|
| 608 |
+
"completions/min_length": 0.0,
|
| 609 |
+
"completions/min_terminated_length": 271.2,
|
| 610 |
+
"epoch": 0.2519968500393745,
|
| 611 |
+
"grad_norm": 0.0004888804396614432,
|
| 612 |
+
"learning_rate": 2.6142131979695434e-06,
|
| 613 |
+
"loss": -0.0165,
|
| 614 |
+
"num_tokens": 268513152.0,
|
| 615 |
+
"reward": 1.240246868133545,
|
| 616 |
+
"reward_std": 0.1666222870349884,
|
| 617 |
+
"rewards/accuracy_reward": 0.678819453716278,
|
| 618 |
+
"rewards/brier_reward": 0.817373263835907,
|
| 619 |
+
"rewards/confidence_one_or_zero": 0.0003472222248092294,
|
| 620 |
+
"rewards/format_reward": 0.9842881917953491,
|
| 621 |
+
"rewards/mean_confidence_reward": 0.6420749306678772,
|
| 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.011371527777777812,
|
| 631 |
+
"completions/max_length": 3665.8,
|
| 632 |
+
"completions/max_terminated_length": 3665.8,
|
| 633 |
+
"completions/mean_length": 875.26884765625,
|
| 634 |
+
"completions/mean_terminated_length": 885.443701171875,
|
| 635 |
+
"completions/min_length": 0.0,
|
| 636 |
+
"completions/min_terminated_length": 288.8,
|
| 637 |
+
"epoch": 0.2639967000412495,
|
| 638 |
+
"grad_norm": 0.00047984463162720203,
|
| 639 |
+
"learning_rate": 2.487309644670051e-06,
|
| 640 |
+
"loss": -0.0108,
|
| 641 |
+
"num_tokens": 281704697.0,
|
| 642 |
+
"reward": 1.263697338104248,
|
| 643 |
+
"reward_std": 0.14904940724372864,
|
| 644 |
+
"rewards/accuracy_reward": 0.7070312619209289,
|
| 645 |
+
"rewards/brier_reward": 0.831721568107605,
|
| 646 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 647 |
+
"rewards/format_reward": 0.9886284708976746,
|
| 648 |
+
"rewards/mean_confidence_reward": 0.6679644227027893,
|
| 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.012413194444444442,
|
| 658 |
+
"completions/max_length": 3634.6,
|
| 659 |
+
"completions/max_terminated_length": 3634.6,
|
| 660 |
+
"completions/mean_length": 873.7130249023437,
|
| 661 |
+
"completions/mean_terminated_length": 884.7570068359375,
|
| 662 |
+
"completions/min_length": 0.0,
|
| 663 |
+
"completions/min_terminated_length": 301.0,
|
| 664 |
+
"epoch": 0.27599655004312446,
|
| 665 |
+
"grad_norm": 0.00046908314106985927,
|
| 666 |
+
"learning_rate": 2.3604060913705588e-06,
|
| 667 |
+
"loss": -0.0118,
|
| 668 |
+
"num_tokens": 294849071.0,
|
| 669 |
+
"reward": 1.2401302576065063,
|
| 670 |
+
"reward_std": 0.16665265560150147,
|
| 671 |
+
"rewards/accuracy_reward": 0.6732638955116272,
|
| 672 |
+
"rewards/brier_reward": 0.8193958520889282,
|
| 673 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 674 |
+
"rewards/format_reward": 0.9875868082046508,
|
| 675 |
+
"rewards/mean_confidence_reward": 0.6962688088417053,
|
| 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.008593750000000022,
|
| 685 |
+
"completions/max_length": 3546.4,
|
| 686 |
+
"completions/max_terminated_length": 3546.4,
|
| 687 |
+
"completions/mean_length": 859.1952270507812,
|
| 688 |
+
"completions/mean_terminated_length": 866.6294067382812,
|
| 689 |
+
"completions/min_length": 0.0,
|
| 690 |
+
"completions/min_terminated_length": 295.2,
|
| 691 |
+
"epoch": 0.28799640004499943,
|
| 692 |
+
"grad_norm": 0.00041610386688262224,
|
| 693 |
+
"learning_rate": 2.233502538071066e-06,
|
| 694 |
+
"loss": -0.0088,
|
| 695 |
+
"num_tokens": 307828856.0,
|
| 696 |
+
"reward": 1.2503829956054688,
|
| 697 |
+
"reward_std": 0.16349477469921112,
|
| 698 |
+
"rewards/accuracy_reward": 0.6833333373069763,
|
| 699 |
+
"rewards/brier_reward": 0.8260988116264343,
|
| 700 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 701 |
+
"rewards/format_reward": 0.9913194417953491,
|
| 702 |
+
"rewards/mean_confidence_reward": 0.7186678171157836,
|
| 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.010243055555555537,
|
| 712 |
+
"completions/max_length": 3428.6,
|
| 713 |
+
"completions/max_terminated_length": 3428.6,
|
| 714 |
+
"completions/mean_length": 866.3007080078125,
|
| 715 |
+
"completions/mean_terminated_length": 875.3722900390625,
|
| 716 |
+
"completions/min_length": 0.0,
|
| 717 |
+
"completions/min_terminated_length": 299.4,
|
| 718 |
+
"epoch": 0.2999962500468744,
|
| 719 |
+
"grad_norm": 0.0005037845694459975,
|
| 720 |
+
"learning_rate": 2.1065989847715737e-06,
|
| 721 |
+
"loss": -0.0094,
|
| 722 |
+
"num_tokens": 320926304.0,
|
| 723 |
+
"reward": 1.2674844026565553,
|
| 724 |
+
"reward_std": 0.16409001648426055,
|
| 725 |
+
"rewards/accuracy_reward": 0.7037326455116272,
|
| 726 |
+
"rewards/brier_reward": 0.8417252659797668,
|
| 727 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 728 |
+
"rewards/format_reward": 0.9894965410232544,
|
| 729 |
+
"rewards/mean_confidence_reward": 0.7170399188995361,
|
| 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.013107638888888907,
|
| 739 |
+
"completions/max_length": 3691.0,
|
| 740 |
+
"completions/max_terminated_length": 3691.0,
|
| 741 |
+
"completions/mean_length": 922.182470703125,
|
| 742 |
+
"completions/mean_terminated_length": 934.426708984375,
|
| 743 |
+
"completions/min_length": 0.0,
|
| 744 |
+
"completions/min_terminated_length": 310.6,
|
| 745 |
+
"epoch": 0.3119961000487494,
|
| 746 |
+
"grad_norm": 0.0004879495536442846,
|
| 747 |
+
"learning_rate": 1.9796954314720814e-06,
|
| 748 |
+
"loss": -0.0133,
|
| 749 |
+
"num_tokens": 334674646.0,
|
| 750 |
+
"reward": 1.2395371913909912,
|
| 751 |
+
"reward_std": 0.16301891803741456,
|
| 752 |
+
"rewards/accuracy_reward": 0.6685763955116272,
|
| 753 |
+
"rewards/brier_reward": 0.8237658858299255,
|
| 754 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 755 |
+
"rewards/format_reward": 0.98671875,
|
| 756 |
+
"rewards/mean_confidence_reward": 0.6686067819595337,
|
| 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.013888888888888862,
|
| 766 |
+
"completions/max_length": 3607.0,
|
| 767 |
+
"completions/max_terminated_length": 3607.0,
|
| 768 |
+
"completions/mean_length": 936.2807250976563,
|
| 769 |
+
"completions/mean_terminated_length": 949.4107055664062,
|
| 770 |
+
"completions/min_length": 0.0,
|
| 771 |
+
"completions/min_terminated_length": 306.4,
|
| 772 |
+
"epoch": 0.32399595005062437,
|
| 773 |
+
"grad_norm": 0.0004939971258863807,
|
| 774 |
+
"learning_rate": 1.852791878172589e-06,
|
| 775 |
+
"loss": -0.0143,
|
| 776 |
+
"num_tokens": 348553624.0,
|
| 777 |
+
"reward": 1.2485416412353516,
|
| 778 |
+
"reward_std": 0.16000640988349915,
|
| 779 |
+
"rewards/accuracy_reward": 0.68359375,
|
| 780 |
+
"rewards/brier_reward": 0.8275392770767211,
|
| 781 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 782 |
+
"rewards/format_reward": 0.985937488079071,
|
| 783 |
+
"rewards/mean_confidence_reward": 0.6367925047874451,
|
| 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.013715277777777767,
|
| 793 |
+
"completions/max_length": 3831.0,
|
| 794 |
+
"completions/max_terminated_length": 3831.0,
|
| 795 |
+
"completions/mean_length": 958.5888061523438,
|
| 796 |
+
"completions/mean_terminated_length": 971.8986938476562,
|
| 797 |
+
"completions/min_length": 0.0,
|
| 798 |
+
"completions/min_terminated_length": 361.8,
|
| 799 |
+
"epoch": 0.33599580005249935,
|
| 800 |
+
"grad_norm": 0.000400395569158718,
|
| 801 |
+
"learning_rate": 1.7258883248730964e-06,
|
| 802 |
+
"loss": -0.014,
|
| 803 |
+
"num_tokens": 362700791.0,
|
| 804 |
+
"reward": 1.2510334968566894,
|
| 805 |
+
"reward_std": 0.15658156871795653,
|
| 806 |
+
"rewards/accuracy_reward": 0.6869791746139526,
|
| 807 |
+
"rewards/brier_reward": 0.8289637804031372,
|
| 808 |
+
"rewards/confidence_one_or_zero": 0.000260416668606922,
|
| 809 |
+
"rewards/format_reward": 0.9861111164093017,
|
| 810 |
+
"rewards/mean_confidence_reward": 0.6465494871139527,
|
| 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.010763888888888906,
|
| 820 |
+
"completions/max_length": 3563.0,
|
| 821 |
+
"completions/max_terminated_length": 3563.0,
|
| 822 |
+
"completions/mean_length": 965.1240600585937,
|
| 823 |
+
"completions/mean_terminated_length": 975.6915283203125,
|
| 824 |
+
"completions/min_length": 0.0,
|
| 825 |
+
"completions/min_terminated_length": 363.2,
|
| 826 |
+
"epoch": 0.34799565005437433,
|
| 827 |
+
"grad_norm": 0.00037705147406086326,
|
| 828 |
+
"learning_rate": 1.5989847715736043e-06,
|
| 829 |
+
"loss": -0.0103,
|
| 830 |
+
"num_tokens": 376883628.0,
|
| 831 |
+
"reward": 1.277334499359131,
|
| 832 |
+
"reward_std": 0.1482344537973404,
|
| 833 |
+
"rewards/accuracy_reward": 0.7192708253860474,
|
| 834 |
+
"rewards/brier_reward": 0.8463218331336975,
|
| 835 |
+
"rewards/confidence_one_or_zero": 0.0001736111124046147,
|
| 836 |
+
"rewards/format_reward": 0.9890625,
|
| 837 |
+
"rewards/mean_confidence_reward": 0.6897005200386047,
|
| 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.011458333333333326,
|
| 847 |
+
"completions/max_length": 3604.0,
|
| 848 |
+
"completions/max_terminated_length": 3604.0,
|
| 849 |
+
"completions/mean_length": 1037.48076171875,
|
| 850 |
+
"completions/mean_terminated_length": 1049.4971313476562,
|
| 851 |
+
"completions/min_length": 0.0,
|
| 852 |
+
"completions/min_terminated_length": 386.6,
|
| 853 |
+
"epoch": 0.3599955000562493,
|
| 854 |
+
"grad_norm": 0.00044691620860248804,
|
| 855 |
+
"learning_rate": 1.4720812182741118e-06,
|
| 856 |
+
"loss": -0.0112,
|
| 857 |
+
"num_tokens": 391945742.0,
|
| 858 |
+
"reward": 1.265284013748169,
|
| 859 |
+
"reward_std": 0.16107824742794036,
|
| 860 |
+
"rewards/accuracy_reward": 0.7019097208976746,
|
| 861 |
+
"rewards/brier_reward": 0.8401894569396973,
|
| 862 |
+
"rewards/confidence_one_or_zero": 0.0,
|
| 863 |
+
"rewards/format_reward": 0.9884548783302307,
|
| 864 |
+
"rewards/mean_confidence_reward": 0.7001345157623291,
|
| 865 |
+
"step": 150
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.3599955000562493,
|
| 869 |
+
"eval_completions/clipped_ratio": 0.018923611111111127,
|
| 870 |
+
"eval_completions/max_length": 2578.1666666666665,
|
| 871 |
+
"eval_completions/max_terminated_length": 2578.1666666666665,
|
| 872 |
+
"eval_completions/mean_length": 1002.6307474772135,
|
| 873 |
+
"eval_completions/mean_terminated_length": 1022.0964050292969,
|
| 874 |
+
"eval_completions/min_length": 0.0,
|
| 875 |
+
"eval_completions/min_terminated_length": 426.5,
|
| 876 |
+
"eval_loss": 0.0,
|
| 877 |
+
"eval_num_tokens": 391945742.0,
|
| 878 |
+
"eval_reward": 1.2544946670532227,
|
| 879 |
+
"eval_reward_std": 0.3295811116695404,
|
| 880 |
+
"eval_rewards/accuracy_reward": 0.6901041766007742,
|
| 881 |
+
"eval_rewards/brier_reward": 0.8353646099567413,
|
| 882 |
+
"eval_rewards/confidence_one_or_zero": 0.0008680555814256271,
|
| 883 |
+
"eval_rewards/format_reward": 0.9835069477558136,
|
| 884 |
+
"eval_rewards/mean_confidence_reward": 0.6782117982705435,
|
| 885 |
+
"eval_runtime": 329.0215,
|
| 886 |
+
"eval_samples_per_second": 3.039,
|
| 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.018489583333333302,
|
| 897 |
+
"completions/max_length": 3506.6,
|
| 898 |
+
"completions/max_terminated_length": 3506.6,
|
| 899 |
+
"completions/mean_length": 990.0326416015625,
|
| 900 |
+
"completions/mean_terminated_length": 1008.8268432617188,
|
| 901 |
+
"completions/min_length": 0.0,
|
| 902 |
+
"completions/min_terminated_length": 392.2,
|
| 903 |
+
"epoch": 0.3719953500581243,
|
| 904 |
+
"grad_norm": 0.0004651858762372285,
|
| 905 |
+
"learning_rate": 1.3451776649746193e-06,
|
| 906 |
+
"loss": -0.0192,
|
| 907 |
+
"num_tokens": 406458630.0,
|
| 908 |
+
"reward": 1.2769456386566163,
|
| 909 |
+
"reward_std": 0.17086925506591796,
|
| 910 |
+
"rewards/accuracy_reward": 0.7310763835906983,
|
| 911 |
+
"rewards/brier_reward": 0.8413774013519287,
|
| 912 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 913 |
+
"rewards/format_reward": 0.9814236044883728,
|
| 914 |
+
"rewards/mean_confidence_reward": 0.690551221370697,
|
| 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.016666666666666673,
|
| 924 |
+
"completions/max_length": 3474.8,
|
| 925 |
+
"completions/max_terminated_length": 3474.8,
|
| 926 |
+
"completions/mean_length": 1012.5202270507813,
|
| 927 |
+
"completions/mean_terminated_length": 1029.66376953125,
|
| 928 |
+
"completions/min_length": 0.0,
|
| 929 |
+
"completions/min_terminated_length": 388.0,
|
| 930 |
+
"epoch": 0.38399520005999926,
|
| 931 |
+
"grad_norm": 0.0003789855109062046,
|
| 932 |
+
"learning_rate": 1.218274111675127e-06,
|
| 933 |
+
"loss": -0.0163,
|
| 934 |
+
"num_tokens": 421210159.0,
|
| 935 |
+
"reward": 1.2442054748535156,
|
| 936 |
+
"reward_std": 0.1634654939174652,
|
| 937 |
+
"rewards/accuracy_reward": 0.6777777791023254,
|
| 938 |
+
"rewards/brier_reward": 0.8272862553596496,
|
| 939 |
+
"rewards/confidence_one_or_zero": 0.0001736111124046147,
|
| 940 |
+
"rewards/format_reward": 0.9833333373069764,
|
| 941 |
+
"rewards/mean_confidence_reward": 0.6832248091697692,
|
| 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.017013888888888884,
|
| 951 |
+
"completions/max_length": 3455.6,
|
| 952 |
+
"completions/max_terminated_length": 3455.6,
|
| 953 |
+
"completions/mean_length": 1036.8546020507813,
|
| 954 |
+
"completions/mean_terminated_length": 1054.9498901367188,
|
| 955 |
+
"completions/min_length": 0.0,
|
| 956 |
+
"completions/min_terminated_length": 389.8,
|
| 957 |
+
"epoch": 0.39599505006187424,
|
| 958 |
+
"grad_norm": 0.0010382012696936727,
|
| 959 |
+
"learning_rate": 1.0913705583756345e-06,
|
| 960 |
+
"loss": -0.0158,
|
| 961 |
+
"num_tokens": 436293796.0,
|
| 962 |
+
"reward": 1.2380517244338989,
|
| 963 |
+
"reward_std": 0.15648340582847595,
|
| 964 |
+
"rewards/accuracy_reward": 0.6625868082046509,
|
| 965 |
+
"rewards/brier_reward": 0.8305176854133606,
|
| 966 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 967 |
+
"rewards/format_reward": 0.9829861164093018,
|
| 968 |
+
"rewards/mean_confidence_reward": 0.6423246383666992,
|
| 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.013107638888888861,
|
| 978 |
+
"completions/max_length": 3402.2,
|
| 979 |
+
"completions/max_terminated_length": 3402.2,
|
| 980 |
+
"completions/mean_length": 995.6934814453125,
|
| 981 |
+
"completions/mean_terminated_length": 1008.8341430664062,
|
| 982 |
+
"completions/min_length": 0.0,
|
| 983 |
+
"completions/min_terminated_length": 362.2,
|
| 984 |
+
"epoch": 0.4079949000637492,
|
| 985 |
+
"grad_norm": 0.0004276257532183081,
|
| 986 |
+
"learning_rate": 9.644670050761422e-07,
|
| 987 |
+
"loss": -0.0126,
|
| 988 |
+
"num_tokens": 450853369.0,
|
| 989 |
+
"reward": 1.2728031158447266,
|
| 990 |
+
"reward_std": 0.15210382044315338,
|
| 991 |
+
"rewards/accuracy_reward": 0.7168402671813965,
|
| 992 |
+
"rewards/brier_reward": 0.8419468402862549,
|
| 993 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 994 |
+
"rewards/format_reward": 0.986805546283722,
|
| 995 |
+
"rewards/mean_confidence_reward": 0.6786675453186035,
|
| 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.01284722222222221,
|
| 1005 |
+
"completions/max_length": 3748.0,
|
| 1006 |
+
"completions/max_terminated_length": 3748.0,
|
| 1007 |
+
"completions/mean_length": 1020.3355224609375,
|
| 1008 |
+
"completions/mean_terminated_length": 1033.6660888671875,
|
| 1009 |
+
"completions/min_length": 0.0,
|
| 1010 |
+
"completions/min_terminated_length": 369.6,
|
| 1011 |
+
"epoch": 0.4199947500656242,
|
| 1012 |
+
"grad_norm": 0.0005423967377282679,
|
| 1013 |
+
"learning_rate": 8.375634517766498e-07,
|
| 1014 |
+
"loss": -0.0116,
|
| 1015 |
+
"num_tokens": 465715602.0,
|
| 1016 |
+
"reward": 1.2671451807022094,
|
| 1017 |
+
"reward_std": 0.16106505692005157,
|
| 1018 |
+
"rewards/accuracy_reward": 0.7060763835906982,
|
| 1019 |
+
"rewards/brier_reward": 0.8413081169128418,
|
| 1020 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 1021 |
+
"rewards/format_reward": 0.9868923544883728,
|
| 1022 |
+
"rewards/mean_confidence_reward": 0.6738255381584167,
|
| 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.015451388888888907,
|
| 1032 |
+
"completions/max_length": 3535.4,
|
| 1033 |
+
"completions/max_terminated_length": 3535.4,
|
| 1034 |
+
"completions/mean_length": 983.2767578125,
|
| 1035 |
+
"completions/mean_terminated_length": 998.7015869140625,
|
| 1036 |
+
"completions/min_length": 0.0,
|
| 1037 |
+
"completions/min_terminated_length": 373.0,
|
| 1038 |
+
"epoch": 0.4319946000674992,
|
| 1039 |
+
"grad_norm": 0.0004915730678476393,
|
| 1040 |
+
"learning_rate": 7.106598984771574e-07,
|
| 1041 |
+
"loss": -0.0148,
|
| 1042 |
+
"num_tokens": 480142918.0,
|
| 1043 |
+
"reward": 1.2670525074005128,
|
| 1044 |
+
"reward_std": 0.15874242782592773,
|
| 1045 |
+
"rewards/accuracy_reward": 0.7168402791023254,
|
| 1046 |
+
"rewards/brier_reward": 0.8327020764350891,
|
| 1047 |
+
"rewards/confidence_one_or_zero": 0.000260416668606922,
|
| 1048 |
+
"rewards/format_reward": 0.9845486044883728,
|
| 1049 |
+
"rewards/mean_confidence_reward": 0.7012196183204651,
|
| 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.012586805555555558,
|
| 1059 |
+
"completions/max_length": 3636.2,
|
| 1060 |
+
"completions/max_terminated_length": 3636.2,
|
| 1061 |
+
"completions/mean_length": 998.0439208984375,
|
| 1062 |
+
"completions/mean_terminated_length": 1010.7783203125,
|
| 1063 |
+
"completions/min_length": 0.0,
|
| 1064 |
+
"completions/min_terminated_length": 346.6,
|
| 1065 |
+
"epoch": 0.44399445006937416,
|
| 1066 |
+
"grad_norm": 0.0005585678154602647,
|
| 1067 |
+
"learning_rate": 5.83756345177665e-07,
|
| 1068 |
+
"loss": -0.012,
|
| 1069 |
+
"num_tokens": 494730432.0,
|
| 1070 |
+
"reward": 1.2518677711486816,
|
| 1071 |
+
"reward_std": 0.16244393587112427,
|
| 1072 |
+
"rewards/accuracy_reward": 0.6817708253860474,
|
| 1073 |
+
"rewards/brier_reward": 0.8345379948616027,
|
| 1074 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 1075 |
+
"rewards/format_reward": 0.987413203716278,
|
| 1076 |
+
"rewards/mean_confidence_reward": 0.6762803792953491,
|
| 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.010156249999999978,
|
| 1086 |
+
"completions/max_length": 3530.2,
|
| 1087 |
+
"completions/max_terminated_length": 3530.2,
|
| 1088 |
+
"completions/mean_length": 979.3949829101563,
|
| 1089 |
+
"completions/mean_terminated_length": 989.3971069335937,
|
| 1090 |
+
"completions/min_length": 0.0,
|
| 1091 |
+
"completions/min_terminated_length": 395.0,
|
| 1092 |
+
"epoch": 0.45599430007124914,
|
| 1093 |
+
"grad_norm": 0.0004858736938331276,
|
| 1094 |
+
"learning_rate": 4.568527918781726e-07,
|
| 1095 |
+
"loss": -0.0101,
|
| 1096 |
+
"num_tokens": 509096006.0,
|
| 1097 |
+
"reward": 1.276425051689148,
|
| 1098 |
+
"reward_std": 0.152652707695961,
|
| 1099 |
+
"rewards/accuracy_reward": 0.7210069417953491,
|
| 1100 |
+
"rewards/brier_reward": 0.8419852733612061,
|
| 1101 |
+
"rewards/confidence_one_or_zero": 0.0001736111124046147,
|
| 1102 |
+
"rewards/format_reward": 0.989843738079071,
|
| 1103 |
+
"rewards/mean_confidence_reward": 0.7043576240539551,
|
| 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.012934027777777768,
|
| 1113 |
+
"completions/max_length": 3613.8,
|
| 1114 |
+
"completions/max_terminated_length": 3613.8,
|
| 1115 |
+
"completions/mean_length": 1004.6217895507813,
|
| 1116 |
+
"completions/mean_terminated_length": 1017.9731323242188,
|
| 1117 |
+
"completions/min_length": 0.0,
|
| 1118 |
+
"completions/min_terminated_length": 351.8,
|
| 1119 |
+
"epoch": 0.46799415007312406,
|
| 1120 |
+
"grad_norm": 0.00045332699664868414,
|
| 1121 |
+
"learning_rate": 3.2994923857868026e-07,
|
| 1122 |
+
"loss": -0.0123,
|
| 1123 |
+
"num_tokens": 523750113.0,
|
| 1124 |
+
"reward": 1.2433192253112793,
|
| 1125 |
+
"reward_std": 0.16497401297092437,
|
| 1126 |
+
"rewards/accuracy_reward": 0.6746527791023255,
|
| 1127 |
+
"rewards/brier_reward": 0.8250796437263489,
|
| 1128 |
+
"rewards/confidence_one_or_zero": 0.000260416668606922,
|
| 1129 |
+
"rewards/format_reward": 0.9868923783302307,
|
| 1130 |
+
"rewards/mean_confidence_reward": 0.6832942724227905,
|
| 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.010503472222222232,
|
| 1140 |
+
"completions/max_length": 3605.0,
|
| 1141 |
+
"completions/max_terminated_length": 3605.0,
|
| 1142 |
+
"completions/mean_length": 991.7037475585937,
|
| 1143 |
+
"completions/mean_terminated_length": 1002.2833374023437,
|
| 1144 |
+
"completions/min_length": 0.0,
|
| 1145 |
+
"completions/min_terminated_length": 385.8,
|
| 1146 |
+
"epoch": 0.47999400007499904,
|
| 1147 |
+
"grad_norm": 0.000445247016614303,
|
| 1148 |
+
"learning_rate": 2.0304568527918783e-07,
|
| 1149 |
+
"loss": -0.01,
|
| 1150 |
+
"num_tokens": 538242348.0,
|
| 1151 |
+
"reward": 1.2666230201721191,
|
| 1152 |
+
"reward_std": 0.1489817589521408,
|
| 1153 |
+
"rewards/accuracy_reward": 0.7033854246139526,
|
| 1154 |
+
"rewards/brier_reward": 0.840523874759674,
|
| 1155 |
+
"rewards/confidence_one_or_zero": 0.0001736111124046147,
|
| 1156 |
+
"rewards/format_reward": 0.9893229126930236,
|
| 1157 |
+
"rewards/mean_confidence_reward": 0.6932456612586975,
|
| 1158 |
+
"step": 200
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"epoch": 0.47999400007499904,
|
| 1162 |
+
"eval_completions/clipped_ratio": 0.013020833333333334,
|
| 1163 |
+
"eval_completions/max_length": 2447.0,
|
| 1164 |
+
"eval_completions/max_terminated_length": 2447.0,
|
| 1165 |
+
"eval_completions/mean_length": 982.8340454101562,
|
| 1166 |
+
"eval_completions/mean_terminated_length": 995.8915710449219,
|
| 1167 |
+
"eval_completions/min_length": 85.33333333333333,
|
| 1168 |
+
"eval_completions/min_terminated_length": 435.5,
|
| 1169 |
+
"eval_loss": 0.0,
|
| 1170 |
+
"eval_num_tokens": 538242348.0,
|
| 1171 |
+
"eval_reward": 1.2601836721102397,
|
| 1172 |
+
"eval_reward_std": 0.32464847962061566,
|
| 1173 |
+
"eval_rewards/accuracy_reward": 0.7057291666666666,
|
| 1174 |
+
"eval_rewards/brier_reward": 0.829381505648295,
|
| 1175 |
+
"eval_rewards/confidence_one_or_zero": 0.0008680555814256271,
|
| 1176 |
+
"eval_rewards/format_reward": 0.9852430522441864,
|
| 1177 |
+
"eval_rewards/mean_confidence_reward": 0.6809461911519369,
|
| 1178 |
+
"eval_runtime": 325.5733,
|
| 1179 |
+
"eval_samples_per_second": 3.072,
|
| 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.01371527777777779,
|
| 1190 |
+
"completions/max_length": 3609.8,
|
| 1191 |
+
"completions/max_terminated_length": 3609.8,
|
| 1192 |
+
"completions/mean_length": 1008.6137329101563,
|
| 1193 |
+
"completions/mean_terminated_length": 1022.6266235351562,
|
| 1194 |
+
"completions/min_length": 0.0,
|
| 1195 |
+
"completions/min_terminated_length": 371.6,
|
| 1196 |
+
"epoch": 0.491993850076874,
|
| 1197 |
+
"grad_norm": 0.0003949266974814236,
|
| 1198 |
+
"learning_rate": 7.614213197969544e-08,
|
| 1199 |
+
"loss": -0.0132,
|
| 1200 |
+
"num_tokens": 552927530.0,
|
| 1201 |
+
"reward": 1.291322445869446,
|
| 1202 |
+
"reward_std": 0.1527684062719345,
|
| 1203 |
+
"rewards/accuracy_reward": 0.7461805582046509,
|
| 1204 |
+
"rewards/brier_reward": 0.8501658320426941,
|
| 1205 |
+
"rewards/confidence_one_or_zero": 8.680555620230735e-05,
|
| 1206 |
+
"rewards/format_reward": 0.9862847328186035,
|
| 1207 |
+
"rewards/mean_confidence_reward": 0.6899566054344177,
|
| 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.008101851851851824,
|
| 1217 |
+
"completions/max_length": 3854.6666666666665,
|
| 1218 |
+
"completions/max_terminated_length": 3854.6666666666665,
|
| 1219 |
+
"completions/mean_length": 1010.2601725260416,
|
| 1220 |
+
"completions/mean_terminated_length": 1018.6278889973959,
|
| 1221 |
+
"completions/min_length": 0.0,
|
| 1222 |
+
"completions/min_terminated_length": 327.3333333333333,
|
| 1223 |
+
"epoch": 0.49919376007799904,
|
| 1224 |
+
"num_tokens": 561776496.0,
|
| 1225 |
+
"reward": 1.2661747137705486,
|
| 1226 |
+
"reward_std": 0.1512370283404986,
|
| 1227 |
+
"rewards/accuracy_reward": 0.7044270833333334,
|
| 1228 |
+
"rewards/brier_reward": 0.8360105156898499,
|
| 1229 |
+
"rewards/confidence_one_or_zero": 0.00028935185400769114,
|
| 1230 |
+
"rewards/format_reward": 0.9918981393178304,
|
| 1231 |
+
"rewards/mean_confidence_reward": 0.6803168257077535,
|
| 1232 |
+
"step": 208,
|
| 1233 |
+
"total_flos": 0.0,
|
| 1234 |
+
"train_loss": -0.019072025002410207,
|
| 1235 |
+
"train_runtime": 90469.3907,
|
| 1236 |
+
"train_samples_per_second": 0.166,
|
| 1237 |
+
"train_steps_per_second": 0.002
|
| 1238 |
+
}
|
| 1239 |
+
],
|
| 1240 |
+
"logging_steps": 5,
|
| 1241 |
+
"max_steps": 208,
|
| 1242 |
+
"num_input_tokens_seen": 561776496,
|
| 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:c3bb8c95c0097eaf91410d97aef4eee8b11c27a596b073048728e5fcd6d667d1
|
| 3 |
+
size 8312
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|