hwang595 commited on
Commit
c8a5f54
·
verified ·
1 Parent(s): a7e03ea

Model save

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
3
+ library_name: transformers
4
+ model_name: Qwen2.5-1.5B-Open-R1-GRPO
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - grpo
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for Qwen2.5-1.5B-Open-R1-GRPO
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="hwang595/Qwen2.5-1.5B-Open-R1-GRPO", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/hongyi-wang/huggingface/runs/5prysxfx)
31
+
32
+
33
+ This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.15.0.dev0
38
+ - Transformers: 4.49.0.dev0
39
+ - Pytorch: 2.5.1
40
+ - Datasets: 3.2.0
41
+ - Tokenizers: 0.21.0
42
+
43
+ ## Citations
44
+
45
+ Cite GRPO as:
46
+
47
+ ```bibtex
48
+ @article{zhihong2024deepseekmath,
49
+ title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
50
+ author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
51
+ year = 2024,
52
+ eprint = {arXiv:2402.03300},
53
+ }
54
+
55
+ ```
56
+
57
+ Cite TRL as:
58
+
59
+ ```bibtex
60
+ @misc{vonwerra2022trl,
61
+ title = {{TRL: Transformer Reinforcement Learning}},
62
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
63
+ year = 2020,
64
+ journal = {GitHub repository},
65
+ publisher = {GitHub},
66
+ howpublished = {\url{https://github.com/huggingface/trl}}
67
+ }
68
+ ```
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.9507393147195028,
4
+ "train_runtime": 22343.714,
5
+ "train_samples": 72441,
6
+ "train_samples_per_second": 3.242,
7
+ "train_steps_per_second": 0.029
8
+ }
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
3
+ "architectures": [
4
+ "Qwen2ForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 1536,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 8960,
13
+ "max_position_embeddings": 32768,
14
+ "max_window_layers": 21,
15
+ "model_type": "qwen2",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 28,
18
+ "num_key_value_heads": 2,
19
+ "rms_norm_eps": 1e-06,
20
+ "rope_scaling": null,
21
+ "rope_theta": 1000000.0,
22
+ "sliding_window": null,
23
+ "tie_word_embeddings": true,
24
+ "torch_dtype": "bfloat16",
25
+ "transformers_version": "4.49.0.dev0",
26
+ "use_cache": false,
27
+ "use_sliding_window": false,
28
+ "vocab_size": 151936
29
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.1,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.49.0.dev0"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:848dcb1c2e492a16f120a5ec905625dbe0ea65801e9bc9981a4383f5c58ca49d
3
+ size 3087467144
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,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are 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
+ "padding_side": "left",
206
+ "split_special_tokens": false,
207
+ "tokenizer_class": "Qwen2Tokenizer",
208
+ "unk_token": null
209
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.9507393147195028,
4
+ "train_runtime": 22343.714,
5
+ "train_samples": 72441,
6
+ "train_samples_per_second": 3.242,
7
+ "train_steps_per_second": 0.029
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,2081 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9987438399845395,
5
+ "eval_steps": 100,
6
+ "global_step": 646,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "completion_length": 401.1393030166626,
13
+ "epoch": 0.007730215479756498,
14
+ "grad_norm": 0.7982586536355022,
15
+ "kl": 0.00011790990829467774,
16
+ "learning_rate": 1.5384615384615387e-06,
17
+ "loss": 0.0,
18
+ "reward": 0.11296463984181174,
19
+ "reward_std": 0.4115350260399282,
20
+ "rewards/accuracy_reward": 0.15892857974395155,
21
+ "rewards/cosine_scaled_reward": -0.10816632110727369,
22
+ "rewards/format_reward": 0.01785714365541935,
23
+ "rewards/reasoning_steps_reward": 0.044345241598784925,
24
+ "step": 5
25
+ },
26
+ {
27
+ "completion_length": 359.26787223815916,
28
+ "epoch": 0.015460430959512996,
29
+ "grad_norm": 17.031780484117963,
30
+ "kl": 0.03648009300231934,
31
+ "learning_rate": 3.0769230769230774e-06,
32
+ "loss": 0.0015,
33
+ "reward": 0.09043576336698607,
34
+ "reward_std": 0.4158310419879854,
35
+ "rewards/accuracy_reward": 0.13035714905709028,
36
+ "rewards/cosine_scaled_reward": -0.10301662639685674,
37
+ "rewards/format_reward": 0.03750000176951289,
38
+ "rewards/reasoning_steps_reward": 0.025595240062102675,
39
+ "step": 10
40
+ },
41
+ {
42
+ "completion_length": 168.35357909202577,
43
+ "epoch": 0.023190646439269495,
44
+ "grad_norm": 2.2889296772224683,
45
+ "kl": 0.1260986328125,
46
+ "learning_rate": 4.615384615384616e-06,
47
+ "loss": 0.005,
48
+ "reward": 0.06340085107949563,
49
+ "reward_std": 0.26944970826152714,
50
+ "rewards/accuracy_reward": 0.06964286081492901,
51
+ "rewards/cosine_scaled_reward": -0.05207534619839862,
52
+ "rewards/format_reward": 0.041071430407464506,
53
+ "rewards/reasoning_steps_reward": 0.004761905176565051,
54
+ "step": 15
55
+ },
56
+ {
57
+ "completion_length": 103.71071922779083,
58
+ "epoch": 0.03092086191902599,
59
+ "grad_norm": 2.061644058453735,
60
+ "kl": 0.184234619140625,
61
+ "learning_rate": 6.153846153846155e-06,
62
+ "loss": 0.0074,
63
+ "reward": 0.08586497388314455,
64
+ "reward_std": 0.21096171860699542,
65
+ "rewards/accuracy_reward": 0.058928574435412884,
66
+ "rewards/cosine_scaled_reward": -0.013242176159837981,
67
+ "rewards/format_reward": 0.03392857303842902,
68
+ "rewards/reasoning_steps_reward": 0.006250000465661288,
69
+ "step": 20
70
+ },
71
+ {
72
+ "completion_length": 110.00357648134232,
73
+ "epoch": 0.03865107739878249,
74
+ "grad_norm": 2.8992544505659312,
75
+ "kl": 0.7248291015625,
76
+ "learning_rate": 7.692307692307694e-06,
77
+ "loss": 0.029,
78
+ "reward": 0.12482290570333135,
79
+ "reward_std": 0.21813481883291388,
80
+ "rewards/accuracy_reward": 0.07589286109432578,
81
+ "rewards/cosine_scaled_reward": 0.017977662503835746,
82
+ "rewards/format_reward": 0.01428571492433548,
83
+ "rewards/reasoning_steps_reward": 0.016666667861863972,
84
+ "step": 25
85
+ },
86
+ {
87
+ "completion_length": 45.733930891752244,
88
+ "epoch": 0.04638129287853899,
89
+ "grad_norm": 11.431757181071006,
90
+ "kl": 2.81328125,
91
+ "learning_rate": 9.230769230769232e-06,
92
+ "loss": 0.1125,
93
+ "reward": 0.06212213041180803,
94
+ "reward_std": 0.1072377573115773,
95
+ "rewards/accuracy_reward": 0.03392857294529676,
96
+ "rewards/cosine_scaled_reward": 0.012419746899831807,
97
+ "rewards/format_reward": 0.00714285746216774,
98
+ "rewards/reasoning_steps_reward": 0.008630953030660748,
99
+ "step": 30
100
+ },
101
+ {
102
+ "completion_length": 9.464286106824876,
103
+ "epoch": 0.054111508358295486,
104
+ "grad_norm": 0.5755556102272293,
105
+ "kl": 6.241015625,
106
+ "learning_rate": 1.076923076923077e-05,
107
+ "loss": 0.2497,
108
+ "reward": 0.015272756675949494,
109
+ "reward_std": 0.024263933256418114,
110
+ "rewards/accuracy_reward": 0.007142857555299998,
111
+ "rewards/cosine_scaled_reward": 0.004558471292239119,
112
+ "rewards/format_reward": 0.001785714365541935,
113
+ "rewards/reasoning_steps_reward": 0.0017857144121080637,
114
+ "step": 35
115
+ },
116
+ {
117
+ "completion_length": 6.6812501952052115,
118
+ "epoch": 0.06184172383805198,
119
+ "grad_norm": 5.133782054419905,
120
+ "kl": 133.16796875,
121
+ "learning_rate": 1.230769230769231e-05,
122
+ "loss": 5.3339,
123
+ "reward": 0.006814662339468214,
124
+ "reward_std": 0.006255550790274356,
125
+ "rewards/accuracy_reward": 0.00357142873108387,
126
+ "rewards/cosine_scaled_reward": 0.0017551381433008827,
127
+ "rewards/format_reward": 0.0,
128
+ "rewards/reasoning_steps_reward": 0.001488095335662365,
129
+ "step": 40
130
+ },
131
+ {
132
+ "completion_length": 3.806250123679638,
133
+ "epoch": 0.06957193931780849,
134
+ "grad_norm": 5.446995678880181,
135
+ "kl": 12.984375,
136
+ "learning_rate": 1.3846153846153847e-05,
137
+ "loss": 0.5193,
138
+ "reward": -0.0006268640601774678,
139
+ "reward_std": 0.0008444518398732726,
140
+ "rewards/accuracy_reward": 0.0,
141
+ "rewards/cosine_scaled_reward": -0.0006268640835514816,
142
+ "rewards/format_reward": 0.0,
143
+ "rewards/reasoning_steps_reward": 0.0,
144
+ "step": 45
145
+ },
146
+ {
147
+ "completion_length": 1.5669643387198449,
148
+ "epoch": 0.07730215479756498,
149
+ "grad_norm": 2.3394145041845285,
150
+ "kl": 21.7921875,
151
+ "learning_rate": 1.5384615384615387e-05,
152
+ "loss": 0.872,
153
+ "reward": -1.1912497865296245e-05,
154
+ "reward_std": 9.54106117774245e-06,
155
+ "rewards/accuracy_reward": 0.0,
156
+ "rewards/cosine_scaled_reward": -1.1912497842558879e-05,
157
+ "rewards/format_reward": 0.0,
158
+ "rewards/reasoning_steps_reward": 0.0,
159
+ "step": 50
160
+ },
161
+ {
162
+ "completion_length": 1.3491071730852127,
163
+ "epoch": 0.08503237027732148,
164
+ "grad_norm": 0.7479018151097766,
165
+ "kl": 24.3375,
166
+ "learning_rate": 1.6923076923076924e-05,
167
+ "loss": 0.9739,
168
+ "reward": -7.016389770342357e-06,
169
+ "reward_std": 8.243451605949304e-06,
170
+ "rewards/accuracy_reward": 0.0,
171
+ "rewards/cosine_scaled_reward": -7.016389770342357e-06,
172
+ "rewards/format_reward": 0.0,
173
+ "rewards/reasoning_steps_reward": 0.0,
174
+ "step": 55
175
+ },
176
+ {
177
+ "completion_length": 1.4455357551574708,
178
+ "epoch": 0.09276258575707798,
179
+ "grad_norm": 1.2382907375250831,
180
+ "kl": 22.5875,
181
+ "learning_rate": 1.8461538461538465e-05,
182
+ "loss": 0.9036,
183
+ "reward": -9.098166776766447e-06,
184
+ "reward_std": 8.897681084363285e-06,
185
+ "rewards/accuracy_reward": 0.0,
186
+ "rewards/cosine_scaled_reward": -9.098166776766447e-06,
187
+ "rewards/format_reward": 0.0,
188
+ "rewards/reasoning_steps_reward": 0.0,
189
+ "step": 60
190
+ },
191
+ {
192
+ "completion_length": 3.0062501400709154,
193
+ "epoch": 0.10049280123683448,
194
+ "grad_norm": 0.9000789032207113,
195
+ "kl": 19.11015625,
196
+ "learning_rate": 2e-05,
197
+ "loss": 0.7642,
198
+ "reward": -0.000532294634598518,
199
+ "reward_std": 0.0007382091938138658,
200
+ "rewards/accuracy_reward": 0.0,
201
+ "rewards/cosine_scaled_reward": -0.0005322946360309721,
202
+ "rewards/format_reward": 0.0,
203
+ "rewards/reasoning_steps_reward": 0.0,
204
+ "step": 65
205
+ },
206
+ {
207
+ "completion_length": 16.82946523576975,
208
+ "epoch": 0.10822301671659097,
209
+ "grad_norm": 2.019009108914015,
210
+ "kl": 23.421875,
211
+ "learning_rate": 1.999634547413886e-05,
212
+ "loss": 0.9368,
213
+ "reward": -0.005337684503536088,
214
+ "reward_std": 0.006817118118553012,
215
+ "rewards/accuracy_reward": 0.0,
216
+ "rewards/cosine_scaled_reward": -0.005337684468702442,
217
+ "rewards/format_reward": 0.0,
218
+ "rewards/reasoning_steps_reward": 0.0,
219
+ "step": 70
220
+ },
221
+ {
222
+ "completion_length": 61.51428896188736,
223
+ "epoch": 0.11595323219634747,
224
+ "grad_norm": 0.765391154663079,
225
+ "kl": 22.9328125,
226
+ "learning_rate": 1.9985384567667278e-05,
227
+ "loss": 0.917,
228
+ "reward": -0.018308725309964302,
229
+ "reward_std": 0.025135993797334777,
230
+ "rewards/accuracy_reward": 0.0,
231
+ "rewards/cosine_scaled_reward": -0.018308725309600503,
232
+ "rewards/format_reward": 0.0,
233
+ "rewards/reasoning_steps_reward": 0.0,
234
+ "step": 75
235
+ },
236
+ {
237
+ "completion_length": 14.856251035630702,
238
+ "epoch": 0.12368344767610397,
239
+ "grad_norm": 0.5766637804649585,
240
+ "kl": 25.190625,
241
+ "learning_rate": 1.9967125291968495e-05,
242
+ "loss": 1.0076,
243
+ "reward": -0.004915532504958265,
244
+ "reward_std": 0.006951612820307674,
245
+ "rewards/accuracy_reward": 0.0,
246
+ "rewards/cosine_scaled_reward": -0.004915532504958265,
247
+ "rewards/format_reward": 0.0,
248
+ "rewards/reasoning_steps_reward": 0.0,
249
+ "step": 80
250
+ },
251
+ {
252
+ "completion_length": 63.7750042244792,
253
+ "epoch": 0.13141366315586048,
254
+ "grad_norm": 0.3014979326507053,
255
+ "kl": 23.484375,
256
+ "learning_rate": 1.9941580992841562e-05,
257
+ "loss": 0.9393,
258
+ "reward": -0.016173791494043143,
259
+ "reward_std": 0.022050836245387017,
260
+ "rewards/accuracy_reward": 0.0,
261
+ "rewards/cosine_scaled_reward": -0.01617379151732621,
262
+ "rewards/format_reward": 0.0,
263
+ "rewards/reasoning_steps_reward": 0.0,
264
+ "step": 85
265
+ },
266
+ {
267
+ "completion_length": 18.968751035630703,
268
+ "epoch": 0.13914387863561697,
269
+ "grad_norm": 12.629651804585807,
270
+ "kl": 24.29375,
271
+ "learning_rate": 1.990877034074683e-05,
272
+ "loss": 0.9718,
273
+ "reward": -0.01146240434562742,
274
+ "reward_std": 0.01428736164973543,
275
+ "rewards/accuracy_reward": 0.0,
276
+ "rewards/cosine_scaled_reward": -0.011462404392193547,
277
+ "rewards/format_reward": 0.0,
278
+ "rewards/reasoning_steps_reward": 0.0,
279
+ "step": 90
280
+ },
281
+ {
282
+ "completion_length": 23.74196539670229,
283
+ "epoch": 0.14687409411537347,
284
+ "grad_norm": 7.695576654756108,
285
+ "kl": 22.0734375,
286
+ "learning_rate": 1.9868717317159617e-05,
287
+ "loss": 0.8824,
288
+ "reward": -0.02141171331331302,
289
+ "reward_std": 0.02541972674035673,
290
+ "rewards/accuracy_reward": 0.0,
291
+ "rewards/cosine_scaled_reward": -0.021411713522860597,
292
+ "rewards/format_reward": 0.0,
293
+ "rewards/reasoning_steps_reward": 0.0,
294
+ "step": 95
295
+ },
296
+ {
297
+ "completion_length": 5.691964483261108,
298
+ "epoch": 0.15460430959512997,
299
+ "grad_norm": 0.21802641340099765,
300
+ "kl": 25.30625,
301
+ "learning_rate": 1.9821451197042028e-05,
302
+ "loss": 1.0123,
303
+ "reward": -0.0023316225950111404,
304
+ "reward_std": 0.0032893259587581268,
305
+ "rewards/accuracy_reward": 0.0,
306
+ "rewards/cosine_scaled_reward": -0.0023316225950111404,
307
+ "rewards/format_reward": 0.0,
308
+ "rewards/reasoning_steps_reward": 0.0,
309
+ "step": 100
310
+ },
311
+ {
312
+ "epoch": 0.15460430959512997,
313
+ "eval_completion_length": 5.566964626312256,
314
+ "eval_kl": 25.59375,
315
+ "eval_loss": 1.0240648984909058,
316
+ "eval_reward": -0.00207493151538074,
317
+ "eval_reward_std": 0.0029343964997678995,
318
+ "eval_rewards/accuracy_reward": 0.0,
319
+ "eval_rewards/cosine_scaled_reward": -0.00207493151538074,
320
+ "eval_rewards/format_reward": 0.0,
321
+ "eval_rewards/reasoning_steps_reward": 0.0,
322
+ "eval_runtime": 5.5856,
323
+ "eval_samples_per_second": 17.724,
324
+ "eval_steps_per_second": 0.716,
325
+ "step": 100
326
+ },
327
+ {
328
+ "completion_length": 123.02321983426809,
329
+ "epoch": 0.16233452507488647,
330
+ "grad_norm": 11.539029848998233,
331
+ "kl": 20.16171875,
332
+ "learning_rate": 1.9767006527445728e-05,
333
+ "loss": 0.8064,
334
+ "reward": -0.0462604992452043,
335
+ "reward_std": 0.05010210272388349,
336
+ "rewards/accuracy_reward": 0.0,
337
+ "rewards/cosine_scaled_reward": -0.04626049910550591,
338
+ "rewards/format_reward": 0.0,
339
+ "rewards/reasoning_steps_reward": 0.0,
340
+ "step": 105
341
+ },
342
+ {
343
+ "completion_length": 28.171430292725564,
344
+ "epoch": 0.17006474055464296,
345
+ "grad_norm": 0.3998672476939027,
346
+ "kl": 24.53125,
347
+ "learning_rate": 1.9705423102261324e-05,
348
+ "loss": 0.9813,
349
+ "reward": -0.008159401490456731,
350
+ "reward_std": 0.010330504266585194,
351
+ "rewards/accuracy_reward": 0.0,
352
+ "rewards/cosine_scaled_reward": -0.008159401537022859,
353
+ "rewards/format_reward": 0.0,
354
+ "rewards/reasoning_steps_reward": 0.0,
355
+ "step": 110
356
+ },
357
+ {
358
+ "completion_length": 60.81071784794331,
359
+ "epoch": 0.17779495603439946,
360
+ "grad_norm": 0.7363756914291658,
361
+ "kl": 23.45,
362
+ "learning_rate": 1.9636745933132807e-05,
363
+ "loss": 0.938,
364
+ "reward": -0.021001891322873688,
365
+ "reward_std": 0.028707678055423003,
366
+ "rewards/accuracy_reward": 0.0,
367
+ "rewards/cosine_scaled_reward": -0.021001891322873688,
368
+ "rewards/format_reward": 0.0,
369
+ "rewards/reasoning_steps_reward": 0.0,
370
+ "step": 115
371
+ },
372
+ {
373
+ "completion_length": 27.139287193119525,
374
+ "epoch": 0.18552517151415596,
375
+ "grad_norm": 0.9014468078078542,
376
+ "kl": 24.5640625,
377
+ "learning_rate": 1.956102521655831e-05,
378
+ "loss": 0.9826,
379
+ "reward": -0.014393773931152598,
380
+ "reward_std": 0.019338861525009854,
381
+ "rewards/accuracy_reward": 0.0,
382
+ "rewards/cosine_scaled_reward": -0.014393773931152598,
383
+ "rewards/format_reward": 0.0,
384
+ "rewards/reasoning_steps_reward": 0.0,
385
+ "step": 120
386
+ },
387
+ {
388
+ "completion_length": 33.95268049240112,
389
+ "epoch": 0.19325538699391245,
390
+ "grad_norm": 0.542203001284216,
391
+ "kl": 23.9765625,
392
+ "learning_rate": 1.9478316297201218e-05,
393
+ "loss": 0.959,
394
+ "reward": -0.016732960560364774,
395
+ "reward_std": 0.023507376017472836,
396
+ "rewards/accuracy_reward": 0.0,
397
+ "rewards/cosine_scaled_reward": -0.016732960560364774,
398
+ "rewards/format_reward": 0.0,
399
+ "rewards/reasoning_steps_reward": 0.0,
400
+ "step": 125
401
+ },
402
+ {
403
+ "completion_length": 50.27500329464674,
404
+ "epoch": 0.20098560247366895,
405
+ "grad_norm": 0.5265223024768882,
406
+ "kl": 24.4734375,
407
+ "learning_rate": 1.9388679627438486e-05,
408
+ "loss": 0.9785,
409
+ "reward": -0.005062588803035339,
410
+ "reward_std": 0.007155683144557656,
411
+ "rewards/accuracy_reward": 0.0,
412
+ "rewards/cosine_scaled_reward": -0.005062588803035339,
413
+ "rewards/format_reward": 0.0,
414
+ "rewards/reasoning_steps_reward": 0.0,
415
+ "step": 130
416
+ },
417
+ {
418
+ "completion_length": 41.28214565366507,
419
+ "epoch": 0.20871581795342545,
420
+ "grad_norm": 0.3295311805017263,
421
+ "kl": 24.7375,
422
+ "learning_rate": 1.9292180723175656e-05,
423
+ "loss": 0.989,
424
+ "reward": -0.006291940444435884,
425
+ "reward_std": 0.008898147543002999,
426
+ "rewards/accuracy_reward": 0.0,
427
+ "rewards/cosine_scaled_reward": -0.006291940444435884,
428
+ "rewards/format_reward": 0.0,
429
+ "rewards/reasoning_steps_reward": 0.0,
430
+ "step": 135
431
+ },
432
+ {
433
+ "completion_length": 57.322324530780314,
434
+ "epoch": 0.21644603343318194,
435
+ "grad_norm": 0.30457449118828817,
436
+ "kl": 23.8953125,
437
+ "learning_rate": 1.9188890115960967e-05,
438
+ "loss": 0.9558,
439
+ "reward": -0.02152316901810991,
440
+ "reward_std": 0.028220684136340424,
441
+ "rewards/accuracy_reward": 0.0,
442
+ "rewards/cosine_scaled_reward": -0.02152316911124217,
443
+ "rewards/format_reward": 0.0,
444
+ "rewards/reasoning_steps_reward": 0.0,
445
+ "step": 140
446
+ },
447
+ {
448
+ "completion_length": 55.131253272295,
449
+ "epoch": 0.22417624891293844,
450
+ "grad_norm": 9.744918685806544,
451
+ "kl": 24.059375,
452
+ "learning_rate": 1.9078883301433488e-05,
453
+ "loss": 0.9623,
454
+ "reward": -0.011543530960179993,
455
+ "reward_std": 0.015249428966203026,
456
+ "rewards/accuracy_reward": 0.0,
457
+ "rewards/cosine_scaled_reward": -0.011543530888875608,
458
+ "rewards/format_reward": 0.0,
459
+ "rewards/reasoning_steps_reward": 0.0,
460
+ "step": 145
461
+ },
462
+ {
463
+ "completion_length": 41.46696667671203,
464
+ "epoch": 0.23190646439269494,
465
+ "grad_norm": 0.43447184518856796,
466
+ "kl": 24.4078125,
467
+ "learning_rate": 1.8962240684142923e-05,
468
+ "loss": 0.9759,
469
+ "reward": -0.004864498193681755,
470
+ "reward_std": 0.006879439238022656,
471
+ "rewards/accuracy_reward": 0.0,
472
+ "rewards/cosine_scaled_reward": -0.004864498193681755,
473
+ "rewards/format_reward": 0.0,
474
+ "rewards/reasoning_steps_reward": 0.0,
475
+ "step": 150
476
+ },
477
+ {
478
+ "completion_length": 54.62500326633453,
479
+ "epoch": 0.23963667987245144,
480
+ "grad_norm": 0.40864997107181666,
481
+ "kl": 23.878125,
482
+ "learning_rate": 1.883904751878156e-05,
483
+ "loss": 0.9547,
484
+ "reward": -0.016519928437502072,
485
+ "reward_std": 0.02108374082057196,
486
+ "rewards/accuracy_reward": 0.0,
487
+ "rewards/cosine_scaled_reward": -0.016519928484068202,
488
+ "rewards/format_reward": 0.0,
489
+ "rewards/reasoning_steps_reward": 0.0,
490
+ "step": 155
491
+ },
492
+ {
493
+ "completion_length": 39.67232409119606,
494
+ "epoch": 0.24736689535220793,
495
+ "grad_norm": 1.4280984501478986,
496
+ "kl": 24.55625,
497
+ "learning_rate": 1.8709393847871146e-05,
498
+ "loss": 0.9824,
499
+ "reward": -0.011015968853814683,
500
+ "reward_std": 0.015578932699850157,
501
+ "rewards/accuracy_reward": 0.0,
502
+ "rewards/cosine_scaled_reward": -0.011015968853814683,
503
+ "rewards/format_reward": 0.0,
504
+ "rewards/reasoning_steps_reward": 0.0,
505
+ "step": 160
506
+ },
507
+ {
508
+ "completion_length": 50.396431642770764,
509
+ "epoch": 0.25509711083196446,
510
+ "grad_norm": 2.250106246341844,
511
+ "kl": 23.9375,
512
+ "learning_rate": 1.857337443595034e-05,
513
+ "loss": 0.9575,
514
+ "reward": -0.011405460795862155,
515
+ "reward_std": 0.0160778320284237,
516
+ "rewards/accuracy_reward": 0.0,
517
+ "rewards/cosine_scaled_reward": -0.011405460842428283,
518
+ "rewards/format_reward": 0.0,
519
+ "rewards/reasoning_steps_reward": 0.0,
520
+ "step": 165
521
+ },
522
+ {
523
+ "completion_length": 53.47857511490584,
524
+ "epoch": 0.26282732631172095,
525
+ "grad_norm": 0.18024058379756758,
526
+ "kl": 23.8296875,
527
+ "learning_rate": 1.8431088700310846e-05,
528
+ "loss": 0.9531,
529
+ "reward": -0.0076960978228939325,
530
+ "reward_std": 0.010883673718687703,
531
+ "rewards/accuracy_reward": 0.0,
532
+ "rewards/cosine_scaled_reward": -0.007696097834535465,
533
+ "rewards/format_reward": 0.0,
534
+ "rewards/reasoning_steps_reward": 0.0,
535
+ "step": 170
536
+ },
537
+ {
538
+ "completion_length": 28.666966377198698,
539
+ "epoch": 0.27055754179147745,
540
+ "grad_norm": 0.1808226277379094,
541
+ "kl": 24.825,
542
+ "learning_rate": 1.8282640638332773e-05,
543
+ "loss": 0.9928,
544
+ "reward": -0.0072919426711280265,
545
+ "reward_std": 0.010312364233993777,
546
+ "rewards/accuracy_reward": 0.0,
547
+ "rewards/cosine_scaled_reward": -0.0072919426711280265,
548
+ "rewards/format_reward": 0.0,
549
+ "rewards/reasoning_steps_reward": 0.0,
550
+ "step": 175
551
+ },
552
+ {
553
+ "completion_length": 69.74196844100952,
554
+ "epoch": 0.27828775727123395,
555
+ "grad_norm": 0.9161628639155598,
556
+ "kl": 23.7890625,
557
+ "learning_rate": 1.8128138751472432e-05,
558
+ "loss": 0.9512,
559
+ "reward": -0.030223740078508855,
560
+ "reward_std": 0.03858855614598724,
561
+ "rewards/accuracy_reward": 0.0,
562
+ "rewards/cosine_scaled_reward": -0.030223740078508855,
563
+ "rewards/format_reward": 0.0,
564
+ "rewards/reasoning_steps_reward": 0.0,
565
+ "step": 180
566
+ },
567
+ {
568
+ "completion_length": 32.30446657538414,
569
+ "epoch": 0.28601797275099045,
570
+ "grad_norm": 0.29658338433610215,
571
+ "kl": 24.709375,
572
+ "learning_rate": 1.7967695965958044e-05,
573
+ "loss": 0.988,
574
+ "reward": -0.012446127571445231,
575
+ "reward_std": 0.017601482473719444,
576
+ "rewards/accuracy_reward": 0.0,
577
+ "rewards/cosine_scaled_reward": -0.012446127571445231,
578
+ "rewards/format_reward": 0.0,
579
+ "rewards/reasoning_steps_reward": 0.0,
580
+ "step": 185
581
+ },
582
+ {
583
+ "completion_length": 30.228573608398438,
584
+ "epoch": 0.29374818823074694,
585
+ "grad_norm": 0.3254730765698578,
586
+ "kl": 24.8359375,
587
+ "learning_rate": 1.780142955025139e-05,
588
+ "loss": 0.9932,
589
+ "reward": -0.00898602957604453,
590
+ "reward_std": 0.01197805538540706,
591
+ "rewards/accuracy_reward": 0.0,
592
+ "rewards/cosine_scaled_reward": -0.00898602957604453,
593
+ "rewards/format_reward": 0.0,
594
+ "rewards/reasoning_steps_reward": 0.0,
595
+ "step": 190
596
+ },
597
+ {
598
+ "completion_length": 73.15804052352905,
599
+ "epoch": 0.30147840371050344,
600
+ "grad_norm": 0.4643206631442245,
601
+ "kl": 23.8015625,
602
+ "learning_rate": 1.7629461029335683e-05,
603
+ "loss": 0.9521,
604
+ "reward": -0.014026306665358135,
605
+ "reward_std": 0.0190565431375731,
606
+ "rewards/accuracy_reward": 0.0,
607
+ "rewards/cosine_scaled_reward": -0.014026306572225877,
608
+ "rewards/format_reward": 0.0,
609
+ "rewards/reasoning_steps_reward": 0.0,
610
+ "step": 195
611
+ },
612
+ {
613
+ "completion_length": 32.25268087387085,
614
+ "epoch": 0.30920861919025994,
615
+ "grad_norm": 3.276210589986656,
616
+ "kl": 25.0859375,
617
+ "learning_rate": 1.745191609589231e-05,
618
+ "loss": 1.0032,
619
+ "reward": -0.0027048203692515926,
620
+ "reward_std": 0.003825193697048235,
621
+ "rewards/accuracy_reward": 0.0,
622
+ "rewards/cosine_scaled_reward": -0.0027048203692515926,
623
+ "rewards/format_reward": 0.0,
624
+ "rewards/reasoning_steps_reward": 0.0,
625
+ "step": 200
626
+ },
627
+ {
628
+ "epoch": 0.30920861919025994,
629
+ "eval_completion_length": 28.401787757873535,
630
+ "eval_kl": 25.015625,
631
+ "eval_loss": 1.002211570739746,
632
+ "eval_reward": -0.006750390573870391,
633
+ "eval_reward_std": 0.009546494344249368,
634
+ "eval_rewards/accuracy_reward": 0.0,
635
+ "eval_rewards/cosine_scaled_reward": -0.006750390573870391,
636
+ "eval_rewards/format_reward": 0.0,
637
+ "eval_rewards/reasoning_steps_reward": 0.0,
638
+ "eval_runtime": 19.1542,
639
+ "eval_samples_per_second": 5.169,
640
+ "eval_steps_per_second": 0.209,
641
+ "step": 200
642
+ },
643
+ {
644
+ "completion_length": 60.183039855957034,
645
+ "epoch": 0.31693883467001643,
646
+ "grad_norm": 4.897646020908246,
647
+ "kl": 24.5140625,
648
+ "learning_rate": 1.7268924518431437e-05,
649
+ "loss": 0.9805,
650
+ "reward": -0.01982418053667061,
651
+ "reward_std": 0.025055142166092993,
652
+ "rewards/accuracy_reward": 0.0,
653
+ "rewards/cosine_scaled_reward": -0.01982418053667061,
654
+ "rewards/format_reward": 0.0,
655
+ "rewards/reasoning_steps_reward": 0.0,
656
+ "step": 205
657
+ },
658
+ {
659
+ "completion_length": 58.75803949385882,
660
+ "epoch": 0.32466905014977293,
661
+ "grad_norm": 0.8384849107120312,
662
+ "kl": 24.6359375,
663
+ "learning_rate": 1.7080620046443503e-05,
664
+ "loss": 0.9857,
665
+ "reward": -0.026825059498571592,
666
+ "reward_std": 0.03585605600553663,
667
+ "rewards/accuracy_reward": 0.0,
668
+ "rewards/cosine_scaled_reward": -0.026825059312307074,
669
+ "rewards/format_reward": 0.0,
670
+ "rewards/reasoning_steps_reward": 0.0,
671
+ "step": 210
672
+ },
673
+ {
674
+ "completion_length": 51.62143214643002,
675
+ "epoch": 0.33239926562952943,
676
+ "grad_norm": 0.8197769021473577,
677
+ "kl": 24.45625,
678
+ "learning_rate": 1.6887140312641036e-05,
679
+ "loss": 0.9783,
680
+ "reward": -0.016619097194120514,
681
+ "reward_std": 0.023502952544595244,
682
+ "rewards/accuracy_reward": 0.0,
683
+ "rewards/cosine_scaled_reward": -0.016619097194120514,
684
+ "rewards/format_reward": 0.0,
685
+ "rewards/reasoning_steps_reward": 0.0,
686
+ "step": 215
687
+ },
688
+ {
689
+ "completion_length": 57.10357542037964,
690
+ "epoch": 0.3401294811092859,
691
+ "grad_norm": 0.7958832727235494,
692
+ "kl": 24.4234375,
693
+ "learning_rate": 1.6688626732362192e-05,
694
+ "loss": 0.9768,
695
+ "reward": -0.019711116144026163,
696
+ "reward_std": 0.02642483902600361,
697
+ "rewards/accuracy_reward": 0.0,
698
+ "rewards/cosine_scaled_reward": -0.019711116144026163,
699
+ "rewards/format_reward": 0.0,
700
+ "rewards/reasoning_steps_reward": 0.0,
701
+ "step": 220
702
+ },
703
+ {
704
+ "completion_length": 59.46964702755213,
705
+ "epoch": 0.3478596965890424,
706
+ "grad_norm": 1.417234140942493,
707
+ "kl": 24.39375,
708
+ "learning_rate": 1.6485224400209557e-05,
709
+ "loss": 0.9759,
710
+ "reward": -0.013211684035978522,
711
+ "reward_std": 0.018684142745073018,
712
+ "rewards/accuracy_reward": 0.0,
713
+ "rewards/cosine_scaled_reward": -0.013211684035978522,
714
+ "rewards/format_reward": 0.0,
715
+ "rewards/reasoning_steps_reward": 0.0,
716
+ "step": 225
717
+ },
718
+ {
719
+ "completion_length": 59.63036117553711,
720
+ "epoch": 0.3555899120687989,
721
+ "grad_norm": 11.351168718494195,
722
+ "kl": 24.5234375,
723
+ "learning_rate": 1.6277081983999742e-05,
724
+ "loss": 0.9808,
725
+ "reward": -0.006031500615063123,
726
+ "reward_std": 0.007947441199212335,
727
+ "rewards/accuracy_reward": 0.0,
728
+ "rewards/cosine_scaled_reward": -0.006031500615063123,
729
+ "rewards/format_reward": 0.0,
730
+ "rewards/reasoning_steps_reward": 0.0,
731
+ "step": 230
732
+ },
733
+ {
734
+ "completion_length": 49.411610753834246,
735
+ "epoch": 0.3633201275485554,
736
+ "grad_norm": 0.2450424456932879,
737
+ "kl": 24.4359375,
738
+ "learning_rate": 1.6064351616101318e-05,
739
+ "loss": 0.9771,
740
+ "reward": -0.002330746441202791,
741
+ "reward_std": 0.0030362100929778534,
742
+ "rewards/accuracy_reward": 0.0,
743
+ "rewards/cosine_scaled_reward": -0.002330746441202791,
744
+ "rewards/format_reward": 0.0,
745
+ "rewards/reasoning_steps_reward": 0.0,
746
+ "step": 235
747
+ },
748
+ {
749
+ "completion_length": 64.94732599258423,
750
+ "epoch": 0.3710503430283119,
751
+ "grad_norm": 0.13709329697972883,
752
+ "kl": 23.971875,
753
+ "learning_rate": 1.5847188782240473e-05,
754
+ "loss": 0.9589,
755
+ "reward": -0.005134024492872413,
756
+ "reward_std": 0.007109380475594662,
757
+ "rewards/accuracy_reward": 0.0,
758
+ "rewards/cosine_scaled_reward": -0.005134024492872413,
759
+ "rewards/format_reward": 0.0,
760
+ "rewards/reasoning_steps_reward": 0.0,
761
+ "step": 240
762
+ },
763
+ {
764
+ "completion_length": 56.71696834564209,
765
+ "epoch": 0.3787805585080684,
766
+ "grad_norm": 0.34364341035671037,
767
+ "kl": 24.2953125,
768
+ "learning_rate": 1.562575220785569e-05,
769
+ "loss": 0.9718,
770
+ "reward": -0.004507340443524299,
771
+ "reward_std": 0.006126810604473576,
772
+ "rewards/accuracy_reward": 0.0,
773
+ "rewards/cosine_scaled_reward": -0.0045073404202412345,
774
+ "rewards/format_reward": 0.0,
775
+ "rewards/reasoning_steps_reward": 0.0,
776
+ "step": 245
777
+ },
778
+ {
779
+ "completion_length": 54.89018211364746,
780
+ "epoch": 0.3865107739878249,
781
+ "grad_norm": 0.31918456472738405,
782
+ "kl": 24.278125,
783
+ "learning_rate": 1.5400203742084508e-05,
784
+ "loss": 0.9712,
785
+ "reward": -0.004059947363566607,
786
+ "reward_std": 0.005513354870345211,
787
+ "rewards/accuracy_reward": 0.0,
788
+ "rewards/cosine_scaled_reward": -0.004059947363566607,
789
+ "rewards/format_reward": 0.0,
790
+ "rewards/reasoning_steps_reward": 0.0,
791
+ "step": 250
792
+ },
793
+ {
794
+ "completion_length": 60.591968631744386,
795
+ "epoch": 0.3942409894675814,
796
+ "grad_norm": 0.09960417973828523,
797
+ "kl": 24.21875,
798
+ "learning_rate": 1.5170708239467143e-05,
799
+ "loss": 0.9687,
800
+ "reward": -0.004857293945678976,
801
+ "reward_std": 0.006554045081429649,
802
+ "rewards/accuracy_reward": 0.0,
803
+ "rewards/cosine_scaled_reward": -0.004857293945678976,
804
+ "rewards/format_reward": 0.0,
805
+ "rewards/reasoning_steps_reward": 0.0,
806
+ "step": 255
807
+ },
808
+ {
809
+ "completion_length": 51.23661069869995,
810
+ "epoch": 0.4019712049473379,
811
+ "grad_norm": 0.26887200107803433,
812
+ "kl": 24.3703125,
813
+ "learning_rate": 1.4937433439453465e-05,
814
+ "loss": 0.9748,
815
+ "reward": -0.0037404074450023473,
816
+ "reward_std": 0.005006157659227029,
817
+ "rewards/accuracy_reward": 0.0,
818
+ "rewards/cosine_scaled_reward": -0.0037404074450023473,
819
+ "rewards/format_reward": 0.0,
820
+ "rewards/reasoning_steps_reward": 0.0,
821
+ "step": 260
822
+ },
823
+ {
824
+ "completion_length": 73.15804061889648,
825
+ "epoch": 0.4097014204270944,
826
+ "grad_norm": 0.41995946080219004,
827
+ "kl": 23.8078125,
828
+ "learning_rate": 1.4700549843801359e-05,
829
+ "loss": 0.9523,
830
+ "reward": -0.006090243512880988,
831
+ "reward_std": 0.008168321024641045,
832
+ "rewards/accuracy_reward": 0.0,
833
+ "rewards/cosine_scaled_reward": -0.006090243501239457,
834
+ "rewards/format_reward": 0.0,
835
+ "rewards/reasoning_steps_reward": 0.0,
836
+ "step": 265
837
+ },
838
+ {
839
+ "completion_length": 40.091073989868164,
840
+ "epoch": 0.4174316359068509,
841
+ "grad_norm": 0.13871083018457628,
842
+ "kl": 24.6765625,
843
+ "learning_rate": 1.4460230591956097e-05,
844
+ "loss": 0.9868,
845
+ "reward": -0.004075855828705244,
846
+ "reward_std": 0.005567854072432965,
847
+ "rewards/accuracy_reward": 0.0,
848
+ "rewards/cosine_scaled_reward": -0.004075855828705244,
849
+ "rewards/format_reward": 0.0,
850
+ "rewards/reasoning_steps_reward": 0.0,
851
+ "step": 270
852
+ },
853
+ {
854
+ "completion_length": 70.68839724510909,
855
+ "epoch": 0.4251618513866074,
856
+ "grad_norm": 2.5029688664854604,
857
+ "kl": 23.7,
858
+ "learning_rate": 1.421665133450184e-05,
859
+ "loss": 0.9478,
860
+ "reward": -0.007688843427704484,
861
+ "reward_std": 0.009824345738056194,
862
+ "rewards/accuracy_reward": 0.0,
863
+ "rewards/cosine_scaled_reward": -0.007688843381138355,
864
+ "rewards/format_reward": 0.0,
865
+ "rewards/reasoning_steps_reward": 0.0,
866
+ "step": 275
867
+ },
868
+ {
869
+ "completion_length": 70.8294689655304,
870
+ "epoch": 0.4328920668663639,
871
+ "grad_norm": 0.7981016773555033,
872
+ "kl": 23.78125,
873
+ "learning_rate": 1.3969990104777712e-05,
874
+ "loss": 0.9508,
875
+ "reward": -0.01695473511936143,
876
+ "reward_std": 0.020657122033480847,
877
+ "rewards/accuracy_reward": 0.0,
878
+ "rewards/cosine_scaled_reward": -0.01695473511936143,
879
+ "rewards/format_reward": 0.0,
880
+ "rewards/reasoning_steps_reward": 0.0,
881
+ "step": 280
882
+ },
883
+ {
884
+ "completion_length": 35.90268077850342,
885
+ "epoch": 0.4406222823461204,
886
+ "grad_norm": 0.3832151347916258,
887
+ "kl": 24.725,
888
+ "learning_rate": 1.3720427188752306e-05,
889
+ "loss": 0.9887,
890
+ "reward": -0.011472697817953303,
891
+ "reward_std": 0.01592675215797499,
892
+ "rewards/accuracy_reward": 0.0,
893
+ "rewards/cosine_scaled_reward": -0.011472697817953303,
894
+ "rewards/format_reward": 0.0,
895
+ "rewards/reasoning_steps_reward": 0.0,
896
+ "step": 285
897
+ },
898
+ {
899
+ "completion_length": 57.62857508659363,
900
+ "epoch": 0.4483524978258769,
901
+ "grad_norm": 0.19885189538673612,
902
+ "kl": 24.1484375,
903
+ "learning_rate": 1.3468144993251735e-05,
904
+ "loss": 0.9658,
905
+ "reward": -0.003383369551539772,
906
+ "reward_std": 0.004771871283338669,
907
+ "rewards/accuracy_reward": 0.0,
908
+ "rewards/cosine_scaled_reward": -0.003383369551539772,
909
+ "rewards/format_reward": 0.0,
910
+ "rewards/reasoning_steps_reward": 0.0,
911
+ "step": 290
912
+ },
913
+ {
914
+ "completion_length": 67.7410757035017,
915
+ "epoch": 0.4560827133056334,
916
+ "grad_norm": 0.39795127039159983,
917
+ "kl": 23.8921875,
918
+ "learning_rate": 1.3213327912637563e-05,
919
+ "loss": 0.9556,
920
+ "reward": -0.004046605931318936,
921
+ "reward_std": 0.005629012711131054,
922
+ "rewards/accuracy_reward": 0.0,
923
+ "rewards/cosine_scaled_reward": -0.004046605919677404,
924
+ "rewards/format_reward": 0.0,
925
+ "rewards/reasoning_steps_reward": 0.0,
926
+ "step": 295
927
+ },
928
+ {
929
+ "completion_length": 42.059824275970456,
930
+ "epoch": 0.4638129287853899,
931
+ "grad_norm": 0.7635110738781556,
932
+ "kl": 24.8,
933
+ "learning_rate": 1.295616219403197e-05,
934
+ "loss": 0.9916,
935
+ "reward": -0.004135797415787579,
936
+ "reward_std": 0.005848900706959625,
937
+ "rewards/accuracy_reward": 0.0,
938
+ "rewards/cosine_scaled_reward": -0.004135797415787579,
939
+ "rewards/format_reward": 0.0,
940
+ "rewards/reasoning_steps_reward": 0.0,
941
+ "step": 300
942
+ },
943
+ {
944
+ "epoch": 0.4638129287853899,
945
+ "eval_completion_length": 54.58571767807007,
946
+ "eval_kl": 25.765625,
947
+ "eval_loss": 1.032542109489441,
948
+ "eval_reward": -0.0010169300790039415,
949
+ "eval_reward_std": 0.00139449925700319,
950
+ "eval_rewards/accuracy_reward": 0.0,
951
+ "eval_rewards/cosine_scaled_reward": -0.0010169300790039415,
952
+ "eval_rewards/format_reward": 0.0,
953
+ "eval_rewards/reasoning_steps_reward": 0.0,
954
+ "eval_runtime": 22.4735,
955
+ "eval_samples_per_second": 4.405,
956
+ "eval_steps_per_second": 0.178,
957
+ "step": 300
958
+ },
959
+ {
960
+ "completion_length": 44.41518162488937,
961
+ "epoch": 0.4715431442651464,
962
+ "grad_norm": 0.9661396696269151,
963
+ "kl": 24.990625,
964
+ "learning_rate": 1.2696835801188816e-05,
965
+ "loss": 0.9997,
966
+ "reward": -0.0034492652194785477,
967
+ "reward_std": 0.004716275511600543,
968
+ "rewards/accuracy_reward": 0.0,
969
+ "rewards/cosine_scaled_reward": -0.0034492652194785477,
970
+ "rewards/format_reward": 0.0,
971
+ "rewards/reasoning_steps_reward": 0.0,
972
+ "step": 305
973
+ },
974
+ {
975
+ "completion_length": 64.66964694261551,
976
+ "epoch": 0.47927335974490287,
977
+ "grad_norm": 4.392591196553908,
978
+ "kl": 34.7390625,
979
+ "learning_rate": 1.2435538277109919e-05,
980
+ "loss": 1.3909,
981
+ "reward": -0.004657760824976265,
982
+ "reward_std": 0.006355093454780558,
983
+ "rewards/accuracy_reward": 0.0,
984
+ "rewards/cosine_scaled_reward": -0.004657760836617797,
985
+ "rewards/format_reward": 0.0,
986
+ "rewards/reasoning_steps_reward": 0.0,
987
+ "step": 310
988
+ },
989
+ {
990
+ "completion_length": 65.52232588529587,
991
+ "epoch": 0.48700357522465937,
992
+ "grad_norm": 1.1190324117378256,
993
+ "kl": 24.025,
994
+ "learning_rate": 1.2172460605507126e-05,
995
+ "loss": 0.961,
996
+ "reward": -0.010271642655865776,
997
+ "reward_std": 0.013666120060142362,
998
+ "rewards/accuracy_reward": 0.0,
999
+ "rewards/cosine_scaled_reward": -0.010271642562733519,
1000
+ "rewards/format_reward": 0.0,
1001
+ "rewards/reasoning_steps_reward": 0.0,
1002
+ "step": 315
1003
+ },
1004
+ {
1005
+ "completion_length": 52.01875347495079,
1006
+ "epoch": 0.49473379070441587,
1007
+ "grad_norm": 0.31844192680864797,
1008
+ "kl": 24.56875,
1009
+ "learning_rate": 1.19077950712113e-05,
1010
+ "loss": 0.9827,
1011
+ "reward": -0.011385823189840582,
1012
+ "reward_std": 0.015236640646251765,
1013
+ "rewards/accuracy_reward": 0.0,
1014
+ "rewards/cosine_scaled_reward": -0.011385823189840582,
1015
+ "rewards/format_reward": 0.0,
1016
+ "rewards/reasoning_steps_reward": 0.0,
1017
+ "step": 320
1018
+ },
1019
+ {
1020
+ "completion_length": 58.42857546210289,
1021
+ "epoch": 0.5024640061841724,
1022
+ "grad_norm": 0.41906994568308437,
1023
+ "kl": 24.1828125,
1024
+ "learning_rate": 1.1641735119630373e-05,
1025
+ "loss": 0.967,
1026
+ "reward": -0.009455332184825239,
1027
+ "reward_std": 0.013371859212202252,
1028
+ "rewards/accuracy_reward": 0.0,
1029
+ "rewards/cosine_scaled_reward": -0.009455332184825239,
1030
+ "rewards/format_reward": 0.0,
1031
+ "rewards/reasoning_steps_reward": 0.0,
1032
+ "step": 325
1033
+ },
1034
+ {
1035
+ "completion_length": 48.32500350177288,
1036
+ "epoch": 0.5101942216639289,
1037
+ "grad_norm": 0.15370140997531662,
1038
+ "kl": 24.446875,
1039
+ "learning_rate": 1.137447521535908e-05,
1040
+ "loss": 0.9778,
1041
+ "reward": -0.003301967513988302,
1042
+ "reward_std": 0.004669687197258554,
1043
+ "rewards/accuracy_reward": 0.0,
1044
+ "rewards/cosine_scaled_reward": -0.003301967513988302,
1045
+ "rewards/format_reward": 0.0,
1046
+ "rewards/reasoning_steps_reward": 0.0,
1047
+ "step": 330
1048
+ },
1049
+ {
1050
+ "completion_length": 69.40357585400344,
1051
+ "epoch": 0.5179244371436854,
1052
+ "grad_norm": 0.2903211802770792,
1053
+ "kl": 23.709375,
1054
+ "learning_rate": 1.110621070004378e-05,
1055
+ "loss": 0.9482,
1056
+ "reward": -0.0057826179621066846,
1057
+ "reward_std": 0.008032065768097141,
1058
+ "rewards/accuracy_reward": 0.0,
1059
+ "rewards/cosine_scaled_reward": -0.005782618008672813,
1060
+ "rewards/format_reward": 0.0,
1061
+ "rewards/reasoning_steps_reward": 0.0,
1062
+ "step": 335
1063
+ },
1064
+ {
1065
+ "completion_length": 40.13571699261665,
1066
+ "epoch": 0.5256546526234419,
1067
+ "grad_norm": 0.0914726355478226,
1068
+ "kl": 24.45625,
1069
+ "learning_rate": 1.0837137649606241e-05,
1070
+ "loss": 0.978,
1071
+ "reward": -0.0011966714072912943,
1072
+ "reward_std": 0.0016399607283785755,
1073
+ "rewards/accuracy_reward": 0.0,
1074
+ "rewards/cosine_scaled_reward": -0.0011966714072912943,
1075
+ "rewards/format_reward": 0.0,
1076
+ "rewards/reasoning_steps_reward": 0.0,
1077
+ "step": 340
1078
+ },
1079
+ {
1080
+ "completion_length": 75.69375510960818,
1081
+ "epoch": 0.5333848681031984,
1082
+ "grad_norm": 0.11627122046037379,
1083
+ "kl": 23.6296875,
1084
+ "learning_rate": 1.0567452730930743e-05,
1085
+ "loss": 0.9452,
1086
+ "reward": -0.0014592139999309417,
1087
+ "reward_std": 0.002016079255188963,
1088
+ "rewards/accuracy_reward": 0.0,
1089
+ "rewards/cosine_scaled_reward": -0.0014592139941101757,
1090
+ "rewards/format_reward": 0.0,
1091
+ "rewards/reasoning_steps_reward": 0.0,
1092
+ "step": 345
1093
+ },
1094
+ {
1095
+ "completion_length": 54.79911108016968,
1096
+ "epoch": 0.5411150835829549,
1097
+ "grad_norm": 0.1561203540032164,
1098
+ "kl": 24.1921875,
1099
+ "learning_rate": 1.0297353058119209e-05,
1100
+ "loss": 0.9674,
1101
+ "reward": -0.0011425426000443828,
1102
+ "reward_std": 0.0016062345731212347,
1103
+ "rewards/accuracy_reward": 0.0,
1104
+ "rewards/cosine_scaled_reward": -0.0011425426000443828,
1105
+ "rewards/format_reward": 0.0,
1106
+ "rewards/reasoning_steps_reward": 0.0,
1107
+ "step": 350
1108
+ },
1109
+ {
1110
+ "completion_length": 45.740181751549244,
1111
+ "epoch": 0.5488452990627114,
1112
+ "grad_norm": 0.18815236709612004,
1113
+ "kl": 24.3046875,
1114
+ "learning_rate": 1.0027036048419514e-05,
1115
+ "loss": 0.972,
1116
+ "reward": -0.0014331862192591416,
1117
+ "reward_std": 0.002026831388690198,
1118
+ "rewards/accuracy_reward": 0.0,
1119
+ "rewards/cosine_scaled_reward": -0.0014331862192591416,
1120
+ "rewards/format_reward": 0.0,
1121
+ "rewards/reasoning_steps_reward": 0.0,
1122
+ "step": 355
1123
+ },
1124
+ {
1125
+ "completion_length": 79.47232694625855,
1126
+ "epoch": 0.5565755145424679,
1127
+ "grad_norm": 0.8479026792877249,
1128
+ "kl": 23.4390625,
1129
+ "learning_rate": 9.756699277932196e-06,
1130
+ "loss": 0.9374,
1131
+ "reward": -0.0020212634304677124,
1132
+ "reward_std": 0.0027920879992834103,
1133
+ "rewards/accuracy_reward": 0.0,
1134
+ "rewards/cosine_scaled_reward": -0.0020212634333780953,
1135
+ "rewards/format_reward": 0.0,
1136
+ "rewards/reasoning_steps_reward": 0.0,
1137
+ "step": 360
1138
+ },
1139
+ {
1140
+ "completion_length": 60.38214693069458,
1141
+ "epoch": 0.5643057300222244,
1142
+ "grad_norm": 0.11021078270039414,
1143
+ "kl": 24.025,
1144
+ "learning_rate": 9.486540337201046e-06,
1145
+ "loss": 0.9611,
1146
+ "reward": -0.0012649027251427469,
1147
+ "reward_std": 0.0017696052445899113,
1148
+ "rewards/accuracy_reward": 0.0,
1149
+ "rewards/cosine_scaled_reward": -0.0012649027251427469,
1150
+ "rewards/format_reward": 0.0,
1151
+ "rewards/reasoning_steps_reward": 0.0,
1152
+ "step": 365
1153
+ },
1154
+ {
1155
+ "completion_length": 35.70893115997315,
1156
+ "epoch": 0.5720359455019809,
1157
+ "grad_norm": 0.14685497696691516,
1158
+ "kl": 24.5890625,
1159
+ "learning_rate": 9.216756686793163e-06,
1160
+ "loss": 0.9834,
1161
+ "reward": -0.0007313355393591791,
1162
+ "reward_std": 0.0010342646257754495,
1163
+ "rewards/accuracy_reward": 0.0,
1164
+ "rewards/cosine_scaled_reward": -0.0007313355393591791,
1165
+ "rewards/format_reward": 0.0,
1166
+ "rewards/reasoning_steps_reward": 0.0,
1167
+ "step": 370
1168
+ },
1169
+ {
1170
+ "completion_length": 42.10268154144287,
1171
+ "epoch": 0.5797661609817374,
1172
+ "grad_norm": 0.09976156130247066,
1173
+ "kl": 24.515625,
1174
+ "learning_rate": 8.94754551297402e-06,
1175
+ "loss": 0.9803,
1176
+ "reward": -0.0007080816060238248,
1177
+ "reward_std": 0.0009251405505210641,
1178
+ "rewards/accuracy_reward": 0.0,
1179
+ "rewards/cosine_scaled_reward": -0.0007080815943822927,
1180
+ "rewards/format_reward": 0.0,
1181
+ "rewards/reasoning_steps_reward": 0.0,
1182
+ "step": 375
1183
+ },
1184
+ {
1185
+ "completion_length": 69.32857606261969,
1186
+ "epoch": 0.5874963764614939,
1187
+ "grad_norm": 0.7754555180333265,
1188
+ "kl": 23.7734375,
1189
+ "learning_rate": 8.67910358358298e-06,
1190
+ "loss": 0.9511,
1191
+ "reward": -0.002085479956159819,
1192
+ "reward_std": 0.0028004977468595984,
1193
+ "rewards/accuracy_reward": 0.0,
1194
+ "rewards/cosine_scaled_reward": -0.002085479956159819,
1195
+ "rewards/format_reward": 0.0,
1196
+ "rewards/reasoning_steps_reward": 0.0,
1197
+ "step": 380
1198
+ },
1199
+ {
1200
+ "completion_length": 76.5732192993164,
1201
+ "epoch": 0.5952265919412504,
1202
+ "grad_norm": 0.5202858180308233,
1203
+ "kl": 23.371875,
1204
+ "learning_rate": 8.411627104214675e-06,
1205
+ "loss": 0.935,
1206
+ "reward": -0.0017017564326295086,
1207
+ "reward_std": 0.002331838384964158,
1208
+ "rewards/accuracy_reward": 0.0,
1209
+ "rewards/cosine_scaled_reward": -0.0017017564311743172,
1210
+ "rewards/format_reward": 0.0,
1211
+ "rewards/reasoning_steps_reward": 0.0,
1212
+ "step": 385
1213
+ },
1214
+ {
1215
+ "completion_length": 62.300896883010864,
1216
+ "epoch": 0.6029568074210069,
1217
+ "grad_norm": 0.08412830920156626,
1218
+ "kl": 23.98125,
1219
+ "learning_rate": 8.145311574811325e-06,
1220
+ "loss": 0.9592,
1221
+ "reward": -0.0019122766454344742,
1222
+ "reward_std": 0.00268942869131763,
1223
+ "rewards/accuracy_reward": 0.0,
1224
+ "rewards/cosine_scaled_reward": -0.0019122766454344742,
1225
+ "rewards/format_reward": 0.0,
1226
+ "rewards/reasoning_steps_reward": 0.0,
1227
+ "step": 390
1228
+ },
1229
+ {
1230
+ "completion_length": 45.8089316368103,
1231
+ "epoch": 0.6106870229007634,
1232
+ "grad_norm": 0.10752134863872875,
1233
+ "kl": 24.4234375,
1234
+ "learning_rate": 7.880351646770824e-06,
1235
+ "loss": 0.9765,
1236
+ "reward": -0.000848563711724637,
1237
+ "reward_std": 0.0011321354522124238,
1238
+ "rewards/accuracy_reward": 0.0,
1239
+ "rewards/cosine_scaled_reward": -0.000848563711724637,
1240
+ "rewards/format_reward": 0.0,
1241
+ "rewards/reasoning_steps_reward": 0.0,
1242
+ "step": 395
1243
+ },
1244
+ {
1245
+ "completion_length": 47.3651818215847,
1246
+ "epoch": 0.6184172383805199,
1247
+ "grad_norm": 0.5988906531284993,
1248
+ "kl": 24.334375,
1249
+ "learning_rate": 7.616940980675004e-06,
1250
+ "loss": 0.973,
1251
+ "reward": -0.0015042206411578717,
1252
+ "reward_std": 0.0021272892814579334,
1253
+ "rewards/accuracy_reward": 0.0,
1254
+ "rewards/cosine_scaled_reward": -0.0015042206411578717,
1255
+ "rewards/format_reward": 0.0,
1256
+ "rewards/reasoning_steps_reward": 0.0,
1257
+ "step": 400
1258
+ },
1259
+ {
1260
+ "epoch": 0.6184172383805199,
1261
+ "eval_completion_length": 51.26339612901211,
1262
+ "eval_kl": 24.21875,
1263
+ "eval_loss": 0.9700301289558411,
1264
+ "eval_reward": -0.001125097114993423,
1265
+ "eval_reward_std": 0.0015911276817632825,
1266
+ "eval_rewards/accuracy_reward": 0.0,
1267
+ "eval_rewards/cosine_scaled_reward": -0.0011250970858895926,
1268
+ "eval_rewards/format_reward": 0.0,
1269
+ "eval_rewards/reasoning_steps_reward": 0.0,
1270
+ "eval_runtime": 22.626,
1271
+ "eval_samples_per_second": 4.376,
1272
+ "eval_steps_per_second": 0.177,
1273
+ "step": 400
1274
+ },
1275
+ {
1276
+ "completion_length": 86.76786234378815,
1277
+ "epoch": 0.6261474538602764,
1278
+ "grad_norm": 1.1818892245329233,
1279
+ "kl": 23.203125,
1280
+ "learning_rate": 7.355272104742132e-06,
1281
+ "loss": 0.9282,
1282
+ "reward": -0.0026306660576764784,
1283
+ "reward_std": 0.003647236472497184,
1284
+ "rewards/accuracy_reward": 0.0,
1285
+ "rewards/cosine_scaled_reward": -0.0026306660576764784,
1286
+ "rewards/format_reward": 0.0,
1287
+ "rewards/reasoning_steps_reward": 0.0,
1288
+ "step": 405
1289
+ },
1290
+ {
1291
+ "completion_length": 62.026789891719815,
1292
+ "epoch": 0.6338776693400329,
1293
+ "grad_norm": 0.2836127578512707,
1294
+ "kl": 23.709375,
1295
+ "learning_rate": 7.095536274107046e-06,
1296
+ "loss": 0.9482,
1297
+ "reward": -0.002841473452235732,
1298
+ "reward_std": 0.004013956811013486,
1299
+ "rewards/accuracy_reward": 0.0,
1300
+ "rewards/cosine_scaled_reward": -0.002841473452235732,
1301
+ "rewards/format_reward": 0.0,
1302
+ "rewards/reasoning_steps_reward": 0.0,
1303
+ "step": 410
1304
+ },
1305
+ {
1306
+ "completion_length": 46.67500334680081,
1307
+ "epoch": 0.6416078848197894,
1308
+ "grad_norm": 0.26356911850515,
1309
+ "kl": 24.3359375,
1310
+ "learning_rate": 6.837923331031761e-06,
1311
+ "loss": 0.9733,
1312
+ "reward": -0.001941360929671987,
1313
+ "reward_std": 0.0027454989251992855,
1314
+ "rewards/accuracy_reward": 0.0,
1315
+ "rewards/cosine_scaled_reward": -0.001941360929671987,
1316
+ "rewards/format_reward": 0.0,
1317
+ "rewards/reasoning_steps_reward": 0.0,
1318
+ "step": 415
1319
+ },
1320
+ {
1321
+ "completion_length": 37.07410943508148,
1322
+ "epoch": 0.6493381002995459,
1323
+ "grad_norm": 0.2805168584113563,
1324
+ "kl": 24.54375,
1325
+ "learning_rate": 6.58262156614881e-06,
1326
+ "loss": 0.9813,
1327
+ "reward": -0.0028216561851877485,
1328
+ "reward_std": 0.003953768716746709,
1329
+ "rewards/accuracy_reward": 0.0,
1330
+ "rewards/cosine_scaled_reward": -0.0028216561851877485,
1331
+ "rewards/format_reward": 0.0,
1332
+ "rewards/reasoning_steps_reward": 0.0,
1333
+ "step": 420
1334
+ },
1335
+ {
1336
+ "completion_length": 54.22589612603188,
1337
+ "epoch": 0.6570683157793024,
1338
+ "grad_norm": 0.913450851127483,
1339
+ "kl": 23.8859375,
1340
+ "learning_rate": 6.3298175808386284e-06,
1341
+ "loss": 0.9553,
1342
+ "reward": -0.007596620212734706,
1343
+ "reward_std": 0.009845524301908881,
1344
+ "rewards/accuracy_reward": 0.0,
1345
+ "rewards/cosine_scaled_reward": -0.007596620212734706,
1346
+ "rewards/format_reward": 0.0,
1347
+ "rewards/reasoning_steps_reward": 0.0,
1348
+ "step": 425
1349
+ },
1350
+ {
1351
+ "completion_length": 48.00268133282661,
1352
+ "epoch": 0.6647985312590589,
1353
+ "grad_norm": 0.4604626281806278,
1354
+ "kl": 23.9265625,
1355
+ "learning_rate": 6.079696150841634e-06,
1356
+ "loss": 0.9569,
1357
+ "reward": -0.012062773975776509,
1358
+ "reward_std": 0.016299182930379175,
1359
+ "rewards/accuracy_reward": 0.0,
1360
+ "rewards/cosine_scaled_reward": -0.012062773999059574,
1361
+ "rewards/format_reward": 0.0,
1362
+ "rewards/reasoning_steps_reward": 0.0,
1363
+ "step": 430
1364
+ },
1365
+ {
1366
+ "completion_length": 46.86160971969366,
1367
+ "epoch": 0.6725287467388154,
1368
+ "grad_norm": 0.7252971846570313,
1369
+ "kl": 24.1859375,
1370
+ "learning_rate": 5.832440091204698e-06,
1371
+ "loss": 0.9676,
1372
+ "reward": -0.012686770772155142,
1373
+ "reward_std": 0.017015842359229795,
1374
+ "rewards/accuracy_reward": 0.0,
1375
+ "rewards/cosine_scaled_reward": -0.012686770772155142,
1376
+ "rewards/format_reward": 0.0,
1377
+ "rewards/reasoning_steps_reward": 0.0,
1378
+ "step": 435
1379
+ },
1380
+ {
1381
+ "completion_length": 47.819645977020265,
1382
+ "epoch": 0.6802589622185718,
1383
+ "grad_norm": 0.2805343679934075,
1384
+ "kl": 24.2859375,
1385
+ "learning_rate": 5.588230122660672e-06,
1386
+ "loss": 0.9712,
1387
+ "reward": -0.012813755803776417,
1388
+ "reward_std": 0.017698440483681566,
1389
+ "rewards/accuracy_reward": 0.0,
1390
+ "rewards/cosine_scaled_reward": -0.012813755803776417,
1391
+ "rewards/format_reward": 0.0,
1392
+ "rewards/reasoning_steps_reward": 0.0,
1393
+ "step": 440
1394
+ },
1395
+ {
1396
+ "completion_length": 51.863396406173706,
1397
+ "epoch": 0.6879891776983283,
1398
+ "grad_norm": 0.309711353898578,
1399
+ "kl": 24.31875,
1400
+ "learning_rate": 5.347244739538677e-06,
1401
+ "loss": 0.9726,
1402
+ "reward": -0.021797565624001435,
1403
+ "reward_std": 0.027237284120928962,
1404
+ "rewards/accuracy_reward": 0.0,
1405
+ "rewards/cosine_scaled_reward": -0.021797565717133694,
1406
+ "rewards/format_reward": 0.0,
1407
+ "rewards/reasoning_steps_reward": 0.0,
1408
+ "step": 445
1409
+ },
1410
+ {
1411
+ "completion_length": 64.80982577204705,
1412
+ "epoch": 0.6957193931780848,
1413
+ "grad_norm": 1.2162712083436764,
1414
+ "kl": 24.14375,
1415
+ "learning_rate": 5.109660079301668e-06,
1416
+ "loss": 0.9659,
1417
+ "reward": -0.02888913472050376,
1418
+ "reward_std": 0.04085540586487468,
1419
+ "rewards/accuracy_reward": 0.0,
1420
+ "rewards/cosine_scaled_reward": -0.028889134627371506,
1421
+ "rewards/format_reward": 0.0,
1422
+ "rewards/reasoning_steps_reward": 0.0,
1423
+ "step": 450
1424
+ },
1425
+ {
1426
+ "completion_length": 59.602682419121265,
1427
+ "epoch": 0.7034496086578413,
1428
+ "grad_norm": 0.3933355097706156,
1429
+ "kl": 24.1421875,
1430
+ "learning_rate": 4.875649793806655e-06,
1431
+ "loss": 0.9656,
1432
+ "reward": -0.026990144280716777,
1433
+ "reward_std": 0.03466883820692601,
1434
+ "rewards/accuracy_reward": 0.0,
1435
+ "rewards/cosine_scaled_reward": -0.026990144187584518,
1436
+ "rewards/format_reward": 0.0,
1437
+ "rewards/reasoning_steps_reward": 0.0,
1438
+ "step": 455
1439
+ },
1440
+ {
1441
+ "completion_length": 31.516073471307756,
1442
+ "epoch": 0.7111798241375978,
1443
+ "grad_norm": 0.8420503487470977,
1444
+ "kl": 24.99375,
1445
+ "learning_rate": 4.64538492238166e-06,
1446
+ "loss": 0.9995,
1447
+ "reward": -0.007723358142743564,
1448
+ "reward_std": 0.010892791659921386,
1449
+ "rewards/accuracy_reward": 0.0,
1450
+ "rewards/cosine_scaled_reward": -0.007723358142743564,
1451
+ "rewards/format_reward": 0.0,
1452
+ "rewards/reasoning_steps_reward": 0.0,
1453
+ "step": 460
1454
+ },
1455
+ {
1456
+ "completion_length": 41.60357391834259,
1457
+ "epoch": 0.7189100396173543,
1458
+ "grad_norm": 0.8662013381034004,
1459
+ "kl": 24.68125,
1460
+ "learning_rate": 4.4190337668121964e-06,
1461
+ "loss": 0.9872,
1462
+ "reward": -0.009986836141189403,
1463
+ "reward_std": 0.013905720249748121,
1464
+ "rewards/accuracy_reward": 0.0,
1465
+ "rewards/cosine_scaled_reward": -0.009986836187755532,
1466
+ "rewards/format_reward": 0.0,
1467
+ "rewards/reasoning_steps_reward": 0.0,
1468
+ "step": 465
1469
+ },
1470
+ {
1471
+ "completion_length": 50.748217730224134,
1472
+ "epoch": 0.7266402550971108,
1473
+ "grad_norm": 0.28970671122261415,
1474
+ "kl": 24.2953125,
1475
+ "learning_rate": 4.196761768328599e-06,
1476
+ "loss": 0.9714,
1477
+ "reward": -0.014916278285645745,
1478
+ "reward_std": 0.021028667081813522,
1479
+ "rewards/accuracy_reward": 0.0,
1480
+ "rewards/cosine_scaled_reward": -0.014916278285645745,
1481
+ "rewards/format_reward": 0.0,
1482
+ "rewards/reasoning_steps_reward": 0.0,
1483
+ "step": 470
1484
+ },
1485
+ {
1486
+ "completion_length": 68.74196868389845,
1487
+ "epoch": 0.7343704705768673,
1488
+ "grad_norm": 0.918329541521939,
1489
+ "kl": 24.0203125,
1490
+ "learning_rate": 3.978731386684206e-06,
1491
+ "loss": 0.9612,
1492
+ "reward": -0.016641861237076228,
1493
+ "reward_std": 0.022046213136218285,
1494
+ "rewards/accuracy_reward": 0.0,
1495
+ "rewards/cosine_scaled_reward": -0.016641861237076228,
1496
+ "rewards/format_reward": 0.0,
1497
+ "rewards/reasoning_steps_reward": 0.0,
1498
+ "step": 475
1499
+ },
1500
+ {
1501
+ "completion_length": 53.72321764677763,
1502
+ "epoch": 0.7421006860566238,
1503
+ "grad_norm": 78.83378790639892,
1504
+ "kl": 25.0453125,
1505
+ "learning_rate": 3.7651019814126656e-06,
1506
+ "loss": 1.0021,
1507
+ "reward": -0.009450171658966245,
1508
+ "reward_std": 0.012123302213909249,
1509
+ "rewards/accuracy_reward": 0.0,
1510
+ "rewards/cosine_scaled_reward": -0.00945017168224931,
1511
+ "rewards/format_reward": 0.0,
1512
+ "rewards/reasoning_steps_reward": 0.0,
1513
+ "step": 480
1514
+ },
1515
+ {
1516
+ "completion_length": 51.16786060333252,
1517
+ "epoch": 0.7498309015363803,
1518
+ "grad_norm": 0.33308461385913096,
1519
+ "kl": 24.4515625,
1520
+ "learning_rate": 3.5560296953512296e-06,
1521
+ "loss": 0.9779,
1522
+ "reward": -0.004581006449978986,
1523
+ "reward_std": 0.006231808224913493,
1524
+ "rewards/accuracy_reward": 0.0,
1525
+ "rewards/cosine_scaled_reward": -0.004581006496545114,
1526
+ "rewards/format_reward": 0.0,
1527
+ "rewards/reasoning_steps_reward": 0.0,
1528
+ "step": 485
1529
+ },
1530
+ {
1531
+ "completion_length": 55.30178937315941,
1532
+ "epoch": 0.7575611170161368,
1533
+ "grad_norm": 305.81882755074383,
1534
+ "kl": 27.3046875,
1535
+ "learning_rate": 3.3516673405151546e-06,
1536
+ "loss": 1.0928,
1537
+ "reward": -0.003802679693740174,
1538
+ "reward_std": 0.005377801274141803,
1539
+ "rewards/accuracy_reward": 0.0,
1540
+ "rewards/cosine_scaled_reward": -0.0038026797170232383,
1541
+ "rewards/format_reward": 0.0,
1542
+ "rewards/reasoning_steps_reward": 0.0,
1543
+ "step": 490
1544
+ },
1545
+ {
1546
+ "completion_length": 63.23661144077778,
1547
+ "epoch": 0.7652913324958933,
1548
+ "grad_norm": 0.5787231505930388,
1549
+ "kl": 25.1375,
1550
+ "learning_rate": 3.1521642864065905e-06,
1551
+ "loss": 1.0056,
1552
+ "reward": -0.004590116689792101,
1553
+ "reward_std": 0.006453327897092543,
1554
+ "rewards/accuracy_reward": 0.0,
1555
+ "rewards/cosine_scaled_reward": -0.004590116689792101,
1556
+ "rewards/format_reward": 0.0,
1557
+ "rewards/reasoning_steps_reward": 0.0,
1558
+ "step": 495
1559
+ },
1560
+ {
1561
+ "completion_length": 46.05268131196499,
1562
+ "epoch": 0.7730215479756498,
1563
+ "grad_norm": 1.435679878343505,
1564
+ "kl": 24.3078125,
1565
+ "learning_rate": 2.957666350839663e-06,
1566
+ "loss": 0.9722,
1567
+ "reward": -0.0046006116961741835,
1568
+ "reward_std": 0.006438373773643491,
1569
+ "rewards/accuracy_reward": 0.0,
1570
+ "rewards/cosine_scaled_reward": -0.0046006116961741835,
1571
+ "rewards/format_reward": 0.0,
1572
+ "rewards/reasoning_steps_reward": 0.0,
1573
+ "step": 500
1574
+ },
1575
+ {
1576
+ "epoch": 0.7730215479756498,
1577
+ "eval_completion_length": 40.11160922050476,
1578
+ "eval_kl": 24.578125,
1579
+ "eval_loss": 0.985271155834198,
1580
+ "eval_reward": -0.006326919745333726,
1581
+ "eval_reward_std": 0.008947615635406692,
1582
+ "eval_rewards/accuracy_reward": 0.0,
1583
+ "eval_rewards/cosine_scaled_reward": -0.006326919745333726,
1584
+ "eval_rewards/format_reward": 0.0,
1585
+ "eval_rewards/reasoning_steps_reward": 0.0,
1586
+ "eval_runtime": 23.2741,
1587
+ "eval_samples_per_second": 4.254,
1588
+ "eval_steps_per_second": 0.172,
1589
+ "step": 500
1590
+ },
1591
+ {
1592
+ "completion_length": 36.7062520518899,
1593
+ "epoch": 0.7807517634554063,
1594
+ "grad_norm": 0.2761808288916843,
1595
+ "kl": 24.5265625,
1596
+ "learning_rate": 2.768315693361474e-06,
1597
+ "loss": 0.981,
1598
+ "reward": -0.005745776838499239,
1599
+ "reward_std": 0.008125755542479851,
1600
+ "rewards/accuracy_reward": 0.0,
1601
+ "rewards/cosine_scaled_reward": -0.005745776745366982,
1602
+ "rewards/format_reward": 0.0,
1603
+ "rewards/reasoning_steps_reward": 0.0,
1604
+ "step": 505
1605
+ },
1606
+ {
1607
+ "completion_length": 44.904467339813706,
1608
+ "epoch": 0.7884819789351628,
1609
+ "grad_norm": 1.3465156523462427,
1610
+ "kl": 24.49375,
1611
+ "learning_rate": 2.5842507113469307e-06,
1612
+ "loss": 0.98,
1613
+ "reward": -0.005905044664916659,
1614
+ "reward_std": 0.008296428343896878,
1615
+ "rewards/accuracy_reward": 0.0,
1616
+ "rewards/cosine_scaled_reward": -0.005905044664916659,
1617
+ "rewards/format_reward": 0.0,
1618
+ "rewards/reasoning_steps_reward": 0.0,
1619
+ "step": 510
1620
+ },
1621
+ {
1622
+ "completion_length": 42.89464537650347,
1623
+ "epoch": 0.7962121944149193,
1624
+ "grad_norm": 0.6423998335451256,
1625
+ "kl": 24.3765625,
1626
+ "learning_rate": 2.405605938843416e-06,
1627
+ "loss": 0.975,
1628
+ "reward": -0.005736959281955478,
1629
+ "reward_std": 0.008099251179783096,
1630
+ "rewards/accuracy_reward": 0.0,
1631
+ "rewards/cosine_scaled_reward": -0.005736959281955478,
1632
+ "rewards/format_reward": 0.0,
1633
+ "rewards/reasoning_steps_reward": 0.0,
1634
+ "step": 515
1635
+ },
1636
+ {
1637
+ "completion_length": 48.71964579820633,
1638
+ "epoch": 0.8039424098946758,
1639
+ "grad_norm": 0.9616888653441464,
1640
+ "kl": 24.0609375,
1641
+ "learning_rate": 2.2325119482391466e-06,
1642
+ "loss": 0.9623,
1643
+ "reward": -0.005028559759688278,
1644
+ "reward_std": 0.007111457411508581,
1645
+ "rewards/accuracy_reward": 0.0,
1646
+ "rewards/cosine_scaled_reward": -0.005028559713122149,
1647
+ "rewards/format_reward": 0.0,
1648
+ "rewards/reasoning_steps_reward": 0.0,
1649
+ "step": 520
1650
+ },
1651
+ {
1652
+ "completion_length": 39.69464554786682,
1653
+ "epoch": 0.8116726253744323,
1654
+ "grad_norm": 10.30615008769208,
1655
+ "kl": 24.7109375,
1656
+ "learning_rate": 2.065095254827133e-06,
1657
+ "loss": 0.9885,
1658
+ "reward": -0.0030483946065032797,
1659
+ "reward_std": 0.004290749793926807,
1660
+ "rewards/accuracy_reward": 0.0,
1661
+ "rewards/cosine_scaled_reward": -0.0030483946094136626,
1662
+ "rewards/format_reward": 0.0,
1663
+ "rewards/reasoning_steps_reward": 0.0,
1664
+ "step": 525
1665
+ },
1666
+ {
1667
+ "completion_length": 44.354466861486436,
1668
+ "epoch": 0.8194028408541888,
1669
+ "grad_norm": 0.615670728640926,
1670
+ "kl": 24.409375,
1671
+ "learning_rate": 1.9034782243345074e-06,
1672
+ "loss": 0.9759,
1673
+ "reward": -0.0030309244835677873,
1674
+ "reward_std": 0.004090318087315836,
1675
+ "rewards/accuracy_reward": 0.0,
1676
+ "rewards/cosine_scaled_reward": -0.0030309244893885535,
1677
+ "rewards/format_reward": 0.0,
1678
+ "rewards/reasoning_steps_reward": 0.0,
1679
+ "step": 530
1680
+ },
1681
+ {
1682
+ "completion_length": 46.14911011010408,
1683
+ "epoch": 0.8271330563339453,
1684
+ "grad_norm": 0.7617698847734057,
1685
+ "kl": 24.4140625,
1686
+ "learning_rate": 1.7477789834847835e-06,
1687
+ "loss": 0.9761,
1688
+ "reward": -0.004230587323957202,
1689
+ "reward_std": 0.005964093679218863,
1690
+ "rewards/accuracy_reward": 0.0,
1691
+ "rewards/cosine_scaled_reward": -0.00423058731231567,
1692
+ "rewards/format_reward": 0.0,
1693
+ "rewards/reasoning_steps_reward": 0.0,
1694
+ "step": 535
1695
+ },
1696
+ {
1697
+ "completion_length": 39.64196678251028,
1698
+ "epoch": 0.8348632718137018,
1699
+ "grad_norm": 1.156878402277619,
1700
+ "kl": 24.2203125,
1701
+ "learning_rate": 1.5981113336584041e-06,
1702
+ "loss": 0.9687,
1703
+ "reward": -0.003543670538948618,
1704
+ "reward_std": 0.004806647020114951,
1705
+ "rewards/accuracy_reward": 0.0,
1706
+ "rewards/cosine_scaled_reward": -0.003543670538948618,
1707
+ "rewards/format_reward": 0.0,
1708
+ "rewards/reasoning_steps_reward": 0.0,
1709
+ "step": 540
1710
+ },
1711
+ {
1712
+ "completion_length": 46.57232457995415,
1713
+ "epoch": 0.8425934872934583,
1714
+ "grad_norm": 0.4199458638335275,
1715
+ "kl": 24.2046875,
1716
+ "learning_rate": 1.4545846677147446e-06,
1717
+ "loss": 0.9682,
1718
+ "reward": -0.005338836487372589,
1719
+ "reward_std": 0.007550142756585387,
1720
+ "rewards/accuracy_reward": 0.0,
1721
+ "rewards/cosine_scaled_reward": -0.005338836487372589,
1722
+ "rewards/format_reward": 0.0,
1723
+ "rewards/reasoning_steps_reward": 0.0,
1724
+ "step": 545
1725
+ },
1726
+ {
1727
+ "completion_length": 49.66607456803322,
1728
+ "epoch": 0.8503237027732148,
1729
+ "grad_norm": 4.461365741300084,
1730
+ "kl": 24.1,
1731
+ "learning_rate": 1.3173038900362977e-06,
1732
+ "loss": 0.964,
1733
+ "reward": -0.004732385008082929,
1734
+ "reward_std": 0.00659514378021413,
1735
+ "rewards/accuracy_reward": 0.0,
1736
+ "rewards/cosine_scaled_reward": -0.004732385008082929,
1737
+ "rewards/format_reward": 0.0,
1738
+ "rewards/reasoning_steps_reward": 0.0,
1739
+ "step": 550
1740
+ },
1741
+ {
1742
+ "completion_length": 45.15446722209454,
1743
+ "epoch": 0.8580539182529713,
1744
+ "grad_norm": 0.5986641101244399,
1745
+ "kl": 24.3421875,
1746
+ "learning_rate": 1.1863693398535115e-06,
1747
+ "loss": 0.9735,
1748
+ "reward": -0.0029984577427512706,
1749
+ "reward_std": 0.004211953165122395,
1750
+ "rewards/accuracy_reward": 0.0,
1751
+ "rewards/cosine_scaled_reward": -0.0029984577427512706,
1752
+ "rewards/format_reward": 0.0,
1753
+ "rewards/reasoning_steps_reward": 0.0,
1754
+ "step": 555
1755
+ },
1756
+ {
1757
+ "completion_length": 45.605360022187234,
1758
+ "epoch": 0.8657841337327278,
1759
+ "grad_norm": 0.534747510415695,
1760
+ "kl": 24.2609375,
1761
+ "learning_rate": 1.0618767179063416e-06,
1762
+ "loss": 0.9702,
1763
+ "reward": -0.0036516298819336155,
1764
+ "reward_std": 0.005164184488143065,
1765
+ "rewards/accuracy_reward": 0.0,
1766
+ "rewards/cosine_scaled_reward": -0.003651629893575148,
1767
+ "rewards/format_reward": 0.0,
1768
+ "rewards/reasoning_steps_reward": 0.0,
1769
+ "step": 560
1770
+ },
1771
+ {
1772
+ "completion_length": 42.566074170172215,
1773
+ "epoch": 0.8735143492124843,
1774
+ "grad_norm": 0.6059644840217457,
1775
+ "kl": 24.44375,
1776
+ "learning_rate": 9.439170164960765e-07,
1777
+ "loss": 0.9778,
1778
+ "reward": -0.0029312313739865204,
1779
+ "reward_std": 0.004098246799730987,
1780
+ "rewards/accuracy_reward": 0.0,
1781
+ "rewards/cosine_scaled_reward": -0.002931231374714116,
1782
+ "rewards/format_reward": 0.0,
1783
+ "rewards/reasoning_steps_reward": 0.0,
1784
+ "step": 565
1785
+ },
1786
+ {
1787
+ "completion_length": 53.61071793586016,
1788
+ "epoch": 0.8812445646922408,
1789
+ "grad_norm": 1.6865381605569074,
1790
+ "kl": 23.9640625,
1791
+ "learning_rate": 8.325764529785851e-07,
1792
+ "loss": 0.9585,
1793
+ "reward": -0.004873991443924553,
1794
+ "reward_std": 0.006856209293836457,
1795
+ "rewards/accuracy_reward": 0.0,
1796
+ "rewards/cosine_scaled_reward": -0.004873991455566084,
1797
+ "rewards/format_reward": 0.0,
1798
+ "rewards/reasoning_steps_reward": 0.0,
1799
+ "step": 570
1800
+ },
1801
+ {
1802
+ "completion_length": 48.17232428640127,
1803
+ "epoch": 0.8889747801719973,
1804
+ "grad_norm": 0.793839960135767,
1805
+ "kl": 24.1234375,
1806
+ "learning_rate": 7.279364067476247e-07,
1807
+ "loss": 0.9646,
1808
+ "reward": -0.004261988118764748,
1809
+ "reward_std": 0.005693929277595089,
1810
+ "rewards/accuracy_reward": 0.0,
1811
+ "rewards/cosine_scaled_reward": -0.004261988124585514,
1812
+ "rewards/format_reward": 0.0,
1813
+ "rewards/reasoning_steps_reward": 0.0,
1814
+ "step": 575
1815
+ },
1816
+ {
1817
+ "completion_length": 65.91875450015068,
1818
+ "epoch": 0.8967049956517538,
1819
+ "grad_norm": 0.36075442660566825,
1820
+ "kl": 23.728125,
1821
+ "learning_rate": 6.300733597542086e-07,
1822
+ "loss": 0.949,
1823
+ "reward": -0.004888249606960926,
1824
+ "reward_std": 0.006862056562249563,
1825
+ "rewards/accuracy_reward": 0.0,
1826
+ "rewards/cosine_scaled_reward": -0.004888249606960926,
1827
+ "rewards/format_reward": 0.0,
1828
+ "rewards/reasoning_steps_reward": 0.0,
1829
+ "step": 580
1830
+ },
1831
+ {
1832
+ "completion_length": 59.56786108762026,
1833
+ "epoch": 0.9044352111315103,
1834
+ "grad_norm": 0.470810200110092,
1835
+ "kl": 23.8546875,
1836
+ "learning_rate": 5.390588406055497e-07,
1837
+ "loss": 0.9541,
1838
+ "reward": -0.004270391982012711,
1839
+ "reward_std": 0.006030588216785304,
1840
+ "rewards/accuracy_reward": 0.0,
1841
+ "rewards/cosine_scaled_reward": -0.004270391982012711,
1842
+ "rewards/format_reward": 0.0,
1843
+ "rewards/reasoning_steps_reward": 0.0,
1844
+ "step": 585
1845
+ },
1846
+ {
1847
+ "completion_length": 49.16071737408638,
1848
+ "epoch": 0.9121654266112668,
1849
+ "grad_norm": 0.30166398904682923,
1850
+ "kl": 24.2296875,
1851
+ "learning_rate": 4.549593722844492e-07,
1852
+ "loss": 0.969,
1853
+ "reward": -0.0038439762124880873,
1854
+ "reward_std": 0.005080879169804575,
1855
+ "rewards/accuracy_reward": 0.0,
1856
+ "rewards/cosine_scaled_reward": -0.0038439761659219583,
1857
+ "rewards/format_reward": 0.0,
1858
+ "rewards/reasoning_steps_reward": 0.0,
1859
+ "step": 590
1860
+ },
1861
+ {
1862
+ "completion_length": 41.13482419103384,
1863
+ "epoch": 0.9198956420910233,
1864
+ "grad_norm": 2.14891764621043,
1865
+ "kl": 24.615625,
1866
+ "learning_rate": 3.77836423527278e-07,
1867
+ "loss": 0.9848,
1868
+ "reward": -0.0033783776602923864,
1869
+ "reward_std": 0.004549032651979701,
1870
+ "rewards/accuracy_reward": 0.0,
1871
+ "rewards/cosine_scaled_reward": -0.0033783776602923864,
1872
+ "rewards/format_reward": 0.0,
1873
+ "rewards/reasoning_steps_reward": 0.0,
1874
+ "step": 595
1875
+ },
1876
+ {
1877
+ "completion_length": 34.614287830889225,
1878
+ "epoch": 0.9276258575707798,
1879
+ "grad_norm": 0.5737064816443503,
1880
+ "kl": 24.590625,
1881
+ "learning_rate": 3.0774636389618196e-07,
1882
+ "loss": 0.9838,
1883
+ "reward": -0.002332200028695297,
1884
+ "reward_std": 0.003298228911899059,
1885
+ "rewards/accuracy_reward": 0.0,
1886
+ "rewards/cosine_scaled_reward": -0.002332200028695297,
1887
+ "rewards/format_reward": 0.0,
1888
+ "rewards/reasoning_steps_reward": 0.0,
1889
+ "step": 600
1890
+ },
1891
+ {
1892
+ "epoch": 0.9276258575707798,
1893
+ "eval_completion_length": 32.74821615219116,
1894
+ "eval_kl": 24.890625,
1895
+ "eval_loss": 0.9939680695533752,
1896
+ "eval_reward": -0.0007343304278037976,
1897
+ "eval_reward_std": 0.0009667417034506798,
1898
+ "eval_rewards/accuracy_reward": 0.0,
1899
+ "eval_rewards/cosine_scaled_reward": -0.0007343304278037976,
1900
+ "eval_rewards/format_reward": 0.0,
1901
+ "eval_rewards/reasoning_steps_reward": 0.0,
1902
+ "eval_runtime": 21.7904,
1903
+ "eval_samples_per_second": 4.543,
1904
+ "eval_steps_per_second": 0.184,
1905
+ "step": 600
1906
+ },
1907
+ {
1908
+ "completion_length": 31.262502002716065,
1909
+ "epoch": 0.9353560730505363,
1910
+ "grad_norm": 2.2163447857886047,
1911
+ "kl": 24.6203125,
1912
+ "learning_rate": 2.44740422578269e-07,
1913
+ "loss": 0.9847,
1914
+ "reward": -0.0034189186366347713,
1915
+ "reward_std": 0.004835081120654649,
1916
+ "rewards/accuracy_reward": 0.0,
1917
+ "rewards/cosine_scaled_reward": -0.0034189186366347713,
1918
+ "rewards/format_reward": 0.0,
1919
+ "rewards/reasoning_steps_reward": 0.0,
1920
+ "step": 605
1921
+ },
1922
+ {
1923
+ "completion_length": 49.31071757972241,
1924
+ "epoch": 0.9430862885302927,
1925
+ "grad_norm": 0.6229861448868668,
1926
+ "kl": 24.153125,
1927
+ "learning_rate": 1.8886465094192895e-07,
1928
+ "loss": 0.966,
1929
+ "reward": -0.003229186121393468,
1930
+ "reward_std": 0.004545925347724733,
1931
+ "rewards/accuracy_reward": 0.0,
1932
+ "rewards/cosine_scaled_reward": -0.003229186121393468,
1933
+ "rewards/format_reward": 0.0,
1934
+ "rewards/reasoning_steps_reward": 0.0,
1935
+ "step": 610
1936
+ },
1937
+ {
1938
+ "completion_length": 35.64910935461521,
1939
+ "epoch": 0.9508165040100492,
1940
+ "grad_norm": 3.705591212787074,
1941
+ "kl": 24.5125,
1942
+ "learning_rate": 1.401598888776523e-07,
1943
+ "loss": 0.9804,
1944
+ "reward": -0.004258286483764096,
1945
+ "reward_std": 0.005848287543631159,
1946
+ "rewards/accuracy_reward": 0.0,
1947
+ "rewards/cosine_scaled_reward": -0.004258286530330224,
1948
+ "rewards/format_reward": 0.0,
1949
+ "rewards/reasoning_steps_reward": 0.0,
1950
+ "step": 615
1951
+ },
1952
+ {
1953
+ "completion_length": 56.283039236068724,
1954
+ "epoch": 0.9585467194898057,
1955
+ "grad_norm": 1.353088289442673,
1956
+ "kl": 24.2328125,
1957
+ "learning_rate": 9.866173494794462e-08,
1958
+ "loss": 0.9693,
1959
+ "reward": -0.005120481132257737,
1960
+ "reward_std": 0.006864398748734857,
1961
+ "rewards/accuracy_reward": 0.0,
1962
+ "rewards/cosine_scaled_reward": -0.005120481178823866,
1963
+ "rewards/format_reward": 0.0,
1964
+ "rewards/reasoning_steps_reward": 0.0,
1965
+ "step": 620
1966
+ },
1967
+ {
1968
+ "completion_length": 38.977681183815,
1969
+ "epoch": 0.9662769349695622,
1970
+ "grad_norm": 0.5783254077528687,
1971
+ "kl": 24.5234375,
1972
+ "learning_rate": 6.440052036815081e-08,
1973
+ "loss": 0.9807,
1974
+ "reward": -0.0028176053295908333,
1975
+ "reward_std": 0.003978943701770277,
1976
+ "rewards/accuracy_reward": 0.0,
1977
+ "rewards/cosine_scaled_reward": -0.0028176053295908333,
1978
+ "rewards/format_reward": 0.0,
1979
+ "rewards/reasoning_steps_reward": 0.0,
1980
+ "step": 625
1981
+ },
1982
+ {
1983
+ "completion_length": 42.6562525421381,
1984
+ "epoch": 0.9740071504493187,
1985
+ "grad_norm": 0.8232559607607927,
1986
+ "kl": 24.38125,
1987
+ "learning_rate": 3.7401286837214224e-08,
1988
+ "loss": 0.9753,
1989
+ "reward": -0.002573585319900218,
1990
+ "reward_std": 0.0034814744626572745,
1991
+ "rewards/accuracy_reward": 0.0,
1992
+ "rewards/cosine_scaled_reward": -0.002573585325720984,
1993
+ "rewards/format_reward": 0.0,
1994
+ "rewards/reasoning_steps_reward": 0.0,
1995
+ "step": 630
1996
+ },
1997
+ {
1998
+ "completion_length": 46.04732434153557,
1999
+ "epoch": 0.9817373659290752,
2000
+ "grad_norm": 0.46809429712914535,
2001
+ "kl": 24.3265625,
2002
+ "learning_rate": 1.7683768234568745e-08,
2003
+ "loss": 0.9731,
2004
+ "reward": -0.0030760798572949,
2005
+ "reward_std": 0.004335028942911379,
2006
+ "rewards/accuracy_reward": 0.0,
2007
+ "rewards/cosine_scaled_reward": -0.0030760798922194964,
2008
+ "rewards/format_reward": 0.0,
2009
+ "rewards/reasoning_steps_reward": 0.0,
2010
+ "step": 635
2011
+ },
2012
+ {
2013
+ "completion_length": 42.86875238418579,
2014
+ "epoch": 0.9894675814088317,
2015
+ "grad_norm": 0.6530501980892132,
2016
+ "kl": 24.375,
2017
+ "learning_rate": 5.262376196544239e-09,
2018
+ "loss": 0.9751,
2019
+ "reward": -0.004086044424411739,
2020
+ "reward_std": 0.005763764342600552,
2021
+ "rewards/accuracy_reward": 0.0,
2022
+ "rewards/cosine_scaled_reward": -0.004086044424411739,
2023
+ "rewards/format_reward": 0.0,
2024
+ "rewards/reasoning_steps_reward": 0.0,
2025
+ "step": 640
2026
+ },
2027
+ {
2028
+ "completion_length": 38.43035954236984,
2029
+ "epoch": 0.9971977968885882,
2030
+ "grad_norm": 0.5860528397565183,
2031
+ "kl": 24.2625,
2032
+ "learning_rate": 1.461895828280824e-10,
2033
+ "loss": 0.9703,
2034
+ "reward": -0.0041267017044091855,
2035
+ "reward_std": 0.0050602933844260175,
2036
+ "rewards/accuracy_reward": 0.0,
2037
+ "rewards/cosine_scaled_reward": -0.0041267017044091855,
2038
+ "rewards/format_reward": 0.0,
2039
+ "rewards/reasoning_steps_reward": 0.0,
2040
+ "step": 645
2041
+ },
2042
+ {
2043
+ "completion_length": 42.96875283122063,
2044
+ "epoch": 0.9987438399845395,
2045
+ "kl": 24.4140625,
2046
+ "reward": -0.0019939331905334257,
2047
+ "reward_std": 0.0028198473701195326,
2048
+ "rewards/accuracy_reward": 0.0,
2049
+ "rewards/cosine_scaled_reward": -0.0019939331905334257,
2050
+ "rewards/format_reward": 0.0,
2051
+ "rewards/reasoning_steps_reward": 0.0,
2052
+ "step": 646,
2053
+ "total_flos": 0.0,
2054
+ "train_loss": 0.9507393147195028,
2055
+ "train_runtime": 22343.714,
2056
+ "train_samples_per_second": 3.242,
2057
+ "train_steps_per_second": 0.029
2058
+ }
2059
+ ],
2060
+ "logging_steps": 5,
2061
+ "max_steps": 646,
2062
+ "num_input_tokens_seen": 0,
2063
+ "num_train_epochs": 1,
2064
+ "save_steps": 500,
2065
+ "stateful_callbacks": {
2066
+ "TrainerControl": {
2067
+ "args": {
2068
+ "should_epoch_stop": false,
2069
+ "should_evaluate": false,
2070
+ "should_log": false,
2071
+ "should_save": false,
2072
+ "should_training_stop": false
2073
+ },
2074
+ "attributes": {}
2075
+ }
2076
+ },
2077
+ "total_flos": 0.0,
2078
+ "train_batch_size": 2,
2079
+ "trial_name": null,
2080
+ "trial_params": null
2081
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61f3674824eab11c920a307a67488f2e5e97863445d23083c0d34ae7fe211c7c
3
+ size 7544
vocab.json ADDED
The diff for this file is too large to render. See raw diff