Instructions to use kishan51/binary_grpo_checkpoint500 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use kishan51/binary_grpo_checkpoint500 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen2.5-0.5B") model = PeftModel.from_pretrained(base_model, "kishan51/binary_grpo_checkpoint500") - Transformers
How to use kishan51/binary_grpo_checkpoint500 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kishan51/binary_grpo_checkpoint500") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("kishan51/binary_grpo_checkpoint500", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use kishan51/binary_grpo_checkpoint500 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kishan51/binary_grpo_checkpoint500" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kishan51/binary_grpo_checkpoint500", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kishan51/binary_grpo_checkpoint500
- SGLang
How to use kishan51/binary_grpo_checkpoint500 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "kishan51/binary_grpo_checkpoint500" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kishan51/binary_grpo_checkpoint500", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "kishan51/binary_grpo_checkpoint500" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kishan51/binary_grpo_checkpoint500", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use kishan51/binary_grpo_checkpoint500 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kishan51/binary_grpo_checkpoint500 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kishan51/binary_grpo_checkpoint500 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kishan51/binary_grpo_checkpoint500 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="kishan51/binary_grpo_checkpoint500", max_seq_length=2048, ) - Docker Model Runner
How to use kishan51/binary_grpo_checkpoint500 with Docker Model Runner:
docker model run hf.co/kishan51/binary_grpo_checkpoint500
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +210 -0
- adapter_config.json +50 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +25 -0
- chat_template.jinja +4 -0
- merges.txt +0 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +25 -0
- tokenizer.json +3 -0
- tokenizer_config.json +216 -0
- trainer_state.json +1384 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen2.5-0.5B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/Qwen2.5-0.5B
|
| 7 |
+
- grpo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen2ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/Qwen2.5-0.5B",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 64,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0.0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 32,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"up_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"down_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"o_proj",
|
| 41 |
+
"gate_proj",
|
| 42 |
+
"v_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": false
|
| 50 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f05aa03bc225c19cbf71c5dfc90ae3428521ceb8e760458dd8911dadf7ec9a6
|
| 3 |
+
size 70430032
|
added_tokens.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|PAD_TOKEN|>": 151665,
|
| 5 |
+
"<|box_end|>": 151649,
|
| 6 |
+
"<|box_start|>": 151648,
|
| 7 |
+
"<|endoftext|>": 151643,
|
| 8 |
+
"<|file_sep|>": 151664,
|
| 9 |
+
"<|fim_middle|>": 151660,
|
| 10 |
+
"<|fim_pad|>": 151662,
|
| 11 |
+
"<|fim_prefix|>": 151659,
|
| 12 |
+
"<|fim_suffix|>": 151661,
|
| 13 |
+
"<|im_end|>": 151645,
|
| 14 |
+
"<|im_start|>": 151644,
|
| 15 |
+
"<|image_pad|>": 151655,
|
| 16 |
+
"<|object_ref_end|>": 151647,
|
| 17 |
+
"<|object_ref_start|>": 151646,
|
| 18 |
+
"<|quad_end|>": 151651,
|
| 19 |
+
"<|quad_start|>": 151650,
|
| 20 |
+
"<|repo_name|>": 151663,
|
| 21 |
+
"<|video_pad|>": 151656,
|
| 22 |
+
"<|vision_end|>": 151653,
|
| 23 |
+
"<|vision_pad|>": 151654,
|
| 24 |
+
"<|vision_start|>": 151652
|
| 25 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% if messages[0]['role'] == 'system' %}{{ messages[0]['content'] + eos_token }}{% set loop_messages = messages[1:] %}{% else %}{{ 'You are given a problem.
|
| 2 |
+
Think about the problem and provide your working out.
|
| 3 |
+
Place it between <start_working_out> and <end_working_out>.
|
| 4 |
+
Then, provide your solution between <SOLUTION></SOLUTION>' + eos_token }}{% set loop_messages = messages %}{% endif %}{% for message in loop_messages %}{% if message['role'] == 'user' %}{{ message['content'] }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<start_working_out>' }}{% endif %}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52b85f4efbb568bf2cd1669daa8037e45f85e476f8c25a8930d2ecd4ef88316b
|
| 3 |
+
size 36140069
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ca619867566630d37bb5d4ade20d201cd6de1a3031ae267cbe60aa7e9195a6c
|
| 3 |
+
size 14645
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f369d8647b02587ea9d43b517f5ba41d7c98e522781f1b62206828d755e77757
|
| 3 |
+
size 1465
|
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": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|PAD_TOKEN|>"
|
| 25 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a11add1ccce473bcd467355ba4e231ba727eee54501528658b0d6fa18112957e
|
| 3 |
+
size 11422253
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "<|PAD_TOKEN|>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": true
|
| 188 |
+
}
|
| 189 |
+
},
|
| 190 |
+
"additional_special_tokens": [
|
| 191 |
+
"<|im_start|>",
|
| 192 |
+
"<|im_end|>",
|
| 193 |
+
"<|object_ref_start|>",
|
| 194 |
+
"<|object_ref_end|>",
|
| 195 |
+
"<|box_start|>",
|
| 196 |
+
"<|box_end|>",
|
| 197 |
+
"<|quad_start|>",
|
| 198 |
+
"<|quad_end|>",
|
| 199 |
+
"<|vision_start|>",
|
| 200 |
+
"<|vision_end|>",
|
| 201 |
+
"<|vision_pad|>",
|
| 202 |
+
"<|image_pad|>",
|
| 203 |
+
"<|video_pad|>"
|
| 204 |
+
],
|
| 205 |
+
"bos_token": null,
|
| 206 |
+
"clean_up_tokenization_spaces": false,
|
| 207 |
+
"eos_token": "<|endoftext|>",
|
| 208 |
+
"errors": "replace",
|
| 209 |
+
"extra_special_tokens": {},
|
| 210 |
+
"model_max_length": 32768,
|
| 211 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 212 |
+
"padding_side": "right",
|
| 213 |
+
"split_special_tokens": false,
|
| 214 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 215 |
+
"unk_token": null
|
| 216 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1384 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.6666666666666666,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 500,
|
| 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 |
+
"completion_length": 1142.7,
|
| 19 |
+
"completions/clipped_ratio": 0.01875,
|
| 20 |
+
"completions/max_length": 1142.7,
|
| 21 |
+
"completions/max_terminated_length": 902.5,
|
| 22 |
+
"completions/mean_length": 314.125,
|
| 23 |
+
"completions/mean_terminated_length": 290.0325042724609,
|
| 24 |
+
"completions/min_length": 22.9,
|
| 25 |
+
"completions/min_terminated_length": 22.9,
|
| 26 |
+
"epoch": 0.013333333333333334,
|
| 27 |
+
"frac_reward_zero_std": 0.575,
|
| 28 |
+
"grad_norm": 0.03041459619998932,
|
| 29 |
+
"kl": 0.04187124692685681,
|
| 30 |
+
"learning_rate": 9.000000000000001e-07,
|
| 31 |
+
"loss": 0.0,
|
| 32 |
+
"num_tokens": 67628.0,
|
| 33 |
+
"reward": -2.325,
|
| 34 |
+
"reward_std": 0.23799361288547516,
|
| 35 |
+
"rewards/reward_func/mean": -2.325,
|
| 36 |
+
"rewards/reward_func/std": 0.37357009053230283,
|
| 37 |
+
"step": 10
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"clip_ratio/high_max": 0.0,
|
| 41 |
+
"clip_ratio/high_mean": 0.0,
|
| 42 |
+
"clip_ratio/low_mean": 0.0,
|
| 43 |
+
"clip_ratio/low_min": 0.0,
|
| 44 |
+
"clip_ratio/region_mean": 0.0,
|
| 45 |
+
"completion_length": 1404.2,
|
| 46 |
+
"completions/clipped_ratio": 0.05,
|
| 47 |
+
"completions/max_length": 1404.2,
|
| 48 |
+
"completions/max_terminated_length": 983.1,
|
| 49 |
+
"completions/mean_length": 350.225,
|
| 50 |
+
"completions/mean_terminated_length": 286.28453063964844,
|
| 51 |
+
"completions/min_length": 21.8,
|
| 52 |
+
"completions/min_terminated_length": 21.8,
|
| 53 |
+
"epoch": 0.02666666666666667,
|
| 54 |
+
"frac_reward_zero_std": 0.525,
|
| 55 |
+
"grad_norm": 77.34902954101562,
|
| 56 |
+
"kl": 0.17394654396921397,
|
| 57 |
+
"learning_rate": 1.9000000000000002e-06,
|
| 58 |
+
"loss": 0.0002,
|
| 59 |
+
"num_tokens": 140212.0,
|
| 60 |
+
"reward": -2.31875,
|
| 61 |
+
"reward_std": 0.2846687763929367,
|
| 62 |
+
"rewards/reward_func/mean": -2.31875,
|
| 63 |
+
"rewards/reward_func/std": 0.4204031050205231,
|
| 64 |
+
"step": 20
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"clip_ratio/high_max": 0.0,
|
| 68 |
+
"clip_ratio/high_mean": 0.0,
|
| 69 |
+
"clip_ratio/low_mean": 0.0,
|
| 70 |
+
"clip_ratio/low_min": 0.0,
|
| 71 |
+
"clip_ratio/region_mean": 0.0,
|
| 72 |
+
"completion_length": 1156.8,
|
| 73 |
+
"completions/clipped_ratio": 0.03125,
|
| 74 |
+
"completions/max_length": 1156.8,
|
| 75 |
+
"completions/max_terminated_length": 965.6,
|
| 76 |
+
"completions/mean_length": 319.85625,
|
| 77 |
+
"completions/mean_terminated_length": 281.527326965332,
|
| 78 |
+
"completions/min_length": 21.8,
|
| 79 |
+
"completions/min_terminated_length": 21.8,
|
| 80 |
+
"epoch": 0.04,
|
| 81 |
+
"frac_reward_zero_std": 0.5,
|
| 82 |
+
"grad_norm": 54.36892318725586,
|
| 83 |
+
"kl": 0.198792327567935,
|
| 84 |
+
"learning_rate": 2.9e-06,
|
| 85 |
+
"loss": 0.0002,
|
| 86 |
+
"num_tokens": 207321.0,
|
| 87 |
+
"reward": -2.26875,
|
| 88 |
+
"reward_std": 0.38884909451007843,
|
| 89 |
+
"rewards/reward_func/mean": -2.26875,
|
| 90 |
+
"rewards/reward_func/std": 0.5729059964418411,
|
| 91 |
+
"step": 30
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"clip_ratio/high_max": 0.0,
|
| 95 |
+
"clip_ratio/high_mean": 0.0,
|
| 96 |
+
"clip_ratio/low_mean": 0.0,
|
| 97 |
+
"clip_ratio/low_min": 0.0,
|
| 98 |
+
"clip_ratio/region_mean": 0.0,
|
| 99 |
+
"completion_length": 1250.6,
|
| 100 |
+
"completions/clipped_ratio": 0.03125,
|
| 101 |
+
"completions/max_length": 1250.6,
|
| 102 |
+
"completions/max_terminated_length": 877.9,
|
| 103 |
+
"completions/mean_length": 273.88125,
|
| 104 |
+
"completions/mean_terminated_length": 233.0241729736328,
|
| 105 |
+
"completions/min_length": 19.5,
|
| 106 |
+
"completions/min_terminated_length": 19.5,
|
| 107 |
+
"epoch": 0.05333333333333334,
|
| 108 |
+
"frac_reward_zero_std": 0.525,
|
| 109 |
+
"grad_norm": 62.96562194824219,
|
| 110 |
+
"kl": 23.047201949357987,
|
| 111 |
+
"learning_rate": 3.900000000000001e-06,
|
| 112 |
+
"loss": 0.023,
|
| 113 |
+
"num_tokens": 268846.0,
|
| 114 |
+
"reward": -2.3375,
|
| 115 |
+
"reward_std": 0.2683012694120407,
|
| 116 |
+
"rewards/reward_func/mean": -2.3375,
|
| 117 |
+
"rewards/reward_func/std": 0.3865860253572464,
|
| 118 |
+
"step": 40
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"clip_ratio/high_max": 0.0,
|
| 122 |
+
"clip_ratio/high_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_mean": 0.0,
|
| 124 |
+
"clip_ratio/low_min": 0.0,
|
| 125 |
+
"clip_ratio/region_mean": 0.0,
|
| 126 |
+
"completion_length": 1285.8,
|
| 127 |
+
"completions/clipped_ratio": 0.05,
|
| 128 |
+
"completions/max_length": 1285.8,
|
| 129 |
+
"completions/max_terminated_length": 984.4,
|
| 130 |
+
"completions/mean_length": 335.86875,
|
| 131 |
+
"completions/mean_terminated_length": 274.3717956542969,
|
| 132 |
+
"completions/min_length": 36.2,
|
| 133 |
+
"completions/min_terminated_length": 36.2,
|
| 134 |
+
"epoch": 0.06666666666666667,
|
| 135 |
+
"frac_reward_zero_std": 0.5,
|
| 136 |
+
"grad_norm": 50.94906997680664,
|
| 137 |
+
"kl": 43.621040439605714,
|
| 138 |
+
"learning_rate": 4.9000000000000005e-06,
|
| 139 |
+
"loss": 0.0436,
|
| 140 |
+
"num_tokens": 339865.0,
|
| 141 |
+
"reward": -2.325,
|
| 142 |
+
"reward_std": 0.29716877937316893,
|
| 143 |
+
"rewards/reward_func/mean": -2.325,
|
| 144 |
+
"rewards/reward_func/std": 0.40061245262622835,
|
| 145 |
+
"step": 50
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"clip_ratio/high_max": 0.0,
|
| 149 |
+
"clip_ratio/high_mean": 0.0,
|
| 150 |
+
"clip_ratio/low_mean": 0.0,
|
| 151 |
+
"clip_ratio/low_min": 0.0,
|
| 152 |
+
"clip_ratio/region_mean": 0.0,
|
| 153 |
+
"completion_length": 1238.2,
|
| 154 |
+
"completions/clipped_ratio": 0.025,
|
| 155 |
+
"completions/max_length": 1238.2,
|
| 156 |
+
"completions/max_terminated_length": 1031.5,
|
| 157 |
+
"completions/mean_length": 331.9375,
|
| 158 |
+
"completions/mean_terminated_length": 301.5768478393555,
|
| 159 |
+
"completions/min_length": 28.5,
|
| 160 |
+
"completions/min_terminated_length": 28.5,
|
| 161 |
+
"epoch": 0.08,
|
| 162 |
+
"frac_reward_zero_std": 0.475,
|
| 163 |
+
"grad_norm": 54.65301513671875,
|
| 164 |
+
"kl": 18.56655087471008,
|
| 165 |
+
"learning_rate": 4.9000000000000005e-06,
|
| 166 |
+
"loss": 0.0186,
|
| 167 |
+
"num_tokens": 410479.0,
|
| 168 |
+
"reward": -2.24375,
|
| 169 |
+
"reward_std": 0.43427384495735166,
|
| 170 |
+
"rewards/reward_func/mean": -2.24375,
|
| 171 |
+
"rewards/reward_func/std": 0.6787217557430267,
|
| 172 |
+
"step": 60
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"clip_ratio/high_max": 0.0,
|
| 176 |
+
"clip_ratio/high_mean": 0.0,
|
| 177 |
+
"clip_ratio/low_mean": 0.0,
|
| 178 |
+
"clip_ratio/low_min": 0.0,
|
| 179 |
+
"clip_ratio/region_mean": 0.0,
|
| 180 |
+
"completion_length": 1068.7,
|
| 181 |
+
"completions/clipped_ratio": 0.03125,
|
| 182 |
+
"completions/max_length": 1068.7,
|
| 183 |
+
"completions/max_terminated_length": 728.7,
|
| 184 |
+
"completions/mean_length": 276.9625,
|
| 185 |
+
"completions/mean_terminated_length": 235.63208923339843,
|
| 186 |
+
"completions/min_length": 17.2,
|
| 187 |
+
"completions/min_terminated_length": 17.2,
|
| 188 |
+
"epoch": 0.09333333333333334,
|
| 189 |
+
"frac_reward_zero_std": 0.475,
|
| 190 |
+
"grad_norm": 76.15401458740234,
|
| 191 |
+
"kl": 44.26115598678589,
|
| 192 |
+
"learning_rate": 4.7888888888888894e-06,
|
| 193 |
+
"loss": 0.0443,
|
| 194 |
+
"num_tokens": 472129.0,
|
| 195 |
+
"reward": -2.25625,
|
| 196 |
+
"reward_std": 0.3837158679962158,
|
| 197 |
+
"rewards/reward_func/mean": -2.25625,
|
| 198 |
+
"rewards/reward_func/std": 0.5701160997152328,
|
| 199 |
+
"step": 70
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"clip_ratio/high_max": 0.0,
|
| 203 |
+
"clip_ratio/high_mean": 0.0,
|
| 204 |
+
"clip_ratio/low_mean": 0.0,
|
| 205 |
+
"clip_ratio/low_min": 0.0,
|
| 206 |
+
"clip_ratio/region_mean": 0.0,
|
| 207 |
+
"completion_length": 949.2,
|
| 208 |
+
"completions/clipped_ratio": 0.01875,
|
| 209 |
+
"completions/max_length": 949.2,
|
| 210 |
+
"completions/max_terminated_length": 865.0,
|
| 211 |
+
"completions/mean_length": 280.79375,
|
| 212 |
+
"completions/mean_terminated_length": 257.9735137939453,
|
| 213 |
+
"completions/min_length": 29.4,
|
| 214 |
+
"completions/min_terminated_length": 29.4,
|
| 215 |
+
"epoch": 0.10666666666666667,
|
| 216 |
+
"frac_reward_zero_std": 0.45,
|
| 217 |
+
"grad_norm": 82.72232818603516,
|
| 218 |
+
"kl": 26.10418074131012,
|
| 219 |
+
"learning_rate": 4.677777777777778e-06,
|
| 220 |
+
"loss": 0.0261,
|
| 221 |
+
"num_tokens": 534296.0,
|
| 222 |
+
"reward": -2.225,
|
| 223 |
+
"reward_std": 0.5031255036592484,
|
| 224 |
+
"rewards/reward_func/mean": -2.225,
|
| 225 |
+
"rewards/reward_func/std": 0.6819553226232529,
|
| 226 |
+
"step": 80
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"clip_ratio/high_max": 0.0,
|
| 230 |
+
"clip_ratio/high_mean": 0.0,
|
| 231 |
+
"clip_ratio/low_mean": 0.0,
|
| 232 |
+
"clip_ratio/low_min": 0.0,
|
| 233 |
+
"clip_ratio/region_mean": 0.0,
|
| 234 |
+
"completion_length": 947.2,
|
| 235 |
+
"completions/clipped_ratio": 0.0125,
|
| 236 |
+
"completions/max_length": 947.2,
|
| 237 |
+
"completions/max_terminated_length": 814.9,
|
| 238 |
+
"completions/mean_length": 277.56875,
|
| 239 |
+
"completions/mean_terminated_length": 261.88625183105466,
|
| 240 |
+
"completions/min_length": 27.9,
|
| 241 |
+
"completions/min_terminated_length": 27.9,
|
| 242 |
+
"epoch": 0.12,
|
| 243 |
+
"frac_reward_zero_std": 0.325,
|
| 244 |
+
"grad_norm": 69.23222351074219,
|
| 245 |
+
"kl": 22.169475841522218,
|
| 246 |
+
"learning_rate": 4.566666666666667e-06,
|
| 247 |
+
"loss": 0.0222,
|
| 248 |
+
"num_tokens": 595867.0,
|
| 249 |
+
"reward": -2.23125,
|
| 250 |
+
"reward_std": 0.43445787727832796,
|
| 251 |
+
"rewards/reward_func/mean": -2.23125,
|
| 252 |
+
"rewards/reward_func/std": 0.5476110845804214,
|
| 253 |
+
"step": 90
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"clip_ratio/high_max": 0.0,
|
| 257 |
+
"clip_ratio/high_mean": 0.0,
|
| 258 |
+
"clip_ratio/low_mean": 0.0,
|
| 259 |
+
"clip_ratio/low_min": 0.0,
|
| 260 |
+
"clip_ratio/region_mean": 0.0,
|
| 261 |
+
"completion_length": 1021.2,
|
| 262 |
+
"completions/clipped_ratio": 0.01875,
|
| 263 |
+
"completions/max_length": 1021.2,
|
| 264 |
+
"completions/max_terminated_length": 858.1,
|
| 265 |
+
"completions/mean_length": 291.4375,
|
| 266 |
+
"completions/mean_terminated_length": 265.9560745239258,
|
| 267 |
+
"completions/min_length": 25.5,
|
| 268 |
+
"completions/min_terminated_length": 25.5,
|
| 269 |
+
"epoch": 0.13333333333333333,
|
| 270 |
+
"frac_reward_zero_std": 0.6,
|
| 271 |
+
"grad_norm": 55.19097137451172,
|
| 272 |
+
"kl": 38.881617593765256,
|
| 273 |
+
"learning_rate": 4.455555555555555e-06,
|
| 274 |
+
"loss": 0.0389,
|
| 275 |
+
"num_tokens": 659557.0,
|
| 276 |
+
"reward": -2.25,
|
| 277 |
+
"reward_std": 0.3368710219860077,
|
| 278 |
+
"rewards/reward_func/mean": -2.25,
|
| 279 |
+
"rewards/reward_func/std": 0.5741409182548523,
|
| 280 |
+
"step": 100
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"clip_ratio/high_max": 0.0,
|
| 284 |
+
"clip_ratio/high_mean": 0.0,
|
| 285 |
+
"clip_ratio/low_mean": 0.0,
|
| 286 |
+
"clip_ratio/low_min": 0.0,
|
| 287 |
+
"clip_ratio/region_mean": 0.0,
|
| 288 |
+
"completion_length": 1103.4,
|
| 289 |
+
"completions/clipped_ratio": 0.0125,
|
| 290 |
+
"completions/max_length": 1103.4,
|
| 291 |
+
"completions/max_terminated_length": 926.0,
|
| 292 |
+
"completions/mean_length": 286.44375,
|
| 293 |
+
"completions/mean_terminated_length": 269.99083709716797,
|
| 294 |
+
"completions/min_length": 23.5,
|
| 295 |
+
"completions/min_terminated_length": 23.5,
|
| 296 |
+
"epoch": 0.14666666666666667,
|
| 297 |
+
"frac_reward_zero_std": 0.425,
|
| 298 |
+
"grad_norm": 44.06207275390625,
|
| 299 |
+
"kl": 10.720393800735474,
|
| 300 |
+
"learning_rate": 4.344444444444445e-06,
|
| 301 |
+
"loss": 0.0107,
|
| 302 |
+
"num_tokens": 722664.0,
|
| 303 |
+
"reward": -2.3,
|
| 304 |
+
"reward_std": 0.3366025388240814,
|
| 305 |
+
"rewards/reward_func/mean": -2.3,
|
| 306 |
+
"rewards/reward_func/std": 0.4434426426887512,
|
| 307 |
+
"step": 110
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
+
"completion_length": 762.9,
|
| 316 |
+
"completions/clipped_ratio": 0.0,
|
| 317 |
+
"completions/max_length": 762.9,
|
| 318 |
+
"completions/max_terminated_length": 762.9,
|
| 319 |
+
"completions/mean_length": 244.29375,
|
| 320 |
+
"completions/mean_terminated_length": 244.29375,
|
| 321 |
+
"completions/min_length": 28.0,
|
| 322 |
+
"completions/min_terminated_length": 28.0,
|
| 323 |
+
"epoch": 0.16,
|
| 324 |
+
"frac_reward_zero_std": 0.525,
|
| 325 |
+
"grad_norm": 98.8595199584961,
|
| 326 |
+
"kl": 3.3859562277793884,
|
| 327 |
+
"learning_rate": 4.233333333333334e-06,
|
| 328 |
+
"loss": 0.0034,
|
| 329 |
+
"num_tokens": 778203.0,
|
| 330 |
+
"reward": -2.28125,
|
| 331 |
+
"reward_std": 0.3689758062362671,
|
| 332 |
+
"rewards/reward_func/mean": -2.28125,
|
| 333 |
+
"rewards/reward_func/std": 0.5127301692962647,
|
| 334 |
+
"step": 120
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"clip_ratio/high_max": 0.0,
|
| 338 |
+
"clip_ratio/high_mean": 0.0,
|
| 339 |
+
"clip_ratio/low_mean": 0.0,
|
| 340 |
+
"clip_ratio/low_min": 0.0,
|
| 341 |
+
"clip_ratio/region_mean": 0.0,
|
| 342 |
+
"completion_length": 1152.1,
|
| 343 |
+
"completions/clipped_ratio": 0.025,
|
| 344 |
+
"completions/max_length": 1152.1,
|
| 345 |
+
"completions/max_terminated_length": 764.6,
|
| 346 |
+
"completions/mean_length": 291.2875,
|
| 347 |
+
"completions/mean_terminated_length": 257.580419921875,
|
| 348 |
+
"completions/min_length": 21.6,
|
| 349 |
+
"completions/min_terminated_length": 21.6,
|
| 350 |
+
"epoch": 0.17333333333333334,
|
| 351 |
+
"frac_reward_zero_std": 0.425,
|
| 352 |
+
"grad_norm": 113.74595642089844,
|
| 353 |
+
"kl": 5.273260289430619,
|
| 354 |
+
"learning_rate": 4.122222222222222e-06,
|
| 355 |
+
"loss": 0.0053,
|
| 356 |
+
"num_tokens": 842517.0,
|
| 357 |
+
"reward": -2.3,
|
| 358 |
+
"reward_std": 0.31371368169784547,
|
| 359 |
+
"rewards/reward_func/mean": -2.3,
|
| 360 |
+
"rewards/reward_func/std": 0.42710726857185366,
|
| 361 |
+
"step": 130
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"clip_ratio/high_max": 0.0,
|
| 365 |
+
"clip_ratio/high_mean": 0.0,
|
| 366 |
+
"clip_ratio/low_mean": 0.0,
|
| 367 |
+
"clip_ratio/low_min": 0.0,
|
| 368 |
+
"clip_ratio/region_mean": 0.0,
|
| 369 |
+
"completion_length": 1270.1,
|
| 370 |
+
"completions/clipped_ratio": 0.0375,
|
| 371 |
+
"completions/max_length": 1270.1,
|
| 372 |
+
"completions/max_terminated_length": 928.7,
|
| 373 |
+
"completions/mean_length": 317.6875,
|
| 374 |
+
"completions/mean_terminated_length": 270.543994140625,
|
| 375 |
+
"completions/min_length": 26.9,
|
| 376 |
+
"completions/min_terminated_length": 26.9,
|
| 377 |
+
"epoch": 0.18666666666666668,
|
| 378 |
+
"frac_reward_zero_std": 0.475,
|
| 379 |
+
"grad_norm": 66.77887725830078,
|
| 380 |
+
"kl": 10.910183477401734,
|
| 381 |
+
"learning_rate": 4.011111111111111e-06,
|
| 382 |
+
"loss": 0.0109,
|
| 383 |
+
"num_tokens": 911419.0,
|
| 384 |
+
"reward": -2.20625,
|
| 385 |
+
"reward_std": 0.4734624236822128,
|
| 386 |
+
"rewards/reward_func/mean": -2.20625,
|
| 387 |
+
"rewards/reward_func/std": 0.7416160374879837,
|
| 388 |
+
"step": 140
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"clip_ratio/high_max": 0.0,
|
| 392 |
+
"clip_ratio/high_mean": 0.0,
|
| 393 |
+
"clip_ratio/low_mean": 0.0,
|
| 394 |
+
"clip_ratio/low_min": 0.0,
|
| 395 |
+
"clip_ratio/region_mean": 0.0,
|
| 396 |
+
"completion_length": 927.5,
|
| 397 |
+
"completions/clipped_ratio": 0.01875,
|
| 398 |
+
"completions/max_length": 927.5,
|
| 399 |
+
"completions/max_terminated_length": 674.2,
|
| 400 |
+
"completions/mean_length": 267.95625,
|
| 401 |
+
"completions/mean_terminated_length": 243.36625213623046,
|
| 402 |
+
"completions/min_length": 22.6,
|
| 403 |
+
"completions/min_terminated_length": 22.6,
|
| 404 |
+
"epoch": 0.2,
|
| 405 |
+
"frac_reward_zero_std": 0.5,
|
| 406 |
+
"grad_norm": 3.4511423110961914,
|
| 407 |
+
"kl": 7.64983651638031,
|
| 408 |
+
"learning_rate": 3.900000000000001e-06,
|
| 409 |
+
"loss": 0.0076,
|
| 410 |
+
"num_tokens": 970928.0,
|
| 411 |
+
"reward": -2.325,
|
| 412 |
+
"reward_std": 0.2786566108465195,
|
| 413 |
+
"rewards/reward_func/mean": -2.325,
|
| 414 |
+
"rewards/reward_func/std": 0.3554343104362488,
|
| 415 |
+
"step": 150
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"clip_ratio/high_max": 0.0,
|
| 419 |
+
"clip_ratio/high_mean": 0.0,
|
| 420 |
+
"clip_ratio/low_mean": 0.0,
|
| 421 |
+
"clip_ratio/low_min": 0.0,
|
| 422 |
+
"clip_ratio/region_mean": 0.0,
|
| 423 |
+
"completion_length": 1125.2,
|
| 424 |
+
"completions/clipped_ratio": 0.0375,
|
| 425 |
+
"completions/max_length": 1125.2,
|
| 426 |
+
"completions/max_terminated_length": 787.6,
|
| 427 |
+
"completions/mean_length": 282.80625,
|
| 428 |
+
"completions/mean_terminated_length": 234.86697082519532,
|
| 429 |
+
"completions/min_length": 17.5,
|
| 430 |
+
"completions/min_terminated_length": 17.5,
|
| 431 |
+
"epoch": 0.21333333333333335,
|
| 432 |
+
"frac_reward_zero_std": 0.475,
|
| 433 |
+
"grad_norm": 78.64956665039062,
|
| 434 |
+
"kl": 31.174254989624025,
|
| 435 |
+
"learning_rate": 3.7888888888888893e-06,
|
| 436 |
+
"loss": 0.0312,
|
| 437 |
+
"num_tokens": 1032913.0,
|
| 438 |
+
"reward": -2.26875,
|
| 439 |
+
"reward_std": 0.4256745457649231,
|
| 440 |
+
"rewards/reward_func/mean": -2.26875,
|
| 441 |
+
"rewards/reward_func/std": 0.6542905002832413,
|
| 442 |
+
"step": 160
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.0,
|
| 446 |
+
"clip_ratio/high_mean": 0.0,
|
| 447 |
+
"clip_ratio/low_mean": 0.0,
|
| 448 |
+
"clip_ratio/low_min": 0.0,
|
| 449 |
+
"clip_ratio/region_mean": 0.0,
|
| 450 |
+
"completion_length": 1234.9,
|
| 451 |
+
"completions/clipped_ratio": 0.04375,
|
| 452 |
+
"completions/max_length": 1234.9,
|
| 453 |
+
"completions/max_terminated_length": 850.8,
|
| 454 |
+
"completions/mean_length": 293.04375,
|
| 455 |
+
"completions/mean_terminated_length": 236.12315979003907,
|
| 456 |
+
"completions/min_length": 17.5,
|
| 457 |
+
"completions/min_terminated_length": 17.5,
|
| 458 |
+
"epoch": 0.22666666666666666,
|
| 459 |
+
"frac_reward_zero_std": 0.5,
|
| 460 |
+
"grad_norm": 74.24949645996094,
|
| 461 |
+
"kl": 17.39362871646881,
|
| 462 |
+
"learning_rate": 3.6777777777777778e-06,
|
| 463 |
+
"loss": 0.0174,
|
| 464 |
+
"num_tokens": 1096696.0,
|
| 465 |
+
"reward": -2.2375,
|
| 466 |
+
"reward_std": 0.3502942889928818,
|
| 467 |
+
"rewards/reward_func/mean": -2.2375,
|
| 468 |
+
"rewards/reward_func/std": 0.5108247697353363,
|
| 469 |
+
"step": 170
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"clip_ratio/high_max": 0.0,
|
| 473 |
+
"clip_ratio/high_mean": 0.0,
|
| 474 |
+
"clip_ratio/low_mean": 0.0,
|
| 475 |
+
"clip_ratio/low_min": 0.0,
|
| 476 |
+
"clip_ratio/region_mean": 0.0,
|
| 477 |
+
"completion_length": 1094.1,
|
| 478 |
+
"completions/clipped_ratio": 0.025,
|
| 479 |
+
"completions/max_length": 1094.1,
|
| 480 |
+
"completions/max_terminated_length": 862.9,
|
| 481 |
+
"completions/mean_length": 306.3875,
|
| 482 |
+
"completions/mean_terminated_length": 275.8087554931641,
|
| 483 |
+
"completions/min_length": 19.2,
|
| 484 |
+
"completions/min_terminated_length": 19.2,
|
| 485 |
+
"epoch": 0.24,
|
| 486 |
+
"frac_reward_zero_std": 0.45,
|
| 487 |
+
"grad_norm": 114.97906494140625,
|
| 488 |
+
"kl": 3.446433424949646,
|
| 489 |
+
"learning_rate": 3.566666666666667e-06,
|
| 490 |
+
"loss": 0.0034,
|
| 491 |
+
"num_tokens": 1163210.0,
|
| 492 |
+
"reward": -2.26875,
|
| 493 |
+
"reward_std": 0.36489740014076233,
|
| 494 |
+
"rewards/reward_func/mean": -2.26875,
|
| 495 |
+
"rewards/reward_func/std": 0.5350149899721146,
|
| 496 |
+
"step": 180
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"clip_ratio/high_max": 0.0,
|
| 500 |
+
"clip_ratio/high_mean": 0.0,
|
| 501 |
+
"clip_ratio/low_mean": 0.0,
|
| 502 |
+
"clip_ratio/low_min": 0.0,
|
| 503 |
+
"clip_ratio/region_mean": 0.0,
|
| 504 |
+
"completion_length": 1129.5,
|
| 505 |
+
"completions/clipped_ratio": 0.0375,
|
| 506 |
+
"completions/max_length": 1129.5,
|
| 507 |
+
"completions/max_terminated_length": 810.2,
|
| 508 |
+
"completions/mean_length": 286.28125,
|
| 509 |
+
"completions/mean_terminated_length": 238.94435272216796,
|
| 510 |
+
"completions/min_length": 23.6,
|
| 511 |
+
"completions/min_terminated_length": 23.6,
|
| 512 |
+
"epoch": 0.25333333333333335,
|
| 513 |
+
"frac_reward_zero_std": 0.55,
|
| 514 |
+
"grad_norm": 103.09403228759766,
|
| 515 |
+
"kl": 20.17943916320801,
|
| 516 |
+
"learning_rate": 3.455555555555556e-06,
|
| 517 |
+
"loss": 0.0202,
|
| 518 |
+
"num_tokens": 1226187.0,
|
| 519 |
+
"reward": -2.35625,
|
| 520 |
+
"reward_std": 0.26175799071788786,
|
| 521 |
+
"rewards/reward_func/mean": -2.35625,
|
| 522 |
+
"rewards/reward_func/std": 0.3903583735227585,
|
| 523 |
+
"step": 190
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_ratio/high_max": 0.0,
|
| 527 |
+
"clip_ratio/high_mean": 0.0,
|
| 528 |
+
"clip_ratio/low_mean": 0.0,
|
| 529 |
+
"clip_ratio/low_min": 0.0,
|
| 530 |
+
"clip_ratio/region_mean": 0.0,
|
| 531 |
+
"completion_length": 1171.8,
|
| 532 |
+
"completions/clipped_ratio": 0.0375,
|
| 533 |
+
"completions/max_length": 1171.8,
|
| 534 |
+
"completions/max_terminated_length": 780.4,
|
| 535 |
+
"completions/mean_length": 289.95,
|
| 536 |
+
"completions/mean_terminated_length": 242.0620880126953,
|
| 537 |
+
"completions/min_length": 21.9,
|
| 538 |
+
"completions/min_terminated_length": 21.9,
|
| 539 |
+
"epoch": 0.26666666666666666,
|
| 540 |
+
"frac_reward_zero_std": 0.5,
|
| 541 |
+
"grad_norm": 162.74258422851562,
|
| 542 |
+
"kl": 39.28117027282715,
|
| 543 |
+
"learning_rate": 3.3444444444444445e-06,
|
| 544 |
+
"loss": 0.0393,
|
| 545 |
+
"num_tokens": 1290015.0,
|
| 546 |
+
"reward": -2.225,
|
| 547 |
+
"reward_std": 0.42369674146175385,
|
| 548 |
+
"rewards/reward_func/mean": -2.225,
|
| 549 |
+
"rewards/reward_func/std": 0.6618488401174545,
|
| 550 |
+
"step": 200
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"clip_ratio/high_max": 0.0,
|
| 554 |
+
"clip_ratio/high_mean": 0.0,
|
| 555 |
+
"clip_ratio/low_mean": 0.0,
|
| 556 |
+
"clip_ratio/low_min": 0.0,
|
| 557 |
+
"clip_ratio/region_mean": 0.0,
|
| 558 |
+
"completion_length": 953.0,
|
| 559 |
+
"completions/clipped_ratio": 0.01875,
|
| 560 |
+
"completions/max_length": 953.0,
|
| 561 |
+
"completions/max_terminated_length": 883.8,
|
| 562 |
+
"completions/mean_length": 306.9625,
|
| 563 |
+
"completions/mean_terminated_length": 285.81047973632815,
|
| 564 |
+
"completions/min_length": 20.9,
|
| 565 |
+
"completions/min_terminated_length": 20.9,
|
| 566 |
+
"epoch": 0.28,
|
| 567 |
+
"frac_reward_zero_std": 0.475,
|
| 568 |
+
"grad_norm": 56.53829574584961,
|
| 569 |
+
"kl": 4.3735075235366825,
|
| 570 |
+
"learning_rate": 3.2333333333333334e-06,
|
| 571 |
+
"loss": 0.0044,
|
| 572 |
+
"num_tokens": 1355825.0,
|
| 573 |
+
"reward": -2.30625,
|
| 574 |
+
"reward_std": 0.2741025388240814,
|
| 575 |
+
"rewards/reward_func/mean": -2.30625,
|
| 576 |
+
"rewards/reward_func/std": 0.3696858823299408,
|
| 577 |
+
"step": 210
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"clip_ratio/high_max": 0.0,
|
| 581 |
+
"clip_ratio/high_mean": 0.0,
|
| 582 |
+
"clip_ratio/low_mean": 0.0,
|
| 583 |
+
"clip_ratio/low_min": 0.0,
|
| 584 |
+
"clip_ratio/region_mean": 0.0,
|
| 585 |
+
"completion_length": 1269.1,
|
| 586 |
+
"completions/clipped_ratio": 0.025,
|
| 587 |
+
"completions/max_length": 1269.1,
|
| 588 |
+
"completions/max_terminated_length": 1032.2,
|
| 589 |
+
"completions/mean_length": 292.15625,
|
| 590 |
+
"completions/mean_terminated_length": 260.2483383178711,
|
| 591 |
+
"completions/min_length": 17.8,
|
| 592 |
+
"completions/min_terminated_length": 17.8,
|
| 593 |
+
"epoch": 0.29333333333333333,
|
| 594 |
+
"frac_reward_zero_std": 0.425,
|
| 595 |
+
"grad_norm": 74.96534729003906,
|
| 596 |
+
"kl": 16.07765164375305,
|
| 597 |
+
"learning_rate": 3.1222222222222228e-06,
|
| 598 |
+
"loss": 0.0161,
|
| 599 |
+
"num_tokens": 1418942.0,
|
| 600 |
+
"reward": -2.26875,
|
| 601 |
+
"reward_std": 0.35119174122810365,
|
| 602 |
+
"rewards/reward_func/mean": -2.26875,
|
| 603 |
+
"rewards/reward_func/std": 0.48719866275787355,
|
| 604 |
+
"step": 220
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"clip_ratio/high_max": 0.0,
|
| 608 |
+
"clip_ratio/high_mean": 0.0,
|
| 609 |
+
"clip_ratio/low_mean": 0.0,
|
| 610 |
+
"clip_ratio/low_min": 0.0,
|
| 611 |
+
"clip_ratio/region_mean": 0.0,
|
| 612 |
+
"completion_length": 1035.2,
|
| 613 |
+
"completions/clipped_ratio": 0.01875,
|
| 614 |
+
"completions/max_length": 1035.2,
|
| 615 |
+
"completions/max_terminated_length": 911.0,
|
| 616 |
+
"completions/mean_length": 256.95,
|
| 617 |
+
"completions/mean_terminated_length": 233.14875335693358,
|
| 618 |
+
"completions/min_length": 8.9,
|
| 619 |
+
"completions/min_terminated_length": 8.9,
|
| 620 |
+
"epoch": 0.30666666666666664,
|
| 621 |
+
"frac_reward_zero_std": 0.475,
|
| 622 |
+
"grad_norm": 36.64857482910156,
|
| 623 |
+
"kl": 14.746024799346923,
|
| 624 |
+
"learning_rate": 3.0111111111111113e-06,
|
| 625 |
+
"loss": 0.0147,
|
| 626 |
+
"num_tokens": 1478462.0,
|
| 627 |
+
"reward": -2.225,
|
| 628 |
+
"reward_std": 0.4513490855693817,
|
| 629 |
+
"rewards/reward_func/mean": -2.225,
|
| 630 |
+
"rewards/reward_func/std": 0.6648978263139724,
|
| 631 |
+
"step": 230
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"clip_ratio/high_max": 0.0,
|
| 635 |
+
"clip_ratio/high_mean": 0.0,
|
| 636 |
+
"clip_ratio/low_mean": 0.0,
|
| 637 |
+
"clip_ratio/low_min": 0.0,
|
| 638 |
+
"clip_ratio/region_mean": 0.0,
|
| 639 |
+
"completion_length": 1116.4,
|
| 640 |
+
"completions/clipped_ratio": 0.03125,
|
| 641 |
+
"completions/max_length": 1116.4,
|
| 642 |
+
"completions/max_terminated_length": 758.3,
|
| 643 |
+
"completions/mean_length": 295.925,
|
| 644 |
+
"completions/mean_terminated_length": 255.58333892822264,
|
| 645 |
+
"completions/min_length": 21.1,
|
| 646 |
+
"completions/min_terminated_length": 21.1,
|
| 647 |
+
"epoch": 0.32,
|
| 648 |
+
"frac_reward_zero_std": 0.475,
|
| 649 |
+
"grad_norm": 84.84314727783203,
|
| 650 |
+
"kl": 5.60067400932312,
|
| 651 |
+
"learning_rate": 2.9e-06,
|
| 652 |
+
"loss": 0.0056,
|
| 653 |
+
"num_tokens": 1543490.0,
|
| 654 |
+
"reward": -2.26875,
|
| 655 |
+
"reward_std": 0.35537946224212646,
|
| 656 |
+
"rewards/reward_func/mean": -2.26875,
|
| 657 |
+
"rewards/reward_func/std": 0.4750110626220703,
|
| 658 |
+
"step": 240
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"clip_ratio/high_max": 0.0,
|
| 662 |
+
"clip_ratio/high_mean": 0.0,
|
| 663 |
+
"clip_ratio/low_mean": 0.0,
|
| 664 |
+
"clip_ratio/low_min": 0.0,
|
| 665 |
+
"clip_ratio/region_mean": 0.0,
|
| 666 |
+
"completion_length": 1023.8,
|
| 667 |
+
"completions/clipped_ratio": 0.00625,
|
| 668 |
+
"completions/max_length": 1023.8,
|
| 669 |
+
"completions/max_terminated_length": 945.7,
|
| 670 |
+
"completions/mean_length": 266.0375,
|
| 671 |
+
"completions/mean_terminated_length": 257.5279174804688,
|
| 672 |
+
"completions/min_length": 17.0,
|
| 673 |
+
"completions/min_terminated_length": 17.0,
|
| 674 |
+
"epoch": 0.3333333333333333,
|
| 675 |
+
"frac_reward_zero_std": 0.575,
|
| 676 |
+
"grad_norm": 81.47051239013672,
|
| 677 |
+
"kl": 18.14775743484497,
|
| 678 |
+
"learning_rate": 2.788888888888889e-06,
|
| 679 |
+
"loss": 0.0181,
|
| 680 |
+
"num_tokens": 1603676.0,
|
| 681 |
+
"reward": -2.3375,
|
| 682 |
+
"reward_std": 0.2645611822605133,
|
| 683 |
+
"rewards/reward_func/mean": -2.3375,
|
| 684 |
+
"rewards/reward_func/std": 0.4000595390796661,
|
| 685 |
+
"step": 250
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"clip_ratio/high_max": 0.0,
|
| 689 |
+
"clip_ratio/high_mean": 0.0,
|
| 690 |
+
"clip_ratio/low_mean": 0.0,
|
| 691 |
+
"clip_ratio/low_min": 0.0,
|
| 692 |
+
"clip_ratio/region_mean": 0.0,
|
| 693 |
+
"completion_length": 1079.9,
|
| 694 |
+
"completions/clipped_ratio": 0.01875,
|
| 695 |
+
"completions/max_length": 1079.9,
|
| 696 |
+
"completions/max_terminated_length": 947.9,
|
| 697 |
+
"completions/mean_length": 340.54375,
|
| 698 |
+
"completions/mean_terminated_length": 318.7557769775391,
|
| 699 |
+
"completions/min_length": 26.2,
|
| 700 |
+
"completions/min_terminated_length": 26.2,
|
| 701 |
+
"epoch": 0.3466666666666667,
|
| 702 |
+
"frac_reward_zero_std": 0.55,
|
| 703 |
+
"grad_norm": 54.74143600463867,
|
| 704 |
+
"kl": 20.487924671173097,
|
| 705 |
+
"learning_rate": 2.677777777777778e-06,
|
| 706 |
+
"loss": 0.0205,
|
| 707 |
+
"num_tokens": 1675795.0,
|
| 708 |
+
"reward": -2.3125,
|
| 709 |
+
"reward_std": 0.2760362923145294,
|
| 710 |
+
"rewards/reward_func/mean": -2.3125,
|
| 711 |
+
"rewards/reward_func/std": 0.3895877480506897,
|
| 712 |
+
"step": 260
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"clip_ratio/high_max": 0.0,
|
| 716 |
+
"clip_ratio/high_mean": 0.0,
|
| 717 |
+
"clip_ratio/low_mean": 0.0,
|
| 718 |
+
"clip_ratio/low_min": 0.0,
|
| 719 |
+
"clip_ratio/region_mean": 0.0,
|
| 720 |
+
"completion_length": 1192.1,
|
| 721 |
+
"completions/clipped_ratio": 0.04375,
|
| 722 |
+
"completions/max_length": 1192.1,
|
| 723 |
+
"completions/max_terminated_length": 858.8,
|
| 724 |
+
"completions/mean_length": 302.7625,
|
| 725 |
+
"completions/mean_terminated_length": 246.45244750976562,
|
| 726 |
+
"completions/min_length": 12.2,
|
| 727 |
+
"completions/min_terminated_length": 12.2,
|
| 728 |
+
"epoch": 0.36,
|
| 729 |
+
"frac_reward_zero_std": 0.65,
|
| 730 |
+
"grad_norm": 0.1731022149324417,
|
| 731 |
+
"kl": 7.915937983989716,
|
| 732 |
+
"learning_rate": 2.566666666666667e-06,
|
| 733 |
+
"loss": 0.0079,
|
| 734 |
+
"num_tokens": 1740341.0,
|
| 735 |
+
"reward": -2.25,
|
| 736 |
+
"reward_std": 0.4122216373682022,
|
| 737 |
+
"rewards/reward_func/mean": -2.25,
|
| 738 |
+
"rewards/reward_func/std": 0.6856489062309266,
|
| 739 |
+
"step": 270
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"clip_ratio/high_max": 0.0,
|
| 743 |
+
"clip_ratio/high_mean": 0.0,
|
| 744 |
+
"clip_ratio/low_mean": 0.0,
|
| 745 |
+
"clip_ratio/low_min": 0.0,
|
| 746 |
+
"clip_ratio/region_mean": 0.0,
|
| 747 |
+
"completion_length": 1110.5,
|
| 748 |
+
"completions/clipped_ratio": 0.01875,
|
| 749 |
+
"completions/max_length": 1110.5,
|
| 750 |
+
"completions/max_terminated_length": 891.8,
|
| 751 |
+
"completions/mean_length": 309.71875,
|
| 752 |
+
"completions/mean_terminated_length": 286.5383361816406,
|
| 753 |
+
"completions/min_length": 24.0,
|
| 754 |
+
"completions/min_terminated_length": 24.0,
|
| 755 |
+
"epoch": 0.37333333333333335,
|
| 756 |
+
"frac_reward_zero_std": 0.5,
|
| 757 |
+
"grad_norm": 122.04984283447266,
|
| 758 |
+
"kl": 3.3861916780471804,
|
| 759 |
+
"learning_rate": 2.455555555555556e-06,
|
| 760 |
+
"loss": 0.0034,
|
| 761 |
+
"num_tokens": 1806904.0,
|
| 762 |
+
"reward": -2.2375,
|
| 763 |
+
"reward_std": 0.4326493889093399,
|
| 764 |
+
"rewards/reward_func/mean": -2.2375,
|
| 765 |
+
"rewards/reward_func/std": 0.6847750276327134,
|
| 766 |
+
"step": 280
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"clip_ratio/high_max": 0.0,
|
| 770 |
+
"clip_ratio/high_mean": 0.0,
|
| 771 |
+
"clip_ratio/low_mean": 0.0,
|
| 772 |
+
"clip_ratio/low_min": 0.0,
|
| 773 |
+
"clip_ratio/region_mean": 0.0,
|
| 774 |
+
"completion_length": 1069.2,
|
| 775 |
+
"completions/clipped_ratio": 0.025,
|
| 776 |
+
"completions/max_length": 1069.2,
|
| 777 |
+
"completions/max_terminated_length": 853.0,
|
| 778 |
+
"completions/mean_length": 301.1875,
|
| 779 |
+
"completions/mean_terminated_length": 269.63209075927733,
|
| 780 |
+
"completions/min_length": 18.7,
|
| 781 |
+
"completions/min_terminated_length": 18.7,
|
| 782 |
+
"epoch": 0.38666666666666666,
|
| 783 |
+
"frac_reward_zero_std": 0.575,
|
| 784 |
+
"grad_norm": 25.8874454498291,
|
| 785 |
+
"kl": 14.604678845405578,
|
| 786 |
+
"learning_rate": 2.3444444444444448e-06,
|
| 787 |
+
"loss": 0.0146,
|
| 788 |
+
"num_tokens": 1872494.0,
|
| 789 |
+
"reward": -2.36875,
|
| 790 |
+
"reward_std": 0.22780319154262543,
|
| 791 |
+
"rewards/reward_func/mean": -2.36875,
|
| 792 |
+
"rewards/reward_func/std": 0.3246472626924515,
|
| 793 |
+
"step": 290
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"clip_ratio/high_max": 0.0,
|
| 797 |
+
"clip_ratio/high_mean": 0.0,
|
| 798 |
+
"clip_ratio/low_mean": 0.0,
|
| 799 |
+
"clip_ratio/low_min": 0.0,
|
| 800 |
+
"clip_ratio/region_mean": 0.0,
|
| 801 |
+
"completion_length": 1228.1,
|
| 802 |
+
"completions/clipped_ratio": 0.0375,
|
| 803 |
+
"completions/max_length": 1228.1,
|
| 804 |
+
"completions/max_terminated_length": 817.4,
|
| 805 |
+
"completions/mean_length": 287.74375,
|
| 806 |
+
"completions/mean_terminated_length": 238.6010757446289,
|
| 807 |
+
"completions/min_length": 20.4,
|
| 808 |
+
"completions/min_terminated_length": 20.4,
|
| 809 |
+
"epoch": 0.4,
|
| 810 |
+
"frac_reward_zero_std": 0.45,
|
| 811 |
+
"grad_norm": 50.89199447631836,
|
| 812 |
+
"kl": 12.896457767486572,
|
| 813 |
+
"learning_rate": 2.2333333333333333e-06,
|
| 814 |
+
"loss": 0.0129,
|
| 815 |
+
"num_tokens": 1936649.0,
|
| 816 |
+
"reward": -2.26875,
|
| 817 |
+
"reward_std": 0.3961044609546661,
|
| 818 |
+
"rewards/reward_func/mean": -2.26875,
|
| 819 |
+
"rewards/reward_func/std": 0.5396905303001404,
|
| 820 |
+
"step": 300
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"clip_ratio/high_max": 0.0,
|
| 824 |
+
"clip_ratio/high_mean": 0.0,
|
| 825 |
+
"clip_ratio/low_mean": 0.0,
|
| 826 |
+
"clip_ratio/low_min": 0.0,
|
| 827 |
+
"clip_ratio/region_mean": 0.0,
|
| 828 |
+
"completion_length": 1038.1,
|
| 829 |
+
"completions/clipped_ratio": 0.0125,
|
| 830 |
+
"completions/max_length": 1038.1,
|
| 831 |
+
"completions/max_terminated_length": 889.8,
|
| 832 |
+
"completions/mean_length": 258.28125,
|
| 833 |
+
"completions/mean_terminated_length": 241.79458618164062,
|
| 834 |
+
"completions/min_length": 17.1,
|
| 835 |
+
"completions/min_terminated_length": 17.1,
|
| 836 |
+
"epoch": 0.41333333333333333,
|
| 837 |
+
"frac_reward_zero_std": 0.65,
|
| 838 |
+
"grad_norm": 48.88945770263672,
|
| 839 |
+
"kl": 4.541426551342011,
|
| 840 |
+
"learning_rate": 2.1222222222222226e-06,
|
| 841 |
+
"loss": 0.0045,
|
| 842 |
+
"num_tokens": 1994798.0,
|
| 843 |
+
"reward": -2.4,
|
| 844 |
+
"reward_std": 0.17886751294136047,
|
| 845 |
+
"rewards/reward_func/mean": -2.4,
|
| 846 |
+
"rewards/reward_func/std": 0.2989355862140656,
|
| 847 |
+
"step": 310
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"clip_ratio/high_max": 0.0,
|
| 851 |
+
"clip_ratio/high_mean": 0.0,
|
| 852 |
+
"clip_ratio/low_mean": 0.0,
|
| 853 |
+
"clip_ratio/low_min": 0.0,
|
| 854 |
+
"clip_ratio/region_mean": 0.0,
|
| 855 |
+
"completion_length": 1238.9,
|
| 856 |
+
"completions/clipped_ratio": 0.05625,
|
| 857 |
+
"completions/max_length": 1238.9,
|
| 858 |
+
"completions/max_terminated_length": 795.1,
|
| 859 |
+
"completions/mean_length": 315.44375,
|
| 860 |
+
"completions/mean_terminated_length": 243.35834197998048,
|
| 861 |
+
"completions/min_length": 15.4,
|
| 862 |
+
"completions/min_terminated_length": 15.4,
|
| 863 |
+
"epoch": 0.4266666666666667,
|
| 864 |
+
"frac_reward_zero_std": 0.525,
|
| 865 |
+
"grad_norm": 54.9058837890625,
|
| 866 |
+
"kl": 4.1825002312660216,
|
| 867 |
+
"learning_rate": 2.011111111111111e-06,
|
| 868 |
+
"loss": 0.0042,
|
| 869 |
+
"num_tokens": 2062905.0,
|
| 870 |
+
"reward": -2.29375,
|
| 871 |
+
"reward_std": 0.34910253882408143,
|
| 872 |
+
"rewards/reward_func/mean": -2.29375,
|
| 873 |
+
"rewards/reward_func/std": 0.538089805841446,
|
| 874 |
+
"step": 320
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0,
|
| 878 |
+
"clip_ratio/high_mean": 0.0,
|
| 879 |
+
"clip_ratio/low_mean": 0.0,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0,
|
| 882 |
+
"completion_length": 1048.0,
|
| 883 |
+
"completions/clipped_ratio": 0.0125,
|
| 884 |
+
"completions/max_length": 1048.0,
|
| 885 |
+
"completions/max_terminated_length": 917.3,
|
| 886 |
+
"completions/mean_length": 277.575,
|
| 887 |
+
"completions/mean_terminated_length": 261.64583587646484,
|
| 888 |
+
"completions/min_length": 19.7,
|
| 889 |
+
"completions/min_terminated_length": 19.7,
|
| 890 |
+
"epoch": 0.44,
|
| 891 |
+
"frac_reward_zero_std": 0.425,
|
| 892 |
+
"grad_norm": 127.28370666503906,
|
| 893 |
+
"kl": 4.280037522315979,
|
| 894 |
+
"learning_rate": 1.9000000000000002e-06,
|
| 895 |
+
"loss": 0.0043,
|
| 896 |
+
"num_tokens": 2124265.0,
|
| 897 |
+
"reward": -2.2375,
|
| 898 |
+
"reward_std": 0.44838539361953733,
|
| 899 |
+
"rewards/reward_func/mean": -2.2375,
|
| 900 |
+
"rewards/reward_func/std": 0.6401138246059418,
|
| 901 |
+
"step": 330
|
| 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 |
+
"completion_length": 927.5,
|
| 910 |
+
"completions/clipped_ratio": 0.0125,
|
| 911 |
+
"completions/max_length": 927.5,
|
| 912 |
+
"completions/max_terminated_length": 798.2,
|
| 913 |
+
"completions/mean_length": 283.7125,
|
| 914 |
+
"completions/mean_terminated_length": 267.95792083740236,
|
| 915 |
+
"completions/min_length": 30.1,
|
| 916 |
+
"completions/min_terminated_length": 30.1,
|
| 917 |
+
"epoch": 0.4533333333333333,
|
| 918 |
+
"frac_reward_zero_std": 0.425,
|
| 919 |
+
"grad_norm": 146.22303771972656,
|
| 920 |
+
"kl": 30.70813355445862,
|
| 921 |
+
"learning_rate": 1.788888888888889e-06,
|
| 922 |
+
"loss": 0.0307,
|
| 923 |
+
"num_tokens": 2187843.0,
|
| 924 |
+
"reward": -2.25625,
|
| 925 |
+
"reward_std": 0.39784331917762755,
|
| 926 |
+
"rewards/reward_func/mean": -2.25625,
|
| 927 |
+
"rewards/reward_func/std": 0.5563936829566956,
|
| 928 |
+
"step": 340
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"clip_ratio/high_max": 0.0,
|
| 932 |
+
"clip_ratio/high_mean": 0.0,
|
| 933 |
+
"clip_ratio/low_mean": 0.0,
|
| 934 |
+
"clip_ratio/low_min": 0.0,
|
| 935 |
+
"clip_ratio/region_mean": 0.0,
|
| 936 |
+
"completion_length": 1043.1,
|
| 937 |
+
"completions/clipped_ratio": 0.01875,
|
| 938 |
+
"completions/max_length": 1043.1,
|
| 939 |
+
"completions/max_terminated_length": 899.7,
|
| 940 |
+
"completions/mean_length": 307.55625,
|
| 941 |
+
"completions/mean_terminated_length": 284.3370895385742,
|
| 942 |
+
"completions/min_length": 24.6,
|
| 943 |
+
"completions/min_terminated_length": 24.6,
|
| 944 |
+
"epoch": 0.4666666666666667,
|
| 945 |
+
"frac_reward_zero_std": 0.55,
|
| 946 |
+
"grad_norm": 32.36188888549805,
|
| 947 |
+
"kl": 64.3428849220276,
|
| 948 |
+
"learning_rate": 1.6777777777777779e-06,
|
| 949 |
+
"loss": 0.0643,
|
| 950 |
+
"num_tokens": 2254616.0,
|
| 951 |
+
"reward": -2.26875,
|
| 952 |
+
"reward_std": 0.3944930166006088,
|
| 953 |
+
"rewards/reward_func/mean": -2.26875,
|
| 954 |
+
"rewards/reward_func/std": 0.6516756772994995,
|
| 955 |
+
"step": 350
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"clip_ratio/high_max": 0.0,
|
| 959 |
+
"clip_ratio/high_mean": 0.0,
|
| 960 |
+
"clip_ratio/low_mean": 0.0,
|
| 961 |
+
"clip_ratio/low_min": 0.0,
|
| 962 |
+
"clip_ratio/region_mean": 0.0,
|
| 963 |
+
"completion_length": 1245.1,
|
| 964 |
+
"completions/clipped_ratio": 0.0375,
|
| 965 |
+
"completions/max_length": 1245.1,
|
| 966 |
+
"completions/max_terminated_length": 964.9,
|
| 967 |
+
"completions/mean_length": 309.43125,
|
| 968 |
+
"completions/mean_terminated_length": 261.41810150146483,
|
| 969 |
+
"completions/min_length": 27.0,
|
| 970 |
+
"completions/min_terminated_length": 27.0,
|
| 971 |
+
"epoch": 0.48,
|
| 972 |
+
"frac_reward_zero_std": 0.5,
|
| 973 |
+
"grad_norm": 38.63202667236328,
|
| 974 |
+
"kl": 21.073752880096436,
|
| 975 |
+
"learning_rate": 1.566666666666667e-06,
|
| 976 |
+
"loss": 0.0211,
|
| 977 |
+
"num_tokens": 2320821.0,
|
| 978 |
+
"reward": -2.275,
|
| 979 |
+
"reward_std": 0.39782515466213225,
|
| 980 |
+
"rewards/reward_func/mean": -2.275,
|
| 981 |
+
"rewards/reward_func/std": 0.5283936500549317,
|
| 982 |
+
"step": 360
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"clip_ratio/high_max": 0.0,
|
| 986 |
+
"clip_ratio/high_mean": 0.0,
|
| 987 |
+
"clip_ratio/low_mean": 0.0,
|
| 988 |
+
"clip_ratio/low_min": 0.0,
|
| 989 |
+
"clip_ratio/region_mean": 0.0,
|
| 990 |
+
"completion_length": 1342.0,
|
| 991 |
+
"completions/clipped_ratio": 0.03125,
|
| 992 |
+
"completions/max_length": 1342.0,
|
| 993 |
+
"completions/max_terminated_length": 1053.9,
|
| 994 |
+
"completions/mean_length": 318.3625,
|
| 995 |
+
"completions/mean_terminated_length": 278.52917327880857,
|
| 996 |
+
"completions/min_length": 21.3,
|
| 997 |
+
"completions/min_terminated_length": 21.3,
|
| 998 |
+
"epoch": 0.49333333333333335,
|
| 999 |
+
"frac_reward_zero_std": 0.4,
|
| 1000 |
+
"grad_norm": 45.37665557861328,
|
| 1001 |
+
"kl": 4.191655397415161,
|
| 1002 |
+
"learning_rate": 1.4555555555555557e-06,
|
| 1003 |
+
"loss": 0.0042,
|
| 1004 |
+
"num_tokens": 2388327.0,
|
| 1005 |
+
"reward": -2.24375,
|
| 1006 |
+
"reward_std": 0.40966878533363343,
|
| 1007 |
+
"rewards/reward_func/mean": -2.24375,
|
| 1008 |
+
"rewards/reward_func/std": 0.5739072471857071,
|
| 1009 |
+
"step": 370
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"clip_ratio/high_max": 0.0,
|
| 1013 |
+
"clip_ratio/high_mean": 0.0,
|
| 1014 |
+
"clip_ratio/low_mean": 0.0,
|
| 1015 |
+
"clip_ratio/low_min": 0.0,
|
| 1016 |
+
"clip_ratio/region_mean": 0.0,
|
| 1017 |
+
"completion_length": 1146.1,
|
| 1018 |
+
"completions/clipped_ratio": 0.05,
|
| 1019 |
+
"completions/max_length": 1146.1,
|
| 1020 |
+
"completions/max_terminated_length": 806.6,
|
| 1021 |
+
"completions/mean_length": 309.30625,
|
| 1022 |
+
"completions/mean_terminated_length": 246.01378784179687,
|
| 1023 |
+
"completions/min_length": 14.3,
|
| 1024 |
+
"completions/min_terminated_length": 14.3,
|
| 1025 |
+
"epoch": 0.5066666666666667,
|
| 1026 |
+
"frac_reward_zero_std": 0.425,
|
| 1027 |
+
"grad_norm": 51.08633804321289,
|
| 1028 |
+
"kl": 10.670231366157532,
|
| 1029 |
+
"learning_rate": 1.3444444444444446e-06,
|
| 1030 |
+
"loss": 0.0107,
|
| 1031 |
+
"num_tokens": 2454412.0,
|
| 1032 |
+
"reward": -2.28125,
|
| 1033 |
+
"reward_std": 0.39523502588272097,
|
| 1034 |
+
"rewards/reward_func/mean": -2.28125,
|
| 1035 |
+
"rewards/reward_func/std": 0.5278610855340957,
|
| 1036 |
+
"step": 380
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"clip_ratio/high_max": 0.0,
|
| 1040 |
+
"clip_ratio/high_mean": 0.0,
|
| 1041 |
+
"clip_ratio/low_mean": 0.0,
|
| 1042 |
+
"clip_ratio/low_min": 0.0,
|
| 1043 |
+
"clip_ratio/region_mean": 0.0,
|
| 1044 |
+
"completion_length": 1179.6,
|
| 1045 |
+
"completions/clipped_ratio": 0.03125,
|
| 1046 |
+
"completions/max_length": 1179.6,
|
| 1047 |
+
"completions/max_terminated_length": 819.6,
|
| 1048 |
+
"completions/mean_length": 301.68125,
|
| 1049 |
+
"completions/mean_terminated_length": 261.32500610351565,
|
| 1050 |
+
"completions/min_length": 18.2,
|
| 1051 |
+
"completions/min_terminated_length": 18.2,
|
| 1052 |
+
"epoch": 0.52,
|
| 1053 |
+
"frac_reward_zero_std": 0.525,
|
| 1054 |
+
"grad_norm": 106.32160949707031,
|
| 1055 |
+
"kl": 21.585847473144533,
|
| 1056 |
+
"learning_rate": 1.2333333333333335e-06,
|
| 1057 |
+
"loss": 0.0216,
|
| 1058 |
+
"num_tokens": 2519509.0,
|
| 1059 |
+
"reward": -2.29375,
|
| 1060 |
+
"reward_std": 0.3345831483602524,
|
| 1061 |
+
"rewards/reward_func/mean": -2.29375,
|
| 1062 |
+
"rewards/reward_func/std": 0.5108768463134765,
|
| 1063 |
+
"step": 390
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"clip_ratio/high_max": 0.0,
|
| 1067 |
+
"clip_ratio/high_mean": 0.0,
|
| 1068 |
+
"clip_ratio/low_mean": 0.0,
|
| 1069 |
+
"clip_ratio/low_min": 0.0,
|
| 1070 |
+
"clip_ratio/region_mean": 0.0,
|
| 1071 |
+
"completion_length": 995.2,
|
| 1072 |
+
"completions/clipped_ratio": 0.03125,
|
| 1073 |
+
"completions/max_length": 995.2,
|
| 1074 |
+
"completions/max_terminated_length": 679.8,
|
| 1075 |
+
"completions/mean_length": 274.5875,
|
| 1076 |
+
"completions/mean_terminated_length": 232.36595611572267,
|
| 1077 |
+
"completions/min_length": 17.9,
|
| 1078 |
+
"completions/min_terminated_length": 17.9,
|
| 1079 |
+
"epoch": 0.5333333333333333,
|
| 1080 |
+
"frac_reward_zero_std": 0.45,
|
| 1081 |
+
"grad_norm": 75.17499542236328,
|
| 1082 |
+
"kl": 9.158978390693665,
|
| 1083 |
+
"learning_rate": 1.1222222222222222e-06,
|
| 1084 |
+
"loss": 0.0092,
|
| 1085 |
+
"num_tokens": 2579431.0,
|
| 1086 |
+
"reward": -2.1875,
|
| 1087 |
+
"reward_std": 0.4814758121967316,
|
| 1088 |
+
"rewards/reward_func/mean": -2.1875,
|
| 1089 |
+
"rewards/reward_func/std": 0.6688827067613602,
|
| 1090 |
+
"step": 400
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"clip_ratio/high_max": 0.0,
|
| 1094 |
+
"clip_ratio/high_mean": 0.0,
|
| 1095 |
+
"clip_ratio/low_mean": 0.0,
|
| 1096 |
+
"clip_ratio/low_min": 0.0,
|
| 1097 |
+
"clip_ratio/region_mean": 0.0,
|
| 1098 |
+
"completion_length": 1195.5,
|
| 1099 |
+
"completions/clipped_ratio": 0.025,
|
| 1100 |
+
"completions/max_length": 1195.5,
|
| 1101 |
+
"completions/max_terminated_length": 997.3,
|
| 1102 |
+
"completions/mean_length": 286.84375,
|
| 1103 |
+
"completions/mean_terminated_length": 254.71875457763673,
|
| 1104 |
+
"completions/min_length": 15.5,
|
| 1105 |
+
"completions/min_terminated_length": 15.5,
|
| 1106 |
+
"epoch": 0.5466666666666666,
|
| 1107 |
+
"frac_reward_zero_std": 0.475,
|
| 1108 |
+
"grad_norm": 95.73103332519531,
|
| 1109 |
+
"kl": 8.273300886154175,
|
| 1110 |
+
"learning_rate": 1.0111111111111111e-06,
|
| 1111 |
+
"loss": 0.0083,
|
| 1112 |
+
"num_tokens": 2641798.0,
|
| 1113 |
+
"reward": -2.25,
|
| 1114 |
+
"reward_std": 0.39309037029743193,
|
| 1115 |
+
"rewards/reward_func/mean": -2.25,
|
| 1116 |
+
"rewards/reward_func/std": 0.5219055712223053,
|
| 1117 |
+
"step": 410
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"clip_ratio/high_max": 0.0,
|
| 1121 |
+
"clip_ratio/high_mean": 0.0,
|
| 1122 |
+
"clip_ratio/low_mean": 0.0,
|
| 1123 |
+
"clip_ratio/low_min": 0.0,
|
| 1124 |
+
"clip_ratio/region_mean": 0.0,
|
| 1125 |
+
"completion_length": 974.9,
|
| 1126 |
+
"completions/clipped_ratio": 0.0125,
|
| 1127 |
+
"completions/max_length": 974.9,
|
| 1128 |
+
"completions/max_terminated_length": 869.7,
|
| 1129 |
+
"completions/mean_length": 261.23125,
|
| 1130 |
+
"completions/mean_terminated_length": 244.99042053222655,
|
| 1131 |
+
"completions/min_length": 16.0,
|
| 1132 |
+
"completions/min_terminated_length": 16.0,
|
| 1133 |
+
"epoch": 0.56,
|
| 1134 |
+
"frac_reward_zero_std": 0.375,
|
| 1135 |
+
"grad_norm": 99.72528839111328,
|
| 1136 |
+
"kl": 6.985241413116455,
|
| 1137 |
+
"learning_rate": 9.000000000000001e-07,
|
| 1138 |
+
"loss": 0.007,
|
| 1139 |
+
"num_tokens": 2700271.0,
|
| 1140 |
+
"reward": -2.23125,
|
| 1141 |
+
"reward_std": 0.4483605235815048,
|
| 1142 |
+
"rewards/reward_func/mean": -2.23125,
|
| 1143 |
+
"rewards/reward_func/std": 0.5773171722888947,
|
| 1144 |
+
"step": 420
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"clip_ratio/high_max": 0.0,
|
| 1148 |
+
"clip_ratio/high_mean": 0.0,
|
| 1149 |
+
"clip_ratio/low_mean": 0.0,
|
| 1150 |
+
"clip_ratio/low_min": 0.0,
|
| 1151 |
+
"clip_ratio/region_mean": 0.0,
|
| 1152 |
+
"completion_length": 964.0,
|
| 1153 |
+
"completions/clipped_ratio": 0.0125,
|
| 1154 |
+
"completions/max_length": 964.0,
|
| 1155 |
+
"completions/max_terminated_length": 776.9,
|
| 1156 |
+
"completions/mean_length": 280.24375,
|
| 1157 |
+
"completions/mean_terminated_length": 263.74458465576174,
|
| 1158 |
+
"completions/min_length": 14.2,
|
| 1159 |
+
"completions/min_terminated_length": 14.2,
|
| 1160 |
+
"epoch": 0.5733333333333334,
|
| 1161 |
+
"frac_reward_zero_std": 0.45,
|
| 1162 |
+
"grad_norm": 124.6417007446289,
|
| 1163 |
+
"kl": 11.635133910179139,
|
| 1164 |
+
"learning_rate": 7.888888888888889e-07,
|
| 1165 |
+
"loss": 0.0116,
|
| 1166 |
+
"num_tokens": 2762894.0,
|
| 1167 |
+
"reward": -2.1875,
|
| 1168 |
+
"reward_std": 0.5182177871465683,
|
| 1169 |
+
"rewards/reward_func/mean": -2.1875,
|
| 1170 |
+
"rewards/reward_func/std": 0.7841762661933899,
|
| 1171 |
+
"step": 430
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"clip_ratio/high_max": 0.0,
|
| 1175 |
+
"clip_ratio/high_mean": 0.0,
|
| 1176 |
+
"clip_ratio/low_mean": 0.0,
|
| 1177 |
+
"clip_ratio/low_min": 0.0,
|
| 1178 |
+
"clip_ratio/region_mean": 0.0,
|
| 1179 |
+
"completion_length": 1059.5,
|
| 1180 |
+
"completions/clipped_ratio": 0.01875,
|
| 1181 |
+
"completions/max_length": 1059.5,
|
| 1182 |
+
"completions/max_terminated_length": 908.1,
|
| 1183 |
+
"completions/mean_length": 311.675,
|
| 1184 |
+
"completions/mean_terminated_length": 289.6191696166992,
|
| 1185 |
+
"completions/min_length": 21.8,
|
| 1186 |
+
"completions/min_terminated_length": 21.8,
|
| 1187 |
+
"epoch": 0.5866666666666667,
|
| 1188 |
+
"frac_reward_zero_std": 0.475,
|
| 1189 |
+
"grad_norm": 132.1418914794922,
|
| 1190 |
+
"kl": 115.09008512496948,
|
| 1191 |
+
"learning_rate": 6.777777777777779e-07,
|
| 1192 |
+
"loss": 0.1151,
|
| 1193 |
+
"num_tokens": 2830866.0,
|
| 1194 |
+
"reward": -2.35,
|
| 1195 |
+
"reward_std": 0.26443375647068024,
|
| 1196 |
+
"rewards/reward_func/mean": -2.35,
|
| 1197 |
+
"rewards/reward_func/std": 0.35543124079704286,
|
| 1198 |
+
"step": 440
|
| 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 |
+
"completion_length": 1278.8,
|
| 1207 |
+
"completions/clipped_ratio": 0.0625,
|
| 1208 |
+
"completions/max_length": 1278.8,
|
| 1209 |
+
"completions/max_terminated_length": 777.6,
|
| 1210 |
+
"completions/mean_length": 327.28125,
|
| 1211 |
+
"completions/mean_terminated_length": 247.8854248046875,
|
| 1212 |
+
"completions/min_length": 25.5,
|
| 1213 |
+
"completions/min_terminated_length": 25.5,
|
| 1214 |
+
"epoch": 0.6,
|
| 1215 |
+
"frac_reward_zero_std": 0.45,
|
| 1216 |
+
"grad_norm": 121.0811538696289,
|
| 1217 |
+
"kl": 21.60447826385498,
|
| 1218 |
+
"learning_rate": 5.666666666666667e-07,
|
| 1219 |
+
"loss": 0.0216,
|
| 1220 |
+
"num_tokens": 2900423.0,
|
| 1221 |
+
"reward": -2.24375,
|
| 1222 |
+
"reward_std": 0.4444930166006088,
|
| 1223 |
+
"rewards/reward_func/mean": -2.24375,
|
| 1224 |
+
"rewards/reward_func/std": 0.6568617165088654,
|
| 1225 |
+
"step": 450
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"clip_ratio/high_max": 0.0,
|
| 1229 |
+
"clip_ratio/high_mean": 0.0,
|
| 1230 |
+
"clip_ratio/low_mean": 0.0,
|
| 1231 |
+
"clip_ratio/low_min": 0.0,
|
| 1232 |
+
"clip_ratio/region_mean": 0.0,
|
| 1233 |
+
"completion_length": 1040.1,
|
| 1234 |
+
"completions/clipped_ratio": 0.01875,
|
| 1235 |
+
"completions/max_length": 1040.1,
|
| 1236 |
+
"completions/max_terminated_length": 760.2,
|
| 1237 |
+
"completions/mean_length": 274.375,
|
| 1238 |
+
"completions/mean_terminated_length": 249.7200035095215,
|
| 1239 |
+
"completions/min_length": 19.1,
|
| 1240 |
+
"completions/min_terminated_length": 19.1,
|
| 1241 |
+
"epoch": 0.6133333333333333,
|
| 1242 |
+
"frac_reward_zero_std": 0.425,
|
| 1243 |
+
"grad_norm": 38.948699951171875,
|
| 1244 |
+
"kl": 14.533638858795166,
|
| 1245 |
+
"learning_rate": 4.5555555555555563e-07,
|
| 1246 |
+
"loss": 0.0145,
|
| 1247 |
+
"num_tokens": 2961131.0,
|
| 1248 |
+
"reward": -2.3125,
|
| 1249 |
+
"reward_std": 0.31917070150375365,
|
| 1250 |
+
"rewards/reward_func/mean": -2.3125,
|
| 1251 |
+
"rewards/reward_func/std": 0.4087942600250244,
|
| 1252 |
+
"step": 460
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"clip_ratio/high_max": 0.0,
|
| 1256 |
+
"clip_ratio/high_mean": 0.0,
|
| 1257 |
+
"clip_ratio/low_mean": 0.0,
|
| 1258 |
+
"clip_ratio/low_min": 0.0,
|
| 1259 |
+
"clip_ratio/region_mean": 0.0,
|
| 1260 |
+
"completion_length": 1305.9,
|
| 1261 |
+
"completions/clipped_ratio": 0.04375,
|
| 1262 |
+
"completions/max_length": 1305.9,
|
| 1263 |
+
"completions/max_terminated_length": 1012.3,
|
| 1264 |
+
"completions/mean_length": 315.675,
|
| 1265 |
+
"completions/mean_terminated_length": 259.3705429077148,
|
| 1266 |
+
"completions/min_length": 18.0,
|
| 1267 |
+
"completions/min_terminated_length": 18.0,
|
| 1268 |
+
"epoch": 0.6266666666666667,
|
| 1269 |
+
"frac_reward_zero_std": 0.35,
|
| 1270 |
+
"grad_norm": 60.82999038696289,
|
| 1271 |
+
"kl": 27.974109888076782,
|
| 1272 |
+
"learning_rate": 3.444444444444445e-07,
|
| 1273 |
+
"loss": 0.028,
|
| 1274 |
+
"num_tokens": 3028239.0,
|
| 1275 |
+
"reward": -2.24375,
|
| 1276 |
+
"reward_std": 0.3991025358438492,
|
| 1277 |
+
"rewards/reward_func/mean": -2.24375,
|
| 1278 |
+
"rewards/reward_func/std": 0.5254836320877075,
|
| 1279 |
+
"step": 470
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"clip_ratio/high_max": 0.0,
|
| 1283 |
+
"clip_ratio/high_mean": 0.0,
|
| 1284 |
+
"clip_ratio/low_mean": 0.0,
|
| 1285 |
+
"clip_ratio/low_min": 0.0,
|
| 1286 |
+
"clip_ratio/region_mean": 0.0,
|
| 1287 |
+
"completion_length": 984.0,
|
| 1288 |
+
"completions/clipped_ratio": 0.0125,
|
| 1289 |
+
"completions/max_length": 984.0,
|
| 1290 |
+
"completions/max_terminated_length": 822.9,
|
| 1291 |
+
"completions/mean_length": 262.79375,
|
| 1292 |
+
"completions/mean_terminated_length": 246.77666931152345,
|
| 1293 |
+
"completions/min_length": 21.2,
|
| 1294 |
+
"completions/min_terminated_length": 21.2,
|
| 1295 |
+
"epoch": 0.64,
|
| 1296 |
+
"frac_reward_zero_std": 0.425,
|
| 1297 |
+
"grad_norm": 104.03584289550781,
|
| 1298 |
+
"kl": 13.309299659729003,
|
| 1299 |
+
"learning_rate": 2.3333333333333336e-07,
|
| 1300 |
+
"loss": 0.0133,
|
| 1301 |
+
"num_tokens": 3087690.0,
|
| 1302 |
+
"reward": -2.25625,
|
| 1303 |
+
"reward_std": 0.4189758121967316,
|
| 1304 |
+
"rewards/reward_func/mean": -2.25625,
|
| 1305 |
+
"rewards/reward_func/std": 0.5928926885128021,
|
| 1306 |
+
"step": 480
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"clip_ratio/high_max": 0.0,
|
| 1310 |
+
"clip_ratio/high_mean": 0.0,
|
| 1311 |
+
"clip_ratio/low_mean": 0.0,
|
| 1312 |
+
"clip_ratio/low_min": 0.0,
|
| 1313 |
+
"clip_ratio/region_mean": 0.0,
|
| 1314 |
+
"completion_length": 999.4,
|
| 1315 |
+
"completions/clipped_ratio": 0.0125,
|
| 1316 |
+
"completions/max_length": 999.4,
|
| 1317 |
+
"completions/max_terminated_length": 889.3,
|
| 1318 |
+
"completions/mean_length": 273.45625,
|
| 1319 |
+
"completions/mean_terminated_length": 257.5420852661133,
|
| 1320 |
+
"completions/min_length": 34.7,
|
| 1321 |
+
"completions/min_terminated_length": 34.7,
|
| 1322 |
+
"epoch": 0.6533333333333333,
|
| 1323 |
+
"frac_reward_zero_std": 0.6,
|
| 1324 |
+
"grad_norm": 56.064544677734375,
|
| 1325 |
+
"kl": 25.44476251602173,
|
| 1326 |
+
"learning_rate": 1.2222222222222225e-07,
|
| 1327 |
+
"loss": 0.0254,
|
| 1328 |
+
"num_tokens": 3148447.0,
|
| 1329 |
+
"reward": -2.3625,
|
| 1330 |
+
"reward_std": 0.23339140117168428,
|
| 1331 |
+
"rewards/reward_func/mean": -2.3625,
|
| 1332 |
+
"rewards/reward_func/std": 0.37498362064361573,
|
| 1333 |
+
"step": 490
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"clip_ratio/high_max": 0.0,
|
| 1337 |
+
"clip_ratio/high_mean": 0.0,
|
| 1338 |
+
"clip_ratio/low_mean": 0.0,
|
| 1339 |
+
"clip_ratio/low_min": 0.0,
|
| 1340 |
+
"clip_ratio/region_mean": 0.0,
|
| 1341 |
+
"completion_length": 1092.4,
|
| 1342 |
+
"completions/clipped_ratio": 0.0375,
|
| 1343 |
+
"completions/max_length": 1092.4,
|
| 1344 |
+
"completions/max_terminated_length": 675.7,
|
| 1345 |
+
"completions/mean_length": 294.625,
|
| 1346 |
+
"completions/mean_terminated_length": 246.04232788085938,
|
| 1347 |
+
"completions/min_length": 19.8,
|
| 1348 |
+
"completions/min_terminated_length": 19.8,
|
| 1349 |
+
"epoch": 0.6666666666666666,
|
| 1350 |
+
"frac_reward_zero_std": 0.45,
|
| 1351 |
+
"grad_norm": 122.21601104736328,
|
| 1352 |
+
"kl": 17.26050043106079,
|
| 1353 |
+
"learning_rate": 1.1111111111111112e-08,
|
| 1354 |
+
"loss": 0.0173,
|
| 1355 |
+
"num_tokens": 3212059.0,
|
| 1356 |
+
"reward": -2.2125,
|
| 1357 |
+
"reward_std": 0.4100087761878967,
|
| 1358 |
+
"rewards/reward_func/mean": -2.2125,
|
| 1359 |
+
"rewards/reward_func/std": 0.5889766067266464,
|
| 1360 |
+
"step": 500
|
| 1361 |
+
}
|
| 1362 |
+
],
|
| 1363 |
+
"logging_steps": 10,
|
| 1364 |
+
"max_steps": 500,
|
| 1365 |
+
"num_input_tokens_seen": 3212059,
|
| 1366 |
+
"num_train_epochs": 1,
|
| 1367 |
+
"save_steps": 500,
|
| 1368 |
+
"stateful_callbacks": {
|
| 1369 |
+
"TrainerControl": {
|
| 1370 |
+
"args": {
|
| 1371 |
+
"should_epoch_stop": false,
|
| 1372 |
+
"should_evaluate": false,
|
| 1373 |
+
"should_log": false,
|
| 1374 |
+
"should_save": true,
|
| 1375 |
+
"should_training_stop": true
|
| 1376 |
+
},
|
| 1377 |
+
"attributes": {}
|
| 1378 |
+
}
|
| 1379 |
+
},
|
| 1380 |
+
"total_flos": 0.0,
|
| 1381 |
+
"train_batch_size": 16,
|
| 1382 |
+
"trial_name": null,
|
| 1383 |
+
"trial_params": null
|
| 1384 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e52bdd343fc366e7d6fe3e5b14ca8c8b075ddcc6067471bdd979e8c93df1a449
|
| 3 |
+
size 7441
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|