leonMW commited on
Commit
dba6bc0
·
verified ·
1 Parent(s): 175a44d

Add files using upload-large-folder tool

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,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ model_name: DeepSeek-R1-Distill-Qwen-7B-S
4
+ tags:
5
+ - generated_from_trainer
6
+ - trl
7
+ - grpo
8
+ licence: license
9
+ ---
10
+
11
+ # Model Card for DeepSeek-R1-Distill-Qwen-7B-S
12
+
13
+ This model is a fine-tuned version of [None](https://huggingface.co/None).
14
+ It has been trained using [TRL](https://github.com/huggingface/trl).
15
+
16
+ ## Quick start
17
+
18
+ ```python
19
+ from transformers import pipeline
20
+
21
+ 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?"
22
+ generator = pipeline("text-generation", model="leonMW/DeepSeek-R1-Distill-Qwen-7B-S", device="cuda")
23
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
24
+ print(output["generated_text"])
25
+ ```
26
+
27
+ ## Training procedure
28
+
29
+ [<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/leonwenderoth-tu-darmstadt/huggingface/runs/zjrhqpsu)
30
+
31
+
32
+ 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).
33
+
34
+ ### Framework versions
35
+
36
+ - TRL: 0.23.0
37
+ - Transformers: 4.56.2
38
+ - Pytorch: 2.7.1
39
+ - Datasets: 4.1.1
40
+ - Tokenizers: 0.22.1
41
+
42
+ ## Citations
43
+
44
+ Cite GRPO as:
45
+
46
+ ```bibtex
47
+ @article{shao2024deepseekmath,
48
+ title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
49
+ 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},
50
+ year = 2024,
51
+ eprint = {arXiv:2402.03300},
52
+ }
53
+
54
+ ```
55
+
56
+ Cite TRL as:
57
+
58
+ ```bibtex
59
+ @misc{vonwerra2022trl,
60
+ title = {{TRL: Transformer Reinforcement Learning}},
61
+ 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{\'e}dec},
62
+ year = 2020,
63
+ journal = {GitHub repository},
64
+ publisher = {GitHub},
65
+ howpublished = {\url{https://github.com/huggingface/trl}}
66
+ }
67
+ ```
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.003984759748293852,
4
+ "train_runtime": 17571.6441,
5
+ "train_samples": 2793,
6
+ "train_samples_per_second": 0.318,
7
+ "train_steps_per_second": 0.01
8
+ }
chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|>'}}{% endif %}
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151646,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151643,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
13
+ "layer_types": [
14
+ "full_attention",
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention"
42
+ ],
43
+ "max_position_embeddings": 131072,
44
+ "max_window_layers": 28,
45
+ "model_type": "qwen2",
46
+ "num_attention_heads": 28,
47
+ "num_hidden_layers": 28,
48
+ "num_key_value_heads": 4,
49
+ "pad_token_id": 151643,
50
+ "rms_norm_eps": 1e-06,
51
+ "rope_scaling": null,
52
+ "rope_theta": 10000,
53
+ "sliding_window": null,
54
+ "tie_word_embeddings": false,
55
+ "transformers_version": "4.56.2",
56
+ "use_cache": true,
57
+ "use_mrope": false,
58
+ "use_sliding_window": false,
59
+ "vocab_size": 152064
60
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 151646,
4
+ "eos_token_id": 151643,
5
+ "pad_token_id": 151643,
6
+ "transformers_version": "4.56.2"
7
+ }
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3c0c35afa9726d843a4c40694f542aecca7cfd840fd3f85dc64bad7fa15b980
3
+ size 4877660776
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a82a71ef50a20325c758c1cb5e0c093edffda74ee1a7d54ec25a91b95b42a98
3
+ size 4932751008
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62bf82c7bad0923f8c63234471b1d2be3de40b3a176251de24a4baeb02239c12
3
+ size 4330865200
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e2e1de767800151514f1aebb06062f2cc159fd28cc6fa725743df31a1c99be7
3
+ size 1089994880
model.safetensors.index.json ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 333312,
4
+ "total_size": 15231233024
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00004-of-00004.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
20
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
32
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
33
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
34
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
37
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
38
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
39
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
40
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
41
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
42
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
43
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
44
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
50
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
51
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
53
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
54
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
55
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
56
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
62
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
63
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
65
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
66
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
67
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
68
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
74
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
75
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
77
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
78
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
79
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
80
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
86
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
87
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
89
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
90
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
91
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
92
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
98
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
99
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
101
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
102
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
103
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
104
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
105
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
106
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
107
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
108
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
109
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
110
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
111
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
114
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
116
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
117
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
118
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
119
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
120
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
121
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
122
+ "model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
123
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
124
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
125
+ "model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
126
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
127
+ "model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
128
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
129
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
130
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
131
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
132
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
133
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
134
+ "model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
135
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
136
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
138
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
139
+ "model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
140
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
141
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
142
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
143
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
144
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
145
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
146
+ "model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
147
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
148
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
149
+ "model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
150
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
151
+ "model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
152
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
153
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
154
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
155
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
156
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
157
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
158
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
159
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
160
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
161
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
162
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
163
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
164
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
165
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
166
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
167
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
168
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
169
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
170
+ "model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
171
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
172
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
173
+ "model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
174
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
175
+ "model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
176
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
180
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
181
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
182
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
183
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
184
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
185
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
186
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
187
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
188
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
194
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
195
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
197
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
198
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
199
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
200
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
206
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
207
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
209
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
210
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
211
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
212
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
215
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
216
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
217
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
218
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
219
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
220
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
221
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
222
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
223
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
224
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
230
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
231
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
233
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
234
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
235
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
236
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
238
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
242
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
243
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
245
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
246
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
247
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
248
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
250
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
252
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
254
+ "model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
255
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
256
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
257
+ "model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
258
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
259
+ "model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
260
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
266
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
269
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
271
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
273
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
274
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
275
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
276
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
277
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
278
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
279
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
280
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
281
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
282
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
283
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
284
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
285
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
286
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
287
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
288
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
289
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
290
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
291
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
292
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
293
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
294
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
295
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
296
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
297
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
298
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
299
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
300
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
301
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
302
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
303
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
304
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
305
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
306
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
307
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
308
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
309
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
310
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
311
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
312
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
313
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
314
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
315
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
316
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
317
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
318
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
319
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
320
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
321
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
322
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
323
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
324
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
325
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
326
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
327
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
328
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
329
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
330
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
331
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
332
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
333
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
334
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
335
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
336
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
337
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
338
+ "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
339
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
340
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
341
+ "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
342
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
343
+ "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
344
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
345
+ "model.norm.weight": "model-00003-of-00004.safetensors"
346
+ }
347
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4256422650d141f228fe954acee98679da412984c29a569877eefd3af69315a
3
+ size 11422959
tokenizer_config.json ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "151643": {
7
+ "content": "<|end▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "151644": {
15
+ "content": "<|User|>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": false
21
+ },
22
+ "151645": {
23
+ "content": "<|Assistant|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "151646": {
31
+ "content": "<|begin▁of▁sentence|>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "151647": {
39
+ "content": "<|EOT|>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "151648": {
47
+ "content": "<think>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "151649": {
55
+ "content": "</think>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "151650": {
63
+ "content": "<|quad_start|>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "151651": {
71
+ "content": "<|quad_end|>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "151652": {
79
+ "content": "<|vision_start|>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "151653": {
87
+ "content": "<|vision_end|>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "151654": {
95
+ "content": "<|vision_pad|>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "151655": {
103
+ "content": "<|image_pad|>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "151656": {
111
+ "content": "<|video_pad|>",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "151657": {
119
+ "content": "<tool_call>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "151658": {
127
+ "content": "</tool_call>",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "151659": {
135
+ "content": "<|fim_prefix|>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "151660": {
143
+ "content": "<|fim_middle|>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "151661": {
151
+ "content": "<|fim_suffix|>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "151662": {
159
+ "content": "<|fim_pad|>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "151663": {
167
+ "content": "<|repo_name|>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "151664": {
175
+ "content": "<|file_sep|>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ }
182
+ },
183
+ "bos_token": "<|begin▁of▁sentence|>",
184
+ "clean_up_tokenization_spaces": false,
185
+ "eos_token": "<|end▁of▁sentence|>",
186
+ "extra_special_tokens": {},
187
+ "legacy": true,
188
+ "max_length": null,
189
+ "model_max_length": 16384,
190
+ "pad_to_multiple_of": null,
191
+ "pad_token": "<|end▁of▁sentence|>",
192
+ "pad_token_type_id": 0,
193
+ "padding_side": "left",
194
+ "sp_model_kwargs": {},
195
+ "tokenizer_class": "LlamaTokenizerFast",
196
+ "unk_token": null,
197
+ "use_default_system_prompt": false
198
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 0.0,
3
+ "train_loss": 0.003984759748293852,
4
+ "train_runtime": 17571.6441,
5
+ "train_samples": 2793,
6
+ "train_samples_per_second": 0.318,
7
+ "train_steps_per_second": 0.01
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,1862 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 84,
3
+ "best_metric": 0.00022543604427482933,
4
+ "best_model_checkpoint": "data/DeepSeek-R1-Distill-Qwen-7B-Staged-3/checkpoint-84",
5
+ "epoch": 2.0,
6
+ "eval_steps": 500,
7
+ "global_step": 168,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "clip_ratio/high_max": 0.0,
14
+ "clip_ratio/high_mean": 0.0,
15
+ "clip_ratio/low_mean": 0.0,
16
+ "clip_ratio/low_min": 0.0,
17
+ "clip_ratio/region_mean": 0.0,
18
+ "completions/clipped_ratio": 0.0,
19
+ "completions/max_length": 872.0,
20
+ "completions/max_terminated_length": 872.0,
21
+ "completions/mean_length": 493.42919921875,
22
+ "completions/mean_terminated_length": 493.42919921875,
23
+ "completions/min_length": 271.0,
24
+ "completions/min_terminated_length": 271.0,
25
+ "entropy": 0.8375349938869476,
26
+ "epoch": 0.011904761904761904,
27
+ "frac_reward_zero_std": 0.0,
28
+ "grad_norm": 0.10371755808591843,
29
+ "learning_rate": 1e-05,
30
+ "loss": -0.0014,
31
+ "num_tokens": 2778575.0,
32
+ "reward": 3.663585662841797,
33
+ "reward_std": 0.316636860370636,
34
+ "rewards/ngram_repetition2/mean": 0.9156007766723633,
35
+ "rewards/ngram_repetition2/std": 0.02841464802622795,
36
+ "rewards/ngram_repetition3/mean": 0.9844592213630676,
37
+ "rewards/ngram_repetition3/std": 0.010988580994307995,
38
+ "rewards/symbolic_reward_accuracy/mean": 0.84228515625,
39
+ "rewards/symbolic_reward_accuracy/std": 0.36456242203712463,
40
+ "rewards/symbolic_reward_partial_score/mean": 0.9502766728401184,
41
+ "rewards/symbolic_reward_partial_score/std": 0.13473224639892578,
42
+ "rewards/tag_count_reward/mean": 1.0,
43
+ "rewards/tag_count_reward/std": 0.0,
44
+ "rewards/thinking_answer_ratio_reward/mean": 0.9737867712974548,
45
+ "rewards/thinking_answer_ratio_reward/std": 0.0084904246032238,
46
+ "sampling/importance_sampling_ratio/max": 2.0,
47
+ "sampling/importance_sampling_ratio/mean": 1.2483623027801514,
48
+ "sampling/importance_sampling_ratio/min": 0.0012419477570801973,
49
+ "sampling/sampling_logp_difference/max": 6.691074371337891,
50
+ "sampling/sampling_logp_difference/mean": 0.3304027318954468,
51
+ "step": 1
52
+ },
53
+ {
54
+ "clip_ratio/high_max": 0.18229166666666666,
55
+ "clip_ratio/high_mean": 0.06705729166666667,
56
+ "clip_ratio/low_mean": 0.390625,
57
+ "clip_ratio/low_min": 0.21354166666666666,
58
+ "clip_ratio/region_mean": 0.4576822916666667,
59
+ "entropy": 0.8554559648036957,
60
+ "epoch": 0.047619047619047616,
61
+ "grad_norm": 0.0923309475183487,
62
+ "learning_rate": 1e-05,
63
+ "loss": 0.0126,
64
+ "step": 4
65
+ },
66
+ {
67
+ "clip_ratio/high_max": 0.109375,
68
+ "clip_ratio/high_mean": 0.0390625,
69
+ "clip_ratio/low_mean": 0.275390625,
70
+ "clip_ratio/low_min": 0.14453125,
71
+ "clip_ratio/region_mean": 0.314453125,
72
+ "completions/clipped_ratio": 0.0,
73
+ "completions/max_length": 1237.0,
74
+ "completions/max_terminated_length": 1237.0,
75
+ "completions/mean_length": 521.73583984375,
76
+ "completions/mean_terminated_length": 521.73583984375,
77
+ "completions/min_length": 301.0,
78
+ "completions/min_terminated_length": 301.0,
79
+ "entropy": 0.8218244835734367,
80
+ "epoch": 0.09523809523809523,
81
+ "frac_reward_zero_std": 0.0,
82
+ "grad_norm": 0.07603302597999573,
83
+ "learning_rate": 1e-05,
84
+ "loss": 0.0111,
85
+ "num_tokens": 5698738.0,
86
+ "reward": 3.8017191886901855,
87
+ "reward_std": 0.2319643646478653,
88
+ "rewards/ngram_repetition2/mean": 0.909049391746521,
89
+ "rewards/ngram_repetition2/std": 0.029375825077295303,
90
+ "rewards/ngram_repetition3/mean": 0.9826949834823608,
91
+ "rewards/ngram_repetition3/std": 0.011540538631379604,
92
+ "rewards/symbolic_reward_accuracy/mean": 0.90087890625,
93
+ "rewards/symbolic_reward_accuracy/std": 0.29889750480651855,
94
+ "rewards/symbolic_reward_partial_score/mean": 0.9712728261947632,
95
+ "rewards/symbolic_reward_partial_score/std": 0.09666982293128967,
96
+ "rewards/tag_count_reward/mean": 1.0,
97
+ "rewards/tag_count_reward/std": 0.0,
98
+ "rewards/thinking_answer_ratio_reward/mean": 0.9771104454994202,
99
+ "rewards/thinking_answer_ratio_reward/std": 0.00513562373816967,
100
+ "sampling/importance_sampling_ratio/max": 2.0,
101
+ "sampling/importance_sampling_ratio/mean": 1.2442681789398193,
102
+ "sampling/importance_sampling_ratio/min": 0.0008342887158505619,
103
+ "sampling/sampling_logp_difference/max": 7.088931083679199,
104
+ "sampling/sampling_logp_difference/mean": 0.325713574886322,
105
+ "step": 8
106
+ },
107
+ {
108
+ "clip_ratio/high_max": 0.19921875,
109
+ "clip_ratio/high_mean": 0.107421875,
110
+ "clip_ratio/low_mean": 0.24462890625,
111
+ "clip_ratio/low_min": 0.13671875,
112
+ "clip_ratio/region_mean": 0.35205078125,
113
+ "completions/clipped_ratio": 0.0,
114
+ "completions/max_length": 907.0,
115
+ "completions/max_terminated_length": 907.0,
116
+ "completions/mean_length": 507.666015625,
117
+ "completions/mean_terminated_length": 507.666015625,
118
+ "completions/min_length": 287.0,
119
+ "completions/min_terminated_length": 287.0,
120
+ "entropy": 0.8540411740541458,
121
+ "epoch": 0.14285714285714285,
122
+ "frac_reward_zero_std": 0.0,
123
+ "grad_norm": 0.08517201989889145,
124
+ "learning_rate": 1e-05,
125
+ "loss": 0.0106,
126
+ "num_tokens": 8529286.0,
127
+ "reward": 3.751950740814209,
128
+ "reward_std": 0.2073085606098175,
129
+ "rewards/ngram_repetition2/mean": 0.9060913920402527,
130
+ "rewards/ngram_repetition2/std": 0.029160665348172188,
131
+ "rewards/ngram_repetition3/mean": 0.9818980097770691,
132
+ "rewards/ngram_repetition3/std": 0.01140812411904335,
133
+ "rewards/symbolic_reward_accuracy/mean": 0.88134765625,
134
+ "rewards/symbolic_reward_accuracy/std": 0.3234579563140869,
135
+ "rewards/symbolic_reward_partial_score/mean": 0.9606119394302368,
136
+ "rewards/symbolic_reward_partial_score/std": 0.12397422641515732,
137
+ "rewards/tag_count_reward/mean": 1.0,
138
+ "rewards/tag_count_reward/std": 0.0,
139
+ "rewards/thinking_answer_ratio_reward/mean": 0.9763435125350952,
140
+ "rewards/thinking_answer_ratio_reward/std": 0.006303399335592985,
141
+ "sampling/importance_sampling_ratio/max": 2.0,
142
+ "sampling/importance_sampling_ratio/mean": 1.2473976612091064,
143
+ "sampling/importance_sampling_ratio/min": 0.0019555450417101383,
144
+ "sampling/sampling_logp_difference/max": 6.237086296081543,
145
+ "sampling/sampling_logp_difference/mean": 0.3299524486064911,
146
+ "step": 12
147
+ },
148
+ {
149
+ "clip_ratio/high_max": 0.1953125,
150
+ "clip_ratio/high_mean": 0.10302734375,
151
+ "clip_ratio/low_mean": 0.27294921875,
152
+ "clip_ratio/low_min": 0.125,
153
+ "clip_ratio/region_mean": 0.3759765625,
154
+ "completions/clipped_ratio": 0.0,
155
+ "completions/max_length": 921.0,
156
+ "completions/max_terminated_length": 921.0,
157
+ "completions/mean_length": 461.00634765625,
158
+ "completions/mean_terminated_length": 461.00634765625,
159
+ "completions/min_length": 267.0,
160
+ "completions/min_terminated_length": 267.0,
161
+ "entropy": 0.829069722443819,
162
+ "epoch": 0.19047619047619047,
163
+ "frac_reward_zero_std": 0.0,
164
+ "grad_norm": 0.06742873042821884,
165
+ "learning_rate": 1e-05,
166
+ "loss": 0.0084,
167
+ "num_tokens": 11300691.0,
168
+ "reward": 3.798084259033203,
169
+ "reward_std": 0.20729093253612518,
170
+ "rewards/ngram_repetition2/mean": 0.9188657999038696,
171
+ "rewards/ngram_repetition2/std": 0.025240786373615265,
172
+ "rewards/ngram_repetition3/mean": 0.9856483340263367,
173
+ "rewards/ngram_repetition3/std": 0.009459859691560268,
174
+ "rewards/symbolic_reward_accuracy/mean": 0.9033203125,
175
+ "rewards/symbolic_reward_accuracy/std": 0.2955932915210724,
176
+ "rewards/symbolic_reward_partial_score/mean": 0.962646484375,
177
+ "rewards/symbolic_reward_partial_score/std": 0.12614500522613525,
178
+ "rewards/tag_count_reward/mean": 1.0,
179
+ "rewards/tag_count_reward/std": 0.0,
180
+ "rewards/thinking_answer_ratio_reward/mean": 0.9751918911933899,
181
+ "rewards/thinking_answer_ratio_reward/std": 0.004718962591141462,
182
+ "sampling/importance_sampling_ratio/max": 2.0,
183
+ "sampling/importance_sampling_ratio/mean": 1.2463021278381348,
184
+ "sampling/importance_sampling_ratio/min": 0.0014070722972974181,
185
+ "sampling/sampling_logp_difference/max": 6.566244125366211,
186
+ "sampling/sampling_logp_difference/mean": 0.3286193013191223,
187
+ "step": 16
188
+ },
189
+ {
190
+ "clip_ratio/high_max": 0.22265625,
191
+ "clip_ratio/high_mean": 0.12646484375,
192
+ "clip_ratio/low_mean": 0.24462890625,
193
+ "clip_ratio/low_min": 0.14453125,
194
+ "clip_ratio/region_mean": 0.37109375,
195
+ "completions/clipped_ratio": 0.0,
196
+ "completions/max_length": 704.0,
197
+ "completions/max_terminated_length": 704.0,
198
+ "completions/mean_length": 416.75146484375,
199
+ "completions/mean_terminated_length": 416.75146484375,
200
+ "completions/min_length": 257.0,
201
+ "completions/min_terminated_length": 257.0,
202
+ "entropy": 0.8178543969988823,
203
+ "epoch": 0.23809523809523808,
204
+ "frac_reward_zero_std": 0.0,
205
+ "grad_norm": 0.05325091630220413,
206
+ "learning_rate": 1e-05,
207
+ "loss": 0.0057,
208
+ "num_tokens": 13981782.0,
209
+ "reward": 3.840620517730713,
210
+ "reward_std": 0.17522145807743073,
211
+ "rewards/ngram_repetition2/mean": 0.932222306728363,
212
+ "rewards/ngram_repetition2/std": 0.02194184437394142,
213
+ "rewards/ngram_repetition3/mean": 0.989234447479248,
214
+ "rewards/ngram_repetition3/std": 0.008273402228951454,
215
+ "rewards/symbolic_reward_accuracy/mean": 0.91845703125,
216
+ "rewards/symbolic_reward_accuracy/std": 0.2737340033054352,
217
+ "rewards/symbolic_reward_partial_score/mean": 0.9747720956802368,
218
+ "rewards/symbolic_reward_partial_score/std": 0.09571196138858795,
219
+ "rewards/tag_count_reward/mean": 1.0,
220
+ "rewards/tag_count_reward/std": 0.0,
221
+ "rewards/thinking_answer_ratio_reward/mean": 0.9719721674919128,
222
+ "rewards/thinking_answer_ratio_reward/std": 0.005963112693279982,
223
+ "sampling/importance_sampling_ratio/max": 2.0,
224
+ "sampling/importance_sampling_ratio/mean": 1.2414987087249756,
225
+ "sampling/importance_sampling_ratio/min": 0.00114686309825629,
226
+ "sampling/sampling_logp_difference/max": 6.770724773406982,
227
+ "sampling/sampling_logp_difference/mean": 0.3227406144142151,
228
+ "step": 20
229
+ },
230
+ {
231
+ "clip_ratio/high_max": 0.21875,
232
+ "clip_ratio/high_mean": 0.12451171875,
233
+ "clip_ratio/low_mean": 0.2451171875,
234
+ "clip_ratio/low_min": 0.1328125,
235
+ "clip_ratio/region_mean": 0.36962890625,
236
+ "completions/clipped_ratio": 0.0,
237
+ "completions/max_length": 583.0,
238
+ "completions/max_terminated_length": 583.0,
239
+ "completions/mean_length": 372.75732421875,
240
+ "completions/mean_terminated_length": 372.75732421875,
241
+ "completions/min_length": 235.0,
242
+ "completions/min_terminated_length": 235.0,
243
+ "entropy": 0.7815876416862011,
244
+ "epoch": 0.2857142857142857,
245
+ "frac_reward_zero_std": 0.0,
246
+ "grad_norm": 0.05320040136575699,
247
+ "learning_rate": 1e-05,
248
+ "loss": 0.0041,
249
+ "num_tokens": 16548549.0,
250
+ "reward": 3.79876708984375,
251
+ "reward_std": 0.11160629987716675,
252
+ "rewards/ngram_repetition2/mean": 0.9457941055297852,
253
+ "rewards/ngram_repetition2/std": 0.01891067810356617,
254
+ "rewards/ngram_repetition3/mean": 0.9925487041473389,
255
+ "rewards/ngram_repetition3/std": 0.006580323446542025,
256
+ "rewards/symbolic_reward_accuracy/mean": 0.8974609375,
257
+ "rewards/symbolic_reward_accuracy/std": 0.3034299910068512,
258
+ "rewards/symbolic_reward_partial_score/mean": 0.9747720956802368,
259
+ "rewards/symbolic_reward_partial_score/std": 0.09050152450799942,
260
+ "rewards/tag_count_reward/mean": 1.0,
261
+ "rewards/tag_count_reward/std": 0.0,
262
+ "rewards/thinking_answer_ratio_reward/mean": 0.9689682126045227,
263
+ "rewards/thinking_answer_ratio_reward/std": 0.0063285622745752335,
264
+ "sampling/importance_sampling_ratio/max": 2.0,
265
+ "sampling/importance_sampling_ratio/mean": 1.23650324344635,
266
+ "sampling/importance_sampling_ratio/min": 0.001662293216213584,
267
+ "sampling/sampling_logp_difference/max": 6.399557113647461,
268
+ "sampling/sampling_logp_difference/mean": 0.31696027517318726,
269
+ "step": 24
270
+ },
271
+ {
272
+ "clip_ratio/high_max": 0.2734375,
273
+ "clip_ratio/high_mean": 0.1572265625,
274
+ "clip_ratio/low_mean": 0.22412109375,
275
+ "clip_ratio/low_min": 0.09765625,
276
+ "clip_ratio/region_mean": 0.38134765625,
277
+ "completions/clipped_ratio": 0.0,
278
+ "completions/max_length": 496.0,
279
+ "completions/max_terminated_length": 496.0,
280
+ "completions/mean_length": 334.39111328125,
281
+ "completions/mean_terminated_length": 334.39111328125,
282
+ "completions/min_length": 192.0,
283
+ "completions/min_terminated_length": 192.0,
284
+ "entropy": 0.7627993300557137,
285
+ "epoch": 0.3333333333333333,
286
+ "frac_reward_zero_std": 0.0,
287
+ "grad_norm": 0.05497128516435623,
288
+ "learning_rate": 1e-05,
289
+ "loss": 0.0017,
290
+ "num_tokens": 19030726.0,
291
+ "reward": 3.8732995986938477,
292
+ "reward_std": 0.11424858868122101,
293
+ "rewards/ngram_repetition2/mean": 0.9574997425079346,
294
+ "rewards/ngram_repetition2/std": 0.015644928440451622,
295
+ "rewards/ngram_repetition3/mean": 0.9950100183486938,
296
+ "rewards/ngram_repetition3/std": 0.005439166910946369,
297
+ "rewards/symbolic_reward_accuracy/mean": 0.93310546875,
298
+ "rewards/symbolic_reward_accuracy/std": 0.24990026652812958,
299
+ "rewards/symbolic_reward_partial_score/mean": 0.9779052734375,
300
+ "rewards/symbolic_reward_partial_score/std": 0.09342914074659348,
301
+ "rewards/tag_count_reward/mean": 1.0,
302
+ "rewards/tag_count_reward/std": 0.0,
303
+ "rewards/thinking_answer_ratio_reward/mean": 0.9658128023147583,
304
+ "rewards/thinking_answer_ratio_reward/std": 0.006996896583586931,
305
+ "sampling/importance_sampling_ratio/max": 2.0,
306
+ "sampling/importance_sampling_ratio/mean": 1.2309629917144775,
307
+ "sampling/importance_sampling_ratio/min": 0.0011809006100520492,
308
+ "sampling/sampling_logp_difference/max": 6.741477966308594,
309
+ "sampling/sampling_logp_difference/mean": 0.31086698174476624,
310
+ "step": 28
311
+ },
312
+ {
313
+ "clip_ratio/high_max": 0.25390625,
314
+ "clip_ratio/high_mean": 0.138671875,
315
+ "clip_ratio/low_mean": 0.21826171875,
316
+ "clip_ratio/low_min": 0.09375,
317
+ "clip_ratio/region_mean": 0.35693359375,
318
+ "completions/clipped_ratio": 0.0,
319
+ "completions/max_length": 477.0,
320
+ "completions/max_terminated_length": 477.0,
321
+ "completions/mean_length": 311.6484375,
322
+ "completions/mean_terminated_length": 311.6484375,
323
+ "completions/min_length": 22.0,
324
+ "completions/min_terminated_length": 22.0,
325
+ "entropy": 0.7324606403708458,
326
+ "epoch": 0.38095238095238093,
327
+ "frac_reward_zero_std": 0.0,
328
+ "grad_norm": 0.035085611045360565,
329
+ "learning_rate": 1e-05,
330
+ "loss": 0.0006,
331
+ "num_tokens": 21471382.0,
332
+ "reward": 3.878781795501709,
333
+ "reward_std": 0.12647078931331635,
334
+ "rewards/ngram_repetition2/mean": 0.9654513597488403,
335
+ "rewards/ngram_repetition2/std": 0.013394074514508247,
336
+ "rewards/ngram_repetition3/mean": 0.9962821006774902,
337
+ "rewards/ngram_repetition3/std": 0.004647234920412302,
338
+ "rewards/symbolic_reward_accuracy/mean": 0.935546875,
339
+ "rewards/symbolic_reward_accuracy/std": 0.24561835825443268,
340
+ "rewards/symbolic_reward_partial_score/mean": 0.9784342050552368,
341
+ "rewards/symbolic_reward_partial_score/std": 0.09432914108037949,
342
+ "rewards/tag_count_reward/mean": 1.0,
343
+ "rewards/tag_count_reward/std": 0.0,
344
+ "rewards/thinking_answer_ratio_reward/mean": 0.9636549353599548,
345
+ "rewards/thinking_answer_ratio_reward/std": 0.021884752437472343,
346
+ "sampling/importance_sampling_ratio/max": 2.0,
347
+ "sampling/importance_sampling_ratio/mean": 1.2252447605133057,
348
+ "sampling/importance_sampling_ratio/min": 0.0016044432995840907,
349
+ "sampling/sampling_logp_difference/max": 6.434978485107422,
350
+ "sampling/sampling_logp_difference/mean": 0.30396580696105957,
351
+ "step": 32
352
+ },
353
+ {
354
+ "clip_ratio/high_max": 0.2734375,
355
+ "clip_ratio/high_mean": 0.15869140625,
356
+ "clip_ratio/low_mean": 0.2080078125,
357
+ "clip_ratio/low_min": 0.09375,
358
+ "clip_ratio/region_mean": 0.36669921875,
359
+ "completions/clipped_ratio": 0.0,
360
+ "completions/max_length": 430.0,
361
+ "completions/max_terminated_length": 430.0,
362
+ "completions/mean_length": 290.2744140625,
363
+ "completions/mean_terminated_length": 290.2744140625,
364
+ "completions/min_length": 177.0,
365
+ "completions/min_terminated_length": 177.0,
366
+ "entropy": 0.721624631434679,
367
+ "epoch": 0.42857142857142855,
368
+ "frac_reward_zero_std": 0.0,
369
+ "grad_norm": 0.03640465438365936,
370
+ "learning_rate": 1e-05,
371
+ "loss": -0.0001,
372
+ "num_tokens": 23887592.0,
373
+ "reward": 3.8664052486419678,
374
+ "reward_std": 0.12858426570892334,
375
+ "rewards/ngram_repetition2/mean": 0.970293402671814,
376
+ "rewards/ngram_repetition2/std": 0.012160783633589745,
377
+ "rewards/ngram_repetition3/mean": 0.9971583485603333,
378
+ "rewards/ngram_repetition3/std": 0.00398310786113143,
379
+ "rewards/symbolic_reward_accuracy/mean": 0.92822265625,
380
+ "rewards/symbolic_reward_accuracy/std": 0.2581818997859955,
381
+ "rewards/symbolic_reward_partial_score/mean": 0.9806721806526184,
382
+ "rewards/symbolic_reward_partial_score/std": 0.08271697163581848,
383
+ "rewards/tag_count_reward/mean": 1.0,
384
+ "rewards/tag_count_reward/std": 0.0,
385
+ "rewards/thinking_answer_ratio_reward/mean": 0.9613040089607239,
386
+ "rewards/thinking_answer_ratio_reward/std": 0.007317277602851391,
387
+ "sampling/importance_sampling_ratio/max": 2.0,
388
+ "sampling/importance_sampling_ratio/mean": 1.2203993797302246,
389
+ "sampling/importance_sampling_ratio/min": 0.001269048429094255,
390
+ "sampling/sampling_logp_difference/max": 6.669487953186035,
391
+ "sampling/sampling_logp_difference/mean": 0.29926085472106934,
392
+ "step": 36
393
+ },
394
+ {
395
+ "clip_ratio/high_max": 0.21875,
396
+ "clip_ratio/high_mean": 0.11572265625,
397
+ "clip_ratio/low_mean": 0.25537109375,
398
+ "clip_ratio/low_min": 0.12890625,
399
+ "clip_ratio/region_mean": 0.37109375,
400
+ "completions/clipped_ratio": 0.0,
401
+ "completions/max_length": 427.0,
402
+ "completions/max_terminated_length": 427.0,
403
+ "completions/mean_length": 284.6923828125,
404
+ "completions/mean_terminated_length": 284.6923828125,
405
+ "completions/min_length": 184.0,
406
+ "completions/min_terminated_length": 184.0,
407
+ "entropy": 0.7025646083056927,
408
+ "epoch": 0.47619047619047616,
409
+ "frac_reward_zero_std": 0.0,
410
+ "grad_norm": 0.04123682901263237,
411
+ "learning_rate": 1e-05,
412
+ "loss": -0.0005,
413
+ "num_tokens": 26295538.0,
414
+ "reward": 3.7722182273864746,
415
+ "reward_std": 0.1536768078804016,
416
+ "rewards/ngram_repetition2/mean": 0.9733011722564697,
417
+ "rewards/ngram_repetition2/std": 0.012304718606173992,
418
+ "rewards/ngram_repetition3/mean": 0.9972368478775024,
419
+ "rewards/ngram_repetition3/std": 0.004414981231093407,
420
+ "rewards/symbolic_reward_accuracy/mean": 0.88818359375,
421
+ "rewards/symbolic_reward_accuracy/std": 0.31521740555763245,
422
+ "rewards/symbolic_reward_partial_score/mean": 0.966552734375,
423
+ "rewards/symbolic_reward_partial_score/std": 0.10999048501253128,
424
+ "rewards/tag_count_reward/mean": 1.0,
425
+ "rewards/tag_count_reward/std": 0.0,
426
+ "rewards/thinking_answer_ratio_reward/mean": 0.9592961668968201,
427
+ "rewards/thinking_answer_ratio_reward/std": 0.008976742625236511,
428
+ "sampling/importance_sampling_ratio/max": 2.0,
429
+ "sampling/importance_sampling_ratio/mean": 1.2174944877624512,
430
+ "sampling/importance_sampling_ratio/min": 0.0009174988372251391,
431
+ "sampling/sampling_logp_difference/max": 6.99385929107666,
432
+ "sampling/sampling_logp_difference/mean": 0.29805290699005127,
433
+ "step": 40
434
+ },
435
+ {
436
+ "clip_ratio/high_max": 0.25390625,
437
+ "clip_ratio/high_mean": 0.14892578125,
438
+ "clip_ratio/low_mean": 0.228515625,
439
+ "clip_ratio/low_min": 0.1015625,
440
+ "clip_ratio/region_mean": 0.37744140625,
441
+ "completions/clipped_ratio": 0.0,
442
+ "completions/max_length": 417.0,
443
+ "completions/max_terminated_length": 417.0,
444
+ "completions/mean_length": 279.68017578125,
445
+ "completions/mean_terminated_length": 279.68017578125,
446
+ "completions/min_length": 178.0,
447
+ "completions/min_terminated_length": 178.0,
448
+ "entropy": 0.7209025509655476,
449
+ "epoch": 0.5238095238095238,
450
+ "frac_reward_zero_std": 0.0,
451
+ "grad_norm": 0.03904758393764496,
452
+ "learning_rate": 1e-05,
453
+ "loss": -0.001,
454
+ "num_tokens": 28673731.0,
455
+ "reward": 3.845343589782715,
456
+ "reward_std": 0.1021677702665329,
457
+ "rewards/ngram_repetition2/mean": 0.9727880954742432,
458
+ "rewards/ngram_repetition2/std": 0.014563015662133694,
459
+ "rewards/ngram_repetition3/mean": 0.9964158535003662,
460
+ "rewards/ngram_repetition3/std": 0.006320940796285868,
461
+ "rewards/symbolic_reward_accuracy/mean": 0.91845703125,
462
+ "rewards/symbolic_reward_accuracy/std": 0.2737340033054352,
463
+ "rewards/symbolic_reward_partial_score/mean": 0.9791666269302368,
464
+ "rewards/symbolic_reward_partial_score/std": 0.07696299254894257,
465
+ "rewards/tag_count_reward/mean": 1.0,
466
+ "rewards/tag_count_reward/std": 0.0,
467
+ "rewards/thinking_answer_ratio_reward/mean": 0.9570740461349487,
468
+ "rewards/thinking_answer_ratio_reward/std": 0.012159617617726326,
469
+ "sampling/importance_sampling_ratio/max": 2.0,
470
+ "sampling/importance_sampling_ratio/mean": 1.2212014198303223,
471
+ "sampling/importance_sampling_ratio/min": 0.0015326839638873935,
472
+ "sampling/sampling_logp_difference/max": 6.480734825134277,
473
+ "sampling/sampling_logp_difference/mean": 0.3009487986564636,
474
+ "step": 44
475
+ },
476
+ {
477
+ "clip_ratio/high_max": 0.22265625,
478
+ "clip_ratio/high_mean": 0.1083984375,
479
+ "clip_ratio/low_mean": 0.2265625,
480
+ "clip_ratio/low_min": 0.11328125,
481
+ "clip_ratio/region_mean": 0.3349609375,
482
+ "completions/clipped_ratio": 0.0,
483
+ "completions/max_length": 420.0,
484
+ "completions/max_terminated_length": 420.0,
485
+ "completions/mean_length": 288.65185546875,
486
+ "completions/mean_terminated_length": 288.65185546875,
487
+ "completions/min_length": 163.0,
488
+ "completions/min_terminated_length": 163.0,
489
+ "entropy": 0.7586110942065716,
490
+ "epoch": 0.5714285714285714,
491
+ "frac_reward_zero_std": 0.0,
492
+ "grad_norm": 0.05547133460640907,
493
+ "learning_rate": 1e-05,
494
+ "loss": -0.0005,
495
+ "num_tokens": 31079642.0,
496
+ "reward": 3.8869855403900146,
497
+ "reward_std": 0.0652470514178276,
498
+ "rewards/ngram_repetition2/mean": 0.9750747680664062,
499
+ "rewards/ngram_repetition2/std": 0.013366366736590862,
500
+ "rewards/ngram_repetition3/mean": 0.9970998764038086,
501
+ "rewards/ngram_repetition3/std": 0.005164336413145065,
502
+ "rewards/symbolic_reward_accuracy/mean": 0.9384765625,
503
+ "rewards/symbolic_reward_accuracy/std": 0.24034665524959564,
504
+ "rewards/symbolic_reward_partial_score/mean": 0.980712890625,
505
+ "rewards/symbolic_reward_partial_score/std": 0.08254173398017883,
506
+ "rewards/tag_count_reward/mean": 1.0,
507
+ "rewards/tag_count_reward/std": 0.0,
508
+ "rewards/thinking_answer_ratio_reward/mean": 0.9597762823104858,
509
+ "rewards/thinking_answer_ratio_reward/std": 0.011353440582752228,
510
+ "sampling/importance_sampling_ratio/max": 2.0,
511
+ "sampling/importance_sampling_ratio/mean": 1.2331750392913818,
512
+ "sampling/importance_sampling_ratio/min": 0.0016639016102999449,
513
+ "sampling/sampling_logp_difference/max": 6.398590087890625,
514
+ "sampling/sampling_logp_difference/mean": 0.316028892993927,
515
+ "step": 48
516
+ },
517
+ {
518
+ "clip_ratio/high_max": 0.20703125,
519
+ "clip_ratio/high_mean": 0.10888671875,
520
+ "clip_ratio/low_mean": 0.24267578125,
521
+ "clip_ratio/low_min": 0.10546875,
522
+ "clip_ratio/region_mean": 0.3515625,
523
+ "completions/clipped_ratio": 0.0,
524
+ "completions/max_length": 461.0,
525
+ "completions/max_terminated_length": 461.0,
526
+ "completions/mean_length": 291.1162109375,
527
+ "completions/mean_terminated_length": 291.1162109375,
528
+ "completions/min_length": 159.0,
529
+ "completions/min_terminated_length": 159.0,
530
+ "entropy": 0.783844955265522,
531
+ "epoch": 0.6190476190476191,
532
+ "frac_reward_zero_std": 0.0,
533
+ "grad_norm": 0.055351365357637405,
534
+ "learning_rate": 1e-05,
535
+ "loss": -0.0002,
536
+ "num_tokens": 33518952.0,
537
+ "reward": 3.874098300933838,
538
+ "reward_std": 0.0593051016330719,
539
+ "rewards/ngram_repetition2/mean": 0.9759907722473145,
540
+ "rewards/ngram_repetition2/std": 0.012779747135937214,
541
+ "rewards/ngram_repetition3/mean": 0.9973393082618713,
542
+ "rewards/ngram_repetition3/std": 0.004218540154397488,
543
+ "rewards/symbolic_reward_accuracy/mean": 0.93310546875,
544
+ "rewards/symbolic_reward_accuracy/std": 0.24990026652812958,
545
+ "rewards/symbolic_reward_partial_score/mean": 0.9785562753677368,
546
+ "rewards/symbolic_reward_partial_score/std": 0.08766603469848633,
547
+ "rewards/tag_count_reward/mean": 1.0,
548
+ "rewards/tag_count_reward/std": 0.0,
549
+ "rewards/thinking_answer_ratio_reward/mean": 0.9597955942153931,
550
+ "rewards/thinking_answer_ratio_reward/std": 0.010997203178703785,
551
+ "sampling/importance_sampling_ratio/max": 2.0,
552
+ "sampling/importance_sampling_ratio/mean": 1.242828130722046,
553
+ "sampling/importance_sampling_ratio/min": 0.001207949360832572,
554
+ "sampling/sampling_logp_difference/max": 6.7188310623168945,
555
+ "sampling/sampling_logp_difference/mean": 0.32469046115875244,
556
+ "step": 52
557
+ },
558
+ {
559
+ "clip_ratio/high_max": 0.19921875,
560
+ "clip_ratio/high_mean": 0.11376953125,
561
+ "clip_ratio/low_mean": 0.23583984375,
562
+ "clip_ratio/low_min": 0.125,
563
+ "clip_ratio/region_mean": 0.349609375,
564
+ "completions/clipped_ratio": 0.0,
565
+ "completions/max_length": 430.0,
566
+ "completions/max_terminated_length": 430.0,
567
+ "completions/mean_length": 287.13720703125,
568
+ "completions/mean_terminated_length": 287.13720703125,
569
+ "completions/min_length": 182.0,
570
+ "completions/min_terminated_length": 182.0,
571
+ "entropy": 0.8433509171009064,
572
+ "epoch": 0.6666666666666666,
573
+ "frac_reward_zero_std": 0.0,
574
+ "grad_norm": 0.05898959934711456,
575
+ "learning_rate": 1e-05,
576
+ "loss": 0.0,
577
+ "num_tokens": 35955809.0,
578
+ "reward": 3.7203783988952637,
579
+ "reward_std": 0.17166642844676971,
580
+ "rewards/ngram_repetition2/mean": 0.9761325716972351,
581
+ "rewards/ngram_repetition2/std": 0.011715667322278023,
582
+ "rewards/ngram_repetition3/mean": 0.9974805116653442,
583
+ "rewards/ngram_repetition3/std": 0.003850888693705201,
584
+ "rewards/symbolic_reward_accuracy/mean": 0.8662109375,
585
+ "rewards/symbolic_reward_accuracy/std": 0.34050869941711426,
586
+ "rewards/symbolic_reward_partial_score/mean": 0.9586181640625,
587
+ "rewards/symbolic_reward_partial_score/std": 0.11637341976165771,
588
+ "rewards/tag_count_reward/mean": 1.0,
589
+ "rewards/tag_count_reward/std": 0.0,
590
+ "rewards/thinking_answer_ratio_reward/mean": 0.9602200984954834,
591
+ "rewards/thinking_answer_ratio_reward/std": 0.009219513274729252,
592
+ "sampling/importance_sampling_ratio/max": 2.0,
593
+ "sampling/importance_sampling_ratio/mean": 1.259500503540039,
594
+ "sampling/importance_sampling_ratio/min": 0.00019177240028511733,
595
+ "sampling/sampling_logp_difference/max": 8.55920124053955,
596
+ "sampling/sampling_logp_difference/mean": 0.34136319160461426,
597
+ "step": 56
598
+ },
599
+ {
600
+ "clip_ratio/high_max": 0.1875,
601
+ "clip_ratio/high_mean": 0.1015625,
602
+ "clip_ratio/low_mean": 0.24365234375,
603
+ "clip_ratio/low_min": 0.12890625,
604
+ "clip_ratio/region_mean": 0.34521484375,
605
+ "completions/clipped_ratio": 0.0,
606
+ "completions/max_length": 469.0,
607
+ "completions/max_terminated_length": 469.0,
608
+ "completions/mean_length": 288.99072265625,
609
+ "completions/mean_terminated_length": 288.99072265625,
610
+ "completions/min_length": 182.0,
611
+ "completions/min_terminated_length": 182.0,
612
+ "entropy": 0.892413392663002,
613
+ "epoch": 0.7142857142857143,
614
+ "frac_reward_zero_std": 0.0,
615
+ "grad_norm": 0.05464347451925278,
616
+ "learning_rate": 1e-05,
617
+ "loss": 0.0005,
618
+ "num_tokens": 38384750.0,
619
+ "reward": 3.728700637817383,
620
+ "reward_std": 0.14373056590557098,
621
+ "rewards/ngram_repetition2/mean": 0.9769801497459412,
622
+ "rewards/ngram_repetition2/std": 0.011434270069003105,
623
+ "rewards/ngram_repetition3/mean": 0.9978038668632507,
624
+ "rewards/ngram_repetition3/std": 0.0036320064682513475,
625
+ "rewards/symbolic_reward_accuracy/mean": 0.87060546875,
626
+ "rewards/symbolic_reward_accuracy/std": 0.3357180655002594,
627
+ "rewards/symbolic_reward_partial_score/mean": 0.9581298828125,
628
+ "rewards/symbolic_reward_partial_score/std": 0.11856843531131744,
629
+ "rewards/tag_count_reward/mean": 1.0,
630
+ "rewards/tag_count_reward/std": 0.0,
631
+ "rewards/thinking_answer_ratio_reward/mean": 0.9612185955047607,
632
+ "rewards/thinking_answer_ratio_reward/std": 0.009071115404367447,
633
+ "sampling/importance_sampling_ratio/max": 2.0,
634
+ "sampling/importance_sampling_ratio/mean": 1.2778643369674683,
635
+ "sampling/importance_sampling_ratio/min": 0.001577620510943234,
636
+ "sampling/sampling_logp_difference/max": 6.451837539672852,
637
+ "sampling/sampling_logp_difference/mean": 0.3597729802131653,
638
+ "step": 60
639
+ },
640
+ {
641
+ "clip_ratio/high_max": 0.23046875,
642
+ "clip_ratio/high_mean": 0.10693359375,
643
+ "clip_ratio/low_mean": 0.24462890625,
644
+ "clip_ratio/low_min": 0.11328125,
645
+ "clip_ratio/region_mean": 0.3515625,
646
+ "completions/clipped_ratio": 0.00146484375,
647
+ "completions/max_length": 3072.0,
648
+ "completions/max_terminated_length": 414.0,
649
+ "completions/mean_length": 287.26806640625,
650
+ "completions/mean_terminated_length": 283.1828918457031,
651
+ "completions/min_length": 180.0,
652
+ "completions/min_terminated_length": 180.0,
653
+ "entropy": 0.9810461550951004,
654
+ "epoch": 0.7619047619047619,
655
+ "frac_reward_zero_std": 0.0,
656
+ "grad_norm": 0.06930692493915558,
657
+ "learning_rate": 1e-05,
658
+ "loss": 0.0042,
659
+ "num_tokens": 40800819.0,
660
+ "reward": 3.598151683807373,
661
+ "reward_std": 0.17825113236904144,
662
+ "rewards/ngram_repetition2/mean": 0.9757882952690125,
663
+ "rewards/ngram_repetition2/std": 0.011011338792741299,
664
+ "rewards/ngram_repetition3/mean": 0.997752845287323,
665
+ "rewards/ngram_repetition3/std": 0.0035420055501163006,
666
+ "rewards/symbolic_reward_accuracy/mean": 0.814453125,
667
+ "rewards/symbolic_reward_accuracy/std": 0.38883551955223083,
668
+ "rewards/symbolic_reward_partial_score/mean": 0.9406331181526184,
669
+ "rewards/symbolic_reward_partial_score/std": 0.14368508756160736,
670
+ "rewards/tag_count_reward/mean": 0.999267578125,
671
+ "rewards/tag_count_reward/std": 0.019127286970615387,
672
+ "rewards/thinking_answer_ratio_reward/mean": 0.9609147310256958,
673
+ "rewards/thinking_answer_ratio_reward/std": 0.03739883750677109,
674
+ "sampling/importance_sampling_ratio/max": 2.0,
675
+ "sampling/importance_sampling_ratio/mean": 1.2963650226593018,
676
+ "sampling/importance_sampling_ratio/min": 0.0003925914643332362,
677
+ "sampling/sampling_logp_difference/max": 7.842741012573242,
678
+ "sampling/sampling_logp_difference/mean": 0.37864184379577637,
679
+ "step": 64
680
+ },
681
+ {
682
+ "clip_ratio/high_max": 0.140625,
683
+ "clip_ratio/high_mean": 0.06494140625,
684
+ "clip_ratio/low_mean": 0.28662109375,
685
+ "clip_ratio/low_min": 0.1640625,
686
+ "clip_ratio/region_mean": 0.3515625,
687
+ "completions/clipped_ratio": 0.0,
688
+ "completions/max_length": 462.0,
689
+ "completions/max_terminated_length": 462.0,
690
+ "completions/mean_length": 286.521484375,
691
+ "completions/mean_terminated_length": 286.521484375,
692
+ "completions/min_length": 168.0,
693
+ "completions/min_terminated_length": 168.0,
694
+ "entropy": 1.0116581320762634,
695
+ "epoch": 0.8095238095238095,
696
+ "frac_reward_zero_std": 0.0,
697
+ "grad_norm": 0.050855811685323715,
698
+ "learning_rate": 1e-05,
699
+ "loss": 0.0003,
700
+ "num_tokens": 43193663.0,
701
+ "reward": 3.882843494415283,
702
+ "reward_std": 0.035406049340963364,
703
+ "rewards/ngram_repetition2/mean": 0.9764049053192139,
704
+ "rewards/ngram_repetition2/std": 0.01124592125415802,
705
+ "rewards/ngram_repetition3/mean": 0.9978073835372925,
706
+ "rewards/ngram_repetition3/std": 0.0034347528126090765,
707
+ "rewards/symbolic_reward_accuracy/mean": 0.93408203125,
708
+ "rewards/symbolic_reward_accuracy/std": 0.2481992542743683,
709
+ "rewards/symbolic_reward_partial_score/mean": 0.9853108525276184,
710
+ "rewards/symbolic_reward_partial_score/std": 0.05851730331778526,
711
+ "rewards/tag_count_reward/mean": 1.0,
712
+ "rewards/tag_count_reward/std": 0.0,
713
+ "rewards/thinking_answer_ratio_reward/mean": 0.9626501798629761,
714
+ "rewards/thinking_answer_ratio_reward/std": 0.006846116855740547,
715
+ "sampling/importance_sampling_ratio/max": 2.0,
716
+ "sampling/importance_sampling_ratio/mean": 1.3146123886108398,
717
+ "sampling/importance_sampling_ratio/min": 0.0005279523902572691,
718
+ "sampling/sampling_logp_difference/max": 7.546504497528076,
719
+ "sampling/sampling_logp_difference/mean": 0.39858800172805786,
720
+ "step": 68
721
+ },
722
+ {
723
+ "clip_ratio/high_max": 0.2265625,
724
+ "clip_ratio/high_mean": 0.12109375,
725
+ "clip_ratio/low_mean": 0.24951171875,
726
+ "clip_ratio/low_min": 0.12890625,
727
+ "clip_ratio/region_mean": 0.37060546875,
728
+ "completions/clipped_ratio": 0.0,
729
+ "completions/max_length": 491.0,
730
+ "completions/max_terminated_length": 491.0,
731
+ "completions/mean_length": 294.37060546875,
732
+ "completions/mean_terminated_length": 294.37060546875,
733
+ "completions/min_length": 180.0,
734
+ "completions/min_terminated_length": 180.0,
735
+ "entropy": 1.132740594446659,
736
+ "epoch": 0.8571428571428571,
737
+ "frac_reward_zero_std": 0.0,
738
+ "grad_norm": 0.066042959690094,
739
+ "learning_rate": 1e-05,
740
+ "loss": 0.0021,
741
+ "num_tokens": 45636310.0,
742
+ "reward": 3.707709789276123,
743
+ "reward_std": 0.08106810599565506,
744
+ "rewards/ngram_repetition2/mean": 0.9696463346481323,
745
+ "rewards/ngram_repetition2/std": 0.014249228872358799,
746
+ "rewards/ngram_repetition3/mean": 0.9962953329086304,
747
+ "rewards/ngram_repetition3/std": 0.005218631587922573,
748
+ "rewards/symbolic_reward_accuracy/mean": 0.86328125,
749
+ "rewards/symbolic_reward_accuracy/std": 0.34363409876823425,
750
+ "rewards/symbolic_reward_partial_score/mean": 0.9518636465072632,
751
+ "rewards/symbolic_reward_partial_score/std": 0.1330701857805252,
752
+ "rewards/tag_count_reward/mean": 1.0,
753
+ "rewards/tag_count_reward/std": 0.0,
754
+ "rewards/thinking_answer_ratio_reward/mean": 0.9624096751213074,
755
+ "rewards/thinking_answer_ratio_reward/std": 0.008981175720691681,
756
+ "sampling/importance_sampling_ratio/max": 2.0,
757
+ "sampling/importance_sampling_ratio/mean": 1.3442730903625488,
758
+ "sampling/importance_sampling_ratio/min": 0.0022706298623234034,
759
+ "sampling/sampling_logp_difference/max": 6.087697982788086,
760
+ "sampling/sampling_logp_difference/mean": 0.4308692216873169,
761
+ "step": 72
762
+ },
763
+ {
764
+ "clip_ratio/high_max": 0.171875,
765
+ "clip_ratio/high_mean": 0.07421875,
766
+ "clip_ratio/low_mean": 0.24853515625,
767
+ "clip_ratio/low_min": 0.1171875,
768
+ "clip_ratio/region_mean": 0.32275390625,
769
+ "completions/clipped_ratio": 0.0009765625,
770
+ "completions/max_length": 3072.0,
771
+ "completions/max_terminated_length": 566.0,
772
+ "completions/mean_length": 298.833984375,
773
+ "completions/mean_terminated_length": 296.1231689453125,
774
+ "completions/min_length": 176.0,
775
+ "completions/min_terminated_length": 176.0,
776
+ "entropy": 1.1593250632286072,
777
+ "epoch": 0.9047619047619048,
778
+ "frac_reward_zero_std": 0.0,
779
+ "grad_norm": 0.07082995772361755,
780
+ "learning_rate": 1e-05,
781
+ "loss": 0.0055,
782
+ "num_tokens": 48059586.0,
783
+ "reward": 3.8371598720550537,
784
+ "reward_std": 0.05605494976043701,
785
+ "rewards/ngram_repetition2/mean": 0.9693177938461304,
786
+ "rewards/ngram_repetition2/std": 0.015271971002221107,
787
+ "rewards/ngram_repetition3/mean": 0.9960181713104248,
788
+ "rewards/ngram_repetition3/std": 0.006110348738729954,
789
+ "rewards/symbolic_reward_accuracy/mean": 0.91796875,
790
+ "rewards/symbolic_reward_accuracy/std": 0.27447932958602905,
791
+ "rewards/symbolic_reward_partial_score/mean": 0.9724527597427368,
792
+ "rewards/symbolic_reward_partial_score/std": 0.10404884815216064,
793
+ "rewards/tag_count_reward/mean": 0.99951171875,
794
+ "rewards/tag_count_reward/std": 0.015621182508766651,
795
+ "rewards/thinking_answer_ratio_reward/mean": 0.9604611992835999,
796
+ "rewards/thinking_answer_ratio_reward/std": 0.03180825710296631,
797
+ "sampling/importance_sampling_ratio/max": 2.0,
798
+ "sampling/importance_sampling_ratio/mean": 1.350536584854126,
799
+ "sampling/importance_sampling_ratio/min": 0.0011175222462043166,
800
+ "sampling/sampling_logp_difference/max": 6.7966413497924805,
801
+ "sampling/sampling_logp_difference/mean": 0.4359755218029022,
802
+ "step": 76
803
+ },
804
+ {
805
+ "clip_ratio/high_max": 0.22265625,
806
+ "clip_ratio/high_mean": 0.1142578125,
807
+ "clip_ratio/low_mean": 0.22119140625,
808
+ "clip_ratio/low_min": 0.09375,
809
+ "clip_ratio/region_mean": 0.33544921875,
810
+ "completions/clipped_ratio": 0.0009765625,
811
+ "completions/max_length": 3072.0,
812
+ "completions/max_terminated_length": 490.0,
813
+ "completions/mean_length": 302.49365234375,
814
+ "completions/mean_terminated_length": 299.7864074707031,
815
+ "completions/min_length": 163.0,
816
+ "completions/min_terminated_length": 163.0,
817
+ "entropy": 1.2683400809764862,
818
+ "epoch": 0.9523809523809523,
819
+ "frac_reward_zero_std": 0.0,
820
+ "grad_norm": 0.05979188159108162,
821
+ "learning_rate": 1e-05,
822
+ "loss": 0.0054,
823
+ "num_tokens": 50487189.0,
824
+ "reward": 3.8846912384033203,
825
+ "reward_std": 0.12184189260005951,
826
+ "rewards/ngram_repetition2/mean": 0.9656546115875244,
827
+ "rewards/ngram_repetition2/std": 0.01537134125828743,
828
+ "rewards/ngram_repetition3/mean": 0.995905876159668,
829
+ "rewards/ngram_repetition3/std": 0.005492487922310829,
830
+ "rewards/symbolic_reward_accuracy/mean": 0.93701171875,
831
+ "rewards/symbolic_reward_accuracy/std": 0.24300122261047363,
832
+ "rewards/symbolic_reward_partial_score/mean": 0.98193359375,
833
+ "rewards/symbolic_reward_partial_score/std": 0.0880974605679512,
834
+ "rewards/tag_count_reward/mean": 0.99951171875,
835
+ "rewards/tag_count_reward/std": 0.015621182508766651,
836
+ "rewards/thinking_answer_ratio_reward/mean": 0.9606635570526123,
837
+ "rewards/thinking_answer_ratio_reward/std": 0.032527752220630646,
838
+ "sampling/importance_sampling_ratio/max": 2.0,
839
+ "sampling/importance_sampling_ratio/mean": 1.3736423254013062,
840
+ "sampling/importance_sampling_ratio/min": 3.4236355070382807e-12,
841
+ "sampling/sampling_logp_difference/max": 26.400318145751953,
842
+ "sampling/sampling_logp_difference/mean": 0.46326184272766113,
843
+ "step": 80
844
+ },
845
+ {
846
+ "clip_ratio/high_max": 0.17578125,
847
+ "clip_ratio/high_mean": 0.087890625,
848
+ "clip_ratio/low_mean": 0.2724609375,
849
+ "clip_ratio/low_min": 0.15625,
850
+ "clip_ratio/region_mean": 0.3603515625,
851
+ "completions/clipped_ratio": 0.0,
852
+ "completions/max_length": 498.0,
853
+ "completions/max_terminated_length": 498.0,
854
+ "completions/mean_length": 304.1044921875,
855
+ "completions/mean_terminated_length": 304.1044921875,
856
+ "completions/min_length": 173.0,
857
+ "completions/min_terminated_length": 173.0,
858
+ "entropy": 1.2831775099039078,
859
+ "epoch": 1.0,
860
+ "frac_reward_zero_std": 0.0,
861
+ "grad_norm": 0.05425618216395378,
862
+ "learning_rate": 1e-05,
863
+ "loss": 0.0019,
864
+ "num_tokens": 52986987.0,
865
+ "reward": 3.9170305728912354,
866
+ "reward_std": 0.060697440057992935,
867
+ "rewards/ngram_repetition2/mean": 0.965947151184082,
868
+ "rewards/ngram_repetition2/std": 0.014219055883586407,
869
+ "rewards/ngram_repetition3/mean": 0.9961841702461243,
870
+ "rewards/ngram_repetition3/std": 0.005091497208923101,
871
+ "rewards/symbolic_reward_accuracy/mean": 0.95166015625,
872
+ "rewards/symbolic_reward_accuracy/std": 0.21453572809696198,
873
+ "rewards/symbolic_reward_partial_score/mean": 0.9844564199447632,
874
+ "rewards/symbolic_reward_partial_score/std": 0.07733123749494553,
875
+ "rewards/tag_count_reward/mean": 1.0,
876
+ "rewards/tag_count_reward/std": 0.0,
877
+ "rewards/thinking_answer_ratio_reward/mean": 0.9632632732391357,
878
+ "rewards/thinking_answer_ratio_reward/std": 0.008934850804507732,
879
+ "sampling/importance_sampling_ratio/max": 2.0,
880
+ "sampling/importance_sampling_ratio/mean": 1.3828954696655273,
881
+ "sampling/importance_sampling_ratio/min": 6.9070331676357455e-09,
882
+ "sampling/sampling_logp_difference/max": 18.790725708007812,
883
+ "sampling/sampling_logp_difference/mean": 0.46976035833358765,
884
+ "step": 84
885
+ },
886
+ {
887
+ "epoch": 1.0,
888
+ "eval_clip_ratio/high_max": 0.0,
889
+ "eval_clip_ratio/high_mean": 0.0,
890
+ "eval_clip_ratio/low_mean": 0.0,
891
+ "eval_clip_ratio/low_min": 0.0,
892
+ "eval_clip_ratio/region_mean": 0.0,
893
+ "eval_completions/clipped_ratio": 0.0,
894
+ "eval_completions/max_length": 437.8421052631579,
895
+ "eval_completions/max_terminated_length": 437.8421052631579,
896
+ "eval_completions/mean_length": 312.72286184210526,
897
+ "eval_completions/mean_terminated_length": 312.72286184210526,
898
+ "eval_completions/min_length": 207.52631578947367,
899
+ "eval_completions/min_terminated_length": 207.52631578947367,
900
+ "eval_entropy": 1.3218948276419389,
901
+ "eval_frac_reward_zero_std": 0.0,
902
+ "eval_loss": 0.00022543604427482933,
903
+ "eval_num_tokens": 52986987.0,
904
+ "eval_reward": 3.807651005293194,
905
+ "eval_reward_std": 0.168629709851781,
906
+ "eval_rewards/ngram_repetition2/mean": 0.961865462754902,
907
+ "eval_rewards/ngram_repetition2/std": 0.014227556211775854,
908
+ "eval_rewards/ngram_repetition3/mean": 0.9952163006130018,
909
+ "eval_rewards/ngram_repetition3/std": 0.004750296277435203,
910
+ "eval_rewards/symbolic_reward_accuracy/mean": 0.90625,
911
+ "eval_rewards/symbolic_reward_accuracy/std": 0.2370802113100102,
912
+ "eval_rewards/symbolic_reward_partial_score/mean": 0.9659745065789473,
913
+ "eval_rewards/symbolic_reward_partial_score/std": 0.09205205454245995,
914
+ "eval_rewards/tag_count_reward/mean": 1.0,
915
+ "eval_rewards/tag_count_reward/std": 0.0,
916
+ "eval_rewards/thinking_answer_ratio_reward/mean": 0.9605719666731986,
917
+ "eval_rewards/thinking_answer_ratio_reward/std": 0.01121363438371765,
918
+ "eval_runtime": 423.2341,
919
+ "eval_samples_per_second": 0.354,
920
+ "eval_sampling/importance_sampling_ratio/max": 2.0,
921
+ "eval_sampling/importance_sampling_ratio/mean": 1.392908353554575,
922
+ "eval_sampling/importance_sampling_ratio/min": 0.0026607212291585376,
923
+ "eval_sampling/sampling_logp_difference/max": 7.379827775453267,
924
+ "eval_sampling/sampling_logp_difference/mean": 0.4819344439004597,
925
+ "eval_steps_per_second": 0.005,
926
+ "step": 84
927
+ },
928
+ {
929
+ "clip_ratio/high_max": 0.2421875,
930
+ "clip_ratio/high_mean": 0.13232421875,
931
+ "clip_ratio/low_mean": 0.255859375,
932
+ "clip_ratio/low_min": 0.13671875,
933
+ "clip_ratio/region_mean": 0.38818359375,
934
+ "completions/clipped_ratio": 0.0,
935
+ "completions/max_length": 486.0,
936
+ "completions/max_terminated_length": 486.0,
937
+ "completions/mean_length": 311.048828125,
938
+ "completions/mean_terminated_length": 311.048828125,
939
+ "completions/min_length": 186.0,
940
+ "completions/min_terminated_length": 186.0,
941
+ "entropy": 1.3394631668925285,
942
+ "epoch": 1.0476190476190477,
943
+ "frac_reward_zero_std": 0.0,
944
+ "grad_norm": 0.050926946103572845,
945
+ "learning_rate": 1e-05,
946
+ "loss": 0.0015,
947
+ "num_tokens": 55457935.0,
948
+ "reward": 3.749323844909668,
949
+ "reward_std": 0.11920632421970367,
950
+ "rewards/ngram_repetition2/mean": 0.9640907049179077,
951
+ "rewards/ngram_repetition2/std": 0.013935322873294353,
952
+ "rewards/ngram_repetition3/mean": 0.9960398077964783,
953
+ "rewards/ngram_repetition3/std": 0.0044942288659513,
954
+ "rewards/symbolic_reward_accuracy/mean": 0.876953125,
955
+ "rewards/symbolic_reward_accuracy/std": 0.32857123017311096,
956
+ "rewards/symbolic_reward_partial_score/mean": 0.9661865234375,
957
+ "rewards/symbolic_reward_partial_score/std": 0.10201738774776459,
958
+ "rewards/tag_count_reward/mean": 1.0,
959
+ "rewards/tag_count_reward/std": 0.0,
960
+ "rewards/thinking_answer_ratio_reward/mean": 0.9629674553871155,
961
+ "rewards/thinking_answer_ratio_reward/std": 0.009922855533659458,
962
+ "sampling/importance_sampling_ratio/max": 2.0,
963
+ "sampling/importance_sampling_ratio/mean": 1.3947930335998535,
964
+ "sampling/importance_sampling_ratio/min": 1.1835306068519458e-09,
965
+ "sampling/sampling_logp_difference/max": 20.554763793945312,
966
+ "sampling/sampling_logp_difference/mean": 0.4833507537841797,
967
+ "step": 88
968
+ },
969
+ {
970
+ "clip_ratio/high_max": 0.19140625,
971
+ "clip_ratio/high_mean": 0.09814453125,
972
+ "clip_ratio/low_mean": 0.27685546875,
973
+ "clip_ratio/low_min": 0.15234375,
974
+ "clip_ratio/region_mean": 0.375,
975
+ "completions/clipped_ratio": 0.0009765625,
976
+ "completions/max_length": 3072.0,
977
+ "completions/max_terminated_length": 477.0,
978
+ "completions/mean_length": 309.70361328125,
979
+ "completions/mean_terminated_length": 307.00341796875,
980
+ "completions/min_length": 191.0,
981
+ "completions/min_terminated_length": 191.0,
982
+ "entropy": 1.365867592394352,
983
+ "epoch": 1.0952380952380953,
984
+ "frac_reward_zero_std": 0.0,
985
+ "grad_norm": 0.050299327820539474,
986
+ "learning_rate": 1e-05,
987
+ "loss": 0.0053,
988
+ "num_tokens": 57938000.0,
989
+ "reward": 3.8700785636901855,
990
+ "reward_std": 0.055703483521938324,
991
+ "rewards/ngram_repetition2/mean": 0.9664497375488281,
992
+ "rewards/ngram_repetition2/std": 0.01341775618493557,
993
+ "rewards/ngram_repetition3/mean": 0.9965437650680542,
994
+ "rewards/ngram_repetition3/std": 0.004179587122052908,
995
+ "rewards/symbolic_reward_accuracy/mean": 0.9296875,
996
+ "rewards/symbolic_reward_accuracy/std": 0.2557353675365448,
997
+ "rewards/symbolic_reward_partial_score/mean": 0.98193359375,
998
+ "rewards/symbolic_reward_partial_score/std": 0.07467525452375412,
999
+ "rewards/tag_count_reward/mean": 0.99951171875,
1000
+ "rewards/tag_count_reward/std": 0.015621182508766651,
1001
+ "rewards/thinking_answer_ratio_reward/mean": 0.9628340601921082,
1002
+ "rewards/thinking_answer_ratio_reward/std": 0.03138146176934242,
1003
+ "sampling/importance_sampling_ratio/max": 2.0,
1004
+ "sampling/importance_sampling_ratio/mean": 1.397605538368225,
1005
+ "sampling/importance_sampling_ratio/min": 3.21872563324721e-11,
1006
+ "sampling/sampling_logp_difference/max": 24.15945053100586,
1007
+ "sampling/sampling_logp_difference/mean": 0.49306315183639526,
1008
+ "step": 92
1009
+ },
1010
+ {
1011
+ "clip_ratio/high_max": 0.17578125,
1012
+ "clip_ratio/high_mean": 0.08984375,
1013
+ "clip_ratio/low_mean": 0.29541015625,
1014
+ "clip_ratio/low_min": 0.171875,
1015
+ "clip_ratio/region_mean": 0.38525390625,
1016
+ "completions/clipped_ratio": 0.0,
1017
+ "completions/max_length": 474.0,
1018
+ "completions/max_terminated_length": 474.0,
1019
+ "completions/mean_length": 324.9814453125,
1020
+ "completions/mean_terminated_length": 324.9814453125,
1021
+ "completions/min_length": 186.0,
1022
+ "completions/min_terminated_length": 186.0,
1023
+ "entropy": 1.4058298990130424,
1024
+ "epoch": 1.1428571428571428,
1025
+ "frac_reward_zero_std": 0.0,
1026
+ "grad_norm": 0.06967155635356903,
1027
+ "learning_rate": 1e-05,
1028
+ "loss": 0.0021,
1029
+ "num_tokens": 60416266.0,
1030
+ "reward": 3.8939476013183594,
1031
+ "reward_std": 0.05917710065841675,
1032
+ "rewards/ngram_repetition2/mean": 0.9656116962432861,
1033
+ "rewards/ngram_repetition2/std": 0.013012575916945934,
1034
+ "rewards/ngram_repetition3/mean": 0.9965729117393494,
1035
+ "rewards/ngram_repetition3/std": 0.0041229212656617165,
1036
+ "rewards/symbolic_reward_accuracy/mean": 0.9423828125,
1037
+ "rewards/symbolic_reward_accuracy/std": 0.23307503759860992,
1038
+ "rewards/symbolic_reward_partial_score/mean": 0.9798990488052368,
1039
+ "rewards/symbolic_reward_partial_score/std": 0.09529523551464081,
1040
+ "rewards/tag_count_reward/mean": 1.0,
1041
+ "rewards/tag_count_reward/std": 0.0,
1042
+ "rewards/thinking_answer_ratio_reward/mean": 0.9661376476287842,
1043
+ "rewards/thinking_answer_ratio_reward/std": 0.007734327111393213,
1044
+ "sampling/importance_sampling_ratio/max": 2.0,
1045
+ "sampling/importance_sampling_ratio/mean": 1.407299518585205,
1046
+ "sampling/importance_sampling_ratio/min": 0.0021590718533843756,
1047
+ "sampling/sampling_logp_difference/max": 6.1380767822265625,
1048
+ "sampling/sampling_logp_difference/mean": 0.5017811059951782,
1049
+ "step": 96
1050
+ },
1051
+ {
1052
+ "clip_ratio/high_max": 0.12890625,
1053
+ "clip_ratio/high_mean": 0.0595703125,
1054
+ "clip_ratio/low_mean": 0.30810546875,
1055
+ "clip_ratio/low_min": 0.1875,
1056
+ "clip_ratio/region_mean": 0.36767578125,
1057
+ "completions/clipped_ratio": 0.0,
1058
+ "completions/max_length": 513.0,
1059
+ "completions/max_terminated_length": 513.0,
1060
+ "completions/mean_length": 332.615234375,
1061
+ "completions/mean_terminated_length": 332.615234375,
1062
+ "completions/min_length": 187.0,
1063
+ "completions/min_terminated_length": 187.0,
1064
+ "entropy": 1.47202467918396,
1065
+ "epoch": 1.1904761904761905,
1066
+ "frac_reward_zero_std": 0.0,
1067
+ "grad_norm": 0.07687471061944962,
1068
+ "learning_rate": 1e-05,
1069
+ "loss": 0.0022,
1070
+ "num_tokens": 62884182.0,
1071
+ "reward": 3.7261898517608643,
1072
+ "reward_std": 0.08603204041719437,
1073
+ "rewards/ngram_repetition2/mean": 0.962227463722229,
1074
+ "rewards/ngram_repetition2/std": 0.013661311008036137,
1075
+ "rewards/ngram_repetition3/mean": 0.9959136247634888,
1076
+ "rewards/ngram_repetition3/std": 0.004227799363434315,
1077
+ "rewards/symbolic_reward_accuracy/mean": 0.8671875,
1078
+ "rewards/symbolic_reward_accuracy/std": 0.33945485949516296,
1079
+ "rewards/symbolic_reward_partial_score/mean": 0.9625650644302368,
1080
+ "rewards/symbolic_reward_partial_score/std": 0.1090090274810791,
1081
+ "rewards/tag_count_reward/mean": 1.0,
1082
+ "rewards/tag_count_reward/std": 0.0,
1083
+ "rewards/thinking_answer_ratio_reward/mean": 0.9668258428573608,
1084
+ "rewards/thinking_answer_ratio_reward/std": 0.007831486873328686,
1085
+ "sampling/importance_sampling_ratio/max": 2.0,
1086
+ "sampling/importance_sampling_ratio/mean": 1.4201319217681885,
1087
+ "sampling/importance_sampling_ratio/min": 0.00016027815581765026,
1088
+ "sampling/sampling_logp_difference/max": 8.73859977722168,
1089
+ "sampling/sampling_logp_difference/mean": 0.5191107392311096,
1090
+ "step": 100
1091
+ },
1092
+ {
1093
+ "clip_ratio/high_max": 0.11328125,
1094
+ "clip_ratio/high_mean": 0.05224609375,
1095
+ "clip_ratio/low_mean": 0.31005859375,
1096
+ "clip_ratio/low_min": 0.15625,
1097
+ "clip_ratio/region_mean": 0.3623046875,
1098
+ "completions/clipped_ratio": 0.0,
1099
+ "completions/max_length": 586.0,
1100
+ "completions/max_terminated_length": 586.0,
1101
+ "completions/mean_length": 352.5576171875,
1102
+ "completions/mean_terminated_length": 352.5576171875,
1103
+ "completions/min_length": 197.0,
1104
+ "completions/min_terminated_length": 197.0,
1105
+ "entropy": 1.5019978284835815,
1106
+ "epoch": 1.2380952380952381,
1107
+ "frac_reward_zero_std": 0.0,
1108
+ "grad_norm": 0.08184507489204407,
1109
+ "learning_rate": 1e-05,
1110
+ "loss": 0.0038,
1111
+ "num_tokens": 65438860.0,
1112
+ "reward": 3.8091237545013428,
1113
+ "reward_std": 0.08657659590244293,
1114
+ "rewards/ngram_repetition2/mean": 0.9608925580978394,
1115
+ "rewards/ngram_repetition2/std": 0.013776077888906002,
1116
+ "rewards/ngram_repetition3/mean": 0.9957015514373779,
1117
+ "rewards/ngram_repetition3/std": 0.004236322361975908,
1118
+ "rewards/symbolic_reward_accuracy/mean": 0.90234375,
1119
+ "rewards/symbolic_reward_accuracy/std": 0.2969217896461487,
1120
+ "rewards/symbolic_reward_partial_score/mean": 0.9751790761947632,
1121
+ "rewards/symbolic_reward_partial_score/std": 0.07810740172863007,
1122
+ "rewards/tag_count_reward/mean": 1.0,
1123
+ "rewards/tag_count_reward/std": 0.0,
1124
+ "rewards/thinking_answer_ratio_reward/mean": 0.9691292643547058,
1125
+ "rewards/thinking_answer_ratio_reward/std": 0.007102734409272671,
1126
+ "sampling/importance_sampling_ratio/max": 2.0,
1127
+ "sampling/importance_sampling_ratio/mean": 1.4305992126464844,
1128
+ "sampling/importance_sampling_ratio/min": 5.72370809095446e-05,
1129
+ "sampling/sampling_logp_difference/max": 9.768308639526367,
1130
+ "sampling/sampling_logp_difference/mean": 0.5295636057853699,
1131
+ "step": 104
1132
+ },
1133
+ {
1134
+ "clip_ratio/high_max": 0.14453125,
1135
+ "clip_ratio/high_mean": 0.068359375,
1136
+ "clip_ratio/low_mean": 0.263671875,
1137
+ "clip_ratio/low_min": 0.13671875,
1138
+ "clip_ratio/region_mean": 0.33203125,
1139
+ "completions/clipped_ratio": 0.0,
1140
+ "completions/max_length": 535.0,
1141
+ "completions/max_terminated_length": 535.0,
1142
+ "completions/mean_length": 354.79345703125,
1143
+ "completions/mean_terminated_length": 354.79345703125,
1144
+ "completions/min_length": 144.0,
1145
+ "completions/min_terminated_length": 144.0,
1146
+ "entropy": 1.5520799160003662,
1147
+ "epoch": 1.2857142857142856,
1148
+ "frac_reward_zero_std": 0.0,
1149
+ "grad_norm": 0.1121075302362442,
1150
+ "learning_rate": 1e-05,
1151
+ "loss": 0.0041,
1152
+ "num_tokens": 68023781.0,
1153
+ "reward": 3.847431182861328,
1154
+ "reward_std": 0.08936133980751038,
1155
+ "rewards/ngram_repetition2/mean": 0.9565550088882446,
1156
+ "rewards/ngram_repetition2/std": 0.015181444585323334,
1157
+ "rewards/ngram_repetition3/mean": 0.9949396848678589,
1158
+ "rewards/ngram_repetition3/std": 0.004793631378561258,
1159
+ "rewards/symbolic_reward_accuracy/mean": 0.92041015625,
1160
+ "rewards/symbolic_reward_accuracy/std": 0.27072325348854065,
1161
+ "rewards/symbolic_reward_partial_score/mean": 0.9776611328125,
1162
+ "rewards/symbolic_reward_partial_score/std": 0.09112773835659027,
1163
+ "rewards/tag_count_reward/mean": 0.999755859375,
1164
+ "rewards/tag_count_reward/std": 0.011048543266952038,
1165
+ "rewards/thinking_answer_ratio_reward/mean": 0.9678950309753418,
1166
+ "rewards/thinking_answer_ratio_reward/std": 0.022913049906492233,
1167
+ "sampling/importance_sampling_ratio/max": 2.0,
1168
+ "sampling/importance_sampling_ratio/mean": 1.4402625560760498,
1169
+ "sampling/importance_sampling_ratio/min": 6.558643690368626e-06,
1170
+ "sampling/sampling_logp_difference/max": 11.93472671508789,
1171
+ "sampling/sampling_logp_difference/mean": 0.541069746017456,
1172
+ "step": 108
1173
+ },
1174
+ {
1175
+ "clip_ratio/high_max": 0.1484375,
1176
+ "clip_ratio/high_mean": 0.068359375,
1177
+ "clip_ratio/low_mean": 0.26953125,
1178
+ "clip_ratio/low_min": 0.15234375,
1179
+ "clip_ratio/region_mean": 0.337890625,
1180
+ "completions/clipped_ratio": 0.0,
1181
+ "completions/max_length": 509.0,
1182
+ "completions/max_terminated_length": 509.0,
1183
+ "completions/mean_length": 334.44384765625,
1184
+ "completions/mean_terminated_length": 334.44384765625,
1185
+ "completions/min_length": 163.0,
1186
+ "completions/min_terminated_length": 163.0,
1187
+ "entropy": 1.5340367630124092,
1188
+ "epoch": 1.3333333333333333,
1189
+ "frac_reward_zero_std": 0.0,
1190
+ "grad_norm": 0.08651846647262573,
1191
+ "learning_rate": 1e-05,
1192
+ "loss": 0.0032,
1193
+ "num_tokens": 70484050.0,
1194
+ "reward": 3.858900785446167,
1195
+ "reward_std": 0.04411323368549347,
1196
+ "rewards/ngram_repetition2/mean": 0.9606438875198364,
1197
+ "rewards/ngram_repetition2/std": 0.01436516921967268,
1198
+ "rewards/ngram_repetition3/mean": 0.995490550994873,
1199
+ "rewards/ngram_repetition3/std": 0.004695704206824303,
1200
+ "rewards/symbolic_reward_accuracy/mean": 0.92333984375,
1201
+ "rewards/symbolic_reward_accuracy/std": 0.2661164402961731,
1202
+ "rewards/symbolic_reward_partial_score/mean": 0.9829915165901184,
1203
+ "rewards/symbolic_reward_partial_score/std": 0.06513792276382446,
1204
+ "rewards/tag_count_reward/mean": 1.0,
1205
+ "rewards/tag_count_reward/std": 0.0,
1206
+ "rewards/thinking_answer_ratio_reward/mean": 0.966830313205719,
1207
+ "rewards/thinking_answer_ratio_reward/std": 0.007882185280323029,
1208
+ "sampling/importance_sampling_ratio/max": 2.0,
1209
+ "sampling/importance_sampling_ratio/mean": 1.4405858516693115,
1210
+ "sampling/importance_sampling_ratio/min": 0.00030129292281344533,
1211
+ "sampling/sampling_logp_difference/max": 8.107427597045898,
1212
+ "sampling/sampling_logp_difference/mean": 0.5405493974685669,
1213
+ "step": 112
1214
+ },
1215
+ {
1216
+ "clip_ratio/high_max": 0.16015625,
1217
+ "clip_ratio/high_mean": 0.072265625,
1218
+ "clip_ratio/low_mean": 0.283203125,
1219
+ "clip_ratio/low_min": 0.15234375,
1220
+ "clip_ratio/region_mean": 0.35546875,
1221
+ "completions/clipped_ratio": 0.0,
1222
+ "completions/max_length": 550.0,
1223
+ "completions/max_terminated_length": 550.0,
1224
+ "completions/mean_length": 347.263671875,
1225
+ "completions/mean_terminated_length": 347.263671875,
1226
+ "completions/min_length": 159.0,
1227
+ "completions/min_terminated_length": 159.0,
1228
+ "entropy": 1.6167370453476906,
1229
+ "epoch": 1.380952380952381,
1230
+ "frac_reward_zero_std": 0.0,
1231
+ "grad_norm": 0.1051953062415123,
1232
+ "learning_rate": 1e-05,
1233
+ "loss": 0.0045,
1234
+ "num_tokens": 73007790.0,
1235
+ "reward": 3.867628574371338,
1236
+ "reward_std": 0.04132593050599098,
1237
+ "rewards/ngram_repetition2/mean": 0.9570583701133728,
1238
+ "rewards/ngram_repetition2/std": 0.014389286749064922,
1239
+ "rewards/ngram_repetition3/mean": 0.9954445362091064,
1240
+ "rewards/ngram_repetition3/std": 0.004455200862139463,
1241
+ "rewards/symbolic_reward_accuracy/mean": 0.9296875,
1242
+ "rewards/symbolic_reward_accuracy/std": 0.2557353675365448,
1243
+ "rewards/symbolic_reward_partial_score/mean": 0.9790445566177368,
1244
+ "rewards/symbolic_reward_partial_score/std": 0.08579050749540329,
1245
+ "rewards/tag_count_reward/mean": 1.0,
1246
+ "rewards/tag_count_reward/std": 0.0,
1247
+ "rewards/thinking_answer_ratio_reward/mean": 0.9683747291564941,
1248
+ "rewards/thinking_answer_ratio_reward/std": 0.007507936097681522,
1249
+ "sampling/importance_sampling_ratio/max": 2.0,
1250
+ "sampling/importance_sampling_ratio/mean": 1.455453872680664,
1251
+ "sampling/importance_sampling_ratio/min": 6.147195108496817e-08,
1252
+ "sampling/sampling_logp_difference/max": 16.604684829711914,
1253
+ "sampling/sampling_logp_difference/mean": 0.561433732509613,
1254
+ "step": 116
1255
+ },
1256
+ {
1257
+ "clip_ratio/high_max": 0.1171875,
1258
+ "clip_ratio/high_mean": 0.05029296875,
1259
+ "clip_ratio/low_mean": 0.306640625,
1260
+ "clip_ratio/low_min": 0.1796875,
1261
+ "clip_ratio/region_mean": 0.35693359375,
1262
+ "completions/clipped_ratio": 0.0,
1263
+ "completions/max_length": 565.0,
1264
+ "completions/max_terminated_length": 565.0,
1265
+ "completions/mean_length": 359.7197265625,
1266
+ "completions/mean_terminated_length": 359.7197265625,
1267
+ "completions/min_length": 181.0,
1268
+ "completions/min_terminated_length": 181.0,
1269
+ "entropy": 1.664498396217823,
1270
+ "epoch": 1.4285714285714286,
1271
+ "frac_reward_zero_std": 0.0,
1272
+ "grad_norm": 0.08962584286928177,
1273
+ "learning_rate": 1e-05,
1274
+ "loss": 0.0057,
1275
+ "num_tokens": 75565264.0,
1276
+ "reward": 3.8777501583099365,
1277
+ "reward_std": 0.04693379998207092,
1278
+ "rewards/ngram_repetition2/mean": 0.9551849961280823,
1279
+ "rewards/ngram_repetition2/std": 0.01518841739743948,
1280
+ "rewards/ngram_repetition3/mean": 0.9952660799026489,
1281
+ "rewards/ngram_repetition3/std": 0.0045869555324316025,
1282
+ "rewards/symbolic_reward_accuracy/mean": 0.93359375,
1283
+ "rewards/symbolic_reward_accuracy/std": 0.24905169010162354,
1284
+ "rewards/symbolic_reward_partial_score/mean": 0.9816080331802368,
1285
+ "rewards/symbolic_reward_partial_score/std": 0.07948367297649384,
1286
+ "rewards/tag_count_reward/mean": 0.999755859375,
1287
+ "rewards/tag_count_reward/std": 0.011048543266952038,
1288
+ "rewards/thinking_answer_ratio_reward/mean": 0.9694327116012573,
1289
+ "rewards/thinking_answer_ratio_reward/std": 0.02234593965113163,
1290
+ "sampling/importance_sampling_ratio/max": 2.0,
1291
+ "sampling/importance_sampling_ratio/mean": 1.4626634120941162,
1292
+ "sampling/importance_sampling_ratio/min": 0.0012032584054395556,
1293
+ "sampling/sampling_logp_difference/max": 6.722722053527832,
1294
+ "sampling/sampling_logp_difference/mean": 0.571152925491333,
1295
+ "step": 120
1296
+ },
1297
+ {
1298
+ "clip_ratio/high_max": 0.15234375,
1299
+ "clip_ratio/high_mean": 0.07080078125,
1300
+ "clip_ratio/low_mean": 0.29541015625,
1301
+ "clip_ratio/low_min": 0.1796875,
1302
+ "clip_ratio/region_mean": 0.3662109375,
1303
+ "completions/clipped_ratio": 0.0,
1304
+ "completions/max_length": 603.0,
1305
+ "completions/max_terminated_length": 603.0,
1306
+ "completions/mean_length": 367.48046875,
1307
+ "completions/mean_terminated_length": 367.48046875,
1308
+ "completions/min_length": 160.0,
1309
+ "completions/min_terminated_length": 160.0,
1310
+ "entropy": 1.703298144042492,
1311
+ "epoch": 1.4761904761904763,
1312
+ "frac_reward_zero_std": 0.0,
1313
+ "grad_norm": 0.114425890147686,
1314
+ "learning_rate": 1e-05,
1315
+ "loss": 0.0068,
1316
+ "num_tokens": 78163976.0,
1317
+ "reward": 3.6791064739227295,
1318
+ "reward_std": 0.11728330701589584,
1319
+ "rewards/ngram_repetition2/mean": 0.9517308473587036,
1320
+ "rewards/ngram_repetition2/std": 0.016181044280529022,
1321
+ "rewards/ngram_repetition3/mean": 0.9945051074028015,
1322
+ "rewards/ngram_repetition3/std": 0.004997564479708672,
1323
+ "rewards/symbolic_reward_accuracy/mean": 0.8505859375,
1324
+ "rewards/symbolic_reward_accuracy/std": 0.35658320784568787,
1325
+ "rewards/symbolic_reward_partial_score/mean": 0.9487711191177368,
1326
+ "rewards/symbolic_reward_partial_score/std": 0.1491239219903946,
1327
+ "rewards/tag_count_reward/mean": 1.0,
1328
+ "rewards/tag_count_reward/std": 0.0,
1329
+ "rewards/thinking_answer_ratio_reward/mean": 0.970108687877655,
1330
+ "rewards/thinking_answer_ratio_reward/std": 0.00691350968554616,
1331
+ "sampling/importance_sampling_ratio/max": 2.0,
1332
+ "sampling/importance_sampling_ratio/mean": 1.47133207321167,
1333
+ "sampling/importance_sampling_ratio/min": 0.0017549983458593488,
1334
+ "sampling/sampling_logp_difference/max": 6.345287322998047,
1335
+ "sampling/sampling_logp_difference/mean": 0.5865588784217834,
1336
+ "step": 124
1337
+ },
1338
+ {
1339
+ "clip_ratio/high_max": 0.0859375,
1340
+ "clip_ratio/high_mean": 0.0400390625,
1341
+ "clip_ratio/low_mean": 0.29833984375,
1342
+ "clip_ratio/low_min": 0.19140625,
1343
+ "clip_ratio/region_mean": 0.33837890625,
1344
+ "completions/clipped_ratio": 0.0,
1345
+ "completions/max_length": 626.0,
1346
+ "completions/max_terminated_length": 626.0,
1347
+ "completions/mean_length": 372.03515625,
1348
+ "completions/mean_terminated_length": 372.03515625,
1349
+ "completions/min_length": 184.0,
1350
+ "completions/min_terminated_length": 184.0,
1351
+ "entropy": 1.7273126989603043,
1352
+ "epoch": 1.5238095238095237,
1353
+ "frac_reward_zero_std": 0.0,
1354
+ "grad_norm": 0.09851213544607162,
1355
+ "learning_rate": 1e-05,
1356
+ "loss": 0.0081,
1357
+ "num_tokens": 80753328.0,
1358
+ "reward": 3.826509475708008,
1359
+ "reward_std": 0.05608430877327919,
1360
+ "rewards/ngram_repetition2/mean": 0.9504142999649048,
1361
+ "rewards/ngram_repetition2/std": 0.01682715304195881,
1362
+ "rewards/ngram_repetition3/mean": 0.9940425753593445,
1363
+ "rewards/ngram_repetition3/std": 0.005228669848293066,
1364
+ "rewards/symbolic_reward_accuracy/mean": 0.91357421875,
1365
+ "rewards/symbolic_reward_accuracy/std": 0.2810603678226471,
1366
+ "rewards/symbolic_reward_partial_score/mean": 0.970458984375,
1367
+ "rewards/symbolic_reward_partial_score/std": 0.1112869530916214,
1368
+ "rewards/tag_count_reward/mean": 0.999755859375,
1369
+ "rewards/tag_count_reward/std": 0.011048543266952038,
1370
+ "rewards/thinking_answer_ratio_reward/mean": 0.9701868295669556,
1371
+ "rewards/thinking_answer_ratio_reward/std": 0.007006238214671612,
1372
+ "sampling/importance_sampling_ratio/max": 2.0,
1373
+ "sampling/importance_sampling_ratio/mean": 1.474413514137268,
1374
+ "sampling/importance_sampling_ratio/min": 0.002049426781013608,
1375
+ "sampling/sampling_logp_difference/max": 6.190195083618164,
1376
+ "sampling/sampling_logp_difference/mean": 0.5897567868232727,
1377
+ "step": 128
1378
+ },
1379
+ {
1380
+ "clip_ratio/high_max": 0.1015625,
1381
+ "clip_ratio/high_mean": 0.03515625,
1382
+ "clip_ratio/low_mean": 0.3115234375,
1383
+ "clip_ratio/low_min": 0.17578125,
1384
+ "clip_ratio/region_mean": 0.3466796875,
1385
+ "completions/clipped_ratio": 0.0,
1386
+ "completions/max_length": 628.0,
1387
+ "completions/max_terminated_length": 628.0,
1388
+ "completions/mean_length": 364.0087890625,
1389
+ "completions/mean_terminated_length": 364.0087890625,
1390
+ "completions/min_length": 181.0,
1391
+ "completions/min_terminated_length": 181.0,
1392
+ "entropy": 1.7212177067995071,
1393
+ "epoch": 1.5714285714285714,
1394
+ "frac_reward_zero_std": 0.0,
1395
+ "grad_norm": 0.10181765258312225,
1396
+ "learning_rate": 1e-05,
1397
+ "loss": 0.0066,
1398
+ "num_tokens": 83292354.0,
1399
+ "reward": 3.813551425933838,
1400
+ "reward_std": 0.07873611152172089,
1401
+ "rewards/ngram_repetition2/mean": 0.9500588178634644,
1402
+ "rewards/ngram_repetition2/std": 0.016752546653151512,
1403
+ "rewards/ngram_repetition3/mean": 0.9937365055084229,
1404
+ "rewards/ngram_repetition3/std": 0.00556135643273592,
1405
+ "rewards/symbolic_reward_accuracy/mean": 0.9072265625,
1406
+ "rewards/symbolic_reward_accuracy/std": 0.2901855409145355,
1407
+ "rewards/symbolic_reward_partial_score/mean": 0.969970703125,
1408
+ "rewards/symbolic_reward_partial_score/std": 0.1166658028960228,
1409
+ "rewards/tag_count_reward/mean": 1.0,
1410
+ "rewards/tag_count_reward/std": 0.0,
1411
+ "rewards/thinking_answer_ratio_reward/mean": 0.9689657688140869,
1412
+ "rewards/thinking_answer_ratio_reward/std": 0.0076606557704508305,
1413
+ "sampling/importance_sampling_ratio/max": 2.0,
1414
+ "sampling/importance_sampling_ratio/mean": 1.4771678447723389,
1415
+ "sampling/importance_sampling_ratio/min": 1.5947607607813552e-05,
1416
+ "sampling/sampling_logp_difference/max": 11.046201705932617,
1417
+ "sampling/sampling_logp_difference/mean": 0.597915768623352,
1418
+ "step": 132
1419
+ },
1420
+ {
1421
+ "clip_ratio/high_max": 0.10546875,
1422
+ "clip_ratio/high_mean": 0.04150390625,
1423
+ "clip_ratio/low_mean": 0.30908203125,
1424
+ "clip_ratio/low_min": 0.19921875,
1425
+ "clip_ratio/region_mean": 0.3505859375,
1426
+ "completions/clipped_ratio": 0.0,
1427
+ "completions/max_length": 647.0,
1428
+ "completions/max_terminated_length": 647.0,
1429
+ "completions/mean_length": 380.59423828125,
1430
+ "completions/mean_terminated_length": 380.59423828125,
1431
+ "completions/min_length": 205.0,
1432
+ "completions/min_terminated_length": 205.0,
1433
+ "entropy": 1.7492975443601608,
1434
+ "epoch": 1.619047619047619,
1435
+ "frac_reward_zero_std": 0.0,
1436
+ "grad_norm": 0.10864487290382385,
1437
+ "learning_rate": 1e-05,
1438
+ "loss": 0.0077,
1439
+ "num_tokens": 85970979.0,
1440
+ "reward": 3.789088249206543,
1441
+ "reward_std": 0.0549209825694561,
1442
+ "rewards/ngram_repetition2/mean": 0.9480582475662231,
1443
+ "rewards/ngram_repetition2/std": 0.016496751457452774,
1444
+ "rewards/ngram_repetition3/mean": 0.9930194616317749,
1445
+ "rewards/ngram_repetition3/std": 0.005672322120517492,
1446
+ "rewards/symbolic_reward_accuracy/mean": 0.8994140625,
1447
+ "rewards/symbolic_reward_accuracy/std": 0.3008531332015991,
1448
+ "rewards/symbolic_reward_partial_score/mean": 0.9611409306526184,
1449
+ "rewards/symbolic_reward_partial_score/std": 0.14185626804828644,
1450
+ "rewards/tag_count_reward/mean": 1.0,
1451
+ "rewards/tag_count_reward/std": 0.0,
1452
+ "rewards/thinking_answer_ratio_reward/mean": 0.9708449244499207,
1453
+ "rewards/thinking_answer_ratio_reward/std": 0.006850030273199081,
1454
+ "sampling/importance_sampling_ratio/max": 2.0,
1455
+ "sampling/importance_sampling_ratio/mean": 1.4822736978530884,
1456
+ "sampling/importance_sampling_ratio/min": 0.00023519470414612442,
1457
+ "sampling/sampling_logp_difference/max": 8.355096817016602,
1458
+ "sampling/sampling_logp_difference/mean": 0.6033132076263428,
1459
+ "step": 136
1460
+ },
1461
+ {
1462
+ "clip_ratio/high_max": 0.0859375,
1463
+ "clip_ratio/high_mean": 0.029296875,
1464
+ "clip_ratio/low_mean": 0.32568359375,
1465
+ "clip_ratio/low_min": 0.21484375,
1466
+ "clip_ratio/region_mean": 0.35498046875,
1467
+ "completions/clipped_ratio": 0.0,
1468
+ "completions/max_length": 600.0,
1469
+ "completions/max_terminated_length": 600.0,
1470
+ "completions/mean_length": 379.244140625,
1471
+ "completions/mean_terminated_length": 379.244140625,
1472
+ "completions/min_length": 195.0,
1473
+ "completions/min_terminated_length": 195.0,
1474
+ "entropy": 1.7215231880545616,
1475
+ "epoch": 1.6666666666666665,
1476
+ "frac_reward_zero_std": 0.0,
1477
+ "grad_norm": 0.14609399437904358,
1478
+ "learning_rate": 1e-05,
1479
+ "loss": 0.0058,
1480
+ "num_tokens": 88531543.0,
1481
+ "reward": 3.8612782955169678,
1482
+ "reward_std": 0.0853937491774559,
1483
+ "rewards/ngram_repetition2/mean": 0.9484306573867798,
1484
+ "rewards/ngram_repetition2/std": 0.015672912821173668,
1485
+ "rewards/ngram_repetition3/mean": 0.9929347038269043,
1486
+ "rewards/ngram_repetition3/std": 0.0058286660350859165,
1487
+ "rewards/symbolic_reward_accuracy/mean": 0.93310546875,
1488
+ "rewards/symbolic_reward_accuracy/std": 0.24990026652812958,
1489
+ "rewards/symbolic_reward_partial_score/mean": 0.9659423828125,
1490
+ "rewards/symbolic_reward_partial_score/std": 0.14673763513565063,
1491
+ "rewards/tag_count_reward/mean": 1.0,
1492
+ "rewards/tag_count_reward/std": 0.0,
1493
+ "rewards/thinking_answer_ratio_reward/mean": 0.9711217880249023,
1494
+ "rewards/thinking_answer_ratio_reward/std": 0.006088613532483578,
1495
+ "sampling/importance_sampling_ratio/max": 2.0,
1496
+ "sampling/importance_sampling_ratio/mean": 1.4805660247802734,
1497
+ "sampling/importance_sampling_ratio/min": 2.7732114631362492e-06,
1498
+ "sampling/sampling_logp_difference/max": 12.795504570007324,
1499
+ "sampling/sampling_logp_difference/mean": 0.5990421772003174,
1500
+ "step": 140
1501
+ },
1502
+ {
1503
+ "clip_ratio/high_max": 0.1484375,
1504
+ "clip_ratio/high_mean": 0.06201171875,
1505
+ "clip_ratio/low_mean": 0.28369140625,
1506
+ "clip_ratio/low_min": 0.16015625,
1507
+ "clip_ratio/region_mean": 0.345703125,
1508
+ "completions/clipped_ratio": 0.0,
1509
+ "completions/max_length": 594.0,
1510
+ "completions/max_terminated_length": 594.0,
1511
+ "completions/mean_length": 367.521484375,
1512
+ "completions/mean_terminated_length": 367.521484375,
1513
+ "completions/min_length": 206.0,
1514
+ "completions/min_terminated_length": 206.0,
1515
+ "entropy": 1.7308146506547928,
1516
+ "epoch": 1.7142857142857144,
1517
+ "frac_reward_zero_std": 0.0,
1518
+ "grad_norm": 0.08718156069517136,
1519
+ "learning_rate": 1e-05,
1520
+ "loss": 0.006,
1521
+ "num_tokens": 91102787.0,
1522
+ "reward": 3.8670616149902344,
1523
+ "reward_std": 0.047201357781887054,
1524
+ "rewards/ngram_repetition2/mean": 0.9467041492462158,
1525
+ "rewards/ngram_repetition2/std": 0.016446510329842567,
1526
+ "rewards/ngram_repetition3/mean": 0.9924731254577637,
1527
+ "rewards/ngram_repetition3/std": 0.006107911933213472,
1528
+ "rewards/symbolic_reward_accuracy/mean": 0.927734375,
1529
+ "rewards/symbolic_reward_accuracy/std": 0.25899046659469604,
1530
+ "rewards/symbolic_reward_partial_score/mean": 0.9825032353401184,
1531
+ "rewards/symbolic_reward_partial_score/std": 0.07203861325979233,
1532
+ "rewards/tag_count_reward/mean": 1.0,
1533
+ "rewards/tag_count_reward/std": 0.0,
1534
+ "rewards/thinking_answer_ratio_reward/mean": 0.9697957634925842,
1535
+ "rewards/thinking_answer_ratio_reward/std": 0.007489646319299936,
1536
+ "sampling/importance_sampling_ratio/max": 2.0,
1537
+ "sampling/importance_sampling_ratio/mean": 1.4847468137741089,
1538
+ "sampling/importance_sampling_ratio/min": 0.001990552293136716,
1539
+ "sampling/sampling_logp_difference/max": 6.219343185424805,
1540
+ "sampling/sampling_logp_difference/mean": 0.6064555048942566,
1541
+ "step": 144
1542
+ },
1543
+ {
1544
+ "clip_ratio/high_max": 0.1640625,
1545
+ "clip_ratio/high_mean": 0.08203125,
1546
+ "clip_ratio/low_mean": 0.26611328125,
1547
+ "clip_ratio/low_min": 0.125,
1548
+ "clip_ratio/region_mean": 0.34814453125,
1549
+ "completions/clipped_ratio": 0.0,
1550
+ "completions/max_length": 605.0,
1551
+ "completions/max_terminated_length": 605.0,
1552
+ "completions/mean_length": 376.55615234375,
1553
+ "completions/mean_terminated_length": 376.55615234375,
1554
+ "completions/min_length": 190.0,
1555
+ "completions/min_terminated_length": 190.0,
1556
+ "entropy": 1.7707895785570145,
1557
+ "epoch": 1.7619047619047619,
1558
+ "frac_reward_zero_std": 0.0,
1559
+ "grad_norm": 0.10629850625991821,
1560
+ "learning_rate": 1e-05,
1561
+ "loss": 0.0042,
1562
+ "num_tokens": 93708054.0,
1563
+ "reward": 3.8587303161621094,
1564
+ "reward_std": 0.16579969227313995,
1565
+ "rewards/ngram_repetition2/mean": 0.9476821422576904,
1566
+ "rewards/ngram_repetition2/std": 0.015965020284056664,
1567
+ "rewards/ngram_repetition3/mean": 0.9930981993675232,
1568
+ "rewards/ngram_repetition3/std": 0.005606223829090595,
1569
+ "rewards/symbolic_reward_accuracy/mean": 0.9296875,
1570
+ "rewards/symbolic_reward_accuracy/std": 0.2557353675365448,
1571
+ "rewards/symbolic_reward_partial_score/mean": 0.9702554941177368,
1572
+ "rewards/symbolic_reward_partial_score/std": 0.1312272697687149,
1573
+ "rewards/tag_count_reward/mean": 1.0,
1574
+ "rewards/tag_count_reward/std": 0.0,
1575
+ "rewards/thinking_answer_ratio_reward/mean": 0.9691884517669678,
1576
+ "rewards/thinking_answer_ratio_reward/std": 0.013018821366131306,
1577
+ "sampling/importance_sampling_ratio/max": 2.0,
1578
+ "sampling/importance_sampling_ratio/mean": 1.4982185363769531,
1579
+ "sampling/importance_sampling_ratio/min": 0.0010142651153728366,
1580
+ "sampling/sampling_logp_difference/max": 6.893590927124023,
1581
+ "sampling/sampling_logp_difference/mean": 0.6270837783813477,
1582
+ "step": 148
1583
+ },
1584
+ {
1585
+ "clip_ratio/high_max": 0.13671875,
1586
+ "clip_ratio/high_mean": 0.05419921875,
1587
+ "clip_ratio/low_mean": 0.30078125,
1588
+ "clip_ratio/low_min": 0.15234375,
1589
+ "clip_ratio/region_mean": 0.35498046875,
1590
+ "completions/clipped_ratio": 0.0,
1591
+ "completions/max_length": 586.0,
1592
+ "completions/max_terminated_length": 586.0,
1593
+ "completions/mean_length": 362.5859375,
1594
+ "completions/mean_terminated_length": 362.5859375,
1595
+ "completions/min_length": 203.0,
1596
+ "completions/min_terminated_length": 203.0,
1597
+ "entropy": 1.767895646393299,
1598
+ "epoch": 1.8095238095238095,
1599
+ "frac_reward_zero_std": 0.0,
1600
+ "grad_norm": 0.09717681258916855,
1601
+ "learning_rate": 1e-05,
1602
+ "loss": 0.0033,
1603
+ "num_tokens": 96295942.0,
1604
+ "reward": 3.8618547916412354,
1605
+ "reward_std": 0.061989087611436844,
1606
+ "rewards/ngram_repetition2/mean": 0.9507569074630737,
1607
+ "rewards/ngram_repetition2/std": 0.015048976056277752,
1608
+ "rewards/ngram_repetition3/mean": 0.993833065032959,
1609
+ "rewards/ngram_repetition3/std": 0.005530180875211954,
1610
+ "rewards/symbolic_reward_accuracy/mean": 0.9267578125,
1611
+ "rewards/symbolic_reward_accuracy/std": 0.26059725880622864,
1612
+ "rewards/symbolic_reward_partial_score/mean": 0.9792073369026184,
1613
+ "rewards/symbolic_reward_partial_score/std": 0.08610634505748749,
1614
+ "rewards/tag_count_reward/mean": 1.0,
1615
+ "rewards/tag_count_reward/std": 0.0,
1616
+ "rewards/thinking_answer_ratio_reward/mean": 0.9685899019241333,
1617
+ "rewards/thinking_answer_ratio_reward/std": 0.006216762121766806,
1618
+ "sampling/importance_sampling_ratio/max": 2.0,
1619
+ "sampling/importance_sampling_ratio/mean": 1.5025081634521484,
1620
+ "sampling/importance_sampling_ratio/min": 5.1178951252950355e-05,
1621
+ "sampling/sampling_logp_difference/max": 9.880182266235352,
1622
+ "sampling/sampling_logp_difference/mean": 0.6323176622390747,
1623
+ "step": 152
1624
+ },
1625
+ {
1626
+ "clip_ratio/high_max": 0.16015625,
1627
+ "clip_ratio/high_mean": 0.0771484375,
1628
+ "clip_ratio/low_mean": 0.2802734375,
1629
+ "clip_ratio/low_min": 0.16015625,
1630
+ "clip_ratio/region_mean": 0.357421875,
1631
+ "completions/clipped_ratio": 0.0,
1632
+ "completions/max_length": 559.0,
1633
+ "completions/max_terminated_length": 559.0,
1634
+ "completions/mean_length": 366.6572265625,
1635
+ "completions/mean_terminated_length": 366.6572265625,
1636
+ "completions/min_length": 83.0,
1637
+ "completions/min_terminated_length": 83.0,
1638
+ "entropy": 1.791026197373867,
1639
+ "epoch": 1.8571428571428572,
1640
+ "frac_reward_zero_std": 0.0,
1641
+ "grad_norm": 0.09605922549962997,
1642
+ "learning_rate": 1e-05,
1643
+ "loss": 0.0037,
1644
+ "num_tokens": 98858760.0,
1645
+ "reward": 3.8958053588867188,
1646
+ "reward_std": 0.14521583914756775,
1647
+ "rewards/ngram_repetition2/mean": 0.9516223669052124,
1648
+ "rewards/ngram_repetition2/std": 0.014798388816416264,
1649
+ "rewards/ngram_repetition3/mean": 0.9940202236175537,
1650
+ "rewards/ngram_repetition3/std": 0.005294241476804018,
1651
+ "rewards/symbolic_reward_accuracy/mean": 0.9443359375,
1652
+ "rewards/symbolic_reward_accuracy/std": 0.22932782769203186,
1653
+ "rewards/symbolic_reward_partial_score/mean": 0.9779866337776184,
1654
+ "rewards/symbolic_reward_partial_score/std": 0.10208848118782043,
1655
+ "rewards/tag_count_reward/mean": 1.0,
1656
+ "rewards/tag_count_reward/std": 0.0,
1657
+ "rewards/thinking_answer_ratio_reward/mean": 0.9690417051315308,
1658
+ "rewards/thinking_answer_ratio_reward/std": 0.006724427919834852,
1659
+ "sampling/importance_sampling_ratio/max": 2.0,
1660
+ "sampling/importance_sampling_ratio/mean": 1.5027318000793457,
1661
+ "sampling/importance_sampling_ratio/min": 0.001545182429254055,
1662
+ "sampling/sampling_logp_difference/max": 6.472613334655762,
1663
+ "sampling/sampling_logp_difference/mean": 0.6329264640808105,
1664
+ "step": 156
1665
+ },
1666
+ {
1667
+ "clip_ratio/high_max": 0.16015625,
1668
+ "clip_ratio/high_mean": 0.06298828125,
1669
+ "clip_ratio/low_mean": 0.29931640625,
1670
+ "clip_ratio/low_min": 0.16796875,
1671
+ "clip_ratio/region_mean": 0.3623046875,
1672
+ "completions/clipped_ratio": 0.0,
1673
+ "completions/max_length": 598.0,
1674
+ "completions/max_terminated_length": 598.0,
1675
+ "completions/mean_length": 392.0107421875,
1676
+ "completions/mean_terminated_length": 392.0107421875,
1677
+ "completions/min_length": 228.0,
1678
+ "completions/min_terminated_length": 228.0,
1679
+ "entropy": 1.7721411362290382,
1680
+ "epoch": 1.9047619047619047,
1681
+ "frac_reward_zero_std": 0.0,
1682
+ "grad_norm": 0.10836534202098846,
1683
+ "learning_rate": 1e-05,
1684
+ "loss": 0.0051,
1685
+ "num_tokens": 101483006.0,
1686
+ "reward": 3.9561607837677,
1687
+ "reward_std": 0.0488056018948555,
1688
+ "rewards/ngram_repetition2/mean": 0.9511752128601074,
1689
+ "rewards/ngram_repetition2/std": 0.014944043941795826,
1690
+ "rewards/ngram_repetition3/mean": 0.9939863085746765,
1691
+ "rewards/ngram_repetition3/std": 0.005151876714080572,
1692
+ "rewards/symbolic_reward_accuracy/mean": 0.96728515625,
1693
+ "rewards/symbolic_reward_accuracy/std": 0.17793269455432892,
1694
+ "rewards/symbolic_reward_partial_score/mean": 0.992431640625,
1695
+ "rewards/symbolic_reward_partial_score/std": 0.04925445467233658,
1696
+ "rewards/tag_count_reward/mean": 1.0,
1697
+ "rewards/tag_count_reward/std": 0.0,
1698
+ "rewards/thinking_answer_ratio_reward/mean": 0.9707227945327759,
1699
+ "rewards/thinking_answer_ratio_reward/std": 0.006023992318660021,
1700
+ "sampling/importance_sampling_ratio/max": 2.0,
1701
+ "sampling/importance_sampling_ratio/mean": 1.5052523612976074,
1702
+ "sampling/importance_sampling_ratio/min": 0.0011821264633908868,
1703
+ "sampling/sampling_logp_difference/max": 6.740440368652344,
1704
+ "sampling/sampling_logp_difference/mean": 0.6356411576271057,
1705
+ "step": 160
1706
+ },
1707
+ {
1708
+ "clip_ratio/high_max": 0.0859375,
1709
+ "clip_ratio/high_mean": 0.0302734375,
1710
+ "clip_ratio/low_mean": 0.31298828125,
1711
+ "clip_ratio/low_min": 0.171875,
1712
+ "clip_ratio/region_mean": 0.34326171875,
1713
+ "completions/clipped_ratio": 0.0,
1714
+ "completions/max_length": 598.0,
1715
+ "completions/max_terminated_length": 598.0,
1716
+ "completions/mean_length": 383.38427734375,
1717
+ "completions/mean_terminated_length": 383.38427734375,
1718
+ "completions/min_length": 46.0,
1719
+ "completions/min_terminated_length": 46.0,
1720
+ "entropy": 1.8137650862336159,
1721
+ "epoch": 1.9523809523809523,
1722
+ "frac_reward_zero_std": 0.0,
1723
+ "grad_norm": 0.21898648142814636,
1724
+ "learning_rate": 1e-05,
1725
+ "loss": 0.0041,
1726
+ "num_tokens": 104089105.0,
1727
+ "reward": 3.929980754852295,
1728
+ "reward_std": 0.06001705303788185,
1729
+ "rewards/ngram_repetition2/mean": 0.9539239406585693,
1730
+ "rewards/ngram_repetition2/std": 0.014461600221693516,
1731
+ "rewards/ngram_repetition3/mean": 0.9946612119674683,
1732
+ "rewards/ngram_repetition3/std": 0.004792888183146715,
1733
+ "rewards/symbolic_reward_accuracy/mean": 0.95654296875,
1734
+ "rewards/symbolic_reward_accuracy/std": 0.20393338799476624,
1735
+ "rewards/symbolic_reward_partial_score/mean": 0.9879556894302368,
1736
+ "rewards/symbolic_reward_partial_score/std": 0.07069577276706696,
1737
+ "rewards/tag_count_reward/mean": 0.999755859375,
1738
+ "rewards/tag_count_reward/std": 0.011048543266952038,
1739
+ "rewards/thinking_answer_ratio_reward/mean": 0.9697635173797607,
1740
+ "rewards/thinking_answer_ratio_reward/std": 0.022018132731318474,
1741
+ "sampling/importance_sampling_ratio/max": 2.0,
1742
+ "sampling/importance_sampling_ratio/mean": 1.5047733783721924,
1743
+ "sampling/importance_sampling_ratio/min": 0.0021326851565390825,
1744
+ "sampling/sampling_logp_difference/max": 6.150373458862305,
1745
+ "sampling/sampling_logp_difference/mean": 0.6389479637145996,
1746
+ "step": 164
1747
+ },
1748
+ {
1749
+ "clip_ratio/high_max": 0.03125,
1750
+ "clip_ratio/high_mean": 0.00732421875,
1751
+ "clip_ratio/low_mean": 0.3271484375,
1752
+ "clip_ratio/low_min": 0.19140625,
1753
+ "clip_ratio/region_mean": 0.33447265625,
1754
+ "completions/clipped_ratio": 0.0,
1755
+ "completions/max_length": 612.0,
1756
+ "completions/max_terminated_length": 612.0,
1757
+ "completions/mean_length": 395.89501953125,
1758
+ "completions/mean_terminated_length": 395.89501953125,
1759
+ "completions/min_length": 224.0,
1760
+ "completions/min_terminated_length": 224.0,
1761
+ "entropy": 1.8114138692617416,
1762
+ "epoch": 2.0,
1763
+ "frac_reward_zero_std": 0.0,
1764
+ "grad_norm": 0.1692064255475998,
1765
+ "learning_rate": 1e-05,
1766
+ "loss": 0.0046,
1767
+ "num_tokens": 106675066.0,
1768
+ "reward": 3.9362592697143555,
1769
+ "reward_std": 0.06057881936430931,
1770
+ "rewards/ngram_repetition2/mean": 0.9569206833839417,
1771
+ "rewards/ngram_repetition2/std": 0.013300254940986633,
1772
+ "rewards/ngram_repetition3/mean": 0.9952021241188049,
1773
+ "rewards/ngram_repetition3/std": 0.004495474975556135,
1774
+ "rewards/symbolic_reward_accuracy/mean": 0.95947265625,
1775
+ "rewards/symbolic_reward_accuracy/std": 0.1972406506538391,
1776
+ "rewards/symbolic_reward_partial_score/mean": 0.9880777597427368,
1777
+ "rewards/symbolic_reward_partial_score/std": 0.07768868654966354,
1778
+ "rewards/tag_count_reward/mean": 1.0,
1779
+ "rewards/tag_count_reward/std": 0.0,
1780
+ "rewards/thinking_answer_ratio_reward/mean": 0.9714963436126709,
1781
+ "rewards/thinking_answer_ratio_reward/std": 0.0055397688411176205,
1782
+ "sampling/importance_sampling_ratio/max": 2.0,
1783
+ "sampling/importance_sampling_ratio/mean": 1.506116509437561,
1784
+ "sampling/importance_sampling_ratio/min": 0.001569847809150815,
1785
+ "sampling/sampling_logp_difference/max": 6.4567766189575195,
1786
+ "sampling/sampling_logp_difference/mean": 0.6404174566268921,
1787
+ "step": 168
1788
+ },
1789
+ {
1790
+ "epoch": 2.0,
1791
+ "eval_clip_ratio/high_max": 0.0,
1792
+ "eval_clip_ratio/high_mean": 0.0,
1793
+ "eval_clip_ratio/low_mean": 0.0,
1794
+ "eval_clip_ratio/low_min": 0.0,
1795
+ "eval_clip_ratio/region_mean": 0.0,
1796
+ "eval_completions/clipped_ratio": 0.0,
1797
+ "eval_completions/max_length": 678.8947368421053,
1798
+ "eval_completions/max_terminated_length": 678.8947368421053,
1799
+ "eval_completions/mean_length": 428.8622532894737,
1800
+ "eval_completions/mean_terminated_length": 428.8622532894737,
1801
+ "eval_completions/min_length": 293.6842105263158,
1802
+ "eval_completions/min_terminated_length": 293.6842105263158,
1803
+ "eval_entropy": 1.8865187983763845,
1804
+ "eval_frac_reward_zero_std": 0.0,
1805
+ "eval_loss": 0.0013121640076860785,
1806
+ "eval_num_tokens": 106675066.0,
1807
+ "eval_reward": 3.922859505603188,
1808
+ "eval_reward_std": 0.12427335997697235,
1809
+ "eval_rewards/ngram_repetition2/mean": 0.9468266618879217,
1810
+ "eval_rewards/ngram_repetition2/std": 0.017048097411660773,
1811
+ "eval_rewards/ngram_repetition3/mean": 0.9923422650287026,
1812
+ "eval_rewards/ngram_repetition3/std": 0.008230763512026323,
1813
+ "eval_rewards/symbolic_reward_accuracy/mean": 0.9547697368421053,
1814
+ "eval_rewards/symbolic_reward_accuracy/std": 0.14237226741878609,
1815
+ "eval_rewards/symbolic_reward_partial_score/mean": 0.9857113455471239,
1816
+ "eval_rewards/symbolic_reward_partial_score/std": 0.059331425465643406,
1817
+ "eval_rewards/tag_count_reward/mean": 0.9985608552631579,
1818
+ "eval_rewards/tag_count_reward/std": 0.01490654286585356,
1819
+ "eval_rewards/thinking_answer_ratio_reward/mean": 0.9656107896252683,
1820
+ "eval_rewards/thinking_answer_ratio_reward/std": 0.042114860623290666,
1821
+ "eval_runtime": 491.5378,
1822
+ "eval_samples_per_second": 0.305,
1823
+ "eval_sampling/importance_sampling_ratio/max": 2.0,
1824
+ "eval_sampling/importance_sampling_ratio/mean": 1.520386018251118,
1825
+ "eval_sampling/importance_sampling_ratio/min": 0.003561224910969797,
1826
+ "eval_sampling/sampling_logp_difference/max": 5.717697494908383,
1827
+ "eval_sampling/sampling_logp_difference/mean": 0.6679018484918695,
1828
+ "eval_steps_per_second": 0.004,
1829
+ "step": 168
1830
+ },
1831
+ {
1832
+ "epoch": 2.0,
1833
+ "step": 168,
1834
+ "total_flos": 0.0,
1835
+ "train_loss": 0.003984759748293852,
1836
+ "train_runtime": 17571.6441,
1837
+ "train_samples_per_second": 0.318,
1838
+ "train_steps_per_second": 0.01
1839
+ }
1840
+ ],
1841
+ "logging_steps": 4,
1842
+ "max_steps": 168,
1843
+ "num_input_tokens_seen": 106675066,
1844
+ "num_train_epochs": 2,
1845
+ "save_steps": 500,
1846
+ "stateful_callbacks": {
1847
+ "TrainerControl": {
1848
+ "args": {
1849
+ "should_epoch_stop": false,
1850
+ "should_evaluate": false,
1851
+ "should_log": false,
1852
+ "should_save": true,
1853
+ "should_training_stop": true
1854
+ },
1855
+ "attributes": {}
1856
+ }
1857
+ },
1858
+ "total_flos": 0.0,
1859
+ "train_batch_size": 16,
1860
+ "trial_name": null,
1861
+ "trial_params": null
1862
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7d17f6dd86688e6438a2b3ae905cca6fd392558ebb39cd510b6c0de36210110
3
+ size 11665