trentmkelly commited on
Commit
915d88b
·
verified ·
1 Parent(s): 51bfcb4

Upload training checkpoints and logs

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +4 -0
  2. training_checkpoints/README.md +68 -0
  3. training_checkpoints/checkpoint-100/README.md +209 -0
  4. training_checkpoints/checkpoint-100/adapter_config.json +36 -0
  5. training_checkpoints/checkpoint-100/adapter_model.safetensors +3 -0
  6. training_checkpoints/checkpoint-100/added_tokens.json +28 -0
  7. training_checkpoints/checkpoint-100/chat_template.jinja +89 -0
  8. training_checkpoints/checkpoint-100/merges.txt +0 -0
  9. training_checkpoints/checkpoint-100/optimizer.pt +3 -0
  10. training_checkpoints/checkpoint-100/rng_state.pth +3 -0
  11. training_checkpoints/checkpoint-100/scheduler.pt +3 -0
  12. training_checkpoints/checkpoint-100/special_tokens_map.json +25 -0
  13. training_checkpoints/checkpoint-100/tokenizer.json +3 -0
  14. training_checkpoints/checkpoint-100/tokenizer_config.json +239 -0
  15. training_checkpoints/checkpoint-100/trainer_state.json +534 -0
  16. training_checkpoints/checkpoint-100/training_args.bin +3 -0
  17. training_checkpoints/checkpoint-100/vocab.json +0 -0
  18. training_checkpoints/checkpoint-150/README.md +209 -0
  19. training_checkpoints/checkpoint-150/adapter_config.json +36 -0
  20. training_checkpoints/checkpoint-150/adapter_model.safetensors +3 -0
  21. training_checkpoints/checkpoint-150/added_tokens.json +28 -0
  22. training_checkpoints/checkpoint-150/chat_template.jinja +89 -0
  23. training_checkpoints/checkpoint-150/merges.txt +0 -0
  24. training_checkpoints/checkpoint-150/optimizer.pt +3 -0
  25. training_checkpoints/checkpoint-150/rng_state.pth +3 -0
  26. training_checkpoints/checkpoint-150/scheduler.pt +3 -0
  27. training_checkpoints/checkpoint-150/special_tokens_map.json +25 -0
  28. training_checkpoints/checkpoint-150/tokenizer.json +3 -0
  29. training_checkpoints/checkpoint-150/tokenizer_config.json +239 -0
  30. training_checkpoints/checkpoint-150/trainer_state.json +784 -0
  31. training_checkpoints/checkpoint-150/training_args.bin +3 -0
  32. training_checkpoints/checkpoint-150/vocab.json +0 -0
  33. training_checkpoints/checkpoint-200/README.md +209 -0
  34. training_checkpoints/checkpoint-200/adapter_config.json +36 -0
  35. training_checkpoints/checkpoint-200/adapter_model.safetensors +3 -0
  36. training_checkpoints/checkpoint-200/added_tokens.json +28 -0
  37. training_checkpoints/checkpoint-200/chat_template.jinja +89 -0
  38. training_checkpoints/checkpoint-200/merges.txt +0 -0
  39. training_checkpoints/checkpoint-200/optimizer.pt +3 -0
  40. training_checkpoints/checkpoint-200/rng_state.pth +3 -0
  41. training_checkpoints/checkpoint-200/scheduler.pt +3 -0
  42. training_checkpoints/checkpoint-200/special_tokens_map.json +25 -0
  43. training_checkpoints/checkpoint-200/tokenizer.json +3 -0
  44. training_checkpoints/checkpoint-200/tokenizer_config.json +239 -0
  45. training_checkpoints/checkpoint-200/trainer_state.json +1034 -0
  46. training_checkpoints/checkpoint-200/training_args.bin +3 -0
  47. training_checkpoints/checkpoint-200/vocab.json +0 -0
  48. training_checkpoints/checkpoint-50/README.md +209 -0
  49. training_checkpoints/checkpoint-50/adapter_config.json +36 -0
  50. training_checkpoints/checkpoint-50/adapter_model.safetensors +3 -0
.gitattributes CHANGED
@@ -34,3 +34,7 @@ saved_model/**/* 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
 
 
 
 
 
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
37
+ training_checkpoints/checkpoint-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ training_checkpoints/checkpoint-150/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ training_checkpoints/checkpoint-200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ training_checkpoints/checkpoint-50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
training_checkpoints/README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-14B
3
+ library_name: transformers
4
+ model_name: grpo_rw
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - grpo
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for grpo_rw
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen3-14B](https://huggingface.co/Qwen/Qwen3-14B).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="None", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+
31
+
32
+
33
+ This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.19.1
38
+ - Transformers: 4.53.2
39
+ - Pytorch: 2.9.0.dev20250708+cu128
40
+ - Datasets: 4.0.0
41
+ - Tokenizers: 0.21.2
42
+
43
+ ## Citations
44
+
45
+ Cite GRPO as:
46
+
47
+ ```bibtex
48
+ @article{zhihong2024deepseekmath,
49
+ title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
50
+ author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
51
+ year = 2024,
52
+ eprint = {arXiv:2402.03300},
53
+ }
54
+
55
+ ```
56
+
57
+ Cite TRL as:
58
+
59
+ ```bibtex
60
+ @misc{vonwerra2022trl,
61
+ title = {{TRL: Transformer Reinforcement Learning}},
62
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
63
+ year = 2020,
64
+ journal = {GitHub repository},
65
+ publisher = {GitHub},
66
+ howpublished = {\url{https://github.com/huggingface/trl}}
67
+ }
68
+ ```
training_checkpoints/checkpoint-100/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-14B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3-14B
7
+ - grpo
8
+ - lora
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
training_checkpoints/checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen3-14B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "v_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "trainable_token_indices": null,
33
+ "use_dora": false,
34
+ "use_qalora": false,
35
+ "use_rslora": false
36
+ }
training_checkpoints/checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b89b9081c8fe0fc5dfada67d4f2bfbb1381e751932260a29097cb5cf02289397
3
+ size 83907640
training_checkpoints/checkpoint-100/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
training_checkpoints/checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
training_checkpoints/checkpoint-100/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1204afa9cb68f1fc04307d17af0a5bf0c5d67f0e4b57e6a7dd8ce7c4c8df27e0
3
+ size 167907531
training_checkpoints/checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:513e2b0a8cfb9467685aaede7bcc5f442f92531f3f3f940db567d56c38cdb71a
3
+ size 14645
training_checkpoints/checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff23d2c8d0500b3c5785fce2b8a14536ee63969efedcfdeca4bc909dea166101
3
+ size 1465
training_checkpoints/checkpoint-100/special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|im_end|>"
25
+ }
training_checkpoints/checkpoint-100/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
3
+ size 11422818
training_checkpoints/checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|im_end|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
training_checkpoints/checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.2,
6
+ "eval_steps": 500,
7
+ "global_step": 100,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "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": 507.8,
20
+ "completions/max_terminated_length": 507.8,
21
+ "completions/mean_length": 378.025,
22
+ "completions/mean_terminated_length": 378.025,
23
+ "completions/min_length": 292.6,
24
+ "completions/min_terminated_length": 292.6,
25
+ "epoch": 0.01,
26
+ "frac_reward_zero_std": 0.0,
27
+ "grad_norm": 0.08369118720293045,
28
+ "learning_rate": 2e-05,
29
+ "loss": -0.007,
30
+ "num_tokens": 19545.0,
31
+ "reward": 0.7320000112056733,
32
+ "reward_std": 0.17769398652017115,
33
+ "rewards/reward_RULER/mean": 0.7320000112056733,
34
+ "rewards/reward_RULER/std": 0.17769398242235185,
35
+ "step": 5
36
+ },
37
+ {
38
+ "clip_ratio/high_max": 0.0,
39
+ "clip_ratio/high_mean": 0.0,
40
+ "clip_ratio/low_mean": 0.0,
41
+ "clip_ratio/low_min": 0.0,
42
+ "clip_ratio/region_mean": 0.0,
43
+ "completions/clipped_ratio": 0.0,
44
+ "completions/max_length": 450.8,
45
+ "completions/max_terminated_length": 450.8,
46
+ "completions/mean_length": 369.4,
47
+ "completions/mean_terminated_length": 369.4,
48
+ "completions/min_length": 289.6,
49
+ "completions/min_terminated_length": 289.6,
50
+ "epoch": 0.02,
51
+ "frac_reward_zero_std": 0.0,
52
+ "grad_norm": 0.07441652566194534,
53
+ "learning_rate": 2e-05,
54
+ "loss": -0.038,
55
+ "num_tokens": 38641.0,
56
+ "reward": 0.590500009059906,
57
+ "reward_std": 0.21337827146053315,
58
+ "rewards/reward_RULER/mean": 0.590500009059906,
59
+ "rewards/reward_RULER/std": 0.21337826550006866,
60
+ "step": 10
61
+ },
62
+ {
63
+ "clip_ratio/high_max": 0.0,
64
+ "clip_ratio/high_mean": 0.0,
65
+ "clip_ratio/low_mean": 0.0,
66
+ "clip_ratio/low_min": 0.0,
67
+ "clip_ratio/region_mean": 0.0,
68
+ "completions/clipped_ratio": 0.0,
69
+ "completions/max_length": 570.6,
70
+ "completions/max_terminated_length": 570.6,
71
+ "completions/mean_length": 428.15,
72
+ "completions/mean_terminated_length": 428.15,
73
+ "completions/min_length": 322.4,
74
+ "completions/min_terminated_length": 322.4,
75
+ "epoch": 0.03,
76
+ "frac_reward_zero_std": 0.0,
77
+ "grad_norm": 0.11733342707157135,
78
+ "learning_rate": 2e-05,
79
+ "loss": 0.0153,
80
+ "num_tokens": 60119.0,
81
+ "reward": 0.6632500171661377,
82
+ "reward_std": 0.201286368817091,
83
+ "rewards/reward_RULER/mean": 0.6632500171661377,
84
+ "rewards/reward_RULER/std": 0.20128637179732323,
85
+ "step": 15
86
+ },
87
+ {
88
+ "clip_ratio/high_max": 0.0,
89
+ "clip_ratio/high_mean": 0.0,
90
+ "clip_ratio/low_mean": 0.0,
91
+ "clip_ratio/low_min": 0.0,
92
+ "clip_ratio/region_mean": 0.0,
93
+ "completions/clipped_ratio": 0.0,
94
+ "completions/max_length": 352.8,
95
+ "completions/max_terminated_length": 352.8,
96
+ "completions/mean_length": 287.7,
97
+ "completions/mean_terminated_length": 287.7,
98
+ "completions/min_length": 211.2,
99
+ "completions/min_terminated_length": 211.2,
100
+ "epoch": 0.04,
101
+ "frac_reward_zero_std": 0.0,
102
+ "grad_norm": 0.08897764980792999,
103
+ "learning_rate": 2e-05,
104
+ "loss": -0.0199,
105
+ "num_tokens": 76035.0,
106
+ "reward": 0.6102499961853027,
107
+ "reward_std": 0.21699187457561492,
108
+ "rewards/reward_RULER/mean": 0.6102499961853027,
109
+ "rewards/reward_RULER/std": 0.21699187606573106,
110
+ "step": 20
111
+ },
112
+ {
113
+ "clip_ratio/high_max": 0.0,
114
+ "clip_ratio/high_mean": 0.0,
115
+ "clip_ratio/low_mean": 0.0,
116
+ "clip_ratio/low_min": 0.0,
117
+ "clip_ratio/region_mean": 0.0,
118
+ "completions/clipped_ratio": 0.0,
119
+ "completions/max_length": 399.6,
120
+ "completions/max_terminated_length": 399.6,
121
+ "completions/mean_length": 348.525,
122
+ "completions/mean_terminated_length": 348.525,
123
+ "completions/min_length": 276.0,
124
+ "completions/min_terminated_length": 276.0,
125
+ "epoch": 0.05,
126
+ "frac_reward_zero_std": 0.0,
127
+ "grad_norm": 0.08986642956733704,
128
+ "learning_rate": 2e-05,
129
+ "loss": -0.0047,
130
+ "num_tokens": 94320.0,
131
+ "reward": 0.6900000095367431,
132
+ "reward_std": 0.17352139949798584,
133
+ "rewards/reward_RULER/mean": 0.6900000095367431,
134
+ "rewards/reward_RULER/std": 0.17352140620350837,
135
+ "step": 25
136
+ },
137
+ {
138
+ "clip_ratio/high_max": 0.0,
139
+ "clip_ratio/high_mean": 0.0,
140
+ "clip_ratio/low_mean": 0.0,
141
+ "clip_ratio/low_min": 0.0,
142
+ "clip_ratio/region_mean": 0.0,
143
+ "completions/clipped_ratio": 0.0,
144
+ "completions/max_length": 317.2,
145
+ "completions/max_terminated_length": 317.2,
146
+ "completions/mean_length": 264.425,
147
+ "completions/mean_terminated_length": 264.425,
148
+ "completions/min_length": 218.0,
149
+ "completions/min_terminated_length": 218.0,
150
+ "epoch": 0.06,
151
+ "frac_reward_zero_std": 0.0,
152
+ "grad_norm": 0.10734544694423676,
153
+ "learning_rate": 2e-05,
154
+ "loss": -0.0192,
155
+ "num_tokens": 109321.0,
156
+ "reward": 0.6507499814033508,
157
+ "reward_std": 0.2275388702750206,
158
+ "rewards/reward_RULER/mean": 0.6507499814033508,
159
+ "rewards/reward_RULER/std": 0.22753888070583345,
160
+ "step": 30
161
+ },
162
+ {
163
+ "clip_ratio/high_max": 0.0,
164
+ "clip_ratio/high_mean": 0.0,
165
+ "clip_ratio/low_mean": 0.0,
166
+ "clip_ratio/low_min": 0.0,
167
+ "clip_ratio/region_mean": 0.0,
168
+ "completions/clipped_ratio": 0.0,
169
+ "completions/max_length": 341.6,
170
+ "completions/max_terminated_length": 341.6,
171
+ "completions/mean_length": 282.1,
172
+ "completions/mean_terminated_length": 282.1,
173
+ "completions/min_length": 215.0,
174
+ "completions/min_terminated_length": 215.0,
175
+ "epoch": 0.07,
176
+ "frac_reward_zero_std": 0.0,
177
+ "grad_norm": 0.10805181413888931,
178
+ "learning_rate": 2e-05,
179
+ "loss": -0.0201,
180
+ "num_tokens": 124981.0,
181
+ "reward": 0.8084999680519104,
182
+ "reward_std": 0.09627426490187645,
183
+ "rewards/reward_RULER/mean": 0.8084999680519104,
184
+ "rewards/reward_RULER/std": 0.09627425670623779,
185
+ "step": 35
186
+ },
187
+ {
188
+ "clip_ratio/high_max": 0.0,
189
+ "clip_ratio/high_mean": 0.0,
190
+ "clip_ratio/low_mean": 0.0,
191
+ "clip_ratio/low_min": 0.0,
192
+ "clip_ratio/region_mean": 0.0,
193
+ "completions/clipped_ratio": 0.0,
194
+ "completions/max_length": 402.0,
195
+ "completions/max_terminated_length": 402.0,
196
+ "completions/mean_length": 320.85,
197
+ "completions/mean_terminated_length": 320.85,
198
+ "completions/min_length": 247.6,
199
+ "completions/min_terminated_length": 247.6,
200
+ "epoch": 0.08,
201
+ "frac_reward_zero_std": 0.0,
202
+ "grad_norm": 0.10829323530197144,
203
+ "learning_rate": 2e-05,
204
+ "loss": -0.0568,
205
+ "num_tokens": 142191.0,
206
+ "reward": 0.4919999957084656,
207
+ "reward_std": 0.28483160138130187,
208
+ "rewards/reward_RULER/mean": 0.4919999957084656,
209
+ "rewards/reward_RULER/std": 0.2848316073417664,
210
+ "step": 40
211
+ },
212
+ {
213
+ "clip_ratio/high_max": 0.0,
214
+ "clip_ratio/high_mean": 0.0,
215
+ "clip_ratio/low_mean": 0.0,
216
+ "clip_ratio/low_min": 0.0,
217
+ "clip_ratio/region_mean": 0.0,
218
+ "completions/clipped_ratio": 0.0,
219
+ "completions/max_length": 364.8,
220
+ "completions/max_terminated_length": 364.8,
221
+ "completions/mean_length": 306.425,
222
+ "completions/mean_terminated_length": 306.425,
223
+ "completions/min_length": 256.2,
224
+ "completions/min_terminated_length": 256.2,
225
+ "epoch": 0.09,
226
+ "frac_reward_zero_std": 0.0,
227
+ "grad_norm": 0.11349724978208542,
228
+ "learning_rate": 2e-05,
229
+ "loss": -0.0199,
230
+ "num_tokens": 158856.0,
231
+ "reward": 0.840499997138977,
232
+ "reward_std": 0.10326243191957474,
233
+ "rewards/reward_RULER/mean": 0.840499997138977,
234
+ "rewards/reward_RULER/std": 0.10326242446899414,
235
+ "step": 45
236
+ },
237
+ {
238
+ "clip_ratio/high_max": 0.0,
239
+ "clip_ratio/high_mean": 0.0,
240
+ "clip_ratio/low_mean": 0.0,
241
+ "clip_ratio/low_min": 0.0,
242
+ "clip_ratio/region_mean": 0.0,
243
+ "completions/clipped_ratio": 0.0,
244
+ "completions/max_length": 487.6,
245
+ "completions/max_terminated_length": 487.6,
246
+ "completions/mean_length": 372.0,
247
+ "completions/mean_terminated_length": 372.0,
248
+ "completions/min_length": 292.8,
249
+ "completions/min_terminated_length": 292.8,
250
+ "epoch": 0.1,
251
+ "frac_reward_zero_std": 0.0,
252
+ "grad_norm": 0.08077746629714966,
253
+ "learning_rate": 2e-05,
254
+ "loss": -0.046,
255
+ "num_tokens": 178128.0,
256
+ "reward": 0.6640000164508819,
257
+ "reward_std": 0.19458874613046645,
258
+ "rewards/reward_RULER/mean": 0.6640000164508819,
259
+ "rewards/reward_RULER/std": 0.19458874836564063,
260
+ "step": 50
261
+ },
262
+ {
263
+ "clip_ratio/high_max": 0.0,
264
+ "clip_ratio/high_mean": 0.0,
265
+ "clip_ratio/low_mean": 0.0,
266
+ "clip_ratio/low_min": 0.0,
267
+ "clip_ratio/region_mean": 0.0,
268
+ "completions/clipped_ratio": 0.0,
269
+ "completions/max_length": 458.6,
270
+ "completions/max_terminated_length": 458.6,
271
+ "completions/mean_length": 356.975,
272
+ "completions/mean_terminated_length": 356.975,
273
+ "completions/min_length": 248.6,
274
+ "completions/min_terminated_length": 248.6,
275
+ "epoch": 0.11,
276
+ "frac_reward_zero_std": 0.0,
277
+ "grad_norm": 0.1471513956785202,
278
+ "learning_rate": 2e-05,
279
+ "loss": -0.007,
280
+ "num_tokens": 196759.0,
281
+ "reward": 0.692000025510788,
282
+ "reward_std": 0.15977548956871032,
283
+ "rewards/reward_RULER/mean": 0.692000025510788,
284
+ "rewards/reward_RULER/std": 0.1597754918038845,
285
+ "step": 55
286
+ },
287
+ {
288
+ "clip_ratio/high_max": 0.0,
289
+ "clip_ratio/high_mean": 0.0,
290
+ "clip_ratio/low_mean": 0.0,
291
+ "clip_ratio/low_min": 0.0,
292
+ "clip_ratio/region_mean": 0.0,
293
+ "completions/clipped_ratio": 0.0,
294
+ "completions/max_length": 390.6,
295
+ "completions/max_terminated_length": 390.6,
296
+ "completions/mean_length": 319.35,
297
+ "completions/mean_terminated_length": 319.35,
298
+ "completions/min_length": 260.4,
299
+ "completions/min_terminated_length": 260.4,
300
+ "epoch": 0.12,
301
+ "frac_reward_zero_std": 0.0,
302
+ "grad_norm": 0.11460787057876587,
303
+ "learning_rate": 2e-05,
304
+ "loss": -0.0132,
305
+ "num_tokens": 213893.0,
306
+ "reward": 0.5780000209808349,
307
+ "reward_std": 0.22899727523326874,
308
+ "rewards/reward_RULER/mean": 0.5780000209808349,
309
+ "rewards/reward_RULER/std": 0.22899727821350097,
310
+ "step": 60
311
+ },
312
+ {
313
+ "clip_ratio/high_max": 0.0,
314
+ "clip_ratio/high_mean": 0.0,
315
+ "clip_ratio/low_mean": 0.0,
316
+ "clip_ratio/low_min": 0.0,
317
+ "clip_ratio/region_mean": 0.0,
318
+ "completions/clipped_ratio": 0.0,
319
+ "completions/max_length": 412.2,
320
+ "completions/max_terminated_length": 412.2,
321
+ "completions/mean_length": 335.425,
322
+ "completions/mean_terminated_length": 335.425,
323
+ "completions/min_length": 258.8,
324
+ "completions/min_terminated_length": 258.8,
325
+ "epoch": 0.13,
326
+ "frac_reward_zero_std": 0.0,
327
+ "grad_norm": 0.14172637462615967,
328
+ "learning_rate": 2e-05,
329
+ "loss": 0.0509,
330
+ "num_tokens": 231726.0,
331
+ "reward": 0.6589999973773957,
332
+ "reward_std": 0.2158222407102585,
333
+ "rewards/reward_RULER/mean": 0.6589999973773957,
334
+ "rewards/reward_RULER/std": 0.2158222481608391,
335
+ "step": 65
336
+ },
337
+ {
338
+ "clip_ratio/high_max": 0.0,
339
+ "clip_ratio/high_mean": 0.0,
340
+ "clip_ratio/low_mean": 0.0,
341
+ "clip_ratio/low_min": 0.0,
342
+ "clip_ratio/region_mean": 0.0,
343
+ "completions/clipped_ratio": 0.0,
344
+ "completions/max_length": 462.6,
345
+ "completions/max_terminated_length": 462.6,
346
+ "completions/mean_length": 356.325,
347
+ "completions/mean_terminated_length": 356.325,
348
+ "completions/min_length": 263.4,
349
+ "completions/min_terminated_length": 263.4,
350
+ "epoch": 0.14,
351
+ "frac_reward_zero_std": 0.0,
352
+ "grad_norm": 0.09136804193258286,
353
+ "learning_rate": 2e-05,
354
+ "loss": -0.0243,
355
+ "num_tokens": 250419.0,
356
+ "reward": 0.8337499976158143,
357
+ "reward_std": 0.09814090728759765,
358
+ "rewards/reward_RULER/mean": 0.8337499976158143,
359
+ "rewards/reward_RULER/std": 0.09814090579748154,
360
+ "step": 70
361
+ },
362
+ {
363
+ "clip_ratio/high_max": 0.0,
364
+ "clip_ratio/high_mean": 0.0,
365
+ "clip_ratio/low_mean": 0.0,
366
+ "clip_ratio/low_min": 0.0,
367
+ "clip_ratio/region_mean": 0.0,
368
+ "completions/clipped_ratio": 0.0,
369
+ "completions/max_length": 592.2,
370
+ "completions/max_terminated_length": 592.2,
371
+ "completions/mean_length": 437.95,
372
+ "completions/mean_terminated_length": 437.95,
373
+ "completions/min_length": 318.0,
374
+ "completions/min_terminated_length": 318.0,
375
+ "epoch": 0.15,
376
+ "frac_reward_zero_std": 0.0,
377
+ "grad_norm": 0.13334737718105316,
378
+ "learning_rate": 2e-05,
379
+ "loss": -0.0707,
380
+ "num_tokens": 272457.0,
381
+ "reward": 0.8289999961853027,
382
+ "reward_std": 0.09495665803551674,
383
+ "rewards/reward_RULER/mean": 0.8289999961853027,
384
+ "rewards/reward_RULER/std": 0.09495665058493614,
385
+ "step": 75
386
+ },
387
+ {
388
+ "clip_ratio/high_max": 0.0,
389
+ "clip_ratio/high_mean": 0.0,
390
+ "clip_ratio/low_mean": 0.0,
391
+ "clip_ratio/low_min": 0.0,
392
+ "clip_ratio/region_mean": 0.0,
393
+ "completions/clipped_ratio": 0.0,
394
+ "completions/max_length": 511.4,
395
+ "completions/max_terminated_length": 511.4,
396
+ "completions/mean_length": 399.4,
397
+ "completions/mean_terminated_length": 399.4,
398
+ "completions/min_length": 304.2,
399
+ "completions/min_terminated_length": 304.2,
400
+ "epoch": 0.16,
401
+ "frac_reward_zero_std": 0.0,
402
+ "grad_norm": 0.12988491356372833,
403
+ "learning_rate": 2e-05,
404
+ "loss": -0.0288,
405
+ "num_tokens": 292801.0,
406
+ "reward": 0.7097499966621399,
407
+ "reward_std": 0.1876833036541939,
408
+ "rewards/reward_RULER/mean": 0.7097499966621399,
409
+ "rewards/reward_RULER/std": 0.1876833200454712,
410
+ "step": 80
411
+ },
412
+ {
413
+ "clip_ratio/high_max": 0.0,
414
+ "clip_ratio/high_mean": 0.0,
415
+ "clip_ratio/low_mean": 0.0,
416
+ "clip_ratio/low_min": 0.0,
417
+ "clip_ratio/region_mean": 0.0,
418
+ "completions/clipped_ratio": 0.0,
419
+ "completions/max_length": 502.6,
420
+ "completions/max_terminated_length": 502.6,
421
+ "completions/mean_length": 406.075,
422
+ "completions/mean_terminated_length": 406.075,
423
+ "completions/min_length": 307.2,
424
+ "completions/min_terminated_length": 307.2,
425
+ "epoch": 0.17,
426
+ "frac_reward_zero_std": 0.0,
427
+ "grad_norm": 0.08936081826686859,
428
+ "learning_rate": 2e-05,
429
+ "loss": -0.0246,
430
+ "num_tokens": 313420.0,
431
+ "reward": 0.7280499935150146,
432
+ "reward_std": 0.16731963455677032,
433
+ "rewards/reward_RULER/mean": 0.7280499935150146,
434
+ "rewards/reward_RULER/std": 0.1673196241259575,
435
+ "step": 85
436
+ },
437
+ {
438
+ "clip_ratio/high_max": 0.0,
439
+ "clip_ratio/high_mean": 0.0,
440
+ "clip_ratio/low_mean": 0.0,
441
+ "clip_ratio/low_min": 0.0,
442
+ "clip_ratio/region_mean": 0.0,
443
+ "completions/clipped_ratio": 0.0,
444
+ "completions/max_length": 519.8,
445
+ "completions/max_terminated_length": 519.8,
446
+ "completions/mean_length": 409.4,
447
+ "completions/mean_terminated_length": 409.4,
448
+ "completions/min_length": 316.4,
449
+ "completions/min_terminated_length": 316.4,
450
+ "epoch": 0.18,
451
+ "frac_reward_zero_std": 0.0,
452
+ "grad_norm": 0.13966774940490723,
453
+ "learning_rate": 2e-05,
454
+ "loss": 0.0079,
455
+ "num_tokens": 334212.0,
456
+ "reward": 0.6485000014305115,
457
+ "reward_std": 0.2173968069255352,
458
+ "rewards/reward_RULER/mean": 0.6485000014305115,
459
+ "rewards/reward_RULER/std": 0.21739680990576743,
460
+ "step": 90
461
+ },
462
+ {
463
+ "clip_ratio/high_max": 0.0,
464
+ "clip_ratio/high_mean": 0.0,
465
+ "clip_ratio/low_mean": 0.0,
466
+ "clip_ratio/low_min": 0.0,
467
+ "clip_ratio/region_mean": 0.0,
468
+ "completions/clipped_ratio": 0.0,
469
+ "completions/max_length": 648.0,
470
+ "completions/max_terminated_length": 648.0,
471
+ "completions/mean_length": 453.55,
472
+ "completions/mean_terminated_length": 453.55,
473
+ "completions/min_length": 353.4,
474
+ "completions/min_terminated_length": 353.4,
475
+ "epoch": 0.19,
476
+ "frac_reward_zero_std": 0.0,
477
+ "grad_norm": 0.0977742075920105,
478
+ "learning_rate": 2e-05,
479
+ "loss": -0.0614,
480
+ "num_tokens": 356746.0,
481
+ "reward": 0.7827499985694886,
482
+ "reward_std": 0.12635422199964524,
483
+ "rewards/reward_RULER/mean": 0.7827499985694886,
484
+ "rewards/reward_RULER/std": 0.12635422348976136,
485
+ "step": 95
486
+ },
487
+ {
488
+ "clip_ratio/high_max": 0.0,
489
+ "clip_ratio/high_mean": 0.0,
490
+ "clip_ratio/low_mean": 0.0,
491
+ "clip_ratio/low_min": 0.0,
492
+ "clip_ratio/region_mean": 0.0,
493
+ "completions/clipped_ratio": 0.0,
494
+ "completions/max_length": 442.8,
495
+ "completions/max_terminated_length": 442.8,
496
+ "completions/mean_length": 358.375,
497
+ "completions/mean_terminated_length": 358.375,
498
+ "completions/min_length": 256.4,
499
+ "completions/min_terminated_length": 256.4,
500
+ "epoch": 0.2,
501
+ "frac_reward_zero_std": 0.0,
502
+ "grad_norm": 0.15935246646404266,
503
+ "learning_rate": 2e-05,
504
+ "loss": -0.0441,
505
+ "num_tokens": 375489.0,
506
+ "reward": 0.7475000023841858,
507
+ "reward_std": 0.16528161987662315,
508
+ "rewards/reward_RULER/mean": 0.7475000023841858,
509
+ "rewards/reward_RULER/std": 0.16528161764144897,
510
+ "step": 100
511
+ }
512
+ ],
513
+ "logging_steps": 5,
514
+ "max_steps": 500,
515
+ "num_input_tokens_seen": 375489,
516
+ "num_train_epochs": 1,
517
+ "save_steps": 50,
518
+ "stateful_callbacks": {
519
+ "TrainerControl": {
520
+ "args": {
521
+ "should_epoch_stop": false,
522
+ "should_evaluate": false,
523
+ "should_log": false,
524
+ "should_save": true,
525
+ "should_training_stop": false
526
+ },
527
+ "attributes": {}
528
+ }
529
+ },
530
+ "total_flos": 0.0,
531
+ "train_batch_size": 2,
532
+ "trial_name": null,
533
+ "trial_params": null
534
+ }
training_checkpoints/checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af65584c0ca1ceaadf5d407daec36734fd88f9cf7bf23e3101b628c0fd6cfd9d
3
+ size 6801
training_checkpoints/checkpoint-100/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-150/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-14B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3-14B
7
+ - grpo
8
+ - lora
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
training_checkpoints/checkpoint-150/adapter_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen3-14B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "v_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "trainable_token_indices": null,
33
+ "use_dora": false,
34
+ "use_qalora": false,
35
+ "use_rslora": false
36
+ }
training_checkpoints/checkpoint-150/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95249979db363e80f41fc30001b67ef7aac577cb4aa656c7fa69043e282bff49
3
+ size 83907640
training_checkpoints/checkpoint-150/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
training_checkpoints/checkpoint-150/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
training_checkpoints/checkpoint-150/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-150/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:982d88d6756f5a83885af7382b30aef3d0b007baa7e357b7147bbc59575291b2
3
+ size 167907531
training_checkpoints/checkpoint-150/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:979326b10fab93d114136709c7db74aa99baa6b002103c579ac1a76d66de959a
3
+ size 14645
training_checkpoints/checkpoint-150/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad292b5d14b8f8d85544d7d54740ffc013a4923be9b6dca5a08e1479e52628cc
3
+ size 1465
training_checkpoints/checkpoint-150/special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|im_end|>"
25
+ }
training_checkpoints/checkpoint-150/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
3
+ size 11422818
training_checkpoints/checkpoint-150/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|im_end|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
training_checkpoints/checkpoint-150/trainer_state.json ADDED
@@ -0,0 +1,784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.3,
6
+ "eval_steps": 500,
7
+ "global_step": 150,
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": 507.8,
20
+ "completions/max_terminated_length": 507.8,
21
+ "completions/mean_length": 378.025,
22
+ "completions/mean_terminated_length": 378.025,
23
+ "completions/min_length": 292.6,
24
+ "completions/min_terminated_length": 292.6,
25
+ "epoch": 0.01,
26
+ "frac_reward_zero_std": 0.0,
27
+ "grad_norm": 0.08369118720293045,
28
+ "learning_rate": 2e-05,
29
+ "loss": -0.007,
30
+ "num_tokens": 19545.0,
31
+ "reward": 0.7320000112056733,
32
+ "reward_std": 0.17769398652017115,
33
+ "rewards/reward_RULER/mean": 0.7320000112056733,
34
+ "rewards/reward_RULER/std": 0.17769398242235185,
35
+ "step": 5
36
+ },
37
+ {
38
+ "clip_ratio/high_max": 0.0,
39
+ "clip_ratio/high_mean": 0.0,
40
+ "clip_ratio/low_mean": 0.0,
41
+ "clip_ratio/low_min": 0.0,
42
+ "clip_ratio/region_mean": 0.0,
43
+ "completions/clipped_ratio": 0.0,
44
+ "completions/max_length": 450.8,
45
+ "completions/max_terminated_length": 450.8,
46
+ "completions/mean_length": 369.4,
47
+ "completions/mean_terminated_length": 369.4,
48
+ "completions/min_length": 289.6,
49
+ "completions/min_terminated_length": 289.6,
50
+ "epoch": 0.02,
51
+ "frac_reward_zero_std": 0.0,
52
+ "grad_norm": 0.07441652566194534,
53
+ "learning_rate": 2e-05,
54
+ "loss": -0.038,
55
+ "num_tokens": 38641.0,
56
+ "reward": 0.590500009059906,
57
+ "reward_std": 0.21337827146053315,
58
+ "rewards/reward_RULER/mean": 0.590500009059906,
59
+ "rewards/reward_RULER/std": 0.21337826550006866,
60
+ "step": 10
61
+ },
62
+ {
63
+ "clip_ratio/high_max": 0.0,
64
+ "clip_ratio/high_mean": 0.0,
65
+ "clip_ratio/low_mean": 0.0,
66
+ "clip_ratio/low_min": 0.0,
67
+ "clip_ratio/region_mean": 0.0,
68
+ "completions/clipped_ratio": 0.0,
69
+ "completions/max_length": 570.6,
70
+ "completions/max_terminated_length": 570.6,
71
+ "completions/mean_length": 428.15,
72
+ "completions/mean_terminated_length": 428.15,
73
+ "completions/min_length": 322.4,
74
+ "completions/min_terminated_length": 322.4,
75
+ "epoch": 0.03,
76
+ "frac_reward_zero_std": 0.0,
77
+ "grad_norm": 0.11733342707157135,
78
+ "learning_rate": 2e-05,
79
+ "loss": 0.0153,
80
+ "num_tokens": 60119.0,
81
+ "reward": 0.6632500171661377,
82
+ "reward_std": 0.201286368817091,
83
+ "rewards/reward_RULER/mean": 0.6632500171661377,
84
+ "rewards/reward_RULER/std": 0.20128637179732323,
85
+ "step": 15
86
+ },
87
+ {
88
+ "clip_ratio/high_max": 0.0,
89
+ "clip_ratio/high_mean": 0.0,
90
+ "clip_ratio/low_mean": 0.0,
91
+ "clip_ratio/low_min": 0.0,
92
+ "clip_ratio/region_mean": 0.0,
93
+ "completions/clipped_ratio": 0.0,
94
+ "completions/max_length": 352.8,
95
+ "completions/max_terminated_length": 352.8,
96
+ "completions/mean_length": 287.7,
97
+ "completions/mean_terminated_length": 287.7,
98
+ "completions/min_length": 211.2,
99
+ "completions/min_terminated_length": 211.2,
100
+ "epoch": 0.04,
101
+ "frac_reward_zero_std": 0.0,
102
+ "grad_norm": 0.08897764980792999,
103
+ "learning_rate": 2e-05,
104
+ "loss": -0.0199,
105
+ "num_tokens": 76035.0,
106
+ "reward": 0.6102499961853027,
107
+ "reward_std": 0.21699187457561492,
108
+ "rewards/reward_RULER/mean": 0.6102499961853027,
109
+ "rewards/reward_RULER/std": 0.21699187606573106,
110
+ "step": 20
111
+ },
112
+ {
113
+ "clip_ratio/high_max": 0.0,
114
+ "clip_ratio/high_mean": 0.0,
115
+ "clip_ratio/low_mean": 0.0,
116
+ "clip_ratio/low_min": 0.0,
117
+ "clip_ratio/region_mean": 0.0,
118
+ "completions/clipped_ratio": 0.0,
119
+ "completions/max_length": 399.6,
120
+ "completions/max_terminated_length": 399.6,
121
+ "completions/mean_length": 348.525,
122
+ "completions/mean_terminated_length": 348.525,
123
+ "completions/min_length": 276.0,
124
+ "completions/min_terminated_length": 276.0,
125
+ "epoch": 0.05,
126
+ "frac_reward_zero_std": 0.0,
127
+ "grad_norm": 0.08986642956733704,
128
+ "learning_rate": 2e-05,
129
+ "loss": -0.0047,
130
+ "num_tokens": 94320.0,
131
+ "reward": 0.6900000095367431,
132
+ "reward_std": 0.17352139949798584,
133
+ "rewards/reward_RULER/mean": 0.6900000095367431,
134
+ "rewards/reward_RULER/std": 0.17352140620350837,
135
+ "step": 25
136
+ },
137
+ {
138
+ "clip_ratio/high_max": 0.0,
139
+ "clip_ratio/high_mean": 0.0,
140
+ "clip_ratio/low_mean": 0.0,
141
+ "clip_ratio/low_min": 0.0,
142
+ "clip_ratio/region_mean": 0.0,
143
+ "completions/clipped_ratio": 0.0,
144
+ "completions/max_length": 317.2,
145
+ "completions/max_terminated_length": 317.2,
146
+ "completions/mean_length": 264.425,
147
+ "completions/mean_terminated_length": 264.425,
148
+ "completions/min_length": 218.0,
149
+ "completions/min_terminated_length": 218.0,
150
+ "epoch": 0.06,
151
+ "frac_reward_zero_std": 0.0,
152
+ "grad_norm": 0.10734544694423676,
153
+ "learning_rate": 2e-05,
154
+ "loss": -0.0192,
155
+ "num_tokens": 109321.0,
156
+ "reward": 0.6507499814033508,
157
+ "reward_std": 0.2275388702750206,
158
+ "rewards/reward_RULER/mean": 0.6507499814033508,
159
+ "rewards/reward_RULER/std": 0.22753888070583345,
160
+ "step": 30
161
+ },
162
+ {
163
+ "clip_ratio/high_max": 0.0,
164
+ "clip_ratio/high_mean": 0.0,
165
+ "clip_ratio/low_mean": 0.0,
166
+ "clip_ratio/low_min": 0.0,
167
+ "clip_ratio/region_mean": 0.0,
168
+ "completions/clipped_ratio": 0.0,
169
+ "completions/max_length": 341.6,
170
+ "completions/max_terminated_length": 341.6,
171
+ "completions/mean_length": 282.1,
172
+ "completions/mean_terminated_length": 282.1,
173
+ "completions/min_length": 215.0,
174
+ "completions/min_terminated_length": 215.0,
175
+ "epoch": 0.07,
176
+ "frac_reward_zero_std": 0.0,
177
+ "grad_norm": 0.10805181413888931,
178
+ "learning_rate": 2e-05,
179
+ "loss": -0.0201,
180
+ "num_tokens": 124981.0,
181
+ "reward": 0.8084999680519104,
182
+ "reward_std": 0.09627426490187645,
183
+ "rewards/reward_RULER/mean": 0.8084999680519104,
184
+ "rewards/reward_RULER/std": 0.09627425670623779,
185
+ "step": 35
186
+ },
187
+ {
188
+ "clip_ratio/high_max": 0.0,
189
+ "clip_ratio/high_mean": 0.0,
190
+ "clip_ratio/low_mean": 0.0,
191
+ "clip_ratio/low_min": 0.0,
192
+ "clip_ratio/region_mean": 0.0,
193
+ "completions/clipped_ratio": 0.0,
194
+ "completions/max_length": 402.0,
195
+ "completions/max_terminated_length": 402.0,
196
+ "completions/mean_length": 320.85,
197
+ "completions/mean_terminated_length": 320.85,
198
+ "completions/min_length": 247.6,
199
+ "completions/min_terminated_length": 247.6,
200
+ "epoch": 0.08,
201
+ "frac_reward_zero_std": 0.0,
202
+ "grad_norm": 0.10829323530197144,
203
+ "learning_rate": 2e-05,
204
+ "loss": -0.0568,
205
+ "num_tokens": 142191.0,
206
+ "reward": 0.4919999957084656,
207
+ "reward_std": 0.28483160138130187,
208
+ "rewards/reward_RULER/mean": 0.4919999957084656,
209
+ "rewards/reward_RULER/std": 0.2848316073417664,
210
+ "step": 40
211
+ },
212
+ {
213
+ "clip_ratio/high_max": 0.0,
214
+ "clip_ratio/high_mean": 0.0,
215
+ "clip_ratio/low_mean": 0.0,
216
+ "clip_ratio/low_min": 0.0,
217
+ "clip_ratio/region_mean": 0.0,
218
+ "completions/clipped_ratio": 0.0,
219
+ "completions/max_length": 364.8,
220
+ "completions/max_terminated_length": 364.8,
221
+ "completions/mean_length": 306.425,
222
+ "completions/mean_terminated_length": 306.425,
223
+ "completions/min_length": 256.2,
224
+ "completions/min_terminated_length": 256.2,
225
+ "epoch": 0.09,
226
+ "frac_reward_zero_std": 0.0,
227
+ "grad_norm": 0.11349724978208542,
228
+ "learning_rate": 2e-05,
229
+ "loss": -0.0199,
230
+ "num_tokens": 158856.0,
231
+ "reward": 0.840499997138977,
232
+ "reward_std": 0.10326243191957474,
233
+ "rewards/reward_RULER/mean": 0.840499997138977,
234
+ "rewards/reward_RULER/std": 0.10326242446899414,
235
+ "step": 45
236
+ },
237
+ {
238
+ "clip_ratio/high_max": 0.0,
239
+ "clip_ratio/high_mean": 0.0,
240
+ "clip_ratio/low_mean": 0.0,
241
+ "clip_ratio/low_min": 0.0,
242
+ "clip_ratio/region_mean": 0.0,
243
+ "completions/clipped_ratio": 0.0,
244
+ "completions/max_length": 487.6,
245
+ "completions/max_terminated_length": 487.6,
246
+ "completions/mean_length": 372.0,
247
+ "completions/mean_terminated_length": 372.0,
248
+ "completions/min_length": 292.8,
249
+ "completions/min_terminated_length": 292.8,
250
+ "epoch": 0.1,
251
+ "frac_reward_zero_std": 0.0,
252
+ "grad_norm": 0.08077746629714966,
253
+ "learning_rate": 2e-05,
254
+ "loss": -0.046,
255
+ "num_tokens": 178128.0,
256
+ "reward": 0.6640000164508819,
257
+ "reward_std": 0.19458874613046645,
258
+ "rewards/reward_RULER/mean": 0.6640000164508819,
259
+ "rewards/reward_RULER/std": 0.19458874836564063,
260
+ "step": 50
261
+ },
262
+ {
263
+ "clip_ratio/high_max": 0.0,
264
+ "clip_ratio/high_mean": 0.0,
265
+ "clip_ratio/low_mean": 0.0,
266
+ "clip_ratio/low_min": 0.0,
267
+ "clip_ratio/region_mean": 0.0,
268
+ "completions/clipped_ratio": 0.0,
269
+ "completions/max_length": 458.6,
270
+ "completions/max_terminated_length": 458.6,
271
+ "completions/mean_length": 356.975,
272
+ "completions/mean_terminated_length": 356.975,
273
+ "completions/min_length": 248.6,
274
+ "completions/min_terminated_length": 248.6,
275
+ "epoch": 0.11,
276
+ "frac_reward_zero_std": 0.0,
277
+ "grad_norm": 0.1471513956785202,
278
+ "learning_rate": 2e-05,
279
+ "loss": -0.007,
280
+ "num_tokens": 196759.0,
281
+ "reward": 0.692000025510788,
282
+ "reward_std": 0.15977548956871032,
283
+ "rewards/reward_RULER/mean": 0.692000025510788,
284
+ "rewards/reward_RULER/std": 0.1597754918038845,
285
+ "step": 55
286
+ },
287
+ {
288
+ "clip_ratio/high_max": 0.0,
289
+ "clip_ratio/high_mean": 0.0,
290
+ "clip_ratio/low_mean": 0.0,
291
+ "clip_ratio/low_min": 0.0,
292
+ "clip_ratio/region_mean": 0.0,
293
+ "completions/clipped_ratio": 0.0,
294
+ "completions/max_length": 390.6,
295
+ "completions/max_terminated_length": 390.6,
296
+ "completions/mean_length": 319.35,
297
+ "completions/mean_terminated_length": 319.35,
298
+ "completions/min_length": 260.4,
299
+ "completions/min_terminated_length": 260.4,
300
+ "epoch": 0.12,
301
+ "frac_reward_zero_std": 0.0,
302
+ "grad_norm": 0.11460787057876587,
303
+ "learning_rate": 2e-05,
304
+ "loss": -0.0132,
305
+ "num_tokens": 213893.0,
306
+ "reward": 0.5780000209808349,
307
+ "reward_std": 0.22899727523326874,
308
+ "rewards/reward_RULER/mean": 0.5780000209808349,
309
+ "rewards/reward_RULER/std": 0.22899727821350097,
310
+ "step": 60
311
+ },
312
+ {
313
+ "clip_ratio/high_max": 0.0,
314
+ "clip_ratio/high_mean": 0.0,
315
+ "clip_ratio/low_mean": 0.0,
316
+ "clip_ratio/low_min": 0.0,
317
+ "clip_ratio/region_mean": 0.0,
318
+ "completions/clipped_ratio": 0.0,
319
+ "completions/max_length": 412.2,
320
+ "completions/max_terminated_length": 412.2,
321
+ "completions/mean_length": 335.425,
322
+ "completions/mean_terminated_length": 335.425,
323
+ "completions/min_length": 258.8,
324
+ "completions/min_terminated_length": 258.8,
325
+ "epoch": 0.13,
326
+ "frac_reward_zero_std": 0.0,
327
+ "grad_norm": 0.14172637462615967,
328
+ "learning_rate": 2e-05,
329
+ "loss": 0.0509,
330
+ "num_tokens": 231726.0,
331
+ "reward": 0.6589999973773957,
332
+ "reward_std": 0.2158222407102585,
333
+ "rewards/reward_RULER/mean": 0.6589999973773957,
334
+ "rewards/reward_RULER/std": 0.2158222481608391,
335
+ "step": 65
336
+ },
337
+ {
338
+ "clip_ratio/high_max": 0.0,
339
+ "clip_ratio/high_mean": 0.0,
340
+ "clip_ratio/low_mean": 0.0,
341
+ "clip_ratio/low_min": 0.0,
342
+ "clip_ratio/region_mean": 0.0,
343
+ "completions/clipped_ratio": 0.0,
344
+ "completions/max_length": 462.6,
345
+ "completions/max_terminated_length": 462.6,
346
+ "completions/mean_length": 356.325,
347
+ "completions/mean_terminated_length": 356.325,
348
+ "completions/min_length": 263.4,
349
+ "completions/min_terminated_length": 263.4,
350
+ "epoch": 0.14,
351
+ "frac_reward_zero_std": 0.0,
352
+ "grad_norm": 0.09136804193258286,
353
+ "learning_rate": 2e-05,
354
+ "loss": -0.0243,
355
+ "num_tokens": 250419.0,
356
+ "reward": 0.8337499976158143,
357
+ "reward_std": 0.09814090728759765,
358
+ "rewards/reward_RULER/mean": 0.8337499976158143,
359
+ "rewards/reward_RULER/std": 0.09814090579748154,
360
+ "step": 70
361
+ },
362
+ {
363
+ "clip_ratio/high_max": 0.0,
364
+ "clip_ratio/high_mean": 0.0,
365
+ "clip_ratio/low_mean": 0.0,
366
+ "clip_ratio/low_min": 0.0,
367
+ "clip_ratio/region_mean": 0.0,
368
+ "completions/clipped_ratio": 0.0,
369
+ "completions/max_length": 592.2,
370
+ "completions/max_terminated_length": 592.2,
371
+ "completions/mean_length": 437.95,
372
+ "completions/mean_terminated_length": 437.95,
373
+ "completions/min_length": 318.0,
374
+ "completions/min_terminated_length": 318.0,
375
+ "epoch": 0.15,
376
+ "frac_reward_zero_std": 0.0,
377
+ "grad_norm": 0.13334737718105316,
378
+ "learning_rate": 2e-05,
379
+ "loss": -0.0707,
380
+ "num_tokens": 272457.0,
381
+ "reward": 0.8289999961853027,
382
+ "reward_std": 0.09495665803551674,
383
+ "rewards/reward_RULER/mean": 0.8289999961853027,
384
+ "rewards/reward_RULER/std": 0.09495665058493614,
385
+ "step": 75
386
+ },
387
+ {
388
+ "clip_ratio/high_max": 0.0,
389
+ "clip_ratio/high_mean": 0.0,
390
+ "clip_ratio/low_mean": 0.0,
391
+ "clip_ratio/low_min": 0.0,
392
+ "clip_ratio/region_mean": 0.0,
393
+ "completions/clipped_ratio": 0.0,
394
+ "completions/max_length": 511.4,
395
+ "completions/max_terminated_length": 511.4,
396
+ "completions/mean_length": 399.4,
397
+ "completions/mean_terminated_length": 399.4,
398
+ "completions/min_length": 304.2,
399
+ "completions/min_terminated_length": 304.2,
400
+ "epoch": 0.16,
401
+ "frac_reward_zero_std": 0.0,
402
+ "grad_norm": 0.12988491356372833,
403
+ "learning_rate": 2e-05,
404
+ "loss": -0.0288,
405
+ "num_tokens": 292801.0,
406
+ "reward": 0.7097499966621399,
407
+ "reward_std": 0.1876833036541939,
408
+ "rewards/reward_RULER/mean": 0.7097499966621399,
409
+ "rewards/reward_RULER/std": 0.1876833200454712,
410
+ "step": 80
411
+ },
412
+ {
413
+ "clip_ratio/high_max": 0.0,
414
+ "clip_ratio/high_mean": 0.0,
415
+ "clip_ratio/low_mean": 0.0,
416
+ "clip_ratio/low_min": 0.0,
417
+ "clip_ratio/region_mean": 0.0,
418
+ "completions/clipped_ratio": 0.0,
419
+ "completions/max_length": 502.6,
420
+ "completions/max_terminated_length": 502.6,
421
+ "completions/mean_length": 406.075,
422
+ "completions/mean_terminated_length": 406.075,
423
+ "completions/min_length": 307.2,
424
+ "completions/min_terminated_length": 307.2,
425
+ "epoch": 0.17,
426
+ "frac_reward_zero_std": 0.0,
427
+ "grad_norm": 0.08936081826686859,
428
+ "learning_rate": 2e-05,
429
+ "loss": -0.0246,
430
+ "num_tokens": 313420.0,
431
+ "reward": 0.7280499935150146,
432
+ "reward_std": 0.16731963455677032,
433
+ "rewards/reward_RULER/mean": 0.7280499935150146,
434
+ "rewards/reward_RULER/std": 0.1673196241259575,
435
+ "step": 85
436
+ },
437
+ {
438
+ "clip_ratio/high_max": 0.0,
439
+ "clip_ratio/high_mean": 0.0,
440
+ "clip_ratio/low_mean": 0.0,
441
+ "clip_ratio/low_min": 0.0,
442
+ "clip_ratio/region_mean": 0.0,
443
+ "completions/clipped_ratio": 0.0,
444
+ "completions/max_length": 519.8,
445
+ "completions/max_terminated_length": 519.8,
446
+ "completions/mean_length": 409.4,
447
+ "completions/mean_terminated_length": 409.4,
448
+ "completions/min_length": 316.4,
449
+ "completions/min_terminated_length": 316.4,
450
+ "epoch": 0.18,
451
+ "frac_reward_zero_std": 0.0,
452
+ "grad_norm": 0.13966774940490723,
453
+ "learning_rate": 2e-05,
454
+ "loss": 0.0079,
455
+ "num_tokens": 334212.0,
456
+ "reward": 0.6485000014305115,
457
+ "reward_std": 0.2173968069255352,
458
+ "rewards/reward_RULER/mean": 0.6485000014305115,
459
+ "rewards/reward_RULER/std": 0.21739680990576743,
460
+ "step": 90
461
+ },
462
+ {
463
+ "clip_ratio/high_max": 0.0,
464
+ "clip_ratio/high_mean": 0.0,
465
+ "clip_ratio/low_mean": 0.0,
466
+ "clip_ratio/low_min": 0.0,
467
+ "clip_ratio/region_mean": 0.0,
468
+ "completions/clipped_ratio": 0.0,
469
+ "completions/max_length": 648.0,
470
+ "completions/max_terminated_length": 648.0,
471
+ "completions/mean_length": 453.55,
472
+ "completions/mean_terminated_length": 453.55,
473
+ "completions/min_length": 353.4,
474
+ "completions/min_terminated_length": 353.4,
475
+ "epoch": 0.19,
476
+ "frac_reward_zero_std": 0.0,
477
+ "grad_norm": 0.0977742075920105,
478
+ "learning_rate": 2e-05,
479
+ "loss": -0.0614,
480
+ "num_tokens": 356746.0,
481
+ "reward": 0.7827499985694886,
482
+ "reward_std": 0.12635422199964524,
483
+ "rewards/reward_RULER/mean": 0.7827499985694886,
484
+ "rewards/reward_RULER/std": 0.12635422348976136,
485
+ "step": 95
486
+ },
487
+ {
488
+ "clip_ratio/high_max": 0.0,
489
+ "clip_ratio/high_mean": 0.0,
490
+ "clip_ratio/low_mean": 0.0,
491
+ "clip_ratio/low_min": 0.0,
492
+ "clip_ratio/region_mean": 0.0,
493
+ "completions/clipped_ratio": 0.0,
494
+ "completions/max_length": 442.8,
495
+ "completions/max_terminated_length": 442.8,
496
+ "completions/mean_length": 358.375,
497
+ "completions/mean_terminated_length": 358.375,
498
+ "completions/min_length": 256.4,
499
+ "completions/min_terminated_length": 256.4,
500
+ "epoch": 0.2,
501
+ "frac_reward_zero_std": 0.0,
502
+ "grad_norm": 0.15935246646404266,
503
+ "learning_rate": 2e-05,
504
+ "loss": -0.0441,
505
+ "num_tokens": 375489.0,
506
+ "reward": 0.7475000023841858,
507
+ "reward_std": 0.16528161987662315,
508
+ "rewards/reward_RULER/mean": 0.7475000023841858,
509
+ "rewards/reward_RULER/std": 0.16528161764144897,
510
+ "step": 100
511
+ },
512
+ {
513
+ "clip_ratio/high_max": 0.0,
514
+ "clip_ratio/high_mean": 0.0,
515
+ "clip_ratio/low_mean": 0.0,
516
+ "clip_ratio/low_min": 0.0,
517
+ "clip_ratio/region_mean": 0.0,
518
+ "completions/clipped_ratio": 0.0,
519
+ "completions/max_length": 588.6,
520
+ "completions/max_terminated_length": 588.6,
521
+ "completions/mean_length": 452.175,
522
+ "completions/mean_terminated_length": 452.175,
523
+ "completions/min_length": 344.6,
524
+ "completions/min_terminated_length": 344.6,
525
+ "epoch": 0.21,
526
+ "frac_reward_zero_std": 0.0,
527
+ "grad_norm": 0.1050405278801918,
528
+ "learning_rate": 2e-05,
529
+ "loss": 0.0209,
530
+ "num_tokens": 398008.0,
531
+ "reward": 0.8627500057220459,
532
+ "reward_std": 0.08394425511360168,
533
+ "rewards/reward_RULER/mean": 0.8627500057220459,
534
+ "rewards/reward_RULER/std": 0.08394426107406616,
535
+ "step": 105
536
+ },
537
+ {
538
+ "clip_ratio/high_max": 0.0,
539
+ "clip_ratio/high_mean": 0.0,
540
+ "clip_ratio/low_mean": 0.0,
541
+ "clip_ratio/low_min": 0.0,
542
+ "clip_ratio/region_mean": 0.0,
543
+ "completions/clipped_ratio": 0.0,
544
+ "completions/max_length": 520.0,
545
+ "completions/max_terminated_length": 520.0,
546
+ "completions/mean_length": 450.15,
547
+ "completions/mean_terminated_length": 450.15,
548
+ "completions/min_length": 352.0,
549
+ "completions/min_terminated_length": 352.0,
550
+ "epoch": 0.22,
551
+ "frac_reward_zero_std": 0.0,
552
+ "grad_norm": 0.1688801646232605,
553
+ "learning_rate": 2e-05,
554
+ "loss": -0.0058,
555
+ "num_tokens": 420382.0,
556
+ "reward": 0.7672500133514404,
557
+ "reward_std": 0.14555928111076355,
558
+ "rewards/reward_RULER/mean": 0.7672500133514404,
559
+ "rewards/reward_RULER/std": 0.14555927962064744,
560
+ "step": 110
561
+ },
562
+ {
563
+ "clip_ratio/high_max": 0.0,
564
+ "clip_ratio/high_mean": 0.0,
565
+ "clip_ratio/low_mean": 0.0,
566
+ "clip_ratio/low_min": 0.0,
567
+ "clip_ratio/region_mean": 0.0,
568
+ "completions/clipped_ratio": 0.0,
569
+ "completions/max_length": 517.2,
570
+ "completions/max_terminated_length": 517.2,
571
+ "completions/mean_length": 420.9,
572
+ "completions/mean_terminated_length": 420.9,
573
+ "completions/min_length": 336.6,
574
+ "completions/min_terminated_length": 336.6,
575
+ "epoch": 0.23,
576
+ "frac_reward_zero_std": 0.0,
577
+ "grad_norm": 0.1674422323703766,
578
+ "learning_rate": 2e-05,
579
+ "loss": -0.0319,
580
+ "num_tokens": 441626.0,
581
+ "reward": 0.8227499961853028,
582
+ "reward_std": 0.11988024711608887,
583
+ "rewards/reward_RULER/mean": 0.8227499961853028,
584
+ "rewards/reward_RULER/std": 0.11988024786114693,
585
+ "step": 115
586
+ },
587
+ {
588
+ "clip_ratio/high_max": 0.0,
589
+ "clip_ratio/high_mean": 0.0,
590
+ "clip_ratio/low_mean": 0.0,
591
+ "clip_ratio/low_min": 0.0,
592
+ "clip_ratio/region_mean": 0.0,
593
+ "completions/clipped_ratio": 0.0,
594
+ "completions/max_length": 544.8,
595
+ "completions/max_terminated_length": 544.8,
596
+ "completions/mean_length": 451.1,
597
+ "completions/mean_terminated_length": 451.1,
598
+ "completions/min_length": 379.2,
599
+ "completions/min_terminated_length": 379.2,
600
+ "epoch": 0.24,
601
+ "frac_reward_zero_std": 0.0,
602
+ "grad_norm": 0.18309253454208374,
603
+ "learning_rate": 2e-05,
604
+ "loss": -0.0356,
605
+ "num_tokens": 464110.0,
606
+ "reward": 0.6797500014305115,
607
+ "reward_std": 0.20434648618102075,
608
+ "rewards/reward_RULER/mean": 0.6797500014305115,
609
+ "rewards/reward_RULER/std": 0.20434649735689164,
610
+ "step": 120
611
+ },
612
+ {
613
+ "clip_ratio/high_max": 0.0,
614
+ "clip_ratio/high_mean": 0.0,
615
+ "clip_ratio/low_mean": 0.0,
616
+ "clip_ratio/low_min": 0.0,
617
+ "clip_ratio/region_mean": 0.0,
618
+ "completions/clipped_ratio": 0.0,
619
+ "completions/max_length": 594.6,
620
+ "completions/max_terminated_length": 594.6,
621
+ "completions/mean_length": 495.2,
622
+ "completions/mean_terminated_length": 495.2,
623
+ "completions/min_length": 408.4,
624
+ "completions/min_terminated_length": 408.4,
625
+ "epoch": 0.25,
626
+ "frac_reward_zero_std": 0.0,
627
+ "grad_norm": 0.09583492577075958,
628
+ "learning_rate": 2e-05,
629
+ "loss": -0.0062,
630
+ "num_tokens": 488326.0,
631
+ "reward": 0.8042499899864197,
632
+ "reward_std": 0.11632050797343255,
633
+ "rewards/reward_RULER/mean": 0.8042499899864197,
634
+ "rewards/reward_RULER/std": 0.11632050722837448,
635
+ "step": 125
636
+ },
637
+ {
638
+ "clip_ratio/high_max": 0.0,
639
+ "clip_ratio/high_mean": 0.0,
640
+ "clip_ratio/low_mean": 0.0,
641
+ "clip_ratio/low_min": 0.0,
642
+ "clip_ratio/region_mean": 0.0,
643
+ "completions/clipped_ratio": 0.0,
644
+ "completions/max_length": 725.8,
645
+ "completions/max_terminated_length": 725.8,
646
+ "completions/mean_length": 521.125,
647
+ "completions/mean_terminated_length": 521.125,
648
+ "completions/min_length": 417.8,
649
+ "completions/min_terminated_length": 417.8,
650
+ "epoch": 0.26,
651
+ "frac_reward_zero_std": 0.0,
652
+ "grad_norm": 0.10735133290290833,
653
+ "learning_rate": 2e-05,
654
+ "loss": -0.0069,
655
+ "num_tokens": 513595.0,
656
+ "reward": 0.7964999794960022,
657
+ "reward_std": 0.13472943678498267,
658
+ "rewards/reward_RULER/mean": 0.7964999794960022,
659
+ "rewards/reward_RULER/std": 0.13472944796085357,
660
+ "step": 130
661
+ },
662
+ {
663
+ "clip_ratio/high_max": 0.0,
664
+ "clip_ratio/high_mean": 0.0,
665
+ "clip_ratio/low_mean": 0.0,
666
+ "clip_ratio/low_min": 0.0,
667
+ "clip_ratio/region_mean": 0.0,
668
+ "completions/clipped_ratio": 0.0,
669
+ "completions/max_length": 668.6,
670
+ "completions/max_terminated_length": 668.6,
671
+ "completions/mean_length": 571.25,
672
+ "completions/mean_terminated_length": 571.25,
673
+ "completions/min_length": 476.8,
674
+ "completions/min_terminated_length": 476.8,
675
+ "epoch": 0.27,
676
+ "frac_reward_zero_std": 0.0,
677
+ "grad_norm": 0.19455848634243011,
678
+ "learning_rate": 2e-05,
679
+ "loss": -0.0151,
680
+ "num_tokens": 540845.0,
681
+ "reward": 0.8171249985694885,
682
+ "reward_std": 0.12673728540539742,
683
+ "rewards/reward_RULER/mean": 0.8171249985694885,
684
+ "rewards/reward_RULER/std": 0.12673727795481682,
685
+ "step": 135
686
+ },
687
+ {
688
+ "clip_ratio/high_max": 0.0,
689
+ "clip_ratio/high_mean": 0.0,
690
+ "clip_ratio/low_mean": 0.0,
691
+ "clip_ratio/low_min": 0.0,
692
+ "clip_ratio/region_mean": 0.0,
693
+ "completions/clipped_ratio": 0.0,
694
+ "completions/max_length": 720.4,
695
+ "completions/max_terminated_length": 720.4,
696
+ "completions/mean_length": 550.225,
697
+ "completions/mean_terminated_length": 550.225,
698
+ "completions/min_length": 439.4,
699
+ "completions/min_terminated_length": 439.4,
700
+ "epoch": 0.28,
701
+ "frac_reward_zero_std": 0.0,
702
+ "grad_norm": 0.15606646239757538,
703
+ "learning_rate": 2e-05,
704
+ "loss": -0.0383,
705
+ "num_tokens": 567254.0,
706
+ "reward": 0.850249993801117,
707
+ "reward_std": 0.086809141933918,
708
+ "rewards/reward_RULER/mean": 0.850249993801117,
709
+ "rewards/reward_RULER/std": 0.08680914118885993,
710
+ "step": 140
711
+ },
712
+ {
713
+ "clip_ratio/high_max": 0.0,
714
+ "clip_ratio/high_mean": 0.0,
715
+ "clip_ratio/low_mean": 0.0,
716
+ "clip_ratio/low_min": 0.0,
717
+ "clip_ratio/region_mean": 0.0,
718
+ "completions/clipped_ratio": 0.0,
719
+ "completions/max_length": 692.4,
720
+ "completions/max_terminated_length": 692.4,
721
+ "completions/mean_length": 537.75,
722
+ "completions/mean_terminated_length": 537.75,
723
+ "completions/min_length": 408.2,
724
+ "completions/min_terminated_length": 408.2,
725
+ "epoch": 0.29,
726
+ "frac_reward_zero_std": 0.0,
727
+ "grad_norm": 0.17972718179225922,
728
+ "learning_rate": 2e-05,
729
+ "loss": 0.0376,
730
+ "num_tokens": 593108.0,
731
+ "reward": 0.7572499871253967,
732
+ "reward_std": 0.14755067527294158,
733
+ "rewards/reward_RULER/mean": 0.7572499871253967,
734
+ "rewards/reward_RULER/std": 0.14755066782236098,
735
+ "step": 145
736
+ },
737
+ {
738
+ "clip_ratio/high_max": 0.0,
739
+ "clip_ratio/high_mean": 0.0,
740
+ "clip_ratio/low_mean": 0.0,
741
+ "clip_ratio/low_min": 0.0,
742
+ "clip_ratio/region_mean": 0.0,
743
+ "completions/clipped_ratio": 0.0,
744
+ "completions/max_length": 749.8,
745
+ "completions/max_terminated_length": 749.8,
746
+ "completions/mean_length": 634.55,
747
+ "completions/mean_terminated_length": 634.55,
748
+ "completions/min_length": 501.8,
749
+ "completions/min_terminated_length": 501.8,
750
+ "epoch": 0.3,
751
+ "frac_reward_zero_std": 0.0,
752
+ "grad_norm": 0.15824082493782043,
753
+ "learning_rate": 2e-05,
754
+ "loss": 0.0078,
755
+ "num_tokens": 622890.0,
756
+ "reward": 0.751499992609024,
757
+ "reward_std": 0.12705863565206527,
758
+ "rewards/reward_RULER/mean": 0.751499992609024,
759
+ "rewards/reward_RULER/std": 0.12705863639712334,
760
+ "step": 150
761
+ }
762
+ ],
763
+ "logging_steps": 5,
764
+ "max_steps": 500,
765
+ "num_input_tokens_seen": 622890,
766
+ "num_train_epochs": 1,
767
+ "save_steps": 50,
768
+ "stateful_callbacks": {
769
+ "TrainerControl": {
770
+ "args": {
771
+ "should_epoch_stop": false,
772
+ "should_evaluate": false,
773
+ "should_log": false,
774
+ "should_save": true,
775
+ "should_training_stop": false
776
+ },
777
+ "attributes": {}
778
+ }
779
+ },
780
+ "total_flos": 0.0,
781
+ "train_batch_size": 2,
782
+ "trial_name": null,
783
+ "trial_params": null
784
+ }
training_checkpoints/checkpoint-150/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af65584c0ca1ceaadf5d407daec36734fd88f9cf7bf23e3101b628c0fd6cfd9d
3
+ size 6801
training_checkpoints/checkpoint-150/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-200/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-14B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3-14B
7
+ - grpo
8
+ - lora
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
training_checkpoints/checkpoint-200/adapter_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen3-14B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "v_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "trainable_token_indices": null,
33
+ "use_dora": false,
34
+ "use_qalora": false,
35
+ "use_rslora": false
36
+ }
training_checkpoints/checkpoint-200/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a1575b0c626e28675942d9e0ea7a71c434ee2417d03059fbdb4a95da6e007c9
3
+ size 83907640
training_checkpoints/checkpoint-200/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
training_checkpoints/checkpoint-200/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
training_checkpoints/checkpoint-200/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-200/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc11bcd6af81615ffbbdefccf7952c8779502fe767b7d8860164bfc38a1832d7
3
+ size 167907531
training_checkpoints/checkpoint-200/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b1588b0cf950bdc55b4d9739bd92638b2bc9581c908f1bb6a8f2cae0c0a2a2b
3
+ size 14645
training_checkpoints/checkpoint-200/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6081ec7dd1df8dbae82c29a2535e4e2a776621f54df52246eada222f4cfa3133
3
+ size 1465
training_checkpoints/checkpoint-200/special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|im_end|>"
25
+ }
training_checkpoints/checkpoint-200/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
3
+ size 11422818
training_checkpoints/checkpoint-200/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|im_end|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
training_checkpoints/checkpoint-200/trainer_state.json ADDED
@@ -0,0 +1,1034 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.4,
6
+ "eval_steps": 500,
7
+ "global_step": 200,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "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": 507.8,
20
+ "completions/max_terminated_length": 507.8,
21
+ "completions/mean_length": 378.025,
22
+ "completions/mean_terminated_length": 378.025,
23
+ "completions/min_length": 292.6,
24
+ "completions/min_terminated_length": 292.6,
25
+ "epoch": 0.01,
26
+ "frac_reward_zero_std": 0.0,
27
+ "grad_norm": 0.08369118720293045,
28
+ "learning_rate": 2e-05,
29
+ "loss": -0.007,
30
+ "num_tokens": 19545.0,
31
+ "reward": 0.7320000112056733,
32
+ "reward_std": 0.17769398652017115,
33
+ "rewards/reward_RULER/mean": 0.7320000112056733,
34
+ "rewards/reward_RULER/std": 0.17769398242235185,
35
+ "step": 5
36
+ },
37
+ {
38
+ "clip_ratio/high_max": 0.0,
39
+ "clip_ratio/high_mean": 0.0,
40
+ "clip_ratio/low_mean": 0.0,
41
+ "clip_ratio/low_min": 0.0,
42
+ "clip_ratio/region_mean": 0.0,
43
+ "completions/clipped_ratio": 0.0,
44
+ "completions/max_length": 450.8,
45
+ "completions/max_terminated_length": 450.8,
46
+ "completions/mean_length": 369.4,
47
+ "completions/mean_terminated_length": 369.4,
48
+ "completions/min_length": 289.6,
49
+ "completions/min_terminated_length": 289.6,
50
+ "epoch": 0.02,
51
+ "frac_reward_zero_std": 0.0,
52
+ "grad_norm": 0.07441652566194534,
53
+ "learning_rate": 2e-05,
54
+ "loss": -0.038,
55
+ "num_tokens": 38641.0,
56
+ "reward": 0.590500009059906,
57
+ "reward_std": 0.21337827146053315,
58
+ "rewards/reward_RULER/mean": 0.590500009059906,
59
+ "rewards/reward_RULER/std": 0.21337826550006866,
60
+ "step": 10
61
+ },
62
+ {
63
+ "clip_ratio/high_max": 0.0,
64
+ "clip_ratio/high_mean": 0.0,
65
+ "clip_ratio/low_mean": 0.0,
66
+ "clip_ratio/low_min": 0.0,
67
+ "clip_ratio/region_mean": 0.0,
68
+ "completions/clipped_ratio": 0.0,
69
+ "completions/max_length": 570.6,
70
+ "completions/max_terminated_length": 570.6,
71
+ "completions/mean_length": 428.15,
72
+ "completions/mean_terminated_length": 428.15,
73
+ "completions/min_length": 322.4,
74
+ "completions/min_terminated_length": 322.4,
75
+ "epoch": 0.03,
76
+ "frac_reward_zero_std": 0.0,
77
+ "grad_norm": 0.11733342707157135,
78
+ "learning_rate": 2e-05,
79
+ "loss": 0.0153,
80
+ "num_tokens": 60119.0,
81
+ "reward": 0.6632500171661377,
82
+ "reward_std": 0.201286368817091,
83
+ "rewards/reward_RULER/mean": 0.6632500171661377,
84
+ "rewards/reward_RULER/std": 0.20128637179732323,
85
+ "step": 15
86
+ },
87
+ {
88
+ "clip_ratio/high_max": 0.0,
89
+ "clip_ratio/high_mean": 0.0,
90
+ "clip_ratio/low_mean": 0.0,
91
+ "clip_ratio/low_min": 0.0,
92
+ "clip_ratio/region_mean": 0.0,
93
+ "completions/clipped_ratio": 0.0,
94
+ "completions/max_length": 352.8,
95
+ "completions/max_terminated_length": 352.8,
96
+ "completions/mean_length": 287.7,
97
+ "completions/mean_terminated_length": 287.7,
98
+ "completions/min_length": 211.2,
99
+ "completions/min_terminated_length": 211.2,
100
+ "epoch": 0.04,
101
+ "frac_reward_zero_std": 0.0,
102
+ "grad_norm": 0.08897764980792999,
103
+ "learning_rate": 2e-05,
104
+ "loss": -0.0199,
105
+ "num_tokens": 76035.0,
106
+ "reward": 0.6102499961853027,
107
+ "reward_std": 0.21699187457561492,
108
+ "rewards/reward_RULER/mean": 0.6102499961853027,
109
+ "rewards/reward_RULER/std": 0.21699187606573106,
110
+ "step": 20
111
+ },
112
+ {
113
+ "clip_ratio/high_max": 0.0,
114
+ "clip_ratio/high_mean": 0.0,
115
+ "clip_ratio/low_mean": 0.0,
116
+ "clip_ratio/low_min": 0.0,
117
+ "clip_ratio/region_mean": 0.0,
118
+ "completions/clipped_ratio": 0.0,
119
+ "completions/max_length": 399.6,
120
+ "completions/max_terminated_length": 399.6,
121
+ "completions/mean_length": 348.525,
122
+ "completions/mean_terminated_length": 348.525,
123
+ "completions/min_length": 276.0,
124
+ "completions/min_terminated_length": 276.0,
125
+ "epoch": 0.05,
126
+ "frac_reward_zero_std": 0.0,
127
+ "grad_norm": 0.08986642956733704,
128
+ "learning_rate": 2e-05,
129
+ "loss": -0.0047,
130
+ "num_tokens": 94320.0,
131
+ "reward": 0.6900000095367431,
132
+ "reward_std": 0.17352139949798584,
133
+ "rewards/reward_RULER/mean": 0.6900000095367431,
134
+ "rewards/reward_RULER/std": 0.17352140620350837,
135
+ "step": 25
136
+ },
137
+ {
138
+ "clip_ratio/high_max": 0.0,
139
+ "clip_ratio/high_mean": 0.0,
140
+ "clip_ratio/low_mean": 0.0,
141
+ "clip_ratio/low_min": 0.0,
142
+ "clip_ratio/region_mean": 0.0,
143
+ "completions/clipped_ratio": 0.0,
144
+ "completions/max_length": 317.2,
145
+ "completions/max_terminated_length": 317.2,
146
+ "completions/mean_length": 264.425,
147
+ "completions/mean_terminated_length": 264.425,
148
+ "completions/min_length": 218.0,
149
+ "completions/min_terminated_length": 218.0,
150
+ "epoch": 0.06,
151
+ "frac_reward_zero_std": 0.0,
152
+ "grad_norm": 0.10734544694423676,
153
+ "learning_rate": 2e-05,
154
+ "loss": -0.0192,
155
+ "num_tokens": 109321.0,
156
+ "reward": 0.6507499814033508,
157
+ "reward_std": 0.2275388702750206,
158
+ "rewards/reward_RULER/mean": 0.6507499814033508,
159
+ "rewards/reward_RULER/std": 0.22753888070583345,
160
+ "step": 30
161
+ },
162
+ {
163
+ "clip_ratio/high_max": 0.0,
164
+ "clip_ratio/high_mean": 0.0,
165
+ "clip_ratio/low_mean": 0.0,
166
+ "clip_ratio/low_min": 0.0,
167
+ "clip_ratio/region_mean": 0.0,
168
+ "completions/clipped_ratio": 0.0,
169
+ "completions/max_length": 341.6,
170
+ "completions/max_terminated_length": 341.6,
171
+ "completions/mean_length": 282.1,
172
+ "completions/mean_terminated_length": 282.1,
173
+ "completions/min_length": 215.0,
174
+ "completions/min_terminated_length": 215.0,
175
+ "epoch": 0.07,
176
+ "frac_reward_zero_std": 0.0,
177
+ "grad_norm": 0.10805181413888931,
178
+ "learning_rate": 2e-05,
179
+ "loss": -0.0201,
180
+ "num_tokens": 124981.0,
181
+ "reward": 0.8084999680519104,
182
+ "reward_std": 0.09627426490187645,
183
+ "rewards/reward_RULER/mean": 0.8084999680519104,
184
+ "rewards/reward_RULER/std": 0.09627425670623779,
185
+ "step": 35
186
+ },
187
+ {
188
+ "clip_ratio/high_max": 0.0,
189
+ "clip_ratio/high_mean": 0.0,
190
+ "clip_ratio/low_mean": 0.0,
191
+ "clip_ratio/low_min": 0.0,
192
+ "clip_ratio/region_mean": 0.0,
193
+ "completions/clipped_ratio": 0.0,
194
+ "completions/max_length": 402.0,
195
+ "completions/max_terminated_length": 402.0,
196
+ "completions/mean_length": 320.85,
197
+ "completions/mean_terminated_length": 320.85,
198
+ "completions/min_length": 247.6,
199
+ "completions/min_terminated_length": 247.6,
200
+ "epoch": 0.08,
201
+ "frac_reward_zero_std": 0.0,
202
+ "grad_norm": 0.10829323530197144,
203
+ "learning_rate": 2e-05,
204
+ "loss": -0.0568,
205
+ "num_tokens": 142191.0,
206
+ "reward": 0.4919999957084656,
207
+ "reward_std": 0.28483160138130187,
208
+ "rewards/reward_RULER/mean": 0.4919999957084656,
209
+ "rewards/reward_RULER/std": 0.2848316073417664,
210
+ "step": 40
211
+ },
212
+ {
213
+ "clip_ratio/high_max": 0.0,
214
+ "clip_ratio/high_mean": 0.0,
215
+ "clip_ratio/low_mean": 0.0,
216
+ "clip_ratio/low_min": 0.0,
217
+ "clip_ratio/region_mean": 0.0,
218
+ "completions/clipped_ratio": 0.0,
219
+ "completions/max_length": 364.8,
220
+ "completions/max_terminated_length": 364.8,
221
+ "completions/mean_length": 306.425,
222
+ "completions/mean_terminated_length": 306.425,
223
+ "completions/min_length": 256.2,
224
+ "completions/min_terminated_length": 256.2,
225
+ "epoch": 0.09,
226
+ "frac_reward_zero_std": 0.0,
227
+ "grad_norm": 0.11349724978208542,
228
+ "learning_rate": 2e-05,
229
+ "loss": -0.0199,
230
+ "num_tokens": 158856.0,
231
+ "reward": 0.840499997138977,
232
+ "reward_std": 0.10326243191957474,
233
+ "rewards/reward_RULER/mean": 0.840499997138977,
234
+ "rewards/reward_RULER/std": 0.10326242446899414,
235
+ "step": 45
236
+ },
237
+ {
238
+ "clip_ratio/high_max": 0.0,
239
+ "clip_ratio/high_mean": 0.0,
240
+ "clip_ratio/low_mean": 0.0,
241
+ "clip_ratio/low_min": 0.0,
242
+ "clip_ratio/region_mean": 0.0,
243
+ "completions/clipped_ratio": 0.0,
244
+ "completions/max_length": 487.6,
245
+ "completions/max_terminated_length": 487.6,
246
+ "completions/mean_length": 372.0,
247
+ "completions/mean_terminated_length": 372.0,
248
+ "completions/min_length": 292.8,
249
+ "completions/min_terminated_length": 292.8,
250
+ "epoch": 0.1,
251
+ "frac_reward_zero_std": 0.0,
252
+ "grad_norm": 0.08077746629714966,
253
+ "learning_rate": 2e-05,
254
+ "loss": -0.046,
255
+ "num_tokens": 178128.0,
256
+ "reward": 0.6640000164508819,
257
+ "reward_std": 0.19458874613046645,
258
+ "rewards/reward_RULER/mean": 0.6640000164508819,
259
+ "rewards/reward_RULER/std": 0.19458874836564063,
260
+ "step": 50
261
+ },
262
+ {
263
+ "clip_ratio/high_max": 0.0,
264
+ "clip_ratio/high_mean": 0.0,
265
+ "clip_ratio/low_mean": 0.0,
266
+ "clip_ratio/low_min": 0.0,
267
+ "clip_ratio/region_mean": 0.0,
268
+ "completions/clipped_ratio": 0.0,
269
+ "completions/max_length": 458.6,
270
+ "completions/max_terminated_length": 458.6,
271
+ "completions/mean_length": 356.975,
272
+ "completions/mean_terminated_length": 356.975,
273
+ "completions/min_length": 248.6,
274
+ "completions/min_terminated_length": 248.6,
275
+ "epoch": 0.11,
276
+ "frac_reward_zero_std": 0.0,
277
+ "grad_norm": 0.1471513956785202,
278
+ "learning_rate": 2e-05,
279
+ "loss": -0.007,
280
+ "num_tokens": 196759.0,
281
+ "reward": 0.692000025510788,
282
+ "reward_std": 0.15977548956871032,
283
+ "rewards/reward_RULER/mean": 0.692000025510788,
284
+ "rewards/reward_RULER/std": 0.1597754918038845,
285
+ "step": 55
286
+ },
287
+ {
288
+ "clip_ratio/high_max": 0.0,
289
+ "clip_ratio/high_mean": 0.0,
290
+ "clip_ratio/low_mean": 0.0,
291
+ "clip_ratio/low_min": 0.0,
292
+ "clip_ratio/region_mean": 0.0,
293
+ "completions/clipped_ratio": 0.0,
294
+ "completions/max_length": 390.6,
295
+ "completions/max_terminated_length": 390.6,
296
+ "completions/mean_length": 319.35,
297
+ "completions/mean_terminated_length": 319.35,
298
+ "completions/min_length": 260.4,
299
+ "completions/min_terminated_length": 260.4,
300
+ "epoch": 0.12,
301
+ "frac_reward_zero_std": 0.0,
302
+ "grad_norm": 0.11460787057876587,
303
+ "learning_rate": 2e-05,
304
+ "loss": -0.0132,
305
+ "num_tokens": 213893.0,
306
+ "reward": 0.5780000209808349,
307
+ "reward_std": 0.22899727523326874,
308
+ "rewards/reward_RULER/mean": 0.5780000209808349,
309
+ "rewards/reward_RULER/std": 0.22899727821350097,
310
+ "step": 60
311
+ },
312
+ {
313
+ "clip_ratio/high_max": 0.0,
314
+ "clip_ratio/high_mean": 0.0,
315
+ "clip_ratio/low_mean": 0.0,
316
+ "clip_ratio/low_min": 0.0,
317
+ "clip_ratio/region_mean": 0.0,
318
+ "completions/clipped_ratio": 0.0,
319
+ "completions/max_length": 412.2,
320
+ "completions/max_terminated_length": 412.2,
321
+ "completions/mean_length": 335.425,
322
+ "completions/mean_terminated_length": 335.425,
323
+ "completions/min_length": 258.8,
324
+ "completions/min_terminated_length": 258.8,
325
+ "epoch": 0.13,
326
+ "frac_reward_zero_std": 0.0,
327
+ "grad_norm": 0.14172637462615967,
328
+ "learning_rate": 2e-05,
329
+ "loss": 0.0509,
330
+ "num_tokens": 231726.0,
331
+ "reward": 0.6589999973773957,
332
+ "reward_std": 0.2158222407102585,
333
+ "rewards/reward_RULER/mean": 0.6589999973773957,
334
+ "rewards/reward_RULER/std": 0.2158222481608391,
335
+ "step": 65
336
+ },
337
+ {
338
+ "clip_ratio/high_max": 0.0,
339
+ "clip_ratio/high_mean": 0.0,
340
+ "clip_ratio/low_mean": 0.0,
341
+ "clip_ratio/low_min": 0.0,
342
+ "clip_ratio/region_mean": 0.0,
343
+ "completions/clipped_ratio": 0.0,
344
+ "completions/max_length": 462.6,
345
+ "completions/max_terminated_length": 462.6,
346
+ "completions/mean_length": 356.325,
347
+ "completions/mean_terminated_length": 356.325,
348
+ "completions/min_length": 263.4,
349
+ "completions/min_terminated_length": 263.4,
350
+ "epoch": 0.14,
351
+ "frac_reward_zero_std": 0.0,
352
+ "grad_norm": 0.09136804193258286,
353
+ "learning_rate": 2e-05,
354
+ "loss": -0.0243,
355
+ "num_tokens": 250419.0,
356
+ "reward": 0.8337499976158143,
357
+ "reward_std": 0.09814090728759765,
358
+ "rewards/reward_RULER/mean": 0.8337499976158143,
359
+ "rewards/reward_RULER/std": 0.09814090579748154,
360
+ "step": 70
361
+ },
362
+ {
363
+ "clip_ratio/high_max": 0.0,
364
+ "clip_ratio/high_mean": 0.0,
365
+ "clip_ratio/low_mean": 0.0,
366
+ "clip_ratio/low_min": 0.0,
367
+ "clip_ratio/region_mean": 0.0,
368
+ "completions/clipped_ratio": 0.0,
369
+ "completions/max_length": 592.2,
370
+ "completions/max_terminated_length": 592.2,
371
+ "completions/mean_length": 437.95,
372
+ "completions/mean_terminated_length": 437.95,
373
+ "completions/min_length": 318.0,
374
+ "completions/min_terminated_length": 318.0,
375
+ "epoch": 0.15,
376
+ "frac_reward_zero_std": 0.0,
377
+ "grad_norm": 0.13334737718105316,
378
+ "learning_rate": 2e-05,
379
+ "loss": -0.0707,
380
+ "num_tokens": 272457.0,
381
+ "reward": 0.8289999961853027,
382
+ "reward_std": 0.09495665803551674,
383
+ "rewards/reward_RULER/mean": 0.8289999961853027,
384
+ "rewards/reward_RULER/std": 0.09495665058493614,
385
+ "step": 75
386
+ },
387
+ {
388
+ "clip_ratio/high_max": 0.0,
389
+ "clip_ratio/high_mean": 0.0,
390
+ "clip_ratio/low_mean": 0.0,
391
+ "clip_ratio/low_min": 0.0,
392
+ "clip_ratio/region_mean": 0.0,
393
+ "completions/clipped_ratio": 0.0,
394
+ "completions/max_length": 511.4,
395
+ "completions/max_terminated_length": 511.4,
396
+ "completions/mean_length": 399.4,
397
+ "completions/mean_terminated_length": 399.4,
398
+ "completions/min_length": 304.2,
399
+ "completions/min_terminated_length": 304.2,
400
+ "epoch": 0.16,
401
+ "frac_reward_zero_std": 0.0,
402
+ "grad_norm": 0.12988491356372833,
403
+ "learning_rate": 2e-05,
404
+ "loss": -0.0288,
405
+ "num_tokens": 292801.0,
406
+ "reward": 0.7097499966621399,
407
+ "reward_std": 0.1876833036541939,
408
+ "rewards/reward_RULER/mean": 0.7097499966621399,
409
+ "rewards/reward_RULER/std": 0.1876833200454712,
410
+ "step": 80
411
+ },
412
+ {
413
+ "clip_ratio/high_max": 0.0,
414
+ "clip_ratio/high_mean": 0.0,
415
+ "clip_ratio/low_mean": 0.0,
416
+ "clip_ratio/low_min": 0.0,
417
+ "clip_ratio/region_mean": 0.0,
418
+ "completions/clipped_ratio": 0.0,
419
+ "completions/max_length": 502.6,
420
+ "completions/max_terminated_length": 502.6,
421
+ "completions/mean_length": 406.075,
422
+ "completions/mean_terminated_length": 406.075,
423
+ "completions/min_length": 307.2,
424
+ "completions/min_terminated_length": 307.2,
425
+ "epoch": 0.17,
426
+ "frac_reward_zero_std": 0.0,
427
+ "grad_norm": 0.08936081826686859,
428
+ "learning_rate": 2e-05,
429
+ "loss": -0.0246,
430
+ "num_tokens": 313420.0,
431
+ "reward": 0.7280499935150146,
432
+ "reward_std": 0.16731963455677032,
433
+ "rewards/reward_RULER/mean": 0.7280499935150146,
434
+ "rewards/reward_RULER/std": 0.1673196241259575,
435
+ "step": 85
436
+ },
437
+ {
438
+ "clip_ratio/high_max": 0.0,
439
+ "clip_ratio/high_mean": 0.0,
440
+ "clip_ratio/low_mean": 0.0,
441
+ "clip_ratio/low_min": 0.0,
442
+ "clip_ratio/region_mean": 0.0,
443
+ "completions/clipped_ratio": 0.0,
444
+ "completions/max_length": 519.8,
445
+ "completions/max_terminated_length": 519.8,
446
+ "completions/mean_length": 409.4,
447
+ "completions/mean_terminated_length": 409.4,
448
+ "completions/min_length": 316.4,
449
+ "completions/min_terminated_length": 316.4,
450
+ "epoch": 0.18,
451
+ "frac_reward_zero_std": 0.0,
452
+ "grad_norm": 0.13966774940490723,
453
+ "learning_rate": 2e-05,
454
+ "loss": 0.0079,
455
+ "num_tokens": 334212.0,
456
+ "reward": 0.6485000014305115,
457
+ "reward_std": 0.2173968069255352,
458
+ "rewards/reward_RULER/mean": 0.6485000014305115,
459
+ "rewards/reward_RULER/std": 0.21739680990576743,
460
+ "step": 90
461
+ },
462
+ {
463
+ "clip_ratio/high_max": 0.0,
464
+ "clip_ratio/high_mean": 0.0,
465
+ "clip_ratio/low_mean": 0.0,
466
+ "clip_ratio/low_min": 0.0,
467
+ "clip_ratio/region_mean": 0.0,
468
+ "completions/clipped_ratio": 0.0,
469
+ "completions/max_length": 648.0,
470
+ "completions/max_terminated_length": 648.0,
471
+ "completions/mean_length": 453.55,
472
+ "completions/mean_terminated_length": 453.55,
473
+ "completions/min_length": 353.4,
474
+ "completions/min_terminated_length": 353.4,
475
+ "epoch": 0.19,
476
+ "frac_reward_zero_std": 0.0,
477
+ "grad_norm": 0.0977742075920105,
478
+ "learning_rate": 2e-05,
479
+ "loss": -0.0614,
480
+ "num_tokens": 356746.0,
481
+ "reward": 0.7827499985694886,
482
+ "reward_std": 0.12635422199964524,
483
+ "rewards/reward_RULER/mean": 0.7827499985694886,
484
+ "rewards/reward_RULER/std": 0.12635422348976136,
485
+ "step": 95
486
+ },
487
+ {
488
+ "clip_ratio/high_max": 0.0,
489
+ "clip_ratio/high_mean": 0.0,
490
+ "clip_ratio/low_mean": 0.0,
491
+ "clip_ratio/low_min": 0.0,
492
+ "clip_ratio/region_mean": 0.0,
493
+ "completions/clipped_ratio": 0.0,
494
+ "completions/max_length": 442.8,
495
+ "completions/max_terminated_length": 442.8,
496
+ "completions/mean_length": 358.375,
497
+ "completions/mean_terminated_length": 358.375,
498
+ "completions/min_length": 256.4,
499
+ "completions/min_terminated_length": 256.4,
500
+ "epoch": 0.2,
501
+ "frac_reward_zero_std": 0.0,
502
+ "grad_norm": 0.15935246646404266,
503
+ "learning_rate": 2e-05,
504
+ "loss": -0.0441,
505
+ "num_tokens": 375489.0,
506
+ "reward": 0.7475000023841858,
507
+ "reward_std": 0.16528161987662315,
508
+ "rewards/reward_RULER/mean": 0.7475000023841858,
509
+ "rewards/reward_RULER/std": 0.16528161764144897,
510
+ "step": 100
511
+ },
512
+ {
513
+ "clip_ratio/high_max": 0.0,
514
+ "clip_ratio/high_mean": 0.0,
515
+ "clip_ratio/low_mean": 0.0,
516
+ "clip_ratio/low_min": 0.0,
517
+ "clip_ratio/region_mean": 0.0,
518
+ "completions/clipped_ratio": 0.0,
519
+ "completions/max_length": 588.6,
520
+ "completions/max_terminated_length": 588.6,
521
+ "completions/mean_length": 452.175,
522
+ "completions/mean_terminated_length": 452.175,
523
+ "completions/min_length": 344.6,
524
+ "completions/min_terminated_length": 344.6,
525
+ "epoch": 0.21,
526
+ "frac_reward_zero_std": 0.0,
527
+ "grad_norm": 0.1050405278801918,
528
+ "learning_rate": 2e-05,
529
+ "loss": 0.0209,
530
+ "num_tokens": 398008.0,
531
+ "reward": 0.8627500057220459,
532
+ "reward_std": 0.08394425511360168,
533
+ "rewards/reward_RULER/mean": 0.8627500057220459,
534
+ "rewards/reward_RULER/std": 0.08394426107406616,
535
+ "step": 105
536
+ },
537
+ {
538
+ "clip_ratio/high_max": 0.0,
539
+ "clip_ratio/high_mean": 0.0,
540
+ "clip_ratio/low_mean": 0.0,
541
+ "clip_ratio/low_min": 0.0,
542
+ "clip_ratio/region_mean": 0.0,
543
+ "completions/clipped_ratio": 0.0,
544
+ "completions/max_length": 520.0,
545
+ "completions/max_terminated_length": 520.0,
546
+ "completions/mean_length": 450.15,
547
+ "completions/mean_terminated_length": 450.15,
548
+ "completions/min_length": 352.0,
549
+ "completions/min_terminated_length": 352.0,
550
+ "epoch": 0.22,
551
+ "frac_reward_zero_std": 0.0,
552
+ "grad_norm": 0.1688801646232605,
553
+ "learning_rate": 2e-05,
554
+ "loss": -0.0058,
555
+ "num_tokens": 420382.0,
556
+ "reward": 0.7672500133514404,
557
+ "reward_std": 0.14555928111076355,
558
+ "rewards/reward_RULER/mean": 0.7672500133514404,
559
+ "rewards/reward_RULER/std": 0.14555927962064744,
560
+ "step": 110
561
+ },
562
+ {
563
+ "clip_ratio/high_max": 0.0,
564
+ "clip_ratio/high_mean": 0.0,
565
+ "clip_ratio/low_mean": 0.0,
566
+ "clip_ratio/low_min": 0.0,
567
+ "clip_ratio/region_mean": 0.0,
568
+ "completions/clipped_ratio": 0.0,
569
+ "completions/max_length": 517.2,
570
+ "completions/max_terminated_length": 517.2,
571
+ "completions/mean_length": 420.9,
572
+ "completions/mean_terminated_length": 420.9,
573
+ "completions/min_length": 336.6,
574
+ "completions/min_terminated_length": 336.6,
575
+ "epoch": 0.23,
576
+ "frac_reward_zero_std": 0.0,
577
+ "grad_norm": 0.1674422323703766,
578
+ "learning_rate": 2e-05,
579
+ "loss": -0.0319,
580
+ "num_tokens": 441626.0,
581
+ "reward": 0.8227499961853028,
582
+ "reward_std": 0.11988024711608887,
583
+ "rewards/reward_RULER/mean": 0.8227499961853028,
584
+ "rewards/reward_RULER/std": 0.11988024786114693,
585
+ "step": 115
586
+ },
587
+ {
588
+ "clip_ratio/high_max": 0.0,
589
+ "clip_ratio/high_mean": 0.0,
590
+ "clip_ratio/low_mean": 0.0,
591
+ "clip_ratio/low_min": 0.0,
592
+ "clip_ratio/region_mean": 0.0,
593
+ "completions/clipped_ratio": 0.0,
594
+ "completions/max_length": 544.8,
595
+ "completions/max_terminated_length": 544.8,
596
+ "completions/mean_length": 451.1,
597
+ "completions/mean_terminated_length": 451.1,
598
+ "completions/min_length": 379.2,
599
+ "completions/min_terminated_length": 379.2,
600
+ "epoch": 0.24,
601
+ "frac_reward_zero_std": 0.0,
602
+ "grad_norm": 0.18309253454208374,
603
+ "learning_rate": 2e-05,
604
+ "loss": -0.0356,
605
+ "num_tokens": 464110.0,
606
+ "reward": 0.6797500014305115,
607
+ "reward_std": 0.20434648618102075,
608
+ "rewards/reward_RULER/mean": 0.6797500014305115,
609
+ "rewards/reward_RULER/std": 0.20434649735689164,
610
+ "step": 120
611
+ },
612
+ {
613
+ "clip_ratio/high_max": 0.0,
614
+ "clip_ratio/high_mean": 0.0,
615
+ "clip_ratio/low_mean": 0.0,
616
+ "clip_ratio/low_min": 0.0,
617
+ "clip_ratio/region_mean": 0.0,
618
+ "completions/clipped_ratio": 0.0,
619
+ "completions/max_length": 594.6,
620
+ "completions/max_terminated_length": 594.6,
621
+ "completions/mean_length": 495.2,
622
+ "completions/mean_terminated_length": 495.2,
623
+ "completions/min_length": 408.4,
624
+ "completions/min_terminated_length": 408.4,
625
+ "epoch": 0.25,
626
+ "frac_reward_zero_std": 0.0,
627
+ "grad_norm": 0.09583492577075958,
628
+ "learning_rate": 2e-05,
629
+ "loss": -0.0062,
630
+ "num_tokens": 488326.0,
631
+ "reward": 0.8042499899864197,
632
+ "reward_std": 0.11632050797343255,
633
+ "rewards/reward_RULER/mean": 0.8042499899864197,
634
+ "rewards/reward_RULER/std": 0.11632050722837448,
635
+ "step": 125
636
+ },
637
+ {
638
+ "clip_ratio/high_max": 0.0,
639
+ "clip_ratio/high_mean": 0.0,
640
+ "clip_ratio/low_mean": 0.0,
641
+ "clip_ratio/low_min": 0.0,
642
+ "clip_ratio/region_mean": 0.0,
643
+ "completions/clipped_ratio": 0.0,
644
+ "completions/max_length": 725.8,
645
+ "completions/max_terminated_length": 725.8,
646
+ "completions/mean_length": 521.125,
647
+ "completions/mean_terminated_length": 521.125,
648
+ "completions/min_length": 417.8,
649
+ "completions/min_terminated_length": 417.8,
650
+ "epoch": 0.26,
651
+ "frac_reward_zero_std": 0.0,
652
+ "grad_norm": 0.10735133290290833,
653
+ "learning_rate": 2e-05,
654
+ "loss": -0.0069,
655
+ "num_tokens": 513595.0,
656
+ "reward": 0.7964999794960022,
657
+ "reward_std": 0.13472943678498267,
658
+ "rewards/reward_RULER/mean": 0.7964999794960022,
659
+ "rewards/reward_RULER/std": 0.13472944796085357,
660
+ "step": 130
661
+ },
662
+ {
663
+ "clip_ratio/high_max": 0.0,
664
+ "clip_ratio/high_mean": 0.0,
665
+ "clip_ratio/low_mean": 0.0,
666
+ "clip_ratio/low_min": 0.0,
667
+ "clip_ratio/region_mean": 0.0,
668
+ "completions/clipped_ratio": 0.0,
669
+ "completions/max_length": 668.6,
670
+ "completions/max_terminated_length": 668.6,
671
+ "completions/mean_length": 571.25,
672
+ "completions/mean_terminated_length": 571.25,
673
+ "completions/min_length": 476.8,
674
+ "completions/min_terminated_length": 476.8,
675
+ "epoch": 0.27,
676
+ "frac_reward_zero_std": 0.0,
677
+ "grad_norm": 0.19455848634243011,
678
+ "learning_rate": 2e-05,
679
+ "loss": -0.0151,
680
+ "num_tokens": 540845.0,
681
+ "reward": 0.8171249985694885,
682
+ "reward_std": 0.12673728540539742,
683
+ "rewards/reward_RULER/mean": 0.8171249985694885,
684
+ "rewards/reward_RULER/std": 0.12673727795481682,
685
+ "step": 135
686
+ },
687
+ {
688
+ "clip_ratio/high_max": 0.0,
689
+ "clip_ratio/high_mean": 0.0,
690
+ "clip_ratio/low_mean": 0.0,
691
+ "clip_ratio/low_min": 0.0,
692
+ "clip_ratio/region_mean": 0.0,
693
+ "completions/clipped_ratio": 0.0,
694
+ "completions/max_length": 720.4,
695
+ "completions/max_terminated_length": 720.4,
696
+ "completions/mean_length": 550.225,
697
+ "completions/mean_terminated_length": 550.225,
698
+ "completions/min_length": 439.4,
699
+ "completions/min_terminated_length": 439.4,
700
+ "epoch": 0.28,
701
+ "frac_reward_zero_std": 0.0,
702
+ "grad_norm": 0.15606646239757538,
703
+ "learning_rate": 2e-05,
704
+ "loss": -0.0383,
705
+ "num_tokens": 567254.0,
706
+ "reward": 0.850249993801117,
707
+ "reward_std": 0.086809141933918,
708
+ "rewards/reward_RULER/mean": 0.850249993801117,
709
+ "rewards/reward_RULER/std": 0.08680914118885993,
710
+ "step": 140
711
+ },
712
+ {
713
+ "clip_ratio/high_max": 0.0,
714
+ "clip_ratio/high_mean": 0.0,
715
+ "clip_ratio/low_mean": 0.0,
716
+ "clip_ratio/low_min": 0.0,
717
+ "clip_ratio/region_mean": 0.0,
718
+ "completions/clipped_ratio": 0.0,
719
+ "completions/max_length": 692.4,
720
+ "completions/max_terminated_length": 692.4,
721
+ "completions/mean_length": 537.75,
722
+ "completions/mean_terminated_length": 537.75,
723
+ "completions/min_length": 408.2,
724
+ "completions/min_terminated_length": 408.2,
725
+ "epoch": 0.29,
726
+ "frac_reward_zero_std": 0.0,
727
+ "grad_norm": 0.17972718179225922,
728
+ "learning_rate": 2e-05,
729
+ "loss": 0.0376,
730
+ "num_tokens": 593108.0,
731
+ "reward": 0.7572499871253967,
732
+ "reward_std": 0.14755067527294158,
733
+ "rewards/reward_RULER/mean": 0.7572499871253967,
734
+ "rewards/reward_RULER/std": 0.14755066782236098,
735
+ "step": 145
736
+ },
737
+ {
738
+ "clip_ratio/high_max": 0.0,
739
+ "clip_ratio/high_mean": 0.0,
740
+ "clip_ratio/low_mean": 0.0,
741
+ "clip_ratio/low_min": 0.0,
742
+ "clip_ratio/region_mean": 0.0,
743
+ "completions/clipped_ratio": 0.0,
744
+ "completions/max_length": 749.8,
745
+ "completions/max_terminated_length": 749.8,
746
+ "completions/mean_length": 634.55,
747
+ "completions/mean_terminated_length": 634.55,
748
+ "completions/min_length": 501.8,
749
+ "completions/min_terminated_length": 501.8,
750
+ "epoch": 0.3,
751
+ "frac_reward_zero_std": 0.0,
752
+ "grad_norm": 0.15824082493782043,
753
+ "learning_rate": 2e-05,
754
+ "loss": 0.0078,
755
+ "num_tokens": 622890.0,
756
+ "reward": 0.751499992609024,
757
+ "reward_std": 0.12705863565206527,
758
+ "rewards/reward_RULER/mean": 0.751499992609024,
759
+ "rewards/reward_RULER/std": 0.12705863639712334,
760
+ "step": 150
761
+ },
762
+ {
763
+ "clip_ratio/high_max": 0.0,
764
+ "clip_ratio/high_mean": 0.0,
765
+ "clip_ratio/low_mean": 0.0,
766
+ "clip_ratio/low_min": 0.0,
767
+ "clip_ratio/region_mean": 0.0,
768
+ "completions/clipped_ratio": 0.0,
769
+ "completions/max_length": 723.4,
770
+ "completions/max_terminated_length": 723.4,
771
+ "completions/mean_length": 554.85,
772
+ "completions/mean_terminated_length": 554.85,
773
+ "completions/min_length": 431.6,
774
+ "completions/min_terminated_length": 431.6,
775
+ "epoch": 0.31,
776
+ "frac_reward_zero_std": 0.0,
777
+ "grad_norm": 0.15994799137115479,
778
+ "learning_rate": 2e-05,
779
+ "loss": -0.0153,
780
+ "num_tokens": 649412.0,
781
+ "reward": 0.8667500019073486,
782
+ "reward_std": 0.08592485263943672,
783
+ "rewards/reward_RULER/mean": 0.8667500019073486,
784
+ "rewards/reward_RULER/std": 0.08592485114932061,
785
+ "step": 155
786
+ },
787
+ {
788
+ "clip_ratio/high_max": 0.0,
789
+ "clip_ratio/high_mean": 0.0,
790
+ "clip_ratio/low_mean": 0.0,
791
+ "clip_ratio/low_min": 0.0,
792
+ "clip_ratio/region_mean": 0.0,
793
+ "completions/clipped_ratio": 0.0,
794
+ "completions/max_length": 741.0,
795
+ "completions/max_terminated_length": 741.0,
796
+ "completions/mean_length": 623.15,
797
+ "completions/mean_terminated_length": 623.15,
798
+ "completions/min_length": 488.6,
799
+ "completions/min_terminated_length": 488.6,
800
+ "epoch": 0.32,
801
+ "frac_reward_zero_std": 0.0,
802
+ "grad_norm": 0.1006745919585228,
803
+ "learning_rate": 2e-05,
804
+ "loss": -0.0423,
805
+ "num_tokens": 678730.0,
806
+ "reward": 0.8098500013351441,
807
+ "reward_std": 0.12717877328395844,
808
+ "rewards/reward_RULER/mean": 0.8098500013351441,
809
+ "rewards/reward_RULER/std": 0.1271787852048874,
810
+ "step": 160
811
+ },
812
+ {
813
+ "clip_ratio/high_max": 0.0,
814
+ "clip_ratio/high_mean": 0.0,
815
+ "clip_ratio/low_mean": 0.0,
816
+ "clip_ratio/low_min": 0.0,
817
+ "clip_ratio/region_mean": 0.0,
818
+ "completions/clipped_ratio": 0.0,
819
+ "completions/max_length": 843.0,
820
+ "completions/max_terminated_length": 843.0,
821
+ "completions/mean_length": 667.125,
822
+ "completions/mean_terminated_length": 667.125,
823
+ "completions/min_length": 533.8,
824
+ "completions/min_terminated_length": 533.8,
825
+ "epoch": 0.33,
826
+ "frac_reward_zero_std": 0.0,
827
+ "grad_norm": 0.1787230223417282,
828
+ "learning_rate": 2e-05,
829
+ "loss": -0.0314,
830
+ "num_tokens": 709711.0,
831
+ "reward": 0.8775000214576721,
832
+ "reward_std": 0.05196457579731941,
833
+ "rewards/reward_RULER/mean": 0.8775000214576721,
834
+ "rewards/reward_RULER/std": 0.05196457803249359,
835
+ "step": 165
836
+ },
837
+ {
838
+ "clip_ratio/high_max": 0.0,
839
+ "clip_ratio/high_mean": 0.0,
840
+ "clip_ratio/low_mean": 0.0,
841
+ "clip_ratio/low_min": 0.0,
842
+ "clip_ratio/region_mean": 0.0,
843
+ "completions/clipped_ratio": 0.0,
844
+ "completions/max_length": 884.2,
845
+ "completions/max_terminated_length": 884.2,
846
+ "completions/mean_length": 744.2,
847
+ "completions/mean_terminated_length": 744.2,
848
+ "completions/min_length": 619.2,
849
+ "completions/min_terminated_length": 619.2,
850
+ "epoch": 0.34,
851
+ "frac_reward_zero_std": 0.0,
852
+ "grad_norm": 0.12575370073318481,
853
+ "learning_rate": 2e-05,
854
+ "loss": -0.0316,
855
+ "num_tokens": 743839.0,
856
+ "reward": 0.7491249918937684,
857
+ "reward_std": 0.15893839821219444,
858
+ "rewards/reward_RULER/mean": 0.7491249918937684,
859
+ "rewards/reward_RULER/std": 0.15893840193748474,
860
+ "step": 170
861
+ },
862
+ {
863
+ "clip_ratio/high_max": 0.0,
864
+ "clip_ratio/high_mean": 0.0,
865
+ "clip_ratio/low_mean": 0.0,
866
+ "clip_ratio/low_min": 0.0,
867
+ "clip_ratio/region_mean": 0.0,
868
+ "completions/clipped_ratio": 0.0,
869
+ "completions/max_length": 947.6,
870
+ "completions/max_terminated_length": 947.6,
871
+ "completions/mean_length": 719.25,
872
+ "completions/mean_terminated_length": 719.25,
873
+ "completions/min_length": 557.2,
874
+ "completions/min_terminated_length": 557.2,
875
+ "epoch": 0.35,
876
+ "frac_reward_zero_std": 0.0,
877
+ "grad_norm": 0.14867401123046875,
878
+ "learning_rate": 2e-05,
879
+ "loss": -0.0638,
880
+ "num_tokens": 776953.0,
881
+ "reward": 0.7017499923706054,
882
+ "reward_std": 0.18066229447722434,
883
+ "rewards/reward_RULER/mean": 0.7017499923706054,
884
+ "rewards/reward_RULER/std": 0.1806623049080372,
885
+ "step": 175
886
+ },
887
+ {
888
+ "clip_ratio/high_max": 0.0,
889
+ "clip_ratio/high_mean": 0.0,
890
+ "clip_ratio/low_mean": 0.0,
891
+ "clip_ratio/low_min": 0.0,
892
+ "clip_ratio/region_mean": 0.0,
893
+ "completions/clipped_ratio": 0.0,
894
+ "completions/max_length": 788.2,
895
+ "completions/max_terminated_length": 788.2,
896
+ "completions/mean_length": 660.025,
897
+ "completions/mean_terminated_length": 660.025,
898
+ "completions/min_length": 543.6,
899
+ "completions/min_terminated_length": 543.6,
900
+ "epoch": 0.36,
901
+ "frac_reward_zero_std": 0.0,
902
+ "grad_norm": 0.16206932067871094,
903
+ "learning_rate": 2e-05,
904
+ "loss": -0.0251,
905
+ "num_tokens": 807666.0,
906
+ "reward": 0.7729999899864197,
907
+ "reward_std": 0.14922719374299048,
908
+ "rewards/reward_RULER/mean": 0.7729999899864197,
909
+ "rewards/reward_RULER/std": 0.14922720938920975,
910
+ "step": 180
911
+ },
912
+ {
913
+ "clip_ratio/high_max": 0.0,
914
+ "clip_ratio/high_mean": 0.0,
915
+ "clip_ratio/low_mean": 0.0,
916
+ "clip_ratio/low_min": 0.0,
917
+ "clip_ratio/region_mean": 0.0,
918
+ "completions/clipped_ratio": 0.0,
919
+ "completions/max_length": 992.2,
920
+ "completions/max_terminated_length": 992.2,
921
+ "completions/mean_length": 761.05,
922
+ "completions/mean_terminated_length": 761.05,
923
+ "completions/min_length": 593.2,
924
+ "completions/min_terminated_length": 593.2,
925
+ "epoch": 0.37,
926
+ "frac_reward_zero_std": 0.0,
927
+ "grad_norm": 0.15697941184043884,
928
+ "learning_rate": 2e-05,
929
+ "loss": 0.0131,
930
+ "num_tokens": 842444.0,
931
+ "reward": 0.8725000023841858,
932
+ "reward_std": 0.08397083282470703,
933
+ "rewards/reward_RULER/mean": 0.8725000023841858,
934
+ "rewards/reward_RULER/std": 0.08397082295268773,
935
+ "step": 185
936
+ },
937
+ {
938
+ "clip_ratio/high_max": 0.0,
939
+ "clip_ratio/high_mean": 0.0,
940
+ "clip_ratio/low_mean": 0.0,
941
+ "clip_ratio/low_min": 0.0,
942
+ "clip_ratio/region_mean": 0.0,
943
+ "completions/clipped_ratio": 0.0,
944
+ "completions/max_length": 1032.6,
945
+ "completions/max_terminated_length": 1032.6,
946
+ "completions/mean_length": 800.2,
947
+ "completions/mean_terminated_length": 800.2,
948
+ "completions/min_length": 617.2,
949
+ "completions/min_terminated_length": 617.2,
950
+ "epoch": 0.38,
951
+ "frac_reward_zero_std": 0.0,
952
+ "grad_norm": 0.1354055255651474,
953
+ "learning_rate": 2e-05,
954
+ "loss": -0.0065,
955
+ "num_tokens": 878788.0,
956
+ "reward": 0.6302499890327453,
957
+ "reward_std": 0.22836896628141404,
958
+ "rewards/reward_RULER/mean": 0.6302499890327453,
959
+ "rewards/reward_RULER/std": 0.22836897671222686,
960
+ "step": 190
961
+ },
962
+ {
963
+ "clip_ratio/high_max": 0.0,
964
+ "clip_ratio/high_mean": 0.0,
965
+ "clip_ratio/low_mean": 0.0,
966
+ "clip_ratio/low_min": 0.0,
967
+ "clip_ratio/region_mean": 0.0,
968
+ "completions/clipped_ratio": 0.0,
969
+ "completions/max_length": 928.8,
970
+ "completions/max_terminated_length": 928.8,
971
+ "completions/mean_length": 767.375,
972
+ "completions/mean_terminated_length": 767.375,
973
+ "completions/min_length": 637.0,
974
+ "completions/min_terminated_length": 637.0,
975
+ "epoch": 0.39,
976
+ "frac_reward_zero_std": 0.0,
977
+ "grad_norm": 0.1156788021326065,
978
+ "learning_rate": 2e-05,
979
+ "loss": -0.0209,
980
+ "num_tokens": 913851.0,
981
+ "reward": 0.7934999942779541,
982
+ "reward_std": 0.12420440688729287,
983
+ "rewards/reward_RULER/mean": 0.7934999942779541,
984
+ "rewards/reward_RULER/std": 0.12420440539717674,
985
+ "step": 195
986
+ },
987
+ {
988
+ "clip_ratio/high_max": 0.0,
989
+ "clip_ratio/high_mean": 0.0,
990
+ "clip_ratio/low_mean": 0.0,
991
+ "clip_ratio/low_min": 0.0,
992
+ "clip_ratio/region_mean": 0.0,
993
+ "completions/clipped_ratio": 0.0,
994
+ "completions/max_length": 1105.6,
995
+ "completions/max_terminated_length": 1105.6,
996
+ "completions/mean_length": 902.275,
997
+ "completions/mean_terminated_length": 902.275,
998
+ "completions/min_length": 727.6,
999
+ "completions/min_terminated_length": 727.6,
1000
+ "epoch": 0.4,
1001
+ "frac_reward_zero_std": 0.0,
1002
+ "grad_norm": 0.14207735657691956,
1003
+ "learning_rate": 2e-05,
1004
+ "loss": -0.0085,
1005
+ "num_tokens": 954318.0,
1006
+ "reward": 0.8785000205039978,
1007
+ "reward_std": 0.07570790350437165,
1008
+ "rewards/reward_RULER/mean": 0.8785000205039978,
1009
+ "rewards/reward_RULER/std": 0.07570790350437165,
1010
+ "step": 200
1011
+ }
1012
+ ],
1013
+ "logging_steps": 5,
1014
+ "max_steps": 500,
1015
+ "num_input_tokens_seen": 954318,
1016
+ "num_train_epochs": 1,
1017
+ "save_steps": 50,
1018
+ "stateful_callbacks": {
1019
+ "TrainerControl": {
1020
+ "args": {
1021
+ "should_epoch_stop": false,
1022
+ "should_evaluate": false,
1023
+ "should_log": false,
1024
+ "should_save": true,
1025
+ "should_training_stop": false
1026
+ },
1027
+ "attributes": {}
1028
+ }
1029
+ },
1030
+ "total_flos": 0.0,
1031
+ "train_batch_size": 2,
1032
+ "trial_name": null,
1033
+ "trial_params": null
1034
+ }
training_checkpoints/checkpoint-200/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af65584c0ca1ceaadf5d407daec36734fd88f9cf7bf23e3101b628c0fd6cfd9d
3
+ size 6801
training_checkpoints/checkpoint-200/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
training_checkpoints/checkpoint-50/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-14B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3-14B
7
+ - grpo
8
+ - lora
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.16.0
training_checkpoints/checkpoint-50/adapter_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen3-14B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "v_proj"
30
+ ],
31
+ "task_type": "CAUSAL_LM",
32
+ "trainable_token_indices": null,
33
+ "use_dora": false,
34
+ "use_qalora": false,
35
+ "use_rslora": false
36
+ }
training_checkpoints/checkpoint-50/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edff927059f359992bdb10ba934554d4bfe04eeeecc42531b5475281c754aca4
3
+ size 83907640