rzhao17 commited on
Commit
9d8e43a
·
verified ·
1 Parent(s): bb39cf7

Model save

Browse files
Files changed (6) hide show
  1. README.md +68 -0
  2. all_results.json +8 -0
  3. config.json +1 -1
  4. generation_config.json +14 -0
  5. train_results.json +8 -0
  6. trainer_state.json +2967 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-3B-Instruct
3
+ library_name: transformers
4
+ model_name: qwen-2.5-3b-r1-countdown
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - grpo
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for qwen-2.5-3b-r1-countdown
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-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="rzhao17/qwen-2.5-3b-r1-countdown", 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
+
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.14.0
38
+ - Transformers: 4.48.1
39
+ - Pytorch: 2.5.1+cu121
40
+ - Datasets: 3.1.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
+ ```
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.0,
4
+ "train_runtime": 30520.1269,
5
+ "train_samples": 45000,
6
+ "train_samples_per_second": 0.236,
7
+ "train_steps_per_second": 0.015
8
+ }
config.json CHANGED
@@ -23,7 +23,7 @@
23
  "tie_word_embeddings": true,
24
  "torch_dtype": "bfloat16",
25
  "transformers_version": "4.48.1",
26
- "use_cache": false,
27
  "use_sliding_window": false,
28
  "vocab_size": 151936
29
  }
 
23
  "tie_word_embeddings": true,
24
  "torch_dtype": "bfloat16",
25
  "transformers_version": "4.48.1",
26
+ "use_cache": true,
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.05,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.48.1"
14
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.0,
4
+ "train_runtime": 30520.1269,
5
+ "train_samples": 45000,
6
+ "train_samples_per_second": 0.236,
7
+ "train_steps_per_second": 0.015
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,2967 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.16,
5
+ "eval_steps": 500,
6
+ "global_step": 450,
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": 758.5625,
13
+ "epoch": 0.0007111111111111111,
14
+ "grad_norm": NaN,
15
+ "kl": NaN,
16
+ "learning_rate": 7.142857142857142e-08,
17
+ "loss": 0.0,
18
+ "reward": 0.15625,
19
+ "reward_std": NaN,
20
+ "rewards/equation_reward_func": 0.0,
21
+ "rewards/format_reward_func": 0.15625,
22
+ "step": 2
23
+ },
24
+ {
25
+ "completion_length": 1024.0,
26
+ "epoch": 0.0014222222222222223,
27
+ "grad_norm": NaN,
28
+ "kl": NaN,
29
+ "learning_rate": 1.4285714285714285e-07,
30
+ "loss": 0.0,
31
+ "reward": 0.0,
32
+ "reward_std": NaN,
33
+ "rewards/equation_reward_func": 0.0,
34
+ "rewards/format_reward_func": 0.0,
35
+ "step": 4
36
+ },
37
+ {
38
+ "completion_length": 1024.0,
39
+ "epoch": 0.0021333333333333334,
40
+ "grad_norm": NaN,
41
+ "kl": NaN,
42
+ "learning_rate": 2.1428571428571426e-07,
43
+ "loss": 0.0,
44
+ "reward": 0.0,
45
+ "reward_std": NaN,
46
+ "rewards/equation_reward_func": 0.0,
47
+ "rewards/format_reward_func": 0.0,
48
+ "step": 6
49
+ },
50
+ {
51
+ "completion_length": 1024.0,
52
+ "epoch": 0.0028444444444444446,
53
+ "grad_norm": NaN,
54
+ "kl": NaN,
55
+ "learning_rate": 2.857142857142857e-07,
56
+ "loss": 0.0,
57
+ "reward": 0.0,
58
+ "reward_std": NaN,
59
+ "rewards/equation_reward_func": 0.0,
60
+ "rewards/format_reward_func": 0.0,
61
+ "step": 8
62
+ },
63
+ {
64
+ "completion_length": 1024.0,
65
+ "epoch": 0.0035555555555555557,
66
+ "grad_norm": NaN,
67
+ "kl": NaN,
68
+ "learning_rate": 3.5714285714285716e-07,
69
+ "loss": 0.0,
70
+ "reward": 0.0,
71
+ "reward_std": NaN,
72
+ "rewards/equation_reward_func": 0.0,
73
+ "rewards/format_reward_func": 0.0,
74
+ "step": 10
75
+ },
76
+ {
77
+ "completion_length": 1024.0,
78
+ "epoch": 0.004266666666666667,
79
+ "grad_norm": NaN,
80
+ "kl": NaN,
81
+ "learning_rate": 4.285714285714285e-07,
82
+ "loss": 0.0,
83
+ "reward": 0.0,
84
+ "reward_std": NaN,
85
+ "rewards/equation_reward_func": 0.0,
86
+ "rewards/format_reward_func": 0.0,
87
+ "step": 12
88
+ },
89
+ {
90
+ "completion_length": 1024.0,
91
+ "epoch": 0.004977777777777778,
92
+ "grad_norm": NaN,
93
+ "kl": NaN,
94
+ "learning_rate": 5e-07,
95
+ "loss": 0.0,
96
+ "reward": 0.0,
97
+ "reward_std": NaN,
98
+ "rewards/equation_reward_func": 0.0,
99
+ "rewards/format_reward_func": 0.0,
100
+ "step": 14
101
+ },
102
+ {
103
+ "completion_length": 1024.0,
104
+ "epoch": 0.005688888888888889,
105
+ "grad_norm": NaN,
106
+ "kl": NaN,
107
+ "learning_rate": 4.999740409224932e-07,
108
+ "loss": 0.0,
109
+ "reward": 0.0,
110
+ "reward_std": NaN,
111
+ "rewards/equation_reward_func": 0.0,
112
+ "rewards/format_reward_func": 0.0,
113
+ "step": 16
114
+ },
115
+ {
116
+ "completion_length": 1024.0,
117
+ "epoch": 0.0064,
118
+ "grad_norm": NaN,
119
+ "kl": NaN,
120
+ "learning_rate": 4.998961690809627e-07,
121
+ "loss": 0.0,
122
+ "reward": 0.0,
123
+ "reward_std": NaN,
124
+ "rewards/equation_reward_func": 0.0,
125
+ "rewards/format_reward_func": 0.0,
126
+ "step": 18
127
+ },
128
+ {
129
+ "completion_length": 1024.0,
130
+ "epoch": 0.0071111111111111115,
131
+ "grad_norm": NaN,
132
+ "kl": NaN,
133
+ "learning_rate": 4.997664006472578e-07,
134
+ "loss": 0.0,
135
+ "reward": 0.0,
136
+ "reward_std": NaN,
137
+ "rewards/equation_reward_func": 0.0,
138
+ "rewards/format_reward_func": 0.0,
139
+ "step": 20
140
+ },
141
+ {
142
+ "completion_length": 1024.0,
143
+ "epoch": 0.007822222222222222,
144
+ "grad_norm": NaN,
145
+ "kl": NaN,
146
+ "learning_rate": 4.995847625707292e-07,
147
+ "loss": 0.0,
148
+ "reward": 0.0,
149
+ "reward_std": NaN,
150
+ "rewards/equation_reward_func": 0.0,
151
+ "rewards/format_reward_func": 0.0,
152
+ "step": 22
153
+ },
154
+ {
155
+ "completion_length": 1024.0,
156
+ "epoch": 0.008533333333333334,
157
+ "grad_norm": NaN,
158
+ "kl": NaN,
159
+ "learning_rate": 4.993512925726318e-07,
160
+ "loss": 0.0,
161
+ "reward": 0.0,
162
+ "reward_std": NaN,
163
+ "rewards/equation_reward_func": 0.0,
164
+ "rewards/format_reward_func": 0.0,
165
+ "step": 24
166
+ },
167
+ {
168
+ "completion_length": 1024.0,
169
+ "epoch": 0.009244444444444444,
170
+ "grad_norm": NaN,
171
+ "kl": NaN,
172
+ "learning_rate": 4.990660391382923e-07,
173
+ "loss": 0.0,
174
+ "reward": 0.0,
175
+ "reward_std": NaN,
176
+ "rewards/equation_reward_func": 0.0,
177
+ "rewards/format_reward_func": 0.0,
178
+ "step": 26
179
+ },
180
+ {
181
+ "completion_length": 1024.0,
182
+ "epoch": 0.009955555555555556,
183
+ "grad_norm": NaN,
184
+ "kl": NaN,
185
+ "learning_rate": 4.987290615070384e-07,
186
+ "loss": 0.0,
187
+ "reward": 0.0,
188
+ "reward_std": NaN,
189
+ "rewards/equation_reward_func": 0.0,
190
+ "rewards/format_reward_func": 0.0,
191
+ "step": 28
192
+ },
193
+ {
194
+ "completion_length": 1024.0,
195
+ "epoch": 0.010666666666666666,
196
+ "grad_norm": NaN,
197
+ "kl": NaN,
198
+ "learning_rate": 4.983404296598978e-07,
199
+ "loss": 0.0,
200
+ "reward": 0.0,
201
+ "reward_std": NaN,
202
+ "rewards/equation_reward_func": 0.0,
203
+ "rewards/format_reward_func": 0.0,
204
+ "step": 30
205
+ },
206
+ {
207
+ "completion_length": 1024.0,
208
+ "epoch": 0.011377777777777778,
209
+ "grad_norm": NaN,
210
+ "kl": NaN,
211
+ "learning_rate": 4.979002243050646e-07,
212
+ "loss": 0.0,
213
+ "reward": 0.0,
214
+ "reward_std": NaN,
215
+ "rewards/equation_reward_func": 0.0,
216
+ "rewards/format_reward_func": 0.0,
217
+ "step": 32
218
+ },
219
+ {
220
+ "completion_length": 1024.0,
221
+ "epoch": 0.012088888888888889,
222
+ "grad_norm": NaN,
223
+ "kl": NaN,
224
+ "learning_rate": 4.974085368611381e-07,
225
+ "loss": 0.0,
226
+ "reward": 0.0,
227
+ "reward_std": NaN,
228
+ "rewards/equation_reward_func": 0.0,
229
+ "rewards/format_reward_func": 0.0,
230
+ "step": 34
231
+ },
232
+ {
233
+ "completion_length": 1024.0,
234
+ "epoch": 0.0128,
235
+ "grad_norm": NaN,
236
+ "kl": NaN,
237
+ "learning_rate": 4.968654694381379e-07,
238
+ "loss": 0.0,
239
+ "reward": 0.0,
240
+ "reward_std": NaN,
241
+ "rewards/equation_reward_func": 0.0,
242
+ "rewards/format_reward_func": 0.0,
243
+ "step": 36
244
+ },
245
+ {
246
+ "completion_length": 1024.0,
247
+ "epoch": 0.013511111111111111,
248
+ "grad_norm": NaN,
249
+ "kl": NaN,
250
+ "learning_rate": 4.962711348162987e-07,
251
+ "loss": 0.0,
252
+ "reward": 0.0,
253
+ "reward_std": NaN,
254
+ "rewards/equation_reward_func": 0.0,
255
+ "rewards/format_reward_func": 0.0,
256
+ "step": 38
257
+ },
258
+ {
259
+ "completion_length": 1024.0,
260
+ "epoch": 0.014222222222222223,
261
+ "grad_norm": NaN,
262
+ "kl": NaN,
263
+ "learning_rate": 4.956256564226487e-07,
264
+ "loss": 0.0,
265
+ "reward": 0.0,
266
+ "reward_std": NaN,
267
+ "rewards/equation_reward_func": 0.0,
268
+ "rewards/format_reward_func": 0.0,
269
+ "step": 40
270
+ },
271
+ {
272
+ "completion_length": 1024.0,
273
+ "epoch": 0.014933333333333333,
274
+ "grad_norm": NaN,
275
+ "kl": NaN,
276
+ "learning_rate": 4.949291683053768e-07,
277
+ "loss": 0.0,
278
+ "reward": 0.0,
279
+ "reward_std": NaN,
280
+ "rewards/equation_reward_func": 0.0,
281
+ "rewards/format_reward_func": 0.0,
282
+ "step": 42
283
+ },
284
+ {
285
+ "completion_length": 1024.0,
286
+ "epoch": 0.015644444444444443,
287
+ "grad_norm": NaN,
288
+ "kl": NaN,
289
+ "learning_rate": 4.941818151059955e-07,
290
+ "loss": 0.0,
291
+ "reward": 0.0,
292
+ "reward_std": NaN,
293
+ "rewards/equation_reward_func": 0.0,
294
+ "rewards/format_reward_func": 0.0,
295
+ "step": 44
296
+ },
297
+ {
298
+ "completion_length": 1024.0,
299
+ "epoch": 0.016355555555555557,
300
+ "grad_norm": NaN,
301
+ "kl": NaN,
302
+ "learning_rate": 4.933837520293017e-07,
303
+ "loss": 0.0,
304
+ "reward": 0.0,
305
+ "reward_std": NaN,
306
+ "rewards/equation_reward_func": 0.0,
307
+ "rewards/format_reward_func": 0.0,
308
+ "step": 46
309
+ },
310
+ {
311
+ "completion_length": 1024.0,
312
+ "epoch": 0.017066666666666667,
313
+ "grad_norm": NaN,
314
+ "kl": NaN,
315
+ "learning_rate": 4.925351448111454e-07,
316
+ "loss": 0.0,
317
+ "reward": 0.0,
318
+ "reward_std": NaN,
319
+ "rewards/equation_reward_func": 0.0,
320
+ "rewards/format_reward_func": 0.0,
321
+ "step": 48
322
+ },
323
+ {
324
+ "completion_length": 1024.0,
325
+ "epoch": 0.017777777777777778,
326
+ "grad_norm": NaN,
327
+ "kl": NaN,
328
+ "learning_rate": 4.91636169684011e-07,
329
+ "loss": 0.0,
330
+ "reward": 0.0,
331
+ "reward_std": NaN,
332
+ "rewards/equation_reward_func": 0.0,
333
+ "rewards/format_reward_func": 0.0,
334
+ "step": 50
335
+ },
336
+ {
337
+ "completion_length": 1024.0,
338
+ "epoch": 0.018488888888888888,
339
+ "grad_norm": NaN,
340
+ "kl": NaN,
341
+ "learning_rate": 4.906870133404186e-07,
342
+ "loss": 0.0,
343
+ "reward": 0.0,
344
+ "reward_std": NaN,
345
+ "rewards/equation_reward_func": 0.0,
346
+ "rewards/format_reward_func": 0.0,
347
+ "step": 52
348
+ },
349
+ {
350
+ "completion_length": 1024.0,
351
+ "epoch": 0.0192,
352
+ "grad_norm": NaN,
353
+ "kl": NaN,
354
+ "learning_rate": 4.896878728941531e-07,
355
+ "loss": 0.0,
356
+ "reward": 0.0,
357
+ "reward_std": NaN,
358
+ "rewards/equation_reward_func": 0.0,
359
+ "rewards/format_reward_func": 0.0,
360
+ "step": 54
361
+ },
362
+ {
363
+ "completion_length": 1024.0,
364
+ "epoch": 0.019911111111111112,
365
+ "grad_norm": NaN,
366
+ "kl": NaN,
367
+ "learning_rate": 4.886389558393284e-07,
368
+ "loss": 0.0,
369
+ "reward": 0.0,
370
+ "reward_std": NaN,
371
+ "rewards/equation_reward_func": 0.0,
372
+ "rewards/format_reward_func": 0.0,
373
+ "step": 56
374
+ },
375
+ {
376
+ "completion_length": 1024.0,
377
+ "epoch": 0.020622222222222222,
378
+ "grad_norm": NaN,
379
+ "kl": NaN,
380
+ "learning_rate": 4.875404800072976e-07,
381
+ "loss": 0.0,
382
+ "reward": 0.0,
383
+ "reward_std": NaN,
384
+ "rewards/equation_reward_func": 0.0,
385
+ "rewards/format_reward_func": 0.0,
386
+ "step": 58
387
+ },
388
+ {
389
+ "completion_length": 1024.0,
390
+ "epoch": 0.021333333333333333,
391
+ "grad_norm": NaN,
392
+ "kl": NaN,
393
+ "learning_rate": 4.86392673521415e-07,
394
+ "loss": 0.0,
395
+ "reward": 0.0,
396
+ "reward_std": NaN,
397
+ "rewards/equation_reward_func": 0.0,
398
+ "rewards/format_reward_func": 0.0,
399
+ "step": 60
400
+ },
401
+ {
402
+ "completion_length": 1024.0,
403
+ "epoch": 0.022044444444444443,
404
+ "grad_norm": NaN,
405
+ "kl": NaN,
406
+ "learning_rate": 4.851957747496606e-07,
407
+ "loss": 0.0,
408
+ "reward": 0.0,
409
+ "reward_std": NaN,
410
+ "rewards/equation_reward_func": 0.0,
411
+ "rewards/format_reward_func": 0.0,
412
+ "step": 62
413
+ },
414
+ {
415
+ "completion_length": 1024.0,
416
+ "epoch": 0.022755555555555557,
417
+ "grad_norm": NaN,
418
+ "kl": NaN,
419
+ "learning_rate": 4.839500322551386e-07,
420
+ "loss": 0.0,
421
+ "reward": 0.0,
422
+ "reward_std": NaN,
423
+ "rewards/equation_reward_func": 0.0,
424
+ "rewards/format_reward_func": 0.0,
425
+ "step": 64
426
+ },
427
+ {
428
+ "completion_length": 1024.0,
429
+ "epoch": 0.023466666666666667,
430
+ "grad_norm": NaN,
431
+ "kl": NaN,
432
+ "learning_rate": 4.826557047444563e-07,
433
+ "loss": 0.0,
434
+ "reward": 0.0,
435
+ "reward_std": NaN,
436
+ "rewards/equation_reward_func": 0.0,
437
+ "rewards/format_reward_func": 0.0,
438
+ "step": 66
439
+ },
440
+ {
441
+ "completion_length": 1024.0,
442
+ "epoch": 0.024177777777777777,
443
+ "grad_norm": NaN,
444
+ "kl": NaN,
445
+ "learning_rate": 4.813130610139993e-07,
446
+ "loss": 0.0,
447
+ "reward": 0.0,
448
+ "reward_std": NaN,
449
+ "rewards/equation_reward_func": 0.0,
450
+ "rewards/format_reward_func": 0.0,
451
+ "step": 68
452
+ },
453
+ {
454
+ "completion_length": 1024.0,
455
+ "epoch": 0.024888888888888887,
456
+ "grad_norm": NaN,
457
+ "kl": NaN,
458
+ "learning_rate": 4.799223798941089e-07,
459
+ "loss": 0.0,
460
+ "reward": 0.0,
461
+ "reward_std": NaN,
462
+ "rewards/equation_reward_func": 0.0,
463
+ "rewards/format_reward_func": 0.0,
464
+ "step": 70
465
+ },
466
+ {
467
+ "completion_length": 1024.0,
468
+ "epoch": 0.0256,
469
+ "grad_norm": NaN,
470
+ "kl": NaN,
471
+ "learning_rate": 4.78483950191177e-07,
472
+ "loss": 0.0,
473
+ "reward": 0.0,
474
+ "reward_std": NaN,
475
+ "rewards/equation_reward_func": 0.0,
476
+ "rewards/format_reward_func": 0.0,
477
+ "step": 72
478
+ },
479
+ {
480
+ "completion_length": 1024.0,
481
+ "epoch": 0.02631111111111111,
482
+ "grad_norm": NaN,
483
+ "kl": NaN,
484
+ "learning_rate": 4.769980706276687e-07,
485
+ "loss": 0.0,
486
+ "reward": 0.0,
487
+ "reward_std": NaN,
488
+ "rewards/equation_reward_func": 0.0,
489
+ "rewards/format_reward_func": 0.0,
490
+ "step": 74
491
+ },
492
+ {
493
+ "completion_length": 1024.0,
494
+ "epoch": 0.027022222222222222,
495
+ "grad_norm": NaN,
496
+ "kl": NaN,
497
+ "learning_rate": 4.7546504978008595e-07,
498
+ "loss": 0.0,
499
+ "reward": 0.0,
500
+ "reward_std": NaN,
501
+ "rewards/equation_reward_func": 0.0,
502
+ "rewards/format_reward_func": 0.0,
503
+ "step": 76
504
+ },
505
+ {
506
+ "completion_length": 1024.0,
507
+ "epoch": 0.027733333333333332,
508
+ "grad_norm": NaN,
509
+ "kl": NaN,
510
+ "learning_rate": 4.738852060148848e-07,
511
+ "loss": 0.0,
512
+ "reward": 0.0,
513
+ "reward_std": NaN,
514
+ "rewards/equation_reward_func": 0.0,
515
+ "rewards/format_reward_func": 0.0,
516
+ "step": 78
517
+ },
518
+ {
519
+ "completion_length": 1024.0,
520
+ "epoch": 0.028444444444444446,
521
+ "grad_norm": NaN,
522
+ "kl": NaN,
523
+ "learning_rate": 4.722588674223593e-07,
524
+ "loss": 0.0,
525
+ "reward": 0.0,
526
+ "reward_std": NaN,
527
+ "rewards/equation_reward_func": 0.0,
528
+ "rewards/format_reward_func": 0.0,
529
+ "step": 80
530
+ },
531
+ {
532
+ "completion_length": 1024.0,
533
+ "epoch": 0.029155555555555556,
534
+ "grad_norm": NaN,
535
+ "kl": NaN,
536
+ "learning_rate": 4.70586371748506e-07,
537
+ "loss": 0.0,
538
+ "reward": 0.0,
539
+ "reward_std": NaN,
540
+ "rewards/equation_reward_func": 0.0,
541
+ "rewards/format_reward_func": 0.0,
542
+ "step": 82
543
+ },
544
+ {
545
+ "completion_length": 1024.0,
546
+ "epoch": 0.029866666666666666,
547
+ "grad_norm": NaN,
548
+ "kl": NaN,
549
+ "learning_rate": 4.6886806632488363e-07,
550
+ "loss": 0.0,
551
+ "reward": 0.0,
552
+ "reward_std": NaN,
553
+ "rewards/equation_reward_func": 0.0,
554
+ "rewards/format_reward_func": 0.0,
555
+ "step": 84
556
+ },
557
+ {
558
+ "completion_length": 1024.0,
559
+ "epoch": 0.030577777777777777,
560
+ "grad_norm": NaN,
561
+ "kl": NaN,
562
+ "learning_rate": 4.6710430799648143e-07,
563
+ "loss": 0.0,
564
+ "reward": 0.0,
565
+ "reward_std": NaN,
566
+ "rewards/equation_reward_func": 0.0,
567
+ "rewards/format_reward_func": 0.0,
568
+ "step": 86
569
+ },
570
+ {
571
+ "completion_length": 1024.0,
572
+ "epoch": 0.03128888888888889,
573
+ "grad_norm": NaN,
574
+ "kl": NaN,
575
+ "learning_rate": 4.652954630476127e-07,
576
+ "loss": 0.0,
577
+ "reward": 0.0,
578
+ "reward_std": NaN,
579
+ "rewards/equation_reward_func": 0.0,
580
+ "rewards/format_reward_func": 0.0,
581
+ "step": 88
582
+ },
583
+ {
584
+ "completion_length": 1024.0,
585
+ "epoch": 0.032,
586
+ "grad_norm": NaN,
587
+ "kl": NaN,
588
+ "learning_rate": 4.6344190712584713e-07,
589
+ "loss": 0.0,
590
+ "reward": 0.0,
591
+ "reward_std": NaN,
592
+ "rewards/equation_reward_func": 0.0,
593
+ "rewards/format_reward_func": 0.0,
594
+ "step": 90
595
+ },
596
+ {
597
+ "completion_length": 1024.0,
598
+ "epoch": 0.032711111111111114,
599
+ "grad_norm": NaN,
600
+ "kl": NaN,
601
+ "learning_rate": 4.615440251639995e-07,
602
+ "loss": 0.0,
603
+ "reward": 0.0,
604
+ "reward_std": NaN,
605
+ "rewards/equation_reward_func": 0.0,
606
+ "rewards/format_reward_func": 0.0,
607
+ "step": 92
608
+ },
609
+ {
610
+ "completion_length": 1024.0,
611
+ "epoch": 0.03342222222222222,
612
+ "grad_norm": NaN,
613
+ "kl": NaN,
614
+ "learning_rate": 4.596022113001894e-07,
615
+ "loss": 0.0,
616
+ "reward": 0.0,
617
+ "reward_std": NaN,
618
+ "rewards/equation_reward_func": 0.0,
619
+ "rewards/format_reward_func": 0.0,
620
+ "step": 94
621
+ },
622
+ {
623
+ "completion_length": 1024.0,
624
+ "epoch": 0.034133333333333335,
625
+ "grad_norm": NaN,
626
+ "kl": NaN,
627
+ "learning_rate": 4.576168687959895e-07,
628
+ "loss": 0.0,
629
+ "reward": 0.0,
630
+ "reward_std": NaN,
631
+ "rewards/equation_reward_func": 0.0,
632
+ "rewards/format_reward_func": 0.0,
633
+ "step": 96
634
+ },
635
+ {
636
+ "completion_length": 1024.0,
637
+ "epoch": 0.03484444444444444,
638
+ "grad_norm": NaN,
639
+ "kl": NaN,
640
+ "learning_rate": 4.555884099526793e-07,
641
+ "loss": 0.0,
642
+ "reward": 0.0,
643
+ "reward_std": NaN,
644
+ "rewards/equation_reward_func": 0.0,
645
+ "rewards/format_reward_func": 0.0,
646
+ "step": 98
647
+ },
648
+ {
649
+ "completion_length": 1024.0,
650
+ "epoch": 0.035555555555555556,
651
+ "grad_norm": NaN,
652
+ "kl": NaN,
653
+ "learning_rate": 4.5351725602562174e-07,
654
+ "loss": 0.0,
655
+ "reward": 0.0,
656
+ "reward_std": NaN,
657
+ "rewards/equation_reward_func": 0.0,
658
+ "rewards/format_reward_func": 0.0,
659
+ "step": 100
660
+ },
661
+ {
662
+ "completion_length": 1024.0,
663
+ "epoch": 0.03626666666666667,
664
+ "grad_norm": NaN,
665
+ "kl": NaN,
666
+ "learning_rate": 4.514038371367791e-07,
667
+ "loss": 0.0,
668
+ "reward": 0.0,
669
+ "reward_std": NaN,
670
+ "rewards/equation_reward_func": 0.0,
671
+ "rewards/format_reward_func": 0.0,
672
+ "step": 102
673
+ },
674
+ {
675
+ "completion_length": 1024.0,
676
+ "epoch": 0.036977777777777776,
677
+ "grad_norm": NaN,
678
+ "kl": NaN,
679
+ "learning_rate": 4.4924859218538936e-07,
680
+ "loss": 0.0,
681
+ "reward": 0.0,
682
+ "reward_std": NaN,
683
+ "rewards/equation_reward_func": 0.0,
684
+ "rewards/format_reward_func": 0.0,
685
+ "step": 104
686
+ },
687
+ {
688
+ "completion_length": 1024.0,
689
+ "epoch": 0.03768888888888889,
690
+ "grad_norm": NaN,
691
+ "kl": NaN,
692
+ "learning_rate": 4.470519687568185e-07,
693
+ "loss": 0.0,
694
+ "reward": 0.0,
695
+ "reward_std": NaN,
696
+ "rewards/equation_reward_func": 0.0,
697
+ "rewards/format_reward_func": 0.0,
698
+ "step": 106
699
+ },
700
+ {
701
+ "completion_length": 1024.0,
702
+ "epoch": 0.0384,
703
+ "grad_norm": NaN,
704
+ "kl": NaN,
705
+ "learning_rate": 4.4481442302960923e-07,
706
+ "loss": 0.0,
707
+ "reward": 0.0,
708
+ "reward_std": NaN,
709
+ "rewards/equation_reward_func": 0.0,
710
+ "rewards/format_reward_func": 0.0,
711
+ "step": 108
712
+ },
713
+ {
714
+ "completion_length": 1024.0,
715
+ "epoch": 0.03911111111111111,
716
+ "grad_norm": NaN,
717
+ "kl": NaN,
718
+ "learning_rate": 4.4253641968074505e-07,
719
+ "loss": 0.0,
720
+ "reward": 0.0,
721
+ "reward_std": NaN,
722
+ "rewards/equation_reward_func": 0.0,
723
+ "rewards/format_reward_func": 0.0,
724
+ "step": 110
725
+ },
726
+ {
727
+ "completion_length": 1024.0,
728
+ "epoch": 0.039822222222222224,
729
+ "grad_norm": NaN,
730
+ "kl": NaN,
731
+ "learning_rate": 4.402184317891501e-07,
732
+ "loss": 0.0,
733
+ "reward": 0.0,
734
+ "reward_std": NaN,
735
+ "rewards/equation_reward_func": 0.0,
736
+ "rewards/format_reward_func": 0.0,
737
+ "step": 112
738
+ },
739
+ {
740
+ "completion_length": 1024.0,
741
+ "epoch": 0.04053333333333333,
742
+ "grad_norm": NaN,
743
+ "kl": NaN,
744
+ "learning_rate": 4.37860940737443e-07,
745
+ "loss": 0.0,
746
+ "reward": 0.0,
747
+ "reward_std": NaN,
748
+ "rewards/equation_reward_func": 0.0,
749
+ "rewards/format_reward_func": 0.0,
750
+ "step": 114
751
+ },
752
+ {
753
+ "completion_length": 1024.0,
754
+ "epoch": 0.041244444444444445,
755
+ "grad_norm": NaN,
756
+ "kl": NaN,
757
+ "learning_rate": 4.354644361119671e-07,
758
+ "loss": 0.0,
759
+ "reward": 0.0,
760
+ "reward_std": NaN,
761
+ "rewards/equation_reward_func": 0.0,
762
+ "rewards/format_reward_func": 0.0,
763
+ "step": 116
764
+ },
765
+ {
766
+ "completion_length": 1024.0,
767
+ "epoch": 0.04195555555555556,
768
+ "grad_norm": NaN,
769
+ "kl": NaN,
770
+ "learning_rate": 4.3302941560111716e-07,
771
+ "loss": 0.0,
772
+ "reward": 0.0,
773
+ "reward_std": NaN,
774
+ "rewards/equation_reward_func": 0.0,
775
+ "rewards/format_reward_func": 0.0,
776
+ "step": 118
777
+ },
778
+ {
779
+ "completion_length": 1024.0,
780
+ "epoch": 0.042666666666666665,
781
+ "grad_norm": NaN,
782
+ "kl": NaN,
783
+ "learning_rate": 4.3055638489198236e-07,
784
+ "loss": 0.0,
785
+ "reward": 0.0,
786
+ "reward_std": NaN,
787
+ "rewards/equation_reward_func": 0.0,
788
+ "rewards/format_reward_func": 0.0,
789
+ "step": 120
790
+ },
791
+ {
792
+ "completion_length": 1024.0,
793
+ "epoch": 0.04337777777777778,
794
+ "grad_norm": NaN,
795
+ "kl": NaN,
796
+ "learning_rate": 4.280458575653296e-07,
797
+ "loss": 0.0,
798
+ "reward": 0.0,
799
+ "reward_std": NaN,
800
+ "rewards/equation_reward_func": 0.0,
801
+ "rewards/format_reward_func": 0.0,
802
+ "step": 122
803
+ },
804
+ {
805
+ "completion_length": 1024.0,
806
+ "epoch": 0.044088888888888886,
807
+ "grad_norm": NaN,
808
+ "kl": NaN,
809
+ "learning_rate": 4.2549835498894665e-07,
810
+ "loss": 0.0,
811
+ "reward": 0.0,
812
+ "reward_std": NaN,
813
+ "rewards/equation_reward_func": 0.0,
814
+ "rewards/format_reward_func": 0.0,
815
+ "step": 124
816
+ },
817
+ {
818
+ "completion_length": 1024.0,
819
+ "epoch": 0.0448,
820
+ "grad_norm": NaN,
821
+ "kl": NaN,
822
+ "learning_rate": 4.229144062093679e-07,
823
+ "loss": 0.0,
824
+ "reward": 0.0,
825
+ "reward_std": NaN,
826
+ "rewards/equation_reward_func": 0.0,
827
+ "rewards/format_reward_func": 0.0,
828
+ "step": 126
829
+ },
830
+ {
831
+ "completion_length": 1024.0,
832
+ "epoch": 0.04551111111111111,
833
+ "grad_norm": NaN,
834
+ "kl": NaN,
835
+ "learning_rate": 4.2029454784200675e-07,
836
+ "loss": 0.0,
837
+ "reward": 0.0,
838
+ "reward_std": NaN,
839
+ "rewards/equation_reward_func": 0.0,
840
+ "rewards/format_reward_func": 0.0,
841
+ "step": 128
842
+ },
843
+ {
844
+ "completion_length": 1024.0,
845
+ "epoch": 0.04622222222222222,
846
+ "grad_norm": NaN,
847
+ "kl": NaN,
848
+ "learning_rate": 4.1763932395971433e-07,
849
+ "loss": 0.0,
850
+ "reward": 0.0,
851
+ "reward_std": NaN,
852
+ "rewards/equation_reward_func": 0.0,
853
+ "rewards/format_reward_func": 0.0,
854
+ "step": 130
855
+ },
856
+ {
857
+ "completion_length": 1024.0,
858
+ "epoch": 0.046933333333333334,
859
+ "grad_norm": NaN,
860
+ "kl": NaN,
861
+ "learning_rate": 4.1494928597979117e-07,
862
+ "loss": 0.0,
863
+ "reward": 0.0,
864
+ "reward_std": NaN,
865
+ "rewards/equation_reward_func": 0.0,
866
+ "rewards/format_reward_func": 0.0,
867
+ "step": 132
868
+ },
869
+ {
870
+ "completion_length": 1024.0,
871
+ "epoch": 0.04764444444444445,
872
+ "grad_norm": NaN,
873
+ "kl": NaN,
874
+ "learning_rate": 4.122249925494726e-07,
875
+ "loss": 0.0,
876
+ "reward": 0.0,
877
+ "reward_std": NaN,
878
+ "rewards/equation_reward_func": 0.0,
879
+ "rewards/format_reward_func": 0.0,
880
+ "step": 134
881
+ },
882
+ {
883
+ "completion_length": 1024.0,
884
+ "epoch": 0.048355555555555554,
885
+ "grad_norm": NaN,
886
+ "kl": NaN,
887
+ "learning_rate": 4.094670094299131e-07,
888
+ "loss": 0.0,
889
+ "reward": 0.0,
890
+ "reward_std": NaN,
891
+ "rewards/equation_reward_func": 0.0,
892
+ "rewards/format_reward_func": 0.0,
893
+ "step": 136
894
+ },
895
+ {
896
+ "completion_length": 1024.0,
897
+ "epoch": 0.04906666666666667,
898
+ "grad_norm": NaN,
899
+ "kl": NaN,
900
+ "learning_rate": 4.066759093786931e-07,
901
+ "loss": 0.0,
902
+ "reward": 0.0,
903
+ "reward_std": NaN,
904
+ "rewards/equation_reward_func": 0.0,
905
+ "rewards/format_reward_func": 0.0,
906
+ "step": 138
907
+ },
908
+ {
909
+ "completion_length": 1024.0,
910
+ "epoch": 0.049777777777777775,
911
+ "grad_norm": NaN,
912
+ "kl": NaN,
913
+ "learning_rate": 4.038522720308732e-07,
914
+ "loss": 0.0,
915
+ "reward": 0.0,
916
+ "reward_std": NaN,
917
+ "rewards/equation_reward_func": 0.0,
918
+ "rewards/format_reward_func": 0.0,
919
+ "step": 140
920
+ },
921
+ {
922
+ "completion_length": 1024.0,
923
+ "epoch": 0.05048888888888889,
924
+ "grad_norm": NaN,
925
+ "kl": NaN,
926
+ "learning_rate": 4.009966837786194e-07,
927
+ "loss": 0.0,
928
+ "reward": 0.0,
929
+ "reward_std": NaN,
930
+ "rewards/equation_reward_func": 0.0,
931
+ "rewards/format_reward_func": 0.0,
932
+ "step": 142
933
+ },
934
+ {
935
+ "completion_length": 1024.0,
936
+ "epoch": 0.0512,
937
+ "grad_norm": NaN,
938
+ "kl": NaN,
939
+ "learning_rate": 3.981097376494259e-07,
940
+ "loss": 0.0,
941
+ "reward": 0.0,
942
+ "reward_std": NaN,
943
+ "rewards/equation_reward_func": 0.0,
944
+ "rewards/format_reward_func": 0.0,
945
+ "step": 144
946
+ },
947
+ {
948
+ "completion_length": 1024.0,
949
+ "epoch": 0.05191111111111111,
950
+ "grad_norm": NaN,
951
+ "kl": NaN,
952
+ "learning_rate": 3.951920331829592e-07,
953
+ "loss": 0.0,
954
+ "reward": 0.0,
955
+ "reward_std": NaN,
956
+ "rewards/equation_reward_func": 0.0,
957
+ "rewards/format_reward_func": 0.0,
958
+ "step": 146
959
+ },
960
+ {
961
+ "completion_length": 1024.0,
962
+ "epoch": 0.05262222222222222,
963
+ "grad_norm": NaN,
964
+ "kl": NaN,
965
+ "learning_rate": 3.922441763065506e-07,
966
+ "loss": 0.0,
967
+ "reward": 0.0,
968
+ "reward_std": NaN,
969
+ "rewards/equation_reward_func": 0.0,
970
+ "rewards/format_reward_func": 0.0,
971
+ "step": 148
972
+ },
973
+ {
974
+ "completion_length": 1024.0,
975
+ "epoch": 0.05333333333333334,
976
+ "grad_norm": NaN,
977
+ "kl": NaN,
978
+ "learning_rate": 3.8926677920936093e-07,
979
+ "loss": 0.0,
980
+ "reward": 0.0,
981
+ "reward_std": NaN,
982
+ "rewards/equation_reward_func": 0.0,
983
+ "rewards/format_reward_func": 0.0,
984
+ "step": 150
985
+ },
986
+ {
987
+ "completion_length": 1024.0,
988
+ "epoch": 0.054044444444444444,
989
+ "grad_norm": NaN,
990
+ "kl": NaN,
991
+ "learning_rate": 3.862604602152464e-07,
992
+ "loss": 0.0,
993
+ "reward": 0.0,
994
+ "reward_std": NaN,
995
+ "rewards/equation_reward_func": 0.0,
996
+ "rewards/format_reward_func": 0.0,
997
+ "step": 152
998
+ },
999
+ {
1000
+ "completion_length": 1024.0,
1001
+ "epoch": 0.05475555555555556,
1002
+ "grad_norm": NaN,
1003
+ "kl": NaN,
1004
+ "learning_rate": 3.8322584365434934e-07,
1005
+ "loss": 0.0,
1006
+ "reward": 0.0,
1007
+ "reward_std": NaN,
1008
+ "rewards/equation_reward_func": 0.0,
1009
+ "rewards/format_reward_func": 0.0,
1010
+ "step": 154
1011
+ },
1012
+ {
1013
+ "completion_length": 1024.0,
1014
+ "epoch": 0.055466666666666664,
1015
+ "grad_norm": NaN,
1016
+ "kl": NaN,
1017
+ "learning_rate": 3.8016355973344173e-07,
1018
+ "loss": 0.0,
1019
+ "reward": 0.0,
1020
+ "reward_std": NaN,
1021
+ "rewards/equation_reward_func": 0.0,
1022
+ "rewards/format_reward_func": 0.0,
1023
+ "step": 156
1024
+ },
1025
+ {
1026
+ "completion_length": 1024.0,
1027
+ "epoch": 0.05617777777777778,
1028
+ "grad_norm": NaN,
1029
+ "kl": NaN,
1030
+ "learning_rate": 3.7707424440504863e-07,
1031
+ "loss": 0.0,
1032
+ "reward": 0.0,
1033
+ "reward_std": NaN,
1034
+ "rewards/equation_reward_func": 0.0,
1035
+ "rewards/format_reward_func": 0.0,
1036
+ "step": 158
1037
+ },
1038
+ {
1039
+ "completion_length": 1024.0,
1040
+ "epoch": 0.05688888888888889,
1041
+ "grad_norm": NaN,
1042
+ "kl": NaN,
1043
+ "learning_rate": 3.739585392353787e-07,
1044
+ "loss": 0.0,
1045
+ "reward": 0.0,
1046
+ "reward_std": NaN,
1047
+ "rewards/equation_reward_func": 0.0,
1048
+ "rewards/format_reward_func": 0.0,
1049
+ "step": 160
1050
+ },
1051
+ {
1052
+ "completion_length": 1024.0,
1053
+ "epoch": 0.0576,
1054
+ "grad_norm": NaN,
1055
+ "kl": NaN,
1056
+ "learning_rate": 3.7081709127108767e-07,
1057
+ "loss": 0.0,
1058
+ "reward": 0.0,
1059
+ "reward_std": NaN,
1060
+ "rewards/equation_reward_func": 0.0,
1061
+ "rewards/format_reward_func": 0.0,
1062
+ "step": 162
1063
+ },
1064
+ {
1065
+ "completion_length": 1024.0,
1066
+ "epoch": 0.05831111111111111,
1067
+ "grad_norm": NaN,
1068
+ "kl": NaN,
1069
+ "learning_rate": 3.6765055290490513e-07,
1070
+ "loss": 0.0,
1071
+ "reward": 0.0,
1072
+ "reward_std": NaN,
1073
+ "rewards/equation_reward_func": 0.0,
1074
+ "rewards/format_reward_func": 0.0,
1075
+ "step": 164
1076
+ },
1077
+ {
1078
+ "completion_length": 1024.0,
1079
+ "epoch": 0.05902222222222222,
1080
+ "grad_norm": NaN,
1081
+ "kl": NaN,
1082
+ "learning_rate": 3.644595817401501e-07,
1083
+ "loss": 0.0,
1084
+ "reward": 0.0,
1085
+ "reward_std": NaN,
1086
+ "rewards/equation_reward_func": 0.0,
1087
+ "rewards/format_reward_func": 0.0,
1088
+ "step": 166
1089
+ },
1090
+ {
1091
+ "completion_length": 1024.0,
1092
+ "epoch": 0.05973333333333333,
1093
+ "grad_norm": NaN,
1094
+ "kl": NaN,
1095
+ "learning_rate": 3.6124484045416483e-07,
1096
+ "loss": 0.0,
1097
+ "reward": 0.0,
1098
+ "reward_std": NaN,
1099
+ "rewards/equation_reward_func": 0.0,
1100
+ "rewards/format_reward_func": 0.0,
1101
+ "step": 168
1102
+ },
1103
+ {
1104
+ "completion_length": 1024.0,
1105
+ "epoch": 0.060444444444444446,
1106
+ "grad_norm": NaN,
1107
+ "kl": NaN,
1108
+ "learning_rate": 3.580069966606949e-07,
1109
+ "loss": 0.0,
1110
+ "reward": 0.0,
1111
+ "reward_std": NaN,
1112
+ "rewards/equation_reward_func": 0.0,
1113
+ "rewards/format_reward_func": 0.0,
1114
+ "step": 170
1115
+ },
1116
+ {
1117
+ "completion_length": 1024.0,
1118
+ "epoch": 0.06115555555555555,
1119
+ "grad_norm": NaN,
1120
+ "kl": NaN,
1121
+ "learning_rate": 3.547467227712444e-07,
1122
+ "loss": 0.0,
1123
+ "reward": 0.0,
1124
+ "reward_std": NaN,
1125
+ "rewards/equation_reward_func": 0.0,
1126
+ "rewards/format_reward_func": 0.0,
1127
+ "step": 172
1128
+ },
1129
+ {
1130
+ "completion_length": 1024.0,
1131
+ "epoch": 0.06186666666666667,
1132
+ "grad_norm": NaN,
1133
+ "kl": NaN,
1134
+ "learning_rate": 3.5146469585543386e-07,
1135
+ "loss": 0.0,
1136
+ "reward": 0.0,
1137
+ "reward_std": NaN,
1138
+ "rewards/equation_reward_func": 0.0,
1139
+ "rewards/format_reward_func": 0.0,
1140
+ "step": 174
1141
+ },
1142
+ {
1143
+ "completion_length": 1024.0,
1144
+ "epoch": 0.06257777777777777,
1145
+ "grad_norm": NaN,
1146
+ "kl": NaN,
1147
+ "learning_rate": 3.481615975003922e-07,
1148
+ "loss": 0.0,
1149
+ "reward": 0.0,
1150
+ "reward_std": NaN,
1151
+ "rewards/equation_reward_func": 0.0,
1152
+ "rewards/format_reward_func": 0.0,
1153
+ "step": 176
1154
+ },
1155
+ {
1156
+ "completion_length": 1024.0,
1157
+ "epoch": 0.0632888888888889,
1158
+ "grad_norm": NaN,
1159
+ "kl": NaN,
1160
+ "learning_rate": 3.448381136692089e-07,
1161
+ "loss": 0.0,
1162
+ "reward": 0.0,
1163
+ "reward_std": NaN,
1164
+ "rewards/equation_reward_func": 0.0,
1165
+ "rewards/format_reward_func": 0.0,
1166
+ "step": 178
1167
+ },
1168
+ {
1169
+ "completion_length": 1024.0,
1170
+ "epoch": 0.064,
1171
+ "grad_norm": NaN,
1172
+ "kl": NaN,
1173
+ "learning_rate": 3.4149493455847897e-07,
1174
+ "loss": 0.0,
1175
+ "reward": 0.0,
1176
+ "reward_std": NaN,
1177
+ "rewards/equation_reward_func": 0.0,
1178
+ "rewards/format_reward_func": 0.0,
1179
+ "step": 180
1180
+ },
1181
+ {
1182
+ "completion_length": 1024.0,
1183
+ "epoch": 0.06471111111111111,
1184
+ "grad_norm": NaN,
1185
+ "kl": NaN,
1186
+ "learning_rate": 3.3813275445496766e-07,
1187
+ "loss": 0.0,
1188
+ "reward": 0.0,
1189
+ "reward_std": NaN,
1190
+ "rewards/equation_reward_func": 0.0,
1191
+ "rewards/format_reward_func": 0.0,
1192
+ "step": 182
1193
+ },
1194
+ {
1195
+ "completion_length": 1024.0,
1196
+ "epoch": 0.06542222222222223,
1197
+ "grad_norm": NaN,
1198
+ "kl": NaN,
1199
+ "learning_rate": 3.347522715914262e-07,
1200
+ "loss": 0.0,
1201
+ "reward": 0.0,
1202
+ "reward_std": NaN,
1203
+ "rewards/equation_reward_func": 0.0,
1204
+ "rewards/format_reward_func": 0.0,
1205
+ "step": 184
1206
+ },
1207
+ {
1208
+ "completion_length": 1024.0,
1209
+ "epoch": 0.06613333333333334,
1210
+ "grad_norm": NaN,
1211
+ "kl": NaN,
1212
+ "learning_rate": 3.313541880015877e-07,
1213
+ "loss": 0.0,
1214
+ "reward": 0.0,
1215
+ "reward_std": NaN,
1216
+ "rewards/equation_reward_func": 0.0,
1217
+ "rewards/format_reward_func": 0.0,
1218
+ "step": 186
1219
+ },
1220
+ {
1221
+ "completion_length": 1024.0,
1222
+ "epoch": 0.06684444444444444,
1223
+ "grad_norm": NaN,
1224
+ "kl": NaN,
1225
+ "learning_rate": 3.279392093743747e-07,
1226
+ "loss": 0.0,
1227
+ "reward": 0.0,
1228
+ "reward_std": NaN,
1229
+ "rewards/equation_reward_func": 0.0,
1230
+ "rewards/format_reward_func": 0.0,
1231
+ "step": 188
1232
+ },
1233
+ {
1234
+ "completion_length": 1024.0,
1235
+ "epoch": 0.06755555555555555,
1236
+ "grad_norm": NaN,
1237
+ "kl": NaN,
1238
+ "learning_rate": 3.245080449073459e-07,
1239
+ "loss": 0.0,
1240
+ "reward": 0.0,
1241
+ "reward_std": NaN,
1242
+ "rewards/equation_reward_func": 0.0,
1243
+ "rewards/format_reward_func": 0.0,
1244
+ "step": 190
1245
+ },
1246
+ {
1247
+ "completion_length": 1024.0,
1248
+ "epoch": 0.06826666666666667,
1249
+ "grad_norm": NaN,
1250
+ "kl": NaN,
1251
+ "learning_rate": 3.210614071594162e-07,
1252
+ "loss": 0.0,
1253
+ "reward": 0.0,
1254
+ "reward_std": NaN,
1255
+ "rewards/equation_reward_func": 0.0,
1256
+ "rewards/format_reward_func": 0.0,
1257
+ "step": 192
1258
+ },
1259
+ {
1260
+ "completion_length": 1024.0,
1261
+ "epoch": 0.06897777777777778,
1262
+ "grad_norm": NaN,
1263
+ "kl": NaN,
1264
+ "learning_rate": 3.1760001190287695e-07,
1265
+ "loss": 0.0,
1266
+ "reward": 0.0,
1267
+ "reward_std": NaN,
1268
+ "rewards/equation_reward_func": 0.0,
1269
+ "rewards/format_reward_func": 0.0,
1270
+ "step": 194
1271
+ },
1272
+ {
1273
+ "completion_length": 1024.0,
1274
+ "epoch": 0.06968888888888888,
1275
+ "grad_norm": NaN,
1276
+ "kl": NaN,
1277
+ "learning_rate": 3.141245779747502e-07,
1278
+ "loss": 0.0,
1279
+ "reward": 0.0,
1280
+ "reward_std": NaN,
1281
+ "rewards/equation_reward_func": 0.0,
1282
+ "rewards/format_reward_func": 0.0,
1283
+ "step": 196
1284
+ },
1285
+ {
1286
+ "completion_length": 1024.0,
1287
+ "epoch": 0.0704,
1288
+ "grad_norm": NaN,
1289
+ "kl": NaN,
1290
+ "learning_rate": 3.106358271275056e-07,
1291
+ "loss": 0.0,
1292
+ "reward": 0.0,
1293
+ "reward_std": NaN,
1294
+ "rewards/equation_reward_func": 0.0,
1295
+ "rewards/format_reward_func": 0.0,
1296
+ "step": 198
1297
+ },
1298
+ {
1299
+ "completion_length": 1024.0,
1300
+ "epoch": 0.07111111111111111,
1301
+ "grad_norm": NaN,
1302
+ "kl": NaN,
1303
+ "learning_rate": 3.0713448387917227e-07,
1304
+ "loss": 0.0,
1305
+ "reward": 0.0,
1306
+ "reward_std": NaN,
1307
+ "rewards/equation_reward_func": 0.0,
1308
+ "rewards/format_reward_func": 0.0,
1309
+ "step": 200
1310
+ },
1311
+ {
1312
+ "completion_length": 1024.0,
1313
+ "epoch": 0.07182222222222222,
1314
+ "grad_norm": NaN,
1315
+ "kl": NaN,
1316
+ "learning_rate": 3.0362127536287636e-07,
1317
+ "loss": 0.0,
1318
+ "reward": 0.0,
1319
+ "reward_std": NaN,
1320
+ "rewards/equation_reward_func": 0.0,
1321
+ "rewards/format_reward_func": 0.0,
1322
+ "step": 202
1323
+ },
1324
+ {
1325
+ "completion_length": 1024.0,
1326
+ "epoch": 0.07253333333333334,
1327
+ "grad_norm": NaN,
1328
+ "kl": NaN,
1329
+ "learning_rate": 3.0009693117583523e-07,
1330
+ "loss": 0.0,
1331
+ "reward": 0.0,
1332
+ "reward_std": NaN,
1333
+ "rewards/equation_reward_func": 0.0,
1334
+ "rewards/format_reward_func": 0.0,
1335
+ "step": 204
1336
+ },
1337
+ {
1338
+ "completion_length": 1024.0,
1339
+ "epoch": 0.07324444444444445,
1340
+ "grad_norm": NaN,
1341
+ "kl": NaN,
1342
+ "learning_rate": 2.965621832278401e-07,
1343
+ "loss": 0.0,
1344
+ "reward": 0.0,
1345
+ "reward_std": NaN,
1346
+ "rewards/equation_reward_func": 0.0,
1347
+ "rewards/format_reward_func": 0.0,
1348
+ "step": 206
1349
+ },
1350
+ {
1351
+ "completion_length": 1024.0,
1352
+ "epoch": 0.07395555555555555,
1353
+ "grad_norm": NaN,
1354
+ "kl": NaN,
1355
+ "learning_rate": 2.9301776558925875e-07,
1356
+ "loss": 0.0,
1357
+ "reward": 0.0,
1358
+ "reward_std": NaN,
1359
+ "rewards/equation_reward_func": 0.0,
1360
+ "rewards/format_reward_func": 0.0,
1361
+ "step": 208
1362
+ },
1363
+ {
1364
+ "completion_length": 1024.0,
1365
+ "epoch": 0.07466666666666667,
1366
+ "grad_norm": NaN,
1367
+ "kl": NaN,
1368
+ "learning_rate": 2.894644143385885e-07,
1369
+ "loss": 0.0,
1370
+ "reward": 0.0,
1371
+ "reward_std": NaN,
1372
+ "rewards/equation_reward_func": 0.0,
1373
+ "rewards/format_reward_func": 0.0,
1374
+ "step": 210
1375
+ },
1376
+ {
1377
+ "completion_length": 1024.0,
1378
+ "epoch": 0.07537777777777778,
1379
+ "grad_norm": NaN,
1380
+ "kl": NaN,
1381
+ "learning_rate": 2.859028674095937e-07,
1382
+ "loss": 0.0,
1383
+ "reward": 0.0,
1384
+ "reward_std": NaN,
1385
+ "rewards/equation_reward_func": 0.0,
1386
+ "rewards/format_reward_func": 0.0,
1387
+ "step": 212
1388
+ },
1389
+ {
1390
+ "completion_length": 1024.0,
1391
+ "epoch": 0.07608888888888889,
1392
+ "grad_norm": NaN,
1393
+ "kl": NaN,
1394
+ "learning_rate": 2.823338644380566e-07,
1395
+ "loss": 0.0,
1396
+ "reward": 0.0,
1397
+ "reward_std": NaN,
1398
+ "rewards/equation_reward_func": 0.0,
1399
+ "rewards/format_reward_func": 0.0,
1400
+ "step": 214
1401
+ },
1402
+ {
1403
+ "completion_length": 1024.0,
1404
+ "epoch": 0.0768,
1405
+ "grad_norm": NaN,
1406
+ "kl": NaN,
1407
+ "learning_rate": 2.7875814660817504e-07,
1408
+ "loss": 0.0,
1409
+ "reward": 0.0,
1410
+ "reward_std": NaN,
1411
+ "rewards/equation_reward_func": 0.0,
1412
+ "rewards/format_reward_func": 0.0,
1413
+ "step": 216
1414
+ },
1415
+ {
1416
+ "completion_length": 1024.0,
1417
+ "epoch": 0.07751111111111111,
1418
+ "grad_norm": NaN,
1419
+ "kl": NaN,
1420
+ "learning_rate": 2.751764564986396e-07,
1421
+ "loss": 0.0,
1422
+ "reward": 0.0,
1423
+ "reward_std": NaN,
1424
+ "rewards/equation_reward_func": 0.0,
1425
+ "rewards/format_reward_func": 0.0,
1426
+ "step": 218
1427
+ },
1428
+ {
1429
+ "completion_length": 1024.0,
1430
+ "epoch": 0.07822222222222222,
1431
+ "grad_norm": NaN,
1432
+ "kl": NaN,
1433
+ "learning_rate": 2.715895379284194e-07,
1434
+ "loss": 0.0,
1435
+ "reward": 0.0,
1436
+ "reward_std": NaN,
1437
+ "rewards/equation_reward_func": 0.0,
1438
+ "rewards/format_reward_func": 0.0,
1439
+ "step": 220
1440
+ },
1441
+ {
1442
+ "completion_length": 1024.0,
1443
+ "epoch": 0.07893333333333333,
1444
+ "grad_norm": NaN,
1445
+ "kl": NaN,
1446
+ "learning_rate": 2.6799813580229174e-07,
1447
+ "loss": 0.0,
1448
+ "reward": 0.0,
1449
+ "reward_std": NaN,
1450
+ "rewards/equation_reward_func": 0.0,
1451
+ "rewards/format_reward_func": 0.0,
1452
+ "step": 222
1453
+ },
1454
+ {
1455
+ "completion_length": 1024.0,
1456
+ "epoch": 0.07964444444444445,
1457
+ "grad_norm": NaN,
1458
+ "kl": NaN,
1459
+ "learning_rate": 2.6440299595614606e-07,
1460
+ "loss": 0.0,
1461
+ "reward": 0.0,
1462
+ "reward_std": NaN,
1463
+ "rewards/equation_reward_func": 0.0,
1464
+ "rewards/format_reward_func": 0.0,
1465
+ "step": 224
1466
+ },
1467
+ {
1468
+ "completion_length": 1024.0,
1469
+ "epoch": 0.08035555555555556,
1470
+ "grad_norm": NaN,
1471
+ "kl": NaN,
1472
+ "learning_rate": 2.6080486500209347e-07,
1473
+ "loss": 0.0,
1474
+ "reward": 0.0,
1475
+ "reward_std": NaN,
1476
+ "rewards/equation_reward_func": 0.0,
1477
+ "rewards/format_reward_func": 0.0,
1478
+ "step": 226
1479
+ },
1480
+ {
1481
+ "completion_length": 1024.0,
1482
+ "epoch": 0.08106666666666666,
1483
+ "grad_norm": NaN,
1484
+ "kl": NaN,
1485
+ "learning_rate": 2.572044901734166e-07,
1486
+ "loss": 0.0,
1487
+ "reward": 0.0,
1488
+ "reward_std": NaN,
1489
+ "rewards/equation_reward_func": 0.0,
1490
+ "rewards/format_reward_func": 0.0,
1491
+ "step": 228
1492
+ },
1493
+ {
1494
+ "completion_length": 1024.0,
1495
+ "epoch": 0.08177777777777778,
1496
+ "grad_norm": NaN,
1497
+ "kl": NaN,
1498
+ "learning_rate": 2.536026191693893e-07,
1499
+ "loss": 0.0,
1500
+ "reward": 0.0,
1501
+ "reward_std": NaN,
1502
+ "rewards/equation_reward_func": 0.0,
1503
+ "rewards/format_reward_func": 0.0,
1504
+ "step": 230
1505
+ },
1506
+ {
1507
+ "completion_length": 1024.0,
1508
+ "epoch": 0.08248888888888889,
1509
+ "grad_norm": NaN,
1510
+ "kl": NaN,
1511
+ "learning_rate": 2.5e-07,
1512
+ "loss": 0.0,
1513
+ "reward": 0.0,
1514
+ "reward_std": NaN,
1515
+ "rewards/equation_reward_func": 0.0,
1516
+ "rewards/format_reward_func": 0.0,
1517
+ "step": 232
1518
+ },
1519
+ {
1520
+ "completion_length": 1024.0,
1521
+ "epoch": 0.0832,
1522
+ "grad_norm": NaN,
1523
+ "kl": NaN,
1524
+ "learning_rate": 2.4639738083061073e-07,
1525
+ "loss": 0.0,
1526
+ "reward": 0.0,
1527
+ "reward_std": NaN,
1528
+ "rewards/equation_reward_func": 0.0,
1529
+ "rewards/format_reward_func": 0.0,
1530
+ "step": 234
1531
+ },
1532
+ {
1533
+ "completion_length": 1024.0,
1534
+ "epoch": 0.08391111111111112,
1535
+ "grad_norm": NaN,
1536
+ "kl": NaN,
1537
+ "learning_rate": 2.4279550982658345e-07,
1538
+ "loss": 0.0,
1539
+ "reward": 0.0,
1540
+ "reward_std": NaN,
1541
+ "rewards/equation_reward_func": 0.0,
1542
+ "rewards/format_reward_func": 0.0,
1543
+ "step": 236
1544
+ },
1545
+ {
1546
+ "completion_length": 1024.0,
1547
+ "epoch": 0.08462222222222222,
1548
+ "grad_norm": NaN,
1549
+ "kl": NaN,
1550
+ "learning_rate": 2.3919513499790646e-07,
1551
+ "loss": 0.0,
1552
+ "reward": 0.0,
1553
+ "reward_std": NaN,
1554
+ "rewards/equation_reward_func": 0.0,
1555
+ "rewards/format_reward_func": 0.0,
1556
+ "step": 238
1557
+ },
1558
+ {
1559
+ "completion_length": 1024.0,
1560
+ "epoch": 0.08533333333333333,
1561
+ "grad_norm": NaN,
1562
+ "kl": NaN,
1563
+ "learning_rate": 2.3559700404385394e-07,
1564
+ "loss": 0.0,
1565
+ "reward": 0.0,
1566
+ "reward_std": NaN,
1567
+ "rewards/equation_reward_func": 0.0,
1568
+ "rewards/format_reward_func": 0.0,
1569
+ "step": 240
1570
+ },
1571
+ {
1572
+ "completion_length": 1024.0,
1573
+ "epoch": 0.08604444444444445,
1574
+ "grad_norm": NaN,
1575
+ "kl": NaN,
1576
+ "learning_rate": 2.3200186419770823e-07,
1577
+ "loss": 0.0,
1578
+ "reward": 0.0,
1579
+ "reward_std": NaN,
1580
+ "rewards/equation_reward_func": 0.0,
1581
+ "rewards/format_reward_func": 0.0,
1582
+ "step": 242
1583
+ },
1584
+ {
1585
+ "completion_length": 1024.0,
1586
+ "epoch": 0.08675555555555556,
1587
+ "grad_norm": NaN,
1588
+ "kl": NaN,
1589
+ "learning_rate": 2.284104620715807e-07,
1590
+ "loss": 0.0,
1591
+ "reward": 0.0,
1592
+ "reward_std": NaN,
1593
+ "rewards/equation_reward_func": 0.0,
1594
+ "rewards/format_reward_func": 0.0,
1595
+ "step": 244
1596
+ },
1597
+ {
1598
+ "completion_length": 1024.0,
1599
+ "epoch": 0.08746666666666666,
1600
+ "grad_norm": NaN,
1601
+ "kl": NaN,
1602
+ "learning_rate": 2.2482354350136043e-07,
1603
+ "loss": 0.0,
1604
+ "reward": 0.0,
1605
+ "reward_std": NaN,
1606
+ "rewards/equation_reward_func": 0.0,
1607
+ "rewards/format_reward_func": 0.0,
1608
+ "step": 246
1609
+ },
1610
+ {
1611
+ "completion_length": 1024.0,
1612
+ "epoch": 0.08817777777777777,
1613
+ "grad_norm": NaN,
1614
+ "kl": NaN,
1615
+ "learning_rate": 2.2124185339182496e-07,
1616
+ "loss": 0.0,
1617
+ "reward": 0.0,
1618
+ "reward_std": NaN,
1619
+ "rewards/equation_reward_func": 0.0,
1620
+ "rewards/format_reward_func": 0.0,
1621
+ "step": 248
1622
+ },
1623
+ {
1624
+ "completion_length": 1024.0,
1625
+ "epoch": 0.08888888888888889,
1626
+ "grad_norm": NaN,
1627
+ "kl": NaN,
1628
+ "learning_rate": 2.1766613556194344e-07,
1629
+ "loss": 0.0,
1630
+ "reward": 0.0,
1631
+ "reward_std": NaN,
1632
+ "rewards/equation_reward_func": 0.0,
1633
+ "rewards/format_reward_func": 0.0,
1634
+ "step": 250
1635
+ },
1636
+ {
1637
+ "completion_length": 1024.0,
1638
+ "epoch": 0.0896,
1639
+ "grad_norm": NaN,
1640
+ "kl": NaN,
1641
+ "learning_rate": 2.1409713259040628e-07,
1642
+ "loss": 0.0,
1643
+ "reward": 0.0,
1644
+ "reward_std": NaN,
1645
+ "rewards/equation_reward_func": 0.0,
1646
+ "rewards/format_reward_func": 0.0,
1647
+ "step": 252
1648
+ },
1649
+ {
1650
+ "completion_length": 1024.0,
1651
+ "epoch": 0.0903111111111111,
1652
+ "grad_norm": NaN,
1653
+ "kl": NaN,
1654
+ "learning_rate": 2.105355856614115e-07,
1655
+ "loss": 0.0,
1656
+ "reward": 0.0,
1657
+ "reward_std": NaN,
1658
+ "rewards/equation_reward_func": 0.0,
1659
+ "rewards/format_reward_func": 0.0,
1660
+ "step": 254
1661
+ },
1662
+ {
1663
+ "completion_length": 1024.0,
1664
+ "epoch": 0.09102222222222223,
1665
+ "grad_norm": NaN,
1666
+ "kl": NaN,
1667
+ "learning_rate": 2.069822344107413e-07,
1668
+ "loss": 0.0,
1669
+ "reward": 0.0,
1670
+ "reward_std": NaN,
1671
+ "rewards/equation_reward_func": 0.0,
1672
+ "rewards/format_reward_func": 0.0,
1673
+ "step": 256
1674
+ },
1675
+ {
1676
+ "completion_length": 1024.0,
1677
+ "epoch": 0.09173333333333333,
1678
+ "grad_norm": NaN,
1679
+ "kl": NaN,
1680
+ "learning_rate": 2.034378167721599e-07,
1681
+ "loss": 0.0,
1682
+ "reward": 0.0,
1683
+ "reward_std": NaN,
1684
+ "rewards/equation_reward_func": 0.0,
1685
+ "rewards/format_reward_func": 0.0,
1686
+ "step": 258
1687
+ },
1688
+ {
1689
+ "completion_length": 1024.0,
1690
+ "epoch": 0.09244444444444444,
1691
+ "grad_norm": NaN,
1692
+ "kl": NaN,
1693
+ "learning_rate": 1.9990306882416485e-07,
1694
+ "loss": 0.0,
1695
+ "reward": 0.0,
1696
+ "reward_std": NaN,
1697
+ "rewards/equation_reward_func": 0.0,
1698
+ "rewards/format_reward_func": 0.0,
1699
+ "step": 260
1700
+ },
1701
+ {
1702
+ "completion_length": 1024.0,
1703
+ "epoch": 0.09315555555555556,
1704
+ "grad_norm": NaN,
1705
+ "kl": NaN,
1706
+ "learning_rate": 1.9637872463712362e-07,
1707
+ "loss": 0.0,
1708
+ "reward": 0.0,
1709
+ "reward_std": NaN,
1710
+ "rewards/equation_reward_func": 0.0,
1711
+ "rewards/format_reward_func": 0.0,
1712
+ "step": 262
1713
+ },
1714
+ {
1715
+ "completion_length": 1024.0,
1716
+ "epoch": 0.09386666666666667,
1717
+ "grad_norm": NaN,
1718
+ "kl": NaN,
1719
+ "learning_rate": 1.9286551612082773e-07,
1720
+ "loss": 0.0,
1721
+ "reward": 0.0,
1722
+ "reward_std": NaN,
1723
+ "rewards/equation_reward_func": 0.0,
1724
+ "rewards/format_reward_func": 0.0,
1725
+ "step": 264
1726
+ },
1727
+ {
1728
+ "completion_length": 1024.0,
1729
+ "epoch": 0.09457777777777777,
1730
+ "grad_norm": NaN,
1731
+ "kl": NaN,
1732
+ "learning_rate": 1.8936417287249446e-07,
1733
+ "loss": 0.0,
1734
+ "reward": 0.0,
1735
+ "reward_std": NaN,
1736
+ "rewards/equation_reward_func": 0.0,
1737
+ "rewards/format_reward_func": 0.0,
1738
+ "step": 266
1739
+ },
1740
+ {
1741
+ "completion_length": 1024.0,
1742
+ "epoch": 0.0952888888888889,
1743
+ "grad_norm": NaN,
1744
+ "kl": NaN,
1745
+ "learning_rate": 1.8587542202524985e-07,
1746
+ "loss": 0.0,
1747
+ "reward": 0.0,
1748
+ "reward_std": NaN,
1749
+ "rewards/equation_reward_func": 0.0,
1750
+ "rewards/format_reward_func": 0.0,
1751
+ "step": 268
1752
+ },
1753
+ {
1754
+ "completion_length": 1024.0,
1755
+ "epoch": 0.096,
1756
+ "grad_norm": NaN,
1757
+ "kl": NaN,
1758
+ "learning_rate": 1.82399988097123e-07,
1759
+ "loss": 0.0,
1760
+ "reward": 0.0,
1761
+ "reward_std": NaN,
1762
+ "rewards/equation_reward_func": 0.0,
1763
+ "rewards/format_reward_func": 0.0,
1764
+ "step": 270
1765
+ },
1766
+ {
1767
+ "completion_length": 1024.0,
1768
+ "epoch": 0.09671111111111111,
1769
+ "grad_norm": NaN,
1770
+ "kl": NaN,
1771
+ "learning_rate": 1.7893859284058378e-07,
1772
+ "loss": 0.0,
1773
+ "reward": 0.0,
1774
+ "reward_std": NaN,
1775
+ "rewards/equation_reward_func": 0.0,
1776
+ "rewards/format_reward_func": 0.0,
1777
+ "step": 272
1778
+ },
1779
+ {
1780
+ "completion_length": 1024.0,
1781
+ "epoch": 0.09742222222222222,
1782
+ "grad_norm": NaN,
1783
+ "kl": NaN,
1784
+ "learning_rate": 1.7549195509265407e-07,
1785
+ "loss": 0.0,
1786
+ "reward": 0.0,
1787
+ "reward_std": NaN,
1788
+ "rewards/equation_reward_func": 0.0,
1789
+ "rewards/format_reward_func": 0.0,
1790
+ "step": 274
1791
+ },
1792
+ {
1793
+ "completion_length": 1024.0,
1794
+ "epoch": 0.09813333333333334,
1795
+ "grad_norm": NaN,
1796
+ "kl": NaN,
1797
+ "learning_rate": 1.7206079062562536e-07,
1798
+ "loss": 0.0,
1799
+ "reward": 0.0,
1800
+ "reward_std": NaN,
1801
+ "rewards/equation_reward_func": 0.0,
1802
+ "rewards/format_reward_func": 0.0,
1803
+ "step": 276
1804
+ },
1805
+ {
1806
+ "completion_length": 1024.0,
1807
+ "epoch": 0.09884444444444444,
1808
+ "grad_norm": NaN,
1809
+ "kl": NaN,
1810
+ "learning_rate": 1.6864581199841226e-07,
1811
+ "loss": 0.0,
1812
+ "reward": 0.0,
1813
+ "reward_std": NaN,
1814
+ "rewards/equation_reward_func": 0.0,
1815
+ "rewards/format_reward_func": 0.0,
1816
+ "step": 278
1817
+ },
1818
+ {
1819
+ "completion_length": 1024.0,
1820
+ "epoch": 0.09955555555555555,
1821
+ "grad_norm": NaN,
1822
+ "kl": NaN,
1823
+ "learning_rate": 1.6524772840857388e-07,
1824
+ "loss": 0.0,
1825
+ "reward": 0.0,
1826
+ "reward_std": NaN,
1827
+ "rewards/equation_reward_func": 0.0,
1828
+ "rewards/format_reward_func": 0.0,
1829
+ "step": 280
1830
+ },
1831
+ {
1832
+ "completion_length": 1024.0,
1833
+ "epoch": 0.10026666666666667,
1834
+ "grad_norm": NaN,
1835
+ "kl": NaN,
1836
+ "learning_rate": 1.6186724554503237e-07,
1837
+ "loss": 0.0,
1838
+ "reward": 0.0,
1839
+ "reward_std": NaN,
1840
+ "rewards/equation_reward_func": 0.0,
1841
+ "rewards/format_reward_func": 0.0,
1842
+ "step": 282
1843
+ },
1844
+ {
1845
+ "completion_length": 1024.0,
1846
+ "epoch": 0.10097777777777778,
1847
+ "grad_norm": NaN,
1848
+ "kl": NaN,
1849
+ "learning_rate": 1.5850506544152103e-07,
1850
+ "loss": 0.0,
1851
+ "reward": 0.0,
1852
+ "reward_std": NaN,
1853
+ "rewards/equation_reward_func": 0.0,
1854
+ "rewards/format_reward_func": 0.0,
1855
+ "step": 284
1856
+ },
1857
+ {
1858
+ "completion_length": 1024.0,
1859
+ "epoch": 0.10168888888888888,
1860
+ "grad_norm": NaN,
1861
+ "kl": NaN,
1862
+ "learning_rate": 1.5516188633079107e-07,
1863
+ "loss": 0.0,
1864
+ "reward": 0.0,
1865
+ "reward_std": NaN,
1866
+ "rewards/equation_reward_func": 0.0,
1867
+ "rewards/format_reward_func": 0.0,
1868
+ "step": 286
1869
+ },
1870
+ {
1871
+ "completion_length": 1024.0,
1872
+ "epoch": 0.1024,
1873
+ "grad_norm": NaN,
1874
+ "kl": NaN,
1875
+ "learning_rate": 1.5183840249960784e-07,
1876
+ "loss": 0.0,
1877
+ "reward": 0.0,
1878
+ "reward_std": NaN,
1879
+ "rewards/equation_reward_func": 0.0,
1880
+ "rewards/format_reward_func": 0.0,
1881
+ "step": 288
1882
+ },
1883
+ {
1884
+ "completion_length": 1024.0,
1885
+ "epoch": 0.10311111111111111,
1886
+ "grad_norm": NaN,
1887
+ "kl": NaN,
1888
+ "learning_rate": 1.4853530414456612e-07,
1889
+ "loss": 0.0,
1890
+ "reward": 0.0,
1891
+ "reward_std": NaN,
1892
+ "rewards/equation_reward_func": 0.0,
1893
+ "rewards/format_reward_func": 0.0,
1894
+ "step": 290
1895
+ },
1896
+ {
1897
+ "completion_length": 1024.0,
1898
+ "epoch": 0.10382222222222222,
1899
+ "grad_norm": NaN,
1900
+ "kl": NaN,
1901
+ "learning_rate": 1.4525327722875568e-07,
1902
+ "loss": 0.0,
1903
+ "reward": 0.0,
1904
+ "reward_std": NaN,
1905
+ "rewards/equation_reward_func": 0.0,
1906
+ "rewards/format_reward_func": 0.0,
1907
+ "step": 292
1908
+ },
1909
+ {
1910
+ "completion_length": 1024.0,
1911
+ "epoch": 0.10453333333333334,
1912
+ "grad_norm": NaN,
1913
+ "kl": NaN,
1914
+ "learning_rate": 1.4199300333930515e-07,
1915
+ "loss": 0.0,
1916
+ "reward": 0.0,
1917
+ "reward_std": NaN,
1918
+ "rewards/equation_reward_func": 0.0,
1919
+ "rewards/format_reward_func": 0.0,
1920
+ "step": 294
1921
+ },
1922
+ {
1923
+ "completion_length": 1024.0,
1924
+ "epoch": 0.10524444444444445,
1925
+ "grad_norm": NaN,
1926
+ "kl": NaN,
1927
+ "learning_rate": 1.3875515954583523e-07,
1928
+ "loss": 0.0,
1929
+ "reward": 0.0,
1930
+ "reward_std": NaN,
1931
+ "rewards/equation_reward_func": 0.0,
1932
+ "rewards/format_reward_func": 0.0,
1933
+ "step": 296
1934
+ },
1935
+ {
1936
+ "completion_length": 1024.0,
1937
+ "epoch": 0.10595555555555555,
1938
+ "grad_norm": NaN,
1939
+ "kl": NaN,
1940
+ "learning_rate": 1.3554041825985e-07,
1941
+ "loss": 0.0,
1942
+ "reward": 0.0,
1943
+ "reward_std": NaN,
1944
+ "rewards/equation_reward_func": 0.0,
1945
+ "rewards/format_reward_func": 0.0,
1946
+ "step": 298
1947
+ },
1948
+ {
1949
+ "completion_length": 1024.0,
1950
+ "epoch": 0.10666666666666667,
1951
+ "grad_norm": NaN,
1952
+ "kl": NaN,
1953
+ "learning_rate": 1.323494470950949e-07,
1954
+ "loss": 0.0,
1955
+ "reward": 0.0,
1956
+ "reward_std": NaN,
1957
+ "rewards/equation_reward_func": 0.0,
1958
+ "rewards/format_reward_func": 0.0,
1959
+ "step": 300
1960
+ },
1961
+ {
1962
+ "completion_length": 1024.0,
1963
+ "epoch": 0.10737777777777778,
1964
+ "grad_norm": NaN,
1965
+ "kl": NaN,
1966
+ "learning_rate": 1.2918290872891236e-07,
1967
+ "loss": 0.0,
1968
+ "reward": 0.0,
1969
+ "reward_std": NaN,
1970
+ "rewards/equation_reward_func": 0.0,
1971
+ "rewards/format_reward_func": 0.0,
1972
+ "step": 302
1973
+ },
1974
+ {
1975
+ "completion_length": 1024.0,
1976
+ "epoch": 0.10808888888888889,
1977
+ "grad_norm": NaN,
1978
+ "kl": NaN,
1979
+ "learning_rate": 1.260414607646213e-07,
1980
+ "loss": 0.0,
1981
+ "reward": 0.0,
1982
+ "reward_std": NaN,
1983
+ "rewards/equation_reward_func": 0.0,
1984
+ "rewards/format_reward_func": 0.0,
1985
+ "step": 304
1986
+ },
1987
+ {
1988
+ "completion_length": 1024.0,
1989
+ "epoch": 0.1088,
1990
+ "grad_norm": NaN,
1991
+ "kl": NaN,
1992
+ "learning_rate": 1.2292575559495143e-07,
1993
+ "loss": 0.0,
1994
+ "reward": 0.0,
1995
+ "reward_std": NaN,
1996
+ "rewards/equation_reward_func": 0.0,
1997
+ "rewards/format_reward_func": 0.0,
1998
+ "step": 306
1999
+ },
2000
+ {
2001
+ "completion_length": 1024.0,
2002
+ "epoch": 0.10951111111111111,
2003
+ "grad_norm": NaN,
2004
+ "kl": NaN,
2005
+ "learning_rate": 1.1983644026655835e-07,
2006
+ "loss": 0.0,
2007
+ "reward": 0.0,
2008
+ "reward_std": NaN,
2009
+ "rewards/equation_reward_func": 0.0,
2010
+ "rewards/format_reward_func": 0.0,
2011
+ "step": 308
2012
+ },
2013
+ {
2014
+ "completion_length": 1024.0,
2015
+ "epoch": 0.11022222222222222,
2016
+ "grad_norm": NaN,
2017
+ "kl": NaN,
2018
+ "learning_rate": 1.1677415634565066e-07,
2019
+ "loss": 0.0,
2020
+ "reward": 0.0,
2021
+ "reward_std": NaN,
2022
+ "rewards/equation_reward_func": 0.0,
2023
+ "rewards/format_reward_func": 0.0,
2024
+ "step": 310
2025
+ },
2026
+ {
2027
+ "completion_length": 1024.0,
2028
+ "epoch": 0.11093333333333333,
2029
+ "grad_norm": NaN,
2030
+ "kl": NaN,
2031
+ "learning_rate": 1.1373953978475353e-07,
2032
+ "loss": 0.0,
2033
+ "reward": 0.0,
2034
+ "reward_std": NaN,
2035
+ "rewards/equation_reward_func": 0.0,
2036
+ "rewards/format_reward_func": 0.0,
2037
+ "step": 312
2038
+ },
2039
+ {
2040
+ "completion_length": 1024.0,
2041
+ "epoch": 0.11164444444444445,
2042
+ "grad_norm": NaN,
2043
+ "kl": NaN,
2044
+ "learning_rate": 1.1073322079063913e-07,
2045
+ "loss": 0.0,
2046
+ "reward": 0.0,
2047
+ "reward_std": NaN,
2048
+ "rewards/equation_reward_func": 0.0,
2049
+ "rewards/format_reward_func": 0.0,
2050
+ "step": 314
2051
+ },
2052
+ {
2053
+ "completion_length": 1024.0,
2054
+ "epoch": 0.11235555555555556,
2055
+ "grad_norm": NaN,
2056
+ "kl": NaN,
2057
+ "learning_rate": 1.0775582369344946e-07,
2058
+ "loss": 0.0,
2059
+ "reward": 0.0,
2060
+ "reward_std": NaN,
2061
+ "rewards/equation_reward_func": 0.0,
2062
+ "rewards/format_reward_func": 0.0,
2063
+ "step": 316
2064
+ },
2065
+ {
2066
+ "completion_length": 1024.0,
2067
+ "epoch": 0.11306666666666666,
2068
+ "grad_norm": NaN,
2069
+ "kl": NaN,
2070
+ "learning_rate": 1.0480796681704077e-07,
2071
+ "loss": 0.0,
2072
+ "reward": 0.0,
2073
+ "reward_std": NaN,
2074
+ "rewards/equation_reward_func": 0.0,
2075
+ "rewards/format_reward_func": 0.0,
2076
+ "step": 318
2077
+ },
2078
+ {
2079
+ "completion_length": 1024.0,
2080
+ "epoch": 0.11377777777777778,
2081
+ "grad_norm": NaN,
2082
+ "kl": NaN,
2083
+ "learning_rate": 1.018902623505741e-07,
2084
+ "loss": 0.0,
2085
+ "reward": 0.0,
2086
+ "reward_std": NaN,
2087
+ "rewards/equation_reward_func": 0.0,
2088
+ "rewards/format_reward_func": 0.0,
2089
+ "step": 320
2090
+ },
2091
+ {
2092
+ "completion_length": 1024.0,
2093
+ "epoch": 0.11448888888888889,
2094
+ "grad_norm": NaN,
2095
+ "kl": NaN,
2096
+ "learning_rate": 9.900331622138063e-08,
2097
+ "loss": 0.0,
2098
+ "reward": 0.0,
2099
+ "reward_std": NaN,
2100
+ "rewards/equation_reward_func": 0.0,
2101
+ "rewards/format_reward_func": 0.0,
2102
+ "step": 322
2103
+ },
2104
+ {
2105
+ "completion_length": 1024.0,
2106
+ "epoch": 0.1152,
2107
+ "grad_norm": NaN,
2108
+ "kl": NaN,
2109
+ "learning_rate": 9.614772796912681e-08,
2110
+ "loss": 0.0,
2111
+ "reward": 0.0,
2112
+ "reward_std": NaN,
2113
+ "rewards/equation_reward_func": 0.0,
2114
+ "rewards/format_reward_func": 0.0,
2115
+ "step": 324
2116
+ },
2117
+ {
2118
+ "completion_length": 1024.0,
2119
+ "epoch": 0.11591111111111112,
2120
+ "grad_norm": NaN,
2121
+ "kl": NaN,
2122
+ "learning_rate": 9.332409062130686e-08,
2123
+ "loss": 0.0,
2124
+ "reward": 0.0,
2125
+ "reward_std": NaN,
2126
+ "rewards/equation_reward_func": 0.0,
2127
+ "rewards/format_reward_func": 0.0,
2128
+ "step": 326
2129
+ },
2130
+ {
2131
+ "completion_length": 1024.0,
2132
+ "epoch": 0.11662222222222222,
2133
+ "grad_norm": NaN,
2134
+ "kl": NaN,
2135
+ "learning_rate": 9.053299057008699e-08,
2136
+ "loss": 0.0,
2137
+ "reward": 0.0,
2138
+ "reward_std": NaN,
2139
+ "rewards/equation_reward_func": 0.0,
2140
+ "rewards/format_reward_func": 0.0,
2141
+ "step": 328
2142
+ },
2143
+ {
2144
+ "completion_length": 1024.0,
2145
+ "epoch": 0.11733333333333333,
2146
+ "grad_norm": NaN,
2147
+ "kl": NaN,
2148
+ "learning_rate": 8.777500745052743e-08,
2149
+ "loss": 0.0,
2150
+ "reward": 0.0,
2151
+ "reward_std": NaN,
2152
+ "rewards/equation_reward_func": 0.0,
2153
+ "rewards/format_reward_func": 0.0,
2154
+ "step": 330
2155
+ },
2156
+ {
2157
+ "completion_length": 1024.0,
2158
+ "epoch": 0.11804444444444444,
2159
+ "grad_norm": NaN,
2160
+ "kl": NaN,
2161
+ "learning_rate": 8.505071402020892e-08,
2162
+ "loss": 0.0,
2163
+ "reward": 0.0,
2164
+ "reward_std": NaN,
2165
+ "rewards/equation_reward_func": 0.0,
2166
+ "rewards/format_reward_func": 0.0,
2167
+ "step": 332
2168
+ },
2169
+ {
2170
+ "completion_length": 1024.0,
2171
+ "epoch": 0.11875555555555556,
2172
+ "grad_norm": NaN,
2173
+ "kl": NaN,
2174
+ "learning_rate": 8.236067604028562e-08,
2175
+ "loss": 0.0,
2176
+ "reward": 0.0,
2177
+ "reward_std": NaN,
2178
+ "rewards/equation_reward_func": 0.0,
2179
+ "rewards/format_reward_func": 0.0,
2180
+ "step": 334
2181
+ },
2182
+ {
2183
+ "completion_length": 1024.0,
2184
+ "epoch": 0.11946666666666667,
2185
+ "grad_norm": NaN,
2186
+ "kl": NaN,
2187
+ "learning_rate": 7.970545215799327e-08,
2188
+ "loss": 0.0,
2189
+ "reward": 0.0,
2190
+ "reward_std": NaN,
2191
+ "rewards/equation_reward_func": 0.0,
2192
+ "rewards/format_reward_func": 0.0,
2193
+ "step": 336
2194
+ },
2195
+ {
2196
+ "completion_length": 1024.0,
2197
+ "epoch": 0.12017777777777777,
2198
+ "grad_norm": NaN,
2199
+ "kl": NaN,
2200
+ "learning_rate": 7.708559379063204e-08,
2201
+ "loss": 0.0,
2202
+ "reward": 0.0,
2203
+ "reward_std": NaN,
2204
+ "rewards/equation_reward_func": 0.0,
2205
+ "rewards/format_reward_func": 0.0,
2206
+ "step": 338
2207
+ },
2208
+ {
2209
+ "completion_length": 1024.0,
2210
+ "epoch": 0.12088888888888889,
2211
+ "grad_norm": NaN,
2212
+ "kl": NaN,
2213
+ "learning_rate": 7.45016450110534e-08,
2214
+ "loss": 0.0,
2215
+ "reward": 0.0,
2216
+ "reward_std": NaN,
2217
+ "rewards/equation_reward_func": 0.0,
2218
+ "rewards/format_reward_func": 0.0,
2219
+ "step": 340
2220
+ },
2221
+ {
2222
+ "completion_length": 1024.0,
2223
+ "epoch": 0.1216,
2224
+ "grad_norm": NaN,
2225
+ "kl": NaN,
2226
+ "learning_rate": 7.195414243467029e-08,
2227
+ "loss": 0.0,
2228
+ "reward": 0.0,
2229
+ "reward_std": NaN,
2230
+ "rewards/equation_reward_func": 0.0,
2231
+ "rewards/format_reward_func": 0.0,
2232
+ "step": 342
2233
+ },
2234
+ {
2235
+ "completion_length": 1024.0,
2236
+ "epoch": 0.1223111111111111,
2237
+ "grad_norm": NaN,
2238
+ "kl": NaN,
2239
+ "learning_rate": 6.944361510801763e-08,
2240
+ "loss": 0.0,
2241
+ "reward": 0.0,
2242
+ "reward_std": NaN,
2243
+ "rewards/equation_reward_func": 0.0,
2244
+ "rewards/format_reward_func": 0.0,
2245
+ "step": 344
2246
+ },
2247
+ {
2248
+ "completion_length": 1024.0,
2249
+ "epoch": 0.12302222222222223,
2250
+ "grad_norm": NaN,
2251
+ "kl": NaN,
2252
+ "learning_rate": 6.697058439888283e-08,
2253
+ "loss": 0.0,
2254
+ "reward": 0.0,
2255
+ "reward_std": NaN,
2256
+ "rewards/equation_reward_func": 0.0,
2257
+ "rewards/format_reward_func": 0.0,
2258
+ "step": 346
2259
+ },
2260
+ {
2261
+ "completion_length": 1024.0,
2262
+ "epoch": 0.12373333333333333,
2263
+ "grad_norm": NaN,
2264
+ "kl": NaN,
2265
+ "learning_rate": 6.453556388803288e-08,
2266
+ "loss": 0.0,
2267
+ "reward": 0.0,
2268
+ "reward_std": NaN,
2269
+ "rewards/equation_reward_func": 0.0,
2270
+ "rewards/format_reward_func": 0.0,
2271
+ "step": 348
2272
+ },
2273
+ {
2274
+ "completion_length": 1024.0,
2275
+ "epoch": 0.12444444444444444,
2276
+ "grad_norm": NaN,
2277
+ "kl": NaN,
2278
+ "learning_rate": 6.213905926255697e-08,
2279
+ "loss": 0.0,
2280
+ "reward": 0.0,
2281
+ "reward_std": NaN,
2282
+ "rewards/equation_reward_func": 0.0,
2283
+ "rewards/format_reward_func": 0.0,
2284
+ "step": 350
2285
+ },
2286
+ {
2287
+ "completion_length": 1024.0,
2288
+ "epoch": 0.12515555555555555,
2289
+ "grad_norm": NaN,
2290
+ "kl": NaN,
2291
+ "learning_rate": 5.978156821084987e-08,
2292
+ "loss": 0.0,
2293
+ "reward": 0.0,
2294
+ "reward_std": NaN,
2295
+ "rewards/equation_reward_func": 0.0,
2296
+ "rewards/format_reward_func": 0.0,
2297
+ "step": 352
2298
+ },
2299
+ {
2300
+ "completion_length": 1024.0,
2301
+ "epoch": 0.12586666666666665,
2302
+ "grad_norm": NaN,
2303
+ "kl": NaN,
2304
+ "learning_rate": 5.7463580319254853e-08,
2305
+ "loss": 0.0,
2306
+ "reward": 0.0,
2307
+ "reward_std": NaN,
2308
+ "rewards/equation_reward_func": 0.0,
2309
+ "rewards/format_reward_func": 0.0,
2310
+ "step": 354
2311
+ },
2312
+ {
2313
+ "completion_length": 1024.0,
2314
+ "epoch": 0.1265777777777778,
2315
+ "grad_norm": NaN,
2316
+ "kl": NaN,
2317
+ "learning_rate": 5.518557697039081e-08,
2318
+ "loss": 0.0,
2319
+ "reward": 0.0,
2320
+ "reward_std": NaN,
2321
+ "rewards/equation_reward_func": 0.0,
2322
+ "rewards/format_reward_func": 0.0,
2323
+ "step": 356
2324
+ },
2325
+ {
2326
+ "completion_length": 1024.0,
2327
+ "epoch": 0.1272888888888889,
2328
+ "grad_norm": NaN,
2329
+ "kl": NaN,
2330
+ "learning_rate": 5.294803124318145e-08,
2331
+ "loss": 0.0,
2332
+ "reward": 0.0,
2333
+ "reward_std": NaN,
2334
+ "rewards/equation_reward_func": 0.0,
2335
+ "rewards/format_reward_func": 0.0,
2336
+ "step": 358
2337
+ },
2338
+ {
2339
+ "completion_length": 1024.0,
2340
+ "epoch": 0.128,
2341
+ "grad_norm": NaN,
2342
+ "kl": NaN,
2343
+ "learning_rate": 5.07514078146106e-08,
2344
+ "loss": 0.0,
2345
+ "reward": 0.0,
2346
+ "reward_std": NaN,
2347
+ "rewards/equation_reward_func": 0.0,
2348
+ "rewards/format_reward_func": 0.0,
2349
+ "step": 360
2350
+ },
2351
+ {
2352
+ "completion_length": 1024.0,
2353
+ "epoch": 0.1287111111111111,
2354
+ "grad_norm": NaN,
2355
+ "kl": NaN,
2356
+ "learning_rate": 4.859616286322094e-08,
2357
+ "loss": 0.0,
2358
+ "reward": 0.0,
2359
+ "reward_std": NaN,
2360
+ "rewards/equation_reward_func": 0.0,
2361
+ "rewards/format_reward_func": 0.0,
2362
+ "step": 362
2363
+ },
2364
+ {
2365
+ "completion_length": 1024.0,
2366
+ "epoch": 0.12942222222222222,
2367
+ "grad_norm": NaN,
2368
+ "kl": NaN,
2369
+ "learning_rate": 4.648274397437829e-08,
2370
+ "loss": 0.0,
2371
+ "reward": 0.0,
2372
+ "reward_std": NaN,
2373
+ "rewards/equation_reward_func": 0.0,
2374
+ "rewards/format_reward_func": 0.0,
2375
+ "step": 364
2376
+ },
2377
+ {
2378
+ "completion_length": 1024.0,
2379
+ "epoch": 0.13013333333333332,
2380
+ "grad_norm": NaN,
2381
+ "kl": NaN,
2382
+ "learning_rate": 4.4411590047320617e-08,
2383
+ "loss": 0.0,
2384
+ "reward": 0.0,
2385
+ "reward_std": NaN,
2386
+ "rewards/equation_reward_func": 0.0,
2387
+ "rewards/format_reward_func": 0.0,
2388
+ "step": 366
2389
+ },
2390
+ {
2391
+ "completion_length": 1024.0,
2392
+ "epoch": 0.13084444444444446,
2393
+ "grad_norm": NaN,
2394
+ "kl": NaN,
2395
+ "learning_rate": 4.2383131204010494e-08,
2396
+ "loss": 0.0,
2397
+ "reward": 0.0,
2398
+ "reward_std": NaN,
2399
+ "rewards/equation_reward_func": 0.0,
2400
+ "rewards/format_reward_func": 0.0,
2401
+ "step": 368
2402
+ },
2403
+ {
2404
+ "completion_length": 1024.0,
2405
+ "epoch": 0.13155555555555556,
2406
+ "grad_norm": NaN,
2407
+ "kl": NaN,
2408
+ "learning_rate": 4.039778869981064e-08,
2409
+ "loss": 0.0,
2410
+ "reward": 0.0,
2411
+ "reward_std": NaN,
2412
+ "rewards/equation_reward_func": 0.0,
2413
+ "rewards/format_reward_func": 0.0,
2414
+ "step": 370
2415
+ },
2416
+ {
2417
+ "completion_length": 1024.0,
2418
+ "epoch": 0.13226666666666667,
2419
+ "grad_norm": NaN,
2420
+ "kl": NaN,
2421
+ "learning_rate": 3.845597483600049e-08,
2422
+ "loss": 0.0,
2423
+ "reward": 0.0,
2424
+ "reward_std": NaN,
2425
+ "rewards/equation_reward_func": 0.0,
2426
+ "rewards/format_reward_func": 0.0,
2427
+ "step": 372
2428
+ },
2429
+ {
2430
+ "completion_length": 1024.0,
2431
+ "epoch": 0.13297777777777778,
2432
+ "grad_norm": NaN,
2433
+ "kl": NaN,
2434
+ "learning_rate": 3.655809287415284e-08,
2435
+ "loss": 0.0,
2436
+ "reward": 0.0,
2437
+ "reward_std": NaN,
2438
+ "rewards/equation_reward_func": 0.0,
2439
+ "rewards/format_reward_func": 0.0,
2440
+ "step": 374
2441
+ },
2442
+ {
2443
+ "completion_length": 1024.0,
2444
+ "epoch": 0.13368888888888888,
2445
+ "grad_norm": NaN,
2446
+ "kl": NaN,
2447
+ "learning_rate": 3.4704536952387285e-08,
2448
+ "loss": 0.0,
2449
+ "reward": 0.0,
2450
+ "reward_std": NaN,
2451
+ "rewards/equation_reward_func": 0.0,
2452
+ "rewards/format_reward_func": 0.0,
2453
+ "step": 376
2454
+ },
2455
+ {
2456
+ "completion_length": 1024.0,
2457
+ "epoch": 0.1344,
2458
+ "grad_norm": NaN,
2459
+ "kl": NaN,
2460
+ "learning_rate": 3.2895692003518575e-08,
2461
+ "loss": 0.0,
2462
+ "reward": 0.0,
2463
+ "reward_std": NaN,
2464
+ "rewards/equation_reward_func": 0.0,
2465
+ "rewards/format_reward_func": 0.0,
2466
+ "step": 378
2467
+ },
2468
+ {
2469
+ "completion_length": 1024.0,
2470
+ "epoch": 0.1351111111111111,
2471
+ "grad_norm": NaN,
2472
+ "kl": NaN,
2473
+ "learning_rate": 3.113193367511635e-08,
2474
+ "loss": 0.0,
2475
+ "reward": 0.0,
2476
+ "reward_std": NaN,
2477
+ "rewards/equation_reward_func": 0.0,
2478
+ "rewards/format_reward_func": 0.0,
2479
+ "step": 380
2480
+ },
2481
+ {
2482
+ "completion_length": 1024.0,
2483
+ "epoch": 0.13582222222222223,
2484
+ "grad_norm": NaN,
2485
+ "kl": NaN,
2486
+ "learning_rate": 2.9413628251493934e-08,
2487
+ "loss": 0.0,
2488
+ "reward": 0.0,
2489
+ "reward_std": NaN,
2490
+ "rewards/equation_reward_func": 0.0,
2491
+ "rewards/format_reward_func": 0.0,
2492
+ "step": 382
2493
+ },
2494
+ {
2495
+ "completion_length": 1024.0,
2496
+ "epoch": 0.13653333333333334,
2497
+ "grad_norm": NaN,
2498
+ "kl": NaN,
2499
+ "learning_rate": 2.774113257764066e-08,
2500
+ "loss": 0.0,
2501
+ "reward": 0.0,
2502
+ "reward_std": NaN,
2503
+ "rewards/equation_reward_func": 0.0,
2504
+ "rewards/format_reward_func": 0.0,
2505
+ "step": 384
2506
+ },
2507
+ {
2508
+ "completion_length": 1024.0,
2509
+ "epoch": 0.13724444444444445,
2510
+ "grad_norm": NaN,
2511
+ "kl": NaN,
2512
+ "learning_rate": 2.611479398511518e-08,
2513
+ "loss": 0.0,
2514
+ "reward": 0.0,
2515
+ "reward_std": NaN,
2516
+ "rewards/equation_reward_func": 0.0,
2517
+ "rewards/format_reward_func": 0.0,
2518
+ "step": 386
2519
+ },
2520
+ {
2521
+ "completion_length": 1024.0,
2522
+ "epoch": 0.13795555555555555,
2523
+ "grad_norm": NaN,
2524
+ "kl": NaN,
2525
+ "learning_rate": 2.4534950219914057e-08,
2526
+ "loss": 0.0,
2527
+ "reward": 0.0,
2528
+ "reward_std": NaN,
2529
+ "rewards/equation_reward_func": 0.0,
2530
+ "rewards/format_reward_func": 0.0,
2531
+ "step": 388
2532
+ },
2533
+ {
2534
+ "completion_length": 1024.0,
2535
+ "epoch": 0.13866666666666666,
2536
+ "grad_norm": NaN,
2537
+ "kl": NaN,
2538
+ "learning_rate": 2.300192937233128e-08,
2539
+ "loss": 0.0,
2540
+ "reward": 0.0,
2541
+ "reward_std": NaN,
2542
+ "rewards/equation_reward_func": 0.0,
2543
+ "rewards/format_reward_func": 0.0,
2544
+ "step": 390
2545
+ },
2546
+ {
2547
+ "completion_length": 1024.0,
2548
+ "epoch": 0.13937777777777777,
2549
+ "grad_norm": NaN,
2550
+ "kl": NaN,
2551
+ "learning_rate": 2.1516049808822935e-08,
2552
+ "loss": 0.0,
2553
+ "reward": 0.0,
2554
+ "reward_std": NaN,
2555
+ "rewards/equation_reward_func": 0.0,
2556
+ "rewards/format_reward_func": 0.0,
2557
+ "step": 392
2558
+ },
2559
+ {
2560
+ "completion_length": 1024.0,
2561
+ "epoch": 0.1400888888888889,
2562
+ "grad_norm": NaN,
2563
+ "kl": NaN,
2564
+ "learning_rate": 2.007762010589098e-08,
2565
+ "loss": 0.0,
2566
+ "reward": 0.0,
2567
+ "reward_std": NaN,
2568
+ "rewards/equation_reward_func": 0.0,
2569
+ "rewards/format_reward_func": 0.0,
2570
+ "step": 394
2571
+ },
2572
+ {
2573
+ "completion_length": 1024.0,
2574
+ "epoch": 0.1408,
2575
+ "grad_norm": NaN,
2576
+ "kl": NaN,
2577
+ "learning_rate": 1.8686938986000627e-08,
2578
+ "loss": 0.0,
2579
+ "reward": 0.0,
2580
+ "reward_std": NaN,
2581
+ "rewards/equation_reward_func": 0.0,
2582
+ "rewards/format_reward_func": 0.0,
2583
+ "step": 396
2584
+ },
2585
+ {
2586
+ "completion_length": 1024.0,
2587
+ "epoch": 0.14151111111111112,
2588
+ "grad_norm": NaN,
2589
+ "kl": NaN,
2590
+ "learning_rate": 1.734429525554365e-08,
2591
+ "loss": 0.0,
2592
+ "reward": 0.0,
2593
+ "reward_std": NaN,
2594
+ "rewards/equation_reward_func": 0.0,
2595
+ "rewards/format_reward_func": 0.0,
2596
+ "step": 398
2597
+ },
2598
+ {
2599
+ "completion_length": 1024.0,
2600
+ "epoch": 0.14222222222222222,
2601
+ "grad_norm": NaN,
2602
+ "kl": NaN,
2603
+ "learning_rate": 1.604996774486145e-08,
2604
+ "loss": 0.0,
2605
+ "reward": 0.0,
2606
+ "reward_std": NaN,
2607
+ "rewards/equation_reward_func": 0.0,
2608
+ "rewards/format_reward_func": 0.0,
2609
+ "step": 400
2610
+ },
2611
+ {
2612
+ "completion_length": 1024.0,
2613
+ "epoch": 0.14293333333333333,
2614
+ "grad_norm": NaN,
2615
+ "kl": NaN,
2616
+ "learning_rate": 1.4804225250339281e-08,
2617
+ "loss": 0.0,
2618
+ "reward": 0.0,
2619
+ "reward_std": NaN,
2620
+ "rewards/equation_reward_func": 0.0,
2621
+ "rewards/format_reward_func": 0.0,
2622
+ "step": 402
2623
+ },
2624
+ {
2625
+ "completion_length": 1024.0,
2626
+ "epoch": 0.14364444444444444,
2627
+ "grad_norm": NaN,
2628
+ "kl": NaN,
2629
+ "learning_rate": 1.360732647858498e-08,
2630
+ "loss": 0.0,
2631
+ "reward": 0.0,
2632
+ "reward_std": NaN,
2633
+ "rewards/equation_reward_func": 0.0,
2634
+ "rewards/format_reward_func": 0.0,
2635
+ "step": 404
2636
+ },
2637
+ {
2638
+ "completion_length": 1024.0,
2639
+ "epoch": 0.14435555555555554,
2640
+ "grad_norm": NaN,
2641
+ "kl": NaN,
2642
+ "learning_rate": 1.2459519992702311e-08,
2643
+ "loss": 0.0,
2644
+ "reward": 0.0,
2645
+ "reward_std": NaN,
2646
+ "rewards/equation_reward_func": 0.0,
2647
+ "rewards/format_reward_func": 0.0,
2648
+ "step": 406
2649
+ },
2650
+ {
2651
+ "completion_length": 1024.0,
2652
+ "epoch": 0.14506666666666668,
2653
+ "grad_norm": NaN,
2654
+ "kl": NaN,
2655
+ "learning_rate": 1.1361044160671629e-08,
2656
+ "loss": 0.0,
2657
+ "reward": 0.0,
2658
+ "reward_std": NaN,
2659
+ "rewards/equation_reward_func": 0.0,
2660
+ "rewards/format_reward_func": 0.0,
2661
+ "step": 408
2662
+ },
2663
+ {
2664
+ "completion_length": 1024.0,
2665
+ "epoch": 0.14577777777777778,
2666
+ "grad_norm": NaN,
2667
+ "kl": NaN,
2668
+ "learning_rate": 1.0312127105846947e-08,
2669
+ "loss": 0.0,
2670
+ "reward": 0.0,
2671
+ "reward_std": NaN,
2672
+ "rewards/equation_reward_func": 0.0,
2673
+ "rewards/format_reward_func": 0.0,
2674
+ "step": 410
2675
+ },
2676
+ {
2677
+ "completion_length": 1024.0,
2678
+ "epoch": 0.1464888888888889,
2679
+ "grad_norm": NaN,
2680
+ "kl": NaN,
2681
+ "learning_rate": 9.312986659581301e-09,
2682
+ "loss": 0.0,
2683
+ "reward": 0.0,
2684
+ "reward_std": NaN,
2685
+ "rewards/equation_reward_func": 0.0,
2686
+ "rewards/format_reward_func": 0.0,
2687
+ "step": 412
2688
+ },
2689
+ {
2690
+ "completion_length": 1024.0,
2691
+ "epoch": 0.1472,
2692
+ "grad_norm": NaN,
2693
+ "kl": NaN,
2694
+ "learning_rate": 8.363830315988945e-09,
2695
+ "loss": 0.0,
2696
+ "reward": 0.0,
2697
+ "reward_std": NaN,
2698
+ "rewards/equation_reward_func": 0.0,
2699
+ "rewards/format_reward_func": 0.0,
2700
+ "step": 414
2701
+ },
2702
+ {
2703
+ "completion_length": 1024.0,
2704
+ "epoch": 0.1479111111111111,
2705
+ "grad_norm": NaN,
2706
+ "kl": NaN,
2707
+ "learning_rate": 7.46485518885462e-09,
2708
+ "loss": 0.0,
2709
+ "reward": 0.0,
2710
+ "reward_std": NaN,
2711
+ "rewards/equation_reward_func": 0.0,
2712
+ "rewards/format_reward_func": 0.0,
2713
+ "step": 416
2714
+ },
2715
+ {
2716
+ "completion_length": 1024.0,
2717
+ "epoch": 0.1486222222222222,
2718
+ "grad_norm": NaN,
2719
+ "kl": NaN,
2720
+ "learning_rate": 6.616247970698319e-09,
2721
+ "loss": 0.0,
2722
+ "reward": 0.0,
2723
+ "reward_std": NaN,
2724
+ "rewards/equation_reward_func": 0.0,
2725
+ "rewards/format_reward_func": 0.0,
2726
+ "step": 418
2727
+ },
2728
+ {
2729
+ "completion_length": 1024.0,
2730
+ "epoch": 0.14933333333333335,
2731
+ "grad_norm": NaN,
2732
+ "kl": NaN,
2733
+ "learning_rate": 5.8181848940044855e-09,
2734
+ "loss": 0.0,
2735
+ "reward": 0.0,
2736
+ "reward_std": NaN,
2737
+ "rewards/equation_reward_func": 0.0,
2738
+ "rewards/format_reward_func": 0.0,
2739
+ "step": 420
2740
+ },
2741
+ {
2742
+ "completion_length": 1024.0,
2743
+ "epoch": 0.15004444444444445,
2744
+ "grad_norm": NaN,
2745
+ "kl": NaN,
2746
+ "learning_rate": 5.070831694623135e-09,
2747
+ "loss": 0.0,
2748
+ "reward": 0.0,
2749
+ "reward_std": NaN,
2750
+ "rewards/equation_reward_func": 0.0,
2751
+ "rewards/format_reward_func": 0.0,
2752
+ "step": 422
2753
+ },
2754
+ {
2755
+ "completion_length": 1024.0,
2756
+ "epoch": 0.15075555555555556,
2757
+ "grad_norm": NaN,
2758
+ "kl": NaN,
2759
+ "learning_rate": 4.374343577351336e-09,
2760
+ "loss": 0.0,
2761
+ "reward": 0.0,
2762
+ "reward_std": NaN,
2763
+ "rewards/equation_reward_func": 0.0,
2764
+ "rewards/format_reward_func": 0.0,
2765
+ "step": 424
2766
+ },
2767
+ {
2768
+ "completion_length": 1024.0,
2769
+ "epoch": 0.15146666666666667,
2770
+ "grad_norm": NaN,
2771
+ "kl": NaN,
2772
+ "learning_rate": 3.7288651837012745e-09,
2773
+ "loss": 0.0,
2774
+ "reward": 0.0,
2775
+ "reward_std": NaN,
2776
+ "rewards/equation_reward_func": 0.0,
2777
+ "rewards/format_reward_func": 0.0,
2778
+ "step": 426
2779
+ },
2780
+ {
2781
+ "completion_length": 1024.0,
2782
+ "epoch": 0.15217777777777777,
2783
+ "grad_norm": NaN,
2784
+ "kl": NaN,
2785
+ "learning_rate": 3.134530561862081e-09,
2786
+ "loss": 0.0,
2787
+ "reward": 0.0,
2788
+ "reward_std": NaN,
2789
+ "rewards/equation_reward_func": 0.0,
2790
+ "rewards/format_reward_func": 0.0,
2791
+ "step": 428
2792
+ },
2793
+ {
2794
+ "completion_length": 1024.0,
2795
+ "epoch": 0.15288888888888888,
2796
+ "grad_norm": NaN,
2797
+ "kl": NaN,
2798
+ "learning_rate": 2.5914631388619103e-09,
2799
+ "loss": 0.0,
2800
+ "reward": 0.0,
2801
+ "reward_std": NaN,
2802
+ "rewards/equation_reward_func": 0.0,
2803
+ "rewards/format_reward_func": 0.0,
2804
+ "step": 430
2805
+ },
2806
+ {
2807
+ "completion_length": 1024.0,
2808
+ "epoch": 0.1536,
2809
+ "grad_norm": NaN,
2810
+ "kl": NaN,
2811
+ "learning_rate": 2.0997756949353297e-09,
2812
+ "loss": 0.0,
2813
+ "reward": 0.0,
2814
+ "reward_std": NaN,
2815
+ "rewards/equation_reward_func": 0.0,
2816
+ "rewards/format_reward_func": 0.0,
2817
+ "step": 432
2818
+ },
2819
+ {
2820
+ "completion_length": 1024.0,
2821
+ "epoch": 0.15431111111111112,
2822
+ "grad_norm": NaN,
2823
+ "kl": NaN,
2824
+ "learning_rate": 1.6595703401020844e-09,
2825
+ "loss": 0.0,
2826
+ "reward": 0.0,
2827
+ "reward_std": NaN,
2828
+ "rewards/equation_reward_func": 0.0,
2829
+ "rewards/format_reward_func": 0.0,
2830
+ "step": 434
2831
+ },
2832
+ {
2833
+ "completion_length": 1024.0,
2834
+ "epoch": 0.15502222222222223,
2835
+ "grad_norm": NaN,
2836
+ "kl": NaN,
2837
+ "learning_rate": 1.2709384929615596e-09,
2838
+ "loss": 0.0,
2839
+ "reward": 0.0,
2840
+ "reward_std": NaN,
2841
+ "rewards/equation_reward_func": 0.0,
2842
+ "rewards/format_reward_func": 0.0,
2843
+ "step": 436
2844
+ },
2845
+ {
2846
+ "completion_length": 1024.0,
2847
+ "epoch": 0.15573333333333333,
2848
+ "grad_norm": NaN,
2849
+ "kl": NaN,
2850
+ "learning_rate": 9.339608617077165e-10,
2851
+ "loss": 0.0,
2852
+ "reward": 0.0,
2853
+ "reward_std": NaN,
2854
+ "rewards/equation_reward_func": 0.0,
2855
+ "rewards/format_reward_func": 0.0,
2856
+ "step": 438
2857
+ },
2858
+ {
2859
+ "completion_length": 1024.0,
2860
+ "epoch": 0.15644444444444444,
2861
+ "grad_norm": NaN,
2862
+ "kl": NaN,
2863
+ "learning_rate": 6.487074273681114e-10,
2864
+ "loss": 0.0,
2865
+ "reward": 0.0,
2866
+ "reward_std": NaN,
2867
+ "rewards/equation_reward_func": 0.0,
2868
+ "rewards/format_reward_func": 0.0,
2869
+ "step": 440
2870
+ },
2871
+ {
2872
+ "completion_length": 1024.0,
2873
+ "epoch": 0.15715555555555555,
2874
+ "grad_norm": NaN,
2875
+ "kl": NaN,
2876
+ "learning_rate": 4.152374292708538e-10,
2877
+ "loss": 0.0,
2878
+ "reward": 0.0,
2879
+ "reward_std": NaN,
2880
+ "rewards/equation_reward_func": 0.0,
2881
+ "rewards/format_reward_func": 0.0,
2882
+ "step": 442
2883
+ },
2884
+ {
2885
+ "completion_length": 1024.0,
2886
+ "epoch": 0.15786666666666666,
2887
+ "grad_norm": NaN,
2888
+ "kl": NaN,
2889
+ "learning_rate": 2.3359935274214204e-10,
2890
+ "loss": 0.0,
2891
+ "reward": 0.0,
2892
+ "reward_std": NaN,
2893
+ "rewards/equation_reward_func": 0.0,
2894
+ "rewards/format_reward_func": 0.0,
2895
+ "step": 444
2896
+ },
2897
+ {
2898
+ "completion_length": 1024.0,
2899
+ "epoch": 0.1585777777777778,
2900
+ "grad_norm": NaN,
2901
+ "kl": NaN,
2902
+ "learning_rate": 1.0383091903720665e-10,
2903
+ "loss": 0.0,
2904
+ "reward": 0.0,
2905
+ "reward_std": NaN,
2906
+ "rewards/equation_reward_func": 0.0,
2907
+ "rewards/format_reward_func": 0.0,
2908
+ "step": 446
2909
+ },
2910
+ {
2911
+ "completion_length": 1024.0,
2912
+ "epoch": 0.1592888888888889,
2913
+ "grad_norm": NaN,
2914
+ "kl": NaN,
2915
+ "learning_rate": 2.595907750671533e-11,
2916
+ "loss": 0.0,
2917
+ "reward": 0.0,
2918
+ "reward_std": NaN,
2919
+ "rewards/equation_reward_func": 0.0,
2920
+ "rewards/format_reward_func": 0.0,
2921
+ "step": 448
2922
+ },
2923
+ {
2924
+ "completion_length": 1024.0,
2925
+ "epoch": 0.16,
2926
+ "grad_norm": NaN,
2927
+ "kl": NaN,
2928
+ "learning_rate": 0.0,
2929
+ "loss": 0.0,
2930
+ "reward": 0.0,
2931
+ "reward_std": NaN,
2932
+ "rewards/equation_reward_func": 0.0,
2933
+ "rewards/format_reward_func": 0.0,
2934
+ "step": 450
2935
+ },
2936
+ {
2937
+ "epoch": 0.16,
2938
+ "step": 450,
2939
+ "total_flos": 0.0,
2940
+ "train_loss": 0.0,
2941
+ "train_runtime": 30520.1269,
2942
+ "train_samples_per_second": 0.236,
2943
+ "train_steps_per_second": 0.015
2944
+ }
2945
+ ],
2946
+ "logging_steps": 2,
2947
+ "max_steps": 450,
2948
+ "num_input_tokens_seen": 0,
2949
+ "num_train_epochs": 1,
2950
+ "save_steps": 25,
2951
+ "stateful_callbacks": {
2952
+ "TrainerControl": {
2953
+ "args": {
2954
+ "should_epoch_stop": false,
2955
+ "should_evaluate": false,
2956
+ "should_log": false,
2957
+ "should_save": true,
2958
+ "should_training_stop": true
2959
+ },
2960
+ "attributes": {}
2961
+ }
2962
+ },
2963
+ "total_flos": 0.0,
2964
+ "train_batch_size": 1,
2965
+ "trial_name": null,
2966
+ "trial_params": null
2967
+ }