End of training
Browse files- .gitattributes +1 -0
- README.md +72 -0
- adapter_config.json +39 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- all_results.json +8 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +208 -0
- train_results.json +8 -0
- trainer_state.json +993 -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,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Gensyn/Qwen2.5-1.5B-Instruct
|
3 |
+
library_name: transformers
|
4 |
+
model_name: Qwen2.5-1.5B-Instruct-Gensyn-Swarm-invisible_domestic_impala
|
5 |
+
tags:
|
6 |
+
- generated_from_trainer
|
7 |
+
- rl-swarm
|
8 |
+
- grpo
|
9 |
+
- gensyn
|
10 |
+
- I am invisible domestic impala
|
11 |
+
- unsloth
|
12 |
+
- trl
|
13 |
+
licence: license
|
14 |
+
---
|
15 |
+
|
16 |
+
# Model Card for Qwen2.5-1.5B-Instruct-Gensyn-Swarm-invisible_domestic_impala
|
17 |
+
|
18 |
+
This model is a fine-tuned version of [Gensyn/Qwen2.5-1.5B-Instruct](https://huggingface.co/Gensyn/Qwen2.5-1.5B-Instruct).
|
19 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
20 |
+
|
21 |
+
## Quick start
|
22 |
+
|
23 |
+
```python
|
24 |
+
from transformers import pipeline
|
25 |
+
|
26 |
+
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?"
|
27 |
+
generator = pipeline("text-generation", model="itufilum/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-invisible_domestic_impala", device="cuda")
|
28 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
29 |
+
print(output["generated_text"])
|
30 |
+
```
|
31 |
+
|
32 |
+
## Training procedure
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
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).
|
38 |
+
|
39 |
+
### Framework versions
|
40 |
+
|
41 |
+
- TRL: 0.15.2
|
42 |
+
- Transformers: 4.51.3
|
43 |
+
- Pytorch: 2.5.1
|
44 |
+
- Datasets: 3.6.0
|
45 |
+
- Tokenizers: 0.21.1
|
46 |
+
|
47 |
+
## Citations
|
48 |
+
|
49 |
+
Cite GRPO as:
|
50 |
+
|
51 |
+
```bibtex
|
52 |
+
@article{zhihong2024deepseekmath,
|
53 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
54 |
+
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},
|
55 |
+
year = 2024,
|
56 |
+
eprint = {arXiv:2402.03300},
|
57 |
+
}
|
58 |
+
|
59 |
+
```
|
60 |
+
|
61 |
+
Cite TRL as:
|
62 |
+
|
63 |
+
```bibtex
|
64 |
+
@misc{vonwerra2022trl,
|
65 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
66 |
+
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},
|
67 |
+
year = 2020,
|
68 |
+
journal = {GitHub repository},
|
69 |
+
publisher = {GitHub},
|
70 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
71 |
+
}
|
72 |
+
```
|
adapter_config.json
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "Gensyn/Qwen2.5-1.5B-Instruct",
|
5 |
+
"bias": "none",
|
6 |
+
"corda_config": null,
|
7 |
+
"eva_config": null,
|
8 |
+
"exclude_modules": null,
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 16,
|
17 |
+
"lora_bias": false,
|
18 |
+
"lora_dropout": 0,
|
19 |
+
"megatron_config": null,
|
20 |
+
"megatron_core": "megatron.core",
|
21 |
+
"modules_to_save": null,
|
22 |
+
"peft_type": "LORA",
|
23 |
+
"r": 16,
|
24 |
+
"rank_pattern": {},
|
25 |
+
"revision": null,
|
26 |
+
"target_modules": [
|
27 |
+
"v_proj",
|
28 |
+
"q_proj",
|
29 |
+
"o_proj",
|
30 |
+
"down_proj",
|
31 |
+
"gate_proj",
|
32 |
+
"k_proj",
|
33 |
+
"up_proj"
|
34 |
+
],
|
35 |
+
"task_type": "CAUSAL_LM",
|
36 |
+
"trainable_token_indices": null,
|
37 |
+
"use_dora": false,
|
38 |
+
"use_rslora": false
|
39 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3f5da1c07c97beeb9b16cf1ca9d1e7213b896f2c4eaf53f529ace2d1e4e58fc0
|
3 |
+
size 73911112
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
all_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"total_flos": 0.0,
|
3 |
+
"train_loss": 1.1221799382710174e-06,
|
4 |
+
"train_runtime": 1585.3495,
|
5 |
+
"train_samples": 29,
|
6 |
+
"train_samples_per_second": 1.009,
|
7 |
+
"train_steps_per_second": 0.063
|
8 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
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": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5eee858c5123a4279c3e1f7b81247343f356ac767940b2692a928ad929543214
|
3 |
+
size 11422063
|
tokenizer_config.json
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"split_special_tokens": false,
|
206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
207 |
+
"unk_token": null
|
208 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"total_flos": 0.0,
|
3 |
+
"train_loss": 1.1221799382710174e-06,
|
4 |
+
"train_runtime": 1585.3495,
|
5 |
+
"train_samples": 29,
|
6 |
+
"train_samples_per_second": 1.009,
|
7 |
+
"train_steps_per_second": 0.063
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,993 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 12.551724137931034,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 100,
|
8 |
+
"is_hyper_param_search": false,
|
9 |
+
"is_local_process_zero": true,
|
10 |
+
"is_world_process_zero": true,
|
11 |
+
"log_history": [
|
12 |
+
{
|
13 |
+
"completion_length": 261.9375,
|
14 |
+
"epoch": 0.27586206896551724,
|
15 |
+
"grad_norm": 0.5876455307006836,
|
16 |
+
"kl": 0.0,
|
17 |
+
"learning_rate": 1.6666666666666667e-06,
|
18 |
+
"loss": 0.0,
|
19 |
+
"reward": 1.4498194679617882,
|
20 |
+
"reward_std": 1.1243495009839535,
|
21 |
+
"rewards/concensus_correctness_reward_func": 0.11999999731779099,
|
22 |
+
"rewards/consensus_reward_func": 0.0625,
|
23 |
+
"rewards/cumulative_reward_2": 0.0,
|
24 |
+
"rewards/final_correctness_reward_func": 0.25,
|
25 |
+
"rewards/question_recreation_reward_func": 0.37772573810070753,
|
26 |
+
"rewards/soft_format_reward_func": 0.0,
|
27 |
+
"rewards/strict_format_reward_func": 0.046875,
|
28 |
+
"rewards/xmlcount_reward_func": 0.592718742787838,
|
29 |
+
"step": 2
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"completion_length": 279.15625,
|
33 |
+
"epoch": 0.5517241379310345,
|
34 |
+
"grad_norm": 0.7141730785369873,
|
35 |
+
"kl": 0.0020650627120630816,
|
36 |
+
"learning_rate": 5e-06,
|
37 |
+
"loss": 0.0,
|
38 |
+
"reward": 1.2884040176868439,
|
39 |
+
"reward_std": 1.1638742461800575,
|
40 |
+
"rewards/concensus_correctness_reward_func": 0.12012499943375587,
|
41 |
+
"rewards/consensus_reward_func": 0.125,
|
42 |
+
"rewards/cumulative_reward_2": 0.0,
|
43 |
+
"rewards/final_correctness_reward_func": 0.125,
|
44 |
+
"rewards/question_recreation_reward_func": 0.5039352774620056,
|
45 |
+
"rewards/soft_format_reward_func": 0.0,
|
46 |
+
"rewards/strict_format_reward_func": 0.03125,
|
47 |
+
"rewards/xmlcount_reward_func": 0.3830937538295984,
|
48 |
+
"step": 4
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"completion_length": 325.8125,
|
52 |
+
"epoch": 0.8275862068965517,
|
53 |
+
"grad_norm": 0.5803059935569763,
|
54 |
+
"kl": 0.000953761518758256,
|
55 |
+
"learning_rate": 4.99475706559428e-06,
|
56 |
+
"loss": 0.0,
|
57 |
+
"reward": 1.294271882623434,
|
58 |
+
"reward_std": 0.8707563504576683,
|
59 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
60 |
+
"rewards/consensus_reward_func": 0.0,
|
61 |
+
"rewards/cumulative_reward_2": 0.0,
|
62 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
63 |
+
"rewards/question_recreation_reward_func": 0.5154593642801046,
|
64 |
+
"rewards/soft_format_reward_func": 0.0,
|
65 |
+
"rewards/strict_format_reward_func": 0.046875,
|
66 |
+
"rewards/xmlcount_reward_func": 0.4194375015795231,
|
67 |
+
"step": 6
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"completion_length": 361.75,
|
71 |
+
"epoch": 1.0,
|
72 |
+
"grad_norm": 0.20475846529006958,
|
73 |
+
"kl": 0.0010331896017305553,
|
74 |
+
"learning_rate": 4.979050253066064e-06,
|
75 |
+
"loss": 0.0,
|
76 |
+
"reward": 1.6736069202423096,
|
77 |
+
"reward_std": 1.0094650149345399,
|
78 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
79 |
+
"rewards/consensus_reward_func": 0.0,
|
80 |
+
"rewards/cumulative_reward_2": 0.0,
|
81 |
+
"rewards/final_correctness_reward_func": 0.5,
|
82 |
+
"rewards/question_recreation_reward_func": 0.552256902679801,
|
83 |
+
"rewards/soft_format_reward_func": 0.0,
|
84 |
+
"rewards/strict_format_reward_func": 0.05,
|
85 |
+
"rewards/xmlcount_reward_func": 0.5713500022888184,
|
86 |
+
"step": 8
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"completion_length": 384.46875,
|
90 |
+
"epoch": 1.2758620689655173,
|
91 |
+
"grad_norm": 0.43686386942863464,
|
92 |
+
"kl": 0.0012712998868664727,
|
93 |
+
"learning_rate": 4.952945442245598e-06,
|
94 |
+
"loss": 0.0,
|
95 |
+
"reward": 1.1086738537997007,
|
96 |
+
"reward_std": 0.8807330783456564,
|
97 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
98 |
+
"rewards/consensus_reward_func": 0.0625,
|
99 |
+
"rewards/cumulative_reward_2": 0.0,
|
100 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
101 |
+
"rewards/question_recreation_reward_func": 0.4103300729766488,
|
102 |
+
"rewards/soft_format_reward_func": 0.0,
|
103 |
+
"rewards/strict_format_reward_func": 0.0,
|
104 |
+
"rewards/xmlcount_reward_func": 0.4483437407761812,
|
105 |
+
"step": 10
|
106 |
+
},
|
107 |
+
{
|
108 |
+
"completion_length": 347.28125,
|
109 |
+
"epoch": 1.5517241379310345,
|
110 |
+
"grad_norm": 0.6117482781410217,
|
111 |
+
"kl": 0.0009661500589572825,
|
112 |
+
"learning_rate": 4.916552125781529e-06,
|
113 |
+
"loss": 0.0,
|
114 |
+
"reward": 1.2644198425114155,
|
115 |
+
"reward_std": 0.891217265278101,
|
116 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
117 |
+
"rewards/consensus_reward_func": 0.0,
|
118 |
+
"rewards/cumulative_reward_2": 0.0,
|
119 |
+
"rewards/final_correctness_reward_func": 0.25,
|
120 |
+
"rewards/question_recreation_reward_func": 0.5375448148697615,
|
121 |
+
"rewards/soft_format_reward_func": 0.03125,
|
122 |
+
"rewards/strict_format_reward_func": 0.046875,
|
123 |
+
"rewards/xmlcount_reward_func": 0.3987499997019768,
|
124 |
+
"step": 12
|
125 |
+
},
|
126 |
+
{
|
127 |
+
"completion_length": 249.9375,
|
128 |
+
"epoch": 1.8275862068965516,
|
129 |
+
"grad_norm": 0.6757048964500427,
|
130 |
+
"kl": 0.0011229460214963183,
|
131 |
+
"learning_rate": 4.870022949890676e-06,
|
132 |
+
"loss": 0.0,
|
133 |
+
"reward": 1.8286586850881577,
|
134 |
+
"reward_std": 1.1331563144922256,
|
135 |
+
"rewards/concensus_correctness_reward_func": 0.0625,
|
136 |
+
"rewards/consensus_reward_func": 0.0625,
|
137 |
+
"rewards/cumulative_reward_2": 0.0,
|
138 |
+
"rewards/final_correctness_reward_func": 0.5625,
|
139 |
+
"rewards/question_recreation_reward_func": 0.5068149194121361,
|
140 |
+
"rewards/soft_format_reward_func": 0.0,
|
141 |
+
"rewards/strict_format_reward_func": 0.078125,
|
142 |
+
"rewards/xmlcount_reward_func": 0.5562187545001507,
|
143 |
+
"step": 14
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"completion_length": 275.35,
|
147 |
+
"epoch": 2.0,
|
148 |
+
"grad_norm": 0.31559568643569946,
|
149 |
+
"kl": 0.00098627534462139,
|
150 |
+
"learning_rate": 4.813553074106761e-06,
|
151 |
+
"loss": 0.0,
|
152 |
+
"reward": 2.0888511657714846,
|
153 |
+
"reward_std": 1.4333394169807434,
|
154 |
+
"rewards/concensus_correctness_reward_func": 0.13020000457763672,
|
155 |
+
"rewards/consensus_reward_func": 0.0,
|
156 |
+
"rewards/cumulative_reward_2": 0.0,
|
157 |
+
"rewards/final_correctness_reward_func": 0.6,
|
158 |
+
"rewards/question_recreation_reward_func": 0.7344011664390564,
|
159 |
+
"rewards/soft_format_reward_func": 0.0,
|
160 |
+
"rewards/strict_format_reward_func": 0.05,
|
161 |
+
"rewards/xmlcount_reward_func": 0.5742499828338623,
|
162 |
+
"step": 16
|
163 |
+
},
|
164 |
+
{
|
165 |
+
"completion_length": 302.5,
|
166 |
+
"epoch": 2.2758620689655173,
|
167 |
+
"grad_norm": 0.6794589161872864,
|
168 |
+
"kl": 0.0009313603804912418,
|
169 |
+
"learning_rate": 4.747379352713489e-06,
|
170 |
+
"loss": 0.0,
|
171 |
+
"reward": 2.012173980474472,
|
172 |
+
"reward_std": 1.3338787257671356,
|
173 |
+
"rewards/concensus_correctness_reward_func": 0.10331249982118607,
|
174 |
+
"rewards/consensus_reward_func": 0.125,
|
175 |
+
"rewards/cumulative_reward_2": 0.0,
|
176 |
+
"rewards/final_correctness_reward_func": 0.8125,
|
177 |
+
"rewards/question_recreation_reward_func": 0.5153615120798349,
|
178 |
+
"rewards/soft_format_reward_func": 0.0,
|
179 |
+
"rewards/strict_format_reward_func": 0.0,
|
180 |
+
"rewards/xmlcount_reward_func": 0.4559999890625477,
|
181 |
+
"step": 18
|
182 |
+
},
|
183 |
+
{
|
184 |
+
"completion_length": 259.78125,
|
185 |
+
"epoch": 2.5517241379310347,
|
186 |
+
"grad_norm": 0.7855917811393738,
|
187 |
+
"kl": 0.0010634321151883341,
|
188 |
+
"learning_rate": 4.671779341295378e-06,
|
189 |
+
"loss": 0.0,
|
190 |
+
"reward": 1.7313391268253326,
|
191 |
+
"reward_std": 1.3928996622562408,
|
192 |
+
"rewards/concensus_correctness_reward_func": 0.26087500154972076,
|
193 |
+
"rewards/consensus_reward_func": 0.125,
|
194 |
+
"rewards/cumulative_reward_2": 0.0,
|
195 |
+
"rewards/final_correctness_reward_func": 0.25,
|
196 |
+
"rewards/question_recreation_reward_func": 0.5740891546010971,
|
197 |
+
"rewards/soft_format_reward_func": 0.015625,
|
198 |
+
"rewards/strict_format_reward_func": 0.046875,
|
199 |
+
"rewards/xmlcount_reward_func": 0.45887498930096626,
|
200 |
+
"step": 20
|
201 |
+
},
|
202 |
+
{
|
203 |
+
"completion_length": 266.65625,
|
204 |
+
"epoch": 2.8275862068965516,
|
205 |
+
"grad_norm": 0.746308445930481,
|
206 |
+
"kl": 0.0011307917884550989,
|
207 |
+
"learning_rate": 4.587070132573178e-06,
|
208 |
+
"loss": 0.0,
|
209 |
+
"reward": 1.402635745704174,
|
210 |
+
"reward_std": 0.9156965278089046,
|
211 |
+
"rewards/concensus_correctness_reward_func": 0.015625,
|
212 |
+
"rewards/consensus_reward_func": 0.125,
|
213 |
+
"rewards/cumulative_reward_2": 0.0,
|
214 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
215 |
+
"rewards/question_recreation_reward_func": 0.4964794850675389,
|
216 |
+
"rewards/soft_format_reward_func": 0.0,
|
217 |
+
"rewards/strict_format_reward_func": 0.03125,
|
218 |
+
"rewards/xmlcount_reward_func": 0.5467812465503812,
|
219 |
+
"step": 22
|
220 |
+
},
|
221 |
+
{
|
222 |
+
"completion_length": 327.05,
|
223 |
+
"epoch": 3.0,
|
224 |
+
"grad_norm": 0.23480382561683655,
|
225 |
+
"kl": 0.00111085653770715,
|
226 |
+
"learning_rate": 4.493607026406802e-06,
|
227 |
+
"loss": 0.0,
|
228 |
+
"reward": 1.1529444456100464,
|
229 |
+
"reward_std": 0.523932871222496,
|
230 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
231 |
+
"rewards/consensus_reward_func": 0.2,
|
232 |
+
"rewards/cumulative_reward_2": 0.0,
|
233 |
+
"rewards/final_correctness_reward_func": 0.0,
|
234 |
+
"rewards/question_recreation_reward_func": 0.5830944389104843,
|
235 |
+
"rewards/soft_format_reward_func": 0.0,
|
236 |
+
"rewards/strict_format_reward_func": 0.025,
|
237 |
+
"rewards/xmlcount_reward_func": 0.34484999179840087,
|
238 |
+
"step": 24
|
239 |
+
},
|
240 |
+
{
|
241 |
+
"completion_length": 336.8125,
|
242 |
+
"epoch": 3.2758620689655173,
|
243 |
+
"grad_norm": 0.8294694423675537,
|
244 |
+
"kl": 0.0010076407925225794,
|
245 |
+
"learning_rate": 4.391782039544239e-06,
|
246 |
+
"loss": 0.0,
|
247 |
+
"reward": 1.3900708109140396,
|
248 |
+
"reward_std": 1.3332865573465824,
|
249 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
250 |
+
"rewards/consensus_reward_func": 0.1875,
|
251 |
+
"rewards/cumulative_reward_2": 0.0,
|
252 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
253 |
+
"rewards/question_recreation_reward_func": 0.46316459868103266,
|
254 |
+
"rewards/soft_format_reward_func": 0.0,
|
255 |
+
"rewards/strict_format_reward_func": 0.015625,
|
256 |
+
"rewards/xmlcount_reward_func": 0.4761562645435333,
|
257 |
+
"step": 26
|
258 |
+
},
|
259 |
+
{
|
260 |
+
"completion_length": 353.28125,
|
261 |
+
"epoch": 3.5517241379310347,
|
262 |
+
"grad_norm": 0.6492119431495667,
|
263 |
+
"kl": 0.0011136386019643396,
|
264 |
+
"learning_rate": 4.282022261367074e-06,
|
265 |
+
"loss": 0.0,
|
266 |
+
"reward": 1.7649768702685833,
|
267 |
+
"reward_std": 1.058425359427929,
|
268 |
+
"rewards/concensus_correctness_reward_func": 0.015625,
|
269 |
+
"rewards/consensus_reward_func": 0.0,
|
270 |
+
"rewards/cumulative_reward_2": 0.0,
|
271 |
+
"rewards/final_correctness_reward_func": 0.625,
|
272 |
+
"rewards/question_recreation_reward_func": 0.6061330996453762,
|
273 |
+
"rewards/soft_format_reward_func": 0.0,
|
274 |
+
"rewards/strict_format_reward_func": 0.015625,
|
275 |
+
"rewards/xmlcount_reward_func": 0.5025937429745682,
|
276 |
+
"step": 28
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"completion_length": 281.6875,
|
280 |
+
"epoch": 3.8275862068965516,
|
281 |
+
"grad_norm": 0.8953530192375183,
|
282 |
+
"kl": 0.001063827752659563,
|
283 |
+
"learning_rate": 4.164788062529203e-06,
|
284 |
+
"loss": 0.0,
|
285 |
+
"reward": 2.2271154075860977,
|
286 |
+
"reward_std": 1.9515271224081516,
|
287 |
+
"rewards/concensus_correctness_reward_func": 0.640625,
|
288 |
+
"rewards/consensus_reward_func": 0.0625,
|
289 |
+
"rewards/cumulative_reward_2": 0.0,
|
290 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
291 |
+
"rewards/question_recreation_reward_func": 0.57742790132761,
|
292 |
+
"rewards/soft_format_reward_func": 0.0,
|
293 |
+
"rewards/strict_format_reward_func": 0.015625,
|
294 |
+
"rewards/xmlcount_reward_func": 0.6184374950826168,
|
295 |
+
"step": 30
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"completion_length": 268.9,
|
299 |
+
"epoch": 4.0,
|
300 |
+
"grad_norm": 0.5744255781173706,
|
301 |
+
"kl": 0.001324763905722648,
|
302 |
+
"learning_rate": 4.040571164002319e-06,
|
303 |
+
"loss": 0.0,
|
304 |
+
"reward": 1.4024577617645264,
|
305 |
+
"reward_std": 1.0153881907463074,
|
306 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
307 |
+
"rewards/consensus_reward_func": 0.0,
|
308 |
+
"rewards/cumulative_reward_2": 0.0,
|
309 |
+
"rewards/final_correctness_reward_func": 0.3,
|
310 |
+
"rewards/question_recreation_reward_func": 0.6460577547550201,
|
311 |
+
"rewards/soft_format_reward_func": 0.0,
|
312 |
+
"rewards/strict_format_reward_func": 0.05,
|
313 |
+
"rewards/xmlcount_reward_func": 0.4063999891281128,
|
314 |
+
"step": 32
|
315 |
+
},
|
316 |
+
{
|
317 |
+
"completion_length": 315.125,
|
318 |
+
"epoch": 4.275862068965517,
|
319 |
+
"grad_norm": 1.165102243423462,
|
320 |
+
"kl": 0.000977253686869517,
|
321 |
+
"learning_rate": 3.909892574627267e-06,
|
322 |
+
"loss": 0.0,
|
323 |
+
"reward": 1.1481780782341957,
|
324 |
+
"reward_std": 1.0175574347376823,
|
325 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
326 |
+
"rewards/consensus_reward_func": 0.125,
|
327 |
+
"rewards/cumulative_reward_2": 0.0,
|
328 |
+
"rewards/final_correctness_reward_func": 0.25,
|
329 |
+
"rewards/question_recreation_reward_func": 0.3283343203365803,
|
330 |
+
"rewards/soft_format_reward_func": 0.0,
|
331 |
+
"rewards/strict_format_reward_func": 0.0,
|
332 |
+
"rewards/xmlcount_reward_func": 0.4448437672108412,
|
333 |
+
"step": 34
|
334 |
+
},
|
335 |
+
{
|
336 |
+
"completion_length": 285.3125,
|
337 |
+
"epoch": 4.551724137931035,
|
338 |
+
"grad_norm": 0.6390895843505859,
|
339 |
+
"kl": 0.0010886134841712192,
|
340 |
+
"learning_rate": 3.773300405821908e-06,
|
341 |
+
"loss": 0.0,
|
342 |
+
"reward": 1.2504443675279617,
|
343 |
+
"reward_std": 1.2421578019857407,
|
344 |
+
"rewards/concensus_correctness_reward_func": 0.07575000077486038,
|
345 |
+
"rewards/consensus_reward_func": 0.1875,
|
346 |
+
"rewards/cumulative_reward_2": 0.0,
|
347 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
348 |
+
"rewards/question_recreation_reward_func": 0.4656319017522037,
|
349 |
+
"rewards/soft_format_reward_func": 0.0,
|
350 |
+
"rewards/strict_format_reward_func": 0.0,
|
351 |
+
"rewards/xmlcount_reward_func": 0.3340625036507845,
|
352 |
+
"step": 36
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"completion_length": 261.6875,
|
356 |
+
"epoch": 4.827586206896552,
|
357 |
+
"grad_norm": 0.6622844934463501,
|
358 |
+
"kl": 0.0011051035835407674,
|
359 |
+
"learning_rate": 3.631367572611348e-06,
|
360 |
+
"loss": 0.0,
|
361 |
+
"reward": 1.0794794410467148,
|
362 |
+
"reward_std": 0.8599886745214462,
|
363 |
+
"rewards/concensus_correctness_reward_func": 0.0625,
|
364 |
+
"rewards/consensus_reward_func": 0.0625,
|
365 |
+
"rewards/cumulative_reward_2": 0.0,
|
366 |
+
"rewards/final_correctness_reward_func": 0.125,
|
367 |
+
"rewards/question_recreation_reward_func": 0.5531356520950794,
|
368 |
+
"rewards/soft_format_reward_func": 0.0,
|
369 |
+
"rewards/strict_format_reward_func": 0.03125,
|
370 |
+
"rewards/xmlcount_reward_func": 0.24509375356137753,
|
371 |
+
"step": 38
|
372 |
+
},
|
373 |
+
{
|
374 |
+
"completion_length": 317.2,
|
375 |
+
"epoch": 5.0,
|
376 |
+
"grad_norm": 0.6508445143699646,
|
377 |
+
"kl": 0.0012014877400361,
|
378 |
+
"learning_rate": 3.484689390623218e-06,
|
379 |
+
"loss": 0.0,
|
380 |
+
"reward": 1.2601001858711243,
|
381 |
+
"reward_std": 0.9332681000232697,
|
382 |
+
"rewards/concensus_correctness_reward_func": 0.09599999785423279,
|
383 |
+
"rewards/consensus_reward_func": 0.1,
|
384 |
+
"rewards/cumulative_reward_2": 0.0,
|
385 |
+
"rewards/final_correctness_reward_func": 0.0,
|
386 |
+
"rewards/question_recreation_reward_func": 0.5755501747131347,
|
387 |
+
"rewards/soft_format_reward_func": 0.0,
|
388 |
+
"rewards/strict_format_reward_func": 0.025,
|
389 |
+
"rewards/xmlcount_reward_func": 0.46354998350143434,
|
390 |
+
"step": 40
|
391 |
+
},
|
392 |
+
{
|
393 |
+
"completion_length": 348.0625,
|
394 |
+
"epoch": 5.275862068965517,
|
395 |
+
"grad_norm": 0.4629547595977783,
|
396 |
+
"kl": 0.0010141393868252635,
|
397 |
+
"learning_rate": 3.333881079127052e-06,
|
398 |
+
"loss": 0.0,
|
399 |
+
"reward": 1.3980103582143784,
|
400 |
+
"reward_std": 1.1040666736662388,
|
401 |
+
"rewards/concensus_correctness_reward_func": 0.13574999943375587,
|
402 |
+
"rewards/consensus_reward_func": 0.0625,
|
403 |
+
"rewards/cumulative_reward_2": 0.0,
|
404 |
+
"rewards/final_correctness_reward_func": 0.125,
|
405 |
+
"rewards/question_recreation_reward_func": 0.6644478440284729,
|
406 |
+
"rewards/soft_format_reward_func": 0.0,
|
407 |
+
"rewards/strict_format_reward_func": 0.03125,
|
408 |
+
"rewards/xmlcount_reward_func": 0.3790625077672303,
|
409 |
+
"step": 42
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"completion_length": 273.65625,
|
413 |
+
"epoch": 5.551724137931035,
|
414 |
+
"grad_norm": 0.7342892289161682,
|
415 |
+
"kl": 0.0011725125659722835,
|
416 |
+
"learning_rate": 3.1795751805908578e-06,
|
417 |
+
"loss": 0.0,
|
418 |
+
"reward": 2.422099143266678,
|
419 |
+
"reward_std": 2.033245772123337,
|
420 |
+
"rewards/concensus_correctness_reward_func": 0.7265625,
|
421 |
+
"rewards/consensus_reward_func": 0.0625,
|
422 |
+
"rewards/cumulative_reward_2": 0.0,
|
423 |
+
"rewards/final_correctness_reward_func": 0.625,
|
424 |
+
"rewards/question_recreation_reward_func": 0.5944116413593292,
|
425 |
+
"rewards/soft_format_reward_func": 0.0,
|
426 |
+
"rewards/strict_format_reward_func": 0.015625,
|
427 |
+
"rewards/xmlcount_reward_func": 0.3980000060983002,
|
428 |
+
"step": 44
|
429 |
+
},
|
430 |
+
{
|
431 |
+
"completion_length": 379.8125,
|
432 |
+
"epoch": 5.827586206896552,
|
433 |
+
"grad_norm": 0.652703046798706,
|
434 |
+
"kl": 0.0010911910067079589,
|
435 |
+
"learning_rate": 3.0224189075781886e-06,
|
436 |
+
"loss": 0.0,
|
437 |
+
"reward": 1.2743461802601814,
|
438 |
+
"reward_std": 1.3854865245521069,
|
439 |
+
"rewards/concensus_correctness_reward_func": 0.12262500077486038,
|
440 |
+
"rewards/consensus_reward_func": 0.125,
|
441 |
+
"rewards/cumulative_reward_2": 0.0,
|
442 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
443 |
+
"rewards/question_recreation_reward_func": 0.4171899161301553,
|
444 |
+
"rewards/soft_format_reward_func": 0.0,
|
445 |
+
"rewards/strict_format_reward_func": 0.0,
|
446 |
+
"rewards/xmlcount_reward_func": 0.42203125543892384,
|
447 |
+
"step": 46
|
448 |
+
},
|
449 |
+
{
|
450 |
+
"completion_length": 318.95,
|
451 |
+
"epoch": 6.0,
|
452 |
+
"grad_norm": 0.22338756918907166,
|
453 |
+
"kl": 0.001001153700053692,
|
454 |
+
"learning_rate": 2.8630714281137263e-06,
|
455 |
+
"loss": 0.0,
|
456 |
+
"reward": 1.5304819822311402,
|
457 |
+
"reward_std": 1.059793508052826,
|
458 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
459 |
+
"rewards/consensus_reward_func": 0.1,
|
460 |
+
"rewards/cumulative_reward_2": 0.0,
|
461 |
+
"rewards/final_correctness_reward_func": 0.5,
|
462 |
+
"rewards/question_recreation_reward_func": 0.38448197543621065,
|
463 |
+
"rewards/soft_format_reward_func": 0.0,
|
464 |
+
"rewards/strict_format_reward_func": 0.025,
|
465 |
+
"rewards/xmlcount_reward_func": 0.5209999918937683,
|
466 |
+
"step": 48
|
467 |
+
},
|
468 |
+
{
|
469 |
+
"completion_length": 370.46875,
|
470 |
+
"epoch": 6.275862068965517,
|
471 |
+
"grad_norm": 0.6062008738517761,
|
472 |
+
"kl": 0.0010415500364615582,
|
473 |
+
"learning_rate": 2.702201100903511e-06,
|
474 |
+
"loss": 0.0,
|
475 |
+
"reward": 1.4714525565505028,
|
476 |
+
"reward_std": 1.0109544545412064,
|
477 |
+
"rewards/concensus_correctness_reward_func": 0.0755000002682209,
|
478 |
+
"rewards/consensus_reward_func": 0.125,
|
479 |
+
"rewards/cumulative_reward_2": 0.0,
|
480 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
481 |
+
"rewards/question_recreation_reward_func": 0.4757650615647435,
|
482 |
+
"rewards/soft_format_reward_func": 0.0,
|
483 |
+
"rewards/strict_format_reward_func": 0.0,
|
484 |
+
"rewards/xmlcount_reward_func": 0.4826874975115061,
|
485 |
+
"step": 50
|
486 |
+
},
|
487 |
+
{
|
488 |
+
"completion_length": 339.28125,
|
489 |
+
"epoch": 6.551724137931035,
|
490 |
+
"grad_norm": 0.6081772446632385,
|
491 |
+
"kl": 0.000928263645619154,
|
492 |
+
"learning_rate": 2.5404826720062544e-06,
|
493 |
+
"loss": 0.0,
|
494 |
+
"reward": 1.6288059502840042,
|
495 |
+
"reward_std": 1.1489972844719887,
|
496 |
+
"rewards/concensus_correctness_reward_func": 0.03125,
|
497 |
+
"rewards/consensus_reward_func": 0.125,
|
498 |
+
"rewards/cumulative_reward_2": 0.0,
|
499 |
+
"rewards/final_correctness_reward_func": 0.5625,
|
500 |
+
"rewards/question_recreation_reward_func": 0.5305872187018394,
|
501 |
+
"rewards/soft_format_reward_func": 0.0,
|
502 |
+
"rewards/strict_format_reward_func": 0.0,
|
503 |
+
"rewards/xmlcount_reward_func": 0.3794687408953905,
|
504 |
+
"step": 52
|
505 |
+
},
|
506 |
+
{
|
507 |
+
"completion_length": 294.8125,
|
508 |
+
"epoch": 6.827586206896552,
|
509 |
+
"grad_norm": 0.7885801196098328,
|
510 |
+
"kl": 0.0011745219817385077,
|
511 |
+
"learning_rate": 2.3785944447138804e-06,
|
512 |
+
"loss": 0.0,
|
513 |
+
"reward": 1.3874307684600353,
|
514 |
+
"reward_std": 1.1232963781803846,
|
515 |
+
"rewards/concensus_correctness_reward_func": 0.12262500077486038,
|
516 |
+
"rewards/consensus_reward_func": 0.0625,
|
517 |
+
"rewards/cumulative_reward_2": 0.0,
|
518 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
519 |
+
"rewards/question_recreation_reward_func": 0.5388057269155979,
|
520 |
+
"rewards/soft_format_reward_func": 0.0,
|
521 |
+
"rewards/strict_format_reward_func": 0.046875,
|
522 |
+
"rewards/xmlcount_reward_func": 0.42912499886006117,
|
523 |
+
"step": 54
|
524 |
+
},
|
525 |
+
{
|
526 |
+
"completion_length": 335.2,
|
527 |
+
"epoch": 7.0,
|
528 |
+
"grad_norm": 0.35713574290275574,
|
529 |
+
"kl": 0.0010486021172255277,
|
530 |
+
"learning_rate": 2.2172154345117896e-06,
|
531 |
+
"loss": 0.0,
|
532 |
+
"reward": 0.9908310234546661,
|
533 |
+
"reward_std": 0.8158440917730332,
|
534 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
535 |
+
"rewards/consensus_reward_func": 0.2,
|
536 |
+
"rewards/cumulative_reward_2": 0.0,
|
537 |
+
"rewards/final_correctness_reward_func": 0.2,
|
538 |
+
"rewards/question_recreation_reward_func": 0.24703103601932525,
|
539 |
+
"rewards/soft_format_reward_func": 0.0,
|
540 |
+
"rewards/strict_format_reward_func": 0.025,
|
541 |
+
"rewards/xmlcount_reward_func": 0.31880000084638593,
|
542 |
+
"step": 56
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"completion_length": 269.875,
|
546 |
+
"epoch": 7.275862068965517,
|
547 |
+
"grad_norm": 0.7617030143737793,
|
548 |
+
"kl": 0.0012455169853637926,
|
549 |
+
"learning_rate": 2.0570225210519433e-06,
|
550 |
+
"loss": 0.0,
|
551 |
+
"reward": 1.2766155302524567,
|
552 |
+
"reward_std": 0.9013489130884409,
|
553 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
554 |
+
"rewards/consensus_reward_func": 0.0625,
|
555 |
+
"rewards/cumulative_reward_2": 0.0,
|
556 |
+
"rewards/final_correctness_reward_func": 0.125,
|
557 |
+
"rewards/question_recreation_reward_func": 0.498896773904562,
|
558 |
+
"rewards/soft_format_reward_func": 0.0,
|
559 |
+
"rewards/strict_format_reward_func": 0.046875,
|
560 |
+
"rewards/xmlcount_reward_func": 0.5433437526226044,
|
561 |
+
"step": 58
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"completion_length": 359.75,
|
565 |
+
"epoch": 7.551724137931035,
|
566 |
+
"grad_norm": 0.4766957759857178,
|
567 |
+
"kl": 0.0010567399804131128,
|
568 |
+
"learning_rate": 1.8986876090843668e-06,
|
569 |
+
"loss": 0.0,
|
570 |
+
"reward": 1.335220292210579,
|
571 |
+
"reward_std": 1.233029380440712,
|
572 |
+
"rewards/concensus_correctness_reward_func": 0.03125,
|
573 |
+
"rewards/consensus_reward_func": 0.125,
|
574 |
+
"rewards/cumulative_reward_2": 0.0,
|
575 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
576 |
+
"rewards/question_recreation_reward_func": 0.4641265389509499,
|
577 |
+
"rewards/soft_format_reward_func": 0.0,
|
578 |
+
"rewards/strict_format_reward_func": 0.0,
|
579 |
+
"rewards/xmlcount_reward_func": 0.4023437686264515,
|
580 |
+
"step": 60
|
581 |
+
},
|
582 |
+
{
|
583 |
+
"completion_length": 317.21875,
|
584 |
+
"epoch": 7.827586206896552,
|
585 |
+
"grad_norm": 0.8781487941741943,
|
586 |
+
"kl": 0.0012130630420870148,
|
587 |
+
"learning_rate": 1.7428748102551237e-06,
|
588 |
+
"loss": 0.0,
|
589 |
+
"reward": 1.2447976544499397,
|
590 |
+
"reward_std": 0.9147735517472029,
|
591 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
592 |
+
"rewards/consensus_reward_func": 0.0,
|
593 |
+
"rewards/cumulative_reward_2": 0.0,
|
594 |
+
"rewards/final_correctness_reward_func": 0.25,
|
595 |
+
"rewards/question_recreation_reward_func": 0.5317039042711258,
|
596 |
+
"rewards/soft_format_reward_func": 0.0,
|
597 |
+
"rewards/strict_format_reward_func": 0.03125,
|
598 |
+
"rewards/xmlcount_reward_func": 0.4318437557667494,
|
599 |
+
"step": 62
|
600 |
+
},
|
601 |
+
{
|
602 |
+
"completion_length": 291.95,
|
603 |
+
"epoch": 8.0,
|
604 |
+
"grad_norm": 0.44187262654304504,
|
605 |
+
"kl": 0.0014347493182867766,
|
606 |
+
"learning_rate": 1.5902376575912815e-06,
|
607 |
+
"loss": 0.0,
|
608 |
+
"reward": 3.6168224096298216,
|
609 |
+
"reward_std": 2.845296561717987,
|
610 |
+
"rewards/concensus_correctness_reward_func": 2.0,
|
611 |
+
"rewards/consensus_reward_func": 0.3,
|
612 |
+
"rewards/cumulative_reward_2": 0.0,
|
613 |
+
"rewards/final_correctness_reward_func": 0.3,
|
614 |
+
"rewards/question_recreation_reward_func": 0.3940222471952438,
|
615 |
+
"rewards/soft_format_reward_func": 0.0,
|
616 |
+
"rewards/strict_format_reward_func": 0.05,
|
617 |
+
"rewards/xmlcount_reward_func": 0.5728000104427338,
|
618 |
+
"step": 64
|
619 |
+
},
|
620 |
+
{
|
621 |
+
"completion_length": 306.9375,
|
622 |
+
"epoch": 8.275862068965518,
|
623 |
+
"grad_norm": 1.304425835609436,
|
624 |
+
"kl": 0.0012883242161478847,
|
625 |
+
"learning_rate": 1.4414163643562755e-06,
|
626 |
+
"loss": 0.0,
|
627 |
+
"reward": 1.414997085928917,
|
628 |
+
"reward_std": 0.9384825639426708,
|
629 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
630 |
+
"rewards/consensus_reward_func": 0.1875,
|
631 |
+
"rewards/cumulative_reward_2": 0.0,
|
632 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
633 |
+
"rewards/question_recreation_reward_func": 0.5457158237695694,
|
634 |
+
"rewards/soft_format_reward_func": 0.0,
|
635 |
+
"rewards/strict_format_reward_func": 0.03125,
|
636 |
+
"rewards/xmlcount_reward_func": 0.4630312602967024,
|
637 |
+
"step": 66
|
638 |
+
},
|
639 |
+
{
|
640 |
+
"completion_length": 275.09375,
|
641 |
+
"epoch": 8.551724137931034,
|
642 |
+
"grad_norm": 0.7772114872932434,
|
643 |
+
"kl": 0.0014374244710779749,
|
644 |
+
"learning_rate": 1.2970351387729875e-06,
|
645 |
+
"loss": 0.0,
|
646 |
+
"reward": 1.7658802941441536,
|
647 |
+
"reward_std": 1.1716703101992607,
|
648 |
+
"rewards/concensus_correctness_reward_func": 0.11599999666213989,
|
649 |
+
"rewards/consensus_reward_func": 0.0,
|
650 |
+
"rewards/cumulative_reward_2": 0.0,
|
651 |
+
"rewards/final_correctness_reward_func": 0.5625,
|
652 |
+
"rewards/question_recreation_reward_func": 0.5250677652657032,
|
653 |
+
"rewards/soft_format_reward_func": 0.0,
|
654 |
+
"rewards/strict_format_reward_func": 0.0625,
|
655 |
+
"rewards/xmlcount_reward_func": 0.49981250055134296,
|
656 |
+
"step": 68
|
657 |
+
},
|
658 |
+
{
|
659 |
+
"completion_length": 330.53125,
|
660 |
+
"epoch": 8.827586206896552,
|
661 |
+
"grad_norm": 0.8543239235877991,
|
662 |
+
"kl": 0.0013485400995705277,
|
663 |
+
"learning_rate": 1.1576995658775405e-06,
|
664 |
+
"loss": 0.0,
|
665 |
+
"reward": 1.2814906537532806,
|
666 |
+
"reward_std": 1.0425735749304295,
|
667 |
+
"rewards/concensus_correctness_reward_func": 0.09137500077486038,
|
668 |
+
"rewards/consensus_reward_func": 0.0625,
|
669 |
+
"rewards/cumulative_reward_2": 0.0,
|
670 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
671 |
+
"rewards/question_recreation_reward_func": 0.4742719018831849,
|
672 |
+
"rewards/soft_format_reward_func": 0.0,
|
673 |
+
"rewards/strict_format_reward_func": 0.03125,
|
674 |
+
"rewards/xmlcount_reward_func": 0.30959376133978367,
|
675 |
+
"step": 70
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"completion_length": 403.5,
|
679 |
+
"epoch": 9.0,
|
680 |
+
"grad_norm": 0.21790927648544312,
|
681 |
+
"kl": 0.001029879879206419,
|
682 |
+
"learning_rate": 1.0239940674851943e-06,
|
683 |
+
"loss": 0.0,
|
684 |
+
"reward": 1.454481029510498,
|
685 |
+
"reward_std": 0.7960291028022766,
|
686 |
+
"rewards/concensus_correctness_reward_func": 0.05,
|
687 |
+
"rewards/consensus_reward_func": 0.1,
|
688 |
+
"rewards/cumulative_reward_2": 0.0,
|
689 |
+
"rewards/final_correctness_reward_func": 0.2,
|
690 |
+
"rewards/question_recreation_reward_func": 0.46478102207183836,
|
691 |
+
"rewards/soft_format_reward_func": 0.0,
|
692 |
+
"rewards/strict_format_reward_func": 0.025,
|
693 |
+
"rewards/xmlcount_reward_func": 0.6146999955177307,
|
694 |
+
"step": 72
|
695 |
+
},
|
696 |
+
{
|
697 |
+
"completion_length": 258.78125,
|
698 |
+
"epoch": 9.275862068965518,
|
699 |
+
"grad_norm": 0.9624819755554199,
|
700 |
+
"kl": 0.0016905390948522836,
|
701 |
+
"learning_rate": 8.964794509221508e-07,
|
702 |
+
"loss": 0.0,
|
703 |
+
"reward": 1.8803276717662811,
|
704 |
+
"reward_std": 1.6410220339894295,
|
705 |
+
"rewards/concensus_correctness_reward_func": 0.18275000154972076,
|
706 |
+
"rewards/consensus_reward_func": 0.125,
|
707 |
+
"rewards/cumulative_reward_2": 0.0,
|
708 |
+
"rewards/final_correctness_reward_func": 0.25,
|
709 |
+
"rewards/question_recreation_reward_func": 0.5239214114844799,
|
710 |
+
"rewards/soft_format_reward_func": 0.015625,
|
711 |
+
"rewards/strict_format_reward_func": 0.0625,
|
712 |
+
"rewards/xmlcount_reward_func": 0.720531240105629,
|
713 |
+
"step": 74
|
714 |
+
},
|
715 |
+
{
|
716 |
+
"completion_length": 320.03125,
|
717 |
+
"epoch": 9.551724137931034,
|
718 |
+
"grad_norm": 0.7233691811561584,
|
719 |
+
"kl": 0.0010870415571844205,
|
720 |
+
"learning_rate": 7.756905568047393e-07,
|
721 |
+
"loss": 0.0,
|
722 |
+
"reward": 1.6069397777318954,
|
723 |
+
"reward_std": 1.0762585289776325,
|
724 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
725 |
+
"rewards/consensus_reward_func": 0.125,
|
726 |
+
"rewards/cumulative_reward_2": 0.0,
|
727 |
+
"rewards/final_correctness_reward_func": 0.25,
|
728 |
+
"rewards/question_recreation_reward_func": 0.5746584795415401,
|
729 |
+
"rewards/soft_format_reward_func": 0.0,
|
730 |
+
"rewards/strict_format_reward_func": 0.015625,
|
731 |
+
"rewards/xmlcount_reward_func": 0.641656244173646,
|
732 |
+
"step": 76
|
733 |
+
},
|
734 |
+
{
|
735 |
+
"completion_length": 288.40625,
|
736 |
+
"epoch": 9.827586206896552,
|
737 |
+
"grad_norm": 0.6633221507072449,
|
738 |
+
"kl": 0.0014429407165152952,
|
739 |
+
"learning_rate": 6.621340157319998e-07,
|
740 |
+
"loss": 0.0,
|
741 |
+
"reward": 1.9194584637880325,
|
742 |
+
"reward_std": 1.9881719145923853,
|
743 |
+
"rewards/concensus_correctness_reward_func": 0.640625,
|
744 |
+
"rewards/consensus_reward_func": 0.0,
|
745 |
+
"rewards/cumulative_reward_2": 0.0,
|
746 |
+
"rewards/final_correctness_reward_func": 0.25,
|
747 |
+
"rewards/question_recreation_reward_func": 0.46661476604640484,
|
748 |
+
"rewards/soft_format_reward_func": 0.0,
|
749 |
+
"rewards/strict_format_reward_func": 0.015625,
|
750 |
+
"rewards/xmlcount_reward_func": 0.5465937443077564,
|
751 |
+
"step": 78
|
752 |
+
},
|
753 |
+
{
|
754 |
+
"completion_length": 348.0,
|
755 |
+
"epoch": 10.0,
|
756 |
+
"grad_norm": 0.4076433479785919,
|
757 |
+
"kl": 0.001379342400468886,
|
758 |
+
"learning_rate": 5.562861233008774e-07,
|
759 |
+
"loss": 0.0,
|
760 |
+
"reward": 0.835002475976944,
|
761 |
+
"reward_std": 0.8312704622745514,
|
762 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
763 |
+
"rewards/consensus_reward_func": 0.0,
|
764 |
+
"rewards/cumulative_reward_2": 0.0,
|
765 |
+
"rewards/final_correctness_reward_func": 0.3,
|
766 |
+
"rewards/question_recreation_reward_func": 0.41810246780514715,
|
767 |
+
"rewards/soft_format_reward_func": 0.0,
|
768 |
+
"rewards/strict_format_reward_func": 0.0,
|
769 |
+
"rewards/xmlcount_reward_func": 0.11689999997615814,
|
770 |
+
"step": 80
|
771 |
+
},
|
772 |
+
{
|
773 |
+
"completion_length": 284.5625,
|
774 |
+
"epoch": 10.275862068965518,
|
775 |
+
"grad_norm": 13.410774230957031,
|
776 |
+
"kl": 0.002484311757143587,
|
777 |
+
"learning_rate": 4.5859084235697236e-07,
|
778 |
+
"loss": 0.0,
|
779 |
+
"reward": 1.334033541381359,
|
780 |
+
"reward_std": 1.2119258306920528,
|
781 |
+
"rewards/concensus_correctness_reward_func": 0.12262500077486038,
|
782 |
+
"rewards/consensus_reward_func": 0.0625,
|
783 |
+
"rewards/cumulative_reward_2": 0.0,
|
784 |
+
"rewards/final_correctness_reward_func": 0.125,
|
785 |
+
"rewards/question_recreation_reward_func": 0.591752303764224,
|
786 |
+
"rewards/soft_format_reward_func": 0.0,
|
787 |
+
"rewards/strict_format_reward_func": 0.03125,
|
788 |
+
"rewards/xmlcount_reward_func": 0.4009062615223229,
|
789 |
+
"step": 82
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"completion_length": 283.3125,
|
793 |
+
"epoch": 10.551724137931034,
|
794 |
+
"grad_norm": 0.5552597641944885,
|
795 |
+
"kl": 0.0015608746980433352,
|
796 |
+
"learning_rate": 3.6945794086007706e-07,
|
797 |
+
"loss": 0.0,
|
798 |
+
"reward": 1.3054824657738209,
|
799 |
+
"reward_std": 0.9629417397081852,
|
800 |
+
"rewards/concensus_correctness_reward_func": 0.08137500286102295,
|
801 |
+
"rewards/consensus_reward_func": 0.0625,
|
802 |
+
"rewards/cumulative_reward_2": 0.0,
|
803 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
804 |
+
"rewards/question_recreation_reward_func": 0.5141699481755495,
|
805 |
+
"rewards/soft_format_reward_func": 0.0,
|
806 |
+
"rewards/strict_format_reward_func": 0.015625,
|
807 |
+
"rewards/xmlcount_reward_func": 0.4443124867975712,
|
808 |
+
"step": 84
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"completion_length": 349.125,
|
812 |
+
"epoch": 10.827586206896552,
|
813 |
+
"grad_norm": 0.5144564509391785,
|
814 |
+
"kl": 0.0014357663603732362,
|
815 |
+
"learning_rate": 2.892612731749414e-07,
|
816 |
+
"loss": 0.0,
|
817 |
+
"reward": 2.4467398822307587,
|
818 |
+
"reward_std": 2.3171303123235703,
|
819 |
+
"rewards/concensus_correctness_reward_func": 0.7409999966621399,
|
820 |
+
"rewards/consensus_reward_func": 0.0625,
|
821 |
+
"rewards/cumulative_reward_2": 0.0,
|
822 |
+
"rewards/final_correctness_reward_func": 0.5,
|
823 |
+
"rewards/question_recreation_reward_func": 0.6876149065792561,
|
824 |
+
"rewards/soft_format_reward_func": 0.0,
|
825 |
+
"rewards/strict_format_reward_func": 0.015625,
|
826 |
+
"rewards/xmlcount_reward_func": 0.43999999947845936,
|
827 |
+
"step": 86
|
828 |
+
},
|
829 |
+
{
|
830 |
+
"completion_length": 266.25,
|
831 |
+
"epoch": 11.0,
|
832 |
+
"grad_norm": 0.537667453289032,
|
833 |
+
"kl": 0.0013617533957585692,
|
834 |
+
"learning_rate": 2.1833721199614992e-07,
|
835 |
+
"loss": 0.0,
|
836 |
+
"reward": 1.3557676315307616,
|
837 |
+
"reward_std": 1.1246003568172456,
|
838 |
+
"rewards/concensus_correctness_reward_func": 0.09620000123977661,
|
839 |
+
"rewards/consensus_reward_func": 0.1,
|
840 |
+
"rewards/cumulative_reward_2": 0.0,
|
841 |
+
"rewards/final_correctness_reward_func": 0.1,
|
842 |
+
"rewards/question_recreation_reward_func": 0.37711760550737383,
|
843 |
+
"rewards/soft_format_reward_func": 0.0,
|
844 |
+
"rewards/strict_format_reward_func": 0.025,
|
845 |
+
"rewards/xmlcount_reward_func": 0.6574500024318695,
|
846 |
+
"step": 88
|
847 |
+
},
|
848 |
+
{
|
849 |
+
"completion_length": 298.59375,
|
850 |
+
"epoch": 11.275862068965518,
|
851 |
+
"grad_norm": 0.7764319181442261,
|
852 |
+
"kl": 0.0013516054386855103,
|
853 |
+
"learning_rate": 1.5698323748414123e-07,
|
854 |
+
"loss": 0.0,
|
855 |
+
"reward": 1.9731452241539955,
|
856 |
+
"reward_std": 2.4217655174434185,
|
857 |
+
"rewards/concensus_correctness_reward_func": 0.8366875015199184,
|
858 |
+
"rewards/consensus_reward_func": 0.0625,
|
859 |
+
"rewards/cumulative_reward_2": 0.0,
|
860 |
+
"rewards/final_correctness_reward_func": 0.25,
|
861 |
+
"rewards/question_recreation_reward_func": 0.5108639299869537,
|
862 |
+
"rewards/soft_format_reward_func": 0.015625,
|
863 |
+
"rewards/strict_format_reward_func": 0.0,
|
864 |
+
"rewards/xmlcount_reward_func": 0.29746875166893005,
|
865 |
+
"step": 90
|
866 |
+
},
|
867 |
+
{
|
868 |
+
"completion_length": 265.59375,
|
869 |
+
"epoch": 11.551724137931034,
|
870 |
+
"grad_norm": 0.7998268008232117,
|
871 |
+
"kl": 0.0019906353700207546,
|
872 |
+
"learning_rate": 1.054566895300324e-07,
|
873 |
+
"loss": 0.0,
|
874 |
+
"reward": 1.2235557958483696,
|
875 |
+
"reward_std": 0.7784941829741001,
|
876 |
+
"rewards/concensus_correctness_reward_func": 0.04337500035762787,
|
877 |
+
"rewards/consensus_reward_func": 0.0,
|
878 |
+
"rewards/cumulative_reward_2": 0.0,
|
879 |
+
"rewards/final_correctness_reward_func": 0.125,
|
880 |
+
"rewards/question_recreation_reward_func": 0.5579620627686381,
|
881 |
+
"rewards/soft_format_reward_func": 0.0,
|
882 |
+
"rewards/strict_format_reward_func": 0.03125,
|
883 |
+
"rewards/xmlcount_reward_func": 0.4659687466919422,
|
884 |
+
"step": 92
|
885 |
+
},
|
886 |
+
{
|
887 |
+
"completion_length": 302.46875,
|
888 |
+
"epoch": 11.827586206896552,
|
889 |
+
"grad_norm": 0.5803750157356262,
|
890 |
+
"kl": 0.0012688033384620212,
|
891 |
+
"learning_rate": 6.397368838268497e-08,
|
892 |
+
"loss": 0.0,
|
893 |
+
"reward": 1.6255936734378338,
|
894 |
+
"reward_std": 1.3891006745398045,
|
895 |
+
"rewards/concensus_correctness_reward_func": 0.1693749986588955,
|
896 |
+
"rewards/consensus_reward_func": 0.125,
|
897 |
+
"rewards/cumulative_reward_2": 0.0,
|
898 |
+
"rewards/final_correctness_reward_func": 0.4375,
|
899 |
+
"rewards/question_recreation_reward_func": 0.5416874596849084,
|
900 |
+
"rewards/soft_format_reward_func": 0.015625,
|
901 |
+
"rewards/strict_format_reward_func": 0.015625,
|
902 |
+
"rewards/xmlcount_reward_func": 0.3207812551409006,
|
903 |
+
"step": 94
|
904 |
+
},
|
905 |
+
{
|
906 |
+
"completion_length": 357.85,
|
907 |
+
"epoch": 12.0,
|
908 |
+
"grad_norm": 0.24747301638126373,
|
909 |
+
"kl": 0.0011559076607227325,
|
910 |
+
"learning_rate": 3.270822816527325e-08,
|
911 |
+
"loss": 0.0,
|
912 |
+
"reward": 1.146351419389248,
|
913 |
+
"reward_std": 1.193832767009735,
|
914 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
915 |
+
"rewards/consensus_reward_func": 0.0,
|
916 |
+
"rewards/cumulative_reward_2": 0.0,
|
917 |
+
"rewards/final_correctness_reward_func": 0.4,
|
918 |
+
"rewards/question_recreation_reward_func": 0.5318014442920684,
|
919 |
+
"rewards/soft_format_reward_func": 0.0,
|
920 |
+
"rewards/strict_format_reward_func": 0.025,
|
921 |
+
"rewards/xmlcount_reward_func": 0.18954999446868898,
|
922 |
+
"step": 96
|
923 |
+
},
|
924 |
+
{
|
925 |
+
"completion_length": 286.65625,
|
926 |
+
"epoch": 12.275862068965518,
|
927 |
+
"grad_norm": 0.8936555981636047,
|
928 |
+
"kl": 0.001531564790639095,
|
929 |
+
"learning_rate": 1.1791447083465136e-08,
|
930 |
+
"loss": 0.0,
|
931 |
+
"reward": 2.939312696456909,
|
932 |
+
"reward_std": 2.551104363054037,
|
933 |
+
"rewards/concensus_correctness_reward_func": 1.25,
|
934 |
+
"rewards/consensus_reward_func": 0.25,
|
935 |
+
"rewards/cumulative_reward_2": 0.0,
|
936 |
+
"rewards/final_correctness_reward_func": 0.5,
|
937 |
+
"rewards/question_recreation_reward_func": 0.48412513616494834,
|
938 |
+
"rewards/soft_format_reward_func": 0.0,
|
939 |
+
"rewards/strict_format_reward_func": 0.0,
|
940 |
+
"rewards/xmlcount_reward_func": 0.4551875004544854,
|
941 |
+
"step": 98
|
942 |
+
},
|
943 |
+
{
|
944 |
+
"completion_length": 366.78125,
|
945 |
+
"epoch": 12.551724137931034,
|
946 |
+
"grad_norm": 0.5418797135353088,
|
947 |
+
"kl": 0.001285279548028484,
|
948 |
+
"learning_rate": 1.3110773862126669e-09,
|
949 |
+
"loss": 0.0,
|
950 |
+
"reward": 1.3908307328820229,
|
951 |
+
"reward_std": 1.0579438470304012,
|
952 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
953 |
+
"rewards/consensus_reward_func": 0.0625,
|
954 |
+
"rewards/cumulative_reward_2": 0.0,
|
955 |
+
"rewards/final_correctness_reward_func": 0.25,
|
956 |
+
"rewards/question_recreation_reward_func": 0.6382682472467422,
|
957 |
+
"rewards/soft_format_reward_func": 0.0,
|
958 |
+
"rewards/strict_format_reward_func": 0.015625,
|
959 |
+
"rewards/xmlcount_reward_func": 0.4244375005364418,
|
960 |
+
"step": 100
|
961 |
+
},
|
962 |
+
{
|
963 |
+
"epoch": 12.551724137931034,
|
964 |
+
"step": 100,
|
965 |
+
"total_flos": 0.0,
|
966 |
+
"train_loss": 1.1221799382710174e-06,
|
967 |
+
"train_runtime": 1585.3495,
|
968 |
+
"train_samples_per_second": 1.009,
|
969 |
+
"train_steps_per_second": 0.063
|
970 |
+
}
|
971 |
+
],
|
972 |
+
"logging_steps": 2,
|
973 |
+
"max_steps": 100,
|
974 |
+
"num_input_tokens_seen": 0,
|
975 |
+
"num_train_epochs": 15,
|
976 |
+
"save_steps": 25,
|
977 |
+
"stateful_callbacks": {
|
978 |
+
"TrainerControl": {
|
979 |
+
"args": {
|
980 |
+
"should_epoch_stop": false,
|
981 |
+
"should_evaluate": false,
|
982 |
+
"should_log": false,
|
983 |
+
"should_save": true,
|
984 |
+
"should_training_stop": true
|
985 |
+
},
|
986 |
+
"attributes": {}
|
987 |
+
}
|
988 |
+
},
|
989 |
+
"total_flos": 0.0,
|
990 |
+
"train_batch_size": 4,
|
991 |
+
"trial_name": null,
|
992 |
+
"trial_params": null
|
993 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f307b3433a765f2d18c7e7a0be84b4fc6c9d21a9f869b9f12d65d0f88b52dfe
|
3 |
+
size 6008
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|