Model save
Browse files- .gitattributes +1 -0
- README.md +68 -0
- adapter/README.md +209 -0
- adapter/adapter_config.json +46 -0
- adapter/adapter_model.safetensors +3 -0
- adapter/chat_template.jinja +1 -0
- adapter/special_tokens_map.json +23 -0
- adapter/tokenizer.json +3 -0
- adapter/tokenizer_config.json +194 -0
- adapter/training_args.bin +3 -0
- all_results.json +8 -0
- train_results.json +8 -0
- trainer_state.json +1943 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
adapter/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: DAPO-7B
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- trl
|
| 8 |
+
- dapo
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for DAPO-7B
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [deepseek-ai/DeepSeek-R1-Distill-Qwen-7B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B).
|
| 15 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 16 |
+
|
| 17 |
+
## Quick start
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 23 |
+
generator = pipeline("text-generation", model="kangdawei/DAPO-7B", device="cuda")
|
| 24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 25 |
+
print(output["generated_text"])
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with DAPO, a method introduced in [DAPO: An Open-Source LLM Reinforcement Learning System at Scale](https://huggingface.co/papers/2503.14476).
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.16.0.dev0
|
| 38 |
+
- Transformers: 4.57.1
|
| 39 |
+
- Pytorch: 2.5.1
|
| 40 |
+
- Datasets: 3.2.0
|
| 41 |
+
- Tokenizers: 0.22.1
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
Cite DAPO as:
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@article{yu2025dapo,
|
| 49 |
+
title = {{DAPO: An Open-Source LLM Reinforcement Learning System at Scale}},
|
| 50 |
+
author = {Qiying Yu and Zheng Zhang and others},
|
| 51 |
+
year = 2025,
|
| 52 |
+
eprint = {arXiv:2503.14476},
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Cite TRL as:
|
| 58 |
+
|
| 59 |
+
```bibtex
|
| 60 |
+
@misc{vonwerra2022trl,
|
| 61 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 62 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
|
| 63 |
+
year = 2020,
|
| 64 |
+
journal = {GitHub repository},
|
| 65 |
+
publisher = {GitHub},
|
| 66 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 67 |
+
}
|
| 68 |
+
```
|
adapter/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
|
| 7 |
+
- dapo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.0
|
adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 64,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
+
"gate_proj",
|
| 34 |
+
"v_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"down_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f41cef2bb66b9353a9df6cc7f16045d9af89f4627456717e3247d6b15a98a0f
|
| 3 |
+
size 323014560
|
adapter/chat_template.jinja
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
|
adapter/special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin▁of▁sentence|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|end▁of▁sentence|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|end▁of▁sentence|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
adapter/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4256422650d141f228fe954acee98679da412984c29a569877eefd3af69315a
|
| 3 |
+
size 11422959
|
adapter/tokenizer_config.json
ADDED
|
@@ -0,0 +1,194 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": null,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"151643": {
|
| 7 |
+
"content": "<|end▁of▁sentence|>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"151644": {
|
| 15 |
+
"content": "<|User|>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": false
|
| 21 |
+
},
|
| 22 |
+
"151645": {
|
| 23 |
+
"content": "<|Assistant|>",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": false,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": false
|
| 29 |
+
},
|
| 30 |
+
"151646": {
|
| 31 |
+
"content": "<|begin▁of▁sentence|>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": true
|
| 37 |
+
},
|
| 38 |
+
"151647": {
|
| 39 |
+
"content": "<|EOT|>",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": false,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"151648": {
|
| 47 |
+
"content": "<think>",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": false,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"151649": {
|
| 55 |
+
"content": "</think>",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": false,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"151650": {
|
| 63 |
+
"content": "<|quad_start|>",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": false,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": true
|
| 69 |
+
},
|
| 70 |
+
"151651": {
|
| 71 |
+
"content": "<|quad_end|>",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": false,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": true
|
| 77 |
+
},
|
| 78 |
+
"151652": {
|
| 79 |
+
"content": "<|vision_start|>",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": false,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": true
|
| 85 |
+
},
|
| 86 |
+
"151653": {
|
| 87 |
+
"content": "<|vision_end|>",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": false,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": true
|
| 93 |
+
},
|
| 94 |
+
"151654": {
|
| 95 |
+
"content": "<|vision_pad|>",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": false,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": true
|
| 101 |
+
},
|
| 102 |
+
"151655": {
|
| 103 |
+
"content": "<|image_pad|>",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": false,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": true
|
| 109 |
+
},
|
| 110 |
+
"151656": {
|
| 111 |
+
"content": "<|video_pad|>",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": false,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": true
|
| 117 |
+
},
|
| 118 |
+
"151657": {
|
| 119 |
+
"content": "<tool_call>",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": false,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"151658": {
|
| 127 |
+
"content": "</tool_call>",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": false,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"151659": {
|
| 135 |
+
"content": "<|fim_prefix|>",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": false,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"151660": {
|
| 143 |
+
"content": "<|fim_middle|>",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": false,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"151661": {
|
| 151 |
+
"content": "<|fim_suffix|>",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": false,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"151662": {
|
| 159 |
+
"content": "<|fim_pad|>",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": false,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"151663": {
|
| 167 |
+
"content": "<|repo_name|>",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": false,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"151664": {
|
| 175 |
+
"content": "<|file_sep|>",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": false,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
}
|
| 182 |
+
},
|
| 183 |
+
"bos_token": "<|begin▁of▁sentence|>",
|
| 184 |
+
"clean_up_tokenization_spaces": false,
|
| 185 |
+
"eos_token": "<|end▁of▁sentence|>",
|
| 186 |
+
"extra_special_tokens": {},
|
| 187 |
+
"legacy": true,
|
| 188 |
+
"model_max_length": 16384,
|
| 189 |
+
"pad_token": "<|end▁of▁sentence|>",
|
| 190 |
+
"sp_model_kwargs": {},
|
| 191 |
+
"tokenizer_class": "LlamaTokenizerFast",
|
| 192 |
+
"unk_token": null,
|
| 193 |
+
"use_default_system_prompt": false
|
| 194 |
+
}
|
adapter/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92df2953de292a8a4d447867c90e350e8357338da5214d2a17070cb10ce845a7
|
| 3 |
+
size 8760
|
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 0.03280465058982372,
|
| 4 |
+
"train_runtime": 132752.8895,
|
| 5 |
+
"train_samples": 7000,
|
| 6 |
+
"train_samples_per_second": 0.036,
|
| 7 |
+
"train_steps_per_second": 0.001
|
| 8 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 0.03280465058982372,
|
| 4 |
+
"train_runtime": 132752.8895,
|
| 5 |
+
"train_samples": 7000,
|
| 6 |
+
"train_samples_per_second": 0.036,
|
| 7 |
+
"train_steps_per_second": 0.001
|
| 8 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1943 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.11428571428571428,
|
| 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_fraction": 0.0,
|
| 14 |
+
"completion_length": 1681.8854370117188,
|
| 15 |
+
"dapo/avg_reward_std": 0.3420590679896505,
|
| 16 |
+
"dapo/filter_reward_index": 0.0,
|
| 17 |
+
"dapo/kept_prompts_ratio": 0.48245614610220255,
|
| 18 |
+
"dapo/num_sampling_attempts": 2.375,
|
| 19 |
+
"dapo/sampling_efficiency": 54.58333333333333,
|
| 20 |
+
"dapo/total_prompts_processed": 14.25,
|
| 21 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 22 |
+
"epoch": 0.001142857142857143,
|
| 23 |
+
"grad_norm": 0.011931957677006721,
|
| 24 |
+
"kl": 0.0,
|
| 25 |
+
"learning_rate": 0.0,
|
| 26 |
+
"loss": 0.0219,
|
| 27 |
+
"reward": 0.8671084493398666,
|
| 28 |
+
"reward_std": 0.964848667383194,
|
| 29 |
+
"step": 1
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"clip_fraction": 0.0,
|
| 33 |
+
"completion_length": 2172.913185119629,
|
| 34 |
+
"dapo/avg_reward_std": 0.27327019289920207,
|
| 35 |
+
"dapo/filter_reward_index": 0.0,
|
| 36 |
+
"dapo/kept_prompts_ratio": 0.4824561500235608,
|
| 37 |
+
"dapo/num_sampling_attempts": 2.375,
|
| 38 |
+
"dapo/sampling_efficiency": 67.41071428571428,
|
| 39 |
+
"dapo/total_prompts_processed": 14.25,
|
| 40 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 41 |
+
"epoch": 0.002285714285714286,
|
| 42 |
+
"grad_norm": 0.014162006787955761,
|
| 43 |
+
"kl": 0.0,
|
| 44 |
+
"learning_rate": 1e-07,
|
| 45 |
+
"loss": 0.0232,
|
| 46 |
+
"reward": 0.932205643504858,
|
| 47 |
+
"reward_std": 0.9607091471552849,
|
| 48 |
+
"step": 2
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"clip_fraction": 0.0,
|
| 52 |
+
"completion_length": 2418.3611373901367,
|
| 53 |
+
"dapo/avg_reward_std": 0.3202404692769051,
|
| 54 |
+
"dapo/filter_reward_index": 0.0,
|
| 55 |
+
"dapo/kept_prompts_ratio": 0.45833334177732465,
|
| 56 |
+
"dapo/num_sampling_attempts": 2.5,
|
| 57 |
+
"dapo/sampling_efficiency": 51.04166666666666,
|
| 58 |
+
"dapo/total_prompts_processed": 15.0,
|
| 59 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 60 |
+
"epoch": 0.0034285714285714284,
|
| 61 |
+
"grad_norm": 0.011303936131298542,
|
| 62 |
+
"kl": 0.0001301020383834839,
|
| 63 |
+
"learning_rate": 2e-07,
|
| 64 |
+
"loss": 0.0371,
|
| 65 |
+
"reward": 0.5818949677050114,
|
| 66 |
+
"reward_std": 0.928392305970192,
|
| 67 |
+
"step": 3
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"clip_fraction": 0.0,
|
| 71 |
+
"completion_length": 2080.6250228881836,
|
| 72 |
+
"dapo/avg_reward_std": 0.3523675338788466,
|
| 73 |
+
"dapo/filter_reward_index": 0.0,
|
| 74 |
+
"dapo/kept_prompts_ratio": 0.4545454586094076,
|
| 75 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 76 |
+
"dapo/sampling_efficiency": 45.20833333333333,
|
| 77 |
+
"dapo/total_prompts_processed": 16.5,
|
| 78 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 79 |
+
"epoch": 0.004571428571428572,
|
| 80 |
+
"grad_norm": 0.010935964062809944,
|
| 81 |
+
"kl": 8.246302604675293e-05,
|
| 82 |
+
"learning_rate": 3e-07,
|
| 83 |
+
"loss": 0.007,
|
| 84 |
+
"reward": 0.6902085058391094,
|
| 85 |
+
"reward_std": 0.9576746746897697,
|
| 86 |
+
"step": 4
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"clip_fraction": 0.0,
|
| 90 |
+
"completion_length": 2208.1910247802734,
|
| 91 |
+
"dapo/avg_reward_std": 0.33842799224351583,
|
| 92 |
+
"dapo/filter_reward_index": 0.0,
|
| 93 |
+
"dapo/kept_prompts_ratio": 0.4912280746196446,
|
| 94 |
+
"dapo/num_sampling_attempts": 2.375,
|
| 95 |
+
"dapo/sampling_efficiency": 54.166666666666664,
|
| 96 |
+
"dapo/total_prompts_processed": 14.25,
|
| 97 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 98 |
+
"epoch": 0.005714285714285714,
|
| 99 |
+
"grad_norm": 0.01424587145447731,
|
| 100 |
+
"kl": 0.00011987239122390747,
|
| 101 |
+
"learning_rate": 4e-07,
|
| 102 |
+
"loss": 0.0916,
|
| 103 |
+
"reward": 0.5482002776116133,
|
| 104 |
+
"reward_std": 0.9192102774977684,
|
| 105 |
+
"step": 5
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"clip_fraction": 0.0,
|
| 109 |
+
"completion_length": 2428.8646087646484,
|
| 110 |
+
"dapo/avg_reward_std": 0.2724780907233556,
|
| 111 |
+
"dapo/filter_reward_index": 0.0,
|
| 112 |
+
"dapo/kept_prompts_ratio": 0.37222223381201425,
|
| 113 |
+
"dapo/num_sampling_attempts": 3.75,
|
| 114 |
+
"dapo/sampling_efficiency": 37.39583333333333,
|
| 115 |
+
"dapo/total_prompts_processed": 22.5,
|
| 116 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 117 |
+
"epoch": 0.006857142857142857,
|
| 118 |
+
"grad_norm": 0.012209060601890087,
|
| 119 |
+
"kl": 0.00013336539268493652,
|
| 120 |
+
"learning_rate": 5e-07,
|
| 121 |
+
"loss": 0.063,
|
| 122 |
+
"reward": 0.6304261162877083,
|
| 123 |
+
"reward_std": 0.947055421769619,
|
| 124 |
+
"step": 6
|
| 125 |
+
},
|
| 126 |
+
{
|
| 127 |
+
"clip_fraction": 0.0,
|
| 128 |
+
"completion_length": 2028.1111297607422,
|
| 129 |
+
"dapo/avg_reward_std": 0.35396890342235565,
|
| 130 |
+
"dapo/filter_reward_index": 0.0,
|
| 131 |
+
"dapo/kept_prompts_ratio": 0.5151515284722502,
|
| 132 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 133 |
+
"dapo/sampling_efficiency": 48.95833333333333,
|
| 134 |
+
"dapo/total_prompts_processed": 16.5,
|
| 135 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 136 |
+
"epoch": 0.008,
|
| 137 |
+
"grad_norm": 0.01456605363637209,
|
| 138 |
+
"kl": 0.00010842084884643555,
|
| 139 |
+
"learning_rate": 6e-07,
|
| 140 |
+
"loss": 0.0863,
|
| 141 |
+
"reward": 0.7125897314399481,
|
| 142 |
+
"reward_std": 0.938522607088089,
|
| 143 |
+
"step": 7
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"clip_fraction": 0.0,
|
| 147 |
+
"completion_length": 1825.9792022705078,
|
| 148 |
+
"dapo/avg_reward_std": 0.3198123288154602,
|
| 149 |
+
"dapo/filter_reward_index": 0.0,
|
| 150 |
+
"dapo/kept_prompts_ratio": 0.45333334505558015,
|
| 151 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 152 |
+
"dapo/sampling_efficiency": 36.45833333333333,
|
| 153 |
+
"dapo/total_prompts_processed": 18.75,
|
| 154 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 155 |
+
"epoch": 0.009142857142857144,
|
| 156 |
+
"grad_norm": 0.014117815531790257,
|
| 157 |
+
"kl": 8.45193862915039e-05,
|
| 158 |
+
"learning_rate": 7e-07,
|
| 159 |
+
"loss": 0.024,
|
| 160 |
+
"reward": 0.7728112610056996,
|
| 161 |
+
"reward_std": 0.953309640288353,
|
| 162 |
+
"step": 8
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"clip_fraction": 0.0,
|
| 166 |
+
"completion_length": 2424.159713745117,
|
| 167 |
+
"dapo/avg_reward_std": 0.4454919546842575,
|
| 168 |
+
"dapo/filter_reward_index": 0.0,
|
| 169 |
+
"dapo/kept_prompts_ratio": 0.6785714392151151,
|
| 170 |
+
"dapo/num_sampling_attempts": 1.75,
|
| 171 |
+
"dapo/sampling_efficiency": 70.83333333333333,
|
| 172 |
+
"dapo/total_prompts_processed": 10.5,
|
| 173 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 174 |
+
"epoch": 0.010285714285714285,
|
| 175 |
+
"grad_norm": 0.008895393460988998,
|
| 176 |
+
"kl": 0.00011056661605834961,
|
| 177 |
+
"learning_rate": 8e-07,
|
| 178 |
+
"loss": 0.013,
|
| 179 |
+
"reward": 0.6077092736959457,
|
| 180 |
+
"reward_std": 0.994397833943367,
|
| 181 |
+
"step": 9
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"clip_fraction": 0.0,
|
| 185 |
+
"completion_length": 1959.0763702392578,
|
| 186 |
+
"dapo/avg_reward_std": 0.25889470875263215,
|
| 187 |
+
"dapo/filter_reward_index": 0.0,
|
| 188 |
+
"dapo/kept_prompts_ratio": 0.350000007947286,
|
| 189 |
+
"dapo/num_sampling_attempts": 3.75,
|
| 190 |
+
"dapo/sampling_efficiency": 40.20833333333333,
|
| 191 |
+
"dapo/total_prompts_processed": 22.5,
|
| 192 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 193 |
+
"epoch": 0.011428571428571429,
|
| 194 |
+
"grad_norm": 0.011032010428607464,
|
| 195 |
+
"kl": 8.809566497802734e-05,
|
| 196 |
+
"learning_rate": 9e-07,
|
| 197 |
+
"loss": 0.018,
|
| 198 |
+
"reward": 0.7773313578218222,
|
| 199 |
+
"reward_std": 0.9549762830138206,
|
| 200 |
+
"step": 10
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"clip_fraction": 0.0,
|
| 204 |
+
"completion_length": 2597.6979217529297,
|
| 205 |
+
"dapo/avg_reward_std": 0.3167818512605584,
|
| 206 |
+
"dapo/filter_reward_index": 0.0,
|
| 207 |
+
"dapo/kept_prompts_ratio": 0.44202899284984754,
|
| 208 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 209 |
+
"dapo/sampling_efficiency": 42.70833333333333,
|
| 210 |
+
"dapo/total_prompts_processed": 17.25,
|
| 211 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 212 |
+
"epoch": 0.012571428571428572,
|
| 213 |
+
"grad_norm": 0.010659257881343365,
|
| 214 |
+
"kl": 0.00013309717178344727,
|
| 215 |
+
"learning_rate": 1e-06,
|
| 216 |
+
"loss": 0.0026,
|
| 217 |
+
"reward": 0.5649524200707674,
|
| 218 |
+
"reward_std": 0.9257139712572098,
|
| 219 |
+
"step": 11
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"clip_fraction": 0.0,
|
| 223 |
+
"completion_length": 2214.9444580078125,
|
| 224 |
+
"dapo/avg_reward_std": 0.33351172175672317,
|
| 225 |
+
"dapo/filter_reward_index": 0.0,
|
| 226 |
+
"dapo/kept_prompts_ratio": 0.5648148208856583,
|
| 227 |
+
"dapo/num_sampling_attempts": 2.25,
|
| 228 |
+
"dapo/sampling_efficiency": 49.99999999999999,
|
| 229 |
+
"dapo/total_prompts_processed": 13.5,
|
| 230 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 231 |
+
"epoch": 0.013714285714285714,
|
| 232 |
+
"grad_norm": 0.010501649230718613,
|
| 233 |
+
"kl": 9.53376293182373e-05,
|
| 234 |
+
"learning_rate": 9.997258721585931e-07,
|
| 235 |
+
"loss": 0.0287,
|
| 236 |
+
"reward": 0.7854772098362446,
|
| 237 |
+
"reward_std": 0.9361946359276772,
|
| 238 |
+
"step": 12
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"clip_fraction": 0.0,
|
| 242 |
+
"completion_length": 1984.5416717529297,
|
| 243 |
+
"dapo/avg_reward_std": 0.3313978049490187,
|
| 244 |
+
"dapo/filter_reward_index": 0.0,
|
| 245 |
+
"dapo/kept_prompts_ratio": 0.5925926052861743,
|
| 246 |
+
"dapo/num_sampling_attempts": 2.25,
|
| 247 |
+
"dapo/sampling_efficiency": 56.666666666666664,
|
| 248 |
+
"dapo/total_prompts_processed": 13.5,
|
| 249 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 250 |
+
"epoch": 0.014857142857142857,
|
| 251 |
+
"grad_norm": 0.012102734297513962,
|
| 252 |
+
"kl": 9.861588478088379e-05,
|
| 253 |
+
"learning_rate": 9.989038226169207e-07,
|
| 254 |
+
"loss": 0.0277,
|
| 255 |
+
"reward": 0.9007548745721579,
|
| 256 |
+
"reward_std": 0.9196444824337959,
|
| 257 |
+
"step": 13
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"clip_fraction": 0.0,
|
| 261 |
+
"completion_length": 2267.5069885253906,
|
| 262 |
+
"dapo/avg_reward_std": 0.21889745750847986,
|
| 263 |
+
"dapo/filter_reward_index": 0.0,
|
| 264 |
+
"dapo/kept_prompts_ratio": 0.3186274560935357,
|
| 265 |
+
"dapo/num_sampling_attempts": 4.25,
|
| 266 |
+
"dapo/sampling_efficiency": 40.63988095238095,
|
| 267 |
+
"dapo/total_prompts_processed": 25.5,
|
| 268 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 269 |
+
"epoch": 0.016,
|
| 270 |
+
"grad_norm": 0.01004031766206026,
|
| 271 |
+
"kl": 0.00010375678539276123,
|
| 272 |
+
"learning_rate": 9.975348529157229e-07,
|
| 273 |
+
"loss": 0.0342,
|
| 274 |
+
"reward": 0.5439228732138872,
|
| 275 |
+
"reward_std": 0.9444419518113136,
|
| 276 |
+
"step": 14
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"clip_fraction": 0.0,
|
| 280 |
+
"completion_length": 2403.170135498047,
|
| 281 |
+
"dapo/avg_reward_std": 0.24896668710491873,
|
| 282 |
+
"dapo/filter_reward_index": 0.0,
|
| 283 |
+
"dapo/kept_prompts_ratio": 0.4242424321445552,
|
| 284 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 285 |
+
"dapo/sampling_efficiency": 58.45238095238095,
|
| 286 |
+
"dapo/total_prompts_processed": 16.5,
|
| 287 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 288 |
+
"epoch": 0.017142857142857144,
|
| 289 |
+
"grad_norm": 0.013138854876160622,
|
| 290 |
+
"kl": 0.00011286139488220215,
|
| 291 |
+
"learning_rate": 9.956206309337066e-07,
|
| 292 |
+
"loss": 0.0341,
|
| 293 |
+
"reward": 0.6446905825287104,
|
| 294 |
+
"reward_std": 0.9305006489157677,
|
| 295 |
+
"step": 15
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"clip_fraction": 0.0,
|
| 299 |
+
"completion_length": 2368.579849243164,
|
| 300 |
+
"dapo/avg_reward_std": 0.32238917201757433,
|
| 301 |
+
"dapo/filter_reward_index": 0.0,
|
| 302 |
+
"dapo/kept_prompts_ratio": 0.4416666716337204,
|
| 303 |
+
"dapo/num_sampling_attempts": 2.5,
|
| 304 |
+
"dapo/sampling_efficiency": 53.125,
|
| 305 |
+
"dapo/total_prompts_processed": 15.0,
|
| 306 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 307 |
+
"epoch": 0.018285714285714287,
|
| 308 |
+
"grad_norm": 0.009644324891269207,
|
| 309 |
+
"kl": 0.00011764466762542725,
|
| 310 |
+
"learning_rate": 9.931634888554935e-07,
|
| 311 |
+
"loss": 0.0184,
|
| 312 |
+
"reward": 0.6319684982299805,
|
| 313 |
+
"reward_std": 0.9385868087410927,
|
| 314 |
+
"step": 16
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"clip_fraction": 0.0,
|
| 318 |
+
"completion_length": 2354.590286254883,
|
| 319 |
+
"dapo/avg_reward_std": 0.2929895012466996,
|
| 320 |
+
"dapo/filter_reward_index": 0.0,
|
| 321 |
+
"dapo/kept_prompts_ratio": 0.41358025482407323,
|
| 322 |
+
"dapo/num_sampling_attempts": 3.375,
|
| 323 |
+
"dapo/sampling_efficiency": 43.95833333333333,
|
| 324 |
+
"dapo/total_prompts_processed": 20.25,
|
| 325 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 326 |
+
"epoch": 0.019428571428571427,
|
| 327 |
+
"grad_norm": 0.010750290006399155,
|
| 328 |
+
"kl": 0.00012104213237762451,
|
| 329 |
+
"learning_rate": 9.901664203302124e-07,
|
| 330 |
+
"loss": 0.0512,
|
| 331 |
+
"reward": 0.7495243214070797,
|
| 332 |
+
"reward_std": 0.9604936093091965,
|
| 333 |
+
"step": 17
|
| 334 |
+
},
|
| 335 |
+
{
|
| 336 |
+
"clip_fraction": 0.0,
|
| 337 |
+
"completion_length": 2353.548599243164,
|
| 338 |
+
"dapo/avg_reward_std": 0.3144007975404913,
|
| 339 |
+
"dapo/filter_reward_index": 0.0,
|
| 340 |
+
"dapo/kept_prompts_ratio": 0.46212122250686993,
|
| 341 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 342 |
+
"dapo/sampling_efficiency": 52.5,
|
| 343 |
+
"dapo/total_prompts_processed": 16.5,
|
| 344 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 345 |
+
"epoch": 0.02057142857142857,
|
| 346 |
+
"grad_norm": 0.0106205390766263,
|
| 347 |
+
"kl": 0.0001283884048461914,
|
| 348 |
+
"learning_rate": 9.866330768241983e-07,
|
| 349 |
+
"loss": 0.0356,
|
| 350 |
+
"reward": 0.7090531028807163,
|
| 351 |
+
"reward_std": 0.927816279232502,
|
| 352 |
+
"step": 18
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"clip_fraction": 0.0,
|
| 356 |
+
"completion_length": 2599.90283203125,
|
| 357 |
+
"dapo/avg_reward_std": 0.31102153037985164,
|
| 358 |
+
"dapo/filter_reward_index": 0.0,
|
| 359 |
+
"dapo/kept_prompts_ratio": 0.46527778667708236,
|
| 360 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 361 |
+
"dapo/sampling_efficiency": 43.125,
|
| 362 |
+
"dapo/total_prompts_processed": 18.0,
|
| 363 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 364 |
+
"epoch": 0.021714285714285714,
|
| 365 |
+
"grad_norm": 0.00998625811189413,
|
| 366 |
+
"kl": 0.00011986494064331055,
|
| 367 |
+
"learning_rate": 9.825677631722435e-07,
|
| 368 |
+
"loss": 0.0501,
|
| 369 |
+
"reward": 0.8357332646846771,
|
| 370 |
+
"reward_std": 0.9608008861541748,
|
| 371 |
+
"step": 19
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"clip_fraction": 0.0,
|
| 375 |
+
"completion_length": 2307.482650756836,
|
| 376 |
+
"dapo/avg_reward_std": 0.3105274804613807,
|
| 377 |
+
"dapo/filter_reward_index": 0.0,
|
| 378 |
+
"dapo/kept_prompts_ratio": 0.4545454633506862,
|
| 379 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 380 |
+
"dapo/sampling_efficiency": 45.83333333333333,
|
| 381 |
+
"dapo/total_prompts_processed": 16.5,
|
| 382 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 383 |
+
"epoch": 0.022857142857142857,
|
| 384 |
+
"grad_norm": 0.010738078504800797,
|
| 385 |
+
"kl": 9.399652481079102e-05,
|
| 386 |
+
"learning_rate": 9.779754323328192e-07,
|
| 387 |
+
"loss": 0.0104,
|
| 388 |
+
"reward": 0.7927055042237043,
|
| 389 |
+
"reward_std": 0.9697678238153458,
|
| 390 |
+
"step": 20
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"clip_fraction": 0.0,
|
| 394 |
+
"completion_length": 1943.2500457763672,
|
| 395 |
+
"dapo/avg_reward_std": 0.3021106570959091,
|
| 396 |
+
"dapo/filter_reward_index": 0.0,
|
| 397 |
+
"dapo/kept_prompts_ratio": 0.384615390919722,
|
| 398 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 399 |
+
"dapo/sampling_efficiency": 41.78571428571428,
|
| 400 |
+
"dapo/total_prompts_processed": 19.5,
|
| 401 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 402 |
+
"epoch": 0.024,
|
| 403 |
+
"grad_norm": 0.01025764923542738,
|
| 404 |
+
"kl": 6.92903995513916e-05,
|
| 405 |
+
"learning_rate": 9.728616793536587e-07,
|
| 406 |
+
"loss": 0.0005,
|
| 407 |
+
"reward": 0.7050843685865402,
|
| 408 |
+
"reward_std": 0.9542289972305298,
|
| 409 |
+
"step": 21
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"clip_fraction": 0.0,
|
| 413 |
+
"completion_length": 2265.222198486328,
|
| 414 |
+
"dapo/avg_reward_std": 0.2858178478020888,
|
| 415 |
+
"dapo/filter_reward_index": 0.0,
|
| 416 |
+
"dapo/kept_prompts_ratio": 0.4102564144593019,
|
| 417 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 418 |
+
"dapo/sampling_efficiency": 36.160714285714285,
|
| 419 |
+
"dapo/total_prompts_processed": 19.5,
|
| 420 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 421 |
+
"epoch": 0.025142857142857144,
|
| 422 |
+
"grad_norm": 0.015554007142782211,
|
| 423 |
+
"kl": 0.00011515617370605469,
|
| 424 |
+
"learning_rate": 9.672327345550543e-07,
|
| 425 |
+
"loss": 0.1143,
|
| 426 |
+
"reward": 0.7392658032476902,
|
| 427 |
+
"reward_std": 0.9592578783631325,
|
| 428 |
+
"step": 22
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"clip_fraction": 0.0,
|
| 432 |
+
"completion_length": 2213.857635498047,
|
| 433 |
+
"dapo/avg_reward_std": 0.28609917419297354,
|
| 434 |
+
"dapo/filter_reward_index": 0.0,
|
| 435 |
+
"dapo/kept_prompts_ratio": 0.410714291036129,
|
| 436 |
+
"dapo/num_sampling_attempts": 3.5,
|
| 437 |
+
"dapo/sampling_efficiency": 38.66071428571428,
|
| 438 |
+
"dapo/total_prompts_processed": 21.0,
|
| 439 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 440 |
+
"epoch": 0.026285714285714287,
|
| 441 |
+
"grad_norm": 0.00819400418549776,
|
| 442 |
+
"kl": 7.683038711547852e-05,
|
| 443 |
+
"learning_rate": 9.610954559391704e-07,
|
| 444 |
+
"loss": 0.018,
|
| 445 |
+
"reward": 0.6645980039611459,
|
| 446 |
+
"reward_std": 0.919261984527111,
|
| 447 |
+
"step": 23
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"clip_fraction": 0.0,
|
| 451 |
+
"completion_length": 1544.9930610656738,
|
| 452 |
+
"dapo/avg_reward_std": 0.27062960465749103,
|
| 453 |
+
"dapo/filter_reward_index": 0.0,
|
| 454 |
+
"dapo/kept_prompts_ratio": 0.38888889948527017,
|
| 455 |
+
"dapo/num_sampling_attempts": 3.75,
|
| 456 |
+
"dapo/sampling_efficiency": 37.20238095238095,
|
| 457 |
+
"dapo/total_prompts_processed": 22.5,
|
| 458 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 459 |
+
"epoch": 0.027428571428571427,
|
| 460 |
+
"grad_norm": 0.013472510501742363,
|
| 461 |
+
"kl": 6.948411464691162e-05,
|
| 462 |
+
"learning_rate": 9.54457320834625e-07,
|
| 463 |
+
"loss": 0.0006,
|
| 464 |
+
"reward": 0.6155341246630996,
|
| 465 |
+
"reward_std": 0.9053066149353981,
|
| 466 |
+
"step": 24
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"clip_fraction": 0.0,
|
| 470 |
+
"completion_length": 2005.5104598999023,
|
| 471 |
+
"dapo/avg_reward_std": 0.2877837224253293,
|
| 472 |
+
"dapo/filter_reward_index": 0.0,
|
| 473 |
+
"dapo/kept_prompts_ratio": 0.38505747760164327,
|
| 474 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 475 |
+
"dapo/sampling_efficiency": 38.75,
|
| 476 |
+
"dapo/total_prompts_processed": 21.75,
|
| 477 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 478 |
+
"epoch": 0.02857142857142857,
|
| 479 |
+
"grad_norm": 0.011138558387756348,
|
| 480 |
+
"kl": 8.162856101989746e-05,
|
| 481 |
+
"learning_rate": 9.473264167865171e-07,
|
| 482 |
+
"loss": 0.0493,
|
| 483 |
+
"reward": 0.6912501659244299,
|
| 484 |
+
"reward_std": 0.9633006453514099,
|
| 485 |
+
"step": 25
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"clip_fraction": 0.0,
|
| 489 |
+
"completion_length": 2387.5555725097656,
|
| 490 |
+
"dapo/avg_reward_std": 0.19959817528724672,
|
| 491 |
+
"dapo/filter_reward_index": 0.0,
|
| 492 |
+
"dapo/kept_prompts_ratio": 0.3055555591980616,
|
| 493 |
+
"dapo/num_sampling_attempts": 3.75,
|
| 494 |
+
"dapo/sampling_efficiency": 44.49404761904761,
|
| 495 |
+
"dapo/total_prompts_processed": 22.5,
|
| 496 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 497 |
+
"epoch": 0.029714285714285714,
|
| 498 |
+
"grad_norm": 0.011900709010660648,
|
| 499 |
+
"kl": 9.435415267944336e-05,
|
| 500 |
+
"learning_rate": 9.397114317029974e-07,
|
| 501 |
+
"loss": 0.0815,
|
| 502 |
+
"reward": 0.5562675036489964,
|
| 503 |
+
"reward_std": 0.9110650941729546,
|
| 504 |
+
"step": 26
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"clip_fraction": 0.0,
|
| 508 |
+
"completion_length": 2044.7292137145996,
|
| 509 |
+
"dapo/avg_reward_std": 0.3619746658951044,
|
| 510 |
+
"dapo/filter_reward_index": 0.0,
|
| 511 |
+
"dapo/kept_prompts_ratio": 0.6354166744276881,
|
| 512 |
+
"dapo/num_sampling_attempts": 2.0,
|
| 513 |
+
"dapo/sampling_efficiency": 69.16666666666666,
|
| 514 |
+
"dapo/total_prompts_processed": 12.0,
|
| 515 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 516 |
+
"epoch": 0.030857142857142857,
|
| 517 |
+
"grad_norm": 0.01303341705352068,
|
| 518 |
+
"kl": 8.736550807952881e-05,
|
| 519 |
+
"learning_rate": 9.316216432703916e-07,
|
| 520 |
+
"loss": 0.0141,
|
| 521 |
+
"reward": 0.7769045419991016,
|
| 522 |
+
"reward_std": 0.9760870188474655,
|
| 523 |
+
"step": 27
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_fraction": 0.0,
|
| 527 |
+
"completion_length": 2458.9305572509766,
|
| 528 |
+
"dapo/avg_reward_std": 0.2839898039465365,
|
| 529 |
+
"dapo/filter_reward_index": 0.0,
|
| 530 |
+
"dapo/kept_prompts_ratio": 0.427536239442618,
|
| 531 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 532 |
+
"dapo/sampling_efficiency": 42.08333333333333,
|
| 533 |
+
"dapo/total_prompts_processed": 17.25,
|
| 534 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 535 |
+
"epoch": 0.032,
|
| 536 |
+
"grad_norm": 0.013889433816075325,
|
| 537 |
+
"kl": 0.00014150142669677734,
|
| 538 |
+
"learning_rate": 9.230669076497687e-07,
|
| 539 |
+
"loss": 0.0479,
|
| 540 |
+
"reward": 0.5980293937027454,
|
| 541 |
+
"reward_std": 0.9796791076660156,
|
| 542 |
+
"step": 28
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"clip_fraction": 0.0,
|
| 546 |
+
"completion_length": 2496.451416015625,
|
| 547 |
+
"dapo/avg_reward_std": 0.35542283952236176,
|
| 548 |
+
"dapo/filter_reward_index": 0.0,
|
| 549 |
+
"dapo/kept_prompts_ratio": 0.5648148175742891,
|
| 550 |
+
"dapo/num_sampling_attempts": 2.25,
|
| 551 |
+
"dapo/sampling_efficiency": 67.5,
|
| 552 |
+
"dapo/total_prompts_processed": 13.5,
|
| 553 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 554 |
+
"epoch": 0.03314285714285714,
|
| 555 |
+
"grad_norm": 0.011365516111254692,
|
| 556 |
+
"kl": 0.00010502338409423828,
|
| 557 |
+
"learning_rate": 9.140576474687263e-07,
|
| 558 |
+
"loss": 0.0278,
|
| 559 |
+
"reward": 0.6495406329631805,
|
| 560 |
+
"reward_std": 0.9649527370929718,
|
| 561 |
+
"step": 29
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"clip_fraction": 0.0,
|
| 565 |
+
"completion_length": 1831.333351135254,
|
| 566 |
+
"dapo/avg_reward_std": 0.2628121712933416,
|
| 567 |
+
"dapo/filter_reward_index": 0.0,
|
| 568 |
+
"dapo/kept_prompts_ratio": 0.41304348279600556,
|
| 569 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 570 |
+
"dapo/sampling_efficiency": 60.625,
|
| 571 |
+
"dapo/total_prompts_processed": 17.25,
|
| 572 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 573 |
+
"epoch": 0.03428571428571429,
|
| 574 |
+
"grad_norm": 0.012428080663084984,
|
| 575 |
+
"kl": 8.240342140197754e-05,
|
| 576 |
+
"learning_rate": 9.046048391230247e-07,
|
| 577 |
+
"loss": 0.0408,
|
| 578 |
+
"reward": 0.7913381233811378,
|
| 579 |
+
"reward_std": 0.9801043272018433,
|
| 580 |
+
"step": 30
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"clip_fraction": 0.0,
|
| 584 |
+
"completion_length": 2105.7118225097656,
|
| 585 |
+
"dapo/avg_reward_std": 0.2843361473083496,
|
| 586 |
+
"dapo/filter_reward_index": 0.0,
|
| 587 |
+
"dapo/kept_prompts_ratio": 0.4266666781902313,
|
| 588 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 589 |
+
"dapo/sampling_efficiency": 53.75,
|
| 590 |
+
"dapo/total_prompts_processed": 18.75,
|
| 591 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 592 |
+
"epoch": 0.03542857142857143,
|
| 593 |
+
"grad_norm": 0.016210218891501427,
|
| 594 |
+
"kl": 0.0001112520694732666,
|
| 595 |
+
"learning_rate": 8.9471999940354e-07,
|
| 596 |
+
"loss": 0.1052,
|
| 597 |
+
"reward": 0.5814057979732752,
|
| 598 |
+
"reward_std": 0.9699539840221405,
|
| 599 |
+
"step": 31
|
| 600 |
+
},
|
| 601 |
+
{
|
| 602 |
+
"clip_fraction": 0.0,
|
| 603 |
+
"completion_length": 2366.718818664551,
|
| 604 |
+
"dapo/avg_reward_std": 0.2371666719173563,
|
| 605 |
+
"dapo/filter_reward_index": 0.0,
|
| 606 |
+
"dapo/kept_prompts_ratio": 0.34482759648355943,
|
| 607 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 608 |
+
"dapo/sampling_efficiency": 38.4375,
|
| 609 |
+
"dapo/total_prompts_processed": 21.75,
|
| 610 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 611 |
+
"epoch": 0.036571428571428574,
|
| 612 |
+
"grad_norm": 0.01111757755279541,
|
| 613 |
+
"kl": 0.00011564791202545166,
|
| 614 |
+
"learning_rate": 8.844151714648274e-07,
|
| 615 |
+
"loss": 0.0379,
|
| 616 |
+
"reward": 0.6102676652371883,
|
| 617 |
+
"reward_std": 0.9229060783982277,
|
| 618 |
+
"step": 32
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"clip_fraction": 0.0,
|
| 622 |
+
"completion_length": 2388.1909942626953,
|
| 623 |
+
"dapo/avg_reward_std": 0.29336222237156284,
|
| 624 |
+
"dapo/filter_reward_index": 0.0,
|
| 625 |
+
"dapo/kept_prompts_ratio": 0.3118279624369837,
|
| 626 |
+
"dapo/num_sampling_attempts": 3.875,
|
| 627 |
+
"dapo/sampling_efficiency": 42.1875,
|
| 628 |
+
"dapo/total_prompts_processed": 23.25,
|
| 629 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 630 |
+
"epoch": 0.037714285714285714,
|
| 631 |
+
"grad_norm": 0.01051933504641056,
|
| 632 |
+
"kl": 9.141862392425537e-05,
|
| 633 |
+
"learning_rate": 8.737029101523929e-07,
|
| 634 |
+
"loss": 0.041,
|
| 635 |
+
"reward": 0.6971308812499046,
|
| 636 |
+
"reward_std": 0.9577681049704552,
|
| 637 |
+
"step": 33
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"clip_fraction": 0.0,
|
| 641 |
+
"completion_length": 2259.065963745117,
|
| 642 |
+
"dapo/avg_reward_std": 0.3195795826613903,
|
| 643 |
+
"dapo/filter_reward_index": 0.0,
|
| 644 |
+
"dapo/kept_prompts_ratio": 0.5833333367481828,
|
| 645 |
+
"dapo/num_sampling_attempts": 2.0,
|
| 646 |
+
"dapo/sampling_efficiency": 62.49999999999999,
|
| 647 |
+
"dapo/total_prompts_processed": 12.0,
|
| 648 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 649 |
+
"epoch": 0.038857142857142854,
|
| 650 |
+
"grad_norm": 0.010114133358001709,
|
| 651 |
+
"kl": 9.936094284057617e-05,
|
| 652 |
+
"learning_rate": 8.625962667065487e-07,
|
| 653 |
+
"loss": 0.0019,
|
| 654 |
+
"reward": 0.706351961940527,
|
| 655 |
+
"reward_std": 0.9608398601412773,
|
| 656 |
+
"step": 34
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"clip_fraction": 0.0,
|
| 660 |
+
"completion_length": 2236.6563262939453,
|
| 661 |
+
"dapo/avg_reward_std": 0.2805841226002266,
|
| 662 |
+
"dapo/filter_reward_index": 0.0,
|
| 663 |
+
"dapo/kept_prompts_ratio": 0.33908046679250126,
|
| 664 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 665 |
+
"dapo/sampling_efficiency": 30.952380952380942,
|
| 666 |
+
"dapo/total_prompts_processed": 21.75,
|
| 667 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 668 |
+
"epoch": 0.04,
|
| 669 |
+
"grad_norm": 0.01071652490645647,
|
| 670 |
+
"kl": 0.00013333559036254883,
|
| 671 |
+
"learning_rate": 8.511087728614862e-07,
|
| 672 |
+
"loss": 0.0108,
|
| 673 |
+
"reward": 0.6857370678335428,
|
| 674 |
+
"reward_std": 0.9366307482123375,
|
| 675 |
+
"step": 35
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"clip_fraction": 0.0,
|
| 679 |
+
"completion_length": 1998.9166717529297,
|
| 680 |
+
"dapo/avg_reward_std": 0.30676539919593115,
|
| 681 |
+
"dapo/filter_reward_index": 0.0,
|
| 682 |
+
"dapo/kept_prompts_ratio": 0.4772727360779589,
|
| 683 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 684 |
+
"dapo/sampling_efficiency": 44.791666666666664,
|
| 685 |
+
"dapo/total_prompts_processed": 16.5,
|
| 686 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 687 |
+
"epoch": 0.04114285714285714,
|
| 688 |
+
"grad_norm": 0.011716869659721851,
|
| 689 |
+
"kl": 0.00010579824447631836,
|
| 690 |
+
"learning_rate": 8.392544243589427e-07,
|
| 691 |
+
"loss": 0.0577,
|
| 692 |
+
"reward": 0.8430320359766483,
|
| 693 |
+
"reward_std": 0.8613111302256584,
|
| 694 |
+
"step": 36
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"clip_fraction": 0.0,
|
| 698 |
+
"completion_length": 2699.8819580078125,
|
| 699 |
+
"dapo/avg_reward_std": 0.280869146873211,
|
| 700 |
+
"dapo/filter_reward_index": 0.0,
|
| 701 |
+
"dapo/kept_prompts_ratio": 0.36781610034663104,
|
| 702 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 703 |
+
"dapo/sampling_efficiency": 36.45833333333333,
|
| 704 |
+
"dapo/total_prompts_processed": 21.75,
|
| 705 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 706 |
+
"epoch": 0.04228571428571429,
|
| 707 |
+
"grad_norm": 0.011984186246991158,
|
| 708 |
+
"kl": 0.00011450052261352539,
|
| 709 |
+
"learning_rate": 8.270476638965461e-07,
|
| 710 |
+
"loss": 0.0641,
|
| 711 |
+
"reward": 0.6952194459736347,
|
| 712 |
+
"reward_std": 0.9531055390834808,
|
| 713 |
+
"step": 37
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"clip_fraction": 0.0,
|
| 717 |
+
"completion_length": 2508.343765258789,
|
| 718 |
+
"dapo/avg_reward_std": 0.3086147890204475,
|
| 719 |
+
"dapo/filter_reward_index": 0.0,
|
| 720 |
+
"dapo/kept_prompts_ratio": 0.44444445485160466,
|
| 721 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 722 |
+
"dapo/sampling_efficiency": 51.45833333333333,
|
| 723 |
+
"dapo/total_prompts_processed": 15.75,
|
| 724 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 725 |
+
"epoch": 0.04342857142857143,
|
| 726 |
+
"grad_norm": 0.014813189394772053,
|
| 727 |
+
"kl": 0.00013363361358642578,
|
| 728 |
+
"learning_rate": 8.145033635316128e-07,
|
| 729 |
+
"loss": 0.0815,
|
| 730 |
+
"reward": 0.6981049925088882,
|
| 731 |
+
"reward_std": 0.9795023873448372,
|
| 732 |
+
"step": 38
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"clip_fraction": 0.0,
|
| 736 |
+
"completion_length": 2568.090286254883,
|
| 737 |
+
"dapo/avg_reward_std": 0.2281228665149573,
|
| 738 |
+
"dapo/filter_reward_index": 0.0,
|
| 739 |
+
"dapo/kept_prompts_ratio": 0.30303030799735675,
|
| 740 |
+
"dapo/num_sampling_attempts": 4.125,
|
| 741 |
+
"dapo/sampling_efficiency": 35.3125,
|
| 742 |
+
"dapo/total_prompts_processed": 24.75,
|
| 743 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 744 |
+
"epoch": 0.044571428571428574,
|
| 745 |
+
"grad_norm": 0.010284055955708027,
|
| 746 |
+
"kl": 0.0001270771026611328,
|
| 747 |
+
"learning_rate": 8.01636806561836e-07,
|
| 748 |
+
"loss": 0.0129,
|
| 749 |
+
"reward": 0.5480891708284616,
|
| 750 |
+
"reward_std": 0.9542658925056458,
|
| 751 |
+
"step": 39
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"clip_fraction": 0.0,
|
| 755 |
+
"completion_length": 2255.0798721313477,
|
| 756 |
+
"dapo/avg_reward_std": 0.3315709355202588,
|
| 757 |
+
"dapo/filter_reward_index": 0.0,
|
| 758 |
+
"dapo/kept_prompts_ratio": 0.46969698437235574,
|
| 759 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 760 |
+
"dapo/sampling_efficiency": 45.20833333333333,
|
| 761 |
+
"dapo/total_prompts_processed": 16.5,
|
| 762 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 763 |
+
"epoch": 0.045714285714285714,
|
| 764 |
+
"grad_norm": 0.01235182024538517,
|
| 765 |
+
"kl": 0.00011420249938964844,
|
| 766 |
+
"learning_rate": 7.884636689049422e-07,
|
| 767 |
+
"loss": 0.0472,
|
| 768 |
+
"reward": 0.8707308620214462,
|
| 769 |
+
"reward_std": 0.9157829731702805,
|
| 770 |
+
"step": 40
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"clip_fraction": 0.0,
|
| 774 |
+
"completion_length": 2417.9444427490234,
|
| 775 |
+
"dapo/avg_reward_std": 0.2831250044607347,
|
| 776 |
+
"dapo/filter_reward_index": 0.0,
|
| 777 |
+
"dapo/kept_prompts_ratio": 0.3655914020153784,
|
| 778 |
+
"dapo/num_sampling_attempts": 3.875,
|
| 779 |
+
"dapo/sampling_efficiency": 37.723214285714285,
|
| 780 |
+
"dapo/total_prompts_processed": 23.25,
|
| 781 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 782 |
+
"epoch": 0.046857142857142854,
|
| 783 |
+
"grad_norm": 0.010439831763505936,
|
| 784 |
+
"kl": 0.00012230873107910156,
|
| 785 |
+
"learning_rate": 7.75e-07,
|
| 786 |
+
"loss": 0.0395,
|
| 787 |
+
"reward": 0.7518008537590504,
|
| 788 |
+
"reward_std": 0.9689745083451271,
|
| 789 |
+
"step": 41
|
| 790 |
+
},
|
| 791 |
+
{
|
| 792 |
+
"clip_fraction": 0.0,
|
| 793 |
+
"completion_length": 2325.5937881469727,
|
| 794 |
+
"dapo/avg_reward_std": 0.28424168271677835,
|
| 795 |
+
"dapo/filter_reward_index": 0.0,
|
| 796 |
+
"dapo/kept_prompts_ratio": 0.3869047707745007,
|
| 797 |
+
"dapo/num_sampling_attempts": 3.5,
|
| 798 |
+
"dapo/sampling_efficiency": 33.75,
|
| 799 |
+
"dapo/total_prompts_processed": 21.0,
|
| 800 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 801 |
+
"epoch": 0.048,
|
| 802 |
+
"grad_norm": 0.010445328429341316,
|
| 803 |
+
"kl": 8.326023817062378e-05,
|
| 804 |
+
"learning_rate": 7.612622032536507e-07,
|
| 805 |
+
"loss": 0.0004,
|
| 806 |
+
"reward": 0.6408937154337764,
|
| 807 |
+
"reward_std": 0.9007892906665802,
|
| 808 |
+
"step": 42
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"clip_fraction": 0.0,
|
| 812 |
+
"completion_length": 2423.9617919921875,
|
| 813 |
+
"dapo/avg_reward_std": 0.28680659715945905,
|
| 814 |
+
"dapo/filter_reward_index": 0.0,
|
| 815 |
+
"dapo/kept_prompts_ratio": 0.4038461624429776,
|
| 816 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 817 |
+
"dapo/sampling_efficiency": 46.041666666666664,
|
| 818 |
+
"dapo/total_prompts_processed": 19.5,
|
| 819 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 820 |
+
"epoch": 0.04914285714285714,
|
| 821 |
+
"grad_norm": 0.010229532606899738,
|
| 822 |
+
"kl": 0.00013530254364013672,
|
| 823 |
+
"learning_rate": 7.472670160550848e-07,
|
| 824 |
+
"loss": 0.0104,
|
| 825 |
+
"reward": 0.6538480781018734,
|
| 826 |
+
"reward_std": 0.9688718169927597,
|
| 827 |
+
"step": 43
|
| 828 |
+
},
|
| 829 |
+
{
|
| 830 |
+
"clip_fraction": 0.0,
|
| 831 |
+
"completion_length": 2088.677085876465,
|
| 832 |
+
"dapo/avg_reward_std": 0.3208466252455345,
|
| 833 |
+
"dapo/filter_reward_index": 0.0,
|
| 834 |
+
"dapo/kept_prompts_ratio": 0.4423077031970024,
|
| 835 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 836 |
+
"dapo/sampling_efficiency": 41.041666666666664,
|
| 837 |
+
"dapo/total_prompts_processed": 19.5,
|
| 838 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 839 |
+
"epoch": 0.05028571428571429,
|
| 840 |
+
"grad_norm": 0.011106742545962334,
|
| 841 |
+
"kl": 0.00012566149234771729,
|
| 842 |
+
"learning_rate": 7.330314893841101e-07,
|
| 843 |
+
"loss": 0.0239,
|
| 844 |
+
"reward": 0.8764502704143524,
|
| 845 |
+
"reward_std": 0.9285347983241081,
|
| 846 |
+
"step": 44
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"clip_fraction": 0.0,
|
| 850 |
+
"completion_length": 1721.781234741211,
|
| 851 |
+
"dapo/avg_reward_std": 0.3683280497789383,
|
| 852 |
+
"dapo/filter_reward_index": 0.0,
|
| 853 |
+
"dapo/kept_prompts_ratio": 0.5083333447575569,
|
| 854 |
+
"dapo/num_sampling_attempts": 2.5,
|
| 855 |
+
"dapo/sampling_efficiency": 47.916666666666664,
|
| 856 |
+
"dapo/total_prompts_processed": 15.0,
|
| 857 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 858 |
+
"epoch": 0.05142857142857143,
|
| 859 |
+
"grad_norm": 0.01152133010327816,
|
| 860 |
+
"kl": 7.429718971252441e-05,
|
| 861 |
+
"learning_rate": 7.185729670371604e-07,
|
| 862 |
+
"loss": 0.0259,
|
| 863 |
+
"reward": 0.8203496672213078,
|
| 864 |
+
"reward_std": 0.9882074818015099,
|
| 865 |
+
"step": 45
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"clip_fraction": 0.0,
|
| 869 |
+
"completion_length": 3020.9757232666016,
|
| 870 |
+
"dapo/avg_reward_std": 0.294668085873127,
|
| 871 |
+
"dapo/filter_reward_index": 0.0,
|
| 872 |
+
"dapo/kept_prompts_ratio": 0.37500000691839624,
|
| 873 |
+
"dapo/num_sampling_attempts": 3.5,
|
| 874 |
+
"dapo/sampling_efficiency": 38.660714285714285,
|
| 875 |
+
"dapo/total_prompts_processed": 21.0,
|
| 876 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 877 |
+
"epoch": 0.052571428571428575,
|
| 878 |
+
"grad_norm": 0.009526599198579788,
|
| 879 |
+
"kl": 0.00014853477478027344,
|
| 880 |
+
"learning_rate": 7.039090644965509e-07,
|
| 881 |
+
"loss": 0.0314,
|
| 882 |
+
"reward": 0.6035567373037338,
|
| 883 |
+
"reward_std": 0.9617942646145821,
|
| 884 |
+
"step": 46
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"clip_fraction": 0.0,
|
| 888 |
+
"completion_length": 2869.8958892822266,
|
| 889 |
+
"dapo/avg_reward_std": 0.37419558623257804,
|
| 890 |
+
"dapo/filter_reward_index": 0.0,
|
| 891 |
+
"dapo/kept_prompts_ratio": 0.5196078481043086,
|
| 892 |
+
"dapo/num_sampling_attempts": 2.125,
|
| 893 |
+
"dapo/sampling_efficiency": 66.66666666666666,
|
| 894 |
+
"dapo/total_prompts_processed": 12.75,
|
| 895 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 896 |
+
"epoch": 0.053714285714285714,
|
| 897 |
+
"grad_norm": 0.008854555897414684,
|
| 898 |
+
"kl": 0.00012740492820739746,
|
| 899 |
+
"learning_rate": 6.890576474687263e-07,
|
| 900 |
+
"loss": 0.0266,
|
| 901 |
+
"reward": 0.5126286232843995,
|
| 902 |
+
"reward_std": 0.9323688969016075,
|
| 903 |
+
"step": 47
|
| 904 |
+
},
|
| 905 |
+
{
|
| 906 |
+
"clip_fraction": 0.0,
|
| 907 |
+
"completion_length": 1974.5069999694824,
|
| 908 |
+
"dapo/avg_reward_std": 0.31826632221539813,
|
| 909 |
+
"dapo/filter_reward_index": 0.0,
|
| 910 |
+
"dapo/kept_prompts_ratio": 0.42361111628512543,
|
| 911 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 912 |
+
"dapo/sampling_efficiency": 43.541666666666664,
|
| 913 |
+
"dapo/total_prompts_processed": 18.0,
|
| 914 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 915 |
+
"epoch": 0.054857142857142854,
|
| 916 |
+
"grad_norm": 0.012630482204258442,
|
| 917 |
+
"kl": 0.00011485815048217773,
|
| 918 |
+
"learning_rate": 6.740368101176495e-07,
|
| 919 |
+
"loss": 0.0259,
|
| 920 |
+
"reward": 0.7998449765145779,
|
| 921 |
+
"reward_std": 0.9614248275756836,
|
| 922 |
+
"step": 48
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"clip_fraction": 0.0,
|
| 926 |
+
"completion_length": 2775.854164123535,
|
| 927 |
+
"dapo/avg_reward_std": 0.24803236694563002,
|
| 928 |
+
"dapo/filter_reward_index": 0.0,
|
| 929 |
+
"dapo/kept_prompts_ratio": 0.41269841435409726,
|
| 930 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 931 |
+
"dapo/sampling_efficiency": 65.97222222222223,
|
| 932 |
+
"dapo/total_prompts_processed": 15.75,
|
| 933 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 934 |
+
"epoch": 0.056,
|
| 935 |
+
"grad_norm": 0.0115203270688653,
|
| 936 |
+
"kl": 0.00010813772678375244,
|
| 937 |
+
"learning_rate": 6.588648530198504e-07,
|
| 938 |
+
"loss": 0.0626,
|
| 939 |
+
"reward": 0.5735284592956305,
|
| 940 |
+
"reward_std": 0.9657324403524399,
|
| 941 |
+
"step": 49
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"clip_fraction": 0.0,
|
| 945 |
+
"completion_length": 2555.2743377685547,
|
| 946 |
+
"dapo/avg_reward_std": 0.3077625359098117,
|
| 947 |
+
"dapo/filter_reward_index": 0.0,
|
| 948 |
+
"dapo/kept_prompts_ratio": 0.423611119389534,
|
| 949 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 950 |
+
"dapo/sampling_efficiency": 48.33333333333333,
|
| 951 |
+
"dapo/total_prompts_processed": 18.0,
|
| 952 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 953 |
+
"epoch": 0.05714285714285714,
|
| 954 |
+
"grad_norm": 0.012258801609277725,
|
| 955 |
+
"kl": 0.00013893842697143555,
|
| 956 |
+
"learning_rate": 6.435602608679916e-07,
|
| 957 |
+
"loss": 0.0575,
|
| 958 |
+
"reward": 0.8288873583078384,
|
| 959 |
+
"reward_std": 0.950613297522068,
|
| 960 |
+
"step": 50
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"clip_fraction": 0.0,
|
| 964 |
+
"completion_length": 2645.576400756836,
|
| 965 |
+
"dapo/avg_reward_std": 0.3462034153441588,
|
| 966 |
+
"dapo/filter_reward_index": 0.0,
|
| 967 |
+
"dapo/kept_prompts_ratio": 0.4236111169060071,
|
| 968 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 969 |
+
"dapo/sampling_efficiency": 39.99999999999999,
|
| 970 |
+
"dapo/total_prompts_processed": 18.0,
|
| 971 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 972 |
+
"epoch": 0.05828571428571429,
|
| 973 |
+
"grad_norm": 0.01161988079547882,
|
| 974 |
+
"kl": 0.0001646280288696289,
|
| 975 |
+
"learning_rate": 6.281416799501187e-07,
|
| 976 |
+
"loss": 0.046,
|
| 977 |
+
"reward": 0.46879277005791664,
|
| 978 |
+
"reward_std": 0.9387945607304573,
|
| 979 |
+
"step": 51
|
| 980 |
+
},
|
| 981 |
+
{
|
| 982 |
+
"clip_fraction": 0.0,
|
| 983 |
+
"completion_length": 2043.677101135254,
|
| 984 |
+
"dapo/avg_reward_std": 0.3387378570826157,
|
| 985 |
+
"dapo/filter_reward_index": 0.0,
|
| 986 |
+
"dapo/kept_prompts_ratio": 0.4347826171180476,
|
| 987 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 988 |
+
"dapo/sampling_efficiency": 45.83333333333333,
|
| 989 |
+
"dapo/total_prompts_processed": 17.25,
|
| 990 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 991 |
+
"epoch": 0.05942857142857143,
|
| 992 |
+
"grad_norm": 0.011719447560608387,
|
| 993 |
+
"kl": 0.00012214481830596924,
|
| 994 |
+
"learning_rate": 6.126278954320294e-07,
|
| 995 |
+
"loss": 0.0093,
|
| 996 |
+
"reward": 0.7487262971699238,
|
| 997 |
+
"reward_std": 0.9444489181041718,
|
| 998 |
+
"step": 52
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"clip_fraction": 0.0,
|
| 1002 |
+
"completion_length": 2277.902801513672,
|
| 1003 |
+
"dapo/avg_reward_std": 0.269059170936716,
|
| 1004 |
+
"dapo/filter_reward_index": 0.0,
|
| 1005 |
+
"dapo/kept_prompts_ratio": 0.37356322695469035,
|
| 1006 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 1007 |
+
"dapo/sampling_efficiency": 41.88988095238095,
|
| 1008 |
+
"dapo/total_prompts_processed": 21.75,
|
| 1009 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1010 |
+
"epoch": 0.060571428571428575,
|
| 1011 |
+
"grad_norm": 0.012477328069508076,
|
| 1012 |
+
"kl": 0.00015044212341308594,
|
| 1013 |
+
"learning_rate": 5.97037808470444e-07,
|
| 1014 |
+
"loss": 0.048,
|
| 1015 |
+
"reward": 0.6608240492641926,
|
| 1016 |
+
"reward_std": 0.9770755022764206,
|
| 1017 |
+
"step": 53
|
| 1018 |
+
},
|
| 1019 |
+
{
|
| 1020 |
+
"clip_fraction": 0.0,
|
| 1021 |
+
"completion_length": 2374.232635498047,
|
| 1022 |
+
"dapo/avg_reward_std": 0.34054997433786804,
|
| 1023 |
+
"dapo/filter_reward_index": 0.0,
|
| 1024 |
+
"dapo/kept_prompts_ratio": 0.500000013605408,
|
| 1025 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 1026 |
+
"dapo/sampling_efficiency": 37.916666666666664,
|
| 1027 |
+
"dapo/total_prompts_processed": 17.25,
|
| 1028 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1029 |
+
"epoch": 0.061714285714285715,
|
| 1030 |
+
"grad_norm": 0.013303548097610474,
|
| 1031 |
+
"kl": 0.0001438036561012268,
|
| 1032 |
+
"learning_rate": 5.813904131848564e-07,
|
| 1033 |
+
"loss": 0.0614,
|
| 1034 |
+
"reward": 0.75572844222188,
|
| 1035 |
+
"reward_std": 0.9565529599785805,
|
| 1036 |
+
"step": 54
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"clip_fraction": 0.0,
|
| 1040 |
+
"completion_length": 2442.232666015625,
|
| 1041 |
+
"dapo/avg_reward_std": 0.27056889484326047,
|
| 1042 |
+
"dapo/filter_reward_index": 0.0,
|
| 1043 |
+
"dapo/kept_prompts_ratio": 0.4097222263614337,
|
| 1044 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1045 |
+
"dapo/sampling_efficiency": 45.83333333333333,
|
| 1046 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1047 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1048 |
+
"epoch": 0.06285714285714286,
|
| 1049 |
+
"grad_norm": 0.011922283098101616,
|
| 1050 |
+
"kl": 0.00014710426330566406,
|
| 1051 |
+
"learning_rate": 5.657047735161255e-07,
|
| 1052 |
+
"loss": 0.0447,
|
| 1053 |
+
"reward": 0.6145301992073655,
|
| 1054 |
+
"reward_std": 0.9308876842260361,
|
| 1055 |
+
"step": 55
|
| 1056 |
+
},
|
| 1057 |
+
{
|
| 1058 |
+
"clip_fraction": 0.0,
|
| 1059 |
+
"completion_length": 2163.7604064941406,
|
| 1060 |
+
"dapo/avg_reward_std": 0.306766193537485,
|
| 1061 |
+
"dapo/filter_reward_index": 0.0,
|
| 1062 |
+
"dapo/kept_prompts_ratio": 0.47619048612458365,
|
| 1063 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1064 |
+
"dapo/sampling_efficiency": 57.291666666666664,
|
| 1065 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1066 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1067 |
+
"epoch": 0.064,
|
| 1068 |
+
"grad_norm": 0.009786682203412056,
|
| 1069 |
+
"kl": 0.00011900067329406738,
|
| 1070 |
+
"learning_rate": 5.5e-07,
|
| 1071 |
+
"loss": 0.0353,
|
| 1072 |
+
"reward": 0.7467220462858677,
|
| 1073 |
+
"reward_std": 0.9404179230332375,
|
| 1074 |
+
"step": 56
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"clip_fraction": 0.0,
|
| 1078 |
+
"completion_length": 1992.7430953979492,
|
| 1079 |
+
"dapo/avg_reward_std": 0.21240893006324768,
|
| 1080 |
+
"dapo/filter_reward_index": 0.0,
|
| 1081 |
+
"dapo/kept_prompts_ratio": 0.2631579006188794,
|
| 1082 |
+
"dapo/num_sampling_attempts": 4.75,
|
| 1083 |
+
"dapo/sampling_efficiency": 27.708333333333332,
|
| 1084 |
+
"dapo/total_prompts_processed": 28.5,
|
| 1085 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1086 |
+
"epoch": 0.06514285714285714,
|
| 1087 |
+
"grad_norm": 0.015636112540960312,
|
| 1088 |
+
"kl": 0.00013278424739837646,
|
| 1089 |
+
"learning_rate": 5.342952264838747e-07,
|
| 1090 |
+
"loss": 0.0652,
|
| 1091 |
+
"reward": 0.5448480695486069,
|
| 1092 |
+
"reward_std": 0.8946049734950066,
|
| 1093 |
+
"step": 57
|
| 1094 |
+
},
|
| 1095 |
+
{
|
| 1096 |
+
"clip_fraction": 0.0,
|
| 1097 |
+
"completion_length": 1786.927101135254,
|
| 1098 |
+
"dapo/avg_reward_std": 0.27395731459061307,
|
| 1099 |
+
"dapo/filter_reward_index": 0.0,
|
| 1100 |
+
"dapo/kept_prompts_ratio": 0.479166679084301,
|
| 1101 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1102 |
+
"dapo/sampling_efficiency": 51.979166666666664,
|
| 1103 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1104 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1105 |
+
"epoch": 0.06628571428571428,
|
| 1106 |
+
"grad_norm": 0.012302345596253872,
|
| 1107 |
+
"kl": 0.00010266900062561035,
|
| 1108 |
+
"learning_rate": 5.186095868151436e-07,
|
| 1109 |
+
"loss": 0.0222,
|
| 1110 |
+
"reward": 0.7567729391157627,
|
| 1111 |
+
"reward_std": 0.9539604857563972,
|
| 1112 |
+
"step": 58
|
| 1113 |
+
},
|
| 1114 |
+
{
|
| 1115 |
+
"clip_fraction": 0.0,
|
| 1116 |
+
"completion_length": 1871.125015258789,
|
| 1117 |
+
"dapo/avg_reward_std": 0.26716366639504063,
|
| 1118 |
+
"dapo/filter_reward_index": 0.0,
|
| 1119 |
+
"dapo/kept_prompts_ratio": 0.3461538547506699,
|
| 1120 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 1121 |
+
"dapo/sampling_efficiency": 51.25,
|
| 1122 |
+
"dapo/total_prompts_processed": 19.5,
|
| 1123 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1124 |
+
"epoch": 0.06742857142857143,
|
| 1125 |
+
"grad_norm": 0.012423303909599781,
|
| 1126 |
+
"kl": 0.00013174861669540405,
|
| 1127 |
+
"learning_rate": 5.02962191529556e-07,
|
| 1128 |
+
"loss": 0.0051,
|
| 1129 |
+
"reward": 0.5472707431763411,
|
| 1130 |
+
"reward_std": 0.9848242700099945,
|
| 1131 |
+
"step": 59
|
| 1132 |
+
},
|
| 1133 |
+
{
|
| 1134 |
+
"clip_fraction": 0.0,
|
| 1135 |
+
"completion_length": 2110.0104446411133,
|
| 1136 |
+
"dapo/avg_reward_std": 0.27772934675216676,
|
| 1137 |
+
"dapo/filter_reward_index": 0.0,
|
| 1138 |
+
"dapo/kept_prompts_ratio": 0.3933333379030228,
|
| 1139 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 1140 |
+
"dapo/sampling_efficiency": 55.416666666666664,
|
| 1141 |
+
"dapo/total_prompts_processed": 18.75,
|
| 1142 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1143 |
+
"epoch": 0.06857142857142857,
|
| 1144 |
+
"grad_norm": 0.010305487550795078,
|
| 1145 |
+
"kl": 0.00013266503810882568,
|
| 1146 |
+
"learning_rate": 4.873721045679706e-07,
|
| 1147 |
+
"loss": -0.0051,
|
| 1148 |
+
"reward": 0.5918029174208641,
|
| 1149 |
+
"reward_std": 0.9419775605201721,
|
| 1150 |
+
"step": 60
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"clip_fraction": 0.0,
|
| 1154 |
+
"completion_length": 1820.1597595214844,
|
| 1155 |
+
"dapo/avg_reward_std": 0.2844862639904022,
|
| 1156 |
+
"dapo/filter_reward_index": 0.0,
|
| 1157 |
+
"dapo/kept_prompts_ratio": 0.351190483463662,
|
| 1158 |
+
"dapo/num_sampling_attempts": 3.5,
|
| 1159 |
+
"dapo/sampling_efficiency": 39.28571428571428,
|
| 1160 |
+
"dapo/total_prompts_processed": 21.0,
|
| 1161 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1162 |
+
"epoch": 0.06971428571428571,
|
| 1163 |
+
"grad_norm": 0.01057644933462143,
|
| 1164 |
+
"kl": 9.304285049438477e-05,
|
| 1165 |
+
"learning_rate": 4.7185832004988133e-07,
|
| 1166 |
+
"loss": 0.0019,
|
| 1167 |
+
"reward": 0.5361353289335966,
|
| 1168 |
+
"reward_std": 0.9243106096982956,
|
| 1169 |
+
"step": 61
|
| 1170 |
+
},
|
| 1171 |
+
{
|
| 1172 |
+
"clip_fraction": 0.0,
|
| 1173 |
+
"completion_length": 2268.913215637207,
|
| 1174 |
+
"dapo/avg_reward_std": 0.2805037432246738,
|
| 1175 |
+
"dapo/filter_reward_index": 0.0,
|
| 1176 |
+
"dapo/kept_prompts_ratio": 0.3456790220958215,
|
| 1177 |
+
"dapo/num_sampling_attempts": 3.375,
|
| 1178 |
+
"dapo/sampling_efficiency": 39.791666666666664,
|
| 1179 |
+
"dapo/total_prompts_processed": 20.25,
|
| 1180 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1181 |
+
"epoch": 0.07085714285714285,
|
| 1182 |
+
"grad_norm": 0.010327951982617378,
|
| 1183 |
+
"kl": 0.00013640522956848145,
|
| 1184 |
+
"learning_rate": 4.5643973913200837e-07,
|
| 1185 |
+
"loss": 0.011,
|
| 1186 |
+
"reward": 0.5703515652567148,
|
| 1187 |
+
"reward_std": 0.9485230222344398,
|
| 1188 |
+
"step": 62
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"clip_fraction": 0.0,
|
| 1192 |
+
"completion_length": 2150.541679382324,
|
| 1193 |
+
"dapo/avg_reward_std": 0.3610766388868031,
|
| 1194 |
+
"dapo/filter_reward_index": 0.0,
|
| 1195 |
+
"dapo/kept_prompts_ratio": 0.5000000164697045,
|
| 1196 |
+
"dapo/num_sampling_attempts": 2.375,
|
| 1197 |
+
"dapo/sampling_efficiency": 48.95833333333333,
|
| 1198 |
+
"dapo/total_prompts_processed": 14.25,
|
| 1199 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1200 |
+
"epoch": 0.072,
|
| 1201 |
+
"grad_norm": 0.01420843880623579,
|
| 1202 |
+
"kl": 0.00017371773719787598,
|
| 1203 |
+
"learning_rate": 4.4113514698014953e-07,
|
| 1204 |
+
"loss": 0.027,
|
| 1205 |
+
"reward": 0.8152667284011841,
|
| 1206 |
+
"reward_std": 0.9553957208991051,
|
| 1207 |
+
"step": 63
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"clip_fraction": 0.0,
|
| 1211 |
+
"completion_length": 2542.954879760742,
|
| 1212 |
+
"dapo/avg_reward_std": 0.25789711397627124,
|
| 1213 |
+
"dapo/filter_reward_index": 0.0,
|
| 1214 |
+
"dapo/kept_prompts_ratio": 0.4057971077120822,
|
| 1215 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 1216 |
+
"dapo/sampling_efficiency": 55.0,
|
| 1217 |
+
"dapo/total_prompts_processed": 17.25,
|
| 1218 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1219 |
+
"epoch": 0.07314285714285715,
|
| 1220 |
+
"grad_norm": 0.010388275608420372,
|
| 1221 |
+
"kl": 0.00016424059867858887,
|
| 1222 |
+
"learning_rate": 4.2596318988235037e-07,
|
| 1223 |
+
"loss": 0.0153,
|
| 1224 |
+
"reward": 0.8328269198536873,
|
| 1225 |
+
"reward_std": 0.946412943303585,
|
| 1226 |
+
"step": 64
|
| 1227 |
+
},
|
| 1228 |
+
{
|
| 1229 |
+
"clip_fraction": 0.0,
|
| 1230 |
+
"completion_length": 2573.9132385253906,
|
| 1231 |
+
"dapo/avg_reward_std": 0.27658049833206905,
|
| 1232 |
+
"dapo/filter_reward_index": 0.0,
|
| 1233 |
+
"dapo/kept_prompts_ratio": 0.4682539779515493,
|
| 1234 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1235 |
+
"dapo/sampling_efficiency": 67.01388888888889,
|
| 1236 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1237 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1238 |
+
"epoch": 0.07428571428571429,
|
| 1239 |
+
"grad_norm": 0.016587890684604645,
|
| 1240 |
+
"kl": 0.0002205371856689453,
|
| 1241 |
+
"learning_rate": 4.1094235253127374e-07,
|
| 1242 |
+
"loss": 0.071,
|
| 1243 |
+
"reward": 0.8272522762417793,
|
| 1244 |
+
"reward_std": 0.9939362108707428,
|
| 1245 |
+
"step": 65
|
| 1246 |
+
},
|
| 1247 |
+
{
|
| 1248 |
+
"clip_fraction": 0.0,
|
| 1249 |
+
"completion_length": 2272.4132080078125,
|
| 1250 |
+
"dapo/avg_reward_std": 0.28441278512279194,
|
| 1251 |
+
"dapo/filter_reward_index": 0.0,
|
| 1252 |
+
"dapo/kept_prompts_ratio": 0.38888889737427235,
|
| 1253 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1254 |
+
"dapo/sampling_efficiency": 49.375,
|
| 1255 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1256 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1257 |
+
"epoch": 0.07542857142857143,
|
| 1258 |
+
"grad_norm": 0.01080800499767065,
|
| 1259 |
+
"kl": 0.00015676021575927734,
|
| 1260 |
+
"learning_rate": 3.9609093550344907e-07,
|
| 1261 |
+
"loss": -0.0104,
|
| 1262 |
+
"reward": 0.7243790216743946,
|
| 1263 |
+
"reward_std": 1.0099836066365242,
|
| 1264 |
+
"step": 66
|
| 1265 |
+
},
|
| 1266 |
+
{
|
| 1267 |
+
"clip_fraction": 0.0,
|
| 1268 |
+
"completion_length": 2551.920150756836,
|
| 1269 |
+
"dapo/avg_reward_std": 0.29605763202363794,
|
| 1270 |
+
"dapo/filter_reward_index": 0.0,
|
| 1271 |
+
"dapo/kept_prompts_ratio": 0.4242424314672297,
|
| 1272 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1273 |
+
"dapo/sampling_efficiency": 50.416666666666664,
|
| 1274 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1275 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1276 |
+
"epoch": 0.07657142857142857,
|
| 1277 |
+
"grad_norm": 0.01253009494394064,
|
| 1278 |
+
"kl": 0.0001944899559020996,
|
| 1279 |
+
"learning_rate": 3.8142703296283953e-07,
|
| 1280 |
+
"loss": 0.0544,
|
| 1281 |
+
"reward": 0.7982187271118164,
|
| 1282 |
+
"reward_std": 0.9796509444713593,
|
| 1283 |
+
"step": 67
|
| 1284 |
+
},
|
| 1285 |
+
{
|
| 1286 |
+
"clip_fraction": 0.0,
|
| 1287 |
+
"completion_length": 2039.6910400390625,
|
| 1288 |
+
"dapo/avg_reward_std": 0.3305485857029756,
|
| 1289 |
+
"dapo/filter_reward_index": 0.0,
|
| 1290 |
+
"dapo/kept_prompts_ratio": 0.4305555634200573,
|
| 1291 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1292 |
+
"dapo/sampling_efficiency": 41.041666666666664,
|
| 1293 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1294 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1295 |
+
"epoch": 0.07771428571428571,
|
| 1296 |
+
"grad_norm": 0.013196859508752823,
|
| 1297 |
+
"kl": 0.00021713972091674805,
|
| 1298 |
+
"learning_rate": 3.6696851061588994e-07,
|
| 1299 |
+
"loss": 0.0185,
|
| 1300 |
+
"reward": 0.8682084418833256,
|
| 1301 |
+
"reward_std": 0.9861341118812561,
|
| 1302 |
+
"step": 68
|
| 1303 |
+
},
|
| 1304 |
+
{
|
| 1305 |
+
"clip_fraction": 0.0,
|
| 1306 |
+
"completion_length": 2549.642364501953,
|
| 1307 |
+
"dapo/avg_reward_std": 0.28639274001121523,
|
| 1308 |
+
"dapo/filter_reward_index": 0.0,
|
| 1309 |
+
"dapo/kept_prompts_ratio": 0.4133333384990692,
|
| 1310 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 1311 |
+
"dapo/sampling_efficiency": 38.95833333333333,
|
| 1312 |
+
"dapo/total_prompts_processed": 18.75,
|
| 1313 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1314 |
+
"epoch": 0.07885714285714286,
|
| 1315 |
+
"grad_norm": 0.010159006342291832,
|
| 1316 |
+
"kl": 0.00016075372695922852,
|
| 1317 |
+
"learning_rate": 3.5273298394491515e-07,
|
| 1318 |
+
"loss": -0.0284,
|
| 1319 |
+
"reward": 0.5912708025425673,
|
| 1320 |
+
"reward_std": 0.9797485172748566,
|
| 1321 |
+
"step": 69
|
| 1322 |
+
},
|
| 1323 |
+
{
|
| 1324 |
+
"clip_fraction": 0.0,
|
| 1325 |
+
"completion_length": 2719.5382232666016,
|
| 1326 |
+
"dapo/avg_reward_std": 0.28611900960957565,
|
| 1327 |
+
"dapo/filter_reward_index": 0.0,
|
| 1328 |
+
"dapo/kept_prompts_ratio": 0.351851859026485,
|
| 1329 |
+
"dapo/num_sampling_attempts": 3.375,
|
| 1330 |
+
"dapo/sampling_efficiency": 40.625,
|
| 1331 |
+
"dapo/total_prompts_processed": 20.25,
|
| 1332 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1333 |
+
"epoch": 0.08,
|
| 1334 |
+
"grad_norm": 0.011270755901932716,
|
| 1335 |
+
"kl": 0.00022423267364501953,
|
| 1336 |
+
"learning_rate": 3.387377967463493e-07,
|
| 1337 |
+
"loss": 0.0265,
|
| 1338 |
+
"reward": 0.5740308649837971,
|
| 1339 |
+
"reward_std": 0.8749020621180534,
|
| 1340 |
+
"step": 70
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"clip_fraction": 0.0,
|
| 1344 |
+
"completion_length": 2073.2916946411133,
|
| 1345 |
+
"dapo/avg_reward_std": 0.28938476492961246,
|
| 1346 |
+
"dapo/filter_reward_index": 0.0,
|
| 1347 |
+
"dapo/kept_prompts_ratio": 0.45833334264655906,
|
| 1348 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1349 |
+
"dapo/sampling_efficiency": 42.49999999999999,
|
| 1350 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1351 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1352 |
+
"epoch": 0.08114285714285714,
|
| 1353 |
+
"grad_norm": 0.011867412365972996,
|
| 1354 |
+
"kl": 0.0001347661018371582,
|
| 1355 |
+
"learning_rate": 3.250000000000001e-07,
|
| 1356 |
+
"loss": -0.0577,
|
| 1357 |
+
"reward": 0.5955507848411798,
|
| 1358 |
+
"reward_std": 0.9116542786359787,
|
| 1359 |
+
"step": 71
|
| 1360 |
+
},
|
| 1361 |
+
{
|
| 1362 |
+
"clip_fraction": 0.0,
|
| 1363 |
+
"completion_length": 2239.322914123535,
|
| 1364 |
+
"dapo/avg_reward_std": 0.30952110344713385,
|
| 1365 |
+
"dapo/filter_reward_index": 0.0,
|
| 1366 |
+
"dapo/kept_prompts_ratio": 0.4469697041945024,
|
| 1367 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1368 |
+
"dapo/sampling_efficiency": 44.166666666666664,
|
| 1369 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1370 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1371 |
+
"epoch": 0.08228571428571428,
|
| 1372 |
+
"grad_norm": 0.011070906184613705,
|
| 1373 |
+
"kl": 0.000155717134475708,
|
| 1374 |
+
"learning_rate": 3.115363310950578e-07,
|
| 1375 |
+
"loss": 0.0339,
|
| 1376 |
+
"reward": 0.7990612685680389,
|
| 1377 |
+
"reward_std": 0.9683424234390259,
|
| 1378 |
+
"step": 72
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"clip_fraction": 0.0,
|
| 1382 |
+
"completion_length": 2044.489601135254,
|
| 1383 |
+
"dapo/avg_reward_std": 0.21984713185917248,
|
| 1384 |
+
"dapo/filter_reward_index": 0.0,
|
| 1385 |
+
"dapo/kept_prompts_ratio": 0.3131313206571521,
|
| 1386 |
+
"dapo/num_sampling_attempts": 4.125,
|
| 1387 |
+
"dapo/sampling_efficiency": 36.77083333333333,
|
| 1388 |
+
"dapo/total_prompts_processed": 24.75,
|
| 1389 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1390 |
+
"epoch": 0.08342857142857144,
|
| 1391 |
+
"grad_norm": 0.014109701849520206,
|
| 1392 |
+
"kl": 0.0001436173915863037,
|
| 1393 |
+
"learning_rate": 2.9836319343816397e-07,
|
| 1394 |
+
"loss": 0.085,
|
| 1395 |
+
"reward": 0.8676656074821949,
|
| 1396 |
+
"reward_std": 0.9657078757882118,
|
| 1397 |
+
"step": 73
|
| 1398 |
+
},
|
| 1399 |
+
{
|
| 1400 |
+
"clip_fraction": 0.0,
|
| 1401 |
+
"completion_length": 1958.7361068725586,
|
| 1402 |
+
"dapo/avg_reward_std": 0.30799518460812775,
|
| 1403 |
+
"dapo/filter_reward_index": 0.0,
|
| 1404 |
+
"dapo/kept_prompts_ratio": 0.4927536339863487,
|
| 1405 |
+
"dapo/num_sampling_attempts": 2.875,
|
| 1406 |
+
"dapo/sampling_efficiency": 40.625,
|
| 1407 |
+
"dapo/total_prompts_processed": 17.25,
|
| 1408 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1409 |
+
"epoch": 0.08457142857142858,
|
| 1410 |
+
"grad_norm": 0.013041837140917778,
|
| 1411 |
+
"kl": 0.0001519918441772461,
|
| 1412 |
+
"learning_rate": 2.854966364683872e-07,
|
| 1413 |
+
"loss": 0.0492,
|
| 1414 |
+
"reward": 0.6045123310759664,
|
| 1415 |
+
"reward_std": 0.9384523630142212,
|
| 1416 |
+
"step": 74
|
| 1417 |
+
},
|
| 1418 |
+
{
|
| 1419 |
+
"clip_fraction": 0.0,
|
| 1420 |
+
"completion_length": 1523.1284942626953,
|
| 1421 |
+
"dapo/avg_reward_std": 0.31539708146682155,
|
| 1422 |
+
"dapo/filter_reward_index": 0.0,
|
| 1423 |
+
"dapo/kept_prompts_ratio": 0.391025647521019,
|
| 1424 |
+
"dapo/num_sampling_attempts": 3.25,
|
| 1425 |
+
"dapo/sampling_efficiency": 36.875,
|
| 1426 |
+
"dapo/total_prompts_processed": 19.5,
|
| 1427 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1428 |
+
"epoch": 0.08571428571428572,
|
| 1429 |
+
"grad_norm": 0.014472462236881256,
|
| 1430 |
+
"kl": 0.0001392364501953125,
|
| 1431 |
+
"learning_rate": 2.729523361034538e-07,
|
| 1432 |
+
"loss": 0.0358,
|
| 1433 |
+
"reward": 0.7163376174867153,
|
| 1434 |
+
"reward_std": 0.9508332461118698,
|
| 1435 |
+
"step": 75
|
| 1436 |
+
},
|
| 1437 |
+
{
|
| 1438 |
+
"clip_fraction": 0.0,
|
| 1439 |
+
"completion_length": 2640.7813110351562,
|
| 1440 |
+
"dapo/avg_reward_std": 0.3144421911239624,
|
| 1441 |
+
"dapo/filter_reward_index": 0.0,
|
| 1442 |
+
"dapo/kept_prompts_ratio": 0.44000000655651095,
|
| 1443 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 1444 |
+
"dapo/sampling_efficiency": 43.75,
|
| 1445 |
+
"dapo/total_prompts_processed": 18.75,
|
| 1446 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1447 |
+
"epoch": 0.08685714285714285,
|
| 1448 |
+
"grad_norm": 0.011127221398055553,
|
| 1449 |
+
"kl": 0.0002060532569885254,
|
| 1450 |
+
"learning_rate": 2.6074557564105724e-07,
|
| 1451 |
+
"loss": 0.0604,
|
| 1452 |
+
"reward": 0.6046733632683754,
|
| 1453 |
+
"reward_std": 0.9528723284602165,
|
| 1454 |
+
"step": 76
|
| 1455 |
+
},
|
| 1456 |
+
{
|
| 1457 |
+
"clip_fraction": 0.0,
|
| 1458 |
+
"completion_length": 2088.7292098999023,
|
| 1459 |
+
"dapo/avg_reward_std": 0.3257487453520298,
|
| 1460 |
+
"dapo/filter_reward_index": 0.0,
|
| 1461 |
+
"dapo/kept_prompts_ratio": 0.4444444552063942,
|
| 1462 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1463 |
+
"dapo/sampling_efficiency": 45.31249999999999,
|
| 1464 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1465 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1466 |
+
"epoch": 0.088,
|
| 1467 |
+
"grad_norm": 0.013021063059568405,
|
| 1468 |
+
"kl": 0.00017440319061279297,
|
| 1469 |
+
"learning_rate": 2.488912271385139e-07,
|
| 1470 |
+
"loss": 0.0353,
|
| 1471 |
+
"reward": 0.5843205824494362,
|
| 1472 |
+
"reward_std": 0.9498706609010696,
|
| 1473 |
+
"step": 77
|
| 1474 |
+
},
|
| 1475 |
+
{
|
| 1476 |
+
"clip_fraction": 0.0,
|
| 1477 |
+
"completion_length": 2710.0069580078125,
|
| 1478 |
+
"dapo/avg_reward_std": 0.4117408903206096,
|
| 1479 |
+
"dapo/filter_reward_index": 0.0,
|
| 1480 |
+
"dapo/kept_prompts_ratio": 0.5784313836518455,
|
| 1481 |
+
"dapo/num_sampling_attempts": 2.125,
|
| 1482 |
+
"dapo/sampling_efficiency": 52.08333333333333,
|
| 1483 |
+
"dapo/total_prompts_processed": 12.75,
|
| 1484 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1485 |
+
"epoch": 0.08914285714285715,
|
| 1486 |
+
"grad_norm": 0.00956858042627573,
|
| 1487 |
+
"kl": 0.00020110607147216797,
|
| 1488 |
+
"learning_rate": 2.374037332934512e-07,
|
| 1489 |
+
"loss": -0.0019,
|
| 1490 |
+
"reward": 0.7558267749845982,
|
| 1491 |
+
"reward_std": 0.9872319549322128,
|
| 1492 |
+
"step": 78
|
| 1493 |
+
},
|
| 1494 |
+
{
|
| 1495 |
+
"clip_fraction": 0.0,
|
| 1496 |
+
"completion_length": 2532.888916015625,
|
| 1497 |
+
"dapo/avg_reward_std": 0.29725510747201983,
|
| 1498 |
+
"dapo/filter_reward_index": 0.0,
|
| 1499 |
+
"dapo/kept_prompts_ratio": 0.34408603031789103,
|
| 1500 |
+
"dapo/num_sampling_attempts": 3.875,
|
| 1501 |
+
"dapo/sampling_efficiency": 31.696428571428562,
|
| 1502 |
+
"dapo/total_prompts_processed": 23.25,
|
| 1503 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1504 |
+
"epoch": 0.09028571428571429,
|
| 1505 |
+
"grad_norm": 0.010455719195306301,
|
| 1506 |
+
"kl": 0.00019878149032592773,
|
| 1507 |
+
"learning_rate": 2.2629708984760706e-07,
|
| 1508 |
+
"loss": 0.0433,
|
| 1509 |
+
"reward": 0.7071553282439709,
|
| 1510 |
+
"reward_std": 0.936428040266037,
|
| 1511 |
+
"step": 79
|
| 1512 |
+
},
|
| 1513 |
+
{
|
| 1514 |
+
"clip_fraction": 0.0,
|
| 1515 |
+
"completion_length": 2045.3507232666016,
|
| 1516 |
+
"dapo/avg_reward_std": 0.24797727167606354,
|
| 1517 |
+
"dapo/filter_reward_index": 0.0,
|
| 1518 |
+
"dapo/kept_prompts_ratio": 0.4318181872367859,
|
| 1519 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1520 |
+
"dapo/sampling_efficiency": 56.24999999999999,
|
| 1521 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1522 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1523 |
+
"epoch": 0.09142857142857143,
|
| 1524 |
+
"grad_norm": 0.011657273396849632,
|
| 1525 |
+
"kl": 0.00015923380851745605,
|
| 1526 |
+
"learning_rate": 2.1558482853517253e-07,
|
| 1527 |
+
"loss": 0.0016,
|
| 1528 |
+
"reward": 0.8354307417757809,
|
| 1529 |
+
"reward_std": 0.9478549808263779,
|
| 1530 |
+
"step": 80
|
| 1531 |
+
},
|
| 1532 |
+
{
|
| 1533 |
+
"clip_fraction": 0.0,
|
| 1534 |
+
"completion_length": 2517.621482849121,
|
| 1535 |
+
"dapo/avg_reward_std": 0.3837103931342854,
|
| 1536 |
+
"dapo/filter_reward_index": 0.0,
|
| 1537 |
+
"dapo/kept_prompts_ratio": 0.5882353055126527,
|
| 1538 |
+
"dapo/num_sampling_attempts": 2.125,
|
| 1539 |
+
"dapo/sampling_efficiency": 56.24999999999999,
|
| 1540 |
+
"dapo/total_prompts_processed": 12.75,
|
| 1541 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1542 |
+
"epoch": 0.09257142857142857,
|
| 1543 |
+
"grad_norm": 0.011230596341192722,
|
| 1544 |
+
"kl": 0.00020751357078552246,
|
| 1545 |
+
"learning_rate": 2.0528000059645995e-07,
|
| 1546 |
+
"loss": 0.0523,
|
| 1547 |
+
"reward": 0.6180859599262476,
|
| 1548 |
+
"reward_std": 0.9601781144738197,
|
| 1549 |
+
"step": 81
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"clip_fraction": 0.0,
|
| 1553 |
+
"completion_length": 2189.6805725097656,
|
| 1554 |
+
"dapo/avg_reward_std": 0.33485331758856773,
|
| 1555 |
+
"dapo/filter_reward_index": 0.0,
|
| 1556 |
+
"dapo/kept_prompts_ratio": 0.47916667970518273,
|
| 1557 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1558 |
+
"dapo/sampling_efficiency": 42.70833333333333,
|
| 1559 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1560 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1561 |
+
"epoch": 0.09371428571428571,
|
| 1562 |
+
"grad_norm": 0.01085925567895174,
|
| 1563 |
+
"kl": 0.00018781423568725586,
|
| 1564 |
+
"learning_rate": 1.9539516087697517e-07,
|
| 1565 |
+
"loss": 0.0277,
|
| 1566 |
+
"reward": 0.7506253309547901,
|
| 1567 |
+
"reward_std": 0.9654112830758095,
|
| 1568 |
+
"step": 82
|
| 1569 |
+
},
|
| 1570 |
+
{
|
| 1571 |
+
"clip_fraction": 0.0,
|
| 1572 |
+
"completion_length": 2063.197952270508,
|
| 1573 |
+
"dapo/avg_reward_std": 0.3108914480322883,
|
| 1574 |
+
"dapo/filter_reward_index": 0.0,
|
| 1575 |
+
"dapo/kept_prompts_ratio": 0.45238096444379716,
|
| 1576 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1577 |
+
"dapo/sampling_efficiency": 47.291666666666664,
|
| 1578 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1579 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1580 |
+
"epoch": 0.09485714285714286,
|
| 1581 |
+
"grad_norm": 0.01137411966919899,
|
| 1582 |
+
"kl": 0.00018197298049926758,
|
| 1583 |
+
"learning_rate": 1.8594235253127372e-07,
|
| 1584 |
+
"loss": 0.0165,
|
| 1585 |
+
"reward": 0.6088770590722561,
|
| 1586 |
+
"reward_std": 0.9752795398235321,
|
| 1587 |
+
"step": 83
|
| 1588 |
+
},
|
| 1589 |
+
{
|
| 1590 |
+
"clip_fraction": 0.0,
|
| 1591 |
+
"completion_length": 2032.7708587646484,
|
| 1592 |
+
"dapo/avg_reward_std": 0.35138528971444993,
|
| 1593 |
+
"dapo/filter_reward_index": 0.0,
|
| 1594 |
+
"dapo/kept_prompts_ratio": 0.5000000070957911,
|
| 1595 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1596 |
+
"dapo/sampling_efficiency": 40.62499999999999,
|
| 1597 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1598 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1599 |
+
"epoch": 0.096,
|
| 1600 |
+
"grad_norm": 0.009788557887077332,
|
| 1601 |
+
"kl": 0.0001645982265472412,
|
| 1602 |
+
"learning_rate": 1.7693309235023127e-07,
|
| 1603 |
+
"loss": -0.0005,
|
| 1604 |
+
"reward": 0.6485470458865166,
|
| 1605 |
+
"reward_std": 0.8980466201901436,
|
| 1606 |
+
"step": 84
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"clip_fraction": 0.0,
|
| 1610 |
+
"completion_length": 2723.2083892822266,
|
| 1611 |
+
"dapo/avg_reward_std": 0.35491983592510223,
|
| 1612 |
+
"dapo/filter_reward_index": 0.0,
|
| 1613 |
+
"dapo/kept_prompts_ratio": 0.5500000104308128,
|
| 1614 |
+
"dapo/num_sampling_attempts": 2.5,
|
| 1615 |
+
"dapo/sampling_efficiency": 46.87499999999999,
|
| 1616 |
+
"dapo/total_prompts_processed": 15.0,
|
| 1617 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1618 |
+
"epoch": 0.09714285714285714,
|
| 1619 |
+
"grad_norm": 0.012261813506484032,
|
| 1620 |
+
"kl": 0.0002092123031616211,
|
| 1621 |
+
"learning_rate": 1.6837835672960831e-07,
|
| 1622 |
+
"loss": 0.0428,
|
| 1623 |
+
"reward": 0.769347533583641,
|
| 1624 |
+
"reward_std": 0.9622702524065971,
|
| 1625 |
+
"step": 85
|
| 1626 |
+
},
|
| 1627 |
+
{
|
| 1628 |
+
"clip_fraction": 0.0,
|
| 1629 |
+
"completion_length": 2813.6979370117188,
|
| 1630 |
+
"dapo/avg_reward_std": 0.31041908973739263,
|
| 1631 |
+
"dapo/filter_reward_index": 0.0,
|
| 1632 |
+
"dapo/kept_prompts_ratio": 0.46825397582281203,
|
| 1633 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1634 |
+
"dapo/sampling_efficiency": 53.125,
|
| 1635 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1636 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1637 |
+
"epoch": 0.09828571428571428,
|
| 1638 |
+
"grad_norm": 0.013307915069162846,
|
| 1639 |
+
"kl": 0.00022363662719726562,
|
| 1640 |
+
"learning_rate": 1.6028856829700258e-07,
|
| 1641 |
+
"loss": 0.0893,
|
| 1642 |
+
"reward": 0.7634551003575325,
|
| 1643 |
+
"reward_std": 0.9385863840579987,
|
| 1644 |
+
"step": 86
|
| 1645 |
+
},
|
| 1646 |
+
{
|
| 1647 |
+
"clip_fraction": 0.0,
|
| 1648 |
+
"completion_length": 2645.5486907958984,
|
| 1649 |
+
"dapo/avg_reward_std": 0.29486309762658747,
|
| 1650 |
+
"dapo/filter_reward_index": 0.0,
|
| 1651 |
+
"dapo/kept_prompts_ratio": 0.37931035099358396,
|
| 1652 |
+
"dapo/num_sampling_attempts": 3.625,
|
| 1653 |
+
"dapo/sampling_efficiency": 38.95833333333333,
|
| 1654 |
+
"dapo/total_prompts_processed": 21.75,
|
| 1655 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1656 |
+
"epoch": 0.09942857142857142,
|
| 1657 |
+
"grad_norm": 0.009606744162738323,
|
| 1658 |
+
"kl": 0.00017684698104858398,
|
| 1659 |
+
"learning_rate": 1.5267358321348285e-07,
|
| 1660 |
+
"loss": 0.0337,
|
| 1661 |
+
"reward": 0.6225443221628666,
|
| 1662 |
+
"reward_std": 0.9135682806372643,
|
| 1663 |
+
"step": 87
|
| 1664 |
+
},
|
| 1665 |
+
{
|
| 1666 |
+
"clip_fraction": 0.0,
|
| 1667 |
+
"completion_length": 2211.1111221313477,
|
| 1668 |
+
"dapo/avg_reward_std": 0.2131810395254029,
|
| 1669 |
+
"dapo/filter_reward_index": 0.0,
|
| 1670 |
+
"dapo/kept_prompts_ratio": 0.30092593075500595,
|
| 1671 |
+
"dapo/num_sampling_attempts": 4.5,
|
| 1672 |
+
"dapo/sampling_efficiency": 25.535714285714285,
|
| 1673 |
+
"dapo/total_prompts_processed": 27.0,
|
| 1674 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1675 |
+
"epoch": 0.10057142857142858,
|
| 1676 |
+
"grad_norm": 0.011731365695595741,
|
| 1677 |
+
"kl": 0.00017218291759490967,
|
| 1678 |
+
"learning_rate": 1.4554267916537495e-07,
|
| 1679 |
+
"loss": 0.0114,
|
| 1680 |
+
"reward": 0.574246758595109,
|
| 1681 |
+
"reward_std": 0.9149169996380806,
|
| 1682 |
+
"step": 88
|
| 1683 |
+
},
|
| 1684 |
+
{
|
| 1685 |
+
"clip_fraction": 0.0,
|
| 1686 |
+
"completion_length": 2617.9445037841797,
|
| 1687 |
+
"dapo/avg_reward_std": 0.34073091808118317,
|
| 1688 |
+
"dapo/filter_reward_index": 0.0,
|
| 1689 |
+
"dapo/kept_prompts_ratio": 0.5087719379287017,
|
| 1690 |
+
"dapo/num_sampling_attempts": 2.375,
|
| 1691 |
+
"dapo/sampling_efficiency": 47.91666666666666,
|
| 1692 |
+
"dapo/total_prompts_processed": 14.25,
|
| 1693 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1694 |
+
"epoch": 0.10171428571428572,
|
| 1695 |
+
"grad_norm": 0.013213962316513062,
|
| 1696 |
+
"kl": 0.0002383589744567871,
|
| 1697 |
+
"learning_rate": 1.3890454406082956e-07,
|
| 1698 |
+
"loss": 0.072,
|
| 1699 |
+
"reward": 0.7886459194123745,
|
| 1700 |
+
"reward_std": 0.9416129812598228,
|
| 1701 |
+
"step": 89
|
| 1702 |
+
},
|
| 1703 |
+
{
|
| 1704 |
+
"clip_fraction": 0.0,
|
| 1705 |
+
"completion_length": 2265.7743225097656,
|
| 1706 |
+
"dapo/avg_reward_std": 0.39400896430015564,
|
| 1707 |
+
"dapo/filter_reward_index": 0.0,
|
| 1708 |
+
"dapo/kept_prompts_ratio": 0.48412699145930155,
|
| 1709 |
+
"dapo/num_sampling_attempts": 2.625,
|
| 1710 |
+
"dapo/sampling_efficiency": 46.24999999999999,
|
| 1711 |
+
"dapo/total_prompts_processed": 15.75,
|
| 1712 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1713 |
+
"epoch": 0.10285714285714286,
|
| 1714 |
+
"grad_norm": 0.011279975064098835,
|
| 1715 |
+
"kl": 0.00017967820167541504,
|
| 1716 |
+
"learning_rate": 1.3276726544494571e-07,
|
| 1717 |
+
"loss": 0.0115,
|
| 1718 |
+
"reward": 0.8188270814716816,
|
| 1719 |
+
"reward_std": 0.956598699092865,
|
| 1720 |
+
"step": 90
|
| 1721 |
+
},
|
| 1722 |
+
{
|
| 1723 |
+
"clip_fraction": 0.0,
|
| 1724 |
+
"completion_length": 1751.7951850891113,
|
| 1725 |
+
"dapo/avg_reward_std": 0.346651555462317,
|
| 1726 |
+
"dapo/filter_reward_index": 0.0,
|
| 1727 |
+
"dapo/kept_prompts_ratio": 0.44696970690380444,
|
| 1728 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1729 |
+
"dapo/sampling_efficiency": 46.875,
|
| 1730 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1731 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1732 |
+
"epoch": 0.104,
|
| 1733 |
+
"grad_norm": 0.013495221734046936,
|
| 1734 |
+
"kl": 0.00012958049774169922,
|
| 1735 |
+
"learning_rate": 1.2713832064634125e-07,
|
| 1736 |
+
"loss": 0.0244,
|
| 1737 |
+
"reward": 0.7544833142310381,
|
| 1738 |
+
"reward_std": 0.920841209590435,
|
| 1739 |
+
"step": 91
|
| 1740 |
+
},
|
| 1741 |
+
{
|
| 1742 |
+
"clip_fraction": 0.0,
|
| 1743 |
+
"completion_length": 2176.5868530273438,
|
| 1744 |
+
"dapo/avg_reward_std": 0.31276301860809325,
|
| 1745 |
+
"dapo/filter_reward_index": 0.0,
|
| 1746 |
+
"dapo/kept_prompts_ratio": 0.3866666704416275,
|
| 1747 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 1748 |
+
"dapo/sampling_efficiency": 42.410714285714285,
|
| 1749 |
+
"dapo/total_prompts_processed": 18.75,
|
| 1750 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1751 |
+
"epoch": 0.10514285714285715,
|
| 1752 |
+
"grad_norm": 0.014705290086567402,
|
| 1753 |
+
"kl": 0.00018972158432006836,
|
| 1754 |
+
"learning_rate": 1.220245676671809e-07,
|
| 1755 |
+
"loss": 0.082,
|
| 1756 |
+
"reward": 0.6609778106212616,
|
| 1757 |
+
"reward_std": 0.9741540849208832,
|
| 1758 |
+
"step": 92
|
| 1759 |
+
},
|
| 1760 |
+
{
|
| 1761 |
+
"clip_fraction": 0.0,
|
| 1762 |
+
"completion_length": 2418.0035095214844,
|
| 1763 |
+
"dapo/avg_reward_std": 0.3533540232615037,
|
| 1764 |
+
"dapo/filter_reward_index": 0.0,
|
| 1765 |
+
"dapo/kept_prompts_ratio": 0.45454546131870965,
|
| 1766 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1767 |
+
"dapo/sampling_efficiency": 50.416666666666664,
|
| 1768 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1769 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1770 |
+
"epoch": 0.10628571428571429,
|
| 1771 |
+
"grad_norm": 0.014526835642755032,
|
| 1772 |
+
"kl": 0.00022083520889282227,
|
| 1773 |
+
"learning_rate": 1.1743223682775649e-07,
|
| 1774 |
+
"loss": 0.0467,
|
| 1775 |
+
"reward": 0.6240662466734648,
|
| 1776 |
+
"reward_std": 0.9587830454111099,
|
| 1777 |
+
"step": 93
|
| 1778 |
+
},
|
| 1779 |
+
{
|
| 1780 |
+
"clip_fraction": 0.0,
|
| 1781 |
+
"completion_length": 1759.4409713745117,
|
| 1782 |
+
"dapo/avg_reward_std": 0.31654878084858257,
|
| 1783 |
+
"dapo/filter_reward_index": 0.0,
|
| 1784 |
+
"dapo/kept_prompts_ratio": 0.4166666741172473,
|
| 1785 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1786 |
+
"dapo/sampling_efficiency": 47.70833333333333,
|
| 1787 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1788 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1789 |
+
"epoch": 0.10742857142857143,
|
| 1790 |
+
"grad_norm": 0.011724472045898438,
|
| 1791 |
+
"kl": 0.00012111663818359375,
|
| 1792 |
+
"learning_rate": 1.1336692317580158e-07,
|
| 1793 |
+
"loss": -0.0008,
|
| 1794 |
+
"reward": 0.8961930721998215,
|
| 1795 |
+
"reward_std": 0.9275476858019829,
|
| 1796 |
+
"step": 94
|
| 1797 |
+
},
|
| 1798 |
+
{
|
| 1799 |
+
"clip_fraction": 0.0,
|
| 1800 |
+
"completion_length": 1968.3958435058594,
|
| 1801 |
+
"dapo/avg_reward_std": 0.31933523178100587,
|
| 1802 |
+
"dapo/filter_reward_index": 0.0,
|
| 1803 |
+
"dapo/kept_prompts_ratio": 0.36000000715255737,
|
| 1804 |
+
"dapo/num_sampling_attempts": 3.125,
|
| 1805 |
+
"dapo/sampling_efficiency": 41.666666666666664,
|
| 1806 |
+
"dapo/total_prompts_processed": 18.75,
|
| 1807 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1808 |
+
"epoch": 0.10857142857142857,
|
| 1809 |
+
"grad_norm": 0.012760731391608715,
|
| 1810 |
+
"kl": 0.00015205144882202148,
|
| 1811 |
+
"learning_rate": 1.0983357966978745e-07,
|
| 1812 |
+
"loss": 0.0303,
|
| 1813 |
+
"reward": 0.7966429069638252,
|
| 1814 |
+
"reward_std": 0.9104023575782776,
|
| 1815 |
+
"step": 95
|
| 1816 |
+
},
|
| 1817 |
+
{
|
| 1818 |
+
"clip_fraction": 0.0,
|
| 1819 |
+
"completion_length": 1705.9930610656738,
|
| 1820 |
+
"dapo/avg_reward_std": 0.26930796217035363,
|
| 1821 |
+
"dapo/filter_reward_index": 0.0,
|
| 1822 |
+
"dapo/kept_prompts_ratio": 0.38888889771920665,
|
| 1823 |
+
"dapo/num_sampling_attempts": 3.375,
|
| 1824 |
+
"dapo/sampling_efficiency": 48.4375,
|
| 1825 |
+
"dapo/total_prompts_processed": 20.25,
|
| 1826 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1827 |
+
"epoch": 0.10971428571428571,
|
| 1828 |
+
"grad_norm": 0.016185246407985687,
|
| 1829 |
+
"kl": 0.00014796853065490723,
|
| 1830 |
+
"learning_rate": 1.068365111445064e-07,
|
| 1831 |
+
"loss": -0.0016,
|
| 1832 |
+
"reward": 0.7683778572827578,
|
| 1833 |
+
"reward_std": 0.9466121271252632,
|
| 1834 |
+
"step": 96
|
| 1835 |
+
},
|
| 1836 |
+
{
|
| 1837 |
+
"clip_fraction": 0.0,
|
| 1838 |
+
"completion_length": 2056.079864501953,
|
| 1839 |
+
"dapo/avg_reward_std": 0.3310448744080283,
|
| 1840 |
+
"dapo/filter_reward_index": 0.0,
|
| 1841 |
+
"dapo/kept_prompts_ratio": 0.48484849387949164,
|
| 1842 |
+
"dapo/num_sampling_attempts": 2.75,
|
| 1843 |
+
"dapo/sampling_efficiency": 51.785714285714285,
|
| 1844 |
+
"dapo/total_prompts_processed": 16.5,
|
| 1845 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1846 |
+
"epoch": 0.11085714285714286,
|
| 1847 |
+
"grad_norm": 0.010300490073859692,
|
| 1848 |
+
"kl": 0.00016963481903076172,
|
| 1849 |
+
"learning_rate": 1.0437936906629334e-07,
|
| 1850 |
+
"loss": 0.0027,
|
| 1851 |
+
"reward": 0.7596820928156376,
|
| 1852 |
+
"reward_std": 0.9540099799633026,
|
| 1853 |
+
"step": 97
|
| 1854 |
+
},
|
| 1855 |
+
{
|
| 1856 |
+
"clip_fraction": 0.0,
|
| 1857 |
+
"completion_length": 2592.8403244018555,
|
| 1858 |
+
"dapo/avg_reward_std": 0.21406691299902425,
|
| 1859 |
+
"dapo/filter_reward_index": 0.0,
|
| 1860 |
+
"dapo/kept_prompts_ratio": 0.3018018116016646,
|
| 1861 |
+
"dapo/num_sampling_attempts": 4.625,
|
| 1862 |
+
"dapo/sampling_efficiency": 30.376984126984123,
|
| 1863 |
+
"dapo/total_prompts_processed": 27.75,
|
| 1864 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1865 |
+
"epoch": 0.112,
|
| 1866 |
+
"grad_norm": 0.01034973282366991,
|
| 1867 |
+
"kl": 0.000193670392036438,
|
| 1868 |
+
"learning_rate": 1.0246514708427701e-07,
|
| 1869 |
+
"loss": 0.0254,
|
| 1870 |
+
"reward": 0.7206093966960907,
|
| 1871 |
+
"reward_std": 0.9074158370494843,
|
| 1872 |
+
"step": 98
|
| 1873 |
+
},
|
| 1874 |
+
{
|
| 1875 |
+
"clip_fraction": 0.0,
|
| 1876 |
+
"completion_length": 2686.343780517578,
|
| 1877 |
+
"dapo/avg_reward_std": 0.24782394810959144,
|
| 1878 |
+
"dapo/filter_reward_index": 0.0,
|
| 1879 |
+
"dapo/kept_prompts_ratio": 0.35802469926851765,
|
| 1880 |
+
"dapo/num_sampling_attempts": 3.375,
|
| 1881 |
+
"dapo/sampling_efficiency": 44.513888888888886,
|
| 1882 |
+
"dapo/total_prompts_processed": 20.25,
|
| 1883 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1884 |
+
"epoch": 0.11314285714285714,
|
| 1885 |
+
"grad_norm": 0.011502859182655811,
|
| 1886 |
+
"kl": 0.00023734569549560547,
|
| 1887 |
+
"learning_rate": 1.0109617738307911e-07,
|
| 1888 |
+
"loss": 0.0346,
|
| 1889 |
+
"reward": 0.6300379456952214,
|
| 1890 |
+
"reward_std": 0.9057611152529716,
|
| 1891 |
+
"step": 99
|
| 1892 |
+
},
|
| 1893 |
+
{
|
| 1894 |
+
"clip_fraction": 0.0,
|
| 1895 |
+
"completion_length": 2050.166664123535,
|
| 1896 |
+
"dapo/avg_reward_std": 0.3082110931475957,
|
| 1897 |
+
"dapo/filter_reward_index": 0.0,
|
| 1898 |
+
"dapo/kept_prompts_ratio": 0.43055556404093903,
|
| 1899 |
+
"dapo/num_sampling_attempts": 3.0,
|
| 1900 |
+
"dapo/sampling_efficiency": 44.166666666666664,
|
| 1901 |
+
"dapo/total_prompts_processed": 18.0,
|
| 1902 |
+
"dapo/valid_prompts_collected": 6.0,
|
| 1903 |
+
"epoch": 0.11428571428571428,
|
| 1904 |
+
"grad_norm": 0.015181603841483593,
|
| 1905 |
+
"kl": 0.00023311376571655273,
|
| 1906 |
+
"learning_rate": 1.002741278414069e-07,
|
| 1907 |
+
"loss": 0.0389,
|
| 1908 |
+
"reward": 0.7550710588693619,
|
| 1909 |
+
"reward_std": 0.9816905185580254,
|
| 1910 |
+
"step": 100
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"epoch": 0.11428571428571428,
|
| 1914 |
+
"step": 100,
|
| 1915 |
+
"total_flos": 0.0,
|
| 1916 |
+
"train_loss": 0.03280465058982372,
|
| 1917 |
+
"train_runtime": 132752.8895,
|
| 1918 |
+
"train_samples_per_second": 0.036,
|
| 1919 |
+
"train_steps_per_second": 0.001
|
| 1920 |
+
}
|
| 1921 |
+
],
|
| 1922 |
+
"logging_steps": 1,
|
| 1923 |
+
"max_steps": 100,
|
| 1924 |
+
"num_input_tokens_seen": 0,
|
| 1925 |
+
"num_train_epochs": 1,
|
| 1926 |
+
"save_steps": 10,
|
| 1927 |
+
"stateful_callbacks": {
|
| 1928 |
+
"TrainerControl": {
|
| 1929 |
+
"args": {
|
| 1930 |
+
"should_epoch_stop": false,
|
| 1931 |
+
"should_evaluate": false,
|
| 1932 |
+
"should_log": false,
|
| 1933 |
+
"should_save": true,
|
| 1934 |
+
"should_training_stop": true
|
| 1935 |
+
},
|
| 1936 |
+
"attributes": {}
|
| 1937 |
+
}
|
| 1938 |
+
},
|
| 1939 |
+
"total_flos": 0.0,
|
| 1940 |
+
"train_batch_size": 6,
|
| 1941 |
+
"trial_name": null,
|
| 1942 |
+
"trial_params": null
|
| 1943 |
+
}
|