End of training
Browse files- .gitattributes +1 -0
- README.md +71 -0
- added_tokens.json +24 -0
- all_results.json +8 -0
- config.json +28 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +208 -0
- train_results.json +8 -0
- trainer_state.json +1943 -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,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Gensyn/Qwen2.5-0.5B-Instruct
|
3 |
+
library_name: transformers
|
4 |
+
model_name: Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog
|
5 |
+
tags:
|
6 |
+
- generated_from_trainer
|
7 |
+
- rl-swarm
|
8 |
+
- grpo
|
9 |
+
- gensyn
|
10 |
+
- I am burrowing timid dog
|
11 |
+
- trl
|
12 |
+
licence: license
|
13 |
+
---
|
14 |
+
|
15 |
+
# Model Card for Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog
|
16 |
+
|
17 |
+
This model is a fine-tuned version of [Gensyn/Qwen2.5-0.5B-Instruct](https://huggingface.co/Gensyn/Qwen2.5-0.5B-Instruct).
|
18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
19 |
+
|
20 |
+
## Quick start
|
21 |
+
|
22 |
+
```python
|
23 |
+
from transformers import pipeline
|
24 |
+
|
25 |
+
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?"
|
26 |
+
generator = pipeline("text-generation", model="DoomerHope/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog", device="cuda")
|
27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
28 |
+
print(output["generated_text"])
|
29 |
+
```
|
30 |
+
|
31 |
+
## Training procedure
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
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).
|
37 |
+
|
38 |
+
### Framework versions
|
39 |
+
|
40 |
+
- TRL: 0.15.2
|
41 |
+
- Transformers: 4.51.3
|
42 |
+
- Pytorch: 2.5.1
|
43 |
+
- Datasets: 3.5.0
|
44 |
+
- Tokenizers: 0.21.1
|
45 |
+
|
46 |
+
## Citations
|
47 |
+
|
48 |
+
Cite GRPO as:
|
49 |
+
|
50 |
+
```bibtex
|
51 |
+
@article{zhihong2024deepseekmath,
|
52 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
53 |
+
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},
|
54 |
+
year = 2024,
|
55 |
+
eprint = {arXiv:2402.03300},
|
56 |
+
}
|
57 |
+
|
58 |
+
```
|
59 |
+
|
60 |
+
Cite TRL as:
|
61 |
+
|
62 |
+
```bibtex
|
63 |
+
@misc{vonwerra2022trl,
|
64 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
65 |
+
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},
|
66 |
+
year = 2020,
|
67 |
+
journal = {GitHub repository},
|
68 |
+
publisher = {GitHub},
|
69 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
70 |
+
}
|
71 |
+
```
|
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": 0.06702521831626655,
|
4 |
+
"train_runtime": 3029.6015,
|
5 |
+
"train_samples": 115,
|
6 |
+
"train_samples_per_second": 1.056,
|
7 |
+
"train_steps_per_second": 0.066
|
8 |
+
}
|
config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"Qwen2ForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_dropout": 0.0,
|
6 |
+
"bos_token_id": 151643,
|
7 |
+
"eos_token_id": 151645,
|
8 |
+
"hidden_act": "silu",
|
9 |
+
"hidden_size": 896,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"intermediate_size": 4864,
|
12 |
+
"max_position_embeddings": 32768,
|
13 |
+
"max_window_layers": 21,
|
14 |
+
"model_type": "qwen2",
|
15 |
+
"num_attention_heads": 14,
|
16 |
+
"num_hidden_layers": 24,
|
17 |
+
"num_key_value_heads": 2,
|
18 |
+
"rms_norm_eps": 1e-06,
|
19 |
+
"rope_scaling": null,
|
20 |
+
"rope_theta": 1000000.0,
|
21 |
+
"sliding_window": 32768,
|
22 |
+
"tie_word_embeddings": true,
|
23 |
+
"torch_dtype": "float32",
|
24 |
+
"transformers_version": "4.51.3",
|
25 |
+
"use_cache": true,
|
26 |
+
"use_sliding_window": false,
|
27 |
+
"vocab_size": 151936
|
28 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
151645,
|
6 |
+
151643
|
7 |
+
],
|
8 |
+
"pad_token_id": 151643,
|
9 |
+
"repetition_penalty": 1.1,
|
10 |
+
"temperature": 0.7,
|
11 |
+
"top_k": 20,
|
12 |
+
"top_p": 0.8,
|
13 |
+
"transformers_version": "4.51.3"
|
14 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3777fe2b2b304b2a7bcbb8a25ece35e073fc0ca20663d3f73caddad3a42e3aa
|
3 |
+
size 1976163472
|
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": 0.06702521831626655,
|
4 |
+
"train_runtime": 3029.6015,
|
5 |
+
"train_samples": 115,
|
6 |
+
"train_samples_per_second": 1.056,
|
7 |
+
"train_steps_per_second": 0.066
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,1943 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 13.347826086956522,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 200,
|
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": 469.125,
|
14 |
+
"epoch": 0.1391304347826087,
|
15 |
+
"grad_norm": 6.651979446411133,
|
16 |
+
"kl": 0.0,
|
17 |
+
"learning_rate": 1.6666666666666665e-07,
|
18 |
+
"loss": -0.0,
|
19 |
+
"reward": 0.7131982836872339,
|
20 |
+
"reward_std": 0.6387130866860389,
|
21 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
22 |
+
"rewards/consensus_reward_func": 0.0625,
|
23 |
+
"rewards/cumulative_reward_2": 0.0,
|
24 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
25 |
+
"rewards/question_recreation_reward_func": 0.34851078875362873,
|
26 |
+
"rewards/soft_format_reward_func": 0.0,
|
27 |
+
"rewards/strict_format_reward_func": 0.0,
|
28 |
+
"rewards/xmlcount_reward_func": 0.23968750052154064,
|
29 |
+
"step": 2
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"completion_length": 407.625,
|
33 |
+
"epoch": 0.2782608695652174,
|
34 |
+
"grad_norm": 9.905783653259277,
|
35 |
+
"kl": 0.005283124854031485,
|
36 |
+
"learning_rate": 5e-07,
|
37 |
+
"loss": 0.0,
|
38 |
+
"reward": 1.395947689190507,
|
39 |
+
"reward_std": 1.2750358628109097,
|
40 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
41 |
+
"rewards/consensus_reward_func": 0.3125,
|
42 |
+
"rewards/cumulative_reward_2": 0.0,
|
43 |
+
"rewards/final_correctness_reward_func": 0.375,
|
44 |
+
"rewards/question_recreation_reward_func": 0.42385393101722,
|
45 |
+
"rewards/soft_format_reward_func": 0.0,
|
46 |
+
"rewards/strict_format_reward_func": 0.0,
|
47 |
+
"rewards/xmlcount_reward_func": 0.2845937702804804,
|
48 |
+
"step": 4
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"completion_length": 322.78125,
|
52 |
+
"epoch": 0.41739130434782606,
|
53 |
+
"grad_norm": 6.311988353729248,
|
54 |
+
"kl": 0.0086102341338119,
|
55 |
+
"learning_rate": 8.333333333333333e-07,
|
56 |
+
"loss": 0.0,
|
57 |
+
"reward": 1.2708191433921456,
|
58 |
+
"reward_std": 0.6618030449608341,
|
59 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
60 |
+
"rewards/consensus_reward_func": 0.1875,
|
61 |
+
"rewards/cumulative_reward_2": 0.0,
|
62 |
+
"rewards/final_correctness_reward_func": 0.25,
|
63 |
+
"rewards/question_recreation_reward_func": 0.3736316340509802,
|
64 |
+
"rewards/soft_format_reward_func": 0.0,
|
65 |
+
"rewards/strict_format_reward_func": 0.0,
|
66 |
+
"rewards/xmlcount_reward_func": 0.4596874974668026,
|
67 |
+
"step": 6
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"completion_length": 356.28125,
|
71 |
+
"epoch": 0.5565217391304348,
|
72 |
+
"grad_norm": 7.336427211761475,
|
73 |
+
"kl": 0.010165997344302014,
|
74 |
+
"learning_rate": 9.99934441832816e-07,
|
75 |
+
"loss": 0.0,
|
76 |
+
"reward": 1.0624355049803853,
|
77 |
+
"reward_std": 1.175302461721003,
|
78 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
79 |
+
"rewards/consensus_reward_func": 0.3125,
|
80 |
+
"rewards/cumulative_reward_2": 0.0,
|
81 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
82 |
+
"rewards/question_recreation_reward_func": 0.38565425004344434,
|
83 |
+
"rewards/soft_format_reward_func": 0.0,
|
84 |
+
"rewards/strict_format_reward_func": 0.015625,
|
85 |
+
"rewards/xmlcount_reward_func": 0.2861562427133322,
|
86 |
+
"step": 8
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"completion_length": 355.96875,
|
90 |
+
"epoch": 0.6956521739130435,
|
91 |
+
"grad_norm": 9.285393714904785,
|
92 |
+
"kl": 0.010603671733406372,
|
93 |
+
"learning_rate": 9.994100796397953e-07,
|
94 |
+
"loss": 0.0,
|
95 |
+
"reward": 1.2944127935916185,
|
96 |
+
"reward_std": 0.9169077111873776,
|
97 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
98 |
+
"rewards/consensus_reward_func": 0.1875,
|
99 |
+
"rewards/cumulative_reward_2": 0.0,
|
100 |
+
"rewards/final_correctness_reward_func": 0.125,
|
101 |
+
"rewards/question_recreation_reward_func": 0.3885377976548625,
|
102 |
+
"rewards/soft_format_reward_func": 0.0,
|
103 |
+
"rewards/strict_format_reward_func": 0.015625,
|
104 |
+
"rewards/xmlcount_reward_func": 0.5176250012591481,
|
105 |
+
"step": 10
|
106 |
+
},
|
107 |
+
{
|
108 |
+
"completion_length": 432.5,
|
109 |
+
"epoch": 0.8347826086956521,
|
110 |
+
"grad_norm": 6.065662384033203,
|
111 |
+
"kl": 0.022270067056524567,
|
112 |
+
"learning_rate": 9.983619052372847e-07,
|
113 |
+
"loss": 0.0,
|
114 |
+
"reward": 0.7962917103432119,
|
115 |
+
"reward_std": 0.9656887443270534,
|
116 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
117 |
+
"rewards/consensus_reward_func": 0.25,
|
118 |
+
"rewards/cumulative_reward_2": 0.0,
|
119 |
+
"rewards/final_correctness_reward_func": 0.125,
|
120 |
+
"rewards/question_recreation_reward_func": 0.3581042473670095,
|
121 |
+
"rewards/soft_format_reward_func": 0.0,
|
122 |
+
"rewards/strict_format_reward_func": 0.0,
|
123 |
+
"rewards/xmlcount_reward_func": 0.06318750325590372,
|
124 |
+
"step": 12
|
125 |
+
},
|
126 |
+
{
|
127 |
+
"completion_length": 382.5,
|
128 |
+
"epoch": 0.9739130434782609,
|
129 |
+
"grad_norm": 8.355684280395508,
|
130 |
+
"kl": 0.021279162167047616,
|
131 |
+
"learning_rate": 9.967910180154888e-07,
|
132 |
+
"loss": 0.0,
|
133 |
+
"reward": 0.9942772081121802,
|
134 |
+
"reward_std": 1.3131475580157712,
|
135 |
+
"rewards/concensus_correctness_reward_func": 0.00787500012665987,
|
136 |
+
"rewards/consensus_reward_func": 0.3125,
|
137 |
+
"rewards/cumulative_reward_2": 0.0,
|
138 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
139 |
+
"rewards/question_recreation_reward_func": 0.3675272043328732,
|
140 |
+
"rewards/soft_format_reward_func": 0.0,
|
141 |
+
"rewards/strict_format_reward_func": 0.0,
|
142 |
+
"rewards/xmlcount_reward_func": 0.24387499503791332,
|
143 |
+
"step": 14
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"completion_length": 485.40909090909093,
|
147 |
+
"epoch": 1.0695652173913044,
|
148 |
+
"grad_norm": 6.345098495483398,
|
149 |
+
"kl": 0.04893516427413984,
|
150 |
+
"learning_rate": 9.946990656181779e-07,
|
151 |
+
"loss": 0.0,
|
152 |
+
"reward": 1.2941602251746438,
|
153 |
+
"reward_std": 1.729960096153346,
|
154 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
155 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
156 |
+
"rewards/cumulative_reward_2": 0.0,
|
157 |
+
"rewards/final_correctness_reward_func": 0.2727272727272727,
|
158 |
+
"rewards/question_recreation_reward_func": 0.330114785073833,
|
159 |
+
"rewards/soft_format_reward_func": 0.0,
|
160 |
+
"rewards/strict_format_reward_func": 0.022727272727272728,
|
161 |
+
"rewards/xmlcount_reward_func": 0.3958636359734969,
|
162 |
+
"step": 16
|
163 |
+
},
|
164 |
+
{
|
165 |
+
"completion_length": 566.75,
|
166 |
+
"epoch": 1.208695652173913,
|
167 |
+
"grad_norm": 4.4084792137146,
|
168 |
+
"kl": 0.035054971085628495,
|
169 |
+
"learning_rate": 9.92088242214537e-07,
|
170 |
+
"loss": 0.0,
|
171 |
+
"reward": 0.9450036096386611,
|
172 |
+
"reward_std": 0.7893581000389531,
|
173 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
174 |
+
"rewards/consensus_reward_func": 0.125,
|
175 |
+
"rewards/cumulative_reward_2": 0.0,
|
176 |
+
"rewards/final_correctness_reward_func": 0.125,
|
177 |
+
"rewards/question_recreation_reward_func": 0.43631610507145524,
|
178 |
+
"rewards/soft_format_reward_func": 0.0,
|
179 |
+
"rewards/strict_format_reward_func": 0.015625,
|
180 |
+
"rewards/xmlcount_reward_func": 0.24306250270456076,
|
181 |
+
"step": 18
|
182 |
+
},
|
183 |
+
{
|
184 |
+
"completion_length": 460.875,
|
185 |
+
"epoch": 1.3478260869565217,
|
186 |
+
"grad_norm": 5.167897701263428,
|
187 |
+
"kl": 0.04613033159694169,
|
188 |
+
"learning_rate": 9.889612861977853e-07,
|
189 |
+
"loss": 0.0,
|
190 |
+
"reward": 0.4604216940351762,
|
191 |
+
"reward_std": 1.0246329813089687,
|
192 |
+
"rewards/concensus_correctness_reward_func": 0.07824999839067459,
|
193 |
+
"rewards/consensus_reward_func": 0.0,
|
194 |
+
"rewards/cumulative_reward_2": 0.0,
|
195 |
+
"rewards/final_correctness_reward_func": 0.0,
|
196 |
+
"rewards/question_recreation_reward_func": 0.26920293824514374,
|
197 |
+
"rewards/soft_format_reward_func": 0.0,
|
198 |
+
"rewards/strict_format_reward_func": 0.0,
|
199 |
+
"rewards/xmlcount_reward_func": 0.11296873912215233,
|
200 |
+
"step": 20
|
201 |
+
},
|
202 |
+
{
|
203 |
+
"completion_length": 387.40625,
|
204 |
+
"epoch": 1.4869565217391305,
|
205 |
+
"grad_norm": 4.876871109008789,
|
206 |
+
"kl": 0.08161755069158971,
|
207 |
+
"learning_rate": 9.853214773129795e-07,
|
208 |
+
"loss": 0.0001,
|
209 |
+
"reward": 1.786725739017129,
|
210 |
+
"reward_std": 1.259733703918755,
|
211 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
212 |
+
"rewards/consensus_reward_func": 0.4375,
|
213 |
+
"rewards/cumulative_reward_2": 0.0,
|
214 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
215 |
+
"rewards/question_recreation_reward_func": 0.5388507556635886,
|
216 |
+
"rewards/soft_format_reward_func": 0.0,
|
217 |
+
"rewards/strict_format_reward_func": 0.015625,
|
218 |
+
"rewards/xmlcount_reward_func": 0.6072499956935644,
|
219 |
+
"step": 22
|
220 |
+
},
|
221 |
+
{
|
222 |
+
"completion_length": 503.90625,
|
223 |
+
"epoch": 1.626086956521739,
|
224 |
+
"grad_norm": 11.22158145904541,
|
225 |
+
"kl": 0.08277971870847978,
|
226 |
+
"learning_rate": 9.81172633217015e-07,
|
227 |
+
"loss": 0.0001,
|
228 |
+
"reward": 1.2416393284220248,
|
229 |
+
"reward_std": 1.4355839109048247,
|
230 |
+
"rewards/concensus_correctness_reward_func": 0.00787500012665987,
|
231 |
+
"rewards/consensus_reward_func": 0.4375,
|
232 |
+
"rewards/cumulative_reward_2": 0.0,
|
233 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
234 |
+
"rewards/question_recreation_reward_func": 0.38088934967527166,
|
235 |
+
"rewards/soft_format_reward_func": 0.0,
|
236 |
+
"rewards/strict_format_reward_func": 0.03125,
|
237 |
+
"rewards/xmlcount_reward_func": 0.0716249905526638,
|
238 |
+
"step": 24
|
239 |
+
},
|
240 |
+
{
|
241 |
+
"completion_length": 416.90625,
|
242 |
+
"epoch": 1.7652173913043478,
|
243 |
+
"grad_norm": 8.147880554199219,
|
244 |
+
"kl": 0.11381094309035689,
|
245 |
+
"learning_rate": 9.765191054744304e-07,
|
246 |
+
"loss": 0.0001,
|
247 |
+
"reward": 1.2789664026349783,
|
248 |
+
"reward_std": 1.0479871579445899,
|
249 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
250 |
+
"rewards/consensus_reward_func": 0.3125,
|
251 |
+
"rewards/cumulative_reward_2": 0.0,
|
252 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
253 |
+
"rewards/question_recreation_reward_func": 0.5266226634848863,
|
254 |
+
"rewards/soft_format_reward_func": 0.0,
|
255 |
+
"rewards/strict_format_reward_func": 0.0,
|
256 |
+
"rewards/xmlcount_reward_func": 0.3695312385680154,
|
257 |
+
"step": 26
|
258 |
+
},
|
259 |
+
{
|
260 |
+
"completion_length": 442.40625,
|
261 |
+
"epoch": 1.9043478260869566,
|
262 |
+
"grad_norm": 9.084968566894531,
|
263 |
+
"kl": 0.12449931562878191,
|
264 |
+
"learning_rate": 9.713657749932171e-07,
|
265 |
+
"loss": 0.0001,
|
266 |
+
"reward": 1.339750369079411,
|
267 |
+
"reward_std": 1.2324395878240466,
|
268 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
269 |
+
"rewards/consensus_reward_func": 0.125,
|
270 |
+
"rewards/cumulative_reward_2": 0.0,
|
271 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
272 |
+
"rewards/question_recreation_reward_func": 0.40315663220826536,
|
273 |
+
"rewards/soft_format_reward_func": 0.0,
|
274 |
+
"rewards/strict_format_reward_func": 0.0,
|
275 |
+
"rewards/xmlcount_reward_func": 0.49909375328570604,
|
276 |
+
"step": 28
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"completion_length": 589.7272727272727,
|
280 |
+
"epoch": 2.0,
|
281 |
+
"grad_norm": 1.5676738023757935,
|
282 |
+
"kl": 0.0792797537181865,
|
283 |
+
"learning_rate": 9.657180469054212e-07,
|
284 |
+
"loss": 0.0001,
|
285 |
+
"reward": 0.922713640569286,
|
286 |
+
"reward_std": 1.0948863579383628,
|
287 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
288 |
+
"rewards/consensus_reward_func": 0.36363636363636365,
|
289 |
+
"rewards/cumulative_reward_2": 0.0,
|
290 |
+
"rewards/final_correctness_reward_func": 0.0,
|
291 |
+
"rewards/question_recreation_reward_func": 0.22689545425501736,
|
292 |
+
"rewards/soft_format_reward_func": 0.0,
|
293 |
+
"rewards/strict_format_reward_func": 0.0,
|
294 |
+
"rewards/xmlcount_reward_func": 0.3321818167513067,
|
295 |
+
"step": 30
|
296 |
+
},
|
297 |
+
{
|
298 |
+
"completion_length": 454.40625,
|
299 |
+
"epoch": 2.139130434782609,
|
300 |
+
"grad_norm": 5.896516799926758,
|
301 |
+
"kl": 0.14648738969117403,
|
302 |
+
"learning_rate": 9.59581844897906e-07,
|
303 |
+
"loss": 0.0001,
|
304 |
+
"reward": 1.1079749837517738,
|
305 |
+
"reward_std": 1.25278989225626,
|
306 |
+
"rewards/concensus_correctness_reward_func": 0.023125000298023224,
|
307 |
+
"rewards/consensus_reward_func": 0.1875,
|
308 |
+
"rewards/cumulative_reward_2": 0.0,
|
309 |
+
"rewards/final_correctness_reward_func": 0.25,
|
310 |
+
"rewards/question_recreation_reward_func": 0.39031872944906354,
|
311 |
+
"rewards/soft_format_reward_func": 0.0,
|
312 |
+
"rewards/strict_format_reward_func": 0.03125,
|
313 |
+
"rewards/xmlcount_reward_func": 0.22578124795109034,
|
314 |
+
"step": 32
|
315 |
+
},
|
316 |
+
{
|
317 |
+
"completion_length": 365.28125,
|
318 |
+
"epoch": 2.2782608695652176,
|
319 |
+
"grad_norm": 5.692052841186523,
|
320 |
+
"kl": 0.16005453513935208,
|
321 |
+
"learning_rate": 9.529636049992233e-07,
|
322 |
+
"loss": 0.0002,
|
323 |
+
"reward": 1.4690629467368126,
|
324 |
+
"reward_std": 1.0634890967048705,
|
325 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
326 |
+
"rewards/consensus_reward_func": 0.25,
|
327 |
+
"rewards/cumulative_reward_2": 0.0,
|
328 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
329 |
+
"rewards/question_recreation_reward_func": 0.4147504305001348,
|
330 |
+
"rewards/soft_format_reward_func": 0.0,
|
331 |
+
"rewards/strict_format_reward_func": 0.03125,
|
332 |
+
"rewards/xmlcount_reward_func": 0.5855625066906214,
|
333 |
+
"step": 34
|
334 |
+
},
|
335 |
+
{
|
336 |
+
"completion_length": 496.46875,
|
337 |
+
"epoch": 2.417391304347826,
|
338 |
+
"grad_norm": 3.690098762512207,
|
339 |
+
"kl": 0.116360651969444,
|
340 |
+
"learning_rate": 9.458702688291071e-07,
|
341 |
+
"loss": 0.0001,
|
342 |
+
"reward": 0.9128094336483628,
|
343 |
+
"reward_std": 1.1920369119616225,
|
344 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
345 |
+
"rewards/consensus_reward_func": 0.0625,
|
346 |
+
"rewards/cumulative_reward_2": 0.0,
|
347 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
348 |
+
"rewards/question_recreation_reward_func": 0.48627819842658937,
|
349 |
+
"rewards/soft_format_reward_func": 0.0,
|
350 |
+
"rewards/strict_format_reward_func": 0.015625,
|
351 |
+
"rewards/xmlcount_reward_func": 0.1609062496572733,
|
352 |
+
"step": 36
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"completion_length": 357.25,
|
356 |
+
"epoch": 2.5565217391304347,
|
357 |
+
"grad_norm": 5.994088649749756,
|
358 |
+
"kl": 0.22547357506118715,
|
359 |
+
"learning_rate": 9.383092763176738e-07,
|
360 |
+
"loss": 0.0002,
|
361 |
+
"reward": 1.4751352742314339,
|
362 |
+
"reward_std": 1.2913847951567732,
|
363 |
+
"rewards/concensus_correctness_reward_func": 0.12025000154972076,
|
364 |
+
"rewards/consensus_reward_func": 0.3125,
|
365 |
+
"rewards/cumulative_reward_2": 0.0,
|
366 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
367 |
+
"rewards/question_recreation_reward_func": 0.313854017527774,
|
368 |
+
"rewards/soft_format_reward_func": 0.0,
|
369 |
+
"rewards/strict_format_reward_func": 0.078125,
|
370 |
+
"rewards/xmlcount_reward_func": 0.5879062628373504,
|
371 |
+
"step": 38
|
372 |
+
},
|
373 |
+
{
|
374 |
+
"completion_length": 365.125,
|
375 |
+
"epoch": 2.6956521739130435,
|
376 |
+
"grad_norm": 5.768886566162109,
|
377 |
+
"kl": 0.20043913254630752,
|
378 |
+
"learning_rate": 9.302885579019626e-07,
|
379 |
+
"loss": 0.0002,
|
380 |
+
"reward": 1.5617408801335841,
|
381 |
+
"reward_std": 0.770021176605951,
|
382 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
383 |
+
"rewards/consensus_reward_func": 0.25,
|
384 |
+
"rewards/cumulative_reward_2": 0.0,
|
385 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
386 |
+
"rewards/question_recreation_reward_func": 0.421834665350616,
|
387 |
+
"rewards/soft_format_reward_func": 0.0,
|
388 |
+
"rewards/strict_format_reward_func": 0.0625,
|
389 |
+
"rewards/xmlcount_reward_func": 0.6320937536656857,
|
390 |
+
"step": 40
|
391 |
+
},
|
392 |
+
{
|
393 |
+
"completion_length": 439.46875,
|
394 |
+
"epoch": 2.8347826086956522,
|
395 |
+
"grad_norm": 6.0984392166137695,
|
396 |
+
"kl": 0.16734766645822674,
|
397 |
+
"learning_rate": 9.218165262080022e-07,
|
398 |
+
"loss": 0.0002,
|
399 |
+
"reward": 1.584086636081338,
|
400 |
+
"reward_std": 1.4578522881492972,
|
401 |
+
"rewards/concensus_correctness_reward_func": 0.03425000049173832,
|
402 |
+
"rewards/consensus_reward_func": 0.375,
|
403 |
+
"rewards/cumulative_reward_2": 0.0,
|
404 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
405 |
+
"rewards/question_recreation_reward_func": 0.5438053905963898,
|
406 |
+
"rewards/soft_format_reward_func": 0.0,
|
407 |
+
"rewards/strict_format_reward_func": 0.046875,
|
408 |
+
"rewards/xmlcount_reward_func": 0.5216562459245324,
|
409 |
+
"step": 42
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"completion_length": 392.5,
|
413 |
+
"epoch": 2.973913043478261,
|
414 |
+
"grad_norm": 6.062408924102783,
|
415 |
+
"kl": 0.25865777861326933,
|
416 |
+
"learning_rate": 9.129020672271281e-07,
|
417 |
+
"loss": 0.0003,
|
418 |
+
"reward": 2.0376671738922596,
|
419 |
+
"reward_std": 0.9936516415327787,
|
420 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
421 |
+
"rewards/consensus_reward_func": 0.4375,
|
422 |
+
"rewards/cumulative_reward_2": 0.0,
|
423 |
+
"rewards/final_correctness_reward_func": 0.25,
|
424 |
+
"rewards/question_recreation_reward_func": 0.49360471079126,
|
425 |
+
"rewards/soft_format_reward_func": 0.0,
|
426 |
+
"rewards/strict_format_reward_func": 0.046875,
|
427 |
+
"rewards/xmlcount_reward_func": 0.809687502682209,
|
428 |
+
"step": 44
|
429 |
+
},
|
430 |
+
{
|
431 |
+
"completion_length": 411.45454545454544,
|
432 |
+
"epoch": 3.0695652173913044,
|
433 |
+
"grad_norm": 281.8279113769531,
|
434 |
+
"kl": 62.15620172836564,
|
435 |
+
"learning_rate": 9.035545309958046e-07,
|
436 |
+
"loss": 0.0427,
|
437 |
+
"reward": 1.3393509787592022,
|
438 |
+
"reward_std": 1.1218569095839153,
|
439 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
440 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
441 |
+
"rewards/cumulative_reward_2": 0.0,
|
442 |
+
"rewards/final_correctness_reward_func": 0.18181818181818182,
|
443 |
+
"rewards/question_recreation_reward_func": 0.42680550942366774,
|
444 |
+
"rewards/soft_format_reward_func": 0.0,
|
445 |
+
"rewards/strict_format_reward_func": 0.09090909090909091,
|
446 |
+
"rewards/xmlcount_reward_func": 0.36709091744639655,
|
447 |
+
"step": 46
|
448 |
+
},
|
449 |
+
{
|
450 |
+
"completion_length": 447.8125,
|
451 |
+
"epoch": 3.208695652173913,
|
452 |
+
"grad_norm": 3.567924737930298,
|
453 |
+
"kl": 0.1984356112079695,
|
454 |
+
"learning_rate": 8.937837217887272e-07,
|
455 |
+
"loss": 0.0002,
|
456 |
+
"reward": 1.4719885361846536,
|
457 |
+
"reward_std": 1.0692140067085347,
|
458 |
+
"rewards/concensus_correctness_reward_func": 0.00787500012665987,
|
459 |
+
"rewards/consensus_reward_func": 0.25,
|
460 |
+
"rewards/cumulative_reward_2": 0.0,
|
461 |
+
"rewards/final_correctness_reward_func": 0.25,
|
462 |
+
"rewards/question_recreation_reward_func": 0.4144260432221927,
|
463 |
+
"rewards/soft_format_reward_func": 0.0,
|
464 |
+
"rewards/strict_format_reward_func": 0.0625,
|
465 |
+
"rewards/xmlcount_reward_func": 0.487187503837049,
|
466 |
+
"step": 48
|
467 |
+
},
|
468 |
+
{
|
469 |
+
"completion_length": 355.78125,
|
470 |
+
"epoch": 3.3478260869565215,
|
471 |
+
"grad_norm": 6.904684066772461,
|
472 |
+
"kl": 0.3303725360892713,
|
473 |
+
"learning_rate": 8.83599887835493e-07,
|
474 |
+
"loss": 0.0003,
|
475 |
+
"reward": 1.946224831044674,
|
476 |
+
"reward_std": 1.4707771465182304,
|
477 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
478 |
+
"rewards/consensus_reward_func": 0.375,
|
479 |
+
"rewards/cumulative_reward_2": 0.0,
|
480 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
481 |
+
"rewards/question_recreation_reward_func": 0.4765685759484768,
|
482 |
+
"rewards/soft_format_reward_func": 0.0,
|
483 |
+
"rewards/strict_format_reward_func": 0.078125,
|
484 |
+
"rewards/xmlcount_reward_func": 0.7040312550961971,
|
485 |
+
"step": 50
|
486 |
+
},
|
487 |
+
{
|
488 |
+
"completion_length": 256.5,
|
489 |
+
"epoch": 3.4869565217391303,
|
490 |
+
"grad_norm": 5.664855003356934,
|
491 |
+
"kl": 0.36116583459079266,
|
492 |
+
"learning_rate": 8.73013710571623e-07,
|
493 |
+
"loss": 0.0004,
|
494 |
+
"reward": 1.7132504982873797,
|
495 |
+
"reward_std": 1.3052820832235739,
|
496 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
497 |
+
"rewards/consensus_reward_func": 0.1875,
|
498 |
+
"rewards/cumulative_reward_2": 0.0,
|
499 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
500 |
+
"rewards/question_recreation_reward_func": 0.5305317317834124,
|
501 |
+
"rewards/soft_format_reward_func": 0.0,
|
502 |
+
"rewards/strict_format_reward_func": 0.109375,
|
503 |
+
"rewards/xmlcount_reward_func": 0.698343763127923,
|
504 |
+
"step": 52
|
505 |
+
},
|
506 |
+
{
|
507 |
+
"completion_length": 416.03125,
|
508 |
+
"epoch": 3.626086956521739,
|
509 |
+
"grad_norm": 5.109403133392334,
|
510 |
+
"kl": 0.26479395059868693,
|
511 |
+
"learning_rate": 8.620362934352108e-07,
|
512 |
+
"loss": 0.0003,
|
513 |
+
"reward": 1.4901817552745342,
|
514 |
+
"reward_std": 1.71798007003963,
|
515 |
+
"rewards/concensus_correctness_reward_func": 0.12806250154972076,
|
516 |
+
"rewards/consensus_reward_func": 0.25,
|
517 |
+
"rewards/cumulative_reward_2": 0.0,
|
518 |
+
"rewards/final_correctness_reward_func": 0.25,
|
519 |
+
"rewards/question_recreation_reward_func": 0.45561923924833536,
|
520 |
+
"rewards/soft_format_reward_func": 0.0,
|
521 |
+
"rewards/strict_format_reward_func": 0.03125,
|
522 |
+
"rewards/xmlcount_reward_func": 0.37524999491870403,
|
523 |
+
"step": 54
|
524 |
+
},
|
525 |
+
{
|
526 |
+
"completion_length": 274.25,
|
527 |
+
"epoch": 3.765217391304348,
|
528 |
+
"grad_norm": 6.084560394287109,
|
529 |
+
"kl": 0.44902627915143967,
|
530 |
+
"learning_rate": 8.506791502209496e-07,
|
531 |
+
"loss": 0.0004,
|
532 |
+
"reward": 2.3243369851261377,
|
533 |
+
"reward_std": 1.0572451442712918,
|
534 |
+
"rewards/concensus_correctness_reward_func": 0.06306250067427754,
|
535 |
+
"rewards/consensus_reward_func": 0.3125,
|
536 |
+
"rewards/cumulative_reward_2": 0.0,
|
537 |
+
"rewards/final_correctness_reward_func": 0.375,
|
538 |
+
"rewards/question_recreation_reward_func": 0.47302445746026933,
|
539 |
+
"rewards/soft_format_reward_func": 0.0,
|
540 |
+
"rewards/strict_format_reward_func": 0.140625,
|
541 |
+
"rewards/xmlcount_reward_func": 0.9601250104606152,
|
542 |
+
"step": 56
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"completion_length": 282.21875,
|
546 |
+
"epoch": 3.9043478260869566,
|
547 |
+
"grad_norm": 5.800886631011963,
|
548 |
+
"kl": 0.3701688055880368,
|
549 |
+
"learning_rate": 8.389541930037516e-07,
|
550 |
+
"loss": 0.0004,
|
551 |
+
"reward": 2.083632607012987,
|
552 |
+
"reward_std": 0.8866405207663774,
|
553 |
+
"rewards/concensus_correctness_reward_func": 0.06793750077486038,
|
554 |
+
"rewards/consensus_reward_func": 0.3125,
|
555 |
+
"rewards/cumulative_reward_2": 0.0,
|
556 |
+
"rewards/final_correctness_reward_func": 0.125,
|
557 |
+
"rewards/question_recreation_reward_func": 0.5871013961732388,
|
558 |
+
"rewards/soft_format_reward_func": 0.0,
|
559 |
+
"rewards/strict_format_reward_func": 0.140625,
|
560 |
+
"rewards/xmlcount_reward_func": 0.8504687547683716,
|
561 |
+
"step": 58
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"completion_length": 188.04545454545453,
|
565 |
+
"epoch": 4.0,
|
566 |
+
"grad_norm": 3.667579174041748,
|
567 |
+
"kl": 0.5356881266290491,
|
568 |
+
"learning_rate": 8.268737196446263e-07,
|
569 |
+
"loss": 0.0004,
|
570 |
+
"reward": 2.0462357076731594,
|
571 |
+
"reward_std": 0.6923801770264452,
|
572 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
573 |
+
"rewards/consensus_reward_func": 0.36363636363636365,
|
574 |
+
"rewards/cumulative_reward_2": 0.0,
|
575 |
+
"rewards/final_correctness_reward_func": 0.0,
|
576 |
+
"rewards/question_recreation_reward_func": 0.5550993525169112,
|
577 |
+
"rewards/soft_format_reward_func": 0.0,
|
578 |
+
"rewards/strict_format_reward_func": 0.09090909090909091,
|
579 |
+
"rewards/xmlcount_reward_func": 1.0365909121253274,
|
580 |
+
"step": 60
|
581 |
+
},
|
582 |
+
{
|
583 |
+
"completion_length": 332.0,
|
584 |
+
"epoch": 4.139130434782609,
|
585 |
+
"grad_norm": 7.300347328186035,
|
586 |
+
"kl": 0.4795700521208346,
|
587 |
+
"learning_rate": 8.144504008919222e-07,
|
588 |
+
"loss": 0.0005,
|
589 |
+
"reward": 1.7712411060929298,
|
590 |
+
"reward_std": 0.9126198044978082,
|
591 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
592 |
+
"rewards/consensus_reward_func": 0.25,
|
593 |
+
"rewards/cumulative_reward_2": 0.0,
|
594 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
595 |
+
"rewards/question_recreation_reward_func": 0.6377411026624031,
|
596 |
+
"rewards/soft_format_reward_func": 0.0,
|
597 |
+
"rewards/strict_format_reward_func": 0.078125,
|
598 |
+
"rewards/xmlcount_reward_func": 0.6827500015497208,
|
599 |
+
"step": 62
|
600 |
+
},
|
601 |
+
{
|
602 |
+
"completion_length": 325.15625,
|
603 |
+
"epoch": 4.278260869565218,
|
604 |
+
"grad_norm": 5.623091697692871,
|
605 |
+
"kl": 0.46719347033649683,
|
606 |
+
"learning_rate": 8.016972670914623e-07,
|
607 |
+
"loss": 0.0005,
|
608 |
+
"reward": 2.370351441204548,
|
609 |
+
"reward_std": 0.9159036946948618,
|
610 |
+
"rewards/concensus_correctness_reward_func": 0.023125000298023224,
|
611 |
+
"rewards/consensus_reward_func": 0.5625,
|
612 |
+
"rewards/cumulative_reward_2": 0.0,
|
613 |
+
"rewards/final_correctness_reward_func": 0.25,
|
614 |
+
"rewards/question_recreation_reward_func": 0.5068202022230253,
|
615 |
+
"rewards/soft_format_reward_func": 0.0,
|
616 |
+
"rewards/strict_format_reward_func": 0.09375,
|
617 |
+
"rewards/xmlcount_reward_func": 0.9341562539339066,
|
618 |
+
"step": 64
|
619 |
+
},
|
620 |
+
{
|
621 |
+
"completion_length": 237.28125,
|
622 |
+
"epoch": 4.417391304347826,
|
623 |
+
"grad_norm": 13.47927188873291,
|
624 |
+
"kl": 0.6326476326212287,
|
625 |
+
"learning_rate": 7.886276945195097e-07,
|
626 |
+
"loss": 0.0006,
|
627 |
+
"reward": 2.162361765280366,
|
628 |
+
"reward_std": 1.1361898751856643,
|
629 |
+
"rewards/concensus_correctness_reward_func": 0.04493749933317304,
|
630 |
+
"rewards/consensus_reward_func": 0.375,
|
631 |
+
"rewards/cumulative_reward_2": 0.0,
|
632 |
+
"rewards/final_correctness_reward_func": 0.25,
|
633 |
+
"rewards/question_recreation_reward_func": 0.4671117801917717,
|
634 |
+
"rewards/soft_format_reward_func": 0.0,
|
635 |
+
"rewards/strict_format_reward_func": 0.125,
|
636 |
+
"rewards/xmlcount_reward_func": 0.9003124982118607,
|
637 |
+
"step": 66
|
638 |
+
},
|
639 |
+
{
|
640 |
+
"completion_length": 306.21875,
|
641 |
+
"epoch": 4.556521739130435,
|
642 |
+
"grad_norm": 6.569784641265869,
|
643 |
+
"kl": 0.6667315466329455,
|
644 |
+
"learning_rate": 7.752553913529018e-07,
|
645 |
+
"loss": 0.0007,
|
646 |
+
"reward": 2.39416229352355,
|
647 |
+
"reward_std": 0.8820177484303713,
|
648 |
+
"rewards/concensus_correctness_reward_func": 0.00787500012665987,
|
649 |
+
"rewards/consensus_reward_func": 0.375,
|
650 |
+
"rewards/cumulative_reward_2": 0.0,
|
651 |
+
"rewards/final_correctness_reward_func": 0.375,
|
652 |
+
"rewards/question_recreation_reward_func": 0.5330685274675488,
|
653 |
+
"rewards/soft_format_reward_func": 0.0,
|
654 |
+
"rewards/strict_format_reward_func": 0.125,
|
655 |
+
"rewards/xmlcount_reward_func": 0.9782187566161156,
|
656 |
+
"step": 68
|
657 |
+
},
|
658 |
+
{
|
659 |
+
"completion_length": 252.125,
|
660 |
+
"epoch": 4.695652173913043,
|
661 |
+
"grad_norm": 9.948299407958984,
|
662 |
+
"kl": 0.5775284115225077,
|
663 |
+
"learning_rate": 7.61594383291065e-07,
|
664 |
+
"loss": 0.0006,
|
665 |
+
"reward": 1.8165949955582619,
|
666 |
+
"reward_std": 0.8422716949135065,
|
667 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
668 |
+
"rewards/consensus_reward_func": 0.25,
|
669 |
+
"rewards/cumulative_reward_2": 0.0,
|
670 |
+
"rewards/final_correctness_reward_func": 0.0,
|
671 |
+
"rewards/question_recreation_reward_func": 0.4778762402711436,
|
672 |
+
"rewards/soft_format_reward_func": 0.0,
|
673 |
+
"rewards/strict_format_reward_func": 0.125,
|
674 |
+
"rewards/xmlcount_reward_func": 0.9637187533080578,
|
675 |
+
"step": 70
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"completion_length": 305.875,
|
679 |
+
"epoch": 4.834782608695652,
|
680 |
+
"grad_norm": 6.913571357727051,
|
681 |
+
"kl": 0.5833932915702462,
|
682 |
+
"learning_rate": 7.476589988449938e-07,
|
683 |
+
"loss": 0.0006,
|
684 |
+
"reward": 1.5893209166824818,
|
685 |
+
"reward_std": 0.9271868723444641,
|
686 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
687 |
+
"rewards/consensus_reward_func": 0.1875,
|
688 |
+
"rewards/cumulative_reward_2": 0.0,
|
689 |
+
"rewards/final_correctness_reward_func": 0.125,
|
690 |
+
"rewards/question_recreation_reward_func": 0.46325845512910746,
|
691 |
+
"rewards/soft_format_reward_func": 0.0,
|
692 |
+
"rewards/strict_format_reward_func": 0.109375,
|
693 |
+
"rewards/xmlcount_reward_func": 0.7041874974966049,
|
694 |
+
"step": 72
|
695 |
+
},
|
696 |
+
{
|
697 |
+
"completion_length": 316.6875,
|
698 |
+
"epoch": 4.973913043478261,
|
699 |
+
"grad_norm": 8.020514488220215,
|
700 |
+
"kl": 1.4912343490868807,
|
701 |
+
"learning_rate": 7.334638543086203e-07,
|
702 |
+
"loss": 0.0015,
|
703 |
+
"reward": 2.227024871855974,
|
704 |
+
"reward_std": 1.0563541476149112,
|
705 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
706 |
+
"rewards/consensus_reward_func": 0.1875,
|
707 |
+
"rewards/cumulative_reward_2": 0.0,
|
708 |
+
"rewards/final_correctness_reward_func": 0.5625,
|
709 |
+
"rewards/question_recreation_reward_func": 0.4756498399656266,
|
710 |
+
"rewards/soft_format_reward_func": 0.0,
|
711 |
+
"rewards/strict_format_reward_func": 0.109375,
|
712 |
+
"rewards/xmlcount_reward_func": 0.8919999971985817,
|
713 |
+
"step": 74
|
714 |
+
},
|
715 |
+
{
|
716 |
+
"completion_length": 368.77272727272725,
|
717 |
+
"epoch": 5.069565217391304,
|
718 |
+
"grad_norm": 7.067770957946777,
|
719 |
+
"kl": 0.7251402681524103,
|
720 |
+
"learning_rate": 7.190238384283412e-07,
|
721 |
+
"loss": 0.0005,
|
722 |
+
"reward": 1.581421895460649,
|
723 |
+
"reward_std": 1.238969932902943,
|
724 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
725 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
726 |
+
"rewards/cumulative_reward_2": 0.0,
|
727 |
+
"rewards/final_correctness_reward_func": 0.0,
|
728 |
+
"rewards/question_recreation_reward_func": 0.3257855162532492,
|
729 |
+
"rewards/soft_format_reward_func": 0.0,
|
730 |
+
"rewards/strict_format_reward_func": 0.13636363636363635,
|
731 |
+
"rewards/xmlcount_reward_func": 0.8465454578399658,
|
732 |
+
"step": 76
|
733 |
+
},
|
734 |
+
{
|
735 |
+
"completion_length": 300.25,
|
736 |
+
"epoch": 5.208695652173913,
|
737 |
+
"grad_norm": 5.457042217254639,
|
738 |
+
"kl": 1.8599772108718753,
|
739 |
+
"learning_rate": 7.043540967867781e-07,
|
740 |
+
"loss": 0.0019,
|
741 |
+
"reward": 2.499551836401224,
|
742 |
+
"reward_std": 1.034086337662302,
|
743 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
744 |
+
"rewards/consensus_reward_func": 0.4375,
|
745 |
+
"rewards/cumulative_reward_2": 0.0,
|
746 |
+
"rewards/final_correctness_reward_func": 0.5,
|
747 |
+
"rewards/question_recreation_reward_func": 0.7101768124848604,
|
748 |
+
"rewards/soft_format_reward_func": 0.0,
|
749 |
+
"rewards/strict_format_reward_func": 0.03125,
|
750 |
+
"rewards/xmlcount_reward_func": 0.8206249997019768,
|
751 |
+
"step": 78
|
752 |
+
},
|
753 |
+
{
|
754 |
+
"completion_length": 251.78125,
|
755 |
+
"epoch": 5.3478260869565215,
|
756 |
+
"grad_norm": 6.8296637535095215,
|
757 |
+
"kl": 1.4302785657346249,
|
758 |
+
"learning_rate": 6.894700159171534e-07,
|
759 |
+
"loss": 0.0014,
|
760 |
+
"reward": 2.0862809866666794,
|
761 |
+
"reward_std": 1.1299847126938403,
|
762 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
763 |
+
"rewards/consensus_reward_func": 0.5,
|
764 |
+
"rewards/cumulative_reward_2": 0.0,
|
765 |
+
"rewards/final_correctness_reward_func": 0.0,
|
766 |
+
"rewards/question_recreation_reward_func": 0.45674972841516137,
|
767 |
+
"rewards/soft_format_reward_func": 0.0,
|
768 |
+
"rewards/strict_format_reward_func": 0.109375,
|
769 |
+
"rewards/xmlcount_reward_func": 1.012343741953373,
|
770 |
+
"step": 80
|
771 |
+
},
|
772 |
+
{
|
773 |
+
"completion_length": 277.28125,
|
774 |
+
"epoch": 5.48695652173913,
|
775 |
+
"grad_norm": 14.91946792602539,
|
776 |
+
"kl": 4.983186790719628,
|
777 |
+
"learning_rate": 6.743872071649411e-07,
|
778 |
+
"loss": 0.005,
|
779 |
+
"reward": 2.2909165136516094,
|
780 |
+
"reward_std": 0.771335305791581,
|
781 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
782 |
+
"rewards/consensus_reward_func": 0.5625,
|
783 |
+
"rewards/cumulative_reward_2": 0.0,
|
784 |
+
"rewards/final_correctness_reward_func": 0.25,
|
785 |
+
"rewards/question_recreation_reward_func": 0.5036664966028184,
|
786 |
+
"rewards/soft_format_reward_func": 0.0,
|
787 |
+
"rewards/strict_format_reward_func": 0.109375,
|
788 |
+
"rewards/xmlcount_reward_func": 0.8653750023804605,
|
789 |
+
"step": 82
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"completion_length": 226.3125,
|
793 |
+
"epoch": 5.626086956521739,
|
794 |
+
"grad_norm": 6.772074222564697,
|
795 |
+
"kl": 0.7162865996360779,
|
796 |
+
"learning_rate": 6.59121490313722e-07,
|
797 |
+
"loss": 0.0007,
|
798 |
+
"reward": 2.433136470615864,
|
799 |
+
"reward_std": 1.169273011459154,
|
800 |
+
"rewards/concensus_correctness_reward_func": 0.023125000298023224,
|
801 |
+
"rewards/consensus_reward_func": 0.3125,
|
802 |
+
"rewards/cumulative_reward_2": 0.0,
|
803 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
804 |
+
"rewards/question_recreation_reward_func": 0.6323864688165486,
|
805 |
+
"rewards/soft_format_reward_func": 0.0,
|
806 |
+
"rewards/strict_format_reward_func": 0.15625,
|
807 |
+
"rewards/xmlcount_reward_func": 0.9963750019669533,
|
808 |
+
"step": 84
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"completion_length": 312.71875,
|
812 |
+
"epoch": 5.765217391304348,
|
813 |
+
"grad_norm": 8.089889526367188,
|
814 |
+
"kl": 0.8305776445195079,
|
815 |
+
"learning_rate": 6.436888769924141e-07,
|
816 |
+
"loss": 0.0008,
|
817 |
+
"reward": 2.09120103251189,
|
818 |
+
"reward_std": 0.8542511662235484,
|
819 |
+
"rewards/concensus_correctness_reward_func": 0.002937499899417162,
|
820 |
+
"rewards/consensus_reward_func": 0.4375,
|
821 |
+
"rewards/cumulative_reward_2": 0.0,
|
822 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
823 |
+
"rewards/question_recreation_reward_func": 0.5309822625713423,
|
824 |
+
"rewards/soft_format_reward_func": 0.0,
|
825 |
+
"rewards/strict_format_reward_func": 0.140625,
|
826 |
+
"rewards/xmlcount_reward_func": 0.9166562501341105,
|
827 |
+
"step": 86
|
828 |
+
},
|
829 |
+
{
|
830 |
+
"completion_length": 222.25,
|
831 |
+
"epoch": 5.904347826086957,
|
832 |
+
"grad_norm": 8.415414810180664,
|
833 |
+
"kl": 0.8001231420785189,
|
834 |
+
"learning_rate": 6.281055538812861e-07,
|
835 |
+
"loss": 0.0008,
|
836 |
+
"reward": 3.005630634725094,
|
837 |
+
"reward_std": 1.0765592579264194,
|
838 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
839 |
+
"rewards/consensus_reward_func": 0.5625,
|
840 |
+
"rewards/cumulative_reward_2": 0.0,
|
841 |
+
"rewards/final_correctness_reward_func": 0.5625,
|
842 |
+
"rewards/question_recreation_reward_func": 0.7028806544840336,
|
843 |
+
"rewards/soft_format_reward_func": 0.0,
|
844 |
+
"rewards/strict_format_reward_func": 0.125,
|
845 |
+
"rewards/xmlcount_reward_func": 1.0527499988675117,
|
846 |
+
"step": 88
|
847 |
+
},
|
848 |
+
{
|
849 |
+
"completion_length": 244.8181818181818,
|
850 |
+
"epoch": 6.0,
|
851 |
+
"grad_norm": 4.685628890991211,
|
852 |
+
"kl": 1.208802805705504,
|
853 |
+
"learning_rate": 6.123878657343647e-07,
|
854 |
+
"loss": 0.0008,
|
855 |
+
"reward": 2.176835905421864,
|
856 |
+
"reward_std": 0.7615151606150903,
|
857 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
858 |
+
"rewards/consensus_reward_func": 0.45454545454545453,
|
859 |
+
"rewards/cumulative_reward_2": 0.0,
|
860 |
+
"rewards/final_correctness_reward_func": 0.0,
|
861 |
+
"rewards/question_recreation_reward_func": 0.6479268099435351,
|
862 |
+
"rewards/soft_format_reward_func": 0.0,
|
863 |
+
"rewards/strict_format_reward_func": 0.06818181818181818,
|
864 |
+
"rewards/xmlcount_reward_func": 1.0061818198724226,
|
865 |
+
"step": 90
|
866 |
+
},
|
867 |
+
{
|
868 |
+
"completion_length": 267.21875,
|
869 |
+
"epoch": 6.139130434782609,
|
870 |
+
"grad_norm": 8.282288551330566,
|
871 |
+
"kl": 0.8628208544105291,
|
872 |
+
"learning_rate": 5.96552298236044e-07,
|
873 |
+
"loss": 0.0009,
|
874 |
+
"reward": 2.53002592921257,
|
875 |
+
"reward_std": 1.104838589206338,
|
876 |
+
"rewards/concensus_correctness_reward_func": 0.08362499997019768,
|
877 |
+
"rewards/consensus_reward_func": 0.5625,
|
878 |
+
"rewards/cumulative_reward_2": 0.0,
|
879 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
880 |
+
"rewards/question_recreation_reward_func": 0.5674946635845117,
|
881 |
+
"rewards/soft_format_reward_func": 0.0,
|
882 |
+
"rewards/strict_format_reward_func": 0.125,
|
883 |
+
"rewards/xmlcount_reward_func": 1.00390625,
|
884 |
+
"step": 92
|
885 |
+
},
|
886 |
+
{
|
887 |
+
"completion_length": 181.5,
|
888 |
+
"epoch": 6.278260869565218,
|
889 |
+
"grad_norm": 9.85130786895752,
|
890 |
+
"kl": 1.7928204946219921,
|
891 |
+
"learning_rate": 5.806154607098799e-07,
|
892 |
+
"loss": 0.0018,
|
893 |
+
"reward": 2.152442406862974,
|
894 |
+
"reward_std": 1.13260851893574,
|
895 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
896 |
+
"rewards/consensus_reward_func": 0.5,
|
897 |
+
"rewards/cumulative_reward_2": 0.0,
|
898 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
899 |
+
"rewards/question_recreation_reward_func": 0.5069423970999196,
|
900 |
+
"rewards/soft_format_reward_func": 0.0,
|
901 |
+
"rewards/strict_format_reward_func": 0.15625,
|
902 |
+
"rewards/xmlcount_reward_func": 0.8017499931156635,
|
903 |
+
"step": 94
|
904 |
+
},
|
905 |
+
{
|
906 |
+
"completion_length": 263.0625,
|
907 |
+
"epoch": 6.417391304347826,
|
908 |
+
"grad_norm": 6.899081707000732,
|
909 |
+
"kl": 2.110007011331618,
|
910 |
+
"learning_rate": 5.645940686977032e-07,
|
911 |
+
"loss": 0.0021,
|
912 |
+
"reward": 2.49395909672603,
|
913 |
+
"reward_std": 0.8543318175070453,
|
914 |
+
"rewards/concensus_correctness_reward_func": 0.06306250067427754,
|
915 |
+
"rewards/consensus_reward_func": 0.3125,
|
916 |
+
"rewards/cumulative_reward_2": 0.0,
|
917 |
+
"rewards/final_correctness_reward_func": 0.4375,
|
918 |
+
"rewards/question_recreation_reward_func": 0.5518965632654727,
|
919 |
+
"rewards/soft_format_reward_func": 0.0,
|
920 |
+
"rewards/strict_format_reward_func": 0.125,
|
921 |
+
"rewards/xmlcount_reward_func": 1.003999998793006,
|
922 |
+
"step": 96
|
923 |
+
},
|
924 |
+
{
|
925 |
+
"completion_length": 256.8125,
|
926 |
+
"epoch": 6.556521739130435,
|
927 |
+
"grad_norm": 18.260860443115234,
|
928 |
+
"kl": 184.23545500356704,
|
929 |
+
"learning_rate": 5.485049264273241e-07,
|
930 |
+
"loss": 0.1842,
|
931 |
+
"reward": 2.550303913652897,
|
932 |
+
"reward_std": 1.0439958362840116,
|
933 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
934 |
+
"rewards/consensus_reward_func": 0.625,
|
935 |
+
"rewards/cumulative_reward_2": 0.0,
|
936 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
937 |
+
"rewards/question_recreation_reward_func": 0.5270226672291756,
|
938 |
+
"rewards/soft_format_reward_func": 0.0,
|
939 |
+
"rewards/strict_format_reward_func": 0.09375,
|
940 |
+
"rewards/xmlcount_reward_func": 0.992031256944756,
|
941 |
+
"step": 98
|
942 |
+
},
|
943 |
+
{
|
944 |
+
"completion_length": 220.03125,
|
945 |
+
"epoch": 6.695652173913043,
|
946 |
+
"grad_norm": 9.59844970703125,
|
947 |
+
"kl": 3.6100155413150787,
|
948 |
+
"learning_rate": 5.323649091872178e-07,
|
949 |
+
"loss": 0.0036,
|
950 |
+
"reward": 2.1622604355216026,
|
951 |
+
"reward_std": 0.7708862484432757,
|
952 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
953 |
+
"rewards/consensus_reward_func": 0.3125,
|
954 |
+
"rewards/cumulative_reward_2": 0.0,
|
955 |
+
"rewards/final_correctness_reward_func": 0.125,
|
956 |
+
"rewards/question_recreation_reward_func": 0.5648229457437992,
|
957 |
+
"rewards/soft_format_reward_func": 0.0,
|
958 |
+
"rewards/strict_format_reward_func": 0.109375,
|
959 |
+
"rewards/xmlcount_reward_func": 1.0505624990910292,
|
960 |
+
"step": 100
|
961 |
+
},
|
962 |
+
{
|
963 |
+
"completion_length": 255.9375,
|
964 |
+
"epoch": 6.834782608695652,
|
965 |
+
"grad_norm": 1083.08447265625,
|
966 |
+
"kl": 108.32859648019075,
|
967 |
+
"learning_rate": 5.16190945626678e-07,
|
968 |
+
"loss": 0.1083,
|
969 |
+
"reward": 2.1181236431002617,
|
970 |
+
"reward_std": 1.1967912218533456,
|
971 |
+
"rewards/concensus_correctness_reward_func": 0.023125000298023224,
|
972 |
+
"rewards/consensus_reward_func": 0.4375,
|
973 |
+
"rewards/cumulative_reward_2": 0.0,
|
974 |
+
"rewards/final_correctness_reward_func": 0.0,
|
975 |
+
"rewards/question_recreation_reward_func": 0.5055924141779542,
|
976 |
+
"rewards/soft_format_reward_func": 0.0,
|
977 |
+
"rewards/strict_format_reward_func": 0.15625,
|
978 |
+
"rewards/xmlcount_reward_func": 0.9956562481820583,
|
979 |
+
"step": 102
|
980 |
+
},
|
981 |
+
{
|
982 |
+
"completion_length": 207.9375,
|
983 |
+
"epoch": 6.973913043478261,
|
984 |
+
"grad_norm": 18.834930419921875,
|
985 |
+
"kl": 1.1226458940654993,
|
986 |
+
"learning_rate": 5e-07,
|
987 |
+
"loss": 0.0011,
|
988 |
+
"reward": 2.31644020229578,
|
989 |
+
"reward_std": 0.9884734419174492,
|
990 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
991 |
+
"rewards/consensus_reward_func": 0.1875,
|
992 |
+
"rewards/cumulative_reward_2": 0.0,
|
993 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
994 |
+
"rewards/question_recreation_reward_func": 0.6385339261032641,
|
995 |
+
"rewards/soft_format_reward_func": 0.0,
|
996 |
+
"rewards/strict_format_reward_func": 0.171875,
|
997 |
+
"rewards/xmlcount_reward_func": 0.9982187487185001,
|
998 |
+
"step": 104
|
999 |
+
},
|
1000 |
+
{
|
1001 |
+
"completion_length": 207.0,
|
1002 |
+
"epoch": 7.069565217391304,
|
1003 |
+
"grad_norm": 8.474045753479004,
|
1004 |
+
"kl": 1.4795172661542892,
|
1005 |
+
"learning_rate": 4.838090543733221e-07,
|
1006 |
+
"loss": 0.001,
|
1007 |
+
"reward": 1.957890353419564,
|
1008 |
+
"reward_std": 0.989645315842195,
|
1009 |
+
"rewards/concensus_correctness_reward_func": 0.1749090931632302,
|
1010 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
1011 |
+
"rewards/cumulative_reward_2": 0.0,
|
1012 |
+
"rewards/final_correctness_reward_func": 0.09090909090909091,
|
1013 |
+
"rewards/question_recreation_reward_func": 0.29198128560727293,
|
1014 |
+
"rewards/soft_format_reward_func": 0.0,
|
1015 |
+
"rewards/strict_format_reward_func": 0.1590909090909091,
|
1016 |
+
"rewards/xmlcount_reward_func": 0.9682727293534712,
|
1017 |
+
"step": 106
|
1018 |
+
},
|
1019 |
+
{
|
1020 |
+
"completion_length": 220.65625,
|
1021 |
+
"epoch": 7.208695652173913,
|
1022 |
+
"grad_norm": 14.130478858947754,
|
1023 |
+
"kl": 2.5718741063028574,
|
1024 |
+
"learning_rate": 4.676350908127821e-07,
|
1025 |
+
"loss": 0.0026,
|
1026 |
+
"reward": 2.538029946386814,
|
1027 |
+
"reward_std": 1.10915404278785,
|
1028 |
+
"rewards/concensus_correctness_reward_func": 0.07531250268220901,
|
1029 |
+
"rewards/consensus_reward_func": 0.4375,
|
1030 |
+
"rewards/cumulative_reward_2": 0.0,
|
1031 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1032 |
+
"rewards/question_recreation_reward_func": 0.4872799450531602,
|
1033 |
+
"rewards/soft_format_reward_func": 0.0,
|
1034 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1035 |
+
"rewards/xmlcount_reward_func": 1.0223124995827675,
|
1036 |
+
"step": 108
|
1037 |
+
},
|
1038 |
+
{
|
1039 |
+
"completion_length": 220.6875,
|
1040 |
+
"epoch": 7.3478260869565215,
|
1041 |
+
"grad_norm": 73.57449340820312,
|
1042 |
+
"kl": 12.105563743039966,
|
1043 |
+
"learning_rate": 4.5149507357267597e-07,
|
1044 |
+
"loss": 0.0121,
|
1045 |
+
"reward": 2.2664614617824554,
|
1046 |
+
"reward_std": 0.7128497480880469,
|
1047 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
1048 |
+
"rewards/consensus_reward_func": 0.25,
|
1049 |
+
"rewards/cumulative_reward_2": 0.0,
|
1050 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1051 |
+
"rewards/question_recreation_reward_func": 0.6024927124381065,
|
1052 |
+
"rewards/soft_format_reward_func": 0.0,
|
1053 |
+
"rewards/strict_format_reward_func": 0.078125,
|
1054 |
+
"rewards/xmlcount_reward_func": 0.9632187522947788,
|
1055 |
+
"step": 110
|
1056 |
+
},
|
1057 |
+
{
|
1058 |
+
"completion_length": 253.90625,
|
1059 |
+
"epoch": 7.48695652173913,
|
1060 |
+
"grad_norm": 54.51780319213867,
|
1061 |
+
"kl": 2.1332995407283306,
|
1062 |
+
"learning_rate": 4.354059313022969e-07,
|
1063 |
+
"loss": 0.0021,
|
1064 |
+
"reward": 2.2279574600979686,
|
1065 |
+
"reward_std": 0.8801067136228085,
|
1066 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1067 |
+
"rewards/consensus_reward_func": 0.4375,
|
1068 |
+
"rewards/cumulative_reward_2": 0.0,
|
1069 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1070 |
+
"rewards/question_recreation_reward_func": 0.6197387175634503,
|
1071 |
+
"rewards/soft_format_reward_func": 0.0,
|
1072 |
+
"rewards/strict_format_reward_func": 0.078125,
|
1073 |
+
"rewards/xmlcount_reward_func": 0.9675937481224537,
|
1074 |
+
"step": 112
|
1075 |
+
},
|
1076 |
+
{
|
1077 |
+
"completion_length": 211.25,
|
1078 |
+
"epoch": 7.626086956521739,
|
1079 |
+
"grad_norm": 159.7990264892578,
|
1080 |
+
"kl": 25.76554438099265,
|
1081 |
+
"learning_rate": 4.193845392901201e-07,
|
1082 |
+
"loss": 0.0258,
|
1083 |
+
"reward": 2.2389425486326218,
|
1084 |
+
"reward_std": 1.1582523677498102,
|
1085 |
+
"rewards/concensus_correctness_reward_func": 0.06200000084936619,
|
1086 |
+
"rewards/consensus_reward_func": 0.5625,
|
1087 |
+
"rewards/cumulative_reward_2": 0.0,
|
1088 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1089 |
+
"rewards/question_recreation_reward_func": 0.5203800578601658,
|
1090 |
+
"rewards/soft_format_reward_func": 0.0,
|
1091 |
+
"rewards/strict_format_reward_func": 0.171875,
|
1092 |
+
"rewards/xmlcount_reward_func": 0.8596874997019768,
|
1093 |
+
"step": 114
|
1094 |
+
},
|
1095 |
+
{
|
1096 |
+
"completion_length": 210.25,
|
1097 |
+
"epoch": 7.765217391304348,
|
1098 |
+
"grad_norm": 13.044373512268066,
|
1099 |
+
"kl": 2.701926039531827,
|
1100 |
+
"learning_rate": 4.0344770176395606e-07,
|
1101 |
+
"loss": 0.0027,
|
1102 |
+
"reward": 2.635610952973366,
|
1103 |
+
"reward_std": 0.8873360179131851,
|
1104 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
1105 |
+
"rewards/consensus_reward_func": 0.4375,
|
1106 |
+
"rewards/cumulative_reward_2": 0.0,
|
1107 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1108 |
+
"rewards/question_recreation_reward_func": 0.5737046892754734,
|
1109 |
+
"rewards/soft_format_reward_func": 0.0,
|
1110 |
+
"rewards/strict_format_reward_func": 0.171875,
|
1111 |
+
"rewards/xmlcount_reward_func": 1.0799062512814999,
|
1112 |
+
"step": 116
|
1113 |
+
},
|
1114 |
+
{
|
1115 |
+
"completion_length": 194.1875,
|
1116 |
+
"epoch": 7.904347826086957,
|
1117 |
+
"grad_norm": 68.57621765136719,
|
1118 |
+
"kl": 11.136024549603462,
|
1119 |
+
"learning_rate": 3.8761213426563543e-07,
|
1120 |
+
"loss": 0.0111,
|
1121 |
+
"reward": 2.058164719492197,
|
1122 |
+
"reward_std": 0.8319246040773578,
|
1123 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1124 |
+
"rewards/consensus_reward_func": 0.25,
|
1125 |
+
"rewards/cumulative_reward_2": 0.0,
|
1126 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
1127 |
+
"rewards/question_recreation_reward_func": 0.5028522202628665,
|
1128 |
+
"rewards/soft_format_reward_func": 0.0,
|
1129 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1130 |
+
"rewards/xmlcount_reward_func": 0.9771874994039536,
|
1131 |
+
"step": 118
|
1132 |
+
},
|
1133 |
+
{
|
1134 |
+
"completion_length": 227.77272727272728,
|
1135 |
+
"epoch": 8.0,
|
1136 |
+
"grad_norm": 4.235458850860596,
|
1137 |
+
"kl": 0.7800953428853642,
|
1138 |
+
"learning_rate": 3.718944461187138e-07,
|
1139 |
+
"loss": 0.0005,
|
1140 |
+
"reward": 2.4683791913769464,
|
1141 |
+
"reward_std": 1.1513721336695282,
|
1142 |
+
"rewards/concensus_correctness_reward_func": 0.24663636901161887,
|
1143 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
1144 |
+
"rewards/cumulative_reward_2": 0.0,
|
1145 |
+
"rewards/final_correctness_reward_func": 0.18181818181818182,
|
1146 |
+
"rewards/question_recreation_reward_func": 0.5853791890496557,
|
1147 |
+
"rewards/soft_format_reward_func": 0.0,
|
1148 |
+
"rewards/strict_format_reward_func": 0.18181818181818182,
|
1149 |
+
"rewards/xmlcount_reward_func": 1.0,
|
1150 |
+
"step": 120
|
1151 |
+
},
|
1152 |
+
{
|
1153 |
+
"completion_length": 206.28125,
|
1154 |
+
"epoch": 8.139130434782608,
|
1155 |
+
"grad_norm": 7.901040077209473,
|
1156 |
+
"kl": 3.598771570250392,
|
1157 |
+
"learning_rate": 3.563111230075859e-07,
|
1158 |
+
"loss": 0.0036,
|
1159 |
+
"reward": 2.611336261034012,
|
1160 |
+
"reward_std": 1.0124397999607027,
|
1161 |
+
"rewards/concensus_correctness_reward_func": 0.046937499195337296,
|
1162 |
+
"rewards/consensus_reward_func": 0.375,
|
1163 |
+
"rewards/cumulative_reward_2": 0.0,
|
1164 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1165 |
+
"rewards/question_recreation_reward_func": 0.5948674763785675,
|
1166 |
+
"rewards/soft_format_reward_func": 0.0,
|
1167 |
+
"rewards/strict_format_reward_func": 0.15625,
|
1168 |
+
"rewards/xmlcount_reward_func": 1.063281249254942,
|
1169 |
+
"step": 122
|
1170 |
+
},
|
1171 |
+
{
|
1172 |
+
"completion_length": 250.65625,
|
1173 |
+
"epoch": 8.278260869565218,
|
1174 |
+
"grad_norm": 44.01518249511719,
|
1175 |
+
"kl": 17.306198243051767,
|
1176 |
+
"learning_rate": 3.408785096862782e-07,
|
1177 |
+
"loss": 0.0173,
|
1178 |
+
"reward": 2.0046014823019505,
|
1179 |
+
"reward_std": 0.8732773018418811,
|
1180 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1181 |
+
"rewards/consensus_reward_func": 0.3125,
|
1182 |
+
"rewards/cumulative_reward_2": 0.0,
|
1183 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
1184 |
+
"rewards/question_recreation_reward_func": 0.5254452758817933,
|
1185 |
+
"rewards/soft_format_reward_func": 0.0,
|
1186 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1187 |
+
"rewards/xmlcount_reward_func": 0.838531251065433,
|
1188 |
+
"step": 124
|
1189 |
+
},
|
1190 |
+
{
|
1191 |
+
"completion_length": 225.90625,
|
1192 |
+
"epoch": 8.417391304347825,
|
1193 |
+
"grad_norm": 9.30581283569336,
|
1194 |
+
"kl": 1.4135937942191958,
|
1195 |
+
"learning_rate": 3.2561279283505884e-07,
|
1196 |
+
"loss": 0.0014,
|
1197 |
+
"reward": 2.6753682233393192,
|
1198 |
+
"reward_std": 0.8414170006290078,
|
1199 |
+
"rewards/concensus_correctness_reward_func": 0.09375,
|
1200 |
+
"rewards/consensus_reward_func": 0.25,
|
1201 |
+
"rewards/cumulative_reward_2": 0.0,
|
1202 |
+
"rewards/final_correctness_reward_func": 0.5,
|
1203 |
+
"rewards/question_recreation_reward_func": 0.5598682607524097,
|
1204 |
+
"rewards/soft_format_reward_func": 0.0,
|
1205 |
+
"rewards/strict_format_reward_func": 0.171875,
|
1206 |
+
"rewards/xmlcount_reward_func": 1.099874995648861,
|
1207 |
+
"step": 126
|
1208 |
+
},
|
1209 |
+
{
|
1210 |
+
"completion_length": 218.71875,
|
1211 |
+
"epoch": 8.556521739130435,
|
1212 |
+
"grad_norm": 20.533634185791016,
|
1213 |
+
"kl": 20.78130498714745,
|
1214 |
+
"learning_rate": 3.105299840828466e-07,
|
1215 |
+
"loss": 0.0208,
|
1216 |
+
"reward": 2.386717677116394,
|
1217 |
+
"reward_std": 1.0223115284607047,
|
1218 |
+
"rewards/concensus_correctness_reward_func": 0.002937499899417162,
|
1219 |
+
"rewards/consensus_reward_func": 0.375,
|
1220 |
+
"rewards/cumulative_reward_2": 0.0,
|
1221 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1222 |
+
"rewards/question_recreation_reward_func": 0.6662176549434662,
|
1223 |
+
"rewards/soft_format_reward_func": 0.0,
|
1224 |
+
"rewards/strict_format_reward_func": 0.03125,
|
1225 |
+
"rewards/xmlcount_reward_func": 0.9363125041127205,
|
1226 |
+
"step": 128
|
1227 |
+
},
|
1228 |
+
{
|
1229 |
+
"completion_length": 255.84375,
|
1230 |
+
"epoch": 8.695652173913043,
|
1231 |
+
"grad_norm": 9.14978313446045,
|
1232 |
+
"kl": 5.343452694825828,
|
1233 |
+
"learning_rate": 2.95645903213222e-07,
|
1234 |
+
"loss": 0.0053,
|
1235 |
+
"reward": 2.0137369483709335,
|
1236 |
+
"reward_std": 0.7903293974231929,
|
1237 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
1238 |
+
"rewards/consensus_reward_func": 0.5,
|
1239 |
+
"rewards/cumulative_reward_2": 0.0,
|
1240 |
+
"rewards/final_correctness_reward_func": 0.0,
|
1241 |
+
"rewards/question_recreation_reward_func": 0.4925806714454666,
|
1242 |
+
"rewards/soft_format_reward_func": 0.0,
|
1243 |
+
"rewards/strict_format_reward_func": 0.078125,
|
1244 |
+
"rewards/xmlcount_reward_func": 0.8829062543809414,
|
1245 |
+
"step": 130
|
1246 |
+
},
|
1247 |
+
{
|
1248 |
+
"completion_length": 206.15625,
|
1249 |
+
"epoch": 8.834782608695653,
|
1250 |
+
"grad_norm": 35.50223922729492,
|
1251 |
+
"kl": 4518.369264254812,
|
1252 |
+
"learning_rate": 2.8097616157165885e-07,
|
1253 |
+
"loss": 4.5184,
|
1254 |
+
"reward": 2.349446440115571,
|
1255 |
+
"reward_std": 0.8132072143489495,
|
1256 |
+
"rewards/concensus_correctness_reward_func": 0.06793750077486038,
|
1257 |
+
"rewards/consensus_reward_func": 0.5,
|
1258 |
+
"rewards/cumulative_reward_2": 0.0,
|
1259 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1260 |
+
"rewards/question_recreation_reward_func": 0.5124463941901922,
|
1261 |
+
"rewards/soft_format_reward_func": 0.0,
|
1262 |
+
"rewards/strict_format_reward_func": 0.171875,
|
1263 |
+
"rewards/xmlcount_reward_func": 0.9721875041723251,
|
1264 |
+
"step": 132
|
1265 |
+
},
|
1266 |
+
{
|
1267 |
+
"completion_length": 283.1875,
|
1268 |
+
"epoch": 8.97391304347826,
|
1269 |
+
"grad_norm": 11.386509895324707,
|
1270 |
+
"kl": 2.30714722070843,
|
1271 |
+
"learning_rate": 2.665361456913797e-07,
|
1272 |
+
"loss": 0.0023,
|
1273 |
+
"reward": 2.2854321654886007,
|
1274 |
+
"reward_std": 0.8833654799964279,
|
1275 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
1276 |
+
"rewards/consensus_reward_func": 0.375,
|
1277 |
+
"rewards/cumulative_reward_2": 0.0,
|
1278 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1279 |
+
"rewards/question_recreation_reward_func": 0.5298071521683596,
|
1280 |
+
"rewards/soft_format_reward_func": 0.0,
|
1281 |
+
"rewards/strict_format_reward_func": 0.1875,
|
1282 |
+
"rewards/xmlcount_reward_func": 1.0079999975860119,
|
1283 |
+
"step": 134
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"completion_length": 276.54545454545456,
|
1287 |
+
"epoch": 9.069565217391304,
|
1288 |
+
"grad_norm": 36.2149772644043,
|
1289 |
+
"kl": 8.192625154148448,
|
1290 |
+
"learning_rate": 2.523410011550064e-07,
|
1291 |
+
"loss": 0.0056,
|
1292 |
+
"reward": 1.7320992946624756,
|
1293 |
+
"reward_std": 0.8099311292171478,
|
1294 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1295 |
+
"rewards/consensus_reward_func": 0.2727272727272727,
|
1296 |
+
"rewards/cumulative_reward_2": 0.0,
|
1297 |
+
"rewards/final_correctness_reward_func": 0.0,
|
1298 |
+
"rewards/question_recreation_reward_func": 0.4210083870725198,
|
1299 |
+
"rewards/soft_format_reward_func": 0.0,
|
1300 |
+
"rewards/strict_format_reward_func": 0.11363636363636363,
|
1301 |
+
"rewards/xmlcount_reward_func": 0.9247272664850409,
|
1302 |
+
"step": 136
|
1303 |
+
},
|
1304 |
+
{
|
1305 |
+
"completion_length": 291.78125,
|
1306 |
+
"epoch": 9.208695652173914,
|
1307 |
+
"grad_norm": 7.384568214416504,
|
1308 |
+
"kl": 79.57251481059939,
|
1309 |
+
"learning_rate": 2.3840561670893495e-07,
|
1310 |
+
"loss": 0.0796,
|
1311 |
+
"reward": 2.1450905594974756,
|
1312 |
+
"reward_std": 0.9664679318666458,
|
1313 |
+
"rewards/concensus_correctness_reward_func": 0.06012500077486038,
|
1314 |
+
"rewards/consensus_reward_func": 0.5,
|
1315 |
+
"rewards/cumulative_reward_2": 0.0,
|
1316 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1317 |
+
"rewards/question_recreation_reward_func": 0.5948093222687021,
|
1318 |
+
"rewards/soft_format_reward_func": 0.0,
|
1319 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1320 |
+
"rewards/xmlcount_reward_func": 0.833906251937151,
|
1321 |
+
"step": 138
|
1322 |
+
},
|
1323 |
+
{
|
1324 |
+
"completion_length": 287.0,
|
1325 |
+
"epoch": 9.347826086956522,
|
1326 |
+
"grad_norm": 7.677389621734619,
|
1327 |
+
"kl": 1.0843814071267843,
|
1328 |
+
"learning_rate": 2.247446086470982e-07,
|
1329 |
+
"loss": 0.0011,
|
1330 |
+
"reward": 2.9537404403090477,
|
1331 |
+
"reward_std": 1.031734160031192,
|
1332 |
+
"rewards/concensus_correctness_reward_func": 0.12812500167638063,
|
1333 |
+
"rewards/consensus_reward_func": 0.6875,
|
1334 |
+
"rewards/cumulative_reward_2": 0.0,
|
1335 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1336 |
+
"rewards/question_recreation_reward_func": 0.6615529721602798,
|
1337 |
+
"rewards/soft_format_reward_func": 0.0,
|
1338 |
+
"rewards/strict_format_reward_func": 0.15625,
|
1339 |
+
"rewards/xmlcount_reward_func": 1.0703125,
|
1340 |
+
"step": 140
|
1341 |
+
},
|
1342 |
+
{
|
1343 |
+
"completion_length": 195.75,
|
1344 |
+
"epoch": 9.486956521739131,
|
1345 |
+
"grad_norm": 14.392241477966309,
|
1346 |
+
"kl": 1.338534751906991,
|
1347 |
+
"learning_rate": 2.113723054804904e-07,
|
1348 |
+
"loss": 0.0013,
|
1349 |
+
"reward": 2.5440589003264904,
|
1350 |
+
"reward_std": 0.5958110167412087,
|
1351 |
+
"rewards/concensus_correctness_reward_func": 0.002937499899417162,
|
1352 |
+
"rewards/consensus_reward_func": 0.5,
|
1353 |
+
"rewards/cumulative_reward_2": 0.0,
|
1354 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1355 |
+
"rewards/question_recreation_reward_func": 0.48871511360630393,
|
1356 |
+
"rewards/soft_format_reward_func": 0.0,
|
1357 |
+
"rewards/strict_format_reward_func": 0.1875,
|
1358 |
+
"rewards/xmlcount_reward_func": 1.1149062551558018,
|
1359 |
+
"step": 142
|
1360 |
+
},
|
1361 |
+
{
|
1362 |
+
"completion_length": 280.0625,
|
1363 |
+
"epoch": 9.626086956521739,
|
1364 |
+
"grad_norm": 9.929582595825195,
|
1365 |
+
"kl": 6.2964247446507215,
|
1366 |
+
"learning_rate": 1.9830273290853766e-07,
|
1367 |
+
"loss": 0.0063,
|
1368 |
+
"reward": 2.0625064894557,
|
1369 |
+
"reward_std": 0.8793220520019531,
|
1370 |
+
"rewards/concensus_correctness_reward_func": 0.1172500029206276,
|
1371 |
+
"rewards/consensus_reward_func": 0.0625,
|
1372 |
+
"rewards/cumulative_reward_2": 0.0,
|
1373 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1374 |
+
"rewards/question_recreation_reward_func": 0.6093190036481246,
|
1375 |
+
"rewards/soft_format_reward_func": 0.0,
|
1376 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1377 |
+
"rewards/xmlcount_reward_func": 1.0078125,
|
1378 |
+
"step": 144
|
1379 |
+
},
|
1380 |
+
{
|
1381 |
+
"completion_length": 230.53125,
|
1382 |
+
"epoch": 9.765217391304347,
|
1383 |
+
"grad_norm": 93.21333312988281,
|
1384 |
+
"kl": 10.086717769503593,
|
1385 |
+
"learning_rate": 1.8554959910807772e-07,
|
1386 |
+
"loss": 0.0101,
|
1387 |
+
"reward": 2.2185809947550297,
|
1388 |
+
"reward_std": 1.1026300959056243,
|
1389 |
+
"rewards/concensus_correctness_reward_func": 0.145687498152256,
|
1390 |
+
"rewards/consensus_reward_func": 0.3125,
|
1391 |
+
"rewards/cumulative_reward_2": 0.0,
|
1392 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1393 |
+
"rewards/question_recreation_reward_func": 0.5238622860051692,
|
1394 |
+
"rewards/soft_format_reward_func": 0.0,
|
1395 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1396 |
+
"rewards/xmlcount_reward_func": 0.9709062464535236,
|
1397 |
+
"step": 146
|
1398 |
+
},
|
1399 |
+
{
|
1400 |
+
"completion_length": 245.90625,
|
1401 |
+
"epoch": 9.904347826086957,
|
1402 |
+
"grad_norm": 7.6316728591918945,
|
1403 |
+
"kl": 2.9326881784945726,
|
1404 |
+
"learning_rate": 1.7312628035537386e-07,
|
1405 |
+
"loss": 0.0029,
|
1406 |
+
"reward": 2.5975780775770545,
|
1407 |
+
"reward_std": 1.2725993720814586,
|
1408 |
+
"rewards/concensus_correctness_reward_func": 0.0832500010728836,
|
1409 |
+
"rewards/consensus_reward_func": 0.5,
|
1410 |
+
"rewards/cumulative_reward_2": 0.0,
|
1411 |
+
"rewards/final_correctness_reward_func": 0.4375,
|
1412 |
+
"rewards/question_recreation_reward_func": 0.6529530733823776,
|
1413 |
+
"rewards/soft_format_reward_func": 0.0,
|
1414 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1415 |
+
"rewards/xmlcount_reward_func": 0.8301250021904707,
|
1416 |
+
"step": 148
|
1417 |
+
},
|
1418 |
+
{
|
1419 |
+
"completion_length": 238.9090909090909,
|
1420 |
+
"epoch": 10.0,
|
1421 |
+
"grad_norm": 3.3495516777038574,
|
1422 |
+
"kl": 1.7505317547104575,
|
1423 |
+
"learning_rate": 1.6104580699624837e-07,
|
1424 |
+
"loss": 0.0012,
|
1425 |
+
"reward": 2.4565178697759453,
|
1426 |
+
"reward_std": 0.8326517287218436,
|
1427 |
+
"rewards/concensus_correctness_reward_func": 0.06836363402279941,
|
1428 |
+
"rewards/consensus_reward_func": 0.6363636363636364,
|
1429 |
+
"rewards/cumulative_reward_2": 0.0,
|
1430 |
+
"rewards/final_correctness_reward_func": 0.0,
|
1431 |
+
"rewards/question_recreation_reward_func": 0.604063347320665,
|
1432 |
+
"rewards/soft_format_reward_func": 0.0,
|
1433 |
+
"rewards/strict_format_reward_func": 0.13636363636363635,
|
1434 |
+
"rewards/xmlcount_reward_func": 1.0113636363636365,
|
1435 |
+
"step": 150
|
1436 |
+
},
|
1437 |
+
{
|
1438 |
+
"completion_length": 223.6875,
|
1439 |
+
"epoch": 10.139130434782608,
|
1440 |
+
"grad_norm": 8.917014122009277,
|
1441 |
+
"kl": 1036.1936433017254,
|
1442 |
+
"learning_rate": 1.493208497790504e-07,
|
1443 |
+
"loss": 1.0362,
|
1444 |
+
"reward": 1.8704981822520494,
|
1445 |
+
"reward_std": 0.8263477487489581,
|
1446 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1447 |
+
"rewards/consensus_reward_func": 0.1875,
|
1448 |
+
"rewards/cumulative_reward_2": 0.0,
|
1449 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1450 |
+
"rewards/question_recreation_reward_func": 0.4501856912393123,
|
1451 |
+
"rewards/soft_format_reward_func": 0.0,
|
1452 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1453 |
+
"rewards/xmlcount_reward_func": 0.8265624977648258,
|
1454 |
+
"step": 152
|
1455 |
+
},
|
1456 |
+
{
|
1457 |
+
"completion_length": 304.3125,
|
1458 |
+
"epoch": 10.278260869565218,
|
1459 |
+
"grad_norm": 109.25184631347656,
|
1460 |
+
"kl": 6.692760448902845,
|
1461 |
+
"learning_rate": 1.3796370656478934e-07,
|
1462 |
+
"loss": 0.0067,
|
1463 |
+
"reward": 1.8072622884064913,
|
1464 |
+
"reward_std": 1.073743922635913,
|
1465 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1466 |
+
"rewards/consensus_reward_func": 0.375,
|
1467 |
+
"rewards/cumulative_reward_2": 0.0,
|
1468 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1469 |
+
"rewards/question_recreation_reward_func": 0.40573102713096887,
|
1470 |
+
"rewards/soft_format_reward_func": 0.0,
|
1471 |
+
"rewards/strict_format_reward_func": 0.109375,
|
1472 |
+
"rewards/xmlcount_reward_func": 0.7921562530100346,
|
1473 |
+
"step": 154
|
1474 |
+
},
|
1475 |
+
{
|
1476 |
+
"completion_length": 196.1875,
|
1477 |
+
"epoch": 10.417391304347825,
|
1478 |
+
"grad_norm": 8.076583862304688,
|
1479 |
+
"kl": 21.29381263256073,
|
1480 |
+
"learning_rate": 1.2698628942837697e-07,
|
1481 |
+
"loss": 0.0213,
|
1482 |
+
"reward": 2.1946525387465954,
|
1483 |
+
"reward_std": 0.7001782967709005,
|
1484 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
1485 |
+
"rewards/consensus_reward_func": 0.3125,
|
1486 |
+
"rewards/cumulative_reward_2": 0.0,
|
1487 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1488 |
+
"rewards/question_recreation_reward_func": 0.5274649991188198,
|
1489 |
+
"rewards/soft_format_reward_func": 0.0,
|
1490 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1491 |
+
"rewards/xmlcount_reward_func": 1.003125000745058,
|
1492 |
+
"step": 156
|
1493 |
+
},
|
1494 |
+
{
|
1495 |
+
"completion_length": 294.90625,
|
1496 |
+
"epoch": 10.556521739130435,
|
1497 |
+
"grad_norm": 10.061820983886719,
|
1498 |
+
"kl": 2.001404521986842,
|
1499 |
+
"learning_rate": 1.1640011216450691e-07,
|
1500 |
+
"loss": 0.002,
|
1501 |
+
"reward": 2.073508506640792,
|
1502 |
+
"reward_std": 1.356637116521597,
|
1503 |
+
"rewards/concensus_correctness_reward_func": 0.09112500119954348,
|
1504 |
+
"rewards/consensus_reward_func": 0.4375,
|
1505 |
+
"rewards/cumulative_reward_2": 0.0,
|
1506 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
1507 |
+
"rewards/question_recreation_reward_func": 0.363852248119656,
|
1508 |
+
"rewards/soft_format_reward_func": 0.0,
|
1509 |
+
"rewards/strict_format_reward_func": 0.125,
|
1510 |
+
"rewards/xmlcount_reward_func": 0.8685312494635582,
|
1511 |
+
"step": 158
|
1512 |
+
},
|
1513 |
+
{
|
1514 |
+
"completion_length": 238.5625,
|
1515 |
+
"epoch": 10.695652173913043,
|
1516 |
+
"grad_norm": 7.213126182556152,
|
1517 |
+
"kl": 1.908262014389038,
|
1518 |
+
"learning_rate": 1.0621627821127288e-07,
|
1519 |
+
"loss": 0.0019,
|
1520 |
+
"reward": 2.791898600757122,
|
1521 |
+
"reward_std": 1.6709155699936673,
|
1522 |
+
"rewards/concensus_correctness_reward_func": 0.1901874989271164,
|
1523 |
+
"rewards/consensus_reward_func": 0.625,
|
1524 |
+
"rewards/cumulative_reward_2": 0.0,
|
1525 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1526 |
+
"rewards/question_recreation_reward_func": 0.48136736266314983,
|
1527 |
+
"rewards/soft_format_reward_func": 0.0,
|
1528 |
+
"rewards/strict_format_reward_func": 0.125,
|
1529 |
+
"rewards/xmlcount_reward_func": 1.0578437522053719,
|
1530 |
+
"step": 160
|
1531 |
+
},
|
1532 |
+
{
|
1533 |
+
"completion_length": 231.71875,
|
1534 |
+
"epoch": 10.834782608695653,
|
1535 |
+
"grad_norm": 34.76180648803711,
|
1536 |
+
"kl": 5.669580914080143,
|
1537 |
+
"learning_rate": 9.644546900419531e-08,
|
1538 |
+
"loss": 0.0057,
|
1539 |
+
"reward": 1.957098614424467,
|
1540 |
+
"reward_std": 0.7321692104451358,
|
1541 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1542 |
+
"rewards/consensus_reward_func": 0.375,
|
1543 |
+
"rewards/cumulative_reward_2": 0.0,
|
1544 |
+
"rewards/final_correctness_reward_func": 0.125,
|
1545 |
+
"rewards/question_recreation_reward_func": 0.4589111144305207,
|
1546 |
+
"rewards/soft_format_reward_func": 0.0,
|
1547 |
+
"rewards/strict_format_reward_func": 0.078125,
|
1548 |
+
"rewards/xmlcount_reward_func": 0.9200624991208315,
|
1549 |
+
"step": 162
|
1550 |
+
},
|
1551 |
+
{
|
1552 |
+
"completion_length": 274.625,
|
1553 |
+
"epoch": 10.97391304347826,
|
1554 |
+
"grad_norm": 8.54128360748291,
|
1555 |
+
"kl": 3.205599080771208,
|
1556 |
+
"learning_rate": 8.70979327728718e-08,
|
1557 |
+
"loss": 0.0032,
|
1558 |
+
"reward": 2.795065075159073,
|
1559 |
+
"reward_std": 1.1369968629442155,
|
1560 |
+
"rewards/concensus_correctness_reward_func": 0.12025000154972076,
|
1561 |
+
"rewards/consensus_reward_func": 0.5625,
|
1562 |
+
"rewards/cumulative_reward_2": 0.0,
|
1563 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1564 |
+
"rewards/question_recreation_reward_func": 0.6334713499527425,
|
1565 |
+
"rewards/soft_format_reward_func": 0.0,
|
1566 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1567 |
+
"rewards/xmlcount_reward_func": 1.0100937485694885,
|
1568 |
+
"step": 164
|
1569 |
+
},
|
1570 |
+
{
|
1571 |
+
"completion_length": 168.27272727272728,
|
1572 |
+
"epoch": 11.069565217391304,
|
1573 |
+
"grad_norm": 19.19721794128418,
|
1574 |
+
"kl": 3.619182462042028,
|
1575 |
+
"learning_rate": 7.81834737919978e-08,
|
1576 |
+
"loss": 0.0025,
|
1577 |
+
"reward": 3.018909389322454,
|
1578 |
+
"reward_std": 0.7642647468230941,
|
1579 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1580 |
+
"rewards/consensus_reward_func": 0.8181818181818182,
|
1581 |
+
"rewards/cumulative_reward_2": 0.0,
|
1582 |
+
"rewards/final_correctness_reward_func": 0.18181818181818182,
|
1583 |
+
"rewards/question_recreation_reward_func": 0.6259548024020412,
|
1584 |
+
"rewards/soft_format_reward_func": 0.0,
|
1585 |
+
"rewards/strict_format_reward_func": 0.2727272727272727,
|
1586 |
+
"rewards/xmlcount_reward_func": 1.1202272718602961,
|
1587 |
+
"step": 166
|
1588 |
+
},
|
1589 |
+
{
|
1590 |
+
"completion_length": 214.65625,
|
1591 |
+
"epoch": 11.208695652173914,
|
1592 |
+
"grad_norm": 22.970157623291016,
|
1593 |
+
"kl": 2.239942977204919,
|
1594 |
+
"learning_rate": 6.971144209803736e-08,
|
1595 |
+
"loss": 0.0022,
|
1596 |
+
"reward": 1.9759991057217121,
|
1597 |
+
"reward_std": 0.8322795821586624,
|
1598 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1599 |
+
"rewards/consensus_reward_func": 0.25,
|
1600 |
+
"rewards/cumulative_reward_2": 0.0,
|
1601 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1602 |
+
"rewards/question_recreation_reward_func": 0.5072491308674216,
|
1603 |
+
"rewards/soft_format_reward_func": 0.0,
|
1604 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1605 |
+
"rewards/xmlcount_reward_func": 1.015625,
|
1606 |
+
"step": 168
|
1607 |
+
},
|
1608 |
+
{
|
1609 |
+
"completion_length": 268.09375,
|
1610 |
+
"epoch": 11.347826086956522,
|
1611 |
+
"grad_norm": 8.616852760314941,
|
1612 |
+
"kl": 1.2630443252855912,
|
1613 |
+
"learning_rate": 6.16907236823262e-08,
|
1614 |
+
"loss": 0.0013,
|
1615 |
+
"reward": 1.666411878541112,
|
1616 |
+
"reward_std": 0.861880192087483,
|
1617 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1618 |
+
"rewards/consensus_reward_func": 0.25,
|
1619 |
+
"rewards/cumulative_reward_2": 0.0,
|
1620 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
1621 |
+
"rewards/question_recreation_reward_func": 0.40978686296148226,
|
1622 |
+
"rewards/soft_format_reward_func": 0.0,
|
1623 |
+
"rewards/strict_format_reward_func": 0.125,
|
1624 |
+
"rewards/xmlcount_reward_func": 0.6941249966621399,
|
1625 |
+
"step": 170
|
1626 |
+
},
|
1627 |
+
{
|
1628 |
+
"completion_length": 218.5,
|
1629 |
+
"epoch": 11.486956521739131,
|
1630 |
+
"grad_norm": 11.935127258300781,
|
1631 |
+
"kl": 3.4988537207245827,
|
1632 |
+
"learning_rate": 5.412973117089287e-08,
|
1633 |
+
"loss": 0.0035,
|
1634 |
+
"reward": 2.7520089522004128,
|
1635 |
+
"reward_std": 1.139378215186298,
|
1636 |
+
"rewards/concensus_correctness_reward_func": 0.05412500072270632,
|
1637 |
+
"rewards/consensus_reward_func": 0.625,
|
1638 |
+
"rewards/cumulative_reward_2": 0.0,
|
1639 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1640 |
+
"rewards/question_recreation_reward_func": 0.7122902190312743,
|
1641 |
+
"rewards/soft_format_reward_func": 0.0,
|
1642 |
+
"rewards/strict_format_reward_func": 0.125,
|
1643 |
+
"rewards/xmlcount_reward_func": 0.9230937529355288,
|
1644 |
+
"step": 172
|
1645 |
+
},
|
1646 |
+
{
|
1647 |
+
"completion_length": 176.59375,
|
1648 |
+
"epoch": 11.626086956521739,
|
1649 |
+
"grad_norm": 15.085416793823242,
|
1650 |
+
"kl": 2.039413772523403,
|
1651 |
+
"learning_rate": 4.703639500077655e-08,
|
1652 |
+
"loss": 0.002,
|
1653 |
+
"reward": 2.7363155260682106,
|
1654 |
+
"reward_std": 0.9747829738153087,
|
1655 |
+
"rewards/concensus_correctness_reward_func": 0.22962500154972076,
|
1656 |
+
"rewards/consensus_reward_func": 0.8125,
|
1657 |
+
"rewards/cumulative_reward_2": 0.0,
|
1658 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1659 |
+
"rewards/question_recreation_reward_func": 0.5008780010975897,
|
1660 |
+
"rewards/soft_format_reward_func": 0.0,
|
1661 |
+
"rewards/strict_format_reward_func": 0.125,
|
1662 |
+
"rewards/xmlcount_reward_func": 1.005812507122755,
|
1663 |
+
"step": 174
|
1664 |
+
},
|
1665 |
+
{
|
1666 |
+
"completion_length": 245.84375,
|
1667 |
+
"epoch": 11.765217391304347,
|
1668 |
+
"grad_norm": 8.771071434020996,
|
1669 |
+
"kl": 0.9153302293270826,
|
1670 |
+
"learning_rate": 4.041815510209395e-08,
|
1671 |
+
"loss": 0.0009,
|
1672 |
+
"reward": 2.9970211051404476,
|
1673 |
+
"reward_std": 0.8632267946668435,
|
1674 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1675 |
+
"rewards/consensus_reward_func": 0.875,
|
1676 |
+
"rewards/cumulative_reward_2": 0.0,
|
1677 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1678 |
+
"rewards/question_recreation_reward_func": 0.5793023159494624,
|
1679 |
+
"rewards/soft_format_reward_func": 0.0,
|
1680 |
+
"rewards/strict_format_reward_func": 0.25,
|
1681 |
+
"rewards/xmlcount_reward_func": 1.0427187532186508,
|
1682 |
+
"step": 176
|
1683 |
+
},
|
1684 |
+
{
|
1685 |
+
"completion_length": 181.96875,
|
1686 |
+
"epoch": 11.904347826086957,
|
1687 |
+
"grad_norm": 6.449145793914795,
|
1688 |
+
"kl": 1.2241215463727713,
|
1689 |
+
"learning_rate": 3.4281953094578875e-08,
|
1690 |
+
"loss": 0.0012,
|
1691 |
+
"reward": 2.4653413705527782,
|
1692 |
+
"reward_std": 0.5194937253836542,
|
1693 |
+
"rewards/concensus_correctness_reward_func": 0.009437499567866325,
|
1694 |
+
"rewards/consensus_reward_func": 0.5625,
|
1695 |
+
"rewards/cumulative_reward_2": 0.0,
|
1696 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1697 |
+
"rewards/question_recreation_reward_func": 0.493560123257339,
|
1698 |
+
"rewards/soft_format_reward_func": 0.0,
|
1699 |
+
"rewards/strict_format_reward_func": 0.125,
|
1700 |
+
"rewards/xmlcount_reward_func": 1.0248437486588955,
|
1701 |
+
"step": 178
|
1702 |
+
},
|
1703 |
+
{
|
1704 |
+
"completion_length": 248.0,
|
1705 |
+
"epoch": 12.0,
|
1706 |
+
"grad_norm": 4.065160274505615,
|
1707 |
+
"kl": 0.9604931798848239,
|
1708 |
+
"learning_rate": 2.8634225006782864e-08,
|
1709 |
+
"loss": 0.0007,
|
1710 |
+
"reward": 2.7070359858599575,
|
1711 |
+
"reward_std": 1.2332754209637642,
|
1712 |
+
"rewards/concensus_correctness_reward_func": 0.18627272952686658,
|
1713 |
+
"rewards/consensus_reward_func": 0.6363636363636364,
|
1714 |
+
"rewards/cumulative_reward_2": 0.0,
|
1715 |
+
"rewards/final_correctness_reward_func": 0.09090909090909091,
|
1716 |
+
"rewards/question_recreation_reward_func": 0.5386723849753087,
|
1717 |
+
"rewards/soft_format_reward_func": 0.0,
|
1718 |
+
"rewards/strict_format_reward_func": 0.11363636363636363,
|
1719 |
+
"rewards/xmlcount_reward_func": 1.1411818157542835,
|
1720 |
+
"step": 180
|
1721 |
+
},
|
1722 |
+
{
|
1723 |
+
"completion_length": 284.875,
|
1724 |
+
"epoch": 12.139130434782608,
|
1725 |
+
"grad_norm": 6.747330188751221,
|
1726 |
+
"kl": 1.845324163325131,
|
1727 |
+
"learning_rate": 2.348089452556956e-08,
|
1728 |
+
"loss": 0.0018,
|
1729 |
+
"reward": 2.8983127176761627,
|
1730 |
+
"reward_std": 1.034126427024603,
|
1731 |
+
"rewards/concensus_correctness_reward_func": 0.09425000194460154,
|
1732 |
+
"rewards/consensus_reward_func": 0.8125,
|
1733 |
+
"rewards/cumulative_reward_2": 0.0,
|
1734 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
1735 |
+
"rewards/question_recreation_reward_func": 0.6407502153888345,
|
1736 |
+
"rewards/soft_format_reward_func": 0.0,
|
1737 |
+
"rewards/strict_format_reward_func": 0.125,
|
1738 |
+
"rewards/xmlcount_reward_func": 1.0383125022053719,
|
1739 |
+
"step": 182
|
1740 |
+
},
|
1741 |
+
{
|
1742 |
+
"completion_length": 195.59375,
|
1743 |
+
"epoch": 12.278260869565218,
|
1744 |
+
"grad_norm": 8.408949851989746,
|
1745 |
+
"kl": 1.878015061840415,
|
1746 |
+
"learning_rate": 1.882736678298491e-08,
|
1747 |
+
"loss": 0.0019,
|
1748 |
+
"reward": 1.9930787160992622,
|
1749 |
+
"reward_std": 0.7291824659332633,
|
1750 |
+
"rewards/concensus_correctness_reward_func": 0.07581249997019768,
|
1751 |
+
"rewards/consensus_reward_func": 0.3125,
|
1752 |
+
"rewards/cumulative_reward_2": 0.0,
|
1753 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1754 |
+
"rewards/question_recreation_reward_func": 0.48314121598377824,
|
1755 |
+
"rewards/soft_format_reward_func": 0.0,
|
1756 |
+
"rewards/strict_format_reward_func": 0.078125,
|
1757 |
+
"rewards/xmlcount_reward_func": 0.9810000024735928,
|
1758 |
+
"step": 184
|
1759 |
+
},
|
1760 |
+
{
|
1761 |
+
"completion_length": 263.0,
|
1762 |
+
"epoch": 12.417391304347825,
|
1763 |
+
"grad_norm": 14483.93359375,
|
1764 |
+
"kl": 475.0545411463827,
|
1765 |
+
"learning_rate": 1.4678522687020412e-08,
|
1766 |
+
"loss": 0.4751,
|
1767 |
+
"reward": 2.7335060872137547,
|
1768 |
+
"reward_std": 0.894551997538656,
|
1769 |
+
"rewards/concensus_correctness_reward_func": 0.12025000154972076,
|
1770 |
+
"rewards/consensus_reward_func": 0.75,
|
1771 |
+
"rewards/cumulative_reward_2": 0.0,
|
1772 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1773 |
+
"rewards/question_recreation_reward_func": 0.46903733629733324,
|
1774 |
+
"rewards/soft_format_reward_func": 0.0,
|
1775 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1776 |
+
"rewards/xmlcount_reward_func": 0.9879687428474426,
|
1777 |
+
"step": 186
|
1778 |
+
},
|
1779 |
+
{
|
1780 |
+
"completion_length": 244.96875,
|
1781 |
+
"epoch": 12.556521739130435,
|
1782 |
+
"grad_norm": 6.763554573059082,
|
1783 |
+
"kl": 1.7115775179117918,
|
1784 |
+
"learning_rate": 1.1038713802214717e-08,
|
1785 |
+
"loss": 0.0017,
|
1786 |
+
"reward": 2.217247996479273,
|
1787 |
+
"reward_std": 1.002159099560231,
|
1788 |
+
"rewards/concensus_correctness_reward_func": 0.06775000039488077,
|
1789 |
+
"rewards/consensus_reward_func": 0.3125,
|
1790 |
+
"rewards/cumulative_reward_2": 0.0,
|
1791 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1792 |
+
"rewards/question_recreation_reward_func": 0.6073104892857373,
|
1793 |
+
"rewards/soft_format_reward_func": 0.0,
|
1794 |
+
"rewards/strict_format_reward_func": 0.109375,
|
1795 |
+
"rewards/xmlcount_reward_func": 1.057812500745058,
|
1796 |
+
"step": 188
|
1797 |
+
},
|
1798 |
+
{
|
1799 |
+
"completion_length": 307.34375,
|
1800 |
+
"epoch": 12.695652173913043,
|
1801 |
+
"grad_norm": 22.309476852416992,
|
1802 |
+
"kl": 2.2677318193018436,
|
1803 |
+
"learning_rate": 7.91175778546288e-09,
|
1804 |
+
"loss": 0.0023,
|
1805 |
+
"reward": 2.050308357924223,
|
1806 |
+
"reward_std": 1.076811763457954,
|
1807 |
+
"rewards/concensus_correctness_reward_func": 0.023499999195337296,
|
1808 |
+
"rewards/consensus_reward_func": 0.375,
|
1809 |
+
"rewards/cumulative_reward_2": 0.0,
|
1810 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
1811 |
+
"rewards/question_recreation_reward_func": 0.5594645974924788,
|
1812 |
+
"rewards/soft_format_reward_func": 0.0,
|
1813 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1814 |
+
"rewards/xmlcount_reward_func": 0.6860937541350722,
|
1815 |
+
"step": 190
|
1816 |
+
},
|
1817 |
+
{
|
1818 |
+
"completion_length": 263.90625,
|
1819 |
+
"epoch": 12.834782608695653,
|
1820 |
+
"grad_norm": 8.240316390991211,
|
1821 |
+
"kl": 14.615491598844528,
|
1822 |
+
"learning_rate": 5.3009343818219975e-09,
|
1823 |
+
"loss": 0.0146,
|
1824 |
+
"reward": 2.2848374396562576,
|
1825 |
+
"reward_std": 1.0299444798147306,
|
1826 |
+
"rewards/concensus_correctness_reward_func": 0.023499999195337296,
|
1827 |
+
"rewards/consensus_reward_func": 0.3125,
|
1828 |
+
"rewards/cumulative_reward_2": 0.0,
|
1829 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1830 |
+
"rewards/question_recreation_reward_func": 0.5453686523251235,
|
1831 |
+
"rewards/soft_format_reward_func": 0.0,
|
1832 |
+
"rewards/strict_format_reward_func": 0.140625,
|
1833 |
+
"rewards/xmlcount_reward_func": 0.8878437541425228,
|
1834 |
+
"step": 192
|
1835 |
+
},
|
1836 |
+
{
|
1837 |
+
"completion_length": 181.125,
|
1838 |
+
"epoch": 12.97391304347826,
|
1839 |
+
"grad_norm": 10.09430980682373,
|
1840 |
+
"kl": 2.5310205705463886,
|
1841 |
+
"learning_rate": 3.2089819845111944e-09,
|
1842 |
+
"loss": 0.0025,
|
1843 |
+
"reward": 2.4083995819091797,
|
1844 |
+
"reward_std": 0.6754440142103704,
|
1845 |
+
"rewards/concensus_correctness_reward_func": 0.030937500298023224,
|
1846 |
+
"rewards/consensus_reward_func": 0.5625,
|
1847 |
+
"rewards/cumulative_reward_2": 0.0,
|
1848 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
1849 |
+
"rewards/question_recreation_reward_func": 0.5698058666894212,
|
1850 |
+
"rewards/soft_format_reward_func": 0.0,
|
1851 |
+
"rewards/strict_format_reward_func": 0.109375,
|
1852 |
+
"rewards/xmlcount_reward_func": 1.0732812508940697,
|
1853 |
+
"step": 194
|
1854 |
+
},
|
1855 |
+
{
|
1856 |
+
"completion_length": 252.77272727272728,
|
1857 |
+
"epoch": 13.069565217391304,
|
1858 |
+
"grad_norm": 34.62232971191406,
|
1859 |
+
"kl": 4.217680139975115,
|
1860 |
+
"learning_rate": 1.638094762715314e-09,
|
1861 |
+
"loss": 0.0029,
|
1862 |
+
"reward": 1.9441369067538867,
|
1863 |
+
"reward_std": 0.6365875859152187,
|
1864 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1865 |
+
"rewards/consensus_reward_func": 0.18181818181818182,
|
1866 |
+
"rewards/cumulative_reward_2": 0.0,
|
1867 |
+
"rewards/final_correctness_reward_func": 0.36363636363636365,
|
1868 |
+
"rewards/question_recreation_reward_func": 0.5173641754822298,
|
1869 |
+
"rewards/soft_format_reward_func": 0.0,
|
1870 |
+
"rewards/strict_format_reward_func": 0.022727272727272728,
|
1871 |
+
"rewards/xmlcount_reward_func": 0.8585909144444899,
|
1872 |
+
"step": 196
|
1873 |
+
},
|
1874 |
+
{
|
1875 |
+
"completion_length": 207.46875,
|
1876 |
+
"epoch": 13.208695652173914,
|
1877 |
+
"grad_norm": 9.698592185974121,
|
1878 |
+
"kl": 5.665437141433358,
|
1879 |
+
"learning_rate": 5.899203602046654e-10,
|
1880 |
+
"loss": 0.0057,
|
1881 |
+
"reward": 2.258667390793562,
|
1882 |
+
"reward_std": 0.8544780421070755,
|
1883 |
+
"rewards/concensus_correctness_reward_func": 0.002937499899417162,
|
1884 |
+
"rewards/consensus_reward_func": 0.4375,
|
1885 |
+
"rewards/cumulative_reward_2": 0.0,
|
1886 |
+
"rewards/final_correctness_reward_func": 0.25,
|
1887 |
+
"rewards/question_recreation_reward_func": 0.555886154237669,
|
1888 |
+
"rewards/soft_format_reward_func": 0.0,
|
1889 |
+
"rewards/strict_format_reward_func": 0.046875,
|
1890 |
+
"rewards/xmlcount_reward_func": 0.9654687494039536,
|
1891 |
+
"step": 198
|
1892 |
+
},
|
1893 |
+
{
|
1894 |
+
"completion_length": 223.0625,
|
1895 |
+
"epoch": 13.347826086956522,
|
1896 |
+
"grad_norm": 9.346601486206055,
|
1897 |
+
"kl": 1.620649179443717,
|
1898 |
+
"learning_rate": 6.555816718389895e-11,
|
1899 |
+
"loss": 0.0016,
|
1900 |
+
"reward": 2.1773801445961,
|
1901 |
+
"reward_std": 1.0183756935875863,
|
1902 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
1903 |
+
"rewards/consensus_reward_func": 0.4375,
|
1904 |
+
"rewards/cumulative_reward_2": 0.0,
|
1905 |
+
"rewards/final_correctness_reward_func": 0.375,
|
1906 |
+
"rewards/question_recreation_reward_func": 0.4039426180534065,
|
1907 |
+
"rewards/soft_format_reward_func": 0.0,
|
1908 |
+
"rewards/strict_format_reward_func": 0.09375,
|
1909 |
+
"rewards/xmlcount_reward_func": 0.8671875,
|
1910 |
+
"step": 200
|
1911 |
+
},
|
1912 |
+
{
|
1913 |
+
"epoch": 13.347826086956522,
|
1914 |
+
"step": 200,
|
1915 |
+
"total_flos": 0.0,
|
1916 |
+
"train_loss": 0.06702521831626655,
|
1917 |
+
"train_runtime": 3029.6015,
|
1918 |
+
"train_samples_per_second": 1.056,
|
1919 |
+
"train_steps_per_second": 0.066
|
1920 |
+
}
|
1921 |
+
],
|
1922 |
+
"logging_steps": 2,
|
1923 |
+
"max_steps": 200,
|
1924 |
+
"num_input_tokens_seen": 0,
|
1925 |
+
"num_train_epochs": 15,
|
1926 |
+
"save_steps": 25,
|
1927 |
+
"stateful_callbacks": {
|
1928 |
+
"TrainerControl": {
|
1929 |
+
"args": {
|
1930 |
+
"should_epoch_stop": false,
|
1931 |
+
"should_evaluate": false,
|
1932 |
+
"should_log": false,
|
1933 |
+
"should_save": true,
|
1934 |
+
"should_training_stop": true
|
1935 |
+
},
|
1936 |
+
"attributes": {}
|
1937 |
+
}
|
1938 |
+
},
|
1939 |
+
"total_flos": 0.0,
|
1940 |
+
"train_batch_size": 2,
|
1941 |
+
"trial_name": null,
|
1942 |
+
"trial_params": null
|
1943 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6829c076bda83803fc3ec9735d3b6fcf0ba3ba60bef27da15a48404b8ffbb18
|
3 |
+
size 5944
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|