Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +67 -0
- checkpoint-100/README.md +208 -0
- checkpoint-100/adapter_config.json +42 -0
- checkpoint-100/adapter_model.safetensors +3 -0
- checkpoint-100/added_tokens.json +28 -0
- checkpoint-100/chat_template.jinja +89 -0
- checkpoint-100/merges.txt +0 -0
- checkpoint-100/optimizer.pt +3 -0
- checkpoint-100/rng_state.pth +3 -0
- checkpoint-100/scheduler.pt +3 -0
- checkpoint-100/special_tokens_map.json +31 -0
- checkpoint-100/tokenizer.json +3 -0
- checkpoint-100/tokenizer_config.json +239 -0
- checkpoint-100/trainer_state.json +304 -0
- checkpoint-100/training_args.bin +3 -0
- checkpoint-100/vocab.json +0 -0
- checkpoint-200/README.md +208 -0
- checkpoint-200/adapter_config.json +42 -0
- checkpoint-200/adapter_model.safetensors +3 -0
- checkpoint-200/added_tokens.json +28 -0
- checkpoint-200/chat_template.jinja +89 -0
- checkpoint-200/merges.txt +0 -0
- checkpoint-200/optimizer.pt +3 -0
- checkpoint-200/rng_state.pth +3 -0
- checkpoint-200/scheduler.pt +3 -0
- checkpoint-200/special_tokens_map.json +31 -0
- checkpoint-200/tokenizer.json +3 -0
- checkpoint-200/tokenizer_config.json +239 -0
- checkpoint-200/trainer_state.json +574 -0
- checkpoint-200/training_args.bin +3 -0
- checkpoint-200/vocab.json +0 -0
- checkpoint-300/README.md +208 -0
- checkpoint-300/adapter_config.json +42 -0
- checkpoint-300/adapter_model.safetensors +3 -0
- checkpoint-300/added_tokens.json +28 -0
- checkpoint-300/chat_template.jinja +89 -0
- checkpoint-300/merges.txt +0 -0
- checkpoint-300/optimizer.pt +3 -0
- checkpoint-300/rng_state.pth +3 -0
- checkpoint-300/scheduler.pt +3 -0
- checkpoint-300/special_tokens_map.json +31 -0
- checkpoint-300/tokenizer.json +3 -0
- checkpoint-300/tokenizer_config.json +239 -0
- checkpoint-300/trainer_state.json +844 -0
- checkpoint-300/training_args.bin +3 -0
- checkpoint-300/vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
checkpoint-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-300/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
model_name: qwen_bitcoin_enhanced_grpo_no_unsloth_bigger
|
| 4 |
+
tags:
|
| 5 |
+
- generated_from_trainer
|
| 6 |
+
- grpo
|
| 7 |
+
- trl
|
| 8 |
+
licence: license
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for qwen_bitcoin_enhanced_grpo_no_unsloth_bigger
|
| 12 |
+
|
| 13 |
+
This model is a fine-tuned version of [None](https://huggingface.co/None).
|
| 14 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 15 |
+
|
| 16 |
+
## Quick start
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
from transformers import pipeline
|
| 20 |
+
|
| 21 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 22 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 23 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 24 |
+
print(output["generated_text"])
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Training procedure
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
|
| 33 |
+
|
| 34 |
+
### Framework versions
|
| 35 |
+
|
| 36 |
+
- TRL: 0.23.0
|
| 37 |
+
- Transformers: 4.56.1
|
| 38 |
+
- Pytorch: 2.8.0
|
| 39 |
+
- Datasets: 4.0.0
|
| 40 |
+
- Tokenizers: 0.22.0
|
| 41 |
+
|
| 42 |
+
## Citations
|
| 43 |
+
|
| 44 |
+
Cite GRPO as:
|
| 45 |
+
|
| 46 |
+
```bibtex
|
| 47 |
+
@article{shao2024deepseekmath,
|
| 48 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
| 49 |
+
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
|
| 50 |
+
year = 2024,
|
| 51 |
+
eprint = {arXiv:2402.03300},
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
Cite TRL as:
|
| 57 |
+
|
| 58 |
+
```bibtex
|
| 59 |
+
@misc{vonwerra2022trl,
|
| 60 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 61 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 62 |
+
year = 2020,
|
| 63 |
+
journal = {GitHub repository},
|
| 64 |
+
publisher = {GitHub},
|
| 65 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 66 |
+
}
|
| 67 |
+
```
|
checkpoint-100/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: ./Qwen3-8B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:./Qwen3-8B
|
| 7 |
+
- grpo
|
| 8 |
+
- lora
|
| 9 |
+
- trl
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-100/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "./Qwen3-8B",
|
| 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.0,
|
| 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 |
+
"v_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"up_proj",
|
| 31 |
+
"k_proj",
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"down_proj",
|
| 34 |
+
"o_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": null,
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": true
|
| 42 |
+
}
|
checkpoint-100/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3807c79a631505c93195d7b1daecd3fdc846b56321674546df28b9711a7c9330
|
| 3 |
+
size 349252320
|
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 |
+
}
|
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 %}
|
checkpoint-100/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-100/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:186824e73ec30dfb6113332774a2d24ccdb466aa031ed863c7c710b87a9a50f3
|
| 3 |
+
size 1593
|
checkpoint-100/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f256da8fea5d89fe9175ef8a104ceeca1ce89fb8b382eab3fe1099c88bbcc1db
|
| 3 |
+
size 14645
|
checkpoint-100/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b2970e5cc30a18cc5db9361a1001d9b14855fcb7e0c3d08cf266dea64c5a004
|
| 3 |
+
size 1465
|
checkpoint-100/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-100/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67cc0080ffd7555f723f423c27cfef314e1ad9d335c8b79f465c5faba1ed478b
|
| 3 |
+
size 11422821
|
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": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-100/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.17391304347826086,
|
| 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": 1.0,
|
| 19 |
+
"completions/max_length": 256.0,
|
| 20 |
+
"completions/max_terminated_length": 0.0,
|
| 21 |
+
"completions/mean_length": 256.0,
|
| 22 |
+
"completions/mean_terminated_length": 0.0,
|
| 23 |
+
"completions/min_length": 256.0,
|
| 24 |
+
"completions/min_terminated_length": 0.0,
|
| 25 |
+
"entropy": 4.197749018669128,
|
| 26 |
+
"epoch": 0.017391304347826087,
|
| 27 |
+
"frac_reward_zero_std": 1.0,
|
| 28 |
+
"grad_norm": 0.0,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 4.6551724137931034e-08,
|
| 31 |
+
"loss": 0.0,
|
| 32 |
+
"num_tokens": 61440.0,
|
| 33 |
+
"reward": 0.029999999329447746,
|
| 34 |
+
"reward_std": 0.0,
|
| 35 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 36 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 37 |
+
"step": 10
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"clip_ratio/high_max": 0.0,
|
| 41 |
+
"clip_ratio/high_mean": 0.0,
|
| 42 |
+
"clip_ratio/low_mean": 0.0,
|
| 43 |
+
"clip_ratio/low_min": 0.0,
|
| 44 |
+
"clip_ratio/region_mean": 0.0,
|
| 45 |
+
"completions/clipped_ratio": 1.0,
|
| 46 |
+
"completions/max_length": 256.0,
|
| 47 |
+
"completions/max_terminated_length": 0.0,
|
| 48 |
+
"completions/mean_length": 256.0,
|
| 49 |
+
"completions/mean_terminated_length": 0.0,
|
| 50 |
+
"completions/min_length": 256.0,
|
| 51 |
+
"completions/min_terminated_length": 0.0,
|
| 52 |
+
"entropy": 4.19401963353157,
|
| 53 |
+
"epoch": 0.034782608695652174,
|
| 54 |
+
"frac_reward_zero_std": 1.0,
|
| 55 |
+
"grad_norm": 0.0,
|
| 56 |
+
"kl": 0.0,
|
| 57 |
+
"learning_rate": 9.82758620689655e-08,
|
| 58 |
+
"loss": 0.0,
|
| 59 |
+
"num_tokens": 122880.0,
|
| 60 |
+
"reward": 0.029999999329447746,
|
| 61 |
+
"reward_std": 0.0,
|
| 62 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 63 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 64 |
+
"step": 20
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"clip_ratio/high_max": 0.0,
|
| 68 |
+
"clip_ratio/high_mean": 0.0,
|
| 69 |
+
"clip_ratio/low_mean": 0.0,
|
| 70 |
+
"clip_ratio/low_min": 0.0,
|
| 71 |
+
"clip_ratio/region_mean": 0.0,
|
| 72 |
+
"completions/clipped_ratio": 1.0,
|
| 73 |
+
"completions/max_length": 256.0,
|
| 74 |
+
"completions/max_terminated_length": 0.0,
|
| 75 |
+
"completions/mean_length": 256.0,
|
| 76 |
+
"completions/mean_terminated_length": 0.0,
|
| 77 |
+
"completions/min_length": 256.0,
|
| 78 |
+
"completions/min_terminated_length": 0.0,
|
| 79 |
+
"entropy": 4.195999360084533,
|
| 80 |
+
"epoch": 0.05217391304347826,
|
| 81 |
+
"frac_reward_zero_std": 0.925,
|
| 82 |
+
"grad_norm": 0.0,
|
| 83 |
+
"kl": 0.0,
|
| 84 |
+
"learning_rate": 1.5e-07,
|
| 85 |
+
"loss": 0.0,
|
| 86 |
+
"num_tokens": 184320.0,
|
| 87 |
+
"reward": 0.032249999977648255,
|
| 88 |
+
"reward_std": 0.003181980550289154,
|
| 89 |
+
"rewards/grpo_reward_func_safe/mean": 0.032249999977648255,
|
| 90 |
+
"rewards/grpo_reward_func_safe/std": 0.006363961659371853,
|
| 91 |
+
"step": 30
|
| 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": 1.0,
|
| 100 |
+
"completions/max_length": 256.0,
|
| 101 |
+
"completions/max_terminated_length": 0.0,
|
| 102 |
+
"completions/mean_length": 256.0,
|
| 103 |
+
"completions/mean_terminated_length": 0.0,
|
| 104 |
+
"completions/min_length": 256.0,
|
| 105 |
+
"completions/min_terminated_length": 0.0,
|
| 106 |
+
"entropy": 4.196434891223907,
|
| 107 |
+
"epoch": 0.06956521739130435,
|
| 108 |
+
"frac_reward_zero_std": 0.975,
|
| 109 |
+
"grad_norm": 0.0,
|
| 110 |
+
"kl": 0.0,
|
| 111 |
+
"learning_rate": 2.0172413793103448e-07,
|
| 112 |
+
"loss": 0.0,
|
| 113 |
+
"num_tokens": 245760.0,
|
| 114 |
+
"reward": 0.030749999545514585,
|
| 115 |
+
"reward_std": 0.001060660183429718,
|
| 116 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 117 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 118 |
+
"step": 40
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"clip_ratio/high_max": 0.0,
|
| 122 |
+
"clip_ratio/high_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_mean": 0.0,
|
| 124 |
+
"clip_ratio/low_min": 0.0,
|
| 125 |
+
"clip_ratio/region_mean": 0.0,
|
| 126 |
+
"completions/clipped_ratio": 1.0,
|
| 127 |
+
"completions/max_length": 256.0,
|
| 128 |
+
"completions/max_terminated_length": 0.0,
|
| 129 |
+
"completions/mean_length": 256.0,
|
| 130 |
+
"completions/mean_terminated_length": 0.0,
|
| 131 |
+
"completions/min_length": 256.0,
|
| 132 |
+
"completions/min_terminated_length": 0.0,
|
| 133 |
+
"entropy": 4.196214777231217,
|
| 134 |
+
"epoch": 0.08695652173913043,
|
| 135 |
+
"frac_reward_zero_std": 0.975,
|
| 136 |
+
"grad_norm": 0.0006065674824640155,
|
| 137 |
+
"kl": 0.0,
|
| 138 |
+
"learning_rate": 2.5344827586206897e-07,
|
| 139 |
+
"loss": 0.0,
|
| 140 |
+
"num_tokens": 307200.0,
|
| 141 |
+
"reward": 0.030749999545514585,
|
| 142 |
+
"reward_std": 0.001060660183429718,
|
| 143 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 144 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 145 |
+
"step": 50
|
| 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": 1.0,
|
| 154 |
+
"completions/max_length": 256.0,
|
| 155 |
+
"completions/max_terminated_length": 0.0,
|
| 156 |
+
"completions/mean_length": 256.0,
|
| 157 |
+
"completions/mean_terminated_length": 0.0,
|
| 158 |
+
"completions/min_length": 256.0,
|
| 159 |
+
"completions/min_terminated_length": 0.0,
|
| 160 |
+
"entropy": 4.195889353752136,
|
| 161 |
+
"epoch": 0.10434782608695652,
|
| 162 |
+
"frac_reward_zero_std": 1.0,
|
| 163 |
+
"grad_norm": 0.0,
|
| 164 |
+
"kl": 0.0,
|
| 165 |
+
"learning_rate": 2.9999723064528515e-07,
|
| 166 |
+
"loss": 0.0,
|
| 167 |
+
"num_tokens": 368640.0,
|
| 168 |
+
"reward": 0.029999999329447746,
|
| 169 |
+
"reward_std": 0.0,
|
| 170 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 171 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 172 |
+
"step": 60
|
| 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": 1.0,
|
| 181 |
+
"completions/max_length": 256.0,
|
| 182 |
+
"completions/max_terminated_length": 0.0,
|
| 183 |
+
"completions/mean_length": 256.0,
|
| 184 |
+
"completions/mean_terminated_length": 0.0,
|
| 185 |
+
"completions/min_length": 256.0,
|
| 186 |
+
"completions/min_terminated_length": 0.0,
|
| 187 |
+
"entropy": 4.19403246641159,
|
| 188 |
+
"epoch": 0.12173913043478261,
|
| 189 |
+
"frac_reward_zero_std": 1.0,
|
| 190 |
+
"grad_norm": 0.0,
|
| 191 |
+
"kl": 0.0,
|
| 192 |
+
"learning_rate": 2.99665031793473e-07,
|
| 193 |
+
"loss": 0.0,
|
| 194 |
+
"num_tokens": 430080.0,
|
| 195 |
+
"reward": 0.029999999329447746,
|
| 196 |
+
"reward_std": 0.0,
|
| 197 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 198 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 199 |
+
"step": 70
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"clip_ratio/high_max": 0.0,
|
| 203 |
+
"clip_ratio/high_mean": 0.0,
|
| 204 |
+
"clip_ratio/low_mean": 0.0,
|
| 205 |
+
"clip_ratio/low_min": 0.0,
|
| 206 |
+
"clip_ratio/region_mean": 0.0,
|
| 207 |
+
"completions/clipped_ratio": 1.0,
|
| 208 |
+
"completions/max_length": 256.0,
|
| 209 |
+
"completions/max_terminated_length": 0.0,
|
| 210 |
+
"completions/mean_length": 256.0,
|
| 211 |
+
"completions/mean_terminated_length": 0.0,
|
| 212 |
+
"completions/min_length": 256.0,
|
| 213 |
+
"completions/min_terminated_length": 0.0,
|
| 214 |
+
"entropy": 4.1964380741119385,
|
| 215 |
+
"epoch": 0.1391304347826087,
|
| 216 |
+
"frac_reward_zero_std": 1.0,
|
| 217 |
+
"grad_norm": 0.0,
|
| 218 |
+
"kl": 0.0,
|
| 219 |
+
"learning_rate": 2.987803671882231e-07,
|
| 220 |
+
"loss": 0.0,
|
| 221 |
+
"num_tokens": 491520.0,
|
| 222 |
+
"reward": 0.029999999329447746,
|
| 223 |
+
"reward_std": 0.0,
|
| 224 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 225 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 226 |
+
"step": 80
|
| 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": 1.0,
|
| 235 |
+
"completions/max_length": 256.0,
|
| 236 |
+
"completions/max_terminated_length": 0.0,
|
| 237 |
+
"completions/mean_length": 256.0,
|
| 238 |
+
"completions/mean_terminated_length": 0.0,
|
| 239 |
+
"completions/min_length": 256.0,
|
| 240 |
+
"completions/min_terminated_length": 0.0,
|
| 241 |
+
"entropy": 4.197315156459808,
|
| 242 |
+
"epoch": 0.1565217391304348,
|
| 243 |
+
"frac_reward_zero_std": 0.975,
|
| 244 |
+
"grad_norm": 0.0,
|
| 245 |
+
"kl": 0.0,
|
| 246 |
+
"learning_rate": 2.9734650243467943e-07,
|
| 247 |
+
"loss": 0.0,
|
| 248 |
+
"num_tokens": 552960.0,
|
| 249 |
+
"reward": 0.030749999545514585,
|
| 250 |
+
"reward_std": 0.001060660183429718,
|
| 251 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 252 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 253 |
+
"step": 90
|
| 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": 1.0,
|
| 262 |
+
"completions/max_length": 256.0,
|
| 263 |
+
"completions/max_terminated_length": 0.0,
|
| 264 |
+
"completions/mean_length": 256.0,
|
| 265 |
+
"completions/mean_terminated_length": 0.0,
|
| 266 |
+
"completions/min_length": 256.0,
|
| 267 |
+
"completions/min_terminated_length": 0.0,
|
| 268 |
+
"entropy": 4.196321958303452,
|
| 269 |
+
"epoch": 0.17391304347826086,
|
| 270 |
+
"frac_reward_zero_std": 1.0,
|
| 271 |
+
"grad_norm": 0.0,
|
| 272 |
+
"kl": 0.0,
|
| 273 |
+
"learning_rate": 2.95368730426993e-07,
|
| 274 |
+
"loss": 0.0,
|
| 275 |
+
"num_tokens": 614400.0,
|
| 276 |
+
"reward": 0.029999999329447746,
|
| 277 |
+
"reward_std": 0.0,
|
| 278 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 279 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 280 |
+
"step": 100
|
| 281 |
+
}
|
| 282 |
+
],
|
| 283 |
+
"logging_steps": 10,
|
| 284 |
+
"max_steps": 575,
|
| 285 |
+
"num_input_tokens_seen": 614400,
|
| 286 |
+
"num_train_epochs": 1,
|
| 287 |
+
"save_steps": 100,
|
| 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": 1,
|
| 302 |
+
"trial_name": null,
|
| 303 |
+
"trial_params": null
|
| 304 |
+
}
|
checkpoint-100/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:602197fd53ffdde289907b300de58d2ec623bb7abb43919e0acaf29542bf7b08
|
| 3 |
+
size 7185
|
checkpoint-100/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-200/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: ./Qwen3-8B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:./Qwen3-8B
|
| 7 |
+
- grpo
|
| 8 |
+
- lora
|
| 9 |
+
- trl
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-200/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "./Qwen3-8B",
|
| 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.0,
|
| 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 |
+
"v_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"up_proj",
|
| 31 |
+
"k_proj",
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"down_proj",
|
| 34 |
+
"o_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": null,
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": true
|
| 42 |
+
}
|
checkpoint-200/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3807c79a631505c93195d7b1daecd3fdc846b56321674546df28b9711a7c9330
|
| 3 |
+
size 349252320
|
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 |
+
}
|
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 %}
|
checkpoint-200/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-200/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce3f1c4161dc287db423256fa552fc75fa748b7e32cba8a5011cc7ec748e9777
|
| 3 |
+
size 1593
|
checkpoint-200/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1587dfe0a2aa7dc028180a62d946a79507ee9c069968d9672aa77f3c3b131d47
|
| 3 |
+
size 14645
|
checkpoint-200/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:477151656c38db8fc86a4979294d30a0e58ea9cf9a38ad0388d5480f3654553a
|
| 3 |
+
size 1465
|
checkpoint-200/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-200/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67cc0080ffd7555f723f423c27cfef314e1ad9d335c8b79f465c5faba1ed478b
|
| 3 |
+
size 11422821
|
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": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-200/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.34782608695652173,
|
| 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": 1.0,
|
| 19 |
+
"completions/max_length": 256.0,
|
| 20 |
+
"completions/max_terminated_length": 0.0,
|
| 21 |
+
"completions/mean_length": 256.0,
|
| 22 |
+
"completions/mean_terminated_length": 0.0,
|
| 23 |
+
"completions/min_length": 256.0,
|
| 24 |
+
"completions/min_terminated_length": 0.0,
|
| 25 |
+
"entropy": 4.197749018669128,
|
| 26 |
+
"epoch": 0.017391304347826087,
|
| 27 |
+
"frac_reward_zero_std": 1.0,
|
| 28 |
+
"grad_norm": 0.0,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 4.6551724137931034e-08,
|
| 31 |
+
"loss": 0.0,
|
| 32 |
+
"num_tokens": 61440.0,
|
| 33 |
+
"reward": 0.029999999329447746,
|
| 34 |
+
"reward_std": 0.0,
|
| 35 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 36 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 37 |
+
"step": 10
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"clip_ratio/high_max": 0.0,
|
| 41 |
+
"clip_ratio/high_mean": 0.0,
|
| 42 |
+
"clip_ratio/low_mean": 0.0,
|
| 43 |
+
"clip_ratio/low_min": 0.0,
|
| 44 |
+
"clip_ratio/region_mean": 0.0,
|
| 45 |
+
"completions/clipped_ratio": 1.0,
|
| 46 |
+
"completions/max_length": 256.0,
|
| 47 |
+
"completions/max_terminated_length": 0.0,
|
| 48 |
+
"completions/mean_length": 256.0,
|
| 49 |
+
"completions/mean_terminated_length": 0.0,
|
| 50 |
+
"completions/min_length": 256.0,
|
| 51 |
+
"completions/min_terminated_length": 0.0,
|
| 52 |
+
"entropy": 4.19401963353157,
|
| 53 |
+
"epoch": 0.034782608695652174,
|
| 54 |
+
"frac_reward_zero_std": 1.0,
|
| 55 |
+
"grad_norm": 0.0,
|
| 56 |
+
"kl": 0.0,
|
| 57 |
+
"learning_rate": 9.82758620689655e-08,
|
| 58 |
+
"loss": 0.0,
|
| 59 |
+
"num_tokens": 122880.0,
|
| 60 |
+
"reward": 0.029999999329447746,
|
| 61 |
+
"reward_std": 0.0,
|
| 62 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 63 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 64 |
+
"step": 20
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"clip_ratio/high_max": 0.0,
|
| 68 |
+
"clip_ratio/high_mean": 0.0,
|
| 69 |
+
"clip_ratio/low_mean": 0.0,
|
| 70 |
+
"clip_ratio/low_min": 0.0,
|
| 71 |
+
"clip_ratio/region_mean": 0.0,
|
| 72 |
+
"completions/clipped_ratio": 1.0,
|
| 73 |
+
"completions/max_length": 256.0,
|
| 74 |
+
"completions/max_terminated_length": 0.0,
|
| 75 |
+
"completions/mean_length": 256.0,
|
| 76 |
+
"completions/mean_terminated_length": 0.0,
|
| 77 |
+
"completions/min_length": 256.0,
|
| 78 |
+
"completions/min_terminated_length": 0.0,
|
| 79 |
+
"entropy": 4.195999360084533,
|
| 80 |
+
"epoch": 0.05217391304347826,
|
| 81 |
+
"frac_reward_zero_std": 0.925,
|
| 82 |
+
"grad_norm": 0.0,
|
| 83 |
+
"kl": 0.0,
|
| 84 |
+
"learning_rate": 1.5e-07,
|
| 85 |
+
"loss": 0.0,
|
| 86 |
+
"num_tokens": 184320.0,
|
| 87 |
+
"reward": 0.032249999977648255,
|
| 88 |
+
"reward_std": 0.003181980550289154,
|
| 89 |
+
"rewards/grpo_reward_func_safe/mean": 0.032249999977648255,
|
| 90 |
+
"rewards/grpo_reward_func_safe/std": 0.006363961659371853,
|
| 91 |
+
"step": 30
|
| 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": 1.0,
|
| 100 |
+
"completions/max_length": 256.0,
|
| 101 |
+
"completions/max_terminated_length": 0.0,
|
| 102 |
+
"completions/mean_length": 256.0,
|
| 103 |
+
"completions/mean_terminated_length": 0.0,
|
| 104 |
+
"completions/min_length": 256.0,
|
| 105 |
+
"completions/min_terminated_length": 0.0,
|
| 106 |
+
"entropy": 4.196434891223907,
|
| 107 |
+
"epoch": 0.06956521739130435,
|
| 108 |
+
"frac_reward_zero_std": 0.975,
|
| 109 |
+
"grad_norm": 0.0,
|
| 110 |
+
"kl": 0.0,
|
| 111 |
+
"learning_rate": 2.0172413793103448e-07,
|
| 112 |
+
"loss": 0.0,
|
| 113 |
+
"num_tokens": 245760.0,
|
| 114 |
+
"reward": 0.030749999545514585,
|
| 115 |
+
"reward_std": 0.001060660183429718,
|
| 116 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 117 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 118 |
+
"step": 40
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"clip_ratio/high_max": 0.0,
|
| 122 |
+
"clip_ratio/high_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_mean": 0.0,
|
| 124 |
+
"clip_ratio/low_min": 0.0,
|
| 125 |
+
"clip_ratio/region_mean": 0.0,
|
| 126 |
+
"completions/clipped_ratio": 1.0,
|
| 127 |
+
"completions/max_length": 256.0,
|
| 128 |
+
"completions/max_terminated_length": 0.0,
|
| 129 |
+
"completions/mean_length": 256.0,
|
| 130 |
+
"completions/mean_terminated_length": 0.0,
|
| 131 |
+
"completions/min_length": 256.0,
|
| 132 |
+
"completions/min_terminated_length": 0.0,
|
| 133 |
+
"entropy": 4.196214777231217,
|
| 134 |
+
"epoch": 0.08695652173913043,
|
| 135 |
+
"frac_reward_zero_std": 0.975,
|
| 136 |
+
"grad_norm": 0.0006065674824640155,
|
| 137 |
+
"kl": 0.0,
|
| 138 |
+
"learning_rate": 2.5344827586206897e-07,
|
| 139 |
+
"loss": 0.0,
|
| 140 |
+
"num_tokens": 307200.0,
|
| 141 |
+
"reward": 0.030749999545514585,
|
| 142 |
+
"reward_std": 0.001060660183429718,
|
| 143 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 144 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 145 |
+
"step": 50
|
| 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": 1.0,
|
| 154 |
+
"completions/max_length": 256.0,
|
| 155 |
+
"completions/max_terminated_length": 0.0,
|
| 156 |
+
"completions/mean_length": 256.0,
|
| 157 |
+
"completions/mean_terminated_length": 0.0,
|
| 158 |
+
"completions/min_length": 256.0,
|
| 159 |
+
"completions/min_terminated_length": 0.0,
|
| 160 |
+
"entropy": 4.195889353752136,
|
| 161 |
+
"epoch": 0.10434782608695652,
|
| 162 |
+
"frac_reward_zero_std": 1.0,
|
| 163 |
+
"grad_norm": 0.0,
|
| 164 |
+
"kl": 0.0,
|
| 165 |
+
"learning_rate": 2.9999723064528515e-07,
|
| 166 |
+
"loss": 0.0,
|
| 167 |
+
"num_tokens": 368640.0,
|
| 168 |
+
"reward": 0.029999999329447746,
|
| 169 |
+
"reward_std": 0.0,
|
| 170 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 171 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 172 |
+
"step": 60
|
| 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": 1.0,
|
| 181 |
+
"completions/max_length": 256.0,
|
| 182 |
+
"completions/max_terminated_length": 0.0,
|
| 183 |
+
"completions/mean_length": 256.0,
|
| 184 |
+
"completions/mean_terminated_length": 0.0,
|
| 185 |
+
"completions/min_length": 256.0,
|
| 186 |
+
"completions/min_terminated_length": 0.0,
|
| 187 |
+
"entropy": 4.19403246641159,
|
| 188 |
+
"epoch": 0.12173913043478261,
|
| 189 |
+
"frac_reward_zero_std": 1.0,
|
| 190 |
+
"grad_norm": 0.0,
|
| 191 |
+
"kl": 0.0,
|
| 192 |
+
"learning_rate": 2.99665031793473e-07,
|
| 193 |
+
"loss": 0.0,
|
| 194 |
+
"num_tokens": 430080.0,
|
| 195 |
+
"reward": 0.029999999329447746,
|
| 196 |
+
"reward_std": 0.0,
|
| 197 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 198 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 199 |
+
"step": 70
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"clip_ratio/high_max": 0.0,
|
| 203 |
+
"clip_ratio/high_mean": 0.0,
|
| 204 |
+
"clip_ratio/low_mean": 0.0,
|
| 205 |
+
"clip_ratio/low_min": 0.0,
|
| 206 |
+
"clip_ratio/region_mean": 0.0,
|
| 207 |
+
"completions/clipped_ratio": 1.0,
|
| 208 |
+
"completions/max_length": 256.0,
|
| 209 |
+
"completions/max_terminated_length": 0.0,
|
| 210 |
+
"completions/mean_length": 256.0,
|
| 211 |
+
"completions/mean_terminated_length": 0.0,
|
| 212 |
+
"completions/min_length": 256.0,
|
| 213 |
+
"completions/min_terminated_length": 0.0,
|
| 214 |
+
"entropy": 4.1964380741119385,
|
| 215 |
+
"epoch": 0.1391304347826087,
|
| 216 |
+
"frac_reward_zero_std": 1.0,
|
| 217 |
+
"grad_norm": 0.0,
|
| 218 |
+
"kl": 0.0,
|
| 219 |
+
"learning_rate": 2.987803671882231e-07,
|
| 220 |
+
"loss": 0.0,
|
| 221 |
+
"num_tokens": 491520.0,
|
| 222 |
+
"reward": 0.029999999329447746,
|
| 223 |
+
"reward_std": 0.0,
|
| 224 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 225 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 226 |
+
"step": 80
|
| 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": 1.0,
|
| 235 |
+
"completions/max_length": 256.0,
|
| 236 |
+
"completions/max_terminated_length": 0.0,
|
| 237 |
+
"completions/mean_length": 256.0,
|
| 238 |
+
"completions/mean_terminated_length": 0.0,
|
| 239 |
+
"completions/min_length": 256.0,
|
| 240 |
+
"completions/min_terminated_length": 0.0,
|
| 241 |
+
"entropy": 4.197315156459808,
|
| 242 |
+
"epoch": 0.1565217391304348,
|
| 243 |
+
"frac_reward_zero_std": 0.975,
|
| 244 |
+
"grad_norm": 0.0,
|
| 245 |
+
"kl": 0.0,
|
| 246 |
+
"learning_rate": 2.9734650243467943e-07,
|
| 247 |
+
"loss": 0.0,
|
| 248 |
+
"num_tokens": 552960.0,
|
| 249 |
+
"reward": 0.030749999545514585,
|
| 250 |
+
"reward_std": 0.001060660183429718,
|
| 251 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 252 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 253 |
+
"step": 90
|
| 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": 1.0,
|
| 262 |
+
"completions/max_length": 256.0,
|
| 263 |
+
"completions/max_terminated_length": 0.0,
|
| 264 |
+
"completions/mean_length": 256.0,
|
| 265 |
+
"completions/mean_terminated_length": 0.0,
|
| 266 |
+
"completions/min_length": 256.0,
|
| 267 |
+
"completions/min_terminated_length": 0.0,
|
| 268 |
+
"entropy": 4.196321958303452,
|
| 269 |
+
"epoch": 0.17391304347826086,
|
| 270 |
+
"frac_reward_zero_std": 1.0,
|
| 271 |
+
"grad_norm": 0.0,
|
| 272 |
+
"kl": 0.0,
|
| 273 |
+
"learning_rate": 2.95368730426993e-07,
|
| 274 |
+
"loss": 0.0,
|
| 275 |
+
"num_tokens": 614400.0,
|
| 276 |
+
"reward": 0.029999999329447746,
|
| 277 |
+
"reward_std": 0.0,
|
| 278 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 279 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 280 |
+
"step": 100
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"clip_ratio/high_max": 0.0,
|
| 284 |
+
"clip_ratio/high_mean": 0.0,
|
| 285 |
+
"clip_ratio/low_mean": 0.0,
|
| 286 |
+
"clip_ratio/low_min": 0.0,
|
| 287 |
+
"clip_ratio/region_mean": 0.0,
|
| 288 |
+
"completions/clipped_ratio": 1.0,
|
| 289 |
+
"completions/max_length": 256.0,
|
| 290 |
+
"completions/max_terminated_length": 0.0,
|
| 291 |
+
"completions/mean_length": 256.0,
|
| 292 |
+
"completions/mean_terminated_length": 0.0,
|
| 293 |
+
"completions/min_length": 256.0,
|
| 294 |
+
"completions/min_terminated_length": 0.0,
|
| 295 |
+
"entropy": 4.1931467890739444,
|
| 296 |
+
"epoch": 0.19130434782608696,
|
| 297 |
+
"frac_reward_zero_std": 0.9,
|
| 298 |
+
"grad_norm": 0.0,
|
| 299 |
+
"kl": 0.0,
|
| 300 |
+
"learning_rate": 2.9285435181040643e-07,
|
| 301 |
+
"loss": 0.0,
|
| 302 |
+
"num_tokens": 675840.0,
|
| 303 |
+
"reward": 0.03300000000745058,
|
| 304 |
+
"reward_std": 0.004242640733718872,
|
| 305 |
+
"rewards/grpo_reward_func_safe/mean": 0.03300000000745058,
|
| 306 |
+
"rewards/grpo_reward_func_safe/std": 0.007020101696252823,
|
| 307 |
+
"step": 110
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completions/clipped_ratio": 1.0,
|
| 316 |
+
"completions/max_length": 256.0,
|
| 317 |
+
"completions/max_terminated_length": 0.0,
|
| 318 |
+
"completions/mean_length": 256.0,
|
| 319 |
+
"completions/mean_terminated_length": 0.0,
|
| 320 |
+
"completions/min_length": 256.0,
|
| 321 |
+
"completions/min_terminated_length": 0.0,
|
| 322 |
+
"entropy": 4.1976454019546505,
|
| 323 |
+
"epoch": 0.20869565217391303,
|
| 324 |
+
"frac_reward_zero_std": 0.95,
|
| 325 |
+
"grad_norm": 0.0,
|
| 326 |
+
"kl": 0.0,
|
| 327 |
+
"learning_rate": 2.8981264803202996e-07,
|
| 328 |
+
"loss": 0.0,
|
| 329 |
+
"num_tokens": 737280.0,
|
| 330 |
+
"reward": 0.031499999761581424,
|
| 331 |
+
"reward_std": 0.002121320366859436,
|
| 332 |
+
"rewards/grpo_reward_func_safe/mean": 0.031499999761581424,
|
| 333 |
+
"rewards/grpo_reward_func_safe/std": 0.004242641106247902,
|
| 334 |
+
"step": 120
|
| 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": 1.0,
|
| 343 |
+
"completions/max_length": 256.0,
|
| 344 |
+
"completions/max_terminated_length": 0.0,
|
| 345 |
+
"completions/mean_length": 256.0,
|
| 346 |
+
"completions/mean_terminated_length": 0.0,
|
| 347 |
+
"completions/min_length": 256.0,
|
| 348 |
+
"completions/min_terminated_length": 0.0,
|
| 349 |
+
"entropy": 4.195557403564453,
|
| 350 |
+
"epoch": 0.22608695652173913,
|
| 351 |
+
"frac_reward_zero_std": 1.0,
|
| 352 |
+
"grad_norm": 0.0,
|
| 353 |
+
"kl": 0.0,
|
| 354 |
+
"learning_rate": 2.8625484707978777e-07,
|
| 355 |
+
"loss": 0.0,
|
| 356 |
+
"num_tokens": 798720.0,
|
| 357 |
+
"reward": 0.029999999329447746,
|
| 358 |
+
"reward_std": 0.0,
|
| 359 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 360 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 361 |
+
"step": 130
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"clip_ratio/high_max": 0.0,
|
| 365 |
+
"clip_ratio/high_mean": 0.0,
|
| 366 |
+
"clip_ratio/low_mean": 0.0,
|
| 367 |
+
"clip_ratio/low_min": 0.0,
|
| 368 |
+
"clip_ratio/region_mean": 0.0,
|
| 369 |
+
"completions/clipped_ratio": 1.0,
|
| 370 |
+
"completions/max_length": 256.0,
|
| 371 |
+
"completions/max_terminated_length": 0.0,
|
| 372 |
+
"completions/mean_length": 256.0,
|
| 373 |
+
"completions/mean_terminated_length": 0.0,
|
| 374 |
+
"completions/min_length": 256.0,
|
| 375 |
+
"completions/min_terminated_length": 0.0,
|
| 376 |
+
"entropy": 4.194677007198334,
|
| 377 |
+
"epoch": 0.24347826086956523,
|
| 378 |
+
"frac_reward_zero_std": 1.0,
|
| 379 |
+
"grad_norm": 0.0,
|
| 380 |
+
"kl": 0.0,
|
| 381 |
+
"learning_rate": 2.821940820360045e-07,
|
| 382 |
+
"loss": 0.0,
|
| 383 |
+
"num_tokens": 860160.0,
|
| 384 |
+
"reward": 0.029999999329447746,
|
| 385 |
+
"reward_std": 0.0,
|
| 386 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 387 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 388 |
+
"step": 140
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"clip_ratio/high_max": 0.0,
|
| 392 |
+
"clip_ratio/high_mean": 0.0,
|
| 393 |
+
"clip_ratio/low_mean": 0.0,
|
| 394 |
+
"clip_ratio/low_min": 0.0,
|
| 395 |
+
"clip_ratio/region_mean": 0.0,
|
| 396 |
+
"completions/clipped_ratio": 1.0,
|
| 397 |
+
"completions/max_length": 256.0,
|
| 398 |
+
"completions/max_terminated_length": 0.0,
|
| 399 |
+
"completions/mean_length": 256.0,
|
| 400 |
+
"completions/mean_terminated_length": 0.0,
|
| 401 |
+
"completions/min_length": 256.0,
|
| 402 |
+
"completions/min_terminated_length": 0.0,
|
| 403 |
+
"entropy": 4.1929250180721285,
|
| 404 |
+
"epoch": 0.2608695652173913,
|
| 405 |
+
"frac_reward_zero_std": 1.0,
|
| 406 |
+
"grad_norm": 0.0,
|
| 407 |
+
"kl": 0.0,
|
| 408 |
+
"learning_rate": 2.7764534259862475e-07,
|
| 409 |
+
"loss": 0.0,
|
| 410 |
+
"num_tokens": 921600.0,
|
| 411 |
+
"reward": 0.029999999329447746,
|
| 412 |
+
"reward_std": 0.0,
|
| 413 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 414 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 415 |
+
"step": 150
|
| 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": 1.0,
|
| 424 |
+
"completions/max_length": 256.0,
|
| 425 |
+
"completions/max_terminated_length": 0.0,
|
| 426 |
+
"completions/mean_length": 256.0,
|
| 427 |
+
"completions/mean_terminated_length": 0.0,
|
| 428 |
+
"completions/min_length": 256.0,
|
| 429 |
+
"completions/min_terminated_length": 0.0,
|
| 430 |
+
"entropy": 4.196537333726883,
|
| 431 |
+
"epoch": 0.2782608695652174,
|
| 432 |
+
"frac_reward_zero_std": 0.975,
|
| 433 |
+
"grad_norm": 0.0,
|
| 434 |
+
"kl": 0.0,
|
| 435 |
+
"learning_rate": 2.726254197490177e-07,
|
| 436 |
+
"loss": 0.0,
|
| 437 |
+
"num_tokens": 983040.0,
|
| 438 |
+
"reward": 0.030749999545514585,
|
| 439 |
+
"reward_std": 0.001060660183429718,
|
| 440 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 441 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 442 |
+
"step": 160
|
| 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": 1.0,
|
| 451 |
+
"completions/max_length": 256.0,
|
| 452 |
+
"completions/max_terminated_length": 0.0,
|
| 453 |
+
"completions/mean_length": 256.0,
|
| 454 |
+
"completions/mean_terminated_length": 0.0,
|
| 455 |
+
"completions/min_length": 256.0,
|
| 456 |
+
"completions/min_terminated_length": 0.0,
|
| 457 |
+
"entropy": 4.1940265417099,
|
| 458 |
+
"epoch": 0.2956521739130435,
|
| 459 |
+
"frac_reward_zero_std": 1.0,
|
| 460 |
+
"grad_norm": 0.0,
|
| 461 |
+
"kl": 0.0,
|
| 462 |
+
"learning_rate": 2.6715284377061744e-07,
|
| 463 |
+
"loss": 0.0,
|
| 464 |
+
"num_tokens": 1044480.0,
|
| 465 |
+
"reward": 0.029999999329447746,
|
| 466 |
+
"reward_std": 0.0,
|
| 467 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 468 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 469 |
+
"step": 170
|
| 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": 1.0,
|
| 478 |
+
"completions/max_length": 256.0,
|
| 479 |
+
"completions/max_terminated_length": 0.0,
|
| 480 |
+
"completions/mean_length": 256.0,
|
| 481 |
+
"completions/mean_terminated_length": 0.0,
|
| 482 |
+
"completions/min_length": 256.0,
|
| 483 |
+
"completions/min_terminated_length": 0.0,
|
| 484 |
+
"entropy": 4.1959984481334685,
|
| 485 |
+
"epoch": 0.3130434782608696,
|
| 486 |
+
"frac_reward_zero_std": 0.975,
|
| 487 |
+
"grad_norm": 0.0,
|
| 488 |
+
"kl": 0.0,
|
| 489 |
+
"learning_rate": 2.612478158471936e-07,
|
| 490 |
+
"loss": 0.0,
|
| 491 |
+
"num_tokens": 1105920.0,
|
| 492 |
+
"reward": 0.030749999545514585,
|
| 493 |
+
"reward_std": 0.001060660183429718,
|
| 494 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 495 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 496 |
+
"step": 180
|
| 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": 1.0,
|
| 505 |
+
"completions/max_length": 256.0,
|
| 506 |
+
"completions/max_terminated_length": 0.0,
|
| 507 |
+
"completions/mean_length": 256.0,
|
| 508 |
+
"completions/mean_terminated_length": 0.0,
|
| 509 |
+
"completions/min_length": 256.0,
|
| 510 |
+
"completions/min_terminated_length": 0.0,
|
| 511 |
+
"entropy": 4.196650129556656,
|
| 512 |
+
"epoch": 0.33043478260869563,
|
| 513 |
+
"frac_reward_zero_std": 0.975,
|
| 514 |
+
"grad_norm": 0.0,
|
| 515 |
+
"kl": 0.0,
|
| 516 |
+
"learning_rate": 2.549321334932471e-07,
|
| 517 |
+
"loss": 0.0,
|
| 518 |
+
"num_tokens": 1167360.0,
|
| 519 |
+
"reward": 0.030749999545514585,
|
| 520 |
+
"reward_std": 0.001060660183429718,
|
| 521 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 522 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 523 |
+
"step": 190
|
| 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": 1.0,
|
| 532 |
+
"completions/max_length": 256.0,
|
| 533 |
+
"completions/max_terminated_length": 0.0,
|
| 534 |
+
"completions/mean_length": 256.0,
|
| 535 |
+
"completions/mean_terminated_length": 0.0,
|
| 536 |
+
"completions/min_length": 256.0,
|
| 537 |
+
"completions/min_terminated_length": 0.0,
|
| 538 |
+
"entropy": 4.197754663228989,
|
| 539 |
+
"epoch": 0.34782608695652173,
|
| 540 |
+
"frac_reward_zero_std": 1.0,
|
| 541 |
+
"grad_norm": 0.0,
|
| 542 |
+
"kl": 0.0,
|
| 543 |
+
"learning_rate": 2.482291100917928e-07,
|
| 544 |
+
"loss": 0.0,
|
| 545 |
+
"num_tokens": 1228800.0,
|
| 546 |
+
"reward": 0.029999999329447746,
|
| 547 |
+
"reward_std": 0.0,
|
| 548 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 549 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 550 |
+
"step": 200
|
| 551 |
+
}
|
| 552 |
+
],
|
| 553 |
+
"logging_steps": 10,
|
| 554 |
+
"max_steps": 575,
|
| 555 |
+
"num_input_tokens_seen": 1228800,
|
| 556 |
+
"num_train_epochs": 1,
|
| 557 |
+
"save_steps": 100,
|
| 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": 1,
|
| 572 |
+
"trial_name": null,
|
| 573 |
+
"trial_params": null
|
| 574 |
+
}
|
checkpoint-200/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:602197fd53ffdde289907b300de58d2ec623bb7abb43919e0acaf29542bf7b08
|
| 3 |
+
size 7185
|
checkpoint-200/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-300/README.md
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: ./Qwen3-8B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:./Qwen3-8B
|
| 7 |
+
- grpo
|
| 8 |
+
- lora
|
| 9 |
+
- trl
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Model ID
|
| 13 |
+
|
| 14 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
## Model Details
|
| 19 |
+
|
| 20 |
+
### Model Description
|
| 21 |
+
|
| 22 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
- **Developed by:** [More Information Needed]
|
| 27 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 28 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 29 |
+
- **Model type:** [More Information Needed]
|
| 30 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 31 |
+
- **License:** [More Information Needed]
|
| 32 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 33 |
+
|
| 34 |
+
### Model Sources [optional]
|
| 35 |
+
|
| 36 |
+
<!-- Provide the basic links for the model. -->
|
| 37 |
+
|
| 38 |
+
- **Repository:** [More Information Needed]
|
| 39 |
+
- **Paper [optional]:** [More Information Needed]
|
| 40 |
+
- **Demo [optional]:** [More Information Needed]
|
| 41 |
+
|
| 42 |
+
## Uses
|
| 43 |
+
|
| 44 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 45 |
+
|
| 46 |
+
### Direct Use
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Downstream Use [optional]
|
| 53 |
+
|
| 54 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
### Out-of-Scope Use
|
| 59 |
+
|
| 60 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
## Bias, Risks, and Limitations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 67 |
+
|
| 68 |
+
[More Information Needed]
|
| 69 |
+
|
| 70 |
+
### Recommendations
|
| 71 |
+
|
| 72 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 73 |
+
|
| 74 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 75 |
+
|
| 76 |
+
## How to Get Started with the Model
|
| 77 |
+
|
| 78 |
+
Use the code below to get started with the model.
|
| 79 |
+
|
| 80 |
+
[More Information Needed]
|
| 81 |
+
|
| 82 |
+
## Training Details
|
| 83 |
+
|
| 84 |
+
### Training Data
|
| 85 |
+
|
| 86 |
+
<!-- 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. -->
|
| 87 |
+
|
| 88 |
+
[More Information Needed]
|
| 89 |
+
|
| 90 |
+
### Training Procedure
|
| 91 |
+
|
| 92 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 93 |
+
|
| 94 |
+
#### Preprocessing [optional]
|
| 95 |
+
|
| 96 |
+
[More Information Needed]
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
#### Training Hyperparameters
|
| 100 |
+
|
| 101 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 102 |
+
|
| 103 |
+
#### Speeds, Sizes, Times [optional]
|
| 104 |
+
|
| 105 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Evaluation
|
| 110 |
+
|
| 111 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 112 |
+
|
| 113 |
+
### Testing Data, Factors & Metrics
|
| 114 |
+
|
| 115 |
+
#### Testing Data
|
| 116 |
+
|
| 117 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Factors
|
| 122 |
+
|
| 123 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
#### Metrics
|
| 128 |
+
|
| 129 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 130 |
+
|
| 131 |
+
[More Information Needed]
|
| 132 |
+
|
| 133 |
+
### Results
|
| 134 |
+
|
| 135 |
+
[More Information Needed]
|
| 136 |
+
|
| 137 |
+
#### Summary
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
## Model Examination [optional]
|
| 142 |
+
|
| 143 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 144 |
+
|
| 145 |
+
[More Information Needed]
|
| 146 |
+
|
| 147 |
+
## Environmental Impact
|
| 148 |
+
|
| 149 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 150 |
+
|
| 151 |
+
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).
|
| 152 |
+
|
| 153 |
+
- **Hardware Type:** [More Information Needed]
|
| 154 |
+
- **Hours used:** [More Information Needed]
|
| 155 |
+
- **Cloud Provider:** [More Information Needed]
|
| 156 |
+
- **Compute Region:** [More Information Needed]
|
| 157 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 158 |
+
|
| 159 |
+
## Technical Specifications [optional]
|
| 160 |
+
|
| 161 |
+
### Model Architecture and Objective
|
| 162 |
+
|
| 163 |
+
[More Information Needed]
|
| 164 |
+
|
| 165 |
+
### Compute Infrastructure
|
| 166 |
+
|
| 167 |
+
[More Information Needed]
|
| 168 |
+
|
| 169 |
+
#### Hardware
|
| 170 |
+
|
| 171 |
+
[More Information Needed]
|
| 172 |
+
|
| 173 |
+
#### Software
|
| 174 |
+
|
| 175 |
+
[More Information Needed]
|
| 176 |
+
|
| 177 |
+
## Citation [optional]
|
| 178 |
+
|
| 179 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 180 |
+
|
| 181 |
+
**BibTeX:**
|
| 182 |
+
|
| 183 |
+
[More Information Needed]
|
| 184 |
+
|
| 185 |
+
**APA:**
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## Glossary [optional]
|
| 190 |
+
|
| 191 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 192 |
+
|
| 193 |
+
[More Information Needed]
|
| 194 |
+
|
| 195 |
+
## More Information [optional]
|
| 196 |
+
|
| 197 |
+
[More Information Needed]
|
| 198 |
+
|
| 199 |
+
## Model Card Authors [optional]
|
| 200 |
+
|
| 201 |
+
[More Information Needed]
|
| 202 |
+
|
| 203 |
+
## Model Card Contact
|
| 204 |
+
|
| 205 |
+
[More Information Needed]
|
| 206 |
+
### Framework versions
|
| 207 |
+
|
| 208 |
+
- PEFT 0.17.1
|
checkpoint-300/adapter_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "./Qwen3-8B",
|
| 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.0,
|
| 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 |
+
"v_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"up_proj",
|
| 31 |
+
"k_proj",
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"down_proj",
|
| 34 |
+
"o_proj"
|
| 35 |
+
],
|
| 36 |
+
"target_parameters": null,
|
| 37 |
+
"task_type": "CAUSAL_LM",
|
| 38 |
+
"trainable_token_indices": null,
|
| 39 |
+
"use_dora": false,
|
| 40 |
+
"use_qalora": false,
|
| 41 |
+
"use_rslora": true
|
| 42 |
+
}
|
checkpoint-300/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3807c79a631505c93195d7b1daecd3fdc846b56321674546df28b9711a7c9330
|
| 3 |
+
size 349252320
|
checkpoint-300/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 |
+
}
|
checkpoint-300/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 %}
|
checkpoint-300/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-300/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a726a6e689f81a9dc7102423b235a6ba72898bb76effd7c672567ea1a3c29ebd
|
| 3 |
+
size 1593
|
checkpoint-300/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5628f0823694c1c2567134bd16d45592dfdbf38aeefdadcd14e68c0ff38795b2
|
| 3 |
+
size 14645
|
checkpoint-300/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc7addb96a6610dd01218d465a78b67d7dd6d12612fa1ee665b315a07d96cbd4
|
| 3 |
+
size 1465
|
checkpoint-300/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-300/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67cc0080ffd7555f723f423c27cfef314e1ad9d335c8b79f465c5faba1ed478b
|
| 3 |
+
size 11422821
|
checkpoint-300/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": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-300/trainer_state.json
ADDED
|
@@ -0,0 +1,844 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.5217391304347826,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 300,
|
| 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": 1.0,
|
| 19 |
+
"completions/max_length": 256.0,
|
| 20 |
+
"completions/max_terminated_length": 0.0,
|
| 21 |
+
"completions/mean_length": 256.0,
|
| 22 |
+
"completions/mean_terminated_length": 0.0,
|
| 23 |
+
"completions/min_length": 256.0,
|
| 24 |
+
"completions/min_terminated_length": 0.0,
|
| 25 |
+
"entropy": 4.197749018669128,
|
| 26 |
+
"epoch": 0.017391304347826087,
|
| 27 |
+
"frac_reward_zero_std": 1.0,
|
| 28 |
+
"grad_norm": 0.0,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 4.6551724137931034e-08,
|
| 31 |
+
"loss": 0.0,
|
| 32 |
+
"num_tokens": 61440.0,
|
| 33 |
+
"reward": 0.029999999329447746,
|
| 34 |
+
"reward_std": 0.0,
|
| 35 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 36 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 37 |
+
"step": 10
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"clip_ratio/high_max": 0.0,
|
| 41 |
+
"clip_ratio/high_mean": 0.0,
|
| 42 |
+
"clip_ratio/low_mean": 0.0,
|
| 43 |
+
"clip_ratio/low_min": 0.0,
|
| 44 |
+
"clip_ratio/region_mean": 0.0,
|
| 45 |
+
"completions/clipped_ratio": 1.0,
|
| 46 |
+
"completions/max_length": 256.0,
|
| 47 |
+
"completions/max_terminated_length": 0.0,
|
| 48 |
+
"completions/mean_length": 256.0,
|
| 49 |
+
"completions/mean_terminated_length": 0.0,
|
| 50 |
+
"completions/min_length": 256.0,
|
| 51 |
+
"completions/min_terminated_length": 0.0,
|
| 52 |
+
"entropy": 4.19401963353157,
|
| 53 |
+
"epoch": 0.034782608695652174,
|
| 54 |
+
"frac_reward_zero_std": 1.0,
|
| 55 |
+
"grad_norm": 0.0,
|
| 56 |
+
"kl": 0.0,
|
| 57 |
+
"learning_rate": 9.82758620689655e-08,
|
| 58 |
+
"loss": 0.0,
|
| 59 |
+
"num_tokens": 122880.0,
|
| 60 |
+
"reward": 0.029999999329447746,
|
| 61 |
+
"reward_std": 0.0,
|
| 62 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 63 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 64 |
+
"step": 20
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"clip_ratio/high_max": 0.0,
|
| 68 |
+
"clip_ratio/high_mean": 0.0,
|
| 69 |
+
"clip_ratio/low_mean": 0.0,
|
| 70 |
+
"clip_ratio/low_min": 0.0,
|
| 71 |
+
"clip_ratio/region_mean": 0.0,
|
| 72 |
+
"completions/clipped_ratio": 1.0,
|
| 73 |
+
"completions/max_length": 256.0,
|
| 74 |
+
"completions/max_terminated_length": 0.0,
|
| 75 |
+
"completions/mean_length": 256.0,
|
| 76 |
+
"completions/mean_terminated_length": 0.0,
|
| 77 |
+
"completions/min_length": 256.0,
|
| 78 |
+
"completions/min_terminated_length": 0.0,
|
| 79 |
+
"entropy": 4.195999360084533,
|
| 80 |
+
"epoch": 0.05217391304347826,
|
| 81 |
+
"frac_reward_zero_std": 0.925,
|
| 82 |
+
"grad_norm": 0.0,
|
| 83 |
+
"kl": 0.0,
|
| 84 |
+
"learning_rate": 1.5e-07,
|
| 85 |
+
"loss": 0.0,
|
| 86 |
+
"num_tokens": 184320.0,
|
| 87 |
+
"reward": 0.032249999977648255,
|
| 88 |
+
"reward_std": 0.003181980550289154,
|
| 89 |
+
"rewards/grpo_reward_func_safe/mean": 0.032249999977648255,
|
| 90 |
+
"rewards/grpo_reward_func_safe/std": 0.006363961659371853,
|
| 91 |
+
"step": 30
|
| 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": 1.0,
|
| 100 |
+
"completions/max_length": 256.0,
|
| 101 |
+
"completions/max_terminated_length": 0.0,
|
| 102 |
+
"completions/mean_length": 256.0,
|
| 103 |
+
"completions/mean_terminated_length": 0.0,
|
| 104 |
+
"completions/min_length": 256.0,
|
| 105 |
+
"completions/min_terminated_length": 0.0,
|
| 106 |
+
"entropy": 4.196434891223907,
|
| 107 |
+
"epoch": 0.06956521739130435,
|
| 108 |
+
"frac_reward_zero_std": 0.975,
|
| 109 |
+
"grad_norm": 0.0,
|
| 110 |
+
"kl": 0.0,
|
| 111 |
+
"learning_rate": 2.0172413793103448e-07,
|
| 112 |
+
"loss": 0.0,
|
| 113 |
+
"num_tokens": 245760.0,
|
| 114 |
+
"reward": 0.030749999545514585,
|
| 115 |
+
"reward_std": 0.001060660183429718,
|
| 116 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 117 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 118 |
+
"step": 40
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"clip_ratio/high_max": 0.0,
|
| 122 |
+
"clip_ratio/high_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_mean": 0.0,
|
| 124 |
+
"clip_ratio/low_min": 0.0,
|
| 125 |
+
"clip_ratio/region_mean": 0.0,
|
| 126 |
+
"completions/clipped_ratio": 1.0,
|
| 127 |
+
"completions/max_length": 256.0,
|
| 128 |
+
"completions/max_terminated_length": 0.0,
|
| 129 |
+
"completions/mean_length": 256.0,
|
| 130 |
+
"completions/mean_terminated_length": 0.0,
|
| 131 |
+
"completions/min_length": 256.0,
|
| 132 |
+
"completions/min_terminated_length": 0.0,
|
| 133 |
+
"entropy": 4.196214777231217,
|
| 134 |
+
"epoch": 0.08695652173913043,
|
| 135 |
+
"frac_reward_zero_std": 0.975,
|
| 136 |
+
"grad_norm": 0.0006065674824640155,
|
| 137 |
+
"kl": 0.0,
|
| 138 |
+
"learning_rate": 2.5344827586206897e-07,
|
| 139 |
+
"loss": 0.0,
|
| 140 |
+
"num_tokens": 307200.0,
|
| 141 |
+
"reward": 0.030749999545514585,
|
| 142 |
+
"reward_std": 0.001060660183429718,
|
| 143 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 144 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 145 |
+
"step": 50
|
| 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": 1.0,
|
| 154 |
+
"completions/max_length": 256.0,
|
| 155 |
+
"completions/max_terminated_length": 0.0,
|
| 156 |
+
"completions/mean_length": 256.0,
|
| 157 |
+
"completions/mean_terminated_length": 0.0,
|
| 158 |
+
"completions/min_length": 256.0,
|
| 159 |
+
"completions/min_terminated_length": 0.0,
|
| 160 |
+
"entropy": 4.195889353752136,
|
| 161 |
+
"epoch": 0.10434782608695652,
|
| 162 |
+
"frac_reward_zero_std": 1.0,
|
| 163 |
+
"grad_norm": 0.0,
|
| 164 |
+
"kl": 0.0,
|
| 165 |
+
"learning_rate": 2.9999723064528515e-07,
|
| 166 |
+
"loss": 0.0,
|
| 167 |
+
"num_tokens": 368640.0,
|
| 168 |
+
"reward": 0.029999999329447746,
|
| 169 |
+
"reward_std": 0.0,
|
| 170 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 171 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 172 |
+
"step": 60
|
| 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": 1.0,
|
| 181 |
+
"completions/max_length": 256.0,
|
| 182 |
+
"completions/max_terminated_length": 0.0,
|
| 183 |
+
"completions/mean_length": 256.0,
|
| 184 |
+
"completions/mean_terminated_length": 0.0,
|
| 185 |
+
"completions/min_length": 256.0,
|
| 186 |
+
"completions/min_terminated_length": 0.0,
|
| 187 |
+
"entropy": 4.19403246641159,
|
| 188 |
+
"epoch": 0.12173913043478261,
|
| 189 |
+
"frac_reward_zero_std": 1.0,
|
| 190 |
+
"grad_norm": 0.0,
|
| 191 |
+
"kl": 0.0,
|
| 192 |
+
"learning_rate": 2.99665031793473e-07,
|
| 193 |
+
"loss": 0.0,
|
| 194 |
+
"num_tokens": 430080.0,
|
| 195 |
+
"reward": 0.029999999329447746,
|
| 196 |
+
"reward_std": 0.0,
|
| 197 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 198 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 199 |
+
"step": 70
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"clip_ratio/high_max": 0.0,
|
| 203 |
+
"clip_ratio/high_mean": 0.0,
|
| 204 |
+
"clip_ratio/low_mean": 0.0,
|
| 205 |
+
"clip_ratio/low_min": 0.0,
|
| 206 |
+
"clip_ratio/region_mean": 0.0,
|
| 207 |
+
"completions/clipped_ratio": 1.0,
|
| 208 |
+
"completions/max_length": 256.0,
|
| 209 |
+
"completions/max_terminated_length": 0.0,
|
| 210 |
+
"completions/mean_length": 256.0,
|
| 211 |
+
"completions/mean_terminated_length": 0.0,
|
| 212 |
+
"completions/min_length": 256.0,
|
| 213 |
+
"completions/min_terminated_length": 0.0,
|
| 214 |
+
"entropy": 4.1964380741119385,
|
| 215 |
+
"epoch": 0.1391304347826087,
|
| 216 |
+
"frac_reward_zero_std": 1.0,
|
| 217 |
+
"grad_norm": 0.0,
|
| 218 |
+
"kl": 0.0,
|
| 219 |
+
"learning_rate": 2.987803671882231e-07,
|
| 220 |
+
"loss": 0.0,
|
| 221 |
+
"num_tokens": 491520.0,
|
| 222 |
+
"reward": 0.029999999329447746,
|
| 223 |
+
"reward_std": 0.0,
|
| 224 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 225 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 226 |
+
"step": 80
|
| 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": 1.0,
|
| 235 |
+
"completions/max_length": 256.0,
|
| 236 |
+
"completions/max_terminated_length": 0.0,
|
| 237 |
+
"completions/mean_length": 256.0,
|
| 238 |
+
"completions/mean_terminated_length": 0.0,
|
| 239 |
+
"completions/min_length": 256.0,
|
| 240 |
+
"completions/min_terminated_length": 0.0,
|
| 241 |
+
"entropy": 4.197315156459808,
|
| 242 |
+
"epoch": 0.1565217391304348,
|
| 243 |
+
"frac_reward_zero_std": 0.975,
|
| 244 |
+
"grad_norm": 0.0,
|
| 245 |
+
"kl": 0.0,
|
| 246 |
+
"learning_rate": 2.9734650243467943e-07,
|
| 247 |
+
"loss": 0.0,
|
| 248 |
+
"num_tokens": 552960.0,
|
| 249 |
+
"reward": 0.030749999545514585,
|
| 250 |
+
"reward_std": 0.001060660183429718,
|
| 251 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 252 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 253 |
+
"step": 90
|
| 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": 1.0,
|
| 262 |
+
"completions/max_length": 256.0,
|
| 263 |
+
"completions/max_terminated_length": 0.0,
|
| 264 |
+
"completions/mean_length": 256.0,
|
| 265 |
+
"completions/mean_terminated_length": 0.0,
|
| 266 |
+
"completions/min_length": 256.0,
|
| 267 |
+
"completions/min_terminated_length": 0.0,
|
| 268 |
+
"entropy": 4.196321958303452,
|
| 269 |
+
"epoch": 0.17391304347826086,
|
| 270 |
+
"frac_reward_zero_std": 1.0,
|
| 271 |
+
"grad_norm": 0.0,
|
| 272 |
+
"kl": 0.0,
|
| 273 |
+
"learning_rate": 2.95368730426993e-07,
|
| 274 |
+
"loss": 0.0,
|
| 275 |
+
"num_tokens": 614400.0,
|
| 276 |
+
"reward": 0.029999999329447746,
|
| 277 |
+
"reward_std": 0.0,
|
| 278 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 279 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 280 |
+
"step": 100
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"clip_ratio/high_max": 0.0,
|
| 284 |
+
"clip_ratio/high_mean": 0.0,
|
| 285 |
+
"clip_ratio/low_mean": 0.0,
|
| 286 |
+
"clip_ratio/low_min": 0.0,
|
| 287 |
+
"clip_ratio/region_mean": 0.0,
|
| 288 |
+
"completions/clipped_ratio": 1.0,
|
| 289 |
+
"completions/max_length": 256.0,
|
| 290 |
+
"completions/max_terminated_length": 0.0,
|
| 291 |
+
"completions/mean_length": 256.0,
|
| 292 |
+
"completions/mean_terminated_length": 0.0,
|
| 293 |
+
"completions/min_length": 256.0,
|
| 294 |
+
"completions/min_terminated_length": 0.0,
|
| 295 |
+
"entropy": 4.1931467890739444,
|
| 296 |
+
"epoch": 0.19130434782608696,
|
| 297 |
+
"frac_reward_zero_std": 0.9,
|
| 298 |
+
"grad_norm": 0.0,
|
| 299 |
+
"kl": 0.0,
|
| 300 |
+
"learning_rate": 2.9285435181040643e-07,
|
| 301 |
+
"loss": 0.0,
|
| 302 |
+
"num_tokens": 675840.0,
|
| 303 |
+
"reward": 0.03300000000745058,
|
| 304 |
+
"reward_std": 0.004242640733718872,
|
| 305 |
+
"rewards/grpo_reward_func_safe/mean": 0.03300000000745058,
|
| 306 |
+
"rewards/grpo_reward_func_safe/std": 0.007020101696252823,
|
| 307 |
+
"step": 110
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completions/clipped_ratio": 1.0,
|
| 316 |
+
"completions/max_length": 256.0,
|
| 317 |
+
"completions/max_terminated_length": 0.0,
|
| 318 |
+
"completions/mean_length": 256.0,
|
| 319 |
+
"completions/mean_terminated_length": 0.0,
|
| 320 |
+
"completions/min_length": 256.0,
|
| 321 |
+
"completions/min_terminated_length": 0.0,
|
| 322 |
+
"entropy": 4.1976454019546505,
|
| 323 |
+
"epoch": 0.20869565217391303,
|
| 324 |
+
"frac_reward_zero_std": 0.95,
|
| 325 |
+
"grad_norm": 0.0,
|
| 326 |
+
"kl": 0.0,
|
| 327 |
+
"learning_rate": 2.8981264803202996e-07,
|
| 328 |
+
"loss": 0.0,
|
| 329 |
+
"num_tokens": 737280.0,
|
| 330 |
+
"reward": 0.031499999761581424,
|
| 331 |
+
"reward_std": 0.002121320366859436,
|
| 332 |
+
"rewards/grpo_reward_func_safe/mean": 0.031499999761581424,
|
| 333 |
+
"rewards/grpo_reward_func_safe/std": 0.004242641106247902,
|
| 334 |
+
"step": 120
|
| 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": 1.0,
|
| 343 |
+
"completions/max_length": 256.0,
|
| 344 |
+
"completions/max_terminated_length": 0.0,
|
| 345 |
+
"completions/mean_length": 256.0,
|
| 346 |
+
"completions/mean_terminated_length": 0.0,
|
| 347 |
+
"completions/min_length": 256.0,
|
| 348 |
+
"completions/min_terminated_length": 0.0,
|
| 349 |
+
"entropy": 4.195557403564453,
|
| 350 |
+
"epoch": 0.22608695652173913,
|
| 351 |
+
"frac_reward_zero_std": 1.0,
|
| 352 |
+
"grad_norm": 0.0,
|
| 353 |
+
"kl": 0.0,
|
| 354 |
+
"learning_rate": 2.8625484707978777e-07,
|
| 355 |
+
"loss": 0.0,
|
| 356 |
+
"num_tokens": 798720.0,
|
| 357 |
+
"reward": 0.029999999329447746,
|
| 358 |
+
"reward_std": 0.0,
|
| 359 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 360 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 361 |
+
"step": 130
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"clip_ratio/high_max": 0.0,
|
| 365 |
+
"clip_ratio/high_mean": 0.0,
|
| 366 |
+
"clip_ratio/low_mean": 0.0,
|
| 367 |
+
"clip_ratio/low_min": 0.0,
|
| 368 |
+
"clip_ratio/region_mean": 0.0,
|
| 369 |
+
"completions/clipped_ratio": 1.0,
|
| 370 |
+
"completions/max_length": 256.0,
|
| 371 |
+
"completions/max_terminated_length": 0.0,
|
| 372 |
+
"completions/mean_length": 256.0,
|
| 373 |
+
"completions/mean_terminated_length": 0.0,
|
| 374 |
+
"completions/min_length": 256.0,
|
| 375 |
+
"completions/min_terminated_length": 0.0,
|
| 376 |
+
"entropy": 4.194677007198334,
|
| 377 |
+
"epoch": 0.24347826086956523,
|
| 378 |
+
"frac_reward_zero_std": 1.0,
|
| 379 |
+
"grad_norm": 0.0,
|
| 380 |
+
"kl": 0.0,
|
| 381 |
+
"learning_rate": 2.821940820360045e-07,
|
| 382 |
+
"loss": 0.0,
|
| 383 |
+
"num_tokens": 860160.0,
|
| 384 |
+
"reward": 0.029999999329447746,
|
| 385 |
+
"reward_std": 0.0,
|
| 386 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 387 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 388 |
+
"step": 140
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"clip_ratio/high_max": 0.0,
|
| 392 |
+
"clip_ratio/high_mean": 0.0,
|
| 393 |
+
"clip_ratio/low_mean": 0.0,
|
| 394 |
+
"clip_ratio/low_min": 0.0,
|
| 395 |
+
"clip_ratio/region_mean": 0.0,
|
| 396 |
+
"completions/clipped_ratio": 1.0,
|
| 397 |
+
"completions/max_length": 256.0,
|
| 398 |
+
"completions/max_terminated_length": 0.0,
|
| 399 |
+
"completions/mean_length": 256.0,
|
| 400 |
+
"completions/mean_terminated_length": 0.0,
|
| 401 |
+
"completions/min_length": 256.0,
|
| 402 |
+
"completions/min_terminated_length": 0.0,
|
| 403 |
+
"entropy": 4.1929250180721285,
|
| 404 |
+
"epoch": 0.2608695652173913,
|
| 405 |
+
"frac_reward_zero_std": 1.0,
|
| 406 |
+
"grad_norm": 0.0,
|
| 407 |
+
"kl": 0.0,
|
| 408 |
+
"learning_rate": 2.7764534259862475e-07,
|
| 409 |
+
"loss": 0.0,
|
| 410 |
+
"num_tokens": 921600.0,
|
| 411 |
+
"reward": 0.029999999329447746,
|
| 412 |
+
"reward_std": 0.0,
|
| 413 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 414 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 415 |
+
"step": 150
|
| 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": 1.0,
|
| 424 |
+
"completions/max_length": 256.0,
|
| 425 |
+
"completions/max_terminated_length": 0.0,
|
| 426 |
+
"completions/mean_length": 256.0,
|
| 427 |
+
"completions/mean_terminated_length": 0.0,
|
| 428 |
+
"completions/min_length": 256.0,
|
| 429 |
+
"completions/min_terminated_length": 0.0,
|
| 430 |
+
"entropy": 4.196537333726883,
|
| 431 |
+
"epoch": 0.2782608695652174,
|
| 432 |
+
"frac_reward_zero_std": 0.975,
|
| 433 |
+
"grad_norm": 0.0,
|
| 434 |
+
"kl": 0.0,
|
| 435 |
+
"learning_rate": 2.726254197490177e-07,
|
| 436 |
+
"loss": 0.0,
|
| 437 |
+
"num_tokens": 983040.0,
|
| 438 |
+
"reward": 0.030749999545514585,
|
| 439 |
+
"reward_std": 0.001060660183429718,
|
| 440 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 441 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 442 |
+
"step": 160
|
| 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": 1.0,
|
| 451 |
+
"completions/max_length": 256.0,
|
| 452 |
+
"completions/max_terminated_length": 0.0,
|
| 453 |
+
"completions/mean_length": 256.0,
|
| 454 |
+
"completions/mean_terminated_length": 0.0,
|
| 455 |
+
"completions/min_length": 256.0,
|
| 456 |
+
"completions/min_terminated_length": 0.0,
|
| 457 |
+
"entropy": 4.1940265417099,
|
| 458 |
+
"epoch": 0.2956521739130435,
|
| 459 |
+
"frac_reward_zero_std": 1.0,
|
| 460 |
+
"grad_norm": 0.0,
|
| 461 |
+
"kl": 0.0,
|
| 462 |
+
"learning_rate": 2.6715284377061744e-07,
|
| 463 |
+
"loss": 0.0,
|
| 464 |
+
"num_tokens": 1044480.0,
|
| 465 |
+
"reward": 0.029999999329447746,
|
| 466 |
+
"reward_std": 0.0,
|
| 467 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 468 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 469 |
+
"step": 170
|
| 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": 1.0,
|
| 478 |
+
"completions/max_length": 256.0,
|
| 479 |
+
"completions/max_terminated_length": 0.0,
|
| 480 |
+
"completions/mean_length": 256.0,
|
| 481 |
+
"completions/mean_terminated_length": 0.0,
|
| 482 |
+
"completions/min_length": 256.0,
|
| 483 |
+
"completions/min_terminated_length": 0.0,
|
| 484 |
+
"entropy": 4.1959984481334685,
|
| 485 |
+
"epoch": 0.3130434782608696,
|
| 486 |
+
"frac_reward_zero_std": 0.975,
|
| 487 |
+
"grad_norm": 0.0,
|
| 488 |
+
"kl": 0.0,
|
| 489 |
+
"learning_rate": 2.612478158471936e-07,
|
| 490 |
+
"loss": 0.0,
|
| 491 |
+
"num_tokens": 1105920.0,
|
| 492 |
+
"reward": 0.030749999545514585,
|
| 493 |
+
"reward_std": 0.001060660183429718,
|
| 494 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 495 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 496 |
+
"step": 180
|
| 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": 1.0,
|
| 505 |
+
"completions/max_length": 256.0,
|
| 506 |
+
"completions/max_terminated_length": 0.0,
|
| 507 |
+
"completions/mean_length": 256.0,
|
| 508 |
+
"completions/mean_terminated_length": 0.0,
|
| 509 |
+
"completions/min_length": 256.0,
|
| 510 |
+
"completions/min_terminated_length": 0.0,
|
| 511 |
+
"entropy": 4.196650129556656,
|
| 512 |
+
"epoch": 0.33043478260869563,
|
| 513 |
+
"frac_reward_zero_std": 0.975,
|
| 514 |
+
"grad_norm": 0.0,
|
| 515 |
+
"kl": 0.0,
|
| 516 |
+
"learning_rate": 2.549321334932471e-07,
|
| 517 |
+
"loss": 0.0,
|
| 518 |
+
"num_tokens": 1167360.0,
|
| 519 |
+
"reward": 0.030749999545514585,
|
| 520 |
+
"reward_std": 0.001060660183429718,
|
| 521 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 522 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 523 |
+
"step": 190
|
| 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": 1.0,
|
| 532 |
+
"completions/max_length": 256.0,
|
| 533 |
+
"completions/max_terminated_length": 0.0,
|
| 534 |
+
"completions/mean_length": 256.0,
|
| 535 |
+
"completions/mean_terminated_length": 0.0,
|
| 536 |
+
"completions/min_length": 256.0,
|
| 537 |
+
"completions/min_terminated_length": 0.0,
|
| 538 |
+
"entropy": 4.197754663228989,
|
| 539 |
+
"epoch": 0.34782608695652173,
|
| 540 |
+
"frac_reward_zero_std": 1.0,
|
| 541 |
+
"grad_norm": 0.0,
|
| 542 |
+
"kl": 0.0,
|
| 543 |
+
"learning_rate": 2.482291100917928e-07,
|
| 544 |
+
"loss": 0.0,
|
| 545 |
+
"num_tokens": 1228800.0,
|
| 546 |
+
"reward": 0.029999999329447746,
|
| 547 |
+
"reward_std": 0.0,
|
| 548 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 549 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 550 |
+
"step": 200
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"clip_ratio/high_max": 0.0,
|
| 554 |
+
"clip_ratio/high_mean": 0.0,
|
| 555 |
+
"clip_ratio/low_mean": 0.0,
|
| 556 |
+
"clip_ratio/low_min": 0.0,
|
| 557 |
+
"clip_ratio/region_mean": 0.0,
|
| 558 |
+
"completions/clipped_ratio": 1.0,
|
| 559 |
+
"completions/max_length": 256.0,
|
| 560 |
+
"completions/max_terminated_length": 0.0,
|
| 561 |
+
"completions/mean_length": 256.0,
|
| 562 |
+
"completions/mean_terminated_length": 0.0,
|
| 563 |
+
"completions/min_length": 256.0,
|
| 564 |
+
"completions/min_terminated_length": 0.0,
|
| 565 |
+
"entropy": 4.195551466941834,
|
| 566 |
+
"epoch": 0.3652173913043478,
|
| 567 |
+
"frac_reward_zero_std": 0.95,
|
| 568 |
+
"grad_norm": 0.0,
|
| 569 |
+
"kl": 0.0,
|
| 570 |
+
"learning_rate": 2.4116348883654406e-07,
|
| 571 |
+
"loss": 0.0,
|
| 572 |
+
"num_tokens": 1290240.0,
|
| 573 |
+
"reward": 0.031499999761581424,
|
| 574 |
+
"reward_std": 0.002121320366859436,
|
| 575 |
+
"rewards/grpo_reward_func_safe/mean": 0.031499999761581424,
|
| 576 |
+
"rewards/grpo_reward_func_safe/std": 0.004242641106247902,
|
| 577 |
+
"step": 210
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"clip_ratio/high_max": 0.0,
|
| 581 |
+
"clip_ratio/high_mean": 0.0,
|
| 582 |
+
"clip_ratio/low_mean": 0.0,
|
| 583 |
+
"clip_ratio/low_min": 0.0,
|
| 584 |
+
"clip_ratio/region_mean": 0.0,
|
| 585 |
+
"completions/clipped_ratio": 1.0,
|
| 586 |
+
"completions/max_length": 256.0,
|
| 587 |
+
"completions/max_terminated_length": 0.0,
|
| 588 |
+
"completions/mean_length": 256.0,
|
| 589 |
+
"completions/mean_terminated_length": 0.0,
|
| 590 |
+
"completions/min_length": 256.0,
|
| 591 |
+
"completions/min_terminated_length": 0.0,
|
| 592 |
+
"entropy": 4.196211206912994,
|
| 593 |
+
"epoch": 0.3826086956521739,
|
| 594 |
+
"frac_reward_zero_std": 0.975,
|
| 595 |
+
"grad_norm": 0.0,
|
| 596 |
+
"kl": 0.0,
|
| 597 |
+
"learning_rate": 2.337613513961682e-07,
|
| 598 |
+
"loss": 0.0,
|
| 599 |
+
"num_tokens": 1351680.0,
|
| 600 |
+
"reward": 0.030749999545514585,
|
| 601 |
+
"reward_std": 0.001060660183429718,
|
| 602 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 603 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 604 |
+
"step": 220
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"clip_ratio/high_max": 0.0,
|
| 608 |
+
"clip_ratio/high_mean": 0.0,
|
| 609 |
+
"clip_ratio/low_mean": 0.0,
|
| 610 |
+
"clip_ratio/low_min": 0.0,
|
| 611 |
+
"clip_ratio/region_mean": 0.0,
|
| 612 |
+
"completions/clipped_ratio": 1.0,
|
| 613 |
+
"completions/max_length": 256.0,
|
| 614 |
+
"completions/max_terminated_length": 0.0,
|
| 615 |
+
"completions/mean_length": 256.0,
|
| 616 |
+
"completions/mean_terminated_length": 0.0,
|
| 617 |
+
"completions/min_length": 256.0,
|
| 618 |
+
"completions/min_terminated_length": 0.0,
|
| 619 |
+
"entropy": 4.194020962715149,
|
| 620 |
+
"epoch": 0.4,
|
| 621 |
+
"frac_reward_zero_std": 0.975,
|
| 622 |
+
"grad_norm": 0.0,
|
| 623 |
+
"kl": 0.0,
|
| 624 |
+
"learning_rate": 2.2605002163776373e-07,
|
| 625 |
+
"loss": 0.0,
|
| 626 |
+
"num_tokens": 1413120.0,
|
| 627 |
+
"reward": 0.030749999545514585,
|
| 628 |
+
"reward_std": 0.001060660183429718,
|
| 629 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 630 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 631 |
+
"step": 230
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"clip_ratio/high_max": 0.0,
|
| 635 |
+
"clip_ratio/high_mean": 0.0,
|
| 636 |
+
"clip_ratio/low_mean": 0.0,
|
| 637 |
+
"clip_ratio/low_min": 0.0,
|
| 638 |
+
"clip_ratio/region_mean": 0.0,
|
| 639 |
+
"completions/clipped_ratio": 1.0,
|
| 640 |
+
"completions/max_length": 256.0,
|
| 641 |
+
"completions/max_terminated_length": 0.0,
|
| 642 |
+
"completions/mean_length": 256.0,
|
| 643 |
+
"completions/mean_terminated_length": 0.0,
|
| 644 |
+
"completions/min_length": 256.0,
|
| 645 |
+
"completions/min_terminated_length": 0.0,
|
| 646 |
+
"entropy": 4.196980035305023,
|
| 647 |
+
"epoch": 0.41739130434782606,
|
| 648 |
+
"frac_reward_zero_std": 1.0,
|
| 649 |
+
"grad_norm": 0.0,
|
| 650 |
+
"kl": 0.0,
|
| 651 |
+
"learning_rate": 2.18057964764952e-07,
|
| 652 |
+
"loss": 0.0,
|
| 653 |
+
"num_tokens": 1474560.0,
|
| 654 |
+
"reward": 0.029999999329447746,
|
| 655 |
+
"reward_std": 0.0,
|
| 656 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 657 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 658 |
+
"step": 240
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"clip_ratio/high_max": 0.0,
|
| 662 |
+
"clip_ratio/high_mean": 0.0,
|
| 663 |
+
"clip_ratio/low_mean": 0.0,
|
| 664 |
+
"clip_ratio/low_min": 0.0,
|
| 665 |
+
"clip_ratio/region_mean": 0.0,
|
| 666 |
+
"completions/clipped_ratio": 1.0,
|
| 667 |
+
"completions/max_length": 256.0,
|
| 668 |
+
"completions/max_terminated_length": 0.0,
|
| 669 |
+
"completions/mean_length": 256.0,
|
| 670 |
+
"completions/mean_terminated_length": 0.0,
|
| 671 |
+
"completions/min_length": 256.0,
|
| 672 |
+
"completions/min_terminated_length": 0.0,
|
| 673 |
+
"entropy": 4.19501296877861,
|
| 674 |
+
"epoch": 0.43478260869565216,
|
| 675 |
+
"frac_reward_zero_std": 0.975,
|
| 676 |
+
"grad_norm": 0.0,
|
| 677 |
+
"kl": 0.0,
|
| 678 |
+
"learning_rate": 2.0981468224289717e-07,
|
| 679 |
+
"loss": 0.0,
|
| 680 |
+
"num_tokens": 1536000.0,
|
| 681 |
+
"reward": 0.030749999545514585,
|
| 682 |
+
"reward_std": 0.001060660183429718,
|
| 683 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 684 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 685 |
+
"step": 250
|
| 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": 1.0,
|
| 694 |
+
"completions/max_length": 256.0,
|
| 695 |
+
"completions/max_terminated_length": 0.0,
|
| 696 |
+
"completions/mean_length": 256.0,
|
| 697 |
+
"completions/mean_terminated_length": 0.0,
|
| 698 |
+
"completions/min_length": 256.0,
|
| 699 |
+
"completions/min_terminated_length": 0.0,
|
| 700 |
+
"entropy": 4.194454890489578,
|
| 701 |
+
"epoch": 0.45217391304347826,
|
| 702 |
+
"frac_reward_zero_std": 0.975,
|
| 703 |
+
"grad_norm": 0.0,
|
| 704 |
+
"kl": 0.0,
|
| 705 |
+
"learning_rate": 2.0135060289812452e-07,
|
| 706 |
+
"loss": 0.0,
|
| 707 |
+
"num_tokens": 1597440.0,
|
| 708 |
+
"reward": 0.030749999545514585,
|
| 709 |
+
"reward_std": 0.001060660183429718,
|
| 710 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 711 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 712 |
+
"step": 260
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"clip_ratio/high_max": 0.0,
|
| 716 |
+
"clip_ratio/high_mean": 0.0,
|
| 717 |
+
"clip_ratio/low_mean": 0.0,
|
| 718 |
+
"clip_ratio/low_min": 0.0,
|
| 719 |
+
"clip_ratio/region_mean": 0.0,
|
| 720 |
+
"completions/clipped_ratio": 1.0,
|
| 721 |
+
"completions/max_length": 256.0,
|
| 722 |
+
"completions/max_terminated_length": 0.0,
|
| 723 |
+
"completions/mean_length": 256.0,
|
| 724 |
+
"completions/mean_terminated_length": 0.0,
|
| 725 |
+
"completions/min_length": 256.0,
|
| 726 |
+
"completions/min_terminated_length": 0.0,
|
| 727 |
+
"entropy": 4.195986425876617,
|
| 728 |
+
"epoch": 0.46956521739130436,
|
| 729 |
+
"frac_reward_zero_std": 1.0,
|
| 730 |
+
"grad_norm": 0.0,
|
| 731 |
+
"kl": 0.0,
|
| 732 |
+
"learning_rate": 1.926969705951249e-07,
|
| 733 |
+
"loss": 0.0,
|
| 734 |
+
"num_tokens": 1658880.0,
|
| 735 |
+
"reward": 0.029999999329447746,
|
| 736 |
+
"reward_std": 0.0,
|
| 737 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 738 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 739 |
+
"step": 270
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"clip_ratio/high_max": 0.0,
|
| 743 |
+
"clip_ratio/high_mean": 0.0,
|
| 744 |
+
"clip_ratio/low_mean": 0.0,
|
| 745 |
+
"clip_ratio/low_min": 0.0,
|
| 746 |
+
"clip_ratio/region_mean": 0.0,
|
| 747 |
+
"completions/clipped_ratio": 1.0,
|
| 748 |
+
"completions/max_length": 256.0,
|
| 749 |
+
"completions/max_terminated_length": 0.0,
|
| 750 |
+
"completions/mean_length": 256.0,
|
| 751 |
+
"completions/mean_terminated_length": 0.0,
|
| 752 |
+
"completions/min_length": 256.0,
|
| 753 |
+
"completions/min_terminated_length": 0.0,
|
| 754 |
+
"entropy": 4.199068295955658,
|
| 755 |
+
"epoch": 0.48695652173913045,
|
| 756 |
+
"frac_reward_zero_std": 0.975,
|
| 757 |
+
"grad_norm": 0.0,
|
| 758 |
+
"kl": 0.0,
|
| 759 |
+
"learning_rate": 1.8388572890437e-07,
|
| 760 |
+
"loss": 0.0,
|
| 761 |
+
"num_tokens": 1720320.0,
|
| 762 |
+
"reward": 0.030749999545514585,
|
| 763 |
+
"reward_std": 0.001060660183429718,
|
| 764 |
+
"rewards/grpo_reward_func_safe/mean": 0.030749999545514585,
|
| 765 |
+
"rewards/grpo_reward_func_safe/std": 0.002121320553123951,
|
| 766 |
+
"step": 280
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"clip_ratio/high_max": 0.0,
|
| 770 |
+
"clip_ratio/high_mean": 0.0,
|
| 771 |
+
"clip_ratio/low_mean": 0.0,
|
| 772 |
+
"clip_ratio/low_min": 0.0,
|
| 773 |
+
"clip_ratio/region_mean": 0.0,
|
| 774 |
+
"completions/clipped_ratio": 1.0,
|
| 775 |
+
"completions/max_length": 256.0,
|
| 776 |
+
"completions/max_terminated_length": 0.0,
|
| 777 |
+
"completions/mean_length": 256.0,
|
| 778 |
+
"completions/mean_terminated_length": 0.0,
|
| 779 |
+
"completions/min_length": 256.0,
|
| 780 |
+
"completions/min_terminated_length": 0.0,
|
| 781 |
+
"entropy": 4.192270183563233,
|
| 782 |
+
"epoch": 0.5043478260869565,
|
| 783 |
+
"frac_reward_zero_std": 1.0,
|
| 784 |
+
"grad_norm": 0.0,
|
| 785 |
+
"kl": 0.0,
|
| 786 |
+
"learning_rate": 1.749494031874695e-07,
|
| 787 |
+
"loss": 0.0,
|
| 788 |
+
"num_tokens": 1781760.0,
|
| 789 |
+
"reward": 0.029999999329447746,
|
| 790 |
+
"reward_std": 0.0,
|
| 791 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 792 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 793 |
+
"step": 290
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"clip_ratio/high_max": 0.0,
|
| 797 |
+
"clip_ratio/high_mean": 0.0,
|
| 798 |
+
"clip_ratio/low_mean": 0.0,
|
| 799 |
+
"clip_ratio/low_min": 0.0,
|
| 800 |
+
"clip_ratio/region_mean": 0.0,
|
| 801 |
+
"completions/clipped_ratio": 1.0,
|
| 802 |
+
"completions/max_length": 256.0,
|
| 803 |
+
"completions/max_terminated_length": 0.0,
|
| 804 |
+
"completions/mean_length": 256.0,
|
| 805 |
+
"completions/mean_terminated_length": 0.0,
|
| 806 |
+
"completions/min_length": 256.0,
|
| 807 |
+
"completions/min_terminated_length": 0.0,
|
| 808 |
+
"entropy": 4.19588348865509,
|
| 809 |
+
"epoch": 0.5217391304347826,
|
| 810 |
+
"frac_reward_zero_std": 1.0,
|
| 811 |
+
"grad_norm": 0.0,
|
| 812 |
+
"kl": 0.0,
|
| 813 |
+
"learning_rate": 1.6592098053473428e-07,
|
| 814 |
+
"loss": 0.0,
|
| 815 |
+
"num_tokens": 1843200.0,
|
| 816 |
+
"reward": 0.029999999329447746,
|
| 817 |
+
"reward_std": 0.0,
|
| 818 |
+
"rewards/grpo_reward_func_safe/mean": 0.029999999329447746,
|
| 819 |
+
"rewards/grpo_reward_func_safe/std": 0.0,
|
| 820 |
+
"step": 300
|
| 821 |
+
}
|
| 822 |
+
],
|
| 823 |
+
"logging_steps": 10,
|
| 824 |
+
"max_steps": 575,
|
| 825 |
+
"num_input_tokens_seen": 1843200,
|
| 826 |
+
"num_train_epochs": 1,
|
| 827 |
+
"save_steps": 100,
|
| 828 |
+
"stateful_callbacks": {
|
| 829 |
+
"TrainerControl": {
|
| 830 |
+
"args": {
|
| 831 |
+
"should_epoch_stop": false,
|
| 832 |
+
"should_evaluate": false,
|
| 833 |
+
"should_log": false,
|
| 834 |
+
"should_save": true,
|
| 835 |
+
"should_training_stop": false
|
| 836 |
+
},
|
| 837 |
+
"attributes": {}
|
| 838 |
+
}
|
| 839 |
+
},
|
| 840 |
+
"total_flos": 0.0,
|
| 841 |
+
"train_batch_size": 1,
|
| 842 |
+
"trial_name": null,
|
| 843 |
+
"trial_params": null
|
| 844 |
+
}
|
checkpoint-300/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:602197fd53ffdde289907b300de58d2ec623bb7abb43919e0acaf29542bf7b08
|
| 3 |
+
size 7185
|
checkpoint-300/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|