Upload GRPO-trained humanlike essay model
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +5 -0
- README.md +68 -0
- checkpoint-100/README.md +202 -0
- checkpoint-100/adapter_config.json +39 -0
- checkpoint-100/adapter_model.safetensors +3 -0
- checkpoint-100/added_tokens.json +28 -0
- checkpoint-100/chat_template.jinja +89 -0
- checkpoint-100/merges.txt +0 -0
- checkpoint-100/optimizer.pt +3 -0
- checkpoint-100/rng_state.pth +3 -0
- checkpoint-100/scheduler.pt +3 -0
- checkpoint-100/special_tokens_map.json +25 -0
- checkpoint-100/tokenizer.json +3 -0
- checkpoint-100/tokenizer_config.json +239 -0
- checkpoint-100/trainer_state.json +694 -0
- checkpoint-100/training_args.bin +3 -0
- checkpoint-100/vocab.json +0 -0
- checkpoint-150/README.md +202 -0
- checkpoint-150/adapter_config.json +39 -0
- checkpoint-150/adapter_model.safetensors +3 -0
- checkpoint-150/added_tokens.json +28 -0
- checkpoint-150/chat_template.jinja +89 -0
- checkpoint-150/merges.txt +0 -0
- checkpoint-150/optimizer.pt +3 -0
- checkpoint-150/rng_state.pth +3 -0
- checkpoint-150/scheduler.pt +3 -0
- checkpoint-150/special_tokens_map.json +25 -0
- checkpoint-150/tokenizer.json +3 -0
- checkpoint-150/tokenizer_config.json +239 -0
- checkpoint-150/trainer_state.json +1024 -0
- checkpoint-150/training_args.bin +3 -0
- checkpoint-150/vocab.json +0 -0
- checkpoint-200/README.md +202 -0
- checkpoint-200/adapter_config.json +39 -0
- checkpoint-200/adapter_model.safetensors +3 -0
- checkpoint-200/added_tokens.json +28 -0
- checkpoint-200/chat_template.jinja +89 -0
- checkpoint-200/merges.txt +0 -0
- checkpoint-200/optimizer.pt +3 -0
- checkpoint-200/rng_state.pth +3 -0
- checkpoint-200/scheduler.pt +3 -0
- checkpoint-200/special_tokens_map.json +25 -0
- checkpoint-200/tokenizer.json +3 -0
- checkpoint-200/tokenizer_config.json +239 -0
- checkpoint-200/trainer_state.json +1354 -0
- checkpoint-200/training_args.bin +3 -0
- checkpoint-200/vocab.json +0 -0
- checkpoint-250/README.md +202 -0
- checkpoint-250/adapter_config.json +39 -0
- checkpoint-250/adapter_model.safetensors +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
checkpoint-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-150/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
checkpoint-250/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
checkpoint-50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-14B
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: qwen3grpo_humanlike2
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- grpo
|
| 8 |
+
- trl
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for qwen3grpo_humanlike2
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [Qwen/Qwen3-14B](https://huggingface.co/Qwen/Qwen3-14B).
|
| 15 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 16 |
+
|
| 17 |
+
## Quick start
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 23 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 25 |
+
print(output["generated_text"])
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.19.0
|
| 38 |
+
- Transformers: 4.53.0
|
| 39 |
+
- Pytorch: 2.8.0.dev20250605+cu128
|
| 40 |
+
- Datasets: 3.6.0
|
| 41 |
+
- Tokenizers: 0.21.2
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
Cite GRPO as:
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@article{zhihong2024deepseekmath,
|
| 49 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
| 50 |
+
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
|
| 51 |
+
year = 2024,
|
| 52 |
+
eprint = {arXiv:2402.03300},
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Cite TRL as:
|
| 58 |
+
|
| 59 |
+
```bibtex
|
| 60 |
+
@misc{vonwerra2022trl,
|
| 61 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 62 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 63 |
+
year = 2020,
|
| 64 |
+
journal = {GitHub repository},
|
| 65 |
+
publisher = {GitHub},
|
| 66 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 67 |
+
}
|
| 68 |
+
```
|
checkpoint-100/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-14B
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.15.2
|
checkpoint-100/adapter_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "Qwen/Qwen3-14B",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 32,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 32,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"down_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"q_proj",
|
| 33 |
+
"up_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_rslora": false
|
| 39 |
+
}
|
checkpoint-100/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a35a8cabe39461870377385fea5f55e71b19cf6b26b002ee7a8cfcb7a5506382
|
| 3 |
+
size 513877864
|
checkpoint-100/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-100/chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
checkpoint-100/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-100/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:077c99dc2d17214dab84b7b04bfa97eaf5a643ec5c6d97101dea300f2221f9f6
|
| 3 |
+
size 1028078067
|
checkpoint-100/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0bd58d85c322dd61c8790fb097b34d015312b627d02ce2732e86d135d34ba5a
|
| 3 |
+
size 14645
|
checkpoint-100/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff23d2c8d0500b3c5785fce2b8a14536ee63969efedcfdeca4bc909dea166101
|
| 3 |
+
size 1465
|
checkpoint-100/special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|im_end|>"
|
| 25 |
+
}
|
checkpoint-100/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
|
| 3 |
+
size 11422818
|
checkpoint-100/tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 131072,
|
| 235 |
+
"pad_token": "<|im_end|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-100/trainer_state.json
ADDED
|
@@ -0,0 +1,694 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.0018244845831052727,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 100,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 16 |
+
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 620.2,
|
| 20 |
+
"completions/max_terminated_length": 620.2,
|
| 21 |
+
"completions/mean_length": 536.3875,
|
| 22 |
+
"completions/mean_terminated_length": 536.3875,
|
| 23 |
+
"completions/min_length": 455.6,
|
| 24 |
+
"completions/min_terminated_length": 455.6,
|
| 25 |
+
"epoch": 9.122422915526363e-05,
|
| 26 |
+
"frac_reward_zero_std": 0.0,
|
| 27 |
+
"grad_norm": 0.06800810992717743,
|
| 28 |
+
"learning_rate": 2e-05,
|
| 29 |
+
"loss": -0.0026,
|
| 30 |
+
"num_tokens": 48111.0,
|
| 31 |
+
"reward": 2.393585443496704,
|
| 32 |
+
"reward_std": 0.14288972318172455,
|
| 33 |
+
"rewards/reward_humanlike/mean": -0.003280111402273178,
|
| 34 |
+
"rewards/reward_humanlike/std": 0.002425189537461847,
|
| 35 |
+
"rewards/reward_nonslop/mean": 0.45034117698669435,
|
| 36 |
+
"rewards/reward_nonslop/std": 0.021841670200228692,
|
| 37 |
+
"rewards/reward_paragraph_structure/mean": 0.9998971700668335,
|
| 38 |
+
"rewards/reward_paragraph_structure/std": 0.00036894355434924364,
|
| 39 |
+
"rewards/reward_readability_flesch/mean": 0.5846633613109589,
|
| 40 |
+
"rewards/reward_readability_flesch/std": 0.11768133006989956,
|
| 41 |
+
"rewards/reward_variance_humanlike/mean": 0.36196385622024535,
|
| 42 |
+
"rewards/reward_variance_humanlike/std": 0.036638665944337845,
|
| 43 |
+
"step": 5
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"clip_ratio/high_max": 0.0,
|
| 47 |
+
"clip_ratio/high_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_mean": 0.0,
|
| 49 |
+
"clip_ratio/low_min": 0.0,
|
| 50 |
+
"clip_ratio/region_mean": 0.0,
|
| 51 |
+
"completions/clipped_ratio": 0.0,
|
| 52 |
+
"completions/max_length": 646.0,
|
| 53 |
+
"completions/max_terminated_length": 646.0,
|
| 54 |
+
"completions/mean_length": 551.5,
|
| 55 |
+
"completions/mean_terminated_length": 551.5,
|
| 56 |
+
"completions/min_length": 446.2,
|
| 57 |
+
"completions/min_terminated_length": 446.2,
|
| 58 |
+
"epoch": 0.00018244845831052726,
|
| 59 |
+
"frac_reward_zero_std": 0.0,
|
| 60 |
+
"grad_norm": 0.07684256136417389,
|
| 61 |
+
"learning_rate": 2e-05,
|
| 62 |
+
"loss": 0.0074,
|
| 63 |
+
"num_tokens": 97303.0,
|
| 64 |
+
"reward": 2.391454339027405,
|
| 65 |
+
"reward_std": 0.1808932200074196,
|
| 66 |
+
"rewards/reward_humanlike/mean": -0.0016780316829681397,
|
| 67 |
+
"rewards/reward_humanlike/std": 0.014642862777691334,
|
| 68 |
+
"rewards/reward_nonslop/mean": 0.44268596172332764,
|
| 69 |
+
"rewards/reward_nonslop/std": 0.028079804033041,
|
| 70 |
+
"rewards/reward_paragraph_structure/mean": 1.0,
|
| 71 |
+
"rewards/reward_paragraph_structure/std": 0.0,
|
| 72 |
+
"rewards/reward_readability_flesch/mean": 0.57281613945961,
|
| 73 |
+
"rewards/reward_readability_flesch/std": 0.16779391318559647,
|
| 74 |
+
"rewards/reward_variance_humanlike/mean": 0.3776302635669708,
|
| 75 |
+
"rewards/reward_variance_humanlike/std": 0.045258138328790665,
|
| 76 |
+
"step": 10
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"clip_ratio/high_max": 0.0,
|
| 80 |
+
"clip_ratio/high_mean": 0.0,
|
| 81 |
+
"clip_ratio/low_mean": 0.0,
|
| 82 |
+
"clip_ratio/low_min": 0.0,
|
| 83 |
+
"clip_ratio/region_mean": 0.0,
|
| 84 |
+
"completions/clipped_ratio": 0.0,
|
| 85 |
+
"completions/max_length": 598.0,
|
| 86 |
+
"completions/max_terminated_length": 598.0,
|
| 87 |
+
"completions/mean_length": 516.1125,
|
| 88 |
+
"completions/mean_terminated_length": 516.1125,
|
| 89 |
+
"completions/min_length": 431.6,
|
| 90 |
+
"completions/min_terminated_length": 431.6,
|
| 91 |
+
"epoch": 0.0002736726874657909,
|
| 92 |
+
"frac_reward_zero_std": 0.0,
|
| 93 |
+
"grad_norm": 0.07912639528512955,
|
| 94 |
+
"learning_rate": 2e-05,
|
| 95 |
+
"loss": 0.0026,
|
| 96 |
+
"num_tokens": 143712.0,
|
| 97 |
+
"reward": 2.121282529830933,
|
| 98 |
+
"reward_std": 0.19594088345766067,
|
| 99 |
+
"rewards/reward_humanlike/mean": -0.005437415838241577,
|
| 100 |
+
"rewards/reward_humanlike/std": 0.0020546794403344393,
|
| 101 |
+
"rewards/reward_nonslop/mean": 0.44375383853912354,
|
| 102 |
+
"rewards/reward_nonslop/std": 0.025456106290221214,
|
| 103 |
+
"rewards/reward_paragraph_structure/mean": 0.9997280359268188,
|
| 104 |
+
"rewards/reward_paragraph_structure/std": 0.001087829563766718,
|
| 105 |
+
"rewards/reward_readability_flesch/mean": 0.340261435508728,
|
| 106 |
+
"rewards/reward_readability_flesch/std": 0.17545561231672763,
|
| 107 |
+
"rewards/reward_variance_humanlike/mean": 0.3429765820503235,
|
| 108 |
+
"rewards/reward_variance_humanlike/std": 0.04073530249297619,
|
| 109 |
+
"step": 15
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"clip_ratio/high_max": 0.0,
|
| 113 |
+
"clip_ratio/high_mean": 0.0,
|
| 114 |
+
"clip_ratio/low_mean": 0.0,
|
| 115 |
+
"clip_ratio/low_min": 0.0,
|
| 116 |
+
"clip_ratio/region_mean": 0.0,
|
| 117 |
+
"completions/clipped_ratio": 0.0,
|
| 118 |
+
"completions/max_length": 632.4,
|
| 119 |
+
"completions/max_terminated_length": 632.4,
|
| 120 |
+
"completions/mean_length": 511.4,
|
| 121 |
+
"completions/mean_terminated_length": 511.4,
|
| 122 |
+
"completions/min_length": 387.0,
|
| 123 |
+
"completions/min_terminated_length": 387.0,
|
| 124 |
+
"epoch": 0.00036489691662105453,
|
| 125 |
+
"frac_reward_zero_std": 0.0,
|
| 126 |
+
"grad_norm": 0.08999043703079224,
|
| 127 |
+
"learning_rate": 2e-05,
|
| 128 |
+
"loss": 0.0183,
|
| 129 |
+
"num_tokens": 189696.0,
|
| 130 |
+
"reward": 2.6498445510864257,
|
| 131 |
+
"reward_std": 0.2029375523328781,
|
| 132 |
+
"rewards/reward_humanlike/mean": 0.00019632279872894287,
|
| 133 |
+
"rewards/reward_humanlike/std": 0.006884497962892056,
|
| 134 |
+
"rewards/reward_nonslop/mean": 0.4884443640708923,
|
| 135 |
+
"rewards/reward_nonslop/std": 0.0355165209621191,
|
| 136 |
+
"rewards/reward_paragraph_structure/mean": 0.9939258456230163,
|
| 137 |
+
"rewards/reward_paragraph_structure/std": 0.023617163486778735,
|
| 138 |
+
"rewards/reward_readability_flesch/mean": 0.8020971655845642,
|
| 139 |
+
"rewards/reward_readability_flesch/std": 0.17971589416265488,
|
| 140 |
+
"rewards/reward_variance_humanlike/mean": 0.3651808500289917,
|
| 141 |
+
"rewards/reward_variance_humanlike/std": 0.042153649032115936,
|
| 142 |
+
"step": 20
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"clip_ratio/high_max": 0.0,
|
| 146 |
+
"clip_ratio/high_mean": 0.0,
|
| 147 |
+
"clip_ratio/low_mean": 0.0,
|
| 148 |
+
"clip_ratio/low_min": 0.0,
|
| 149 |
+
"clip_ratio/region_mean": 0.0,
|
| 150 |
+
"completions/clipped_ratio": 0.0,
|
| 151 |
+
"completions/max_length": 587.0,
|
| 152 |
+
"completions/max_terminated_length": 587.0,
|
| 153 |
+
"completions/mean_length": 457.2375,
|
| 154 |
+
"completions/mean_terminated_length": 457.2375,
|
| 155 |
+
"completions/min_length": 343.8,
|
| 156 |
+
"completions/min_terminated_length": 343.8,
|
| 157 |
+
"epoch": 0.0004561211457763182,
|
| 158 |
+
"frac_reward_zero_std": 0.0,
|
| 159 |
+
"grad_norm": 0.09677507728338242,
|
| 160 |
+
"learning_rate": 2e-05,
|
| 161 |
+
"loss": -0.0021,
|
| 162 |
+
"num_tokens": 231427.0,
|
| 163 |
+
"reward": 2.66627516746521,
|
| 164 |
+
"reward_std": 0.18921945840120316,
|
| 165 |
+
"rewards/reward_humanlike/mean": 0.020775890350341795,
|
| 166 |
+
"rewards/reward_humanlike/std": 0.04260522716213018,
|
| 167 |
+
"rewards/reward_nonslop/mean": 0.4985057771205902,
|
| 168 |
+
"rewards/reward_nonslop/std": 0.03064997084438801,
|
| 169 |
+
"rewards/reward_paragraph_structure/mean": 0.977533757686615,
|
| 170 |
+
"rewards/reward_paragraph_structure/std": 0.059077487885952,
|
| 171 |
+
"rewards/reward_readability_flesch/mean": 0.7888182640075684,
|
| 172 |
+
"rewards/reward_readability_flesch/std": 0.1475653052330017,
|
| 173 |
+
"rewards/reward_variance_humanlike/mean": 0.380641496181488,
|
| 174 |
+
"rewards/reward_variance_humanlike/std": 0.04412947595119476,
|
| 175 |
+
"step": 25
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"clip_ratio/high_max": 0.0,
|
| 179 |
+
"clip_ratio/high_mean": 0.0,
|
| 180 |
+
"clip_ratio/low_mean": 0.0,
|
| 181 |
+
"clip_ratio/low_min": 0.0,
|
| 182 |
+
"clip_ratio/region_mean": 0.0,
|
| 183 |
+
"completions/clipped_ratio": 0.0,
|
| 184 |
+
"completions/max_length": 597.6,
|
| 185 |
+
"completions/max_terminated_length": 597.6,
|
| 186 |
+
"completions/mean_length": 497.3375,
|
| 187 |
+
"completions/mean_terminated_length": 497.3375,
|
| 188 |
+
"completions/min_length": 395.4,
|
| 189 |
+
"completions/min_terminated_length": 395.4,
|
| 190 |
+
"epoch": 0.0005473453749315818,
|
| 191 |
+
"frac_reward_zero_std": 0.0,
|
| 192 |
+
"grad_norm": 0.08108917623758316,
|
| 193 |
+
"learning_rate": 2e-05,
|
| 194 |
+
"loss": 0.0017,
|
| 195 |
+
"num_tokens": 276318.0,
|
| 196 |
+
"reward": 2.7883635997772216,
|
| 197 |
+
"reward_std": 0.17138139009475709,
|
| 198 |
+
"rewards/reward_humanlike/mean": 0.11761673018336297,
|
| 199 |
+
"rewards/reward_humanlike/std": 0.08830970991402864,
|
| 200 |
+
"rewards/reward_nonslop/mean": 0.5173340082168579,
|
| 201 |
+
"rewards/reward_nonslop/std": 0.029454480484128,
|
| 202 |
+
"rewards/reward_paragraph_structure/mean": 0.9722555875778198,
|
| 203 |
+
"rewards/reward_paragraph_structure/std": 0.04261327683925629,
|
| 204 |
+
"rewards/reward_readability_flesch/mean": 0.7764949321746826,
|
| 205 |
+
"rewards/reward_readability_flesch/std": 0.10386961698532104,
|
| 206 |
+
"rewards/reward_variance_humanlike/mean": 0.4046623885631561,
|
| 207 |
+
"rewards/reward_variance_humanlike/std": 0.045019736886024474,
|
| 208 |
+
"step": 30
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"clip_ratio/high_max": 0.0,
|
| 212 |
+
"clip_ratio/high_mean": 0.0,
|
| 213 |
+
"clip_ratio/low_mean": 0.0,
|
| 214 |
+
"clip_ratio/low_min": 0.0,
|
| 215 |
+
"clip_ratio/region_mean": 0.0,
|
| 216 |
+
"completions/clipped_ratio": 0.0,
|
| 217 |
+
"completions/max_length": 617.4,
|
| 218 |
+
"completions/max_terminated_length": 617.4,
|
| 219 |
+
"completions/mean_length": 523.825,
|
| 220 |
+
"completions/mean_terminated_length": 523.825,
|
| 221 |
+
"completions/min_length": 409.6,
|
| 222 |
+
"completions/min_terminated_length": 409.6,
|
| 223 |
+
"epoch": 0.0006385696040868455,
|
| 224 |
+
"frac_reward_zero_std": 0.0,
|
| 225 |
+
"grad_norm": 0.08894547820091248,
|
| 226 |
+
"learning_rate": 2e-05,
|
| 227 |
+
"loss": -0.0081,
|
| 228 |
+
"num_tokens": 323376.0,
|
| 229 |
+
"reward": 2.7335947513580323,
|
| 230 |
+
"reward_std": 0.12913600355386734,
|
| 231 |
+
"rewards/reward_humanlike/mean": 0.044519555568695066,
|
| 232 |
+
"rewards/reward_humanlike/std": 0.051969482377171514,
|
| 233 |
+
"rewards/reward_nonslop/mean": 0.5143645763397217,
|
| 234 |
+
"rewards/reward_nonslop/std": 0.024226398020982743,
|
| 235 |
+
"rewards/reward_paragraph_structure/mean": 0.9907094240188599,
|
| 236 |
+
"rewards/reward_paragraph_structure/std": 0.023819129168987273,
|
| 237 |
+
"rewards/reward_readability_flesch/mean": 0.7974974989891053,
|
| 238 |
+
"rewards/reward_readability_flesch/std": 0.12351922243833542,
|
| 239 |
+
"rewards/reward_variance_humanlike/mean": 0.38650373220443723,
|
| 240 |
+
"rewards/reward_variance_humanlike/std": 0.05399425402283668,
|
| 241 |
+
"step": 35
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"clip_ratio/high_max": 0.0,
|
| 245 |
+
"clip_ratio/high_mean": 0.0,
|
| 246 |
+
"clip_ratio/low_mean": 0.0,
|
| 247 |
+
"clip_ratio/low_min": 0.0,
|
| 248 |
+
"clip_ratio/region_mean": 0.0,
|
| 249 |
+
"completions/clipped_ratio": 0.0,
|
| 250 |
+
"completions/max_length": 846.8,
|
| 251 |
+
"completions/max_terminated_length": 846.8,
|
| 252 |
+
"completions/mean_length": 555.05,
|
| 253 |
+
"completions/mean_terminated_length": 555.05,
|
| 254 |
+
"completions/min_length": 432.2,
|
| 255 |
+
"completions/min_terminated_length": 432.2,
|
| 256 |
+
"epoch": 0.0007297938332421091,
|
| 257 |
+
"frac_reward_zero_std": 0.0,
|
| 258 |
+
"grad_norm": 0.089969202876091,
|
| 259 |
+
"learning_rate": 2e-05,
|
| 260 |
+
"loss": 0.0135,
|
| 261 |
+
"num_tokens": 372868.0,
|
| 262 |
+
"reward": 2.6368720293045045,
|
| 263 |
+
"reward_std": 0.17332236915826799,
|
| 264 |
+
"rewards/reward_humanlike/mean": 0.05930730104446411,
|
| 265 |
+
"rewards/reward_humanlike/std": 0.04687353018671274,
|
| 266 |
+
"rewards/reward_nonslop/mean": 0.4885416626930237,
|
| 267 |
+
"rewards/reward_nonslop/std": 0.03745536170899868,
|
| 268 |
+
"rewards/reward_paragraph_structure/mean": 0.890105378627777,
|
| 269 |
+
"rewards/reward_paragraph_structure/std": 0.09538187831640244,
|
| 270 |
+
"rewards/reward_readability_flesch/mean": 0.7819342494010926,
|
| 271 |
+
"rewards/reward_readability_flesch/std": 0.11071507334709167,
|
| 272 |
+
"rewards/reward_variance_humanlike/mean": 0.4169835090637207,
|
| 273 |
+
"rewards/reward_variance_humanlike/std": 0.0439291026443243,
|
| 274 |
+
"step": 40
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"clip_ratio/high_max": 0.0,
|
| 278 |
+
"clip_ratio/high_mean": 0.0,
|
| 279 |
+
"clip_ratio/low_mean": 0.0,
|
| 280 |
+
"clip_ratio/low_min": 0.0,
|
| 281 |
+
"clip_ratio/region_mean": 0.0,
|
| 282 |
+
"completions/clipped_ratio": 0.0,
|
| 283 |
+
"completions/max_length": 613.2,
|
| 284 |
+
"completions/max_terminated_length": 613.2,
|
| 285 |
+
"completions/mean_length": 505.075,
|
| 286 |
+
"completions/mean_terminated_length": 505.075,
|
| 287 |
+
"completions/min_length": 374.0,
|
| 288 |
+
"completions/min_terminated_length": 374.0,
|
| 289 |
+
"epoch": 0.0008210180623973727,
|
| 290 |
+
"frac_reward_zero_std": 0.0,
|
| 291 |
+
"grad_norm": 0.0890246331691742,
|
| 292 |
+
"learning_rate": 2e-05,
|
| 293 |
+
"loss": 0.0102,
|
| 294 |
+
"num_tokens": 418490.0,
|
| 295 |
+
"reward": 2.6527084350585937,
|
| 296 |
+
"reward_std": 0.16761653274297714,
|
| 297 |
+
"rewards/reward_humanlike/mean": 0.08072967529296875,
|
| 298 |
+
"rewards/reward_humanlike/std": 0.06607948099263013,
|
| 299 |
+
"rewards/reward_nonslop/mean": 0.5106609463691711,
|
| 300 |
+
"rewards/reward_nonslop/std": 0.0351794958114624,
|
| 301 |
+
"rewards/reward_paragraph_structure/mean": 0.9813281297683716,
|
| 302 |
+
"rewards/reward_paragraph_structure/std": 0.05892824307084084,
|
| 303 |
+
"rewards/reward_readability_flesch/mean": 0.6913772821426392,
|
| 304 |
+
"rewards/reward_readability_flesch/std": 0.13855507373809814,
|
| 305 |
+
"rewards/reward_variance_humanlike/mean": 0.38861238956451416,
|
| 306 |
+
"rewards/reward_variance_humanlike/std": 0.039696966856718065,
|
| 307 |
+
"step": 45
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completions/clipped_ratio": 0.0,
|
| 316 |
+
"completions/max_length": 607.2,
|
| 317 |
+
"completions/max_terminated_length": 607.2,
|
| 318 |
+
"completions/mean_length": 500.2125,
|
| 319 |
+
"completions/mean_terminated_length": 500.2125,
|
| 320 |
+
"completions/min_length": 407.0,
|
| 321 |
+
"completions/min_terminated_length": 407.0,
|
| 322 |
+
"epoch": 0.0009122422915526364,
|
| 323 |
+
"frac_reward_zero_std": 0.0,
|
| 324 |
+
"grad_norm": 0.07912778109312057,
|
| 325 |
+
"learning_rate": 2e-05,
|
| 326 |
+
"loss": 0.005,
|
| 327 |
+
"num_tokens": 463659.0,
|
| 328 |
+
"reward": 2.753040885925293,
|
| 329 |
+
"reward_std": 0.136872561275959,
|
| 330 |
+
"rewards/reward_humanlike/mean": 0.03859691172838211,
|
| 331 |
+
"rewards/reward_humanlike/std": 0.035087807662785055,
|
| 332 |
+
"rewards/reward_nonslop/mean": 0.5123575925827026,
|
| 333 |
+
"rewards/reward_nonslop/std": 0.02690323181450367,
|
| 334 |
+
"rewards/reward_paragraph_structure/mean": 0.992300295829773,
|
| 335 |
+
"rewards/reward_paragraph_structure/std": 0.030798836052417754,
|
| 336 |
+
"rewards/reward_readability_flesch/mean": 0.8399829745292664,
|
| 337 |
+
"rewards/reward_readability_flesch/std": 0.11433027684688568,
|
| 338 |
+
"rewards/reward_variance_humanlike/mean": 0.3698031187057495,
|
| 339 |
+
"rewards/reward_variance_humanlike/std": 0.04352555349469185,
|
| 340 |
+
"step": 50
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"clip_ratio/high_max": 0.0,
|
| 344 |
+
"clip_ratio/high_mean": 0.0,
|
| 345 |
+
"clip_ratio/low_mean": 0.0,
|
| 346 |
+
"clip_ratio/low_min": 0.0,
|
| 347 |
+
"clip_ratio/region_mean": 0.0,
|
| 348 |
+
"completions/clipped_ratio": 0.0,
|
| 349 |
+
"completions/max_length": 562.0,
|
| 350 |
+
"completions/max_terminated_length": 562.0,
|
| 351 |
+
"completions/mean_length": 444.2875,
|
| 352 |
+
"completions/mean_terminated_length": 444.2875,
|
| 353 |
+
"completions/min_length": 313.0,
|
| 354 |
+
"completions/min_terminated_length": 313.0,
|
| 355 |
+
"epoch": 0.0010034665207079,
|
| 356 |
+
"frac_reward_zero_std": 0.0,
|
| 357 |
+
"grad_norm": 0.0981728583574295,
|
| 358 |
+
"learning_rate": 2e-05,
|
| 359 |
+
"loss": -0.0035,
|
| 360 |
+
"num_tokens": 504402.0,
|
| 361 |
+
"reward": 2.7707664489746096,
|
| 362 |
+
"reward_std": 0.15653531849384308,
|
| 363 |
+
"rewards/reward_humanlike/mean": 0.06527388915419578,
|
| 364 |
+
"rewards/reward_humanlike/std": 0.038607833255082366,
|
| 365 |
+
"rewards/reward_nonslop/mean": 0.5381535172462464,
|
| 366 |
+
"rewards/reward_nonslop/std": 0.030977290123701096,
|
| 367 |
+
"rewards/reward_paragraph_structure/mean": 0.9606678128242493,
|
| 368 |
+
"rewards/reward_paragraph_structure/std": 0.11089053153991699,
|
| 369 |
+
"rewards/reward_readability_flesch/mean": 0.7880517601966858,
|
| 370 |
+
"rewards/reward_readability_flesch/std": 0.14046915918588637,
|
| 371 |
+
"rewards/reward_variance_humanlike/mean": 0.4186194181442261,
|
| 372 |
+
"rewards/reward_variance_humanlike/std": 0.0556840606033802,
|
| 373 |
+
"step": 55
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"clip_ratio/high_max": 0.0,
|
| 377 |
+
"clip_ratio/high_mean": 0.0,
|
| 378 |
+
"clip_ratio/low_mean": 0.0,
|
| 379 |
+
"clip_ratio/low_min": 0.0,
|
| 380 |
+
"clip_ratio/region_mean": 0.0,
|
| 381 |
+
"completions/clipped_ratio": 0.0,
|
| 382 |
+
"completions/max_length": 576.2,
|
| 383 |
+
"completions/max_terminated_length": 576.2,
|
| 384 |
+
"completions/mean_length": 473.1625,
|
| 385 |
+
"completions/mean_terminated_length": 473.1625,
|
| 386 |
+
"completions/min_length": 373.8,
|
| 387 |
+
"completions/min_terminated_length": 373.8,
|
| 388 |
+
"epoch": 0.0010946907498631637,
|
| 389 |
+
"frac_reward_zero_std": 0.0,
|
| 390 |
+
"grad_norm": 0.0779431164264679,
|
| 391 |
+
"learning_rate": 2e-05,
|
| 392 |
+
"loss": 0.0033,
|
| 393 |
+
"num_tokens": 547375.0,
|
| 394 |
+
"reward": 2.721493101119995,
|
| 395 |
+
"reward_std": 0.16468897759914397,
|
| 396 |
+
"rewards/reward_humanlike/mean": 0.06399692744016647,
|
| 397 |
+
"rewards/reward_humanlike/std": 0.06561810113489627,
|
| 398 |
+
"rewards/reward_nonslop/mean": 0.526066243648529,
|
| 399 |
+
"rewards/reward_nonslop/std": 0.03075612857937813,
|
| 400 |
+
"rewards/reward_paragraph_structure/mean": 0.9890687108039856,
|
| 401 |
+
"rewards/reward_paragraph_structure/std": 0.043725161254405974,
|
| 402 |
+
"rewards/reward_readability_flesch/mean": 0.7518861651420593,
|
| 403 |
+
"rewards/reward_readability_flesch/std": 0.13989782482385635,
|
| 404 |
+
"rewards/reward_variance_humanlike/mean": 0.39047507643699647,
|
| 405 |
+
"rewards/reward_variance_humanlike/std": 0.04762849882245064,
|
| 406 |
+
"step": 60
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.0,
|
| 410 |
+
"clip_ratio/high_mean": 0.0,
|
| 411 |
+
"clip_ratio/low_mean": 0.0,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.0,
|
| 414 |
+
"completions/clipped_ratio": 0.0,
|
| 415 |
+
"completions/max_length": 578.8,
|
| 416 |
+
"completions/max_terminated_length": 578.8,
|
| 417 |
+
"completions/mean_length": 483.25,
|
| 418 |
+
"completions/mean_terminated_length": 483.25,
|
| 419 |
+
"completions/min_length": 392.0,
|
| 420 |
+
"completions/min_terminated_length": 392.0,
|
| 421 |
+
"epoch": 0.0011859149790184272,
|
| 422 |
+
"frac_reward_zero_std": 0.0,
|
| 423 |
+
"grad_norm": 0.08613153547048569,
|
| 424 |
+
"learning_rate": 2e-05,
|
| 425 |
+
"loss": -0.0079,
|
| 426 |
+
"num_tokens": 591107.0,
|
| 427 |
+
"reward": 2.756886434555054,
|
| 428 |
+
"reward_std": 0.15308991372585296,
|
| 429 |
+
"rewards/reward_humanlike/mean": 0.03657452017068863,
|
| 430 |
+
"rewards/reward_humanlike/std": 0.030589387845247985,
|
| 431 |
+
"rewards/reward_nonslop/mean": 0.5334658443927764,
|
| 432 |
+
"rewards/reward_nonslop/std": 0.02915770635008812,
|
| 433 |
+
"rewards/reward_paragraph_structure/mean": 0.9779379844665528,
|
| 434 |
+
"rewards/reward_paragraph_structure/std": 0.07469315528869629,
|
| 435 |
+
"rewards/reward_readability_flesch/mean": 0.8177438259124756,
|
| 436 |
+
"rewards/reward_readability_flesch/std": 0.12392935305833816,
|
| 437 |
+
"rewards/reward_variance_humanlike/mean": 0.3911642551422119,
|
| 438 |
+
"rewards/reward_variance_humanlike/std": 0.04321202002465725,
|
| 439 |
+
"step": 65
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"clip_ratio/high_max": 0.0,
|
| 443 |
+
"clip_ratio/high_mean": 0.0,
|
| 444 |
+
"clip_ratio/low_mean": 0.0,
|
| 445 |
+
"clip_ratio/low_min": 0.0,
|
| 446 |
+
"clip_ratio/region_mean": 0.0,
|
| 447 |
+
"completions/clipped_ratio": 0.0,
|
| 448 |
+
"completions/max_length": 607.0,
|
| 449 |
+
"completions/max_terminated_length": 607.0,
|
| 450 |
+
"completions/mean_length": 494.2,
|
| 451 |
+
"completions/mean_terminated_length": 494.2,
|
| 452 |
+
"completions/min_length": 396.0,
|
| 453 |
+
"completions/min_terminated_length": 396.0,
|
| 454 |
+
"epoch": 0.001277139208173691,
|
| 455 |
+
"frac_reward_zero_std": 0.0,
|
| 456 |
+
"grad_norm": 0.08903255313634872,
|
| 457 |
+
"learning_rate": 2e-05,
|
| 458 |
+
"loss": 0.0097,
|
| 459 |
+
"num_tokens": 635795.0,
|
| 460 |
+
"reward": 2.869403123855591,
|
| 461 |
+
"reward_std": 0.12632807344198227,
|
| 462 |
+
"rewards/reward_humanlike/mean": 0.04444831982254982,
|
| 463 |
+
"rewards/reward_humanlike/std": 0.036120910011231896,
|
| 464 |
+
"rewards/reward_nonslop/mean": 0.5243099689483642,
|
| 465 |
+
"rewards/reward_nonslop/std": 0.027720437198877335,
|
| 466 |
+
"rewards/reward_paragraph_structure/mean": 0.9873847007751465,
|
| 467 |
+
"rewards/reward_paragraph_structure/std": 0.04481239095330238,
|
| 468 |
+
"rewards/reward_readability_flesch/mean": 0.9202077388763428,
|
| 469 |
+
"rewards/reward_readability_flesch/std": 0.09855079799890518,
|
| 470 |
+
"rewards/reward_variance_humanlike/mean": 0.39305235743522643,
|
| 471 |
+
"rewards/reward_variance_humanlike/std": 0.04738411866128445,
|
| 472 |
+
"step": 70
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"clip_ratio/high_max": 0.0,
|
| 476 |
+
"clip_ratio/high_mean": 0.0,
|
| 477 |
+
"clip_ratio/low_mean": 0.0,
|
| 478 |
+
"clip_ratio/low_min": 0.0,
|
| 479 |
+
"clip_ratio/region_mean": 0.0,
|
| 480 |
+
"completions/clipped_ratio": 0.0,
|
| 481 |
+
"completions/max_length": 554.2,
|
| 482 |
+
"completions/max_terminated_length": 554.2,
|
| 483 |
+
"completions/mean_length": 441.2,
|
| 484 |
+
"completions/mean_terminated_length": 441.2,
|
| 485 |
+
"completions/min_length": 343.0,
|
| 486 |
+
"completions/min_terminated_length": 343.0,
|
| 487 |
+
"epoch": 0.0013683634373289546,
|
| 488 |
+
"frac_reward_zero_std": 0.0,
|
| 489 |
+
"grad_norm": 0.08839516341686249,
|
| 490 |
+
"learning_rate": 2e-05,
|
| 491 |
+
"loss": 0.006,
|
| 492 |
+
"num_tokens": 676227.0,
|
| 493 |
+
"reward": 2.7607101917266847,
|
| 494 |
+
"reward_std": 0.14567108005285262,
|
| 495 |
+
"rewards/reward_humanlike/mean": 0.0049436971545219425,
|
| 496 |
+
"rewards/reward_humanlike/std": 0.009033319354057313,
|
| 497 |
+
"rewards/reward_nonslop/mean": 0.5163205862045288,
|
| 498 |
+
"rewards/reward_nonslop/std": 0.034804318100214005,
|
| 499 |
+
"rewards/reward_paragraph_structure/mean": 0.9944571018218994,
|
| 500 |
+
"rewards/reward_paragraph_structure/std": 0.022171604633331298,
|
| 501 |
+
"rewards/reward_readability_flesch/mean": 0.8619415044784546,
|
| 502 |
+
"rewards/reward_readability_flesch/std": 0.12174343764781952,
|
| 503 |
+
"rewards/reward_variance_humanlike/mean": 0.38304726481437684,
|
| 504 |
+
"rewards/reward_variance_humanlike/std": 0.05802188515663147,
|
| 505 |
+
"step": 75
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"clip_ratio/high_max": 0.0,
|
| 509 |
+
"clip_ratio/high_mean": 0.0,
|
| 510 |
+
"clip_ratio/low_mean": 0.0,
|
| 511 |
+
"clip_ratio/low_min": 0.0,
|
| 512 |
+
"clip_ratio/region_mean": 0.0,
|
| 513 |
+
"completions/clipped_ratio": 0.0,
|
| 514 |
+
"completions/max_length": 717.2,
|
| 515 |
+
"completions/max_terminated_length": 717.2,
|
| 516 |
+
"completions/mean_length": 521.9,
|
| 517 |
+
"completions/mean_terminated_length": 521.9,
|
| 518 |
+
"completions/min_length": 412.2,
|
| 519 |
+
"completions/min_terminated_length": 412.2,
|
| 520 |
+
"epoch": 0.0014595876664842181,
|
| 521 |
+
"frac_reward_zero_std": 0.0,
|
| 522 |
+
"grad_norm": 0.0736362412571907,
|
| 523 |
+
"learning_rate": 2e-05,
|
| 524 |
+
"loss": 0.0207,
|
| 525 |
+
"num_tokens": 723019.0,
|
| 526 |
+
"reward": 2.7467071056365966,
|
| 527 |
+
"reward_std": 0.13217758685350417,
|
| 528 |
+
"rewards/reward_humanlike/mean": 0.04404948055744171,
|
| 529 |
+
"rewards/reward_humanlike/std": 0.03210974643006921,
|
| 530 |
+
"rewards/reward_nonslop/mean": 0.5157673060894012,
|
| 531 |
+
"rewards/reward_nonslop/std": 0.03307870253920555,
|
| 532 |
+
"rewards/reward_paragraph_structure/mean": 0.9820503711700439,
|
| 533 |
+
"rewards/reward_paragraph_structure/std": 0.06460869461297988,
|
| 534 |
+
"rewards/reward_readability_flesch/mean": 0.8017061710357666,
|
| 535 |
+
"rewards/reward_readability_flesch/std": 0.09596328362822533,
|
| 536 |
+
"rewards/reward_variance_humanlike/mean": 0.4031337320804596,
|
| 537 |
+
"rewards/reward_variance_humanlike/std": 0.038825053721666336,
|
| 538 |
+
"step": 80
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.0,
|
| 542 |
+
"clip_ratio/high_mean": 0.0,
|
| 543 |
+
"clip_ratio/low_mean": 0.0,
|
| 544 |
+
"clip_ratio/low_min": 0.0,
|
| 545 |
+
"clip_ratio/region_mean": 0.0,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 568.2,
|
| 548 |
+
"completions/max_terminated_length": 568.2,
|
| 549 |
+
"completions/mean_length": 492.875,
|
| 550 |
+
"completions/mean_terminated_length": 492.875,
|
| 551 |
+
"completions/min_length": 405.2,
|
| 552 |
+
"completions/min_terminated_length": 405.2,
|
| 553 |
+
"epoch": 0.0015508118956394819,
|
| 554 |
+
"frac_reward_zero_std": 0.0,
|
| 555 |
+
"grad_norm": 0.09337656199932098,
|
| 556 |
+
"learning_rate": 2e-05,
|
| 557 |
+
"loss": 0.0205,
|
| 558 |
+
"num_tokens": 767585.0,
|
| 559 |
+
"reward": 2.8245923042297365,
|
| 560 |
+
"reward_std": 0.12125235199928283,
|
| 561 |
+
"rewards/reward_humanlike/mean": 0.04374306052923203,
|
| 562 |
+
"rewards/reward_humanlike/std": 0.05065076029859483,
|
| 563 |
+
"rewards/reward_nonslop/mean": 0.5121960043907166,
|
| 564 |
+
"rewards/reward_nonslop/std": 0.024268346652388573,
|
| 565 |
+
"rewards/reward_paragraph_structure/mean": 0.9952531695365906,
|
| 566 |
+
"rewards/reward_paragraph_structure/std": 0.01898730993270874,
|
| 567 |
+
"rewards/reward_readability_flesch/mean": 0.8540295481681823,
|
| 568 |
+
"rewards/reward_readability_flesch/std": 0.11251321136951446,
|
| 569 |
+
"rewards/reward_variance_humanlike/mean": 0.4193705081939697,
|
| 570 |
+
"rewards/reward_variance_humanlike/std": 0.0530940480530262,
|
| 571 |
+
"step": 85
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.0,
|
| 575 |
+
"clip_ratio/high_mean": 0.0,
|
| 576 |
+
"clip_ratio/low_mean": 0.0,
|
| 577 |
+
"clip_ratio/low_min": 0.0,
|
| 578 |
+
"clip_ratio/region_mean": 0.0,
|
| 579 |
+
"completions/clipped_ratio": 0.0,
|
| 580 |
+
"completions/max_length": 529.2,
|
| 581 |
+
"completions/max_terminated_length": 529.2,
|
| 582 |
+
"completions/mean_length": 429.45,
|
| 583 |
+
"completions/mean_terminated_length": 429.45,
|
| 584 |
+
"completions/min_length": 340.6,
|
| 585 |
+
"completions/min_terminated_length": 340.6,
|
| 586 |
+
"epoch": 0.0016420361247947454,
|
| 587 |
+
"frac_reward_zero_std": 0.0,
|
| 588 |
+
"grad_norm": 0.10793354362249374,
|
| 589 |
+
"learning_rate": 2e-05,
|
| 590 |
+
"loss": 0.0084,
|
| 591 |
+
"num_tokens": 807109.0,
|
| 592 |
+
"reward": 2.8659895420074464,
|
| 593 |
+
"reward_std": 0.22321247607469558,
|
| 594 |
+
"rewards/reward_humanlike/mean": 0.11830640286207199,
|
| 595 |
+
"rewards/reward_humanlike/std": 0.10621838448569179,
|
| 596 |
+
"rewards/reward_nonslop/mean": 0.5382362484931946,
|
| 597 |
+
"rewards/reward_nonslop/std": 0.02679550349712372,
|
| 598 |
+
"rewards/reward_paragraph_structure/mean": 0.9388323545455932,
|
| 599 |
+
"rewards/reward_paragraph_structure/std": 0.08712138235569,
|
| 600 |
+
"rewards/reward_readability_flesch/mean": 0.8695886135101318,
|
| 601 |
+
"rewards/reward_readability_flesch/std": 0.11793182790279388,
|
| 602 |
+
"rewards/reward_variance_humanlike/mean": 0.4010259807109833,
|
| 603 |
+
"rewards/reward_variance_humanlike/std": 0.05023952871561051,
|
| 604 |
+
"step": 90
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"clip_ratio/high_max": 0.0,
|
| 608 |
+
"clip_ratio/high_mean": 0.0,
|
| 609 |
+
"clip_ratio/low_mean": 0.0,
|
| 610 |
+
"clip_ratio/low_min": 0.0,
|
| 611 |
+
"clip_ratio/region_mean": 0.0,
|
| 612 |
+
"completions/clipped_ratio": 0.0,
|
| 613 |
+
"completions/max_length": 516.2,
|
| 614 |
+
"completions/max_terminated_length": 516.2,
|
| 615 |
+
"completions/mean_length": 427.1625,
|
| 616 |
+
"completions/mean_terminated_length": 427.1625,
|
| 617 |
+
"completions/min_length": 327.4,
|
| 618 |
+
"completions/min_terminated_length": 327.4,
|
| 619 |
+
"epoch": 0.0017332603539500092,
|
| 620 |
+
"frac_reward_zero_std": 0.0,
|
| 621 |
+
"grad_norm": 0.10153933614492416,
|
| 622 |
+
"learning_rate": 2e-05,
|
| 623 |
+
"loss": 0.0076,
|
| 624 |
+
"num_tokens": 846354.0,
|
| 625 |
+
"reward": 2.9194432735443114,
|
| 626 |
+
"reward_std": 0.1527949333190918,
|
| 627 |
+
"rewards/reward_humanlike/mean": 0.13011178895831108,
|
| 628 |
+
"rewards/reward_humanlike/std": 0.1040344807319343,
|
| 629 |
+
"rewards/reward_nonslop/mean": 0.539959442615509,
|
| 630 |
+
"rewards/reward_nonslop/std": 0.027887169644236563,
|
| 631 |
+
"rewards/reward_paragraph_structure/mean": 0.97805335521698,
|
| 632 |
+
"rewards/reward_paragraph_structure/std": 0.0572780579328537,
|
| 633 |
+
"rewards/reward_readability_flesch/mean": 0.8915346980094909,
|
| 634 |
+
"rewards/reward_readability_flesch/std": 0.10210664793848992,
|
| 635 |
+
"rewards/reward_variance_humanlike/mean": 0.37978398203849795,
|
| 636 |
+
"rewards/reward_variance_humanlike/std": 0.04532681703567505,
|
| 637 |
+
"step": 95
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"clip_ratio/high_max": 0.0,
|
| 641 |
+
"clip_ratio/high_mean": 0.0,
|
| 642 |
+
"clip_ratio/low_mean": 0.0,
|
| 643 |
+
"clip_ratio/low_min": 0.0,
|
| 644 |
+
"clip_ratio/region_mean": 0.0,
|
| 645 |
+
"completions/clipped_ratio": 0.0,
|
| 646 |
+
"completions/max_length": 507.2,
|
| 647 |
+
"completions/max_terminated_length": 507.2,
|
| 648 |
+
"completions/mean_length": 416.6125,
|
| 649 |
+
"completions/mean_terminated_length": 416.6125,
|
| 650 |
+
"completions/min_length": 341.0,
|
| 651 |
+
"completions/min_terminated_length": 341.0,
|
| 652 |
+
"epoch": 0.0018244845831052727,
|
| 653 |
+
"frac_reward_zero_std": 0.0,
|
| 654 |
+
"grad_norm": 0.11056620627641678,
|
| 655 |
+
"learning_rate": 2e-05,
|
| 656 |
+
"loss": -0.0238,
|
| 657 |
+
"num_tokens": 884675.0,
|
| 658 |
+
"reward": 2.8297982215881348,
|
| 659 |
+
"reward_std": 0.1837340384721756,
|
| 660 |
+
"rewards/reward_humanlike/mean": 0.029251274466514588,
|
| 661 |
+
"rewards/reward_humanlike/std": 0.030034957686439157,
|
| 662 |
+
"rewards/reward_nonslop/mean": 0.5330106735229492,
|
| 663 |
+
"rewards/reward_nonslop/std": 0.02519891820847988,
|
| 664 |
+
"rewards/reward_paragraph_structure/mean": 0.9299438714981079,
|
| 665 |
+
"rewards/reward_paragraph_structure/std": 0.11956685781478882,
|
| 666 |
+
"rewards/reward_readability_flesch/mean": 0.9390206336975098,
|
| 667 |
+
"rewards/reward_readability_flesch/std": 0.1079161748290062,
|
| 668 |
+
"rewards/reward_variance_humanlike/mean": 0.3985717177391052,
|
| 669 |
+
"rewards/reward_variance_humanlike/std": 0.046227993071079256,
|
| 670 |
+
"step": 100
|
| 671 |
+
}
|
| 672 |
+
],
|
| 673 |
+
"logging_steps": 5,
|
| 674 |
+
"max_steps": 250,
|
| 675 |
+
"num_input_tokens_seen": 884675,
|
| 676 |
+
"num_train_epochs": 1,
|
| 677 |
+
"save_steps": 50,
|
| 678 |
+
"stateful_callbacks": {
|
| 679 |
+
"TrainerControl": {
|
| 680 |
+
"args": {
|
| 681 |
+
"should_epoch_stop": false,
|
| 682 |
+
"should_evaluate": false,
|
| 683 |
+
"should_log": false,
|
| 684 |
+
"should_save": true,
|
| 685 |
+
"should_training_stop": false
|
| 686 |
+
},
|
| 687 |
+
"attributes": {}
|
| 688 |
+
}
|
| 689 |
+
},
|
| 690 |
+
"total_flos": 0.0,
|
| 691 |
+
"train_batch_size": 2,
|
| 692 |
+
"trial_name": null,
|
| 693 |
+
"trial_params": null
|
| 694 |
+
}
|
checkpoint-100/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d6d1dbe50a50058c947771a7fd7c03a443069be77d949e0bd75335cc07d1af9
|
| 3 |
+
size 6865
|
checkpoint-100/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-150/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-14B
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.15.2
|
checkpoint-150/adapter_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "Qwen/Qwen3-14B",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 32,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 32,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"down_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"q_proj",
|
| 33 |
+
"up_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_rslora": false
|
| 39 |
+
}
|
checkpoint-150/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b043f3ed1ecad2d74ae61f65bc553b874406c50527afbcf3a90a4ac8a88aef86
|
| 3 |
+
size 513877864
|
checkpoint-150/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-150/chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
checkpoint-150/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-150/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e0a63c17e21c14c2311bad804f31dcb5395748cb54b3ac867c19dc915d95c5d
|
| 3 |
+
size 1028078067
|
checkpoint-150/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c806fd612d0bb9895337dd2e7aa950823e97b44f3b9752eea8999dd38c306e8
|
| 3 |
+
size 14645
|
checkpoint-150/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad292b5d14b8f8d85544d7d54740ffc013a4923be9b6dca5a08e1479e52628cc
|
| 3 |
+
size 1465
|
checkpoint-150/special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|im_end|>"
|
| 25 |
+
}
|
checkpoint-150/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
|
| 3 |
+
size 11422818
|
checkpoint-150/tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 131072,
|
| 235 |
+
"pad_token": "<|im_end|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-150/trainer_state.json
ADDED
|
@@ -0,0 +1,1024 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.002736726874657909,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 150,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 16 |
+
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 620.2,
|
| 20 |
+
"completions/max_terminated_length": 620.2,
|
| 21 |
+
"completions/mean_length": 536.3875,
|
| 22 |
+
"completions/mean_terminated_length": 536.3875,
|
| 23 |
+
"completions/min_length": 455.6,
|
| 24 |
+
"completions/min_terminated_length": 455.6,
|
| 25 |
+
"epoch": 9.122422915526363e-05,
|
| 26 |
+
"frac_reward_zero_std": 0.0,
|
| 27 |
+
"grad_norm": 0.06800810992717743,
|
| 28 |
+
"learning_rate": 2e-05,
|
| 29 |
+
"loss": -0.0026,
|
| 30 |
+
"num_tokens": 48111.0,
|
| 31 |
+
"reward": 2.393585443496704,
|
| 32 |
+
"reward_std": 0.14288972318172455,
|
| 33 |
+
"rewards/reward_humanlike/mean": -0.003280111402273178,
|
| 34 |
+
"rewards/reward_humanlike/std": 0.002425189537461847,
|
| 35 |
+
"rewards/reward_nonslop/mean": 0.45034117698669435,
|
| 36 |
+
"rewards/reward_nonslop/std": 0.021841670200228692,
|
| 37 |
+
"rewards/reward_paragraph_structure/mean": 0.9998971700668335,
|
| 38 |
+
"rewards/reward_paragraph_structure/std": 0.00036894355434924364,
|
| 39 |
+
"rewards/reward_readability_flesch/mean": 0.5846633613109589,
|
| 40 |
+
"rewards/reward_readability_flesch/std": 0.11768133006989956,
|
| 41 |
+
"rewards/reward_variance_humanlike/mean": 0.36196385622024535,
|
| 42 |
+
"rewards/reward_variance_humanlike/std": 0.036638665944337845,
|
| 43 |
+
"step": 5
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"clip_ratio/high_max": 0.0,
|
| 47 |
+
"clip_ratio/high_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_mean": 0.0,
|
| 49 |
+
"clip_ratio/low_min": 0.0,
|
| 50 |
+
"clip_ratio/region_mean": 0.0,
|
| 51 |
+
"completions/clipped_ratio": 0.0,
|
| 52 |
+
"completions/max_length": 646.0,
|
| 53 |
+
"completions/max_terminated_length": 646.0,
|
| 54 |
+
"completions/mean_length": 551.5,
|
| 55 |
+
"completions/mean_terminated_length": 551.5,
|
| 56 |
+
"completions/min_length": 446.2,
|
| 57 |
+
"completions/min_terminated_length": 446.2,
|
| 58 |
+
"epoch": 0.00018244845831052726,
|
| 59 |
+
"frac_reward_zero_std": 0.0,
|
| 60 |
+
"grad_norm": 0.07684256136417389,
|
| 61 |
+
"learning_rate": 2e-05,
|
| 62 |
+
"loss": 0.0074,
|
| 63 |
+
"num_tokens": 97303.0,
|
| 64 |
+
"reward": 2.391454339027405,
|
| 65 |
+
"reward_std": 0.1808932200074196,
|
| 66 |
+
"rewards/reward_humanlike/mean": -0.0016780316829681397,
|
| 67 |
+
"rewards/reward_humanlike/std": 0.014642862777691334,
|
| 68 |
+
"rewards/reward_nonslop/mean": 0.44268596172332764,
|
| 69 |
+
"rewards/reward_nonslop/std": 0.028079804033041,
|
| 70 |
+
"rewards/reward_paragraph_structure/mean": 1.0,
|
| 71 |
+
"rewards/reward_paragraph_structure/std": 0.0,
|
| 72 |
+
"rewards/reward_readability_flesch/mean": 0.57281613945961,
|
| 73 |
+
"rewards/reward_readability_flesch/std": 0.16779391318559647,
|
| 74 |
+
"rewards/reward_variance_humanlike/mean": 0.3776302635669708,
|
| 75 |
+
"rewards/reward_variance_humanlike/std": 0.045258138328790665,
|
| 76 |
+
"step": 10
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"clip_ratio/high_max": 0.0,
|
| 80 |
+
"clip_ratio/high_mean": 0.0,
|
| 81 |
+
"clip_ratio/low_mean": 0.0,
|
| 82 |
+
"clip_ratio/low_min": 0.0,
|
| 83 |
+
"clip_ratio/region_mean": 0.0,
|
| 84 |
+
"completions/clipped_ratio": 0.0,
|
| 85 |
+
"completions/max_length": 598.0,
|
| 86 |
+
"completions/max_terminated_length": 598.0,
|
| 87 |
+
"completions/mean_length": 516.1125,
|
| 88 |
+
"completions/mean_terminated_length": 516.1125,
|
| 89 |
+
"completions/min_length": 431.6,
|
| 90 |
+
"completions/min_terminated_length": 431.6,
|
| 91 |
+
"epoch": 0.0002736726874657909,
|
| 92 |
+
"frac_reward_zero_std": 0.0,
|
| 93 |
+
"grad_norm": 0.07912639528512955,
|
| 94 |
+
"learning_rate": 2e-05,
|
| 95 |
+
"loss": 0.0026,
|
| 96 |
+
"num_tokens": 143712.0,
|
| 97 |
+
"reward": 2.121282529830933,
|
| 98 |
+
"reward_std": 0.19594088345766067,
|
| 99 |
+
"rewards/reward_humanlike/mean": -0.005437415838241577,
|
| 100 |
+
"rewards/reward_humanlike/std": 0.0020546794403344393,
|
| 101 |
+
"rewards/reward_nonslop/mean": 0.44375383853912354,
|
| 102 |
+
"rewards/reward_nonslop/std": 0.025456106290221214,
|
| 103 |
+
"rewards/reward_paragraph_structure/mean": 0.9997280359268188,
|
| 104 |
+
"rewards/reward_paragraph_structure/std": 0.001087829563766718,
|
| 105 |
+
"rewards/reward_readability_flesch/mean": 0.340261435508728,
|
| 106 |
+
"rewards/reward_readability_flesch/std": 0.17545561231672763,
|
| 107 |
+
"rewards/reward_variance_humanlike/mean": 0.3429765820503235,
|
| 108 |
+
"rewards/reward_variance_humanlike/std": 0.04073530249297619,
|
| 109 |
+
"step": 15
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"clip_ratio/high_max": 0.0,
|
| 113 |
+
"clip_ratio/high_mean": 0.0,
|
| 114 |
+
"clip_ratio/low_mean": 0.0,
|
| 115 |
+
"clip_ratio/low_min": 0.0,
|
| 116 |
+
"clip_ratio/region_mean": 0.0,
|
| 117 |
+
"completions/clipped_ratio": 0.0,
|
| 118 |
+
"completions/max_length": 632.4,
|
| 119 |
+
"completions/max_terminated_length": 632.4,
|
| 120 |
+
"completions/mean_length": 511.4,
|
| 121 |
+
"completions/mean_terminated_length": 511.4,
|
| 122 |
+
"completions/min_length": 387.0,
|
| 123 |
+
"completions/min_terminated_length": 387.0,
|
| 124 |
+
"epoch": 0.00036489691662105453,
|
| 125 |
+
"frac_reward_zero_std": 0.0,
|
| 126 |
+
"grad_norm": 0.08999043703079224,
|
| 127 |
+
"learning_rate": 2e-05,
|
| 128 |
+
"loss": 0.0183,
|
| 129 |
+
"num_tokens": 189696.0,
|
| 130 |
+
"reward": 2.6498445510864257,
|
| 131 |
+
"reward_std": 0.2029375523328781,
|
| 132 |
+
"rewards/reward_humanlike/mean": 0.00019632279872894287,
|
| 133 |
+
"rewards/reward_humanlike/std": 0.006884497962892056,
|
| 134 |
+
"rewards/reward_nonslop/mean": 0.4884443640708923,
|
| 135 |
+
"rewards/reward_nonslop/std": 0.0355165209621191,
|
| 136 |
+
"rewards/reward_paragraph_structure/mean": 0.9939258456230163,
|
| 137 |
+
"rewards/reward_paragraph_structure/std": 0.023617163486778735,
|
| 138 |
+
"rewards/reward_readability_flesch/mean": 0.8020971655845642,
|
| 139 |
+
"rewards/reward_readability_flesch/std": 0.17971589416265488,
|
| 140 |
+
"rewards/reward_variance_humanlike/mean": 0.3651808500289917,
|
| 141 |
+
"rewards/reward_variance_humanlike/std": 0.042153649032115936,
|
| 142 |
+
"step": 20
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"clip_ratio/high_max": 0.0,
|
| 146 |
+
"clip_ratio/high_mean": 0.0,
|
| 147 |
+
"clip_ratio/low_mean": 0.0,
|
| 148 |
+
"clip_ratio/low_min": 0.0,
|
| 149 |
+
"clip_ratio/region_mean": 0.0,
|
| 150 |
+
"completions/clipped_ratio": 0.0,
|
| 151 |
+
"completions/max_length": 587.0,
|
| 152 |
+
"completions/max_terminated_length": 587.0,
|
| 153 |
+
"completions/mean_length": 457.2375,
|
| 154 |
+
"completions/mean_terminated_length": 457.2375,
|
| 155 |
+
"completions/min_length": 343.8,
|
| 156 |
+
"completions/min_terminated_length": 343.8,
|
| 157 |
+
"epoch": 0.0004561211457763182,
|
| 158 |
+
"frac_reward_zero_std": 0.0,
|
| 159 |
+
"grad_norm": 0.09677507728338242,
|
| 160 |
+
"learning_rate": 2e-05,
|
| 161 |
+
"loss": -0.0021,
|
| 162 |
+
"num_tokens": 231427.0,
|
| 163 |
+
"reward": 2.66627516746521,
|
| 164 |
+
"reward_std": 0.18921945840120316,
|
| 165 |
+
"rewards/reward_humanlike/mean": 0.020775890350341795,
|
| 166 |
+
"rewards/reward_humanlike/std": 0.04260522716213018,
|
| 167 |
+
"rewards/reward_nonslop/mean": 0.4985057771205902,
|
| 168 |
+
"rewards/reward_nonslop/std": 0.03064997084438801,
|
| 169 |
+
"rewards/reward_paragraph_structure/mean": 0.977533757686615,
|
| 170 |
+
"rewards/reward_paragraph_structure/std": 0.059077487885952,
|
| 171 |
+
"rewards/reward_readability_flesch/mean": 0.7888182640075684,
|
| 172 |
+
"rewards/reward_readability_flesch/std": 0.1475653052330017,
|
| 173 |
+
"rewards/reward_variance_humanlike/mean": 0.380641496181488,
|
| 174 |
+
"rewards/reward_variance_humanlike/std": 0.04412947595119476,
|
| 175 |
+
"step": 25
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"clip_ratio/high_max": 0.0,
|
| 179 |
+
"clip_ratio/high_mean": 0.0,
|
| 180 |
+
"clip_ratio/low_mean": 0.0,
|
| 181 |
+
"clip_ratio/low_min": 0.0,
|
| 182 |
+
"clip_ratio/region_mean": 0.0,
|
| 183 |
+
"completions/clipped_ratio": 0.0,
|
| 184 |
+
"completions/max_length": 597.6,
|
| 185 |
+
"completions/max_terminated_length": 597.6,
|
| 186 |
+
"completions/mean_length": 497.3375,
|
| 187 |
+
"completions/mean_terminated_length": 497.3375,
|
| 188 |
+
"completions/min_length": 395.4,
|
| 189 |
+
"completions/min_terminated_length": 395.4,
|
| 190 |
+
"epoch": 0.0005473453749315818,
|
| 191 |
+
"frac_reward_zero_std": 0.0,
|
| 192 |
+
"grad_norm": 0.08108917623758316,
|
| 193 |
+
"learning_rate": 2e-05,
|
| 194 |
+
"loss": 0.0017,
|
| 195 |
+
"num_tokens": 276318.0,
|
| 196 |
+
"reward": 2.7883635997772216,
|
| 197 |
+
"reward_std": 0.17138139009475709,
|
| 198 |
+
"rewards/reward_humanlike/mean": 0.11761673018336297,
|
| 199 |
+
"rewards/reward_humanlike/std": 0.08830970991402864,
|
| 200 |
+
"rewards/reward_nonslop/mean": 0.5173340082168579,
|
| 201 |
+
"rewards/reward_nonslop/std": 0.029454480484128,
|
| 202 |
+
"rewards/reward_paragraph_structure/mean": 0.9722555875778198,
|
| 203 |
+
"rewards/reward_paragraph_structure/std": 0.04261327683925629,
|
| 204 |
+
"rewards/reward_readability_flesch/mean": 0.7764949321746826,
|
| 205 |
+
"rewards/reward_readability_flesch/std": 0.10386961698532104,
|
| 206 |
+
"rewards/reward_variance_humanlike/mean": 0.4046623885631561,
|
| 207 |
+
"rewards/reward_variance_humanlike/std": 0.045019736886024474,
|
| 208 |
+
"step": 30
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"clip_ratio/high_max": 0.0,
|
| 212 |
+
"clip_ratio/high_mean": 0.0,
|
| 213 |
+
"clip_ratio/low_mean": 0.0,
|
| 214 |
+
"clip_ratio/low_min": 0.0,
|
| 215 |
+
"clip_ratio/region_mean": 0.0,
|
| 216 |
+
"completions/clipped_ratio": 0.0,
|
| 217 |
+
"completions/max_length": 617.4,
|
| 218 |
+
"completions/max_terminated_length": 617.4,
|
| 219 |
+
"completions/mean_length": 523.825,
|
| 220 |
+
"completions/mean_terminated_length": 523.825,
|
| 221 |
+
"completions/min_length": 409.6,
|
| 222 |
+
"completions/min_terminated_length": 409.6,
|
| 223 |
+
"epoch": 0.0006385696040868455,
|
| 224 |
+
"frac_reward_zero_std": 0.0,
|
| 225 |
+
"grad_norm": 0.08894547820091248,
|
| 226 |
+
"learning_rate": 2e-05,
|
| 227 |
+
"loss": -0.0081,
|
| 228 |
+
"num_tokens": 323376.0,
|
| 229 |
+
"reward": 2.7335947513580323,
|
| 230 |
+
"reward_std": 0.12913600355386734,
|
| 231 |
+
"rewards/reward_humanlike/mean": 0.044519555568695066,
|
| 232 |
+
"rewards/reward_humanlike/std": 0.051969482377171514,
|
| 233 |
+
"rewards/reward_nonslop/mean": 0.5143645763397217,
|
| 234 |
+
"rewards/reward_nonslop/std": 0.024226398020982743,
|
| 235 |
+
"rewards/reward_paragraph_structure/mean": 0.9907094240188599,
|
| 236 |
+
"rewards/reward_paragraph_structure/std": 0.023819129168987273,
|
| 237 |
+
"rewards/reward_readability_flesch/mean": 0.7974974989891053,
|
| 238 |
+
"rewards/reward_readability_flesch/std": 0.12351922243833542,
|
| 239 |
+
"rewards/reward_variance_humanlike/mean": 0.38650373220443723,
|
| 240 |
+
"rewards/reward_variance_humanlike/std": 0.05399425402283668,
|
| 241 |
+
"step": 35
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"clip_ratio/high_max": 0.0,
|
| 245 |
+
"clip_ratio/high_mean": 0.0,
|
| 246 |
+
"clip_ratio/low_mean": 0.0,
|
| 247 |
+
"clip_ratio/low_min": 0.0,
|
| 248 |
+
"clip_ratio/region_mean": 0.0,
|
| 249 |
+
"completions/clipped_ratio": 0.0,
|
| 250 |
+
"completions/max_length": 846.8,
|
| 251 |
+
"completions/max_terminated_length": 846.8,
|
| 252 |
+
"completions/mean_length": 555.05,
|
| 253 |
+
"completions/mean_terminated_length": 555.05,
|
| 254 |
+
"completions/min_length": 432.2,
|
| 255 |
+
"completions/min_terminated_length": 432.2,
|
| 256 |
+
"epoch": 0.0007297938332421091,
|
| 257 |
+
"frac_reward_zero_std": 0.0,
|
| 258 |
+
"grad_norm": 0.089969202876091,
|
| 259 |
+
"learning_rate": 2e-05,
|
| 260 |
+
"loss": 0.0135,
|
| 261 |
+
"num_tokens": 372868.0,
|
| 262 |
+
"reward": 2.6368720293045045,
|
| 263 |
+
"reward_std": 0.17332236915826799,
|
| 264 |
+
"rewards/reward_humanlike/mean": 0.05930730104446411,
|
| 265 |
+
"rewards/reward_humanlike/std": 0.04687353018671274,
|
| 266 |
+
"rewards/reward_nonslop/mean": 0.4885416626930237,
|
| 267 |
+
"rewards/reward_nonslop/std": 0.03745536170899868,
|
| 268 |
+
"rewards/reward_paragraph_structure/mean": 0.890105378627777,
|
| 269 |
+
"rewards/reward_paragraph_structure/std": 0.09538187831640244,
|
| 270 |
+
"rewards/reward_readability_flesch/mean": 0.7819342494010926,
|
| 271 |
+
"rewards/reward_readability_flesch/std": 0.11071507334709167,
|
| 272 |
+
"rewards/reward_variance_humanlike/mean": 0.4169835090637207,
|
| 273 |
+
"rewards/reward_variance_humanlike/std": 0.0439291026443243,
|
| 274 |
+
"step": 40
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"clip_ratio/high_max": 0.0,
|
| 278 |
+
"clip_ratio/high_mean": 0.0,
|
| 279 |
+
"clip_ratio/low_mean": 0.0,
|
| 280 |
+
"clip_ratio/low_min": 0.0,
|
| 281 |
+
"clip_ratio/region_mean": 0.0,
|
| 282 |
+
"completions/clipped_ratio": 0.0,
|
| 283 |
+
"completions/max_length": 613.2,
|
| 284 |
+
"completions/max_terminated_length": 613.2,
|
| 285 |
+
"completions/mean_length": 505.075,
|
| 286 |
+
"completions/mean_terminated_length": 505.075,
|
| 287 |
+
"completions/min_length": 374.0,
|
| 288 |
+
"completions/min_terminated_length": 374.0,
|
| 289 |
+
"epoch": 0.0008210180623973727,
|
| 290 |
+
"frac_reward_zero_std": 0.0,
|
| 291 |
+
"grad_norm": 0.0890246331691742,
|
| 292 |
+
"learning_rate": 2e-05,
|
| 293 |
+
"loss": 0.0102,
|
| 294 |
+
"num_tokens": 418490.0,
|
| 295 |
+
"reward": 2.6527084350585937,
|
| 296 |
+
"reward_std": 0.16761653274297714,
|
| 297 |
+
"rewards/reward_humanlike/mean": 0.08072967529296875,
|
| 298 |
+
"rewards/reward_humanlike/std": 0.06607948099263013,
|
| 299 |
+
"rewards/reward_nonslop/mean": 0.5106609463691711,
|
| 300 |
+
"rewards/reward_nonslop/std": 0.0351794958114624,
|
| 301 |
+
"rewards/reward_paragraph_structure/mean": 0.9813281297683716,
|
| 302 |
+
"rewards/reward_paragraph_structure/std": 0.05892824307084084,
|
| 303 |
+
"rewards/reward_readability_flesch/mean": 0.6913772821426392,
|
| 304 |
+
"rewards/reward_readability_flesch/std": 0.13855507373809814,
|
| 305 |
+
"rewards/reward_variance_humanlike/mean": 0.38861238956451416,
|
| 306 |
+
"rewards/reward_variance_humanlike/std": 0.039696966856718065,
|
| 307 |
+
"step": 45
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completions/clipped_ratio": 0.0,
|
| 316 |
+
"completions/max_length": 607.2,
|
| 317 |
+
"completions/max_terminated_length": 607.2,
|
| 318 |
+
"completions/mean_length": 500.2125,
|
| 319 |
+
"completions/mean_terminated_length": 500.2125,
|
| 320 |
+
"completions/min_length": 407.0,
|
| 321 |
+
"completions/min_terminated_length": 407.0,
|
| 322 |
+
"epoch": 0.0009122422915526364,
|
| 323 |
+
"frac_reward_zero_std": 0.0,
|
| 324 |
+
"grad_norm": 0.07912778109312057,
|
| 325 |
+
"learning_rate": 2e-05,
|
| 326 |
+
"loss": 0.005,
|
| 327 |
+
"num_tokens": 463659.0,
|
| 328 |
+
"reward": 2.753040885925293,
|
| 329 |
+
"reward_std": 0.136872561275959,
|
| 330 |
+
"rewards/reward_humanlike/mean": 0.03859691172838211,
|
| 331 |
+
"rewards/reward_humanlike/std": 0.035087807662785055,
|
| 332 |
+
"rewards/reward_nonslop/mean": 0.5123575925827026,
|
| 333 |
+
"rewards/reward_nonslop/std": 0.02690323181450367,
|
| 334 |
+
"rewards/reward_paragraph_structure/mean": 0.992300295829773,
|
| 335 |
+
"rewards/reward_paragraph_structure/std": 0.030798836052417754,
|
| 336 |
+
"rewards/reward_readability_flesch/mean": 0.8399829745292664,
|
| 337 |
+
"rewards/reward_readability_flesch/std": 0.11433027684688568,
|
| 338 |
+
"rewards/reward_variance_humanlike/mean": 0.3698031187057495,
|
| 339 |
+
"rewards/reward_variance_humanlike/std": 0.04352555349469185,
|
| 340 |
+
"step": 50
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"clip_ratio/high_max": 0.0,
|
| 344 |
+
"clip_ratio/high_mean": 0.0,
|
| 345 |
+
"clip_ratio/low_mean": 0.0,
|
| 346 |
+
"clip_ratio/low_min": 0.0,
|
| 347 |
+
"clip_ratio/region_mean": 0.0,
|
| 348 |
+
"completions/clipped_ratio": 0.0,
|
| 349 |
+
"completions/max_length": 562.0,
|
| 350 |
+
"completions/max_terminated_length": 562.0,
|
| 351 |
+
"completions/mean_length": 444.2875,
|
| 352 |
+
"completions/mean_terminated_length": 444.2875,
|
| 353 |
+
"completions/min_length": 313.0,
|
| 354 |
+
"completions/min_terminated_length": 313.0,
|
| 355 |
+
"epoch": 0.0010034665207079,
|
| 356 |
+
"frac_reward_zero_std": 0.0,
|
| 357 |
+
"grad_norm": 0.0981728583574295,
|
| 358 |
+
"learning_rate": 2e-05,
|
| 359 |
+
"loss": -0.0035,
|
| 360 |
+
"num_tokens": 504402.0,
|
| 361 |
+
"reward": 2.7707664489746096,
|
| 362 |
+
"reward_std": 0.15653531849384308,
|
| 363 |
+
"rewards/reward_humanlike/mean": 0.06527388915419578,
|
| 364 |
+
"rewards/reward_humanlike/std": 0.038607833255082366,
|
| 365 |
+
"rewards/reward_nonslop/mean": 0.5381535172462464,
|
| 366 |
+
"rewards/reward_nonslop/std": 0.030977290123701096,
|
| 367 |
+
"rewards/reward_paragraph_structure/mean": 0.9606678128242493,
|
| 368 |
+
"rewards/reward_paragraph_structure/std": 0.11089053153991699,
|
| 369 |
+
"rewards/reward_readability_flesch/mean": 0.7880517601966858,
|
| 370 |
+
"rewards/reward_readability_flesch/std": 0.14046915918588637,
|
| 371 |
+
"rewards/reward_variance_humanlike/mean": 0.4186194181442261,
|
| 372 |
+
"rewards/reward_variance_humanlike/std": 0.0556840606033802,
|
| 373 |
+
"step": 55
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"clip_ratio/high_max": 0.0,
|
| 377 |
+
"clip_ratio/high_mean": 0.0,
|
| 378 |
+
"clip_ratio/low_mean": 0.0,
|
| 379 |
+
"clip_ratio/low_min": 0.0,
|
| 380 |
+
"clip_ratio/region_mean": 0.0,
|
| 381 |
+
"completions/clipped_ratio": 0.0,
|
| 382 |
+
"completions/max_length": 576.2,
|
| 383 |
+
"completions/max_terminated_length": 576.2,
|
| 384 |
+
"completions/mean_length": 473.1625,
|
| 385 |
+
"completions/mean_terminated_length": 473.1625,
|
| 386 |
+
"completions/min_length": 373.8,
|
| 387 |
+
"completions/min_terminated_length": 373.8,
|
| 388 |
+
"epoch": 0.0010946907498631637,
|
| 389 |
+
"frac_reward_zero_std": 0.0,
|
| 390 |
+
"grad_norm": 0.0779431164264679,
|
| 391 |
+
"learning_rate": 2e-05,
|
| 392 |
+
"loss": 0.0033,
|
| 393 |
+
"num_tokens": 547375.0,
|
| 394 |
+
"reward": 2.721493101119995,
|
| 395 |
+
"reward_std": 0.16468897759914397,
|
| 396 |
+
"rewards/reward_humanlike/mean": 0.06399692744016647,
|
| 397 |
+
"rewards/reward_humanlike/std": 0.06561810113489627,
|
| 398 |
+
"rewards/reward_nonslop/mean": 0.526066243648529,
|
| 399 |
+
"rewards/reward_nonslop/std": 0.03075612857937813,
|
| 400 |
+
"rewards/reward_paragraph_structure/mean": 0.9890687108039856,
|
| 401 |
+
"rewards/reward_paragraph_structure/std": 0.043725161254405974,
|
| 402 |
+
"rewards/reward_readability_flesch/mean": 0.7518861651420593,
|
| 403 |
+
"rewards/reward_readability_flesch/std": 0.13989782482385635,
|
| 404 |
+
"rewards/reward_variance_humanlike/mean": 0.39047507643699647,
|
| 405 |
+
"rewards/reward_variance_humanlike/std": 0.04762849882245064,
|
| 406 |
+
"step": 60
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.0,
|
| 410 |
+
"clip_ratio/high_mean": 0.0,
|
| 411 |
+
"clip_ratio/low_mean": 0.0,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.0,
|
| 414 |
+
"completions/clipped_ratio": 0.0,
|
| 415 |
+
"completions/max_length": 578.8,
|
| 416 |
+
"completions/max_terminated_length": 578.8,
|
| 417 |
+
"completions/mean_length": 483.25,
|
| 418 |
+
"completions/mean_terminated_length": 483.25,
|
| 419 |
+
"completions/min_length": 392.0,
|
| 420 |
+
"completions/min_terminated_length": 392.0,
|
| 421 |
+
"epoch": 0.0011859149790184272,
|
| 422 |
+
"frac_reward_zero_std": 0.0,
|
| 423 |
+
"grad_norm": 0.08613153547048569,
|
| 424 |
+
"learning_rate": 2e-05,
|
| 425 |
+
"loss": -0.0079,
|
| 426 |
+
"num_tokens": 591107.0,
|
| 427 |
+
"reward": 2.756886434555054,
|
| 428 |
+
"reward_std": 0.15308991372585296,
|
| 429 |
+
"rewards/reward_humanlike/mean": 0.03657452017068863,
|
| 430 |
+
"rewards/reward_humanlike/std": 0.030589387845247985,
|
| 431 |
+
"rewards/reward_nonslop/mean": 0.5334658443927764,
|
| 432 |
+
"rewards/reward_nonslop/std": 0.02915770635008812,
|
| 433 |
+
"rewards/reward_paragraph_structure/mean": 0.9779379844665528,
|
| 434 |
+
"rewards/reward_paragraph_structure/std": 0.07469315528869629,
|
| 435 |
+
"rewards/reward_readability_flesch/mean": 0.8177438259124756,
|
| 436 |
+
"rewards/reward_readability_flesch/std": 0.12392935305833816,
|
| 437 |
+
"rewards/reward_variance_humanlike/mean": 0.3911642551422119,
|
| 438 |
+
"rewards/reward_variance_humanlike/std": 0.04321202002465725,
|
| 439 |
+
"step": 65
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"clip_ratio/high_max": 0.0,
|
| 443 |
+
"clip_ratio/high_mean": 0.0,
|
| 444 |
+
"clip_ratio/low_mean": 0.0,
|
| 445 |
+
"clip_ratio/low_min": 0.0,
|
| 446 |
+
"clip_ratio/region_mean": 0.0,
|
| 447 |
+
"completions/clipped_ratio": 0.0,
|
| 448 |
+
"completions/max_length": 607.0,
|
| 449 |
+
"completions/max_terminated_length": 607.0,
|
| 450 |
+
"completions/mean_length": 494.2,
|
| 451 |
+
"completions/mean_terminated_length": 494.2,
|
| 452 |
+
"completions/min_length": 396.0,
|
| 453 |
+
"completions/min_terminated_length": 396.0,
|
| 454 |
+
"epoch": 0.001277139208173691,
|
| 455 |
+
"frac_reward_zero_std": 0.0,
|
| 456 |
+
"grad_norm": 0.08903255313634872,
|
| 457 |
+
"learning_rate": 2e-05,
|
| 458 |
+
"loss": 0.0097,
|
| 459 |
+
"num_tokens": 635795.0,
|
| 460 |
+
"reward": 2.869403123855591,
|
| 461 |
+
"reward_std": 0.12632807344198227,
|
| 462 |
+
"rewards/reward_humanlike/mean": 0.04444831982254982,
|
| 463 |
+
"rewards/reward_humanlike/std": 0.036120910011231896,
|
| 464 |
+
"rewards/reward_nonslop/mean": 0.5243099689483642,
|
| 465 |
+
"rewards/reward_nonslop/std": 0.027720437198877335,
|
| 466 |
+
"rewards/reward_paragraph_structure/mean": 0.9873847007751465,
|
| 467 |
+
"rewards/reward_paragraph_structure/std": 0.04481239095330238,
|
| 468 |
+
"rewards/reward_readability_flesch/mean": 0.9202077388763428,
|
| 469 |
+
"rewards/reward_readability_flesch/std": 0.09855079799890518,
|
| 470 |
+
"rewards/reward_variance_humanlike/mean": 0.39305235743522643,
|
| 471 |
+
"rewards/reward_variance_humanlike/std": 0.04738411866128445,
|
| 472 |
+
"step": 70
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"clip_ratio/high_max": 0.0,
|
| 476 |
+
"clip_ratio/high_mean": 0.0,
|
| 477 |
+
"clip_ratio/low_mean": 0.0,
|
| 478 |
+
"clip_ratio/low_min": 0.0,
|
| 479 |
+
"clip_ratio/region_mean": 0.0,
|
| 480 |
+
"completions/clipped_ratio": 0.0,
|
| 481 |
+
"completions/max_length": 554.2,
|
| 482 |
+
"completions/max_terminated_length": 554.2,
|
| 483 |
+
"completions/mean_length": 441.2,
|
| 484 |
+
"completions/mean_terminated_length": 441.2,
|
| 485 |
+
"completions/min_length": 343.0,
|
| 486 |
+
"completions/min_terminated_length": 343.0,
|
| 487 |
+
"epoch": 0.0013683634373289546,
|
| 488 |
+
"frac_reward_zero_std": 0.0,
|
| 489 |
+
"grad_norm": 0.08839516341686249,
|
| 490 |
+
"learning_rate": 2e-05,
|
| 491 |
+
"loss": 0.006,
|
| 492 |
+
"num_tokens": 676227.0,
|
| 493 |
+
"reward": 2.7607101917266847,
|
| 494 |
+
"reward_std": 0.14567108005285262,
|
| 495 |
+
"rewards/reward_humanlike/mean": 0.0049436971545219425,
|
| 496 |
+
"rewards/reward_humanlike/std": 0.009033319354057313,
|
| 497 |
+
"rewards/reward_nonslop/mean": 0.5163205862045288,
|
| 498 |
+
"rewards/reward_nonslop/std": 0.034804318100214005,
|
| 499 |
+
"rewards/reward_paragraph_structure/mean": 0.9944571018218994,
|
| 500 |
+
"rewards/reward_paragraph_structure/std": 0.022171604633331298,
|
| 501 |
+
"rewards/reward_readability_flesch/mean": 0.8619415044784546,
|
| 502 |
+
"rewards/reward_readability_flesch/std": 0.12174343764781952,
|
| 503 |
+
"rewards/reward_variance_humanlike/mean": 0.38304726481437684,
|
| 504 |
+
"rewards/reward_variance_humanlike/std": 0.05802188515663147,
|
| 505 |
+
"step": 75
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"clip_ratio/high_max": 0.0,
|
| 509 |
+
"clip_ratio/high_mean": 0.0,
|
| 510 |
+
"clip_ratio/low_mean": 0.0,
|
| 511 |
+
"clip_ratio/low_min": 0.0,
|
| 512 |
+
"clip_ratio/region_mean": 0.0,
|
| 513 |
+
"completions/clipped_ratio": 0.0,
|
| 514 |
+
"completions/max_length": 717.2,
|
| 515 |
+
"completions/max_terminated_length": 717.2,
|
| 516 |
+
"completions/mean_length": 521.9,
|
| 517 |
+
"completions/mean_terminated_length": 521.9,
|
| 518 |
+
"completions/min_length": 412.2,
|
| 519 |
+
"completions/min_terminated_length": 412.2,
|
| 520 |
+
"epoch": 0.0014595876664842181,
|
| 521 |
+
"frac_reward_zero_std": 0.0,
|
| 522 |
+
"grad_norm": 0.0736362412571907,
|
| 523 |
+
"learning_rate": 2e-05,
|
| 524 |
+
"loss": 0.0207,
|
| 525 |
+
"num_tokens": 723019.0,
|
| 526 |
+
"reward": 2.7467071056365966,
|
| 527 |
+
"reward_std": 0.13217758685350417,
|
| 528 |
+
"rewards/reward_humanlike/mean": 0.04404948055744171,
|
| 529 |
+
"rewards/reward_humanlike/std": 0.03210974643006921,
|
| 530 |
+
"rewards/reward_nonslop/mean": 0.5157673060894012,
|
| 531 |
+
"rewards/reward_nonslop/std": 0.03307870253920555,
|
| 532 |
+
"rewards/reward_paragraph_structure/mean": 0.9820503711700439,
|
| 533 |
+
"rewards/reward_paragraph_structure/std": 0.06460869461297988,
|
| 534 |
+
"rewards/reward_readability_flesch/mean": 0.8017061710357666,
|
| 535 |
+
"rewards/reward_readability_flesch/std": 0.09596328362822533,
|
| 536 |
+
"rewards/reward_variance_humanlike/mean": 0.4031337320804596,
|
| 537 |
+
"rewards/reward_variance_humanlike/std": 0.038825053721666336,
|
| 538 |
+
"step": 80
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.0,
|
| 542 |
+
"clip_ratio/high_mean": 0.0,
|
| 543 |
+
"clip_ratio/low_mean": 0.0,
|
| 544 |
+
"clip_ratio/low_min": 0.0,
|
| 545 |
+
"clip_ratio/region_mean": 0.0,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 568.2,
|
| 548 |
+
"completions/max_terminated_length": 568.2,
|
| 549 |
+
"completions/mean_length": 492.875,
|
| 550 |
+
"completions/mean_terminated_length": 492.875,
|
| 551 |
+
"completions/min_length": 405.2,
|
| 552 |
+
"completions/min_terminated_length": 405.2,
|
| 553 |
+
"epoch": 0.0015508118956394819,
|
| 554 |
+
"frac_reward_zero_std": 0.0,
|
| 555 |
+
"grad_norm": 0.09337656199932098,
|
| 556 |
+
"learning_rate": 2e-05,
|
| 557 |
+
"loss": 0.0205,
|
| 558 |
+
"num_tokens": 767585.0,
|
| 559 |
+
"reward": 2.8245923042297365,
|
| 560 |
+
"reward_std": 0.12125235199928283,
|
| 561 |
+
"rewards/reward_humanlike/mean": 0.04374306052923203,
|
| 562 |
+
"rewards/reward_humanlike/std": 0.05065076029859483,
|
| 563 |
+
"rewards/reward_nonslop/mean": 0.5121960043907166,
|
| 564 |
+
"rewards/reward_nonslop/std": 0.024268346652388573,
|
| 565 |
+
"rewards/reward_paragraph_structure/mean": 0.9952531695365906,
|
| 566 |
+
"rewards/reward_paragraph_structure/std": 0.01898730993270874,
|
| 567 |
+
"rewards/reward_readability_flesch/mean": 0.8540295481681823,
|
| 568 |
+
"rewards/reward_readability_flesch/std": 0.11251321136951446,
|
| 569 |
+
"rewards/reward_variance_humanlike/mean": 0.4193705081939697,
|
| 570 |
+
"rewards/reward_variance_humanlike/std": 0.0530940480530262,
|
| 571 |
+
"step": 85
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.0,
|
| 575 |
+
"clip_ratio/high_mean": 0.0,
|
| 576 |
+
"clip_ratio/low_mean": 0.0,
|
| 577 |
+
"clip_ratio/low_min": 0.0,
|
| 578 |
+
"clip_ratio/region_mean": 0.0,
|
| 579 |
+
"completions/clipped_ratio": 0.0,
|
| 580 |
+
"completions/max_length": 529.2,
|
| 581 |
+
"completions/max_terminated_length": 529.2,
|
| 582 |
+
"completions/mean_length": 429.45,
|
| 583 |
+
"completions/mean_terminated_length": 429.45,
|
| 584 |
+
"completions/min_length": 340.6,
|
| 585 |
+
"completions/min_terminated_length": 340.6,
|
| 586 |
+
"epoch": 0.0016420361247947454,
|
| 587 |
+
"frac_reward_zero_std": 0.0,
|
| 588 |
+
"grad_norm": 0.10793354362249374,
|
| 589 |
+
"learning_rate": 2e-05,
|
| 590 |
+
"loss": 0.0084,
|
| 591 |
+
"num_tokens": 807109.0,
|
| 592 |
+
"reward": 2.8659895420074464,
|
| 593 |
+
"reward_std": 0.22321247607469558,
|
| 594 |
+
"rewards/reward_humanlike/mean": 0.11830640286207199,
|
| 595 |
+
"rewards/reward_humanlike/std": 0.10621838448569179,
|
| 596 |
+
"rewards/reward_nonslop/mean": 0.5382362484931946,
|
| 597 |
+
"rewards/reward_nonslop/std": 0.02679550349712372,
|
| 598 |
+
"rewards/reward_paragraph_structure/mean": 0.9388323545455932,
|
| 599 |
+
"rewards/reward_paragraph_structure/std": 0.08712138235569,
|
| 600 |
+
"rewards/reward_readability_flesch/mean": 0.8695886135101318,
|
| 601 |
+
"rewards/reward_readability_flesch/std": 0.11793182790279388,
|
| 602 |
+
"rewards/reward_variance_humanlike/mean": 0.4010259807109833,
|
| 603 |
+
"rewards/reward_variance_humanlike/std": 0.05023952871561051,
|
| 604 |
+
"step": 90
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"clip_ratio/high_max": 0.0,
|
| 608 |
+
"clip_ratio/high_mean": 0.0,
|
| 609 |
+
"clip_ratio/low_mean": 0.0,
|
| 610 |
+
"clip_ratio/low_min": 0.0,
|
| 611 |
+
"clip_ratio/region_mean": 0.0,
|
| 612 |
+
"completions/clipped_ratio": 0.0,
|
| 613 |
+
"completions/max_length": 516.2,
|
| 614 |
+
"completions/max_terminated_length": 516.2,
|
| 615 |
+
"completions/mean_length": 427.1625,
|
| 616 |
+
"completions/mean_terminated_length": 427.1625,
|
| 617 |
+
"completions/min_length": 327.4,
|
| 618 |
+
"completions/min_terminated_length": 327.4,
|
| 619 |
+
"epoch": 0.0017332603539500092,
|
| 620 |
+
"frac_reward_zero_std": 0.0,
|
| 621 |
+
"grad_norm": 0.10153933614492416,
|
| 622 |
+
"learning_rate": 2e-05,
|
| 623 |
+
"loss": 0.0076,
|
| 624 |
+
"num_tokens": 846354.0,
|
| 625 |
+
"reward": 2.9194432735443114,
|
| 626 |
+
"reward_std": 0.1527949333190918,
|
| 627 |
+
"rewards/reward_humanlike/mean": 0.13011178895831108,
|
| 628 |
+
"rewards/reward_humanlike/std": 0.1040344807319343,
|
| 629 |
+
"rewards/reward_nonslop/mean": 0.539959442615509,
|
| 630 |
+
"rewards/reward_nonslop/std": 0.027887169644236563,
|
| 631 |
+
"rewards/reward_paragraph_structure/mean": 0.97805335521698,
|
| 632 |
+
"rewards/reward_paragraph_structure/std": 0.0572780579328537,
|
| 633 |
+
"rewards/reward_readability_flesch/mean": 0.8915346980094909,
|
| 634 |
+
"rewards/reward_readability_flesch/std": 0.10210664793848992,
|
| 635 |
+
"rewards/reward_variance_humanlike/mean": 0.37978398203849795,
|
| 636 |
+
"rewards/reward_variance_humanlike/std": 0.04532681703567505,
|
| 637 |
+
"step": 95
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"clip_ratio/high_max": 0.0,
|
| 641 |
+
"clip_ratio/high_mean": 0.0,
|
| 642 |
+
"clip_ratio/low_mean": 0.0,
|
| 643 |
+
"clip_ratio/low_min": 0.0,
|
| 644 |
+
"clip_ratio/region_mean": 0.0,
|
| 645 |
+
"completions/clipped_ratio": 0.0,
|
| 646 |
+
"completions/max_length": 507.2,
|
| 647 |
+
"completions/max_terminated_length": 507.2,
|
| 648 |
+
"completions/mean_length": 416.6125,
|
| 649 |
+
"completions/mean_terminated_length": 416.6125,
|
| 650 |
+
"completions/min_length": 341.0,
|
| 651 |
+
"completions/min_terminated_length": 341.0,
|
| 652 |
+
"epoch": 0.0018244845831052727,
|
| 653 |
+
"frac_reward_zero_std": 0.0,
|
| 654 |
+
"grad_norm": 0.11056620627641678,
|
| 655 |
+
"learning_rate": 2e-05,
|
| 656 |
+
"loss": -0.0238,
|
| 657 |
+
"num_tokens": 884675.0,
|
| 658 |
+
"reward": 2.8297982215881348,
|
| 659 |
+
"reward_std": 0.1837340384721756,
|
| 660 |
+
"rewards/reward_humanlike/mean": 0.029251274466514588,
|
| 661 |
+
"rewards/reward_humanlike/std": 0.030034957686439157,
|
| 662 |
+
"rewards/reward_nonslop/mean": 0.5330106735229492,
|
| 663 |
+
"rewards/reward_nonslop/std": 0.02519891820847988,
|
| 664 |
+
"rewards/reward_paragraph_structure/mean": 0.9299438714981079,
|
| 665 |
+
"rewards/reward_paragraph_structure/std": 0.11956685781478882,
|
| 666 |
+
"rewards/reward_readability_flesch/mean": 0.9390206336975098,
|
| 667 |
+
"rewards/reward_readability_flesch/std": 0.1079161748290062,
|
| 668 |
+
"rewards/reward_variance_humanlike/mean": 0.3985717177391052,
|
| 669 |
+
"rewards/reward_variance_humanlike/std": 0.046227993071079256,
|
| 670 |
+
"step": 100
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"clip_ratio/high_max": 0.0,
|
| 674 |
+
"clip_ratio/high_mean": 0.0,
|
| 675 |
+
"clip_ratio/low_mean": 0.0,
|
| 676 |
+
"clip_ratio/low_min": 0.0,
|
| 677 |
+
"clip_ratio/region_mean": 0.0,
|
| 678 |
+
"completions/clipped_ratio": 0.0,
|
| 679 |
+
"completions/max_length": 484.8,
|
| 680 |
+
"completions/max_terminated_length": 484.8,
|
| 681 |
+
"completions/mean_length": 397.0,
|
| 682 |
+
"completions/mean_terminated_length": 397.0,
|
| 683 |
+
"completions/min_length": 311.6,
|
| 684 |
+
"completions/min_terminated_length": 311.6,
|
| 685 |
+
"epoch": 0.0019157088122605363,
|
| 686 |
+
"frac_reward_zero_std": 0.0,
|
| 687 |
+
"grad_norm": 0.12234635651111603,
|
| 688 |
+
"learning_rate": 2e-05,
|
| 689 |
+
"loss": -0.0084,
|
| 690 |
+
"num_tokens": 921523.0,
|
| 691 |
+
"reward": 2.7906761169433594,
|
| 692 |
+
"reward_std": 0.18639333844184874,
|
| 693 |
+
"rewards/reward_humanlike/mean": 0.03967294096946716,
|
| 694 |
+
"rewards/reward_humanlike/std": 0.047859178856015205,
|
| 695 |
+
"rewards/reward_nonslop/mean": 0.5455231070518494,
|
| 696 |
+
"rewards/reward_nonslop/std": 0.02572299391031265,
|
| 697 |
+
"rewards/reward_paragraph_structure/mean": 0.9380416989326477,
|
| 698 |
+
"rewards/reward_paragraph_structure/std": 0.14332405030727385,
|
| 699 |
+
"rewards/reward_readability_flesch/mean": 0.8651458501815796,
|
| 700 |
+
"rewards/reward_readability_flesch/std": 0.10486775860190392,
|
| 701 |
+
"rewards/reward_variance_humanlike/mean": 0.40229247212409974,
|
| 702 |
+
"rewards/reward_variance_humanlike/std": 0.05056553930044174,
|
| 703 |
+
"step": 105
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"clip_ratio/high_max": 0.0,
|
| 707 |
+
"clip_ratio/high_mean": 0.0,
|
| 708 |
+
"clip_ratio/low_mean": 0.0,
|
| 709 |
+
"clip_ratio/low_min": 0.0,
|
| 710 |
+
"clip_ratio/region_mean": 0.0,
|
| 711 |
+
"completions/clipped_ratio": 0.0,
|
| 712 |
+
"completions/max_length": 535.0,
|
| 713 |
+
"completions/max_terminated_length": 535.0,
|
| 714 |
+
"completions/mean_length": 407.4,
|
| 715 |
+
"completions/mean_terminated_length": 407.4,
|
| 716 |
+
"completions/min_length": 323.6,
|
| 717 |
+
"completions/min_terminated_length": 323.6,
|
| 718 |
+
"epoch": 0.0020069330414158,
|
| 719 |
+
"frac_reward_zero_std": 0.0,
|
| 720 |
+
"grad_norm": 0.12049026042222977,
|
| 721 |
+
"learning_rate": 2e-05,
|
| 722 |
+
"loss": -0.0015,
|
| 723 |
+
"num_tokens": 959235.0,
|
| 724 |
+
"reward": 2.8142509937286375,
|
| 725 |
+
"reward_std": 0.20959972888231276,
|
| 726 |
+
"rewards/reward_humanlike/mean": 0.10315801277756691,
|
| 727 |
+
"rewards/reward_humanlike/std": 0.06646046359091998,
|
| 728 |
+
"rewards/reward_nonslop/mean": 0.549621844291687,
|
| 729 |
+
"rewards/reward_nonslop/std": 0.02784626930952072,
|
| 730 |
+
"rewards/reward_paragraph_structure/mean": 0.9427387475967407,
|
| 731 |
+
"rewards/reward_paragraph_structure/std": 0.0946300521492958,
|
| 732 |
+
"rewards/reward_readability_flesch/mean": 0.8157400369644165,
|
| 733 |
+
"rewards/reward_readability_flesch/std": 0.12322266846895218,
|
| 734 |
+
"rewards/reward_variance_humanlike/mean": 0.40299235582351683,
|
| 735 |
+
"rewards/reward_variance_humanlike/std": 0.03882267326116562,
|
| 736 |
+
"step": 110
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"clip_ratio/high_max": 0.0,
|
| 740 |
+
"clip_ratio/high_mean": 0.0,
|
| 741 |
+
"clip_ratio/low_mean": 0.0,
|
| 742 |
+
"clip_ratio/low_min": 0.0,
|
| 743 |
+
"clip_ratio/region_mean": 0.0,
|
| 744 |
+
"completions/clipped_ratio": 0.0,
|
| 745 |
+
"completions/max_length": 546.2,
|
| 746 |
+
"completions/max_terminated_length": 546.2,
|
| 747 |
+
"completions/mean_length": 453.1875,
|
| 748 |
+
"completions/mean_terminated_length": 453.1875,
|
| 749 |
+
"completions/min_length": 365.0,
|
| 750 |
+
"completions/min_terminated_length": 365.0,
|
| 751 |
+
"epoch": 0.0020981572705710636,
|
| 752 |
+
"frac_reward_zero_std": 0.0,
|
| 753 |
+
"grad_norm": 0.10685638338327408,
|
| 754 |
+
"learning_rate": 2e-05,
|
| 755 |
+
"loss": -0.0023,
|
| 756 |
+
"num_tokens": 1000562.0,
|
| 757 |
+
"reward": 2.7050733089447023,
|
| 758 |
+
"reward_std": 0.17174948751926422,
|
| 759 |
+
"rewards/reward_humanlike/mean": 0.03010150045156479,
|
| 760 |
+
"rewards/reward_humanlike/std": 0.02183089666068554,
|
| 761 |
+
"rewards/reward_nonslop/mean": 0.537644910812378,
|
| 762 |
+
"rewards/reward_nonslop/std": 0.022509072348475455,
|
| 763 |
+
"rewards/reward_paragraph_structure/mean": 0.9359247803688049,
|
| 764 |
+
"rewards/reward_paragraph_structure/std": 0.13663459122180938,
|
| 765 |
+
"rewards/reward_readability_flesch/mean": 0.7878659129142761,
|
| 766 |
+
"rewards/reward_readability_flesch/std": 0.1104049876332283,
|
| 767 |
+
"rewards/reward_variance_humanlike/mean": 0.4135362088680267,
|
| 768 |
+
"rewards/reward_variance_humanlike/std": 0.04251410141587257,
|
| 769 |
+
"step": 115
|
| 770 |
+
},
|
| 771 |
+
{
|
| 772 |
+
"clip_ratio/high_max": 0.0,
|
| 773 |
+
"clip_ratio/high_mean": 0.0,
|
| 774 |
+
"clip_ratio/low_mean": 0.0,
|
| 775 |
+
"clip_ratio/low_min": 0.0,
|
| 776 |
+
"clip_ratio/region_mean": 0.0,
|
| 777 |
+
"completions/clipped_ratio": 0.0,
|
| 778 |
+
"completions/max_length": 563.4,
|
| 779 |
+
"completions/max_terminated_length": 563.4,
|
| 780 |
+
"completions/mean_length": 454.7875,
|
| 781 |
+
"completions/mean_terminated_length": 454.7875,
|
| 782 |
+
"completions/min_length": 365.0,
|
| 783 |
+
"completions/min_terminated_length": 365.0,
|
| 784 |
+
"epoch": 0.0021893814997263274,
|
| 785 |
+
"frac_reward_zero_std": 0.0,
|
| 786 |
+
"grad_norm": 0.10802900046110153,
|
| 787 |
+
"learning_rate": 2e-05,
|
| 788 |
+
"loss": 0.0097,
|
| 789 |
+
"num_tokens": 1042177.0,
|
| 790 |
+
"reward": 2.8397992134094237,
|
| 791 |
+
"reward_std": 0.15860502868890763,
|
| 792 |
+
"rewards/reward_humanlike/mean": 0.04295992851257324,
|
| 793 |
+
"rewards/reward_humanlike/std": 0.05235542356967926,
|
| 794 |
+
"rewards/reward_nonslop/mean": 0.5383237481117249,
|
| 795 |
+
"rewards/reward_nonslop/std": 0.029689770936965943,
|
| 796 |
+
"rewards/reward_paragraph_structure/mean": 1.0,
|
| 797 |
+
"rewards/reward_paragraph_structure/std": 0.0,
|
| 798 |
+
"rewards/reward_readability_flesch/mean": 0.8279854476451873,
|
| 799 |
+
"rewards/reward_readability_flesch/std": 0.11809881925582885,
|
| 800 |
+
"rewards/reward_variance_humanlike/mean": 0.43053008913993834,
|
| 801 |
+
"rewards/reward_variance_humanlike/std": 0.04717860147356987,
|
| 802 |
+
"step": 120
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"clip_ratio/high_max": 0.0,
|
| 806 |
+
"clip_ratio/high_mean": 0.0,
|
| 807 |
+
"clip_ratio/low_mean": 0.0,
|
| 808 |
+
"clip_ratio/low_min": 0.0,
|
| 809 |
+
"clip_ratio/region_mean": 0.0,
|
| 810 |
+
"completions/clipped_ratio": 0.0,
|
| 811 |
+
"completions/max_length": 586.2,
|
| 812 |
+
"completions/max_terminated_length": 586.2,
|
| 813 |
+
"completions/mean_length": 476.3125,
|
| 814 |
+
"completions/mean_terminated_length": 476.3125,
|
| 815 |
+
"completions/min_length": 379.4,
|
| 816 |
+
"completions/min_terminated_length": 379.4,
|
| 817 |
+
"epoch": 0.002280605728881591,
|
| 818 |
+
"frac_reward_zero_std": 0.0,
|
| 819 |
+
"grad_norm": 0.11722852289676666,
|
| 820 |
+
"learning_rate": 2e-05,
|
| 821 |
+
"loss": 0.0084,
|
| 822 |
+
"num_tokens": 1085338.0,
|
| 823 |
+
"reward": 2.8460022449493407,
|
| 824 |
+
"reward_std": 0.12902745008468627,
|
| 825 |
+
"rewards/reward_humanlike/mean": 0.08100048899650573,
|
| 826 |
+
"rewards/reward_humanlike/std": 0.0518460288643837,
|
| 827 |
+
"rewards/reward_nonslop/mean": 0.5345206022262573,
|
| 828 |
+
"rewards/reward_nonslop/std": 0.028127148374915124,
|
| 829 |
+
"rewards/reward_paragraph_structure/mean": 0.9582128286361694,
|
| 830 |
+
"rewards/reward_paragraph_structure/std": 0.052062156796455386,
|
| 831 |
+
"rewards/reward_readability_flesch/mean": 0.8341620564460754,
|
| 832 |
+
"rewards/reward_readability_flesch/std": 0.11833389699459076,
|
| 833 |
+
"rewards/reward_variance_humanlike/mean": 0.43810625076293946,
|
| 834 |
+
"rewards/reward_variance_humanlike/std": 0.06058142632246018,
|
| 835 |
+
"step": 125
|
| 836 |
+
},
|
| 837 |
+
{
|
| 838 |
+
"clip_ratio/high_max": 0.0,
|
| 839 |
+
"clip_ratio/high_mean": 0.0,
|
| 840 |
+
"clip_ratio/low_mean": 0.0,
|
| 841 |
+
"clip_ratio/low_min": 0.0,
|
| 842 |
+
"clip_ratio/region_mean": 0.0,
|
| 843 |
+
"completions/clipped_ratio": 0.0,
|
| 844 |
+
"completions/max_length": 637.2,
|
| 845 |
+
"completions/max_terminated_length": 637.2,
|
| 846 |
+
"completions/mean_length": 525.2625,
|
| 847 |
+
"completions/mean_terminated_length": 525.2625,
|
| 848 |
+
"completions/min_length": 415.6,
|
| 849 |
+
"completions/min_terminated_length": 415.6,
|
| 850 |
+
"epoch": 0.0023718299580368545,
|
| 851 |
+
"frac_reward_zero_std": 0.0,
|
| 852 |
+
"grad_norm": 0.1034693568944931,
|
| 853 |
+
"learning_rate": 2e-05,
|
| 854 |
+
"loss": -0.0015,
|
| 855 |
+
"num_tokens": 1132447.0,
|
| 856 |
+
"reward": 2.9677632331848143,
|
| 857 |
+
"reward_std": 0.13178672641515732,
|
| 858 |
+
"rewards/reward_humanlike/mean": 0.11690731346607208,
|
| 859 |
+
"rewards/reward_humanlike/std": 0.07614295929670334,
|
| 860 |
+
"rewards/reward_nonslop/mean": 0.5198043942451477,
|
| 861 |
+
"rewards/reward_nonslop/std": 0.027982910722494127,
|
| 862 |
+
"rewards/reward_paragraph_structure/mean": 0.9756827473640441,
|
| 863 |
+
"rewards/reward_paragraph_structure/std": 0.044346729014068845,
|
| 864 |
+
"rewards/reward_readability_flesch/mean": 0.8949468612670899,
|
| 865 |
+
"rewards/reward_readability_flesch/std": 0.08357911184430122,
|
| 866 |
+
"rewards/reward_variance_humanlike/mean": 0.4604219257831573,
|
| 867 |
+
"rewards/reward_variance_humanlike/std": 0.05337681397795677,
|
| 868 |
+
"step": 130
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"clip_ratio/high_max": 0.0,
|
| 872 |
+
"clip_ratio/high_mean": 0.0,
|
| 873 |
+
"clip_ratio/low_mean": 0.0,
|
| 874 |
+
"clip_ratio/low_min": 0.0,
|
| 875 |
+
"clip_ratio/region_mean": 0.0,
|
| 876 |
+
"completions/clipped_ratio": 0.0,
|
| 877 |
+
"completions/max_length": 588.0,
|
| 878 |
+
"completions/max_terminated_length": 588.0,
|
| 879 |
+
"completions/mean_length": 498.6875,
|
| 880 |
+
"completions/mean_terminated_length": 498.6875,
|
| 881 |
+
"completions/min_length": 399.0,
|
| 882 |
+
"completions/min_terminated_length": 399.0,
|
| 883 |
+
"epoch": 0.0024630541871921183,
|
| 884 |
+
"frac_reward_zero_std": 0.0,
|
| 885 |
+
"grad_norm": 0.1009395495057106,
|
| 886 |
+
"learning_rate": 2e-05,
|
| 887 |
+
"loss": -0.0043,
|
| 888 |
+
"num_tokens": 1177382.0,
|
| 889 |
+
"reward": 2.822851276397705,
|
| 890 |
+
"reward_std": 0.13398206382989883,
|
| 891 |
+
"rewards/reward_humanlike/mean": 0.06381046175956726,
|
| 892 |
+
"rewards/reward_humanlike/std": 0.0503330685198307,
|
| 893 |
+
"rewards/reward_nonslop/mean": 0.5348796844482422,
|
| 894 |
+
"rewards/reward_nonslop/std": 0.025143631175160407,
|
| 895 |
+
"rewards/reward_paragraph_structure/mean": 0.9924662351608277,
|
| 896 |
+
"rewards/reward_paragraph_structure/std": 0.03013508329167962,
|
| 897 |
+
"rewards/reward_readability_flesch/mean": 0.7840398788452149,
|
| 898 |
+
"rewards/reward_readability_flesch/std": 0.11849776804447174,
|
| 899 |
+
"rewards/reward_variance_humanlike/mean": 0.44765504002571105,
|
| 900 |
+
"rewards/reward_variance_humanlike/std": 0.045124633610248564,
|
| 901 |
+
"step": 135
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"clip_ratio/high_max": 0.0,
|
| 905 |
+
"clip_ratio/high_mean": 0.0,
|
| 906 |
+
"clip_ratio/low_mean": 0.0,
|
| 907 |
+
"clip_ratio/low_min": 0.0,
|
| 908 |
+
"clip_ratio/region_mean": 0.0,
|
| 909 |
+
"completions/clipped_ratio": 0.0,
|
| 910 |
+
"completions/max_length": 667.8,
|
| 911 |
+
"completions/max_terminated_length": 667.8,
|
| 912 |
+
"completions/mean_length": 552.2125,
|
| 913 |
+
"completions/mean_terminated_length": 552.2125,
|
| 914 |
+
"completions/min_length": 431.8,
|
| 915 |
+
"completions/min_terminated_length": 431.8,
|
| 916 |
+
"epoch": 0.002554278416347382,
|
| 917 |
+
"frac_reward_zero_std": 0.0,
|
| 918 |
+
"grad_norm": 0.10111426562070847,
|
| 919 |
+
"learning_rate": 2e-05,
|
| 920 |
+
"loss": -0.017,
|
| 921 |
+
"num_tokens": 1226679.0,
|
| 922 |
+
"reward": 2.9173266887664795,
|
| 923 |
+
"reward_std": 0.1144576370716095,
|
| 924 |
+
"rewards/reward_humanlike/mean": 0.11132953837513923,
|
| 925 |
+
"rewards/reward_humanlike/std": 0.05890989601612091,
|
| 926 |
+
"rewards/reward_nonslop/mean": 0.4942618072032928,
|
| 927 |
+
"rewards/reward_nonslop/std": 0.02765493802726269,
|
| 928 |
+
"rewards/reward_paragraph_structure/mean": 0.9944768905639648,
|
| 929 |
+
"rewards/reward_paragraph_structure/std": 0.02089656200259924,
|
| 930 |
+
"rewards/reward_readability_flesch/mean": 0.8778629779815674,
|
| 931 |
+
"rewards/reward_readability_flesch/std": 0.08600130677223206,
|
| 932 |
+
"rewards/reward_variance_humanlike/mean": 0.4393955051898956,
|
| 933 |
+
"rewards/reward_variance_humanlike/std": 0.04750688448548317,
|
| 934 |
+
"step": 140
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"clip_ratio/high_max": 0.0,
|
| 938 |
+
"clip_ratio/high_mean": 0.0,
|
| 939 |
+
"clip_ratio/low_mean": 0.0,
|
| 940 |
+
"clip_ratio/low_min": 0.0,
|
| 941 |
+
"clip_ratio/region_mean": 0.0,
|
| 942 |
+
"completions/clipped_ratio": 0.0,
|
| 943 |
+
"completions/max_length": 640.6,
|
| 944 |
+
"completions/max_terminated_length": 640.6,
|
| 945 |
+
"completions/mean_length": 534.1125,
|
| 946 |
+
"completions/mean_terminated_length": 534.1125,
|
| 947 |
+
"completions/min_length": 438.2,
|
| 948 |
+
"completions/min_terminated_length": 438.2,
|
| 949 |
+
"epoch": 0.0026455026455026454,
|
| 950 |
+
"frac_reward_zero_std": 0.0,
|
| 951 |
+
"grad_norm": 0.11239214986562729,
|
| 952 |
+
"learning_rate": 2e-05,
|
| 953 |
+
"loss": 0.0035,
|
| 954 |
+
"num_tokens": 1274592.0,
|
| 955 |
+
"reward": 3.053114986419678,
|
| 956 |
+
"reward_std": 0.11381979882717133,
|
| 957 |
+
"rewards/reward_humanlike/mean": 0.12257216051220894,
|
| 958 |
+
"rewards/reward_humanlike/std": 0.08092293813824654,
|
| 959 |
+
"rewards/reward_nonslop/mean": 0.5075180411338807,
|
| 960 |
+
"rewards/reward_nonslop/std": 0.026819777116179465,
|
| 961 |
+
"rewards/reward_paragraph_structure/mean": 0.9958648920059204,
|
| 962 |
+
"rewards/reward_paragraph_structure/std": 0.015135037153959275,
|
| 963 |
+
"rewards/reward_readability_flesch/mean": 0.9384488105773926,
|
| 964 |
+
"rewards/reward_readability_flesch/std": 0.07422738522291183,
|
| 965 |
+
"rewards/reward_variance_humanlike/mean": 0.4887110412120819,
|
| 966 |
+
"rewards/reward_variance_humanlike/std": 0.044287893921136856,
|
| 967 |
+
"step": 145
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"clip_ratio/high_max": 0.0,
|
| 971 |
+
"clip_ratio/high_mean": 0.0,
|
| 972 |
+
"clip_ratio/low_mean": 0.0,
|
| 973 |
+
"clip_ratio/low_min": 0.0,
|
| 974 |
+
"clip_ratio/region_mean": 0.0,
|
| 975 |
+
"completions/clipped_ratio": 0.0,
|
| 976 |
+
"completions/max_length": 625.8,
|
| 977 |
+
"completions/max_terminated_length": 625.8,
|
| 978 |
+
"completions/mean_length": 526.2,
|
| 979 |
+
"completions/mean_terminated_length": 526.2,
|
| 980 |
+
"completions/min_length": 432.6,
|
| 981 |
+
"completions/min_terminated_length": 432.6,
|
| 982 |
+
"epoch": 0.002736726874657909,
|
| 983 |
+
"frac_reward_zero_std": 0.0,
|
| 984 |
+
"grad_norm": 0.09958786517381668,
|
| 985 |
+
"learning_rate": 2e-05,
|
| 986 |
+
"loss": 0.0085,
|
| 987 |
+
"num_tokens": 1321840.0,
|
| 988 |
+
"reward": 2.912756013870239,
|
| 989 |
+
"reward_std": 0.12361426800489425,
|
| 990 |
+
"rewards/reward_humanlike/mean": 0.05477507412433624,
|
| 991 |
+
"rewards/reward_humanlike/std": 0.04108944982290268,
|
| 992 |
+
"rewards/reward_nonslop/mean": 0.5123514175415039,
|
| 993 |
+
"rewards/reward_nonslop/std": 0.027717596665024758,
|
| 994 |
+
"rewards/reward_paragraph_structure/mean": 0.9881778597831726,
|
| 995 |
+
"rewards/reward_paragraph_structure/std": 0.04215195477008819,
|
| 996 |
+
"rewards/reward_readability_flesch/mean": 0.8884697198867798,
|
| 997 |
+
"rewards/reward_readability_flesch/std": 0.09501284211874009,
|
| 998 |
+
"rewards/reward_variance_humanlike/mean": 0.4689819157123566,
|
| 999 |
+
"rewards/reward_variance_humanlike/std": 0.04468975365161896,
|
| 1000 |
+
"step": 150
|
| 1001 |
+
}
|
| 1002 |
+
],
|
| 1003 |
+
"logging_steps": 5,
|
| 1004 |
+
"max_steps": 250,
|
| 1005 |
+
"num_input_tokens_seen": 1321840,
|
| 1006 |
+
"num_train_epochs": 1,
|
| 1007 |
+
"save_steps": 50,
|
| 1008 |
+
"stateful_callbacks": {
|
| 1009 |
+
"TrainerControl": {
|
| 1010 |
+
"args": {
|
| 1011 |
+
"should_epoch_stop": false,
|
| 1012 |
+
"should_evaluate": false,
|
| 1013 |
+
"should_log": false,
|
| 1014 |
+
"should_save": true,
|
| 1015 |
+
"should_training_stop": false
|
| 1016 |
+
},
|
| 1017 |
+
"attributes": {}
|
| 1018 |
+
}
|
| 1019 |
+
},
|
| 1020 |
+
"total_flos": 0.0,
|
| 1021 |
+
"train_batch_size": 2,
|
| 1022 |
+
"trial_name": null,
|
| 1023 |
+
"trial_params": null
|
| 1024 |
+
}
|
checkpoint-150/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d6d1dbe50a50058c947771a7fd7c03a443069be77d949e0bd75335cc07d1af9
|
| 3 |
+
size 6865
|
checkpoint-150/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-200/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-14B
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.15.2
|
checkpoint-200/adapter_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "Qwen/Qwen3-14B",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 32,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 32,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"down_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"q_proj",
|
| 33 |
+
"up_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_rslora": false
|
| 39 |
+
}
|
checkpoint-200/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7012d37b144b1be4b97d5a7d3b44abbcbbe5937c5c2c5fda16484c87cec1a27
|
| 3 |
+
size 513877864
|
checkpoint-200/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-200/chat_template.jinja
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 87 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
checkpoint-200/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-200/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c69338a6dae8f8aaff2eb85dca23e5f2667c4b2bd754690e0eafdbfb5185362b
|
| 3 |
+
size 1028078067
|
checkpoint-200/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b68a925ba8c76a0adbb4736675a87f15dd852afb04a31e061101c18d65d63df
|
| 3 |
+
size 14645
|
checkpoint-200/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6081ec7dd1df8dbae82c29a2535e4e2a776621f54df52246eada222f4cfa3133
|
| 3 |
+
size 1465
|
checkpoint-200/special_tokens_map.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|im_end|>"
|
| 25 |
+
}
|
checkpoint-200/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de053c72a4ae289224ac988558897303006ceea1db22f30b97d0d856969ea6b9
|
| 3 |
+
size 11422818
|
checkpoint-200/tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 131072,
|
| 235 |
+
"pad_token": "<|im_end|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
checkpoint-200/trainer_state.json
ADDED
|
@@ -0,0 +1,1354 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.0036489691662105455,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 200,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 16 |
+
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 620.2,
|
| 20 |
+
"completions/max_terminated_length": 620.2,
|
| 21 |
+
"completions/mean_length": 536.3875,
|
| 22 |
+
"completions/mean_terminated_length": 536.3875,
|
| 23 |
+
"completions/min_length": 455.6,
|
| 24 |
+
"completions/min_terminated_length": 455.6,
|
| 25 |
+
"epoch": 9.122422915526363e-05,
|
| 26 |
+
"frac_reward_zero_std": 0.0,
|
| 27 |
+
"grad_norm": 0.06800810992717743,
|
| 28 |
+
"learning_rate": 2e-05,
|
| 29 |
+
"loss": -0.0026,
|
| 30 |
+
"num_tokens": 48111.0,
|
| 31 |
+
"reward": 2.393585443496704,
|
| 32 |
+
"reward_std": 0.14288972318172455,
|
| 33 |
+
"rewards/reward_humanlike/mean": -0.003280111402273178,
|
| 34 |
+
"rewards/reward_humanlike/std": 0.002425189537461847,
|
| 35 |
+
"rewards/reward_nonslop/mean": 0.45034117698669435,
|
| 36 |
+
"rewards/reward_nonslop/std": 0.021841670200228692,
|
| 37 |
+
"rewards/reward_paragraph_structure/mean": 0.9998971700668335,
|
| 38 |
+
"rewards/reward_paragraph_structure/std": 0.00036894355434924364,
|
| 39 |
+
"rewards/reward_readability_flesch/mean": 0.5846633613109589,
|
| 40 |
+
"rewards/reward_readability_flesch/std": 0.11768133006989956,
|
| 41 |
+
"rewards/reward_variance_humanlike/mean": 0.36196385622024535,
|
| 42 |
+
"rewards/reward_variance_humanlike/std": 0.036638665944337845,
|
| 43 |
+
"step": 5
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"clip_ratio/high_max": 0.0,
|
| 47 |
+
"clip_ratio/high_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_mean": 0.0,
|
| 49 |
+
"clip_ratio/low_min": 0.0,
|
| 50 |
+
"clip_ratio/region_mean": 0.0,
|
| 51 |
+
"completions/clipped_ratio": 0.0,
|
| 52 |
+
"completions/max_length": 646.0,
|
| 53 |
+
"completions/max_terminated_length": 646.0,
|
| 54 |
+
"completions/mean_length": 551.5,
|
| 55 |
+
"completions/mean_terminated_length": 551.5,
|
| 56 |
+
"completions/min_length": 446.2,
|
| 57 |
+
"completions/min_terminated_length": 446.2,
|
| 58 |
+
"epoch": 0.00018244845831052726,
|
| 59 |
+
"frac_reward_zero_std": 0.0,
|
| 60 |
+
"grad_norm": 0.07684256136417389,
|
| 61 |
+
"learning_rate": 2e-05,
|
| 62 |
+
"loss": 0.0074,
|
| 63 |
+
"num_tokens": 97303.0,
|
| 64 |
+
"reward": 2.391454339027405,
|
| 65 |
+
"reward_std": 0.1808932200074196,
|
| 66 |
+
"rewards/reward_humanlike/mean": -0.0016780316829681397,
|
| 67 |
+
"rewards/reward_humanlike/std": 0.014642862777691334,
|
| 68 |
+
"rewards/reward_nonslop/mean": 0.44268596172332764,
|
| 69 |
+
"rewards/reward_nonslop/std": 0.028079804033041,
|
| 70 |
+
"rewards/reward_paragraph_structure/mean": 1.0,
|
| 71 |
+
"rewards/reward_paragraph_structure/std": 0.0,
|
| 72 |
+
"rewards/reward_readability_flesch/mean": 0.57281613945961,
|
| 73 |
+
"rewards/reward_readability_flesch/std": 0.16779391318559647,
|
| 74 |
+
"rewards/reward_variance_humanlike/mean": 0.3776302635669708,
|
| 75 |
+
"rewards/reward_variance_humanlike/std": 0.045258138328790665,
|
| 76 |
+
"step": 10
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"clip_ratio/high_max": 0.0,
|
| 80 |
+
"clip_ratio/high_mean": 0.0,
|
| 81 |
+
"clip_ratio/low_mean": 0.0,
|
| 82 |
+
"clip_ratio/low_min": 0.0,
|
| 83 |
+
"clip_ratio/region_mean": 0.0,
|
| 84 |
+
"completions/clipped_ratio": 0.0,
|
| 85 |
+
"completions/max_length": 598.0,
|
| 86 |
+
"completions/max_terminated_length": 598.0,
|
| 87 |
+
"completions/mean_length": 516.1125,
|
| 88 |
+
"completions/mean_terminated_length": 516.1125,
|
| 89 |
+
"completions/min_length": 431.6,
|
| 90 |
+
"completions/min_terminated_length": 431.6,
|
| 91 |
+
"epoch": 0.0002736726874657909,
|
| 92 |
+
"frac_reward_zero_std": 0.0,
|
| 93 |
+
"grad_norm": 0.07912639528512955,
|
| 94 |
+
"learning_rate": 2e-05,
|
| 95 |
+
"loss": 0.0026,
|
| 96 |
+
"num_tokens": 143712.0,
|
| 97 |
+
"reward": 2.121282529830933,
|
| 98 |
+
"reward_std": 0.19594088345766067,
|
| 99 |
+
"rewards/reward_humanlike/mean": -0.005437415838241577,
|
| 100 |
+
"rewards/reward_humanlike/std": 0.0020546794403344393,
|
| 101 |
+
"rewards/reward_nonslop/mean": 0.44375383853912354,
|
| 102 |
+
"rewards/reward_nonslop/std": 0.025456106290221214,
|
| 103 |
+
"rewards/reward_paragraph_structure/mean": 0.9997280359268188,
|
| 104 |
+
"rewards/reward_paragraph_structure/std": 0.001087829563766718,
|
| 105 |
+
"rewards/reward_readability_flesch/mean": 0.340261435508728,
|
| 106 |
+
"rewards/reward_readability_flesch/std": 0.17545561231672763,
|
| 107 |
+
"rewards/reward_variance_humanlike/mean": 0.3429765820503235,
|
| 108 |
+
"rewards/reward_variance_humanlike/std": 0.04073530249297619,
|
| 109 |
+
"step": 15
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"clip_ratio/high_max": 0.0,
|
| 113 |
+
"clip_ratio/high_mean": 0.0,
|
| 114 |
+
"clip_ratio/low_mean": 0.0,
|
| 115 |
+
"clip_ratio/low_min": 0.0,
|
| 116 |
+
"clip_ratio/region_mean": 0.0,
|
| 117 |
+
"completions/clipped_ratio": 0.0,
|
| 118 |
+
"completions/max_length": 632.4,
|
| 119 |
+
"completions/max_terminated_length": 632.4,
|
| 120 |
+
"completions/mean_length": 511.4,
|
| 121 |
+
"completions/mean_terminated_length": 511.4,
|
| 122 |
+
"completions/min_length": 387.0,
|
| 123 |
+
"completions/min_terminated_length": 387.0,
|
| 124 |
+
"epoch": 0.00036489691662105453,
|
| 125 |
+
"frac_reward_zero_std": 0.0,
|
| 126 |
+
"grad_norm": 0.08999043703079224,
|
| 127 |
+
"learning_rate": 2e-05,
|
| 128 |
+
"loss": 0.0183,
|
| 129 |
+
"num_tokens": 189696.0,
|
| 130 |
+
"reward": 2.6498445510864257,
|
| 131 |
+
"reward_std": 0.2029375523328781,
|
| 132 |
+
"rewards/reward_humanlike/mean": 0.00019632279872894287,
|
| 133 |
+
"rewards/reward_humanlike/std": 0.006884497962892056,
|
| 134 |
+
"rewards/reward_nonslop/mean": 0.4884443640708923,
|
| 135 |
+
"rewards/reward_nonslop/std": 0.0355165209621191,
|
| 136 |
+
"rewards/reward_paragraph_structure/mean": 0.9939258456230163,
|
| 137 |
+
"rewards/reward_paragraph_structure/std": 0.023617163486778735,
|
| 138 |
+
"rewards/reward_readability_flesch/mean": 0.8020971655845642,
|
| 139 |
+
"rewards/reward_readability_flesch/std": 0.17971589416265488,
|
| 140 |
+
"rewards/reward_variance_humanlike/mean": 0.3651808500289917,
|
| 141 |
+
"rewards/reward_variance_humanlike/std": 0.042153649032115936,
|
| 142 |
+
"step": 20
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"clip_ratio/high_max": 0.0,
|
| 146 |
+
"clip_ratio/high_mean": 0.0,
|
| 147 |
+
"clip_ratio/low_mean": 0.0,
|
| 148 |
+
"clip_ratio/low_min": 0.0,
|
| 149 |
+
"clip_ratio/region_mean": 0.0,
|
| 150 |
+
"completions/clipped_ratio": 0.0,
|
| 151 |
+
"completions/max_length": 587.0,
|
| 152 |
+
"completions/max_terminated_length": 587.0,
|
| 153 |
+
"completions/mean_length": 457.2375,
|
| 154 |
+
"completions/mean_terminated_length": 457.2375,
|
| 155 |
+
"completions/min_length": 343.8,
|
| 156 |
+
"completions/min_terminated_length": 343.8,
|
| 157 |
+
"epoch": 0.0004561211457763182,
|
| 158 |
+
"frac_reward_zero_std": 0.0,
|
| 159 |
+
"grad_norm": 0.09677507728338242,
|
| 160 |
+
"learning_rate": 2e-05,
|
| 161 |
+
"loss": -0.0021,
|
| 162 |
+
"num_tokens": 231427.0,
|
| 163 |
+
"reward": 2.66627516746521,
|
| 164 |
+
"reward_std": 0.18921945840120316,
|
| 165 |
+
"rewards/reward_humanlike/mean": 0.020775890350341795,
|
| 166 |
+
"rewards/reward_humanlike/std": 0.04260522716213018,
|
| 167 |
+
"rewards/reward_nonslop/mean": 0.4985057771205902,
|
| 168 |
+
"rewards/reward_nonslop/std": 0.03064997084438801,
|
| 169 |
+
"rewards/reward_paragraph_structure/mean": 0.977533757686615,
|
| 170 |
+
"rewards/reward_paragraph_structure/std": 0.059077487885952,
|
| 171 |
+
"rewards/reward_readability_flesch/mean": 0.7888182640075684,
|
| 172 |
+
"rewards/reward_readability_flesch/std": 0.1475653052330017,
|
| 173 |
+
"rewards/reward_variance_humanlike/mean": 0.380641496181488,
|
| 174 |
+
"rewards/reward_variance_humanlike/std": 0.04412947595119476,
|
| 175 |
+
"step": 25
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"clip_ratio/high_max": 0.0,
|
| 179 |
+
"clip_ratio/high_mean": 0.0,
|
| 180 |
+
"clip_ratio/low_mean": 0.0,
|
| 181 |
+
"clip_ratio/low_min": 0.0,
|
| 182 |
+
"clip_ratio/region_mean": 0.0,
|
| 183 |
+
"completions/clipped_ratio": 0.0,
|
| 184 |
+
"completions/max_length": 597.6,
|
| 185 |
+
"completions/max_terminated_length": 597.6,
|
| 186 |
+
"completions/mean_length": 497.3375,
|
| 187 |
+
"completions/mean_terminated_length": 497.3375,
|
| 188 |
+
"completions/min_length": 395.4,
|
| 189 |
+
"completions/min_terminated_length": 395.4,
|
| 190 |
+
"epoch": 0.0005473453749315818,
|
| 191 |
+
"frac_reward_zero_std": 0.0,
|
| 192 |
+
"grad_norm": 0.08108917623758316,
|
| 193 |
+
"learning_rate": 2e-05,
|
| 194 |
+
"loss": 0.0017,
|
| 195 |
+
"num_tokens": 276318.0,
|
| 196 |
+
"reward": 2.7883635997772216,
|
| 197 |
+
"reward_std": 0.17138139009475709,
|
| 198 |
+
"rewards/reward_humanlike/mean": 0.11761673018336297,
|
| 199 |
+
"rewards/reward_humanlike/std": 0.08830970991402864,
|
| 200 |
+
"rewards/reward_nonslop/mean": 0.5173340082168579,
|
| 201 |
+
"rewards/reward_nonslop/std": 0.029454480484128,
|
| 202 |
+
"rewards/reward_paragraph_structure/mean": 0.9722555875778198,
|
| 203 |
+
"rewards/reward_paragraph_structure/std": 0.04261327683925629,
|
| 204 |
+
"rewards/reward_readability_flesch/mean": 0.7764949321746826,
|
| 205 |
+
"rewards/reward_readability_flesch/std": 0.10386961698532104,
|
| 206 |
+
"rewards/reward_variance_humanlike/mean": 0.4046623885631561,
|
| 207 |
+
"rewards/reward_variance_humanlike/std": 0.045019736886024474,
|
| 208 |
+
"step": 30
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"clip_ratio/high_max": 0.0,
|
| 212 |
+
"clip_ratio/high_mean": 0.0,
|
| 213 |
+
"clip_ratio/low_mean": 0.0,
|
| 214 |
+
"clip_ratio/low_min": 0.0,
|
| 215 |
+
"clip_ratio/region_mean": 0.0,
|
| 216 |
+
"completions/clipped_ratio": 0.0,
|
| 217 |
+
"completions/max_length": 617.4,
|
| 218 |
+
"completions/max_terminated_length": 617.4,
|
| 219 |
+
"completions/mean_length": 523.825,
|
| 220 |
+
"completions/mean_terminated_length": 523.825,
|
| 221 |
+
"completions/min_length": 409.6,
|
| 222 |
+
"completions/min_terminated_length": 409.6,
|
| 223 |
+
"epoch": 0.0006385696040868455,
|
| 224 |
+
"frac_reward_zero_std": 0.0,
|
| 225 |
+
"grad_norm": 0.08894547820091248,
|
| 226 |
+
"learning_rate": 2e-05,
|
| 227 |
+
"loss": -0.0081,
|
| 228 |
+
"num_tokens": 323376.0,
|
| 229 |
+
"reward": 2.7335947513580323,
|
| 230 |
+
"reward_std": 0.12913600355386734,
|
| 231 |
+
"rewards/reward_humanlike/mean": 0.044519555568695066,
|
| 232 |
+
"rewards/reward_humanlike/std": 0.051969482377171514,
|
| 233 |
+
"rewards/reward_nonslop/mean": 0.5143645763397217,
|
| 234 |
+
"rewards/reward_nonslop/std": 0.024226398020982743,
|
| 235 |
+
"rewards/reward_paragraph_structure/mean": 0.9907094240188599,
|
| 236 |
+
"rewards/reward_paragraph_structure/std": 0.023819129168987273,
|
| 237 |
+
"rewards/reward_readability_flesch/mean": 0.7974974989891053,
|
| 238 |
+
"rewards/reward_readability_flesch/std": 0.12351922243833542,
|
| 239 |
+
"rewards/reward_variance_humanlike/mean": 0.38650373220443723,
|
| 240 |
+
"rewards/reward_variance_humanlike/std": 0.05399425402283668,
|
| 241 |
+
"step": 35
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"clip_ratio/high_max": 0.0,
|
| 245 |
+
"clip_ratio/high_mean": 0.0,
|
| 246 |
+
"clip_ratio/low_mean": 0.0,
|
| 247 |
+
"clip_ratio/low_min": 0.0,
|
| 248 |
+
"clip_ratio/region_mean": 0.0,
|
| 249 |
+
"completions/clipped_ratio": 0.0,
|
| 250 |
+
"completions/max_length": 846.8,
|
| 251 |
+
"completions/max_terminated_length": 846.8,
|
| 252 |
+
"completions/mean_length": 555.05,
|
| 253 |
+
"completions/mean_terminated_length": 555.05,
|
| 254 |
+
"completions/min_length": 432.2,
|
| 255 |
+
"completions/min_terminated_length": 432.2,
|
| 256 |
+
"epoch": 0.0007297938332421091,
|
| 257 |
+
"frac_reward_zero_std": 0.0,
|
| 258 |
+
"grad_norm": 0.089969202876091,
|
| 259 |
+
"learning_rate": 2e-05,
|
| 260 |
+
"loss": 0.0135,
|
| 261 |
+
"num_tokens": 372868.0,
|
| 262 |
+
"reward": 2.6368720293045045,
|
| 263 |
+
"reward_std": 0.17332236915826799,
|
| 264 |
+
"rewards/reward_humanlike/mean": 0.05930730104446411,
|
| 265 |
+
"rewards/reward_humanlike/std": 0.04687353018671274,
|
| 266 |
+
"rewards/reward_nonslop/mean": 0.4885416626930237,
|
| 267 |
+
"rewards/reward_nonslop/std": 0.03745536170899868,
|
| 268 |
+
"rewards/reward_paragraph_structure/mean": 0.890105378627777,
|
| 269 |
+
"rewards/reward_paragraph_structure/std": 0.09538187831640244,
|
| 270 |
+
"rewards/reward_readability_flesch/mean": 0.7819342494010926,
|
| 271 |
+
"rewards/reward_readability_flesch/std": 0.11071507334709167,
|
| 272 |
+
"rewards/reward_variance_humanlike/mean": 0.4169835090637207,
|
| 273 |
+
"rewards/reward_variance_humanlike/std": 0.0439291026443243,
|
| 274 |
+
"step": 40
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"clip_ratio/high_max": 0.0,
|
| 278 |
+
"clip_ratio/high_mean": 0.0,
|
| 279 |
+
"clip_ratio/low_mean": 0.0,
|
| 280 |
+
"clip_ratio/low_min": 0.0,
|
| 281 |
+
"clip_ratio/region_mean": 0.0,
|
| 282 |
+
"completions/clipped_ratio": 0.0,
|
| 283 |
+
"completions/max_length": 613.2,
|
| 284 |
+
"completions/max_terminated_length": 613.2,
|
| 285 |
+
"completions/mean_length": 505.075,
|
| 286 |
+
"completions/mean_terminated_length": 505.075,
|
| 287 |
+
"completions/min_length": 374.0,
|
| 288 |
+
"completions/min_terminated_length": 374.0,
|
| 289 |
+
"epoch": 0.0008210180623973727,
|
| 290 |
+
"frac_reward_zero_std": 0.0,
|
| 291 |
+
"grad_norm": 0.0890246331691742,
|
| 292 |
+
"learning_rate": 2e-05,
|
| 293 |
+
"loss": 0.0102,
|
| 294 |
+
"num_tokens": 418490.0,
|
| 295 |
+
"reward": 2.6527084350585937,
|
| 296 |
+
"reward_std": 0.16761653274297714,
|
| 297 |
+
"rewards/reward_humanlike/mean": 0.08072967529296875,
|
| 298 |
+
"rewards/reward_humanlike/std": 0.06607948099263013,
|
| 299 |
+
"rewards/reward_nonslop/mean": 0.5106609463691711,
|
| 300 |
+
"rewards/reward_nonslop/std": 0.0351794958114624,
|
| 301 |
+
"rewards/reward_paragraph_structure/mean": 0.9813281297683716,
|
| 302 |
+
"rewards/reward_paragraph_structure/std": 0.05892824307084084,
|
| 303 |
+
"rewards/reward_readability_flesch/mean": 0.6913772821426392,
|
| 304 |
+
"rewards/reward_readability_flesch/std": 0.13855507373809814,
|
| 305 |
+
"rewards/reward_variance_humanlike/mean": 0.38861238956451416,
|
| 306 |
+
"rewards/reward_variance_humanlike/std": 0.039696966856718065,
|
| 307 |
+
"step": 45
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completions/clipped_ratio": 0.0,
|
| 316 |
+
"completions/max_length": 607.2,
|
| 317 |
+
"completions/max_terminated_length": 607.2,
|
| 318 |
+
"completions/mean_length": 500.2125,
|
| 319 |
+
"completions/mean_terminated_length": 500.2125,
|
| 320 |
+
"completions/min_length": 407.0,
|
| 321 |
+
"completions/min_terminated_length": 407.0,
|
| 322 |
+
"epoch": 0.0009122422915526364,
|
| 323 |
+
"frac_reward_zero_std": 0.0,
|
| 324 |
+
"grad_norm": 0.07912778109312057,
|
| 325 |
+
"learning_rate": 2e-05,
|
| 326 |
+
"loss": 0.005,
|
| 327 |
+
"num_tokens": 463659.0,
|
| 328 |
+
"reward": 2.753040885925293,
|
| 329 |
+
"reward_std": 0.136872561275959,
|
| 330 |
+
"rewards/reward_humanlike/mean": 0.03859691172838211,
|
| 331 |
+
"rewards/reward_humanlike/std": 0.035087807662785055,
|
| 332 |
+
"rewards/reward_nonslop/mean": 0.5123575925827026,
|
| 333 |
+
"rewards/reward_nonslop/std": 0.02690323181450367,
|
| 334 |
+
"rewards/reward_paragraph_structure/mean": 0.992300295829773,
|
| 335 |
+
"rewards/reward_paragraph_structure/std": 0.030798836052417754,
|
| 336 |
+
"rewards/reward_readability_flesch/mean": 0.8399829745292664,
|
| 337 |
+
"rewards/reward_readability_flesch/std": 0.11433027684688568,
|
| 338 |
+
"rewards/reward_variance_humanlike/mean": 0.3698031187057495,
|
| 339 |
+
"rewards/reward_variance_humanlike/std": 0.04352555349469185,
|
| 340 |
+
"step": 50
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"clip_ratio/high_max": 0.0,
|
| 344 |
+
"clip_ratio/high_mean": 0.0,
|
| 345 |
+
"clip_ratio/low_mean": 0.0,
|
| 346 |
+
"clip_ratio/low_min": 0.0,
|
| 347 |
+
"clip_ratio/region_mean": 0.0,
|
| 348 |
+
"completions/clipped_ratio": 0.0,
|
| 349 |
+
"completions/max_length": 562.0,
|
| 350 |
+
"completions/max_terminated_length": 562.0,
|
| 351 |
+
"completions/mean_length": 444.2875,
|
| 352 |
+
"completions/mean_terminated_length": 444.2875,
|
| 353 |
+
"completions/min_length": 313.0,
|
| 354 |
+
"completions/min_terminated_length": 313.0,
|
| 355 |
+
"epoch": 0.0010034665207079,
|
| 356 |
+
"frac_reward_zero_std": 0.0,
|
| 357 |
+
"grad_norm": 0.0981728583574295,
|
| 358 |
+
"learning_rate": 2e-05,
|
| 359 |
+
"loss": -0.0035,
|
| 360 |
+
"num_tokens": 504402.0,
|
| 361 |
+
"reward": 2.7707664489746096,
|
| 362 |
+
"reward_std": 0.15653531849384308,
|
| 363 |
+
"rewards/reward_humanlike/mean": 0.06527388915419578,
|
| 364 |
+
"rewards/reward_humanlike/std": 0.038607833255082366,
|
| 365 |
+
"rewards/reward_nonslop/mean": 0.5381535172462464,
|
| 366 |
+
"rewards/reward_nonslop/std": 0.030977290123701096,
|
| 367 |
+
"rewards/reward_paragraph_structure/mean": 0.9606678128242493,
|
| 368 |
+
"rewards/reward_paragraph_structure/std": 0.11089053153991699,
|
| 369 |
+
"rewards/reward_readability_flesch/mean": 0.7880517601966858,
|
| 370 |
+
"rewards/reward_readability_flesch/std": 0.14046915918588637,
|
| 371 |
+
"rewards/reward_variance_humanlike/mean": 0.4186194181442261,
|
| 372 |
+
"rewards/reward_variance_humanlike/std": 0.0556840606033802,
|
| 373 |
+
"step": 55
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"clip_ratio/high_max": 0.0,
|
| 377 |
+
"clip_ratio/high_mean": 0.0,
|
| 378 |
+
"clip_ratio/low_mean": 0.0,
|
| 379 |
+
"clip_ratio/low_min": 0.0,
|
| 380 |
+
"clip_ratio/region_mean": 0.0,
|
| 381 |
+
"completions/clipped_ratio": 0.0,
|
| 382 |
+
"completions/max_length": 576.2,
|
| 383 |
+
"completions/max_terminated_length": 576.2,
|
| 384 |
+
"completions/mean_length": 473.1625,
|
| 385 |
+
"completions/mean_terminated_length": 473.1625,
|
| 386 |
+
"completions/min_length": 373.8,
|
| 387 |
+
"completions/min_terminated_length": 373.8,
|
| 388 |
+
"epoch": 0.0010946907498631637,
|
| 389 |
+
"frac_reward_zero_std": 0.0,
|
| 390 |
+
"grad_norm": 0.0779431164264679,
|
| 391 |
+
"learning_rate": 2e-05,
|
| 392 |
+
"loss": 0.0033,
|
| 393 |
+
"num_tokens": 547375.0,
|
| 394 |
+
"reward": 2.721493101119995,
|
| 395 |
+
"reward_std": 0.16468897759914397,
|
| 396 |
+
"rewards/reward_humanlike/mean": 0.06399692744016647,
|
| 397 |
+
"rewards/reward_humanlike/std": 0.06561810113489627,
|
| 398 |
+
"rewards/reward_nonslop/mean": 0.526066243648529,
|
| 399 |
+
"rewards/reward_nonslop/std": 0.03075612857937813,
|
| 400 |
+
"rewards/reward_paragraph_structure/mean": 0.9890687108039856,
|
| 401 |
+
"rewards/reward_paragraph_structure/std": 0.043725161254405974,
|
| 402 |
+
"rewards/reward_readability_flesch/mean": 0.7518861651420593,
|
| 403 |
+
"rewards/reward_readability_flesch/std": 0.13989782482385635,
|
| 404 |
+
"rewards/reward_variance_humanlike/mean": 0.39047507643699647,
|
| 405 |
+
"rewards/reward_variance_humanlike/std": 0.04762849882245064,
|
| 406 |
+
"step": 60
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.0,
|
| 410 |
+
"clip_ratio/high_mean": 0.0,
|
| 411 |
+
"clip_ratio/low_mean": 0.0,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.0,
|
| 414 |
+
"completions/clipped_ratio": 0.0,
|
| 415 |
+
"completions/max_length": 578.8,
|
| 416 |
+
"completions/max_terminated_length": 578.8,
|
| 417 |
+
"completions/mean_length": 483.25,
|
| 418 |
+
"completions/mean_terminated_length": 483.25,
|
| 419 |
+
"completions/min_length": 392.0,
|
| 420 |
+
"completions/min_terminated_length": 392.0,
|
| 421 |
+
"epoch": 0.0011859149790184272,
|
| 422 |
+
"frac_reward_zero_std": 0.0,
|
| 423 |
+
"grad_norm": 0.08613153547048569,
|
| 424 |
+
"learning_rate": 2e-05,
|
| 425 |
+
"loss": -0.0079,
|
| 426 |
+
"num_tokens": 591107.0,
|
| 427 |
+
"reward": 2.756886434555054,
|
| 428 |
+
"reward_std": 0.15308991372585296,
|
| 429 |
+
"rewards/reward_humanlike/mean": 0.03657452017068863,
|
| 430 |
+
"rewards/reward_humanlike/std": 0.030589387845247985,
|
| 431 |
+
"rewards/reward_nonslop/mean": 0.5334658443927764,
|
| 432 |
+
"rewards/reward_nonslop/std": 0.02915770635008812,
|
| 433 |
+
"rewards/reward_paragraph_structure/mean": 0.9779379844665528,
|
| 434 |
+
"rewards/reward_paragraph_structure/std": 0.07469315528869629,
|
| 435 |
+
"rewards/reward_readability_flesch/mean": 0.8177438259124756,
|
| 436 |
+
"rewards/reward_readability_flesch/std": 0.12392935305833816,
|
| 437 |
+
"rewards/reward_variance_humanlike/mean": 0.3911642551422119,
|
| 438 |
+
"rewards/reward_variance_humanlike/std": 0.04321202002465725,
|
| 439 |
+
"step": 65
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"clip_ratio/high_max": 0.0,
|
| 443 |
+
"clip_ratio/high_mean": 0.0,
|
| 444 |
+
"clip_ratio/low_mean": 0.0,
|
| 445 |
+
"clip_ratio/low_min": 0.0,
|
| 446 |
+
"clip_ratio/region_mean": 0.0,
|
| 447 |
+
"completions/clipped_ratio": 0.0,
|
| 448 |
+
"completions/max_length": 607.0,
|
| 449 |
+
"completions/max_terminated_length": 607.0,
|
| 450 |
+
"completions/mean_length": 494.2,
|
| 451 |
+
"completions/mean_terminated_length": 494.2,
|
| 452 |
+
"completions/min_length": 396.0,
|
| 453 |
+
"completions/min_terminated_length": 396.0,
|
| 454 |
+
"epoch": 0.001277139208173691,
|
| 455 |
+
"frac_reward_zero_std": 0.0,
|
| 456 |
+
"grad_norm": 0.08903255313634872,
|
| 457 |
+
"learning_rate": 2e-05,
|
| 458 |
+
"loss": 0.0097,
|
| 459 |
+
"num_tokens": 635795.0,
|
| 460 |
+
"reward": 2.869403123855591,
|
| 461 |
+
"reward_std": 0.12632807344198227,
|
| 462 |
+
"rewards/reward_humanlike/mean": 0.04444831982254982,
|
| 463 |
+
"rewards/reward_humanlike/std": 0.036120910011231896,
|
| 464 |
+
"rewards/reward_nonslop/mean": 0.5243099689483642,
|
| 465 |
+
"rewards/reward_nonslop/std": 0.027720437198877335,
|
| 466 |
+
"rewards/reward_paragraph_structure/mean": 0.9873847007751465,
|
| 467 |
+
"rewards/reward_paragraph_structure/std": 0.04481239095330238,
|
| 468 |
+
"rewards/reward_readability_flesch/mean": 0.9202077388763428,
|
| 469 |
+
"rewards/reward_readability_flesch/std": 0.09855079799890518,
|
| 470 |
+
"rewards/reward_variance_humanlike/mean": 0.39305235743522643,
|
| 471 |
+
"rewards/reward_variance_humanlike/std": 0.04738411866128445,
|
| 472 |
+
"step": 70
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"clip_ratio/high_max": 0.0,
|
| 476 |
+
"clip_ratio/high_mean": 0.0,
|
| 477 |
+
"clip_ratio/low_mean": 0.0,
|
| 478 |
+
"clip_ratio/low_min": 0.0,
|
| 479 |
+
"clip_ratio/region_mean": 0.0,
|
| 480 |
+
"completions/clipped_ratio": 0.0,
|
| 481 |
+
"completions/max_length": 554.2,
|
| 482 |
+
"completions/max_terminated_length": 554.2,
|
| 483 |
+
"completions/mean_length": 441.2,
|
| 484 |
+
"completions/mean_terminated_length": 441.2,
|
| 485 |
+
"completions/min_length": 343.0,
|
| 486 |
+
"completions/min_terminated_length": 343.0,
|
| 487 |
+
"epoch": 0.0013683634373289546,
|
| 488 |
+
"frac_reward_zero_std": 0.0,
|
| 489 |
+
"grad_norm": 0.08839516341686249,
|
| 490 |
+
"learning_rate": 2e-05,
|
| 491 |
+
"loss": 0.006,
|
| 492 |
+
"num_tokens": 676227.0,
|
| 493 |
+
"reward": 2.7607101917266847,
|
| 494 |
+
"reward_std": 0.14567108005285262,
|
| 495 |
+
"rewards/reward_humanlike/mean": 0.0049436971545219425,
|
| 496 |
+
"rewards/reward_humanlike/std": 0.009033319354057313,
|
| 497 |
+
"rewards/reward_nonslop/mean": 0.5163205862045288,
|
| 498 |
+
"rewards/reward_nonslop/std": 0.034804318100214005,
|
| 499 |
+
"rewards/reward_paragraph_structure/mean": 0.9944571018218994,
|
| 500 |
+
"rewards/reward_paragraph_structure/std": 0.022171604633331298,
|
| 501 |
+
"rewards/reward_readability_flesch/mean": 0.8619415044784546,
|
| 502 |
+
"rewards/reward_readability_flesch/std": 0.12174343764781952,
|
| 503 |
+
"rewards/reward_variance_humanlike/mean": 0.38304726481437684,
|
| 504 |
+
"rewards/reward_variance_humanlike/std": 0.05802188515663147,
|
| 505 |
+
"step": 75
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"clip_ratio/high_max": 0.0,
|
| 509 |
+
"clip_ratio/high_mean": 0.0,
|
| 510 |
+
"clip_ratio/low_mean": 0.0,
|
| 511 |
+
"clip_ratio/low_min": 0.0,
|
| 512 |
+
"clip_ratio/region_mean": 0.0,
|
| 513 |
+
"completions/clipped_ratio": 0.0,
|
| 514 |
+
"completions/max_length": 717.2,
|
| 515 |
+
"completions/max_terminated_length": 717.2,
|
| 516 |
+
"completions/mean_length": 521.9,
|
| 517 |
+
"completions/mean_terminated_length": 521.9,
|
| 518 |
+
"completions/min_length": 412.2,
|
| 519 |
+
"completions/min_terminated_length": 412.2,
|
| 520 |
+
"epoch": 0.0014595876664842181,
|
| 521 |
+
"frac_reward_zero_std": 0.0,
|
| 522 |
+
"grad_norm": 0.0736362412571907,
|
| 523 |
+
"learning_rate": 2e-05,
|
| 524 |
+
"loss": 0.0207,
|
| 525 |
+
"num_tokens": 723019.0,
|
| 526 |
+
"reward": 2.7467071056365966,
|
| 527 |
+
"reward_std": 0.13217758685350417,
|
| 528 |
+
"rewards/reward_humanlike/mean": 0.04404948055744171,
|
| 529 |
+
"rewards/reward_humanlike/std": 0.03210974643006921,
|
| 530 |
+
"rewards/reward_nonslop/mean": 0.5157673060894012,
|
| 531 |
+
"rewards/reward_nonslop/std": 0.03307870253920555,
|
| 532 |
+
"rewards/reward_paragraph_structure/mean": 0.9820503711700439,
|
| 533 |
+
"rewards/reward_paragraph_structure/std": 0.06460869461297988,
|
| 534 |
+
"rewards/reward_readability_flesch/mean": 0.8017061710357666,
|
| 535 |
+
"rewards/reward_readability_flesch/std": 0.09596328362822533,
|
| 536 |
+
"rewards/reward_variance_humanlike/mean": 0.4031337320804596,
|
| 537 |
+
"rewards/reward_variance_humanlike/std": 0.038825053721666336,
|
| 538 |
+
"step": 80
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.0,
|
| 542 |
+
"clip_ratio/high_mean": 0.0,
|
| 543 |
+
"clip_ratio/low_mean": 0.0,
|
| 544 |
+
"clip_ratio/low_min": 0.0,
|
| 545 |
+
"clip_ratio/region_mean": 0.0,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 568.2,
|
| 548 |
+
"completions/max_terminated_length": 568.2,
|
| 549 |
+
"completions/mean_length": 492.875,
|
| 550 |
+
"completions/mean_terminated_length": 492.875,
|
| 551 |
+
"completions/min_length": 405.2,
|
| 552 |
+
"completions/min_terminated_length": 405.2,
|
| 553 |
+
"epoch": 0.0015508118956394819,
|
| 554 |
+
"frac_reward_zero_std": 0.0,
|
| 555 |
+
"grad_norm": 0.09337656199932098,
|
| 556 |
+
"learning_rate": 2e-05,
|
| 557 |
+
"loss": 0.0205,
|
| 558 |
+
"num_tokens": 767585.0,
|
| 559 |
+
"reward": 2.8245923042297365,
|
| 560 |
+
"reward_std": 0.12125235199928283,
|
| 561 |
+
"rewards/reward_humanlike/mean": 0.04374306052923203,
|
| 562 |
+
"rewards/reward_humanlike/std": 0.05065076029859483,
|
| 563 |
+
"rewards/reward_nonslop/mean": 0.5121960043907166,
|
| 564 |
+
"rewards/reward_nonslop/std": 0.024268346652388573,
|
| 565 |
+
"rewards/reward_paragraph_structure/mean": 0.9952531695365906,
|
| 566 |
+
"rewards/reward_paragraph_structure/std": 0.01898730993270874,
|
| 567 |
+
"rewards/reward_readability_flesch/mean": 0.8540295481681823,
|
| 568 |
+
"rewards/reward_readability_flesch/std": 0.11251321136951446,
|
| 569 |
+
"rewards/reward_variance_humanlike/mean": 0.4193705081939697,
|
| 570 |
+
"rewards/reward_variance_humanlike/std": 0.0530940480530262,
|
| 571 |
+
"step": 85
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.0,
|
| 575 |
+
"clip_ratio/high_mean": 0.0,
|
| 576 |
+
"clip_ratio/low_mean": 0.0,
|
| 577 |
+
"clip_ratio/low_min": 0.0,
|
| 578 |
+
"clip_ratio/region_mean": 0.0,
|
| 579 |
+
"completions/clipped_ratio": 0.0,
|
| 580 |
+
"completions/max_length": 529.2,
|
| 581 |
+
"completions/max_terminated_length": 529.2,
|
| 582 |
+
"completions/mean_length": 429.45,
|
| 583 |
+
"completions/mean_terminated_length": 429.45,
|
| 584 |
+
"completions/min_length": 340.6,
|
| 585 |
+
"completions/min_terminated_length": 340.6,
|
| 586 |
+
"epoch": 0.0016420361247947454,
|
| 587 |
+
"frac_reward_zero_std": 0.0,
|
| 588 |
+
"grad_norm": 0.10793354362249374,
|
| 589 |
+
"learning_rate": 2e-05,
|
| 590 |
+
"loss": 0.0084,
|
| 591 |
+
"num_tokens": 807109.0,
|
| 592 |
+
"reward": 2.8659895420074464,
|
| 593 |
+
"reward_std": 0.22321247607469558,
|
| 594 |
+
"rewards/reward_humanlike/mean": 0.11830640286207199,
|
| 595 |
+
"rewards/reward_humanlike/std": 0.10621838448569179,
|
| 596 |
+
"rewards/reward_nonslop/mean": 0.5382362484931946,
|
| 597 |
+
"rewards/reward_nonslop/std": 0.02679550349712372,
|
| 598 |
+
"rewards/reward_paragraph_structure/mean": 0.9388323545455932,
|
| 599 |
+
"rewards/reward_paragraph_structure/std": 0.08712138235569,
|
| 600 |
+
"rewards/reward_readability_flesch/mean": 0.8695886135101318,
|
| 601 |
+
"rewards/reward_readability_flesch/std": 0.11793182790279388,
|
| 602 |
+
"rewards/reward_variance_humanlike/mean": 0.4010259807109833,
|
| 603 |
+
"rewards/reward_variance_humanlike/std": 0.05023952871561051,
|
| 604 |
+
"step": 90
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"clip_ratio/high_max": 0.0,
|
| 608 |
+
"clip_ratio/high_mean": 0.0,
|
| 609 |
+
"clip_ratio/low_mean": 0.0,
|
| 610 |
+
"clip_ratio/low_min": 0.0,
|
| 611 |
+
"clip_ratio/region_mean": 0.0,
|
| 612 |
+
"completions/clipped_ratio": 0.0,
|
| 613 |
+
"completions/max_length": 516.2,
|
| 614 |
+
"completions/max_terminated_length": 516.2,
|
| 615 |
+
"completions/mean_length": 427.1625,
|
| 616 |
+
"completions/mean_terminated_length": 427.1625,
|
| 617 |
+
"completions/min_length": 327.4,
|
| 618 |
+
"completions/min_terminated_length": 327.4,
|
| 619 |
+
"epoch": 0.0017332603539500092,
|
| 620 |
+
"frac_reward_zero_std": 0.0,
|
| 621 |
+
"grad_norm": 0.10153933614492416,
|
| 622 |
+
"learning_rate": 2e-05,
|
| 623 |
+
"loss": 0.0076,
|
| 624 |
+
"num_tokens": 846354.0,
|
| 625 |
+
"reward": 2.9194432735443114,
|
| 626 |
+
"reward_std": 0.1527949333190918,
|
| 627 |
+
"rewards/reward_humanlike/mean": 0.13011178895831108,
|
| 628 |
+
"rewards/reward_humanlike/std": 0.1040344807319343,
|
| 629 |
+
"rewards/reward_nonslop/mean": 0.539959442615509,
|
| 630 |
+
"rewards/reward_nonslop/std": 0.027887169644236563,
|
| 631 |
+
"rewards/reward_paragraph_structure/mean": 0.97805335521698,
|
| 632 |
+
"rewards/reward_paragraph_structure/std": 0.0572780579328537,
|
| 633 |
+
"rewards/reward_readability_flesch/mean": 0.8915346980094909,
|
| 634 |
+
"rewards/reward_readability_flesch/std": 0.10210664793848992,
|
| 635 |
+
"rewards/reward_variance_humanlike/mean": 0.37978398203849795,
|
| 636 |
+
"rewards/reward_variance_humanlike/std": 0.04532681703567505,
|
| 637 |
+
"step": 95
|
| 638 |
+
},
|
| 639 |
+
{
|
| 640 |
+
"clip_ratio/high_max": 0.0,
|
| 641 |
+
"clip_ratio/high_mean": 0.0,
|
| 642 |
+
"clip_ratio/low_mean": 0.0,
|
| 643 |
+
"clip_ratio/low_min": 0.0,
|
| 644 |
+
"clip_ratio/region_mean": 0.0,
|
| 645 |
+
"completions/clipped_ratio": 0.0,
|
| 646 |
+
"completions/max_length": 507.2,
|
| 647 |
+
"completions/max_terminated_length": 507.2,
|
| 648 |
+
"completions/mean_length": 416.6125,
|
| 649 |
+
"completions/mean_terminated_length": 416.6125,
|
| 650 |
+
"completions/min_length": 341.0,
|
| 651 |
+
"completions/min_terminated_length": 341.0,
|
| 652 |
+
"epoch": 0.0018244845831052727,
|
| 653 |
+
"frac_reward_zero_std": 0.0,
|
| 654 |
+
"grad_norm": 0.11056620627641678,
|
| 655 |
+
"learning_rate": 2e-05,
|
| 656 |
+
"loss": -0.0238,
|
| 657 |
+
"num_tokens": 884675.0,
|
| 658 |
+
"reward": 2.8297982215881348,
|
| 659 |
+
"reward_std": 0.1837340384721756,
|
| 660 |
+
"rewards/reward_humanlike/mean": 0.029251274466514588,
|
| 661 |
+
"rewards/reward_humanlike/std": 0.030034957686439157,
|
| 662 |
+
"rewards/reward_nonslop/mean": 0.5330106735229492,
|
| 663 |
+
"rewards/reward_nonslop/std": 0.02519891820847988,
|
| 664 |
+
"rewards/reward_paragraph_structure/mean": 0.9299438714981079,
|
| 665 |
+
"rewards/reward_paragraph_structure/std": 0.11956685781478882,
|
| 666 |
+
"rewards/reward_readability_flesch/mean": 0.9390206336975098,
|
| 667 |
+
"rewards/reward_readability_flesch/std": 0.1079161748290062,
|
| 668 |
+
"rewards/reward_variance_humanlike/mean": 0.3985717177391052,
|
| 669 |
+
"rewards/reward_variance_humanlike/std": 0.046227993071079256,
|
| 670 |
+
"step": 100
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"clip_ratio/high_max": 0.0,
|
| 674 |
+
"clip_ratio/high_mean": 0.0,
|
| 675 |
+
"clip_ratio/low_mean": 0.0,
|
| 676 |
+
"clip_ratio/low_min": 0.0,
|
| 677 |
+
"clip_ratio/region_mean": 0.0,
|
| 678 |
+
"completions/clipped_ratio": 0.0,
|
| 679 |
+
"completions/max_length": 484.8,
|
| 680 |
+
"completions/max_terminated_length": 484.8,
|
| 681 |
+
"completions/mean_length": 397.0,
|
| 682 |
+
"completions/mean_terminated_length": 397.0,
|
| 683 |
+
"completions/min_length": 311.6,
|
| 684 |
+
"completions/min_terminated_length": 311.6,
|
| 685 |
+
"epoch": 0.0019157088122605363,
|
| 686 |
+
"frac_reward_zero_std": 0.0,
|
| 687 |
+
"grad_norm": 0.12234635651111603,
|
| 688 |
+
"learning_rate": 2e-05,
|
| 689 |
+
"loss": -0.0084,
|
| 690 |
+
"num_tokens": 921523.0,
|
| 691 |
+
"reward": 2.7906761169433594,
|
| 692 |
+
"reward_std": 0.18639333844184874,
|
| 693 |
+
"rewards/reward_humanlike/mean": 0.03967294096946716,
|
| 694 |
+
"rewards/reward_humanlike/std": 0.047859178856015205,
|
| 695 |
+
"rewards/reward_nonslop/mean": 0.5455231070518494,
|
| 696 |
+
"rewards/reward_nonslop/std": 0.02572299391031265,
|
| 697 |
+
"rewards/reward_paragraph_structure/mean": 0.9380416989326477,
|
| 698 |
+
"rewards/reward_paragraph_structure/std": 0.14332405030727385,
|
| 699 |
+
"rewards/reward_readability_flesch/mean": 0.8651458501815796,
|
| 700 |
+
"rewards/reward_readability_flesch/std": 0.10486775860190392,
|
| 701 |
+
"rewards/reward_variance_humanlike/mean": 0.40229247212409974,
|
| 702 |
+
"rewards/reward_variance_humanlike/std": 0.05056553930044174,
|
| 703 |
+
"step": 105
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"clip_ratio/high_max": 0.0,
|
| 707 |
+
"clip_ratio/high_mean": 0.0,
|
| 708 |
+
"clip_ratio/low_mean": 0.0,
|
| 709 |
+
"clip_ratio/low_min": 0.0,
|
| 710 |
+
"clip_ratio/region_mean": 0.0,
|
| 711 |
+
"completions/clipped_ratio": 0.0,
|
| 712 |
+
"completions/max_length": 535.0,
|
| 713 |
+
"completions/max_terminated_length": 535.0,
|
| 714 |
+
"completions/mean_length": 407.4,
|
| 715 |
+
"completions/mean_terminated_length": 407.4,
|
| 716 |
+
"completions/min_length": 323.6,
|
| 717 |
+
"completions/min_terminated_length": 323.6,
|
| 718 |
+
"epoch": 0.0020069330414158,
|
| 719 |
+
"frac_reward_zero_std": 0.0,
|
| 720 |
+
"grad_norm": 0.12049026042222977,
|
| 721 |
+
"learning_rate": 2e-05,
|
| 722 |
+
"loss": -0.0015,
|
| 723 |
+
"num_tokens": 959235.0,
|
| 724 |
+
"reward": 2.8142509937286375,
|
| 725 |
+
"reward_std": 0.20959972888231276,
|
| 726 |
+
"rewards/reward_humanlike/mean": 0.10315801277756691,
|
| 727 |
+
"rewards/reward_humanlike/std": 0.06646046359091998,
|
| 728 |
+
"rewards/reward_nonslop/mean": 0.549621844291687,
|
| 729 |
+
"rewards/reward_nonslop/std": 0.02784626930952072,
|
| 730 |
+
"rewards/reward_paragraph_structure/mean": 0.9427387475967407,
|
| 731 |
+
"rewards/reward_paragraph_structure/std": 0.0946300521492958,
|
| 732 |
+
"rewards/reward_readability_flesch/mean": 0.8157400369644165,
|
| 733 |
+
"rewards/reward_readability_flesch/std": 0.12322266846895218,
|
| 734 |
+
"rewards/reward_variance_humanlike/mean": 0.40299235582351683,
|
| 735 |
+
"rewards/reward_variance_humanlike/std": 0.03882267326116562,
|
| 736 |
+
"step": 110
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"clip_ratio/high_max": 0.0,
|
| 740 |
+
"clip_ratio/high_mean": 0.0,
|
| 741 |
+
"clip_ratio/low_mean": 0.0,
|
| 742 |
+
"clip_ratio/low_min": 0.0,
|
| 743 |
+
"clip_ratio/region_mean": 0.0,
|
| 744 |
+
"completions/clipped_ratio": 0.0,
|
| 745 |
+
"completions/max_length": 546.2,
|
| 746 |
+
"completions/max_terminated_length": 546.2,
|
| 747 |
+
"completions/mean_length": 453.1875,
|
| 748 |
+
"completions/mean_terminated_length": 453.1875,
|
| 749 |
+
"completions/min_length": 365.0,
|
| 750 |
+
"completions/min_terminated_length": 365.0,
|
| 751 |
+
"epoch": 0.0020981572705710636,
|
| 752 |
+
"frac_reward_zero_std": 0.0,
|
| 753 |
+
"grad_norm": 0.10685638338327408,
|
| 754 |
+
"learning_rate": 2e-05,
|
| 755 |
+
"loss": -0.0023,
|
| 756 |
+
"num_tokens": 1000562.0,
|
| 757 |
+
"reward": 2.7050733089447023,
|
| 758 |
+
"reward_std": 0.17174948751926422,
|
| 759 |
+
"rewards/reward_humanlike/mean": 0.03010150045156479,
|
| 760 |
+
"rewards/reward_humanlike/std": 0.02183089666068554,
|
| 761 |
+
"rewards/reward_nonslop/mean": 0.537644910812378,
|
| 762 |
+
"rewards/reward_nonslop/std": 0.022509072348475455,
|
| 763 |
+
"rewards/reward_paragraph_structure/mean": 0.9359247803688049,
|
| 764 |
+
"rewards/reward_paragraph_structure/std": 0.13663459122180938,
|
| 765 |
+
"rewards/reward_readability_flesch/mean": 0.7878659129142761,
|
| 766 |
+
"rewards/reward_readability_flesch/std": 0.1104049876332283,
|
| 767 |
+
"rewards/reward_variance_humanlike/mean": 0.4135362088680267,
|
| 768 |
+
"rewards/reward_variance_humanlike/std": 0.04251410141587257,
|
| 769 |
+
"step": 115
|
| 770 |
+
},
|
| 771 |
+
{
|
| 772 |
+
"clip_ratio/high_max": 0.0,
|
| 773 |
+
"clip_ratio/high_mean": 0.0,
|
| 774 |
+
"clip_ratio/low_mean": 0.0,
|
| 775 |
+
"clip_ratio/low_min": 0.0,
|
| 776 |
+
"clip_ratio/region_mean": 0.0,
|
| 777 |
+
"completions/clipped_ratio": 0.0,
|
| 778 |
+
"completions/max_length": 563.4,
|
| 779 |
+
"completions/max_terminated_length": 563.4,
|
| 780 |
+
"completions/mean_length": 454.7875,
|
| 781 |
+
"completions/mean_terminated_length": 454.7875,
|
| 782 |
+
"completions/min_length": 365.0,
|
| 783 |
+
"completions/min_terminated_length": 365.0,
|
| 784 |
+
"epoch": 0.0021893814997263274,
|
| 785 |
+
"frac_reward_zero_std": 0.0,
|
| 786 |
+
"grad_norm": 0.10802900046110153,
|
| 787 |
+
"learning_rate": 2e-05,
|
| 788 |
+
"loss": 0.0097,
|
| 789 |
+
"num_tokens": 1042177.0,
|
| 790 |
+
"reward": 2.8397992134094237,
|
| 791 |
+
"reward_std": 0.15860502868890763,
|
| 792 |
+
"rewards/reward_humanlike/mean": 0.04295992851257324,
|
| 793 |
+
"rewards/reward_humanlike/std": 0.05235542356967926,
|
| 794 |
+
"rewards/reward_nonslop/mean": 0.5383237481117249,
|
| 795 |
+
"rewards/reward_nonslop/std": 0.029689770936965943,
|
| 796 |
+
"rewards/reward_paragraph_structure/mean": 1.0,
|
| 797 |
+
"rewards/reward_paragraph_structure/std": 0.0,
|
| 798 |
+
"rewards/reward_readability_flesch/mean": 0.8279854476451873,
|
| 799 |
+
"rewards/reward_readability_flesch/std": 0.11809881925582885,
|
| 800 |
+
"rewards/reward_variance_humanlike/mean": 0.43053008913993834,
|
| 801 |
+
"rewards/reward_variance_humanlike/std": 0.04717860147356987,
|
| 802 |
+
"step": 120
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"clip_ratio/high_max": 0.0,
|
| 806 |
+
"clip_ratio/high_mean": 0.0,
|
| 807 |
+
"clip_ratio/low_mean": 0.0,
|
| 808 |
+
"clip_ratio/low_min": 0.0,
|
| 809 |
+
"clip_ratio/region_mean": 0.0,
|
| 810 |
+
"completions/clipped_ratio": 0.0,
|
| 811 |
+
"completions/max_length": 586.2,
|
| 812 |
+
"completions/max_terminated_length": 586.2,
|
| 813 |
+
"completions/mean_length": 476.3125,
|
| 814 |
+
"completions/mean_terminated_length": 476.3125,
|
| 815 |
+
"completions/min_length": 379.4,
|
| 816 |
+
"completions/min_terminated_length": 379.4,
|
| 817 |
+
"epoch": 0.002280605728881591,
|
| 818 |
+
"frac_reward_zero_std": 0.0,
|
| 819 |
+
"grad_norm": 0.11722852289676666,
|
| 820 |
+
"learning_rate": 2e-05,
|
| 821 |
+
"loss": 0.0084,
|
| 822 |
+
"num_tokens": 1085338.0,
|
| 823 |
+
"reward": 2.8460022449493407,
|
| 824 |
+
"reward_std": 0.12902745008468627,
|
| 825 |
+
"rewards/reward_humanlike/mean": 0.08100048899650573,
|
| 826 |
+
"rewards/reward_humanlike/std": 0.0518460288643837,
|
| 827 |
+
"rewards/reward_nonslop/mean": 0.5345206022262573,
|
| 828 |
+
"rewards/reward_nonslop/std": 0.028127148374915124,
|
| 829 |
+
"rewards/reward_paragraph_structure/mean": 0.9582128286361694,
|
| 830 |
+
"rewards/reward_paragraph_structure/std": 0.052062156796455386,
|
| 831 |
+
"rewards/reward_readability_flesch/mean": 0.8341620564460754,
|
| 832 |
+
"rewards/reward_readability_flesch/std": 0.11833389699459076,
|
| 833 |
+
"rewards/reward_variance_humanlike/mean": 0.43810625076293946,
|
| 834 |
+
"rewards/reward_variance_humanlike/std": 0.06058142632246018,
|
| 835 |
+
"step": 125
|
| 836 |
+
},
|
| 837 |
+
{
|
| 838 |
+
"clip_ratio/high_max": 0.0,
|
| 839 |
+
"clip_ratio/high_mean": 0.0,
|
| 840 |
+
"clip_ratio/low_mean": 0.0,
|
| 841 |
+
"clip_ratio/low_min": 0.0,
|
| 842 |
+
"clip_ratio/region_mean": 0.0,
|
| 843 |
+
"completions/clipped_ratio": 0.0,
|
| 844 |
+
"completions/max_length": 637.2,
|
| 845 |
+
"completions/max_terminated_length": 637.2,
|
| 846 |
+
"completions/mean_length": 525.2625,
|
| 847 |
+
"completions/mean_terminated_length": 525.2625,
|
| 848 |
+
"completions/min_length": 415.6,
|
| 849 |
+
"completions/min_terminated_length": 415.6,
|
| 850 |
+
"epoch": 0.0023718299580368545,
|
| 851 |
+
"frac_reward_zero_std": 0.0,
|
| 852 |
+
"grad_norm": 0.1034693568944931,
|
| 853 |
+
"learning_rate": 2e-05,
|
| 854 |
+
"loss": -0.0015,
|
| 855 |
+
"num_tokens": 1132447.0,
|
| 856 |
+
"reward": 2.9677632331848143,
|
| 857 |
+
"reward_std": 0.13178672641515732,
|
| 858 |
+
"rewards/reward_humanlike/mean": 0.11690731346607208,
|
| 859 |
+
"rewards/reward_humanlike/std": 0.07614295929670334,
|
| 860 |
+
"rewards/reward_nonslop/mean": 0.5198043942451477,
|
| 861 |
+
"rewards/reward_nonslop/std": 0.027982910722494127,
|
| 862 |
+
"rewards/reward_paragraph_structure/mean": 0.9756827473640441,
|
| 863 |
+
"rewards/reward_paragraph_structure/std": 0.044346729014068845,
|
| 864 |
+
"rewards/reward_readability_flesch/mean": 0.8949468612670899,
|
| 865 |
+
"rewards/reward_readability_flesch/std": 0.08357911184430122,
|
| 866 |
+
"rewards/reward_variance_humanlike/mean": 0.4604219257831573,
|
| 867 |
+
"rewards/reward_variance_humanlike/std": 0.05337681397795677,
|
| 868 |
+
"step": 130
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"clip_ratio/high_max": 0.0,
|
| 872 |
+
"clip_ratio/high_mean": 0.0,
|
| 873 |
+
"clip_ratio/low_mean": 0.0,
|
| 874 |
+
"clip_ratio/low_min": 0.0,
|
| 875 |
+
"clip_ratio/region_mean": 0.0,
|
| 876 |
+
"completions/clipped_ratio": 0.0,
|
| 877 |
+
"completions/max_length": 588.0,
|
| 878 |
+
"completions/max_terminated_length": 588.0,
|
| 879 |
+
"completions/mean_length": 498.6875,
|
| 880 |
+
"completions/mean_terminated_length": 498.6875,
|
| 881 |
+
"completions/min_length": 399.0,
|
| 882 |
+
"completions/min_terminated_length": 399.0,
|
| 883 |
+
"epoch": 0.0024630541871921183,
|
| 884 |
+
"frac_reward_zero_std": 0.0,
|
| 885 |
+
"grad_norm": 0.1009395495057106,
|
| 886 |
+
"learning_rate": 2e-05,
|
| 887 |
+
"loss": -0.0043,
|
| 888 |
+
"num_tokens": 1177382.0,
|
| 889 |
+
"reward": 2.822851276397705,
|
| 890 |
+
"reward_std": 0.13398206382989883,
|
| 891 |
+
"rewards/reward_humanlike/mean": 0.06381046175956726,
|
| 892 |
+
"rewards/reward_humanlike/std": 0.0503330685198307,
|
| 893 |
+
"rewards/reward_nonslop/mean": 0.5348796844482422,
|
| 894 |
+
"rewards/reward_nonslop/std": 0.025143631175160407,
|
| 895 |
+
"rewards/reward_paragraph_structure/mean": 0.9924662351608277,
|
| 896 |
+
"rewards/reward_paragraph_structure/std": 0.03013508329167962,
|
| 897 |
+
"rewards/reward_readability_flesch/mean": 0.7840398788452149,
|
| 898 |
+
"rewards/reward_readability_flesch/std": 0.11849776804447174,
|
| 899 |
+
"rewards/reward_variance_humanlike/mean": 0.44765504002571105,
|
| 900 |
+
"rewards/reward_variance_humanlike/std": 0.045124633610248564,
|
| 901 |
+
"step": 135
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"clip_ratio/high_max": 0.0,
|
| 905 |
+
"clip_ratio/high_mean": 0.0,
|
| 906 |
+
"clip_ratio/low_mean": 0.0,
|
| 907 |
+
"clip_ratio/low_min": 0.0,
|
| 908 |
+
"clip_ratio/region_mean": 0.0,
|
| 909 |
+
"completions/clipped_ratio": 0.0,
|
| 910 |
+
"completions/max_length": 667.8,
|
| 911 |
+
"completions/max_terminated_length": 667.8,
|
| 912 |
+
"completions/mean_length": 552.2125,
|
| 913 |
+
"completions/mean_terminated_length": 552.2125,
|
| 914 |
+
"completions/min_length": 431.8,
|
| 915 |
+
"completions/min_terminated_length": 431.8,
|
| 916 |
+
"epoch": 0.002554278416347382,
|
| 917 |
+
"frac_reward_zero_std": 0.0,
|
| 918 |
+
"grad_norm": 0.10111426562070847,
|
| 919 |
+
"learning_rate": 2e-05,
|
| 920 |
+
"loss": -0.017,
|
| 921 |
+
"num_tokens": 1226679.0,
|
| 922 |
+
"reward": 2.9173266887664795,
|
| 923 |
+
"reward_std": 0.1144576370716095,
|
| 924 |
+
"rewards/reward_humanlike/mean": 0.11132953837513923,
|
| 925 |
+
"rewards/reward_humanlike/std": 0.05890989601612091,
|
| 926 |
+
"rewards/reward_nonslop/mean": 0.4942618072032928,
|
| 927 |
+
"rewards/reward_nonslop/std": 0.02765493802726269,
|
| 928 |
+
"rewards/reward_paragraph_structure/mean": 0.9944768905639648,
|
| 929 |
+
"rewards/reward_paragraph_structure/std": 0.02089656200259924,
|
| 930 |
+
"rewards/reward_readability_flesch/mean": 0.8778629779815674,
|
| 931 |
+
"rewards/reward_readability_flesch/std": 0.08600130677223206,
|
| 932 |
+
"rewards/reward_variance_humanlike/mean": 0.4393955051898956,
|
| 933 |
+
"rewards/reward_variance_humanlike/std": 0.04750688448548317,
|
| 934 |
+
"step": 140
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"clip_ratio/high_max": 0.0,
|
| 938 |
+
"clip_ratio/high_mean": 0.0,
|
| 939 |
+
"clip_ratio/low_mean": 0.0,
|
| 940 |
+
"clip_ratio/low_min": 0.0,
|
| 941 |
+
"clip_ratio/region_mean": 0.0,
|
| 942 |
+
"completions/clipped_ratio": 0.0,
|
| 943 |
+
"completions/max_length": 640.6,
|
| 944 |
+
"completions/max_terminated_length": 640.6,
|
| 945 |
+
"completions/mean_length": 534.1125,
|
| 946 |
+
"completions/mean_terminated_length": 534.1125,
|
| 947 |
+
"completions/min_length": 438.2,
|
| 948 |
+
"completions/min_terminated_length": 438.2,
|
| 949 |
+
"epoch": 0.0026455026455026454,
|
| 950 |
+
"frac_reward_zero_std": 0.0,
|
| 951 |
+
"grad_norm": 0.11239214986562729,
|
| 952 |
+
"learning_rate": 2e-05,
|
| 953 |
+
"loss": 0.0035,
|
| 954 |
+
"num_tokens": 1274592.0,
|
| 955 |
+
"reward": 3.053114986419678,
|
| 956 |
+
"reward_std": 0.11381979882717133,
|
| 957 |
+
"rewards/reward_humanlike/mean": 0.12257216051220894,
|
| 958 |
+
"rewards/reward_humanlike/std": 0.08092293813824654,
|
| 959 |
+
"rewards/reward_nonslop/mean": 0.5075180411338807,
|
| 960 |
+
"rewards/reward_nonslop/std": 0.026819777116179465,
|
| 961 |
+
"rewards/reward_paragraph_structure/mean": 0.9958648920059204,
|
| 962 |
+
"rewards/reward_paragraph_structure/std": 0.015135037153959275,
|
| 963 |
+
"rewards/reward_readability_flesch/mean": 0.9384488105773926,
|
| 964 |
+
"rewards/reward_readability_flesch/std": 0.07422738522291183,
|
| 965 |
+
"rewards/reward_variance_humanlike/mean": 0.4887110412120819,
|
| 966 |
+
"rewards/reward_variance_humanlike/std": 0.044287893921136856,
|
| 967 |
+
"step": 145
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"clip_ratio/high_max": 0.0,
|
| 971 |
+
"clip_ratio/high_mean": 0.0,
|
| 972 |
+
"clip_ratio/low_mean": 0.0,
|
| 973 |
+
"clip_ratio/low_min": 0.0,
|
| 974 |
+
"clip_ratio/region_mean": 0.0,
|
| 975 |
+
"completions/clipped_ratio": 0.0,
|
| 976 |
+
"completions/max_length": 625.8,
|
| 977 |
+
"completions/max_terminated_length": 625.8,
|
| 978 |
+
"completions/mean_length": 526.2,
|
| 979 |
+
"completions/mean_terminated_length": 526.2,
|
| 980 |
+
"completions/min_length": 432.6,
|
| 981 |
+
"completions/min_terminated_length": 432.6,
|
| 982 |
+
"epoch": 0.002736726874657909,
|
| 983 |
+
"frac_reward_zero_std": 0.0,
|
| 984 |
+
"grad_norm": 0.09958786517381668,
|
| 985 |
+
"learning_rate": 2e-05,
|
| 986 |
+
"loss": 0.0085,
|
| 987 |
+
"num_tokens": 1321840.0,
|
| 988 |
+
"reward": 2.912756013870239,
|
| 989 |
+
"reward_std": 0.12361426800489425,
|
| 990 |
+
"rewards/reward_humanlike/mean": 0.05477507412433624,
|
| 991 |
+
"rewards/reward_humanlike/std": 0.04108944982290268,
|
| 992 |
+
"rewards/reward_nonslop/mean": 0.5123514175415039,
|
| 993 |
+
"rewards/reward_nonslop/std": 0.027717596665024758,
|
| 994 |
+
"rewards/reward_paragraph_structure/mean": 0.9881778597831726,
|
| 995 |
+
"rewards/reward_paragraph_structure/std": 0.04215195477008819,
|
| 996 |
+
"rewards/reward_readability_flesch/mean": 0.8884697198867798,
|
| 997 |
+
"rewards/reward_readability_flesch/std": 0.09501284211874009,
|
| 998 |
+
"rewards/reward_variance_humanlike/mean": 0.4689819157123566,
|
| 999 |
+
"rewards/reward_variance_humanlike/std": 0.04468975365161896,
|
| 1000 |
+
"step": 150
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"clip_ratio/high_max": 0.0,
|
| 1004 |
+
"clip_ratio/high_mean": 0.0,
|
| 1005 |
+
"clip_ratio/low_mean": 0.0,
|
| 1006 |
+
"clip_ratio/low_min": 0.0,
|
| 1007 |
+
"clip_ratio/region_mean": 0.0,
|
| 1008 |
+
"completions/clipped_ratio": 0.0,
|
| 1009 |
+
"completions/max_length": 709.8,
|
| 1010 |
+
"completions/max_terminated_length": 709.8,
|
| 1011 |
+
"completions/mean_length": 540.75,
|
| 1012 |
+
"completions/mean_terminated_length": 540.75,
|
| 1013 |
+
"completions/min_length": 391.2,
|
| 1014 |
+
"completions/min_terminated_length": 391.2,
|
| 1015 |
+
"epoch": 0.002827951103813173,
|
| 1016 |
+
"frac_reward_zero_std": 0.0,
|
| 1017 |
+
"grad_norm": 0.09662537276744843,
|
| 1018 |
+
"learning_rate": 2e-05,
|
| 1019 |
+
"loss": 0.0434,
|
| 1020 |
+
"num_tokens": 1370236.0,
|
| 1021 |
+
"reward": 2.9029190063476564,
|
| 1022 |
+
"reward_std": 0.21406158804893494,
|
| 1023 |
+
"rewards/reward_humanlike/mean": 0.16697487533092498,
|
| 1024 |
+
"rewards/reward_humanlike/std": 0.10503775626420975,
|
| 1025 |
+
"rewards/reward_nonslop/mean": 0.516099750995636,
|
| 1026 |
+
"rewards/reward_nonslop/std": 0.0328385628759861,
|
| 1027 |
+
"rewards/reward_paragraph_structure/mean": 0.9108669638633728,
|
| 1028 |
+
"rewards/reward_paragraph_structure/std": 0.046271538734436034,
|
| 1029 |
+
"rewards/reward_readability_flesch/mean": 0.8546391785144806,
|
| 1030 |
+
"rewards/reward_readability_flesch/std": 0.08806488886475564,
|
| 1031 |
+
"rewards/reward_variance_humanlike/mean": 0.45433822870254514,
|
| 1032 |
+
"rewards/reward_variance_humanlike/std": 0.056633827090263364,
|
| 1033 |
+
"step": 155
|
| 1034 |
+
},
|
| 1035 |
+
{
|
| 1036 |
+
"clip_ratio/high_max": 0.0,
|
| 1037 |
+
"clip_ratio/high_mean": 0.0,
|
| 1038 |
+
"clip_ratio/low_mean": 0.0,
|
| 1039 |
+
"clip_ratio/low_min": 0.0,
|
| 1040 |
+
"clip_ratio/region_mean": 0.0,
|
| 1041 |
+
"completions/clipped_ratio": 0.0,
|
| 1042 |
+
"completions/max_length": 593.2,
|
| 1043 |
+
"completions/max_terminated_length": 593.2,
|
| 1044 |
+
"completions/mean_length": 503.625,
|
| 1045 |
+
"completions/mean_terminated_length": 503.625,
|
| 1046 |
+
"completions/min_length": 417.6,
|
| 1047 |
+
"completions/min_terminated_length": 417.6,
|
| 1048 |
+
"epoch": 0.0029191753329684362,
|
| 1049 |
+
"frac_reward_zero_std": 0.0,
|
| 1050 |
+
"grad_norm": 0.14527224004268646,
|
| 1051 |
+
"learning_rate": 2e-05,
|
| 1052 |
+
"loss": 0.0157,
|
| 1053 |
+
"num_tokens": 1415710.0,
|
| 1054 |
+
"reward": 3.0420565605163574,
|
| 1055 |
+
"reward_std": 0.18344633877277375,
|
| 1056 |
+
"rewards/reward_humanlike/mean": 0.15477735549211502,
|
| 1057 |
+
"rewards/reward_humanlike/std": 0.10218072310090065,
|
| 1058 |
+
"rewards/reward_nonslop/mean": 0.5330479383468628,
|
| 1059 |
+
"rewards/reward_nonslop/std": 0.027725811675190927,
|
| 1060 |
+
"rewards/reward_paragraph_structure/mean": 0.9918029308319092,
|
| 1061 |
+
"rewards/reward_paragraph_structure/std": 0.03271809332072735,
|
| 1062 |
+
"rewards/reward_readability_flesch/mean": 0.8464983224868774,
|
| 1063 |
+
"rewards/reward_readability_flesch/std": 0.11713154464960099,
|
| 1064 |
+
"rewards/reward_variance_humanlike/mean": 0.515929889678955,
|
| 1065 |
+
"rewards/reward_variance_humanlike/std": 0.05413371622562409,
|
| 1066 |
+
"step": 160
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0,
|
| 1070 |
+
"clip_ratio/high_mean": 0.0,
|
| 1071 |
+
"clip_ratio/low_mean": 0.0,
|
| 1072 |
+
"clip_ratio/low_min": 0.0,
|
| 1073 |
+
"clip_ratio/region_mean": 0.0,
|
| 1074 |
+
"completions/clipped_ratio": 0.0,
|
| 1075 |
+
"completions/max_length": 584.4,
|
| 1076 |
+
"completions/max_terminated_length": 584.4,
|
| 1077 |
+
"completions/mean_length": 489.9875,
|
| 1078 |
+
"completions/mean_terminated_length": 489.9875,
|
| 1079 |
+
"completions/min_length": 375.6,
|
| 1080 |
+
"completions/min_terminated_length": 375.6,
|
| 1081 |
+
"epoch": 0.0030103995621237,
|
| 1082 |
+
"frac_reward_zero_std": 0.0,
|
| 1083 |
+
"grad_norm": 0.11605068296194077,
|
| 1084 |
+
"learning_rate": 2e-05,
|
| 1085 |
+
"loss": -0.0128,
|
| 1086 |
+
"num_tokens": 1460061.0,
|
| 1087 |
+
"reward": 3.143190383911133,
|
| 1088 |
+
"reward_std": 0.11709334850311279,
|
| 1089 |
+
"rewards/reward_humanlike/mean": 0.16331919580698012,
|
| 1090 |
+
"rewards/reward_humanlike/std": 0.08971775695681572,
|
| 1091 |
+
"rewards/reward_nonslop/mean": 0.5315526962280274,
|
| 1092 |
+
"rewards/reward_nonslop/std": 0.02810417078435421,
|
| 1093 |
+
"rewards/reward_paragraph_structure/mean": 0.9975423097610474,
|
| 1094 |
+
"rewards/reward_paragraph_structure/std": 0.00911269262433052,
|
| 1095 |
+
"rewards/reward_readability_flesch/mean": 0.9527804493904114,
|
| 1096 |
+
"rewards/reward_readability_flesch/std": 0.07519614920020104,
|
| 1097 |
+
"rewards/reward_variance_humanlike/mean": 0.4979958117008209,
|
| 1098 |
+
"rewards/reward_variance_humanlike/std": 0.04819941446185112,
|
| 1099 |
+
"step": 165
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"clip_ratio/high_max": 0.0,
|
| 1103 |
+
"clip_ratio/high_mean": 0.0,
|
| 1104 |
+
"clip_ratio/low_mean": 0.0,
|
| 1105 |
+
"clip_ratio/low_min": 0.0,
|
| 1106 |
+
"clip_ratio/region_mean": 0.0,
|
| 1107 |
+
"completions/clipped_ratio": 0.0,
|
| 1108 |
+
"completions/max_length": 593.0,
|
| 1109 |
+
"completions/max_terminated_length": 593.0,
|
| 1110 |
+
"completions/mean_length": 476.4625,
|
| 1111 |
+
"completions/mean_terminated_length": 476.4625,
|
| 1112 |
+
"completions/min_length": 369.2,
|
| 1113 |
+
"completions/min_terminated_length": 369.2,
|
| 1114 |
+
"epoch": 0.0031016237912789638,
|
| 1115 |
+
"frac_reward_zero_std": 0.0,
|
| 1116 |
+
"grad_norm": 0.1157560646533966,
|
| 1117 |
+
"learning_rate": 2e-05,
|
| 1118 |
+
"loss": -0.0103,
|
| 1119 |
+
"num_tokens": 1503314.0,
|
| 1120 |
+
"reward": 3.1130752086639406,
|
| 1121 |
+
"reward_std": 0.1477765291929245,
|
| 1122 |
+
"rewards/reward_humanlike/mean": 0.1538683906197548,
|
| 1123 |
+
"rewards/reward_humanlike/std": 0.0856837049126625,
|
| 1124 |
+
"rewards/reward_nonslop/mean": 0.5342989683151245,
|
| 1125 |
+
"rewards/reward_nonslop/std": 0.027773698419332506,
|
| 1126 |
+
"rewards/reward_paragraph_structure/mean": 0.9942754626274108,
|
| 1127 |
+
"rewards/reward_paragraph_structure/std": 0.022898165881633757,
|
| 1128 |
+
"rewards/reward_readability_flesch/mean": 0.9252384662628174,
|
| 1129 |
+
"rewards/reward_readability_flesch/std": 0.09302579760551452,
|
| 1130 |
+
"rewards/reward_variance_humanlike/mean": 0.5053938448429107,
|
| 1131 |
+
"rewards/reward_variance_humanlike/std": 0.052392928302288054,
|
| 1132 |
+
"step": 170
|
| 1133 |
+
},
|
| 1134 |
+
{
|
| 1135 |
+
"clip_ratio/high_max": 0.0,
|
| 1136 |
+
"clip_ratio/high_mean": 0.0,
|
| 1137 |
+
"clip_ratio/low_mean": 0.0,
|
| 1138 |
+
"clip_ratio/low_min": 0.0,
|
| 1139 |
+
"clip_ratio/region_mean": 0.0,
|
| 1140 |
+
"completions/clipped_ratio": 0.0,
|
| 1141 |
+
"completions/max_length": 580.0,
|
| 1142 |
+
"completions/max_terminated_length": 580.0,
|
| 1143 |
+
"completions/mean_length": 488.4125,
|
| 1144 |
+
"completions/mean_terminated_length": 488.4125,
|
| 1145 |
+
"completions/min_length": 401.8,
|
| 1146 |
+
"completions/min_terminated_length": 401.8,
|
| 1147 |
+
"epoch": 0.0031928480204342275,
|
| 1148 |
+
"frac_reward_zero_std": 0.0,
|
| 1149 |
+
"grad_norm": 0.11335834860801697,
|
| 1150 |
+
"learning_rate": 2e-05,
|
| 1151 |
+
"loss": 0.0026,
|
| 1152 |
+
"num_tokens": 1547459.0,
|
| 1153 |
+
"reward": 3.2409387588500977,
|
| 1154 |
+
"reward_std": 0.15198988765478133,
|
| 1155 |
+
"rewards/reward_humanlike/mean": 0.26733590960502623,
|
| 1156 |
+
"rewards/reward_humanlike/std": 0.1318629041314125,
|
| 1157 |
+
"rewards/reward_nonslop/mean": 0.53455730676651,
|
| 1158 |
+
"rewards/reward_nonslop/std": 0.023813217505812646,
|
| 1159 |
+
"rewards/reward_paragraph_structure/mean": 0.9959634304046631,
|
| 1160 |
+
"rewards/reward_paragraph_structure/std": 0.010735219717025757,
|
| 1161 |
+
"rewards/reward_readability_flesch/mean": 0.9626064658164978,
|
| 1162 |
+
"rewards/reward_readability_flesch/std": 0.05338000953197479,
|
| 1163 |
+
"rewards/reward_variance_humanlike/mean": 0.4804756224155426,
|
| 1164 |
+
"rewards/reward_variance_humanlike/std": 0.05087298080325127,
|
| 1165 |
+
"step": 175
|
| 1166 |
+
},
|
| 1167 |
+
{
|
| 1168 |
+
"clip_ratio/high_max": 0.0,
|
| 1169 |
+
"clip_ratio/high_mean": 0.0,
|
| 1170 |
+
"clip_ratio/low_mean": 0.0,
|
| 1171 |
+
"clip_ratio/low_min": 0.0,
|
| 1172 |
+
"clip_ratio/region_mean": 0.0,
|
| 1173 |
+
"completions/clipped_ratio": 0.0,
|
| 1174 |
+
"completions/max_length": 509.0,
|
| 1175 |
+
"completions/max_terminated_length": 509.0,
|
| 1176 |
+
"completions/mean_length": 419.4375,
|
| 1177 |
+
"completions/mean_terminated_length": 419.4375,
|
| 1178 |
+
"completions/min_length": 339.6,
|
| 1179 |
+
"completions/min_terminated_length": 339.6,
|
| 1180 |
+
"epoch": 0.003284072249589491,
|
| 1181 |
+
"frac_reward_zero_std": 0.0,
|
| 1182 |
+
"grad_norm": 0.12220724672079086,
|
| 1183 |
+
"learning_rate": 2e-05,
|
| 1184 |
+
"loss": 0.0048,
|
| 1185 |
+
"num_tokens": 1586054.0,
|
| 1186 |
+
"reward": 3.0313026905059814,
|
| 1187 |
+
"reward_std": 0.19189467430114746,
|
| 1188 |
+
"rewards/reward_humanlike/mean": 0.1291750580072403,
|
| 1189 |
+
"rewards/reward_humanlike/std": 0.08153657093644143,
|
| 1190 |
+
"rewards/reward_nonslop/mean": 0.5568328022956848,
|
| 1191 |
+
"rewards/reward_nonslop/std": 0.02491689659655094,
|
| 1192 |
+
"rewards/reward_paragraph_structure/mean": 0.9697872281074524,
|
| 1193 |
+
"rewards/reward_paragraph_structure/std": 0.07481733858585357,
|
| 1194 |
+
"rewards/reward_readability_flesch/mean": 0.863669466972351,
|
| 1195 |
+
"rewards/reward_readability_flesch/std": 0.11045316830277443,
|
| 1196 |
+
"rewards/reward_variance_humanlike/mean": 0.5118380665779114,
|
| 1197 |
+
"rewards/reward_variance_humanlike/std": 0.0632518894970417,
|
| 1198 |
+
"step": 180
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"clip_ratio/high_max": 0.0,
|
| 1202 |
+
"clip_ratio/high_mean": 0.0,
|
| 1203 |
+
"clip_ratio/low_mean": 0.0,
|
| 1204 |
+
"clip_ratio/low_min": 0.0,
|
| 1205 |
+
"clip_ratio/region_mean": 0.0,
|
| 1206 |
+
"completions/clipped_ratio": 0.0,
|
| 1207 |
+
"completions/max_length": 573.2,
|
| 1208 |
+
"completions/max_terminated_length": 573.2,
|
| 1209 |
+
"completions/mean_length": 443.35,
|
| 1210 |
+
"completions/mean_terminated_length": 443.35,
|
| 1211 |
+
"completions/min_length": 346.0,
|
| 1212 |
+
"completions/min_terminated_length": 346.0,
|
| 1213 |
+
"epoch": 0.0033752964787447546,
|
| 1214 |
+
"frac_reward_zero_std": 0.0,
|
| 1215 |
+
"grad_norm": 0.12768340110778809,
|
| 1216 |
+
"learning_rate": 2e-05,
|
| 1217 |
+
"loss": 0.0094,
|
| 1218 |
+
"num_tokens": 1626690.0,
|
| 1219 |
+
"reward": 3.0511626243591308,
|
| 1220 |
+
"reward_std": 0.2748347967863083,
|
| 1221 |
+
"rewards/reward_humanlike/mean": 0.226414555311203,
|
| 1222 |
+
"rewards/reward_humanlike/std": 0.14178435355424882,
|
| 1223 |
+
"rewards/reward_nonslop/mean": 0.5576748013496399,
|
| 1224 |
+
"rewards/reward_nonslop/std": 0.027306027337908746,
|
| 1225 |
+
"rewards/reward_paragraph_structure/mean": 0.9287306308746338,
|
| 1226 |
+
"rewards/reward_paragraph_structure/std": 0.08972582221031189,
|
| 1227 |
+
"rewards/reward_readability_flesch/mean": 0.8113695025444031,
|
| 1228 |
+
"rewards/reward_readability_flesch/std": 0.16540859043598174,
|
| 1229 |
+
"rewards/reward_variance_humanlike/mean": 0.5269731521606446,
|
| 1230 |
+
"rewards/reward_variance_humanlike/std": 0.05631731376051903,
|
| 1231 |
+
"step": 185
|
| 1232 |
+
},
|
| 1233 |
+
{
|
| 1234 |
+
"clip_ratio/high_max": 0.0,
|
| 1235 |
+
"clip_ratio/high_mean": 0.0,
|
| 1236 |
+
"clip_ratio/low_mean": 0.0,
|
| 1237 |
+
"clip_ratio/low_min": 0.0,
|
| 1238 |
+
"clip_ratio/region_mean": 0.0,
|
| 1239 |
+
"completions/clipped_ratio": 0.0,
|
| 1240 |
+
"completions/max_length": 464.4,
|
| 1241 |
+
"completions/max_terminated_length": 464.4,
|
| 1242 |
+
"completions/mean_length": 386.95,
|
| 1243 |
+
"completions/mean_terminated_length": 386.95,
|
| 1244 |
+
"completions/min_length": 311.6,
|
| 1245 |
+
"completions/min_terminated_length": 311.6,
|
| 1246 |
+
"epoch": 0.0034665207079000184,
|
| 1247 |
+
"frac_reward_zero_std": 0.0,
|
| 1248 |
+
"grad_norm": 0.17250695824623108,
|
| 1249 |
+
"learning_rate": 2e-05,
|
| 1250 |
+
"loss": -0.0028,
|
| 1251 |
+
"num_tokens": 1662670.0,
|
| 1252 |
+
"reward": 3.181674861907959,
|
| 1253 |
+
"reward_std": 0.24182533621788024,
|
| 1254 |
+
"rewards/reward_humanlike/mean": 0.2005528837442398,
|
| 1255 |
+
"rewards/reward_humanlike/std": 0.1301863819360733,
|
| 1256 |
+
"rewards/reward_nonslop/mean": 0.5789134621620178,
|
| 1257 |
+
"rewards/reward_nonslop/std": 0.02567046955227852,
|
| 1258 |
+
"rewards/reward_paragraph_structure/mean": 0.9434401750564575,
|
| 1259 |
+
"rewards/reward_paragraph_structure/std": 0.11112795919179916,
|
| 1260 |
+
"rewards/reward_readability_flesch/mean": 0.9058632373809814,
|
| 1261 |
+
"rewards/reward_readability_flesch/std": 0.1350622519850731,
|
| 1262 |
+
"rewards/reward_variance_humanlike/mean": 0.5529051184654236,
|
| 1263 |
+
"rewards/reward_variance_humanlike/std": 0.05817737057805061,
|
| 1264 |
+
"step": 190
|
| 1265 |
+
},
|
| 1266 |
+
{
|
| 1267 |
+
"clip_ratio/high_max": 0.0,
|
| 1268 |
+
"clip_ratio/high_mean": 0.0,
|
| 1269 |
+
"clip_ratio/low_mean": 0.0,
|
| 1270 |
+
"clip_ratio/low_min": 0.0,
|
| 1271 |
+
"clip_ratio/region_mean": 0.0,
|
| 1272 |
+
"completions/clipped_ratio": 0.0,
|
| 1273 |
+
"completions/max_length": 492.0,
|
| 1274 |
+
"completions/max_terminated_length": 492.0,
|
| 1275 |
+
"completions/mean_length": 398.65,
|
| 1276 |
+
"completions/mean_terminated_length": 398.65,
|
| 1277 |
+
"completions/min_length": 294.0,
|
| 1278 |
+
"completions/min_terminated_length": 294.0,
|
| 1279 |
+
"epoch": 0.0035577449370552817,
|
| 1280 |
+
"frac_reward_zero_std": 0.0,
|
| 1281 |
+
"grad_norm": 0.16075296700000763,
|
| 1282 |
+
"learning_rate": 2e-05,
|
| 1283 |
+
"loss": 0.0197,
|
| 1284 |
+
"num_tokens": 1699698.0,
|
| 1285 |
+
"reward": 3.3926229000091555,
|
| 1286 |
+
"reward_std": 0.22744941860437393,
|
| 1287 |
+
"rewards/reward_humanlike/mean": 0.39020901918411255,
|
| 1288 |
+
"rewards/reward_humanlike/std": 0.13960812389850616,
|
| 1289 |
+
"rewards/reward_nonslop/mean": 0.5689973950386047,
|
| 1290 |
+
"rewards/reward_nonslop/std": 0.0317101176828146,
|
| 1291 |
+
"rewards/reward_paragraph_structure/mean": 0.9568790316581726,
|
| 1292 |
+
"rewards/reward_paragraph_structure/std": 0.09259039759635926,
|
| 1293 |
+
"rewards/reward_readability_flesch/mean": 0.8731052994728088,
|
| 1294 |
+
"rewards/reward_readability_flesch/std": 0.1623595878481865,
|
| 1295 |
+
"rewards/reward_variance_humanlike/mean": 0.6034322381019592,
|
| 1296 |
+
"rewards/reward_variance_humanlike/std": 0.04017769172787666,
|
| 1297 |
+
"step": 195
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"clip_ratio/high_max": 0.0,
|
| 1301 |
+
"clip_ratio/high_mean": 0.0,
|
| 1302 |
+
"clip_ratio/low_mean": 0.0,
|
| 1303 |
+
"clip_ratio/low_min": 0.0,
|
| 1304 |
+
"clip_ratio/region_mean": 0.0,
|
| 1305 |
+
"completions/clipped_ratio": 0.0,
|
| 1306 |
+
"completions/max_length": 541.8,
|
| 1307 |
+
"completions/max_terminated_length": 541.8,
|
| 1308 |
+
"completions/mean_length": 429.8125,
|
| 1309 |
+
"completions/mean_terminated_length": 429.8125,
|
| 1310 |
+
"completions/min_length": 336.2,
|
| 1311 |
+
"completions/min_terminated_length": 336.2,
|
| 1312 |
+
"epoch": 0.0036489691662105455,
|
| 1313 |
+
"frac_reward_zero_std": 0.0,
|
| 1314 |
+
"grad_norm": 0.19189226627349854,
|
| 1315 |
+
"learning_rate": 2e-05,
|
| 1316 |
+
"loss": 0.0243,
|
| 1317 |
+
"num_tokens": 1739219.0,
|
| 1318 |
+
"reward": 3.2115593910217286,
|
| 1319 |
+
"reward_std": 0.2621428996324539,
|
| 1320 |
+
"rewards/reward_humanlike/mean": 0.39398524165153503,
|
| 1321 |
+
"rewards/reward_humanlike/std": 0.12724200785160064,
|
| 1322 |
+
"rewards/reward_nonslop/mean": 0.559182322025299,
|
| 1323 |
+
"rewards/reward_nonslop/std": 0.02537613846361637,
|
| 1324 |
+
"rewards/reward_paragraph_structure/mean": 0.9473167061805725,
|
| 1325 |
+
"rewards/reward_paragraph_structure/std": 0.10079236477613449,
|
| 1326 |
+
"rewards/reward_readability_flesch/mean": 0.7008966207504272,
|
| 1327 |
+
"rewards/reward_readability_flesch/std": 0.22132455557584763,
|
| 1328 |
+
"rewards/reward_variance_humanlike/mean": 0.6101784110069275,
|
| 1329 |
+
"rewards/reward_variance_humanlike/std": 0.03768599070608616,
|
| 1330 |
+
"step": 200
|
| 1331 |
+
}
|
| 1332 |
+
],
|
| 1333 |
+
"logging_steps": 5,
|
| 1334 |
+
"max_steps": 250,
|
| 1335 |
+
"num_input_tokens_seen": 1739219,
|
| 1336 |
+
"num_train_epochs": 1,
|
| 1337 |
+
"save_steps": 50,
|
| 1338 |
+
"stateful_callbacks": {
|
| 1339 |
+
"TrainerControl": {
|
| 1340 |
+
"args": {
|
| 1341 |
+
"should_epoch_stop": false,
|
| 1342 |
+
"should_evaluate": false,
|
| 1343 |
+
"should_log": false,
|
| 1344 |
+
"should_save": true,
|
| 1345 |
+
"should_training_stop": false
|
| 1346 |
+
},
|
| 1347 |
+
"attributes": {}
|
| 1348 |
+
}
|
| 1349 |
+
},
|
| 1350 |
+
"total_flos": 0.0,
|
| 1351 |
+
"train_batch_size": 2,
|
| 1352 |
+
"trial_name": null,
|
| 1353 |
+
"trial_params": null
|
| 1354 |
+
}
|
checkpoint-200/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d6d1dbe50a50058c947771a7fd7c03a443069be77d949e0bd75335cc07d1af9
|
| 3 |
+
size 6865
|
checkpoint-200/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-250/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-14B
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.15.2
|
checkpoint-250/adapter_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "Qwen/Qwen3-14B",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 32,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 32,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"down_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"v_proj",
|
| 30 |
+
"k_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"q_proj",
|
| 33 |
+
"up_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_rslora": false
|
| 39 |
+
}
|
checkpoint-250/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50bef24e37209e74e948a6fa60c599f0456e385a86d29115aa8539658e8dd66d
|
| 3 |
+
size 513877864
|