MeridianVector commited on
Commit
c527dee
·
verified ·
1 Parent(s): aae5a82

Upload folder using huggingface_hub

Browse files
Files changed (24) hide show
  1. .gitattributes +2 -0
  2. checkpoints/grpo-step-100/README.md +67 -0
  3. checkpoints/grpo-step-100/checkpoint-100/README.md +209 -0
  4. checkpoints/grpo-step-100/checkpoint-100/adapter_config.json +46 -0
  5. checkpoints/grpo-step-100/checkpoint-100/adapter_model.safetensors +3 -0
  6. checkpoints/grpo-step-100/checkpoint-100/chat_template.jinja +88 -0
  7. checkpoints/grpo-step-100/checkpoint-100/optimizer.pt +3 -0
  8. checkpoints/grpo-step-100/checkpoint-100/rng_state.pth +3 -0
  9. checkpoints/grpo-step-100/checkpoint-100/scheduler.pt +3 -0
  10. checkpoints/grpo-step-100/checkpoint-100/tokenizer.json +3 -0
  11. checkpoints/grpo-step-100/checkpoint-100/tokenizer_config.json +33 -0
  12. checkpoints/grpo-step-100/checkpoint-100/trainer_state.json +574 -0
  13. checkpoints/grpo-step-100/checkpoint-100/training_args.bin +3 -0
  14. checkpoints/grpo-step-100/checkpoint-50/README.md +209 -0
  15. checkpoints/grpo-step-100/checkpoint-50/adapter_config.json +46 -0
  16. checkpoints/grpo-step-100/checkpoint-50/adapter_model.safetensors +3 -0
  17. checkpoints/grpo-step-100/checkpoint-50/chat_template.jinja +88 -0
  18. checkpoints/grpo-step-100/checkpoint-50/optimizer.pt +3 -0
  19. checkpoints/grpo-step-100/checkpoint-50/rng_state.pth +3 -0
  20. checkpoints/grpo-step-100/checkpoint-50/scheduler.pt +3 -0
  21. checkpoints/grpo-step-100/checkpoint-50/tokenizer.json +3 -0
  22. checkpoints/grpo-step-100/checkpoint-50/tokenizer_config.json +33 -0
  23. checkpoints/grpo-step-100/checkpoint-50/trainer_state.json +304 -0
  24. checkpoints/grpo-step-100/checkpoint-50/training_args.bin +3 -0
.gitattributes CHANGED
@@ -34,3 +34,5 @@ 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
  checkpoints/grpo-step-50/checkpoint-50/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
  checkpoints/grpo-step-50/checkpoint-50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoints/grpo-step-100/checkpoint-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoints/grpo-step-100/checkpoint-50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
checkpoints/grpo-step-100/README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Jackrong/Qwopus3.5-9B-v3
3
+ library_name: transformers
4
+ model_name: v4-grpo
5
+ tags:
6
+ - generated_from_trainer
7
+ - grpo
8
+ - trl
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for v4-grpo
13
+
14
+ This model is a fine-tuned version of [Jackrong/Qwopus3.5-9B-v3](https://huggingface.co/Jackrong/Qwopus3.5-9B-v3).
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
+
34
+ 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).
35
+
36
+ ### Framework versions
37
+
38
+ - TRL: 1.0.0
39
+ - Transformers: 5.5.0
40
+ - Pytorch: 2.10.0+cu128
41
+ - Datasets: 4.8.4
42
+ - Tokenizers: 0.22.2
43
+
44
+ ## Citations
45
+
46
+ Cite GRPO as:
47
+
48
+ ```bibtex
49
+ @article{shao2024deepseekmath,
50
+ title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
51
+ 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},
52
+ year = 2024,
53
+ eprint = {arXiv:2402.03300},
54
+ }
55
+ ```
56
+
57
+ Cite TRL as:
58
+
59
+ ```bibtex
60
+ @software{vonwerra2020trl,
61
+ title = {{TRL: Transformers Reinforcement Learning}},
62
+ author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
63
+ license = {Apache-2.0},
64
+ url = {https://github.com/huggingface/trl},
65
+ year = {2020}
66
+ }
67
+ ```
checkpoints/grpo-step-100/checkpoint-100/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Jackrong/Qwopus3.5-9B-v3
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Jackrong/Qwopus3.5-9B-v3
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.18.1
checkpoints/grpo-step-100/checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Jackrong/Qwopus3.5-9B-v3",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "o_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "gate_proj",
36
+ "k_proj",
37
+ "up_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": true
46
+ }
checkpoints/grpo-step-100/checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98c1ffb415fdab545676413e189c8662851384492805d0dc17dcc5ca05e31af7
3
+ size 465602056
checkpoints/grpo-step-100/checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
86
+ <think>
87
+ ' }}
88
+ {%- endif %}
checkpoints/grpo-step-100/checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5d635356e49d7334fcc6f63bfeee85011fa08259541774a3f695367920d413c
3
+ size 236725541
checkpoints/grpo-step-100/checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f636873e3493040dc8151702cecaab845fd289d6ef239f3f2f3aa58bb7ecfdeb
3
+ size 14645
checkpoints/grpo-step-100/checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d409847397718e7ea4e37312980fc24718ed3e95ea2129a95f3bb5e0f30fdbf5
3
+ size 1465
checkpoints/grpo-step-100/checkpoint-100/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0848a62b3efcaac1ef8e29bea66fd083ef76d8d6fb2bdd483cb4dba81dc1c9a8
3
+ size 19989512
checkpoints/grpo-step-100/checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": false,
13
+ "model_max_length": 8192,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|vision_pad|>",
24
+ "padding_side": "right",
25
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>"
33
+ }
checkpoints/grpo-step-100/checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,574 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.09345794392523364,
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": 455.3333333333333,
20
+ "completions/max_terminated_length": 455.3333333333333,
21
+ "completions/mean_length": 370.1666666666667,
22
+ "completions/mean_terminated_length": 370.1666666666667,
23
+ "completions/min_length": 241.33333333333334,
24
+ "completions/min_terminated_length": 241.33333333333334,
25
+ "entropy": 0.20471833571791648,
26
+ "epoch": 0.004672897196261682,
27
+ "frac_reward_zero_std": 0.0,
28
+ "grad_norm": 0.5874403715133667,
29
+ "learning_rate": 2.0000000000000003e-06,
30
+ "loss": -0.0174385666847229,
31
+ "num_tokens": 10556.0,
32
+ "reward": 1.1229166984558105,
33
+ "reward_std": 0.21075093746185303,
34
+ "rewards/multiplicative_reward/mean": 1.1229166984558105,
35
+ "rewards/multiplicative_reward/std": 0.21075095236301422,
36
+ "step": 5,
37
+ "step_time": 175.64732578959973
38
+ },
39
+ {
40
+ "clip_ratio/high_max": 0.0,
41
+ "clip_ratio/high_mean": 0.0,
42
+ "clip_ratio/low_mean": 0.0001853372377809137,
43
+ "clip_ratio/low_min": 0.0001853372377809137,
44
+ "clip_ratio/region_mean": 0.0001853372377809137,
45
+ "completions/clipped_ratio": 0.0625,
46
+ "completions/max_length": 853.5,
47
+ "completions/max_terminated_length": 763.0,
48
+ "completions/mean_length": 642.9375,
49
+ "completions/mean_terminated_length": 625.2053833007812,
50
+ "completions/min_length": 511.0,
51
+ "completions/min_terminated_length": 511.0,
52
+ "entropy": 0.20119954496622086,
53
+ "epoch": 0.009345794392523364,
54
+ "frac_reward_zero_std": 0.0,
55
+ "grad_norm": 0.09654995054006577,
56
+ "learning_rate": 4.5e-06,
57
+ "loss": -0.09893683791160583,
58
+ "num_tokens": 21963.0,
59
+ "reward": 1.149999976158142,
60
+ "reward_std": 0.2208700068295002,
61
+ "rewards/multiplicative_reward/mean": 1.149999976158142,
62
+ "rewards/multiplicative_reward/std": 0.2208700142800808,
63
+ "step": 10,
64
+ "step_time": 315.6367059516
65
+ },
66
+ {
67
+ "clip_ratio/high_max": 0.0,
68
+ "clip_ratio/high_mean": 0.0,
69
+ "clip_ratio/low_mean": 0.0004878048785030842,
70
+ "clip_ratio/low_min": 0.0004878048785030842,
71
+ "clip_ratio/region_mean": 0.0004878048785030842,
72
+ "completions/clipped_ratio": 0.041666666666666664,
73
+ "completions/max_length": 762.3333333333334,
74
+ "completions/max_terminated_length": 761.3333333333334,
75
+ "completions/mean_length": 515.1666666666666,
76
+ "completions/mean_terminated_length": 502.4107259114583,
77
+ "completions/min_length": 296.0,
78
+ "completions/min_terminated_length": 296.0,
79
+ "entropy": 0.24918381869792938,
80
+ "epoch": 0.014018691588785047,
81
+ "frac_reward_zero_std": 0.0,
82
+ "grad_norm": 0.12115617096424103,
83
+ "learning_rate": 4.989935734988098e-06,
84
+ "loss": -0.14156837463378907,
85
+ "num_tokens": 35943.0,
86
+ "reward": 1.0958333412806194,
87
+ "reward_std": 0.35721248139937717,
88
+ "rewards/multiplicative_reward/mean": 1.0958333412806194,
89
+ "rewards/multiplicative_reward/std": 0.35721250623464584,
90
+ "step": 15,
91
+ "step_time": 391.1071364838002
92
+ },
93
+ {
94
+ "clip_ratio/high_max": 0.0,
95
+ "clip_ratio/high_mean": 0.0,
96
+ "clip_ratio/low_mean": 0.0,
97
+ "clip_ratio/low_min": 0.0,
98
+ "clip_ratio/region_mean": 0.0,
99
+ "completions/clipped_ratio": 0.1875,
100
+ "completions/max_length": 871.0,
101
+ "completions/max_terminated_length": 823.0,
102
+ "completions/mean_length": 706.0,
103
+ "completions/mean_terminated_length": 658.7124938964844,
104
+ "completions/min_length": 527.5,
105
+ "completions/min_terminated_length": 527.5,
106
+ "entropy": 0.18833256512880325,
107
+ "epoch": 0.018691588785046728,
108
+ "frac_reward_zero_std": 0.0,
109
+ "grad_norm": 0.16035032272338867,
110
+ "learning_rate": 4.949188496058089e-06,
111
+ "loss": -0.09449982643127441,
112
+ "num_tokens": 48487.0,
113
+ "reward": 1.0437499582767487,
114
+ "reward_std": 0.3550429940223694,
115
+ "rewards/multiplicative_reward/mean": 1.0437499582767487,
116
+ "rewards/multiplicative_reward/std": 0.3550429902970791,
117
+ "step": 20,
118
+ "step_time": 327.72734730440004
119
+ },
120
+ {
121
+ "clip_ratio/high_max": 0.0,
122
+ "clip_ratio/high_mean": 0.0,
123
+ "clip_ratio/low_mean": 8.510638144798577e-05,
124
+ "clip_ratio/low_min": 8.510638144798577e-05,
125
+ "clip_ratio/region_mean": 8.510638144798577e-05,
126
+ "completions/clipped_ratio": 0.041666666666666664,
127
+ "completions/max_length": 807.3333333333334,
128
+ "completions/max_terminated_length": 803.6666666666666,
129
+ "completions/mean_length": 596.9166666666666,
130
+ "completions/mean_terminated_length": 584.202392578125,
131
+ "completions/min_length": 427.3333333333333,
132
+ "completions/min_terminated_length": 427.3333333333333,
133
+ "entropy": 0.24548179060220718,
134
+ "epoch": 0.02336448598130841,
135
+ "frac_reward_zero_std": 0.0,
136
+ "grad_norm": 0.26090770959854126,
137
+ "learning_rate": 4.8776412907378845e-06,
138
+ "loss": -0.1003144383430481,
139
+ "num_tokens": 64301.0,
140
+ "reward": 1.18749996026357,
141
+ "reward_std": 0.20679950838287672,
142
+ "rewards/multiplicative_reward/mean": 1.18749996026357,
143
+ "rewards/multiplicative_reward/std": 0.20679953570167223,
144
+ "step": 25,
145
+ "step_time": 423.7583607568005
146
+ },
147
+ {
148
+ "clip_ratio/high_max": 0.0,
149
+ "clip_ratio/high_mean": 0.0,
150
+ "clip_ratio/low_mean": 0.0,
151
+ "clip_ratio/low_min": 0.0,
152
+ "clip_ratio/region_mean": 0.0,
153
+ "completions/clipped_ratio": 0.75,
154
+ "completions/max_length": 1024.0,
155
+ "completions/max_terminated_length": 474.0,
156
+ "completions/mean_length": 970.1875,
157
+ "completions/mean_terminated_length": 404.375,
158
+ "completions/min_length": 850.0,
159
+ "completions/min_terminated_length": 338.0,
160
+ "entropy": 0.15614256262779236,
161
+ "epoch": 0.028037383177570093,
162
+ "frac_reward_zero_std": 0.0,
163
+ "grad_norm": 0.0,
164
+ "learning_rate": 4.7761938666470405e-06,
165
+ "loss": -0.005558112263679504,
166
+ "num_tokens": 81048.0,
167
+ "reward": 0.4312499687075615,
168
+ "reward_std": 0.3087201565504074,
169
+ "rewards/multiplicative_reward/mean": 0.4312499687075615,
170
+ "rewards/multiplicative_reward/std": 0.3087201565504074,
171
+ "step": 30,
172
+ "step_time": 415.75604495680017
173
+ },
174
+ {
175
+ "clip_ratio/high_max": 0.0,
176
+ "clip_ratio/high_mean": 0.0,
177
+ "clip_ratio/low_mean": 0.0,
178
+ "clip_ratio/low_min": 0.0,
179
+ "clip_ratio/region_mean": 0.0,
180
+ "completions/clipped_ratio": 0.25,
181
+ "completions/max_length": 618.6666666666666,
182
+ "completions/max_terminated_length": 514.6666666666666,
183
+ "completions/mean_length": 536.375,
184
+ "completions/mean_terminated_length": 451.625,
185
+ "completions/min_length": 405.0,
186
+ "completions/min_terminated_length": 405.0,
187
+ "entropy": 0.1147035963833332,
188
+ "epoch": 0.03271028037383177,
189
+ "frac_reward_zero_std": 0.3333333333333333,
190
+ "grad_norm": 0.4312528967857361,
191
+ "learning_rate": 4.646121984004666e-06,
192
+ "loss": -0.06840584874153137,
193
+ "num_tokens": 95513.0,
194
+ "reward": 0.8583333392937978,
195
+ "reward_std": 0.23224478214979172,
196
+ "rewards/multiplicative_reward/mean": 0.8583333392937978,
197
+ "rewards/multiplicative_reward/std": 0.23224476476510367,
198
+ "step": 35,
199
+ "step_time": 313.75861934560055
200
+ },
201
+ {
202
+ "clip_ratio/high_max": 6.939625018276274e-05,
203
+ "clip_ratio/high_mean": 6.939625018276274e-05,
204
+ "clip_ratio/low_mean": 0.0,
205
+ "clip_ratio/low_min": 0.0,
206
+ "clip_ratio/region_mean": 6.939625018276274e-05,
207
+ "completions/clipped_ratio": 0.0625,
208
+ "completions/max_length": 870.5,
209
+ "completions/max_terminated_length": 797.5,
210
+ "completions/mean_length": 694.375,
211
+ "completions/mean_terminated_length": 675.4642944335938,
212
+ "completions/min_length": 566.5,
213
+ "completions/min_terminated_length": 566.5,
214
+ "entropy": 0.1549898698925972,
215
+ "epoch": 0.037383177570093455,
216
+ "frac_reward_zero_std": 0.0,
217
+ "grad_norm": 0.2594030499458313,
218
+ "learning_rate": 4.4890613722044526e-06,
219
+ "loss": 0.012206726521253587,
220
+ "num_tokens": 108071.0,
221
+ "reward": 1.2062499523162842,
222
+ "reward_std": 0.021777553483843803,
223
+ "rewards/multiplicative_reward/mean": 1.2062499523162842,
224
+ "rewards/multiplicative_reward/std": 0.021777544170618057,
225
+ "step": 40,
226
+ "step_time": 330.83437446999994
227
+ },
228
+ {
229
+ "clip_ratio/high_max": 0.0,
230
+ "clip_ratio/high_mean": 0.0,
231
+ "clip_ratio/low_mean": 0.0,
232
+ "clip_ratio/low_min": 0.0,
233
+ "clip_ratio/region_mean": 0.0,
234
+ "completions/clipped_ratio": 0.6666666666666666,
235
+ "completions/max_length": 1016.6666666666666,
236
+ "completions/max_terminated_length": 334.0,
237
+ "completions/mean_length": 909.625,
238
+ "completions/mean_terminated_length": 226.95833333333334,
239
+ "completions/min_length": 862.3333333333334,
240
+ "completions/min_terminated_length": 179.66666666666666,
241
+ "entropy": 0.0735762745141983,
242
+ "epoch": 0.04205607476635514,
243
+ "frac_reward_zero_std": 0.3333333333333333,
244
+ "grad_norm": 0.0,
245
+ "learning_rate": 4.3069871595684795e-06,
246
+ "loss": -0.00706263780593872,
247
+ "num_tokens": 131198.0,
248
+ "reward": 0.5687499915560087,
249
+ "reward_std": 0.0635174810886383,
250
+ "rewards/multiplicative_reward/mean": 0.5687499915560087,
251
+ "rewards/multiplicative_reward/std": 0.06351748605569203,
252
+ "step": 45,
253
+ "step_time": 596.8530479572007
254
+ },
255
+ {
256
+ "clip_ratio/high_max": 0.0,
257
+ "clip_ratio/high_mean": 0.0,
258
+ "clip_ratio/low_mean": 0.0,
259
+ "clip_ratio/low_min": 0.0,
260
+ "clip_ratio/region_mean": 0.0,
261
+ "completions/clipped_ratio": 0.25,
262
+ "completions/max_length": 877.0,
263
+ "completions/max_terminated_length": 829.0,
264
+ "completions/mean_length": 752.625,
265
+ "completions/mean_terminated_length": 690.875,
266
+ "completions/min_length": 610.5,
267
+ "completions/min_terminated_length": 610.5,
268
+ "entropy": 0.12532927691936493,
269
+ "epoch": 0.04672897196261682,
270
+ "frac_reward_zero_std": 0.0,
271
+ "grad_norm": 0.2574126422405243,
272
+ "learning_rate": 4.102189034962561e-06,
273
+ "loss": -0.08543808460235595,
274
+ "num_tokens": 144320.0,
275
+ "reward": 0.9312499165534973,
276
+ "reward_std": 0.4012690559029579,
277
+ "rewards/multiplicative_reward/mean": 0.9312499165534973,
278
+ "rewards/multiplicative_reward/std": 0.4012690484523773,
279
+ "step": 50,
280
+ "step_time": 325.3835452261992
281
+ },
282
+ {
283
+ "clip_ratio/high_max": 0.0,
284
+ "clip_ratio/high_mean": 0.0,
285
+ "clip_ratio/low_mean": 7.434944272972643e-05,
286
+ "clip_ratio/low_min": 7.434944272972643e-05,
287
+ "clip_ratio/region_mean": 7.434944272972643e-05,
288
+ "completions/clipped_ratio": 0.3333333333333333,
289
+ "completions/max_length": 898.3333333333334,
290
+ "completions/max_terminated_length": 866.0,
291
+ "completions/mean_length": 781.125,
292
+ "completions/mean_terminated_length": 765.9345296223959,
293
+ "completions/min_length": 675.6666666666666,
294
+ "completions/min_terminated_length": 675.6666666666666,
295
+ "entropy": 0.22954411506652833,
296
+ "epoch": 0.0514018691588785,
297
+ "frac_reward_zero_std": 0.0,
298
+ "grad_norm": 0.07312487065792084,
299
+ "learning_rate": 3.8772424536302565e-06,
300
+ "loss": 0.0017251893877983093,
301
+ "num_tokens": 164275.0,
302
+ "reward": 1.012499988079071,
303
+ "reward_std": 0.0874652589360873,
304
+ "rewards/multiplicative_reward/mean": 1.012499988079071,
305
+ "rewards/multiplicative_reward/std": 0.08746525645256042,
306
+ "step": 55,
307
+ "step_time": 495.2329136221997
308
+ },
309
+ {
310
+ "clip_ratio/high_max": 0.0,
311
+ "clip_ratio/high_mean": 0.0,
312
+ "clip_ratio/low_mean": 7.812500116415322e-05,
313
+ "clip_ratio/low_min": 7.812500116415322e-05,
314
+ "clip_ratio/region_mean": 7.812500116415322e-05,
315
+ "completions/clipped_ratio": 0.1875,
316
+ "completions/max_length": 833.5,
317
+ "completions/max_terminated_length": 824.0,
318
+ "completions/mean_length": 681.6875,
319
+ "completions/mean_terminated_length": 621.9500122070312,
320
+ "completions/min_length": 473.0,
321
+ "completions/min_terminated_length": 473.0,
322
+ "entropy": 0.14068461135029792,
323
+ "epoch": 0.056074766355140186,
324
+ "frac_reward_zero_std": 0.0,
325
+ "grad_norm": 0.33382320404052734,
326
+ "learning_rate": 3.634976249348867e-06,
327
+ "loss": -0.054555124044418334,
328
+ "num_tokens": 176318.0,
329
+ "reward": 1.128125011920929,
330
+ "reward_std": 0.27171332482248545,
331
+ "rewards/multiplicative_reward/mean": 1.128125011920929,
332
+ "rewards/multiplicative_reward/std": 0.2717133266851306,
333
+ "step": 60,
334
+ "step_time": 307.00902329860037
335
+ },
336
+ {
337
+ "clip_ratio/high_max": 0.0,
338
+ "clip_ratio/high_mean": 0.0,
339
+ "clip_ratio/low_mean": 0.0,
340
+ "clip_ratio/low_min": 0.0,
341
+ "clip_ratio/region_mean": 0.0,
342
+ "completions/clipped_ratio": 0.3333333333333333,
343
+ "completions/max_length": 655.0,
344
+ "completions/max_terminated_length": 313.6666666666667,
345
+ "completions/mean_length": 576.625,
346
+ "completions/mean_terminated_length": 235.29166666666666,
347
+ "completions/min_length": 528.6666666666666,
348
+ "completions/min_terminated_length": 187.33333333333334,
349
+ "entropy": 0.08125153928995132,
350
+ "epoch": 0.06074766355140187,
351
+ "frac_reward_zero_std": 0.3333333333333333,
352
+ "grad_norm": 0.12123720347881317,
353
+ "learning_rate": 3.3784370602033572e-06,
354
+ "loss": -0.022451573610305788,
355
+ "num_tokens": 191021.0,
356
+ "reward": 0.9020833273728689,
357
+ "reward_std": 0.19084744403759638,
358
+ "rewards/multiplicative_reward/mean": 0.9020833273728689,
359
+ "rewards/multiplicative_reward/std": 0.19084744900465012,
360
+ "step": 65,
361
+ "step_time": 317.94532901660205
362
+ },
363
+ {
364
+ "clip_ratio/high_max": 0.0,
365
+ "clip_ratio/high_mean": 0.0,
366
+ "clip_ratio/low_mean": 0.0004962049017194659,
367
+ "clip_ratio/low_min": 0.0004962049017194659,
368
+ "clip_ratio/region_mean": 0.0004962049017194659,
369
+ "completions/clipped_ratio": 0.0,
370
+ "completions/max_length": 480.5,
371
+ "completions/max_terminated_length": 480.5,
372
+ "completions/mean_length": 406.875,
373
+ "completions/mean_terminated_length": 406.875,
374
+ "completions/min_length": 329.5,
375
+ "completions/min_terminated_length": 329.5,
376
+ "entropy": 0.14233311265707016,
377
+ "epoch": 0.06542056074766354,
378
+ "frac_reward_zero_std": 0.0,
379
+ "grad_norm": 0.17829293012619019,
380
+ "learning_rate": 3.1108510153447352e-06,
381
+ "loss": 0.050252318382263184,
382
+ "num_tokens": 198723.0,
383
+ "reward": 1.3250000476837158,
384
+ "reward_std": 0.048718432895839214,
385
+ "rewards/multiplicative_reward/mean": 1.3250000476837158,
386
+ "rewards/multiplicative_reward/std": 0.04871843010187149,
387
+ "step": 70,
388
+ "step_time": 130.87347414019968
389
+ },
390
+ {
391
+ "clip_ratio/high_max": 7.33675726223737e-05,
392
+ "clip_ratio/high_mean": 7.33675726223737e-05,
393
+ "clip_ratio/low_mean": 0.0,
394
+ "clip_ratio/low_min": 0.0,
395
+ "clip_ratio/region_mean": 7.33675726223737e-05,
396
+ "completions/clipped_ratio": 0.0,
397
+ "completions/max_length": 826.6666666666666,
398
+ "completions/max_terminated_length": 826.6666666666666,
399
+ "completions/mean_length": 554.75,
400
+ "completions/mean_terminated_length": 554.75,
401
+ "completions/min_length": 365.6666666666667,
402
+ "completions/min_terminated_length": 365.6666666666667,
403
+ "entropy": 0.20384509563446046,
404
+ "epoch": 0.07009345794392523,
405
+ "frac_reward_zero_std": 0.3333333333333333,
406
+ "grad_norm": 0.4420561194419861,
407
+ "learning_rate": 2.835583164544139e-06,
408
+ "loss": -0.0002071455121040344,
409
+ "num_tokens": 213605.0,
410
+ "reward": 1.2916666666666667,
411
+ "reward_std": 0.04977604250113169,
412
+ "rewards/multiplicative_reward/mean": 1.2916666666666667,
413
+ "rewards/multiplicative_reward/std": 0.049776035050551094,
414
+ "step": 75,
415
+ "step_time": 435.94155339179997
416
+ },
417
+ {
418
+ "clip_ratio/high_max": 0.0,
419
+ "clip_ratio/high_mean": 0.0,
420
+ "clip_ratio/low_mean": 0.0,
421
+ "clip_ratio/low_min": 0.0,
422
+ "clip_ratio/region_mean": 0.0,
423
+ "completions/clipped_ratio": 0.0,
424
+ "completions/max_length": 528.0,
425
+ "completions/max_terminated_length": 528.0,
426
+ "completions/mean_length": 443.3125,
427
+ "completions/mean_terminated_length": 443.3125,
428
+ "completions/min_length": 331.0,
429
+ "completions/min_terminated_length": 331.0,
430
+ "entropy": 0.18517069816589354,
431
+ "epoch": 0.07476635514018691,
432
+ "frac_reward_zero_std": 0.0,
433
+ "grad_norm": 0.34526562690734863,
434
+ "learning_rate": 2.556095160739513e-06,
435
+ "loss": 0.012152573466300965,
436
+ "num_tokens": 221994.0,
437
+ "reward": 1.3250000476837158,
438
+ "reward_std": 0.02314553502947092,
439
+ "rewards/multiplicative_reward/mean": 1.3250000476837158,
440
+ "rewards/multiplicative_reward/std": 0.023145535960793495,
441
+ "step": 80,
442
+ "step_time": 147.25621184560003
443
+ },
444
+ {
445
+ "clip_ratio/high_max": 0.0,
446
+ "clip_ratio/high_mean": 0.0,
447
+ "clip_ratio/low_mean": 0.0,
448
+ "clip_ratio/low_min": 0.0,
449
+ "clip_ratio/region_mean": 0.0,
450
+ "completions/clipped_ratio": 0.25,
451
+ "completions/max_length": 798.0,
452
+ "completions/max_terminated_length": 750.0,
453
+ "completions/mean_length": 613.375,
454
+ "completions/mean_terminated_length": 532.25,
455
+ "completions/min_length": 396.0,
456
+ "completions/min_terminated_length": 396.0,
457
+ "entropy": 0.13030193448066713,
458
+ "epoch": 0.0794392523364486,
459
+ "frac_reward_zero_std": 0.0,
460
+ "grad_norm": 0.3123658001422882,
461
+ "learning_rate": 2.2759017277414165e-06,
462
+ "loss": -0.06673300266265869,
463
+ "num_tokens": 238027.0,
464
+ "reward": 1.006249984105428,
465
+ "reward_std": 0.2273760692526897,
466
+ "rewards/multiplicative_reward/mean": 1.006249984105428,
467
+ "rewards/multiplicative_reward/std": 0.22737608291208744,
468
+ "step": 85,
469
+ "step_time": 411.0016910238002
470
+ },
471
+ {
472
+ "clip_ratio/high_max": 0.0,
473
+ "clip_ratio/high_mean": 0.0,
474
+ "clip_ratio/low_mean": 0.0,
475
+ "clip_ratio/low_min": 0.0,
476
+ "clip_ratio/region_mean": 0.0,
477
+ "completions/clipped_ratio": 0.1875,
478
+ "completions/max_length": 719.0,
479
+ "completions/max_terminated_length": 677.0,
480
+ "completions/mean_length": 600.3125,
481
+ "completions/mean_terminated_length": 550.8125,
482
+ "completions/min_length": 397.0,
483
+ "completions/min_terminated_length": 397.0,
484
+ "entropy": 0.2051653802394867,
485
+ "epoch": 0.08411214953271028,
486
+ "frac_reward_zero_std": 0.0,
487
+ "grad_norm": 0.10376756638288498,
488
+ "learning_rate": 1.9985264605418185e-06,
489
+ "loss": -0.0393097311258316,
490
+ "num_tokens": 248736.0,
491
+ "reward": 1.1343749463558197,
492
+ "reward_std": 0.33943885937333107,
493
+ "rewards/multiplicative_reward/mean": 1.1343749463558197,
494
+ "rewards/multiplicative_reward/std": 0.33943886309862137,
495
+ "step": 90,
496
+ "step_time": 259.8986448414013
497
+ },
498
+ {
499
+ "clip_ratio/high_max": 0.0,
500
+ "clip_ratio/high_mean": 0.0,
501
+ "clip_ratio/low_mean": 0.0,
502
+ "clip_ratio/low_min": 0.0,
503
+ "clip_ratio/region_mean": 0.0,
504
+ "completions/clipped_ratio": 0.125,
505
+ "completions/max_length": 857.3333333333334,
506
+ "completions/max_terminated_length": 787.6666666666666,
507
+ "completions/mean_length": 660.0416666666666,
508
+ "completions/mean_terminated_length": 618.6567586263021,
509
+ "completions/min_length": 473.3333333333333,
510
+ "completions/min_terminated_length": 473.3333333333333,
511
+ "entropy": 0.16872838214039804,
512
+ "epoch": 0.08878504672897196,
513
+ "frac_reward_zero_std": 0.6666666666666666,
514
+ "grad_norm": 0.0,
515
+ "learning_rate": 1.7274575140626318e-06,
516
+ "loss": 0.005825211107730865,
517
+ "num_tokens": 266105.0,
518
+ "reward": 1.256249984105428,
519
+ "reward_std": 0.11883610486984253,
520
+ "rewards/multiplicative_reward/mean": 1.256249984105428,
521
+ "rewards/multiplicative_reward/std": 0.11883612473805745,
522
+ "step": 95,
523
+ "step_time": 477.2306483531996
524
+ },
525
+ {
526
+ "clip_ratio/high_max": 0.0,
527
+ "clip_ratio/high_mean": 0.0,
528
+ "clip_ratio/low_mean": 0.0,
529
+ "clip_ratio/low_min": 0.0,
530
+ "clip_ratio/region_mean": 0.0,
531
+ "completions/clipped_ratio": 0.1875,
532
+ "completions/max_length": 747.5,
533
+ "completions/max_terminated_length": 725.0,
534
+ "completions/mean_length": 617.4375,
535
+ "completions/mean_terminated_length": 581.9250183105469,
536
+ "completions/min_length": 507.5,
537
+ "completions/min_terminated_length": 507.5,
538
+ "entropy": 0.2064228281378746,
539
+ "epoch": 0.09345794392523364,
540
+ "frac_reward_zero_std": 0.0,
541
+ "grad_norm": 0.7731993198394775,
542
+ "learning_rate": 1.466103737583699e-06,
543
+ "loss": 0.06998323202133179,
544
+ "num_tokens": 277072.0,
545
+ "reward": 0.8937499970197678,
546
+ "reward_std": 0.04274389147758484,
547
+ "rewards/multiplicative_reward/mean": 0.8937499970197678,
548
+ "rewards/multiplicative_reward/std": 0.0427439184859395,
549
+ "step": 100,
550
+ "step_time": 260.3944303373995
551
+ }
552
+ ],
553
+ "logging_steps": 5,
554
+ "max_steps": 150,
555
+ "num_input_tokens_seen": 277072,
556
+ "num_train_epochs": 1,
557
+ "save_steps": 50,
558
+ "stateful_callbacks": {
559
+ "TrainerControl": {
560
+ "args": {
561
+ "should_epoch_stop": false,
562
+ "should_evaluate": false,
563
+ "should_log": false,
564
+ "should_save": true,
565
+ "should_training_stop": false
566
+ },
567
+ "attributes": {}
568
+ }
569
+ },
570
+ "total_flos": 0.0,
571
+ "train_batch_size": 2,
572
+ "trial_name": null,
573
+ "trial_params": null
574
+ }
checkpoints/grpo-step-100/checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa659081e27b753a6caa3755ba28e42290b91f133fde6c340bf9b2bd455a4caa
3
+ size 7057
checkpoints/grpo-step-100/checkpoint-50/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Jackrong/Qwopus3.5-9B-v3
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Jackrong/Qwopus3.5-9B-v3
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.18.1
checkpoints/grpo-step-100/checkpoint-50/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Jackrong/Qwopus3.5-9B-v3",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "o_proj",
33
+ "down_proj",
34
+ "v_proj",
35
+ "gate_proj",
36
+ "k_proj",
37
+ "up_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": true
46
+ }
checkpoints/grpo-step-100/checkpoint-50/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7148cb64299b6a82eebb522c77aa7e1fe01ac728fae7b065adfdf75d3936a0c9
3
+ size 465602056
checkpoints/grpo-step-100/checkpoint-50/chat_template.jinja ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
86
+ <think>
87
+ ' }}
88
+ {%- endif %}
checkpoints/grpo-step-100/checkpoint-50/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e12433bfee7b2190f9e446fe5f0300ac5457aa6a44a68fe2239bd4d4a7e45269
3
+ size 236725541
checkpoints/grpo-step-100/checkpoint-50/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfe1fa6a7e95621f14fcc10829716c918b3fabf863db7c45bc55c3cb6bb5e8e2
3
+ size 14645
checkpoints/grpo-step-100/checkpoint-50/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:093bcd59fe0e63c6c73ebf24a5f7d752365277b8e18f4119492628371c6f27db
3
+ size 1465
checkpoints/grpo-step-100/checkpoint-50/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0848a62b3efcaac1ef8e29bea66fd083ef76d8d6fb2bdd483cb4dba81dc1c9a8
3
+ size 19989512
checkpoints/grpo-step-100/checkpoint-50/tokenizer_config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "audio_bos_token": "<|audio_start|>",
4
+ "audio_eos_token": "<|audio_end|>",
5
+ "audio_token": "<|audio_pad|>",
6
+ "backend": "tokenizers",
7
+ "bos_token": null,
8
+ "clean_up_tokenization_spaces": false,
9
+ "eos_token": "<|im_end|>",
10
+ "errors": "replace",
11
+ "image_token": "<|image_pad|>",
12
+ "is_local": false,
13
+ "model_max_length": 8192,
14
+ "model_specific_special_tokens": {
15
+ "audio_bos_token": "<|audio_start|>",
16
+ "audio_eos_token": "<|audio_end|>",
17
+ "audio_token": "<|audio_pad|>",
18
+ "image_token": "<|image_pad|>",
19
+ "video_token": "<|video_pad|>",
20
+ "vision_bos_token": "<|vision_start|>",
21
+ "vision_eos_token": "<|vision_end|>"
22
+ },
23
+ "pad_token": "<|vision_pad|>",
24
+ "padding_side": "right",
25
+ "pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
26
+ "processor_class": "Qwen3VLProcessor",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "TokenizersBackend",
29
+ "unk_token": null,
30
+ "video_token": "<|video_pad|>",
31
+ "vision_bos_token": "<|vision_start|>",
32
+ "vision_eos_token": "<|vision_end|>"
33
+ }
checkpoints/grpo-step-100/checkpoint-50/trainer_state.json ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.04672897196261682,
6
+ "eval_steps": 500,
7
+ "global_step": 50,
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": 455.3333333333333,
20
+ "completions/max_terminated_length": 455.3333333333333,
21
+ "completions/mean_length": 370.1666666666667,
22
+ "completions/mean_terminated_length": 370.1666666666667,
23
+ "completions/min_length": 241.33333333333334,
24
+ "completions/min_terminated_length": 241.33333333333334,
25
+ "entropy": 0.20471833571791648,
26
+ "epoch": 0.004672897196261682,
27
+ "frac_reward_zero_std": 0.0,
28
+ "grad_norm": 0.5874403715133667,
29
+ "learning_rate": 2.0000000000000003e-06,
30
+ "loss": -0.0174385666847229,
31
+ "num_tokens": 10556.0,
32
+ "reward": 1.1229166984558105,
33
+ "reward_std": 0.21075093746185303,
34
+ "rewards/multiplicative_reward/mean": 1.1229166984558105,
35
+ "rewards/multiplicative_reward/std": 0.21075095236301422,
36
+ "step": 5,
37
+ "step_time": 175.64732578959973
38
+ },
39
+ {
40
+ "clip_ratio/high_max": 0.0,
41
+ "clip_ratio/high_mean": 0.0,
42
+ "clip_ratio/low_mean": 0.0001853372377809137,
43
+ "clip_ratio/low_min": 0.0001853372377809137,
44
+ "clip_ratio/region_mean": 0.0001853372377809137,
45
+ "completions/clipped_ratio": 0.0625,
46
+ "completions/max_length": 853.5,
47
+ "completions/max_terminated_length": 763.0,
48
+ "completions/mean_length": 642.9375,
49
+ "completions/mean_terminated_length": 625.2053833007812,
50
+ "completions/min_length": 511.0,
51
+ "completions/min_terminated_length": 511.0,
52
+ "entropy": 0.20119954496622086,
53
+ "epoch": 0.009345794392523364,
54
+ "frac_reward_zero_std": 0.0,
55
+ "grad_norm": 0.09654995054006577,
56
+ "learning_rate": 4.5e-06,
57
+ "loss": -0.09893683791160583,
58
+ "num_tokens": 21963.0,
59
+ "reward": 1.149999976158142,
60
+ "reward_std": 0.2208700068295002,
61
+ "rewards/multiplicative_reward/mean": 1.149999976158142,
62
+ "rewards/multiplicative_reward/std": 0.2208700142800808,
63
+ "step": 10,
64
+ "step_time": 315.6367059516
65
+ },
66
+ {
67
+ "clip_ratio/high_max": 0.0,
68
+ "clip_ratio/high_mean": 0.0,
69
+ "clip_ratio/low_mean": 0.0004878048785030842,
70
+ "clip_ratio/low_min": 0.0004878048785030842,
71
+ "clip_ratio/region_mean": 0.0004878048785030842,
72
+ "completions/clipped_ratio": 0.041666666666666664,
73
+ "completions/max_length": 762.3333333333334,
74
+ "completions/max_terminated_length": 761.3333333333334,
75
+ "completions/mean_length": 515.1666666666666,
76
+ "completions/mean_terminated_length": 502.4107259114583,
77
+ "completions/min_length": 296.0,
78
+ "completions/min_terminated_length": 296.0,
79
+ "entropy": 0.24918381869792938,
80
+ "epoch": 0.014018691588785047,
81
+ "frac_reward_zero_std": 0.0,
82
+ "grad_norm": 0.12115617096424103,
83
+ "learning_rate": 4.989935734988098e-06,
84
+ "loss": -0.14156837463378907,
85
+ "num_tokens": 35943.0,
86
+ "reward": 1.0958333412806194,
87
+ "reward_std": 0.35721248139937717,
88
+ "rewards/multiplicative_reward/mean": 1.0958333412806194,
89
+ "rewards/multiplicative_reward/std": 0.35721250623464584,
90
+ "step": 15,
91
+ "step_time": 391.1071364838002
92
+ },
93
+ {
94
+ "clip_ratio/high_max": 0.0,
95
+ "clip_ratio/high_mean": 0.0,
96
+ "clip_ratio/low_mean": 0.0,
97
+ "clip_ratio/low_min": 0.0,
98
+ "clip_ratio/region_mean": 0.0,
99
+ "completions/clipped_ratio": 0.1875,
100
+ "completions/max_length": 871.0,
101
+ "completions/max_terminated_length": 823.0,
102
+ "completions/mean_length": 706.0,
103
+ "completions/mean_terminated_length": 658.7124938964844,
104
+ "completions/min_length": 527.5,
105
+ "completions/min_terminated_length": 527.5,
106
+ "entropy": 0.18833256512880325,
107
+ "epoch": 0.018691588785046728,
108
+ "frac_reward_zero_std": 0.0,
109
+ "grad_norm": 0.16035032272338867,
110
+ "learning_rate": 4.949188496058089e-06,
111
+ "loss": -0.09449982643127441,
112
+ "num_tokens": 48487.0,
113
+ "reward": 1.0437499582767487,
114
+ "reward_std": 0.3550429940223694,
115
+ "rewards/multiplicative_reward/mean": 1.0437499582767487,
116
+ "rewards/multiplicative_reward/std": 0.3550429902970791,
117
+ "step": 20,
118
+ "step_time": 327.72734730440004
119
+ },
120
+ {
121
+ "clip_ratio/high_max": 0.0,
122
+ "clip_ratio/high_mean": 0.0,
123
+ "clip_ratio/low_mean": 8.510638144798577e-05,
124
+ "clip_ratio/low_min": 8.510638144798577e-05,
125
+ "clip_ratio/region_mean": 8.510638144798577e-05,
126
+ "completions/clipped_ratio": 0.041666666666666664,
127
+ "completions/max_length": 807.3333333333334,
128
+ "completions/max_terminated_length": 803.6666666666666,
129
+ "completions/mean_length": 596.9166666666666,
130
+ "completions/mean_terminated_length": 584.202392578125,
131
+ "completions/min_length": 427.3333333333333,
132
+ "completions/min_terminated_length": 427.3333333333333,
133
+ "entropy": 0.24548179060220718,
134
+ "epoch": 0.02336448598130841,
135
+ "frac_reward_zero_std": 0.0,
136
+ "grad_norm": 0.26090770959854126,
137
+ "learning_rate": 4.8776412907378845e-06,
138
+ "loss": -0.1003144383430481,
139
+ "num_tokens": 64301.0,
140
+ "reward": 1.18749996026357,
141
+ "reward_std": 0.20679950838287672,
142
+ "rewards/multiplicative_reward/mean": 1.18749996026357,
143
+ "rewards/multiplicative_reward/std": 0.20679953570167223,
144
+ "step": 25,
145
+ "step_time": 423.7583607568005
146
+ },
147
+ {
148
+ "clip_ratio/high_max": 0.0,
149
+ "clip_ratio/high_mean": 0.0,
150
+ "clip_ratio/low_mean": 0.0,
151
+ "clip_ratio/low_min": 0.0,
152
+ "clip_ratio/region_mean": 0.0,
153
+ "completions/clipped_ratio": 0.75,
154
+ "completions/max_length": 1024.0,
155
+ "completions/max_terminated_length": 474.0,
156
+ "completions/mean_length": 970.1875,
157
+ "completions/mean_terminated_length": 404.375,
158
+ "completions/min_length": 850.0,
159
+ "completions/min_terminated_length": 338.0,
160
+ "entropy": 0.15614256262779236,
161
+ "epoch": 0.028037383177570093,
162
+ "frac_reward_zero_std": 0.0,
163
+ "grad_norm": 0.0,
164
+ "learning_rate": 4.7761938666470405e-06,
165
+ "loss": -0.005558112263679504,
166
+ "num_tokens": 81048.0,
167
+ "reward": 0.4312499687075615,
168
+ "reward_std": 0.3087201565504074,
169
+ "rewards/multiplicative_reward/mean": 0.4312499687075615,
170
+ "rewards/multiplicative_reward/std": 0.3087201565504074,
171
+ "step": 30,
172
+ "step_time": 415.75604495680017
173
+ },
174
+ {
175
+ "clip_ratio/high_max": 0.0,
176
+ "clip_ratio/high_mean": 0.0,
177
+ "clip_ratio/low_mean": 0.0,
178
+ "clip_ratio/low_min": 0.0,
179
+ "clip_ratio/region_mean": 0.0,
180
+ "completions/clipped_ratio": 0.25,
181
+ "completions/max_length": 618.6666666666666,
182
+ "completions/max_terminated_length": 514.6666666666666,
183
+ "completions/mean_length": 536.375,
184
+ "completions/mean_terminated_length": 451.625,
185
+ "completions/min_length": 405.0,
186
+ "completions/min_terminated_length": 405.0,
187
+ "entropy": 0.1147035963833332,
188
+ "epoch": 0.03271028037383177,
189
+ "frac_reward_zero_std": 0.3333333333333333,
190
+ "grad_norm": 0.4312528967857361,
191
+ "learning_rate": 4.646121984004666e-06,
192
+ "loss": -0.06840584874153137,
193
+ "num_tokens": 95513.0,
194
+ "reward": 0.8583333392937978,
195
+ "reward_std": 0.23224478214979172,
196
+ "rewards/multiplicative_reward/mean": 0.8583333392937978,
197
+ "rewards/multiplicative_reward/std": 0.23224476476510367,
198
+ "step": 35,
199
+ "step_time": 313.75861934560055
200
+ },
201
+ {
202
+ "clip_ratio/high_max": 6.939625018276274e-05,
203
+ "clip_ratio/high_mean": 6.939625018276274e-05,
204
+ "clip_ratio/low_mean": 0.0,
205
+ "clip_ratio/low_min": 0.0,
206
+ "clip_ratio/region_mean": 6.939625018276274e-05,
207
+ "completions/clipped_ratio": 0.0625,
208
+ "completions/max_length": 870.5,
209
+ "completions/max_terminated_length": 797.5,
210
+ "completions/mean_length": 694.375,
211
+ "completions/mean_terminated_length": 675.4642944335938,
212
+ "completions/min_length": 566.5,
213
+ "completions/min_terminated_length": 566.5,
214
+ "entropy": 0.1549898698925972,
215
+ "epoch": 0.037383177570093455,
216
+ "frac_reward_zero_std": 0.0,
217
+ "grad_norm": 0.2594030499458313,
218
+ "learning_rate": 4.4890613722044526e-06,
219
+ "loss": 0.012206726521253587,
220
+ "num_tokens": 108071.0,
221
+ "reward": 1.2062499523162842,
222
+ "reward_std": 0.021777553483843803,
223
+ "rewards/multiplicative_reward/mean": 1.2062499523162842,
224
+ "rewards/multiplicative_reward/std": 0.021777544170618057,
225
+ "step": 40,
226
+ "step_time": 330.83437446999994
227
+ },
228
+ {
229
+ "clip_ratio/high_max": 0.0,
230
+ "clip_ratio/high_mean": 0.0,
231
+ "clip_ratio/low_mean": 0.0,
232
+ "clip_ratio/low_min": 0.0,
233
+ "clip_ratio/region_mean": 0.0,
234
+ "completions/clipped_ratio": 0.6666666666666666,
235
+ "completions/max_length": 1016.6666666666666,
236
+ "completions/max_terminated_length": 334.0,
237
+ "completions/mean_length": 909.625,
238
+ "completions/mean_terminated_length": 226.95833333333334,
239
+ "completions/min_length": 862.3333333333334,
240
+ "completions/min_terminated_length": 179.66666666666666,
241
+ "entropy": 0.0735762745141983,
242
+ "epoch": 0.04205607476635514,
243
+ "frac_reward_zero_std": 0.3333333333333333,
244
+ "grad_norm": 0.0,
245
+ "learning_rate": 4.3069871595684795e-06,
246
+ "loss": -0.00706263780593872,
247
+ "num_tokens": 131198.0,
248
+ "reward": 0.5687499915560087,
249
+ "reward_std": 0.0635174810886383,
250
+ "rewards/multiplicative_reward/mean": 0.5687499915560087,
251
+ "rewards/multiplicative_reward/std": 0.06351748605569203,
252
+ "step": 45,
253
+ "step_time": 596.8530479572007
254
+ },
255
+ {
256
+ "clip_ratio/high_max": 0.0,
257
+ "clip_ratio/high_mean": 0.0,
258
+ "clip_ratio/low_mean": 0.0,
259
+ "clip_ratio/low_min": 0.0,
260
+ "clip_ratio/region_mean": 0.0,
261
+ "completions/clipped_ratio": 0.25,
262
+ "completions/max_length": 877.0,
263
+ "completions/max_terminated_length": 829.0,
264
+ "completions/mean_length": 752.625,
265
+ "completions/mean_terminated_length": 690.875,
266
+ "completions/min_length": 610.5,
267
+ "completions/min_terminated_length": 610.5,
268
+ "entropy": 0.12532927691936493,
269
+ "epoch": 0.04672897196261682,
270
+ "frac_reward_zero_std": 0.0,
271
+ "grad_norm": 0.2574126422405243,
272
+ "learning_rate": 4.102189034962561e-06,
273
+ "loss": -0.08543808460235595,
274
+ "num_tokens": 144320.0,
275
+ "reward": 0.9312499165534973,
276
+ "reward_std": 0.4012690559029579,
277
+ "rewards/multiplicative_reward/mean": 0.9312499165534973,
278
+ "rewards/multiplicative_reward/std": 0.4012690484523773,
279
+ "step": 50,
280
+ "step_time": 325.3835452261992
281
+ }
282
+ ],
283
+ "logging_steps": 5,
284
+ "max_steps": 150,
285
+ "num_input_tokens_seen": 144320,
286
+ "num_train_epochs": 1,
287
+ "save_steps": 50,
288
+ "stateful_callbacks": {
289
+ "TrainerControl": {
290
+ "args": {
291
+ "should_epoch_stop": false,
292
+ "should_evaluate": false,
293
+ "should_log": false,
294
+ "should_save": true,
295
+ "should_training_stop": false
296
+ },
297
+ "attributes": {}
298
+ }
299
+ },
300
+ "total_flos": 0.0,
301
+ "train_batch_size": 2,
302
+ "trial_name": null,
303
+ "trial_params": null
304
+ }
checkpoints/grpo-step-100/checkpoint-50/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa659081e27b753a6caa3755ba28e42290b91f133fde6c340bf9b2bd455a4caa
3
+ size 7057