Instructions to use bimabk/test_gin_rummy_fix3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/test_gin_rummy_fix3 with PEFT:
Base model is not found.
- Transformers
How to use bimabk/test_gin_rummy_fix3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/test_gin_rummy_fix3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bimabk/test_gin_rummy_fix3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use bimabk/test_gin_rummy_fix3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bimabk/test_gin_rummy_fix3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bimabk/test_gin_rummy_fix3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/test_gin_rummy_fix3
- SGLang
How to use bimabk/test_gin_rummy_fix3 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 "bimabk/test_gin_rummy_fix3" \ --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": "bimabk/test_gin_rummy_fix3", "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 "bimabk/test_gin_rummy_fix3" \ --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": "bimabk/test_gin_rummy_fix3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/test_gin_rummy_fix3 with Docker Model Runner:
docker model run hf.co/bimabk/test_gin_rummy_fix3
Upload task output 1
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- chat_template.jinja +54 -0
- loss.txt +1 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +207 -0
- trainer_state.json +1267 -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,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: None
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Qwen--Qwen2.5-3B-Instruct
|
| 7 |
+
- grpo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": null,
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"up_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"k_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c195cfd6ddd7d1c70e4ad509b9543b57c8623d87a0eed271cc25b593fc0bd100
|
| 3 |
+
size 239536272
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
50,0.47466856505721805
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 131072,
|
| 203 |
+
"pad_token": "<|endoftext|>",
|
| 204 |
+
"split_special_tokens": false,
|
| 205 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 206 |
+
"unk_token": null
|
| 207 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1267 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.0005,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 50,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 16 |
+
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.65625,
|
| 19 |
+
"completions/max_length": 14431.0,
|
| 20 |
+
"completions/max_terminated_length": 13090.0,
|
| 21 |
+
"completions/mean_length": 11799.78125,
|
| 22 |
+
"completions/mean_terminated_length": 7162.27294921875,
|
| 23 |
+
"completions/min_length": 235.0,
|
| 24 |
+
"completions/min_terminated_length": 235.0,
|
| 25 |
+
"entropy": 0.13893846329301596,
|
| 26 |
+
"epoch": 1e-05,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 1.7887574434280396,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 0.0,
|
| 31 |
+
"loss": -0.0596,
|
| 32 |
+
"num_tokens": 404630.0,
|
| 33 |
+
"reward": -0.7717239856719971,
|
| 34 |
+
"reward_std": 0.42467162013053894,
|
| 35 |
+
"rewards/rollout_reward_func/mean": -0.7717239856719971,
|
| 36 |
+
"rewards/rollout_reward_func/std": 0.5858266353607178,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.7099345922470093,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 0.9991271495819092,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.4281526207923889,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.8482755422592163,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.012976451776921749,
|
| 42 |
+
"step": 1,
|
| 43 |
+
"step_time": 130.9108755219977
|
| 44 |
+
},
|
| 45 |
+
{
|
| 46 |
+
"clip_ratio/high_max": 0.0,
|
| 47 |
+
"clip_ratio/high_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_mean": 0.0,
|
| 49 |
+
"clip_ratio/low_min": 0.0,
|
| 50 |
+
"clip_ratio/region_mean": 0.0,
|
| 51 |
+
"entropy": 0.13893846329301596,
|
| 52 |
+
"epoch": 2e-05,
|
| 53 |
+
"grad_norm": 1.804929494857788,
|
| 54 |
+
"kl": 0.0,
|
| 55 |
+
"learning_rate": 2.8571428571428573e-06,
|
| 56 |
+
"loss": -0.0596,
|
| 57 |
+
"step": 2,
|
| 58 |
+
"step_time": 44.13144713700058
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"clip_ratio/high_max": 0.0022670181933790445,
|
| 62 |
+
"clip_ratio/high_mean": 0.0011335090966895223,
|
| 63 |
+
"clip_ratio/low_mean": 0.0029946123831905425,
|
| 64 |
+
"clip_ratio/low_min": 0.0005040322430431843,
|
| 65 |
+
"clip_ratio/region_mean": 0.004128121479880065,
|
| 66 |
+
"completions/clipped_ratio": 0.6875,
|
| 67 |
+
"completions/max_length": 14439.0,
|
| 68 |
+
"completions/max_terminated_length": 11449.0,
|
| 69 |
+
"completions/mean_length": 11617.5,
|
| 70 |
+
"completions/mean_terminated_length": 5924.5,
|
| 71 |
+
"completions/min_length": 323.0,
|
| 72 |
+
"completions/min_terminated_length": 323.0,
|
| 73 |
+
"entropy": 0.12676118151284754,
|
| 74 |
+
"epoch": 3e-05,
|
| 75 |
+
"frac_reward_zero_std": 0.0,
|
| 76 |
+
"grad_norm": 1.4913136959075928,
|
| 77 |
+
"kl": 0.0009995185955631314,
|
| 78 |
+
"learning_rate": 5.7142857142857145e-06,
|
| 79 |
+
"loss": 0.0137,
|
| 80 |
+
"num_tokens": 803817.0,
|
| 81 |
+
"reward": -0.8155950307846069,
|
| 82 |
+
"reward_std": 0.4161786139011383,
|
| 83 |
+
"rewards/rollout_reward_func/mean": -0.8155950307846069,
|
| 84 |
+
"rewards/rollout_reward_func/std": 0.4885525703430176,
|
| 85 |
+
"sampling/importance_sampling_ratio/max": 2.0640246868133545,
|
| 86 |
+
"sampling/importance_sampling_ratio/mean": 0.9992372393608093,
|
| 87 |
+
"sampling/importance_sampling_ratio/min": 0.41666513681411743,
|
| 88 |
+
"sampling/sampling_logp_difference/max": 0.8754724264144897,
|
| 89 |
+
"sampling/sampling_logp_difference/mean": 0.011403773911297321,
|
| 90 |
+
"step": 3,
|
| 91 |
+
"step_time": 126.63972502899833
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"clip_ratio/high_max": 0.005151324032340199,
|
| 95 |
+
"clip_ratio/high_mean": 0.0025756620161700994,
|
| 96 |
+
"clip_ratio/low_mean": 0.001626400655368343,
|
| 97 |
+
"clip_ratio/low_min": 0.0005040322430431843,
|
| 98 |
+
"clip_ratio/region_mean": 0.004202062671538442,
|
| 99 |
+
"entropy": 0.12616439966950566,
|
| 100 |
+
"epoch": 4e-05,
|
| 101 |
+
"grad_norm": 1.4003232717514038,
|
| 102 |
+
"kl": 0.001313611121076974,
|
| 103 |
+
"learning_rate": 8.571428571428573e-06,
|
| 104 |
+
"loss": 0.0134,
|
| 105 |
+
"step": 4,
|
| 106 |
+
"step_time": 44.62073808600053
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"clip_ratio/high_max": 0.0016215514624491334,
|
| 110 |
+
"clip_ratio/high_mean": 0.0008107757312245667,
|
| 111 |
+
"clip_ratio/low_mean": 0.003547743574017659,
|
| 112 |
+
"clip_ratio/low_min": 0.0010995370685122907,
|
| 113 |
+
"clip_ratio/region_mean": 0.0043585193052422255,
|
| 114 |
+
"completions/clipped_ratio": 0.8125,
|
| 115 |
+
"completions/max_length": 14535.0,
|
| 116 |
+
"completions/max_terminated_length": 11037.0,
|
| 117 |
+
"completions/mean_length": 12972.78125,
|
| 118 |
+
"completions/mean_terminated_length": 7317.5,
|
| 119 |
+
"completions/min_length": 4349.0,
|
| 120 |
+
"completions/min_terminated_length": 4349.0,
|
| 121 |
+
"entropy": 0.1461638123728335,
|
| 122 |
+
"epoch": 5e-05,
|
| 123 |
+
"frac_reward_zero_std": 0.0,
|
| 124 |
+
"grad_norm": 2.107853889465332,
|
| 125 |
+
"kl": 0.001256127497072157,
|
| 126 |
+
"learning_rate": 1.1428571428571429e-05,
|
| 127 |
+
"loss": 0.1588,
|
| 128 |
+
"num_tokens": 1245837.0,
|
| 129 |
+
"reward": -0.6968419551849365,
|
| 130 |
+
"reward_std": 0.4676758050918579,
|
| 131 |
+
"rewards/rollout_reward_func/mean": -0.6968419551849365,
|
| 132 |
+
"rewards/rollout_reward_func/std": 0.5711839199066162,
|
| 133 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 134 |
+
"sampling/importance_sampling_ratio/mean": 1.001021385192871,
|
| 135 |
+
"sampling/importance_sampling_ratio/min": 0.5821155905723572,
|
| 136 |
+
"sampling/sampling_logp_difference/max": 1.1031980514526367,
|
| 137 |
+
"sampling/sampling_logp_difference/mean": 0.01345288660377264,
|
| 138 |
+
"step": 5,
|
| 139 |
+
"step_time": 131.89395336500274
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"clip_ratio/high_max": 0.0021937466226518154,
|
| 143 |
+
"clip_ratio/high_mean": 0.0010968733113259077,
|
| 144 |
+
"clip_ratio/low_mean": 0.0032513330806978047,
|
| 145 |
+
"clip_ratio/low_min": 0.0,
|
| 146 |
+
"clip_ratio/region_mean": 0.004348206392023712,
|
| 147 |
+
"entropy": 0.14492363901808858,
|
| 148 |
+
"epoch": 6e-05,
|
| 149 |
+
"grad_norm": 1.6609207391738892,
|
| 150 |
+
"kl": 0.001644153301640472,
|
| 151 |
+
"learning_rate": 1.4285714285714285e-05,
|
| 152 |
+
"loss": 0.1578,
|
| 153 |
+
"step": 6,
|
| 154 |
+
"step_time": 46.381975520000196
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"clip_ratio/high_max": 0.0031376838451251388,
|
| 158 |
+
"clip_ratio/high_mean": 0.0015688419225625694,
|
| 159 |
+
"clip_ratio/low_mean": 0.0033995709964074194,
|
| 160 |
+
"clip_ratio/low_min": 0.0015243901871144772,
|
| 161 |
+
"clip_ratio/region_mean": 0.004968412918969989,
|
| 162 |
+
"completions/clipped_ratio": 0.5625,
|
| 163 |
+
"completions/max_length": 14446.0,
|
| 164 |
+
"completions/max_terminated_length": 12650.0,
|
| 165 |
+
"completions/mean_length": 11378.28125,
|
| 166 |
+
"completions/mean_terminated_length": 7822.64306640625,
|
| 167 |
+
"completions/min_length": 1771.0,
|
| 168 |
+
"completions/min_terminated_length": 1771.0,
|
| 169 |
+
"entropy": 0.0922874582465738,
|
| 170 |
+
"epoch": 7e-05,
|
| 171 |
+
"frac_reward_zero_std": 0.0,
|
| 172 |
+
"grad_norm": 1.8714547157287598,
|
| 173 |
+
"kl": 0.0019052933557759388,
|
| 174 |
+
"learning_rate": 1.7142857142857145e-05,
|
| 175 |
+
"loss": 0.3544,
|
| 176 |
+
"num_tokens": 1637608.0,
|
| 177 |
+
"reward": -0.4466933012008667,
|
| 178 |
+
"reward_std": 0.8536279201507568,
|
| 179 |
+
"rewards/rollout_reward_func/mean": -0.4466933012008667,
|
| 180 |
+
"rewards/rollout_reward_func/std": 0.8547493815422058,
|
| 181 |
+
"sampling/importance_sampling_ratio/max": 2.0912468433380127,
|
| 182 |
+
"sampling/importance_sampling_ratio/mean": 0.9991166591644287,
|
| 183 |
+
"sampling/importance_sampling_ratio/min": 0.48319441080093384,
|
| 184 |
+
"sampling/sampling_logp_difference/max": 0.7377604246139526,
|
| 185 |
+
"sampling/sampling_logp_difference/mean": 0.01108577847480774,
|
| 186 |
+
"step": 7,
|
| 187 |
+
"step_time": 126.40769893900142
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"clip_ratio/high_max": 0.004281101922970265,
|
| 191 |
+
"clip_ratio/high_mean": 0.002941832965007052,
|
| 192 |
+
"clip_ratio/low_mean": 0.004934519121889025,
|
| 193 |
+
"clip_ratio/low_min": 0.001998567197006196,
|
| 194 |
+
"clip_ratio/region_mean": 0.007876352086896077,
|
| 195 |
+
"entropy": 0.08806704939343035,
|
| 196 |
+
"epoch": 8e-05,
|
| 197 |
+
"grad_norm": 1.634592890739441,
|
| 198 |
+
"kl": 0.003069787417189218,
|
| 199 |
+
"learning_rate": 2e-05,
|
| 200 |
+
"loss": 0.347,
|
| 201 |
+
"step": 8,
|
| 202 |
+
"step_time": 44.41796817000068
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"clip_ratio/high_max": 0.0016580428346060216,
|
| 206 |
+
"clip_ratio/high_mean": 0.0008290214173030108,
|
| 207 |
+
"clip_ratio/low_mean": 0.00299244187772274,
|
| 208 |
+
"clip_ratio/low_min": 0.0006009615608491004,
|
| 209 |
+
"clip_ratio/region_mean": 0.003821463295025751,
|
| 210 |
+
"completions/clipped_ratio": 0.65625,
|
| 211 |
+
"completions/max_length": 14526.0,
|
| 212 |
+
"completions/max_terminated_length": 13961.0,
|
| 213 |
+
"completions/mean_length": 11837.40625,
|
| 214 |
+
"completions/mean_terminated_length": 7239.818359375,
|
| 215 |
+
"completions/min_length": 967.0,
|
| 216 |
+
"completions/min_terminated_length": 967.0,
|
| 217 |
+
"entropy": 0.10492791910655797,
|
| 218 |
+
"epoch": 9e-05,
|
| 219 |
+
"frac_reward_zero_std": 0.0,
|
| 220 |
+
"grad_norm": 1.7168275117874146,
|
| 221 |
+
"kl": 0.004868662523222156,
|
| 222 |
+
"learning_rate": 2.2857142857142858e-05,
|
| 223 |
+
"loss": -0.0376,
|
| 224 |
+
"num_tokens": 2043692.0,
|
| 225 |
+
"reward": -0.6215145587921143,
|
| 226 |
+
"reward_std": 0.6429688930511475,
|
| 227 |
+
"rewards/rollout_reward_func/mean": -0.6215145587921143,
|
| 228 |
+
"rewards/rollout_reward_func/std": 0.7194304466247559,
|
| 229 |
+
"sampling/importance_sampling_ratio/max": 1.6615937948226929,
|
| 230 |
+
"sampling/importance_sampling_ratio/mean": 1.0002217292785645,
|
| 231 |
+
"sampling/importance_sampling_ratio/min": 0.47998860478401184,
|
| 232 |
+
"sampling/sampling_logp_difference/max": 0.7339929938316345,
|
| 233 |
+
"sampling/sampling_logp_difference/mean": 0.010960595682263374,
|
| 234 |
+
"step": 9,
|
| 235 |
+
"step_time": 124.44129867599804
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"clip_ratio/high_max": 0.005017199146095663,
|
| 239 |
+
"clip_ratio/high_mean": 0.0025085995730478317,
|
| 240 |
+
"clip_ratio/low_mean": 0.00814974692184478,
|
| 241 |
+
"clip_ratio/low_min": 0.002315932302735746,
|
| 242 |
+
"clip_ratio/region_mean": 0.010658346494892612,
|
| 243 |
+
"entropy": 0.09843971265945584,
|
| 244 |
+
"epoch": 0.0001,
|
| 245 |
+
"grad_norm": 1.3552314043045044,
|
| 246 |
+
"kl": 0.01046636993123684,
|
| 247 |
+
"learning_rate": 2.5714285714285714e-05,
|
| 248 |
+
"loss": -0.0446,
|
| 249 |
+
"step": 10,
|
| 250 |
+
"step_time": 45.56444605700199
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"clip_ratio/high_max": 0.0035993335768580437,
|
| 254 |
+
"clip_ratio/high_mean": 0.0017996667884290218,
|
| 255 |
+
"clip_ratio/low_mean": 0.003951315797166899,
|
| 256 |
+
"clip_ratio/low_min": 0.0,
|
| 257 |
+
"clip_ratio/region_mean": 0.005750982585595921,
|
| 258 |
+
"completions/clipped_ratio": 0.65625,
|
| 259 |
+
"completions/max_length": 14459.0,
|
| 260 |
+
"completions/max_terminated_length": 13816.0,
|
| 261 |
+
"completions/mean_length": 11661.625,
|
| 262 |
+
"completions/mean_terminated_length": 6824.5458984375,
|
| 263 |
+
"completions/min_length": 339.0,
|
| 264 |
+
"completions/min_terminated_length": 339.0,
|
| 265 |
+
"entropy": 0.06328993663191795,
|
| 266 |
+
"epoch": 0.00011,
|
| 267 |
+
"frac_reward_zero_std": 0.0,
|
| 268 |
+
"grad_norm": 1.7052122354507446,
|
| 269 |
+
"kl": 0.020232660688634496,
|
| 270 |
+
"learning_rate": 2.857142857142857e-05,
|
| 271 |
+
"loss": -0.0762,
|
| 272 |
+
"num_tokens": 2444128.0,
|
| 273 |
+
"reward": -0.7770951390266418,
|
| 274 |
+
"reward_std": 0.4045039117336273,
|
| 275 |
+
"rewards/rollout_reward_func/mean": -0.7770951390266418,
|
| 276 |
+
"rewards/rollout_reward_func/std": 0.4794606566429138,
|
| 277 |
+
"sampling/importance_sampling_ratio/max": 2.010491371154785,
|
| 278 |
+
"sampling/importance_sampling_ratio/mean": 0.9987582564353943,
|
| 279 |
+
"sampling/importance_sampling_ratio/min": 0.159025177359581,
|
| 280 |
+
"sampling/sampling_logp_difference/max": 1.8386926651000977,
|
| 281 |
+
"sampling/sampling_logp_difference/mean": 0.008627503179013729,
|
| 282 |
+
"step": 11,
|
| 283 |
+
"step_time": 121.11756841299757
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"clip_ratio/high_max": 0.005686733347829431,
|
| 287 |
+
"clip_ratio/high_mean": 0.0028433666739147156,
|
| 288 |
+
"clip_ratio/low_mean": 0.012177724187495187,
|
| 289 |
+
"clip_ratio/low_min": 0.006776289606932551,
|
| 290 |
+
"clip_ratio/region_mean": 0.015021090890513733,
|
| 291 |
+
"entropy": 0.06035556551069021,
|
| 292 |
+
"epoch": 0.00012,
|
| 293 |
+
"grad_norm": 1.6369805335998535,
|
| 294 |
+
"kl": 0.06257348190410994,
|
| 295 |
+
"learning_rate": 3.142857142857143e-05,
|
| 296 |
+
"loss": -0.0747,
|
| 297 |
+
"step": 12,
|
| 298 |
+
"step_time": 44.37280418500268
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"clip_ratio/high_max": 0.006585154333151877,
|
| 302 |
+
"clip_ratio/high_mean": 0.003569125838112086,
|
| 303 |
+
"clip_ratio/low_mean": 0.00462483472074382,
|
| 304 |
+
"clip_ratio/low_min": 0.0,
|
| 305 |
+
"clip_ratio/region_mean": 0.008193960617063567,
|
| 306 |
+
"completions/clipped_ratio": 0.8125,
|
| 307 |
+
"completions/max_length": 14486.0,
|
| 308 |
+
"completions/max_terminated_length": 13435.0,
|
| 309 |
+
"completions/mean_length": 12772.375,
|
| 310 |
+
"completions/mean_terminated_length": 6521.1669921875,
|
| 311 |
+
"completions/min_length": 815.0,
|
| 312 |
+
"completions/min_terminated_length": 815.0,
|
| 313 |
+
"entropy": 0.09321935242041945,
|
| 314 |
+
"epoch": 0.00013,
|
| 315 |
+
"frac_reward_zero_std": 0.0,
|
| 316 |
+
"grad_norm": 1.849172592163086,
|
| 317 |
+
"kl": 0.03665067162364721,
|
| 318 |
+
"learning_rate": 3.428571428571429e-05,
|
| 319 |
+
"loss": -0.1546,
|
| 320 |
+
"num_tokens": 2880635.0,
|
| 321 |
+
"reward": -0.927730917930603,
|
| 322 |
+
"reward_std": 0.10113543272018433,
|
| 323 |
+
"rewards/rollout_reward_func/mean": -0.927730917930603,
|
| 324 |
+
"rewards/rollout_reward_func/std": 0.10532300174236298,
|
| 325 |
+
"sampling/importance_sampling_ratio/max": 1.936368465423584,
|
| 326 |
+
"sampling/importance_sampling_ratio/mean": 0.9986484050750732,
|
| 327 |
+
"sampling/importance_sampling_ratio/min": 0.18729014694690704,
|
| 328 |
+
"sampling/sampling_logp_difference/max": 1.6750962734222412,
|
| 329 |
+
"sampling/sampling_logp_difference/mean": 0.01844533160328865,
|
| 330 |
+
"step": 13,
|
| 331 |
+
"step_time": 130.46155179900052
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"clip_ratio/high_max": 0.007653064152691513,
|
| 335 |
+
"clip_ratio/high_mean": 0.0043634974281303585,
|
| 336 |
+
"clip_ratio/low_mean": 0.014142459142021835,
|
| 337 |
+
"clip_ratio/low_min": 0.0029499504598788917,
|
| 338 |
+
"clip_ratio/region_mean": 0.018505956570152193,
|
| 339 |
+
"entropy": 0.09064974845387042,
|
| 340 |
+
"epoch": 0.00014,
|
| 341 |
+
"grad_norm": 8.18207836151123,
|
| 342 |
+
"kl": 0.2905037718010135,
|
| 343 |
+
"learning_rate": 3.7142857142857143e-05,
|
| 344 |
+
"loss": -0.1459,
|
| 345 |
+
"step": 14,
|
| 346 |
+
"step_time": 44.158161802002724
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"clip_ratio/high_max": 0.0027650215197354555,
|
| 350 |
+
"clip_ratio/high_mean": 0.0013825107598677278,
|
| 351 |
+
"clip_ratio/low_mean": 0.004234670544974506,
|
| 352 |
+
"clip_ratio/low_min": 0.0012649551499634981,
|
| 353 |
+
"clip_ratio/region_mean": 0.005617181275738403,
|
| 354 |
+
"completions/clipped_ratio": 0.8125,
|
| 355 |
+
"completions/max_length": 14400.0,
|
| 356 |
+
"completions/max_terminated_length": 9012.0,
|
| 357 |
+
"completions/mean_length": 12419.84375,
|
| 358 |
+
"completions/mean_terminated_length": 4916.33349609375,
|
| 359 |
+
"completions/min_length": 1128.0,
|
| 360 |
+
"completions/min_terminated_length": 1128.0,
|
| 361 |
+
"entropy": 0.07450041663832963,
|
| 362 |
+
"epoch": 0.00015,
|
| 363 |
+
"frac_reward_zero_std": 0.0,
|
| 364 |
+
"grad_norm": 2.2030179500579834,
|
| 365 |
+
"kl": 0.07086092534882482,
|
| 366 |
+
"learning_rate": 4e-05,
|
| 367 |
+
"loss": 0.1292,
|
| 368 |
+
"num_tokens": 3305559.0,
|
| 369 |
+
"reward": -0.7803157567977905,
|
| 370 |
+
"reward_std": 0.42063942551612854,
|
| 371 |
+
"rewards/rollout_reward_func/mean": -0.7803157567977905,
|
| 372 |
+
"rewards/rollout_reward_func/std": 0.4826337397098541,
|
| 373 |
+
"sampling/importance_sampling_ratio/max": 2.0322628021240234,
|
| 374 |
+
"sampling/importance_sampling_ratio/mean": 0.9985103607177734,
|
| 375 |
+
"sampling/importance_sampling_ratio/min": 0.24719201028347015,
|
| 376 |
+
"sampling/sampling_logp_difference/max": 1.397589921951294,
|
| 377 |
+
"sampling/sampling_logp_difference/mean": 0.015935054048895836,
|
| 378 |
+
"step": 15,
|
| 379 |
+
"step_time": 129.98408898099842
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"clip_ratio/high_max": 0.008143757819198072,
|
| 383 |
+
"clip_ratio/high_mean": 0.004071878909599036,
|
| 384 |
+
"clip_ratio/low_mean": 0.014440719707636163,
|
| 385 |
+
"clip_ratio/low_min": 0.0063073321944102645,
|
| 386 |
+
"clip_ratio/region_mean": 0.01851259867544286,
|
| 387 |
+
"entropy": 0.07352668652310967,
|
| 388 |
+
"epoch": 0.00016,
|
| 389 |
+
"grad_norm": 1.1360507011413574,
|
| 390 |
+
"kl": 0.08157501685491297,
|
| 391 |
+
"learning_rate": 4.2857142857142856e-05,
|
| 392 |
+
"loss": 0.1258,
|
| 393 |
+
"step": 16,
|
| 394 |
+
"step_time": 44.95600875300079
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"clip_ratio/high_max": 0.000589622650295496,
|
| 398 |
+
"clip_ratio/high_mean": 0.000294811325147748,
|
| 399 |
+
"clip_ratio/low_mean": 0.004054940363857895,
|
| 400 |
+
"clip_ratio/low_min": 0.0010419560712762177,
|
| 401 |
+
"clip_ratio/region_mean": 0.004349751689005643,
|
| 402 |
+
"completions/clipped_ratio": 0.5625,
|
| 403 |
+
"completions/max_length": 14400.0,
|
| 404 |
+
"completions/max_terminated_length": 13862.0,
|
| 405 |
+
"completions/mean_length": 11858.40625,
|
| 406 |
+
"completions/mean_terminated_length": 8890.857421875,
|
| 407 |
+
"completions/min_length": 2159.0,
|
| 408 |
+
"completions/min_terminated_length": 2159.0,
|
| 409 |
+
"entropy": 0.07483385875821114,
|
| 410 |
+
"epoch": 0.00017,
|
| 411 |
+
"frac_reward_zero_std": 0.0,
|
| 412 |
+
"grad_norm": 1.7257509231567383,
|
| 413 |
+
"kl": 0.05066429602447897,
|
| 414 |
+
"learning_rate": 4.5714285714285716e-05,
|
| 415 |
+
"loss": 0.334,
|
| 416 |
+
"num_tokens": 3712600.0,
|
| 417 |
+
"reward": -0.43021440505981445,
|
| 418 |
+
"reward_std": 0.8870621919631958,
|
| 419 |
+
"rewards/rollout_reward_func/mean": -0.43021440505981445,
|
| 420 |
+
"rewards/rollout_reward_func/std": 0.8449047803878784,
|
| 421 |
+
"sampling/importance_sampling_ratio/max": 2.4000132083892822,
|
| 422 |
+
"sampling/importance_sampling_ratio/mean": 1.002233624458313,
|
| 423 |
+
"sampling/importance_sampling_ratio/min": 0.1551634818315506,
|
| 424 |
+
"sampling/sampling_logp_difference/max": 1.8632760047912598,
|
| 425 |
+
"sampling/sampling_logp_difference/mean": 0.01753704622387886,
|
| 426 |
+
"step": 17,
|
| 427 |
+
"step_time": 132.86553408099644
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"clip_ratio/high_max": 0.006706475804094225,
|
| 431 |
+
"clip_ratio/high_mean": 0.003931941610062495,
|
| 432 |
+
"clip_ratio/low_mean": 0.0171583968331106,
|
| 433 |
+
"clip_ratio/low_min": 0.010398818471003324,
|
| 434 |
+
"clip_ratio/region_mean": 0.021090338443173096,
|
| 435 |
+
"entropy": 0.06936636054888368,
|
| 436 |
+
"epoch": 0.00018,
|
| 437 |
+
"grad_norm": 1.771362543106079,
|
| 438 |
+
"kl": 0.10733210120815784,
|
| 439 |
+
"learning_rate": 4.8571428571428576e-05,
|
| 440 |
+
"loss": 0.3285,
|
| 441 |
+
"step": 18,
|
| 442 |
+
"step_time": 44.16366357000152
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.0006443298771046102,
|
| 446 |
+
"clip_ratio/high_mean": 0.0003221649385523051,
|
| 447 |
+
"clip_ratio/low_mean": 0.0072666899068281054,
|
| 448 |
+
"clip_ratio/low_min": 0.0009964113123714924,
|
| 449 |
+
"clip_ratio/region_mean": 0.00758885481627658,
|
| 450 |
+
"completions/clipped_ratio": 0.625,
|
| 451 |
+
"completions/max_length": 14492.0,
|
| 452 |
+
"completions/max_terminated_length": 10697.0,
|
| 453 |
+
"completions/mean_length": 11052.375,
|
| 454 |
+
"completions/mean_terminated_length": 5732.83349609375,
|
| 455 |
+
"completions/min_length": 1322.0,
|
| 456 |
+
"completions/min_terminated_length": 1322.0,
|
| 457 |
+
"entropy": 0.06488334969617426,
|
| 458 |
+
"epoch": 0.00019,
|
| 459 |
+
"frac_reward_zero_std": 0.0,
|
| 460 |
+
"grad_norm": 1.4038617610931396,
|
| 461 |
+
"kl": 0.08611430588643998,
|
| 462 |
+
"learning_rate": 5.142857142857143e-05,
|
| 463 |
+
"loss": 0.5711,
|
| 464 |
+
"num_tokens": 4093752.0,
|
| 465 |
+
"reward": -0.4095195233821869,
|
| 466 |
+
"reward_std": 0.8482590317726135,
|
| 467 |
+
"rewards/rollout_reward_func/mean": -0.4095195233821869,
|
| 468 |
+
"rewards/rollout_reward_func/std": 0.8331766724586487,
|
| 469 |
+
"sampling/importance_sampling_ratio/max": 2.3997995853424072,
|
| 470 |
+
"sampling/importance_sampling_ratio/mean": 0.9988876581192017,
|
| 471 |
+
"sampling/importance_sampling_ratio/min": 0.19376768171787262,
|
| 472 |
+
"sampling/sampling_logp_difference/max": 1.6410953998565674,
|
| 473 |
+
"sampling/sampling_logp_difference/mean": 0.016171647235751152,
|
| 474 |
+
"step": 19,
|
| 475 |
+
"step_time": 128.7513532999983
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"clip_ratio/high_max": 0.009648803621530533,
|
| 479 |
+
"clip_ratio/high_mean": 0.004824401810765266,
|
| 480 |
+
"clip_ratio/low_mean": 0.014935461309505627,
|
| 481 |
+
"clip_ratio/low_min": 0.006239572481717914,
|
| 482 |
+
"clip_ratio/region_mean": 0.019759863178478554,
|
| 483 |
+
"entropy": 0.06792194582521915,
|
| 484 |
+
"epoch": 0.0002,
|
| 485 |
+
"grad_norm": 1.5674505233764648,
|
| 486 |
+
"kl": 0.07957532908767462,
|
| 487 |
+
"learning_rate": 5.428571428571428e-05,
|
| 488 |
+
"loss": 0.5691,
|
| 489 |
+
"step": 20,
|
| 490 |
+
"step_time": 44.17661613099699
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"clip_ratio/high_max": 0.0010775862028822303,
|
| 494 |
+
"clip_ratio/high_mean": 0.0005387931014411151,
|
| 495 |
+
"clip_ratio/low_mean": 0.002510265534510836,
|
| 496 |
+
"clip_ratio/low_min": 0.0006067961221560836,
|
| 497 |
+
"clip_ratio/region_mean": 0.003049058635951951,
|
| 498 |
+
"completions/clipped_ratio": 0.53125,
|
| 499 |
+
"completions/max_length": 14388.0,
|
| 500 |
+
"completions/max_terminated_length": 13834.0,
|
| 501 |
+
"completions/mean_length": 11314.09375,
|
| 502 |
+
"completions/mean_terminated_length": 8011.1337890625,
|
| 503 |
+
"completions/min_length": 1359.0,
|
| 504 |
+
"completions/min_terminated_length": 1359.0,
|
| 505 |
+
"entropy": 0.06659986882004887,
|
| 506 |
+
"epoch": 0.00021,
|
| 507 |
+
"frac_reward_zero_std": 0.0,
|
| 508 |
+
"grad_norm": 1.3160443305969238,
|
| 509 |
+
"kl": 0.04374655510764569,
|
| 510 |
+
"learning_rate": 5.714285714285714e-05,
|
| 511 |
+
"loss": 0.2579,
|
| 512 |
+
"num_tokens": 4483294.0,
|
| 513 |
+
"reward": -0.7569143772125244,
|
| 514 |
+
"reward_std": 0.38748466968536377,
|
| 515 |
+
"rewards/rollout_reward_func/mean": -0.7569143772125244,
|
| 516 |
+
"rewards/rollout_reward_func/std": 0.47438445687294006,
|
| 517 |
+
"sampling/importance_sampling_ratio/max": 2.5243661403656006,
|
| 518 |
+
"sampling/importance_sampling_ratio/mean": 1.0004966259002686,
|
| 519 |
+
"sampling/importance_sampling_ratio/min": 0.44545236229896545,
|
| 520 |
+
"sampling/sampling_logp_difference/max": 0.9259899854660034,
|
| 521 |
+
"sampling/sampling_logp_difference/mean": 0.011256169527769089,
|
| 522 |
+
"step": 21,
|
| 523 |
+
"step_time": 125.32715417199688
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_ratio/high_max": 0.007965195982251316,
|
| 527 |
+
"clip_ratio/high_mean": 0.004264129471266642,
|
| 528 |
+
"clip_ratio/low_mean": 0.01166028477018699,
|
| 529 |
+
"clip_ratio/low_min": 0.003762419626582414,
|
| 530 |
+
"clip_ratio/region_mean": 0.015924414212349802,
|
| 531 |
+
"entropy": 0.06479066435713321,
|
| 532 |
+
"epoch": 0.00022,
|
| 533 |
+
"grad_norm": 0.8557514548301697,
|
| 534 |
+
"kl": 0.0534607790177688,
|
| 535 |
+
"learning_rate": 6e-05,
|
| 536 |
+
"loss": 0.2505,
|
| 537 |
+
"step": 22,
|
| 538 |
+
"step_time": 44.035087997997834
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.0011444397969171405,
|
| 542 |
+
"clip_ratio/high_mean": 0.0005722198984585702,
|
| 543 |
+
"clip_ratio/low_mean": 0.002795889973640442,
|
| 544 |
+
"clip_ratio/low_min": 0.0005040322430431843,
|
| 545 |
+
"clip_ratio/region_mean": 0.0033681098429951817,
|
| 546 |
+
"completions/clipped_ratio": 0.65625,
|
| 547 |
+
"completions/max_length": 14447.0,
|
| 548 |
+
"completions/max_terminated_length": 13549.0,
|
| 549 |
+
"completions/mean_length": 11808.34375,
|
| 550 |
+
"completions/mean_terminated_length": 7141.36376953125,
|
| 551 |
+
"completions/min_length": 784.0,
|
| 552 |
+
"completions/min_terminated_length": 784.0,
|
| 553 |
+
"entropy": 0.07080131443217397,
|
| 554 |
+
"epoch": 0.00023,
|
| 555 |
+
"frac_reward_zero_std": 0.0,
|
| 556 |
+
"grad_norm": 1.2227104902267456,
|
| 557 |
+
"kl": 0.10710712906438857,
|
| 558 |
+
"learning_rate": 6.285714285714286e-05,
|
| 559 |
+
"loss": 0.357,
|
| 560 |
+
"num_tokens": 4888221.0,
|
| 561 |
+
"reward": -0.49963146448135376,
|
| 562 |
+
"reward_std": 0.8173227310180664,
|
| 563 |
+
"rewards/rollout_reward_func/mean": -0.49963146448135376,
|
| 564 |
+
"rewards/rollout_reward_func/std": 0.8128207921981812,
|
| 565 |
+
"sampling/importance_sampling_ratio/max": 1.9062927961349487,
|
| 566 |
+
"sampling/importance_sampling_ratio/mean": 1.0000483989715576,
|
| 567 |
+
"sampling/importance_sampling_ratio/min": 0.30003389716148376,
|
| 568 |
+
"sampling/sampling_logp_difference/max": 1.203859806060791,
|
| 569 |
+
"sampling/sampling_logp_difference/mean": 0.011820203624665737,
|
| 570 |
+
"step": 23,
|
| 571 |
+
"step_time": 134.11656286700236
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.0063895476050674915,
|
| 575 |
+
"clip_ratio/high_mean": 0.0031947738025337458,
|
| 576 |
+
"clip_ratio/low_mean": 0.00737490743631497,
|
| 577 |
+
"clip_ratio/low_min": 0.0014960957923904061,
|
| 578 |
+
"clip_ratio/region_mean": 0.010569681267952546,
|
| 579 |
+
"entropy": 0.07403647690080106,
|
| 580 |
+
"epoch": 0.00024,
|
| 581 |
+
"grad_norm": 0.9927102327346802,
|
| 582 |
+
"kl": 0.07292677101213485,
|
| 583 |
+
"learning_rate": 6.571428571428571e-05,
|
| 584 |
+
"loss": 0.3453,
|
| 585 |
+
"step": 24,
|
| 586 |
+
"step_time": 44.88870704800138
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"clip_ratio/high_max": 0.002575038291979581,
|
| 590 |
+
"clip_ratio/high_mean": 0.0012875191459897906,
|
| 591 |
+
"clip_ratio/low_mean": 0.0031292334315367043,
|
| 592 |
+
"clip_ratio/low_min": 0.0010516082984395325,
|
| 593 |
+
"clip_ratio/region_mean": 0.004416752519318834,
|
| 594 |
+
"completions/clipped_ratio": 0.6875,
|
| 595 |
+
"completions/max_length": 14441.0,
|
| 596 |
+
"completions/max_terminated_length": 13590.0,
|
| 597 |
+
"completions/mean_length": 11539.0625,
|
| 598 |
+
"completions/mean_terminated_length": 5616.10009765625,
|
| 599 |
+
"completions/min_length": 699.0,
|
| 600 |
+
"completions/min_terminated_length": 699.0,
|
| 601 |
+
"entropy": 0.09310276620090008,
|
| 602 |
+
"epoch": 0.00025,
|
| 603 |
+
"frac_reward_zero_std": 0.0,
|
| 604 |
+
"grad_norm": 1.282138466835022,
|
| 605 |
+
"kl": 0.07473902264609933,
|
| 606 |
+
"learning_rate": 6.857142857142858e-05,
|
| 607 |
+
"loss": -0.0119,
|
| 608 |
+
"num_tokens": 5284116.0,
|
| 609 |
+
"reward": -0.7307593822479248,
|
| 610 |
+
"reward_std": 0.4555254876613617,
|
| 611 |
+
"rewards/rollout_reward_func/mean": -0.7307593822479248,
|
| 612 |
+
"rewards/rollout_reward_func/std": 0.5767623782157898,
|
| 613 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 614 |
+
"sampling/importance_sampling_ratio/mean": 1.0000531673431396,
|
| 615 |
+
"sampling/importance_sampling_ratio/min": 0.18337896466255188,
|
| 616 |
+
"sampling/sampling_logp_difference/max": 1.6962004899978638,
|
| 617 |
+
"sampling/sampling_logp_difference/mean": 0.014519629999995232,
|
| 618 |
+
"step": 25,
|
| 619 |
+
"step_time": 128.11358543400092
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"clip_ratio/high_max": 0.006235250388272107,
|
| 623 |
+
"clip_ratio/high_mean": 0.0041256895638071,
|
| 624 |
+
"clip_ratio/low_mean": 0.019248695025453344,
|
| 625 |
+
"clip_ratio/low_min": 0.006461259792558849,
|
| 626 |
+
"clip_ratio/region_mean": 0.023374384531052783,
|
| 627 |
+
"entropy": 0.09371388074941933,
|
| 628 |
+
"epoch": 0.00026,
|
| 629 |
+
"grad_norm": 1.1407207250595093,
|
| 630 |
+
"kl": 0.10249935300089419,
|
| 631 |
+
"learning_rate": 7.142857142857143e-05,
|
| 632 |
+
"loss": -0.0179,
|
| 633 |
+
"step": 26,
|
| 634 |
+
"step_time": 44.78832636999505
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"clip_ratio/high_max": 0.001961233268957585,
|
| 638 |
+
"clip_ratio/high_mean": 0.0009806166344787925,
|
| 639 |
+
"clip_ratio/low_mean": 0.0014239389565773308,
|
| 640 |
+
"clip_ratio/low_min": 0.0,
|
| 641 |
+
"clip_ratio/region_mean": 0.0024045555910561234,
|
| 642 |
+
"completions/clipped_ratio": 0.5,
|
| 643 |
+
"completions/max_length": 14387.0,
|
| 644 |
+
"completions/max_terminated_length": 13921.0,
|
| 645 |
+
"completions/mean_length": 10618.1875,
|
| 646 |
+
"completions/mean_terminated_length": 7001.0,
|
| 647 |
+
"completions/min_length": 1065.0,
|
| 648 |
+
"completions/min_terminated_length": 1065.0,
|
| 649 |
+
"entropy": 0.08063321514055133,
|
| 650 |
+
"epoch": 0.00027,
|
| 651 |
+
"frac_reward_zero_std": 0.0,
|
| 652 |
+
"grad_norm": 3.7377917766571045,
|
| 653 |
+
"kl": 0.46857869252562523,
|
| 654 |
+
"learning_rate": 7.428571428571429e-05,
|
| 655 |
+
"loss": 0.0274,
|
| 656 |
+
"num_tokens": 5650556.0,
|
| 657 |
+
"reward": -0.4988600015640259,
|
| 658 |
+
"reward_std": 0.6857542991638184,
|
| 659 |
+
"rewards/rollout_reward_func/mean": -0.4988600015640259,
|
| 660 |
+
"rewards/rollout_reward_func/std": 0.8108665347099304,
|
| 661 |
+
"sampling/importance_sampling_ratio/max": 1.5844895839691162,
|
| 662 |
+
"sampling/importance_sampling_ratio/mean": 0.9988585710525513,
|
| 663 |
+
"sampling/importance_sampling_ratio/min": 0.14879053831100464,
|
| 664 |
+
"sampling/sampling_logp_difference/max": 1.9052157402038574,
|
| 665 |
+
"sampling/sampling_logp_difference/mean": 0.010426906868815422,
|
| 666 |
+
"step": 27,
|
| 667 |
+
"step_time": 117.60450818400022
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"clip_ratio/high_max": 0.011021792015526444,
|
| 671 |
+
"clip_ratio/high_mean": 0.006221123243449256,
|
| 672 |
+
"clip_ratio/low_mean": 0.007159021100960672,
|
| 673 |
+
"clip_ratio/low_min": 0.0011492071789689362,
|
| 674 |
+
"clip_ratio/region_mean": 0.01338014446082525,
|
| 675 |
+
"entropy": 0.08160684490576386,
|
| 676 |
+
"epoch": 0.00028,
|
| 677 |
+
"grad_norm": 1.8652974367141724,
|
| 678 |
+
"kl": 0.0501517970697023,
|
| 679 |
+
"learning_rate": 7.714285714285715e-05,
|
| 680 |
+
"loss": 0.0131,
|
| 681 |
+
"step": 28,
|
| 682 |
+
"step_time": 43.69357772600051
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"clip_ratio/high_max": 0.005480502266436815,
|
| 686 |
+
"clip_ratio/high_mean": 0.0027402511332184076,
|
| 687 |
+
"clip_ratio/low_mean": 0.0009808092145249248,
|
| 688 |
+
"clip_ratio/low_min": 0.0,
|
| 689 |
+
"clip_ratio/region_mean": 0.0037210604059509933,
|
| 690 |
+
"completions/clipped_ratio": 0.5,
|
| 691 |
+
"completions/max_length": 14524.0,
|
| 692 |
+
"completions/max_terminated_length": 13789.0,
|
| 693 |
+
"completions/mean_length": 10754.5,
|
| 694 |
+
"completions/mean_terminated_length": 7253.3125,
|
| 695 |
+
"completions/min_length": 1385.0,
|
| 696 |
+
"completions/min_terminated_length": 1385.0,
|
| 697 |
+
"entropy": 0.08766714809462428,
|
| 698 |
+
"epoch": 0.00029,
|
| 699 |
+
"frac_reward_zero_std": 0.0,
|
| 700 |
+
"grad_norm": 0.9512283205986023,
|
| 701 |
+
"kl": 0.09233958297409117,
|
| 702 |
+
"learning_rate": 8e-05,
|
| 703 |
+
"loss": 0.3863,
|
| 704 |
+
"num_tokens": 6021181.0,
|
| 705 |
+
"reward": -0.43986791372299194,
|
| 706 |
+
"reward_std": 0.8378865718841553,
|
| 707 |
+
"rewards/rollout_reward_func/mean": -0.43986791372299194,
|
| 708 |
+
"rewards/rollout_reward_func/std": 0.8483731150627136,
|
| 709 |
+
"sampling/importance_sampling_ratio/max": 1.6999077796936035,
|
| 710 |
+
"sampling/importance_sampling_ratio/mean": 0.9990843534469604,
|
| 711 |
+
"sampling/importance_sampling_ratio/min": 0.4758984446525574,
|
| 712 |
+
"sampling/sampling_logp_difference/max": 0.7425508499145508,
|
| 713 |
+
"sampling/sampling_logp_difference/mean": 0.010583655908703804,
|
| 714 |
+
"step": 29,
|
| 715 |
+
"step_time": 122.50815704600063
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"clip_ratio/high_max": 0.011935517424717546,
|
| 719 |
+
"clip_ratio/high_mean": 0.006662203115411103,
|
| 720 |
+
"clip_ratio/low_mean": 0.008739105775021017,
|
| 721 |
+
"clip_ratio/low_min": 0.004148350621107966,
|
| 722 |
+
"clip_ratio/region_mean": 0.01540130889043212,
|
| 723 |
+
"entropy": 0.09500867640599608,
|
| 724 |
+
"epoch": 0.0003,
|
| 725 |
+
"grad_norm": 0.7339725494384766,
|
| 726 |
+
"kl": 0.0838697346043773,
|
| 727 |
+
"learning_rate": 8.285714285714287e-05,
|
| 728 |
+
"loss": 0.3791,
|
| 729 |
+
"step": 30,
|
| 730 |
+
"step_time": 44.16028004800319
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.002299328800290823,
|
| 734 |
+
"clip_ratio/high_mean": 0.0011496644001454115,
|
| 735 |
+
"clip_ratio/low_mean": 0.0013620644458569586,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.00251172884600237,
|
| 738 |
+
"completions/clipped_ratio": 0.71875,
|
| 739 |
+
"completions/max_length": 14550.0,
|
| 740 |
+
"completions/max_terminated_length": 13983.0,
|
| 741 |
+
"completions/mean_length": 12700.71875,
|
| 742 |
+
"completions/mean_terminated_length": 8789.888671875,
|
| 743 |
+
"completions/min_length": 3262.0,
|
| 744 |
+
"completions/min_terminated_length": 3262.0,
|
| 745 |
+
"entropy": 0.11977054877206683,
|
| 746 |
+
"epoch": 0.00031,
|
| 747 |
+
"frac_reward_zero_std": 0.0,
|
| 748 |
+
"grad_norm": 1.086565613746643,
|
| 749 |
+
"kl": 0.05921647744253278,
|
| 750 |
+
"learning_rate": 8.571428571428571e-05,
|
| 751 |
+
"loss": 0.0947,
|
| 752 |
+
"num_tokens": 6454382.0,
|
| 753 |
+
"reward": -0.7849480509757996,
|
| 754 |
+
"reward_std": 0.38423284888267517,
|
| 755 |
+
"rewards/rollout_reward_func/mean": -0.7849480509757996,
|
| 756 |
+
"rewards/rollout_reward_func/std": 0.48005345463752747,
|
| 757 |
+
"sampling/importance_sampling_ratio/max": 1.8024439811706543,
|
| 758 |
+
"sampling/importance_sampling_ratio/mean": 1.000292181968689,
|
| 759 |
+
"sampling/importance_sampling_ratio/min": 0.5424980521202087,
|
| 760 |
+
"sampling/sampling_logp_difference/max": 0.6115708351135254,
|
| 761 |
+
"sampling/sampling_logp_difference/mean": 0.01138882152736187,
|
| 762 |
+
"step": 31,
|
| 763 |
+
"step_time": 127.06237872199927
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"clip_ratio/high_max": 0.012531265849247575,
|
| 767 |
+
"clip_ratio/high_mean": 0.006265632924623787,
|
| 768 |
+
"clip_ratio/low_mean": 0.00913364501320757,
|
| 769 |
+
"clip_ratio/low_min": 0.0016989448922686279,
|
| 770 |
+
"clip_ratio/region_mean": 0.015399277937831357,
|
| 771 |
+
"entropy": 0.1310350843705237,
|
| 772 |
+
"epoch": 0.00032,
|
| 773 |
+
"grad_norm": 0.8760910034179688,
|
| 774 |
+
"kl": 0.06428600556682795,
|
| 775 |
+
"learning_rate": 8.857142857142857e-05,
|
| 776 |
+
"loss": 0.0848,
|
| 777 |
+
"step": 32,
|
| 778 |
+
"step_time": 45.15639938999993
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"clip_ratio/high_max": 0.001622461248189211,
|
| 782 |
+
"clip_ratio/high_mean": 0.0008112306240946054,
|
| 783 |
+
"clip_ratio/low_mean": 0.0012673057353822514,
|
| 784 |
+
"clip_ratio/low_min": 0.0,
|
| 785 |
+
"clip_ratio/region_mean": 0.002078536359476857,
|
| 786 |
+
"completions/clipped_ratio": 0.5,
|
| 787 |
+
"completions/max_length": 14485.0,
|
| 788 |
+
"completions/max_terminated_length": 13438.0,
|
| 789 |
+
"completions/mean_length": 11201.46875,
|
| 790 |
+
"completions/mean_terminated_length": 8163.75,
|
| 791 |
+
"completions/min_length": 1137.0,
|
| 792 |
+
"completions/min_terminated_length": 1137.0,
|
| 793 |
+
"entropy": 0.11091703665442765,
|
| 794 |
+
"epoch": 0.00033,
|
| 795 |
+
"frac_reward_zero_std": 0.0,
|
| 796 |
+
"grad_norm": 0.763496994972229,
|
| 797 |
+
"kl": 0.08535079064313322,
|
| 798 |
+
"learning_rate": 9.142857142857143e-05,
|
| 799 |
+
"loss": 0.187,
|
| 800 |
+
"num_tokens": 6839240.0,
|
| 801 |
+
"reward": -0.606515109539032,
|
| 802 |
+
"reward_std": 0.644769549369812,
|
| 803 |
+
"rewards/rollout_reward_func/mean": -0.606515109539032,
|
| 804 |
+
"rewards/rollout_reward_func/std": 0.7157695293426514,
|
| 805 |
+
"sampling/importance_sampling_ratio/max": 1.9776629209518433,
|
| 806 |
+
"sampling/importance_sampling_ratio/mean": 1.0004677772521973,
|
| 807 |
+
"sampling/importance_sampling_ratio/min": 0.6363774538040161,
|
| 808 |
+
"sampling/sampling_logp_difference/max": 0.6819157600402832,
|
| 809 |
+
"sampling/sampling_logp_difference/mean": 0.010047465562820435,
|
| 810 |
+
"step": 33,
|
| 811 |
+
"step_time": 122.12401338600102
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"clip_ratio/high_max": 0.003852536785416305,
|
| 815 |
+
"clip_ratio/high_mean": 0.0024514784454368055,
|
| 816 |
+
"clip_ratio/low_mean": 0.010322274029022083,
|
| 817 |
+
"clip_ratio/low_min": 0.0054294930887408555,
|
| 818 |
+
"clip_ratio/region_mean": 0.012773752474458888,
|
| 819 |
+
"entropy": 0.11235238378867507,
|
| 820 |
+
"epoch": 0.00034,
|
| 821 |
+
"grad_norm": 0.9141661524772644,
|
| 822 |
+
"kl": 0.08446309305145405,
|
| 823 |
+
"learning_rate": 9.428571428571429e-05,
|
| 824 |
+
"loss": 0.1825,
|
| 825 |
+
"step": 34,
|
| 826 |
+
"step_time": 43.25774885099963
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"clip_ratio/high_max": 0.002067690948024392,
|
| 830 |
+
"clip_ratio/high_mean": 0.001033845474012196,
|
| 831 |
+
"clip_ratio/low_mean": 0.0013292695221025497,
|
| 832 |
+
"clip_ratio/low_min": 0.0005208333604969084,
|
| 833 |
+
"clip_ratio/region_mean": 0.0023631149961147457,
|
| 834 |
+
"completions/clipped_ratio": 0.625,
|
| 835 |
+
"completions/max_length": 14504.0,
|
| 836 |
+
"completions/max_terminated_length": 13750.0,
|
| 837 |
+
"completions/mean_length": 12662.125,
|
| 838 |
+
"completions/mean_terminated_length": 10072.6669921875,
|
| 839 |
+
"completions/min_length": 2136.0,
|
| 840 |
+
"completions/min_terminated_length": 2136.0,
|
| 841 |
+
"entropy": 0.13832575432024896,
|
| 842 |
+
"epoch": 0.00035,
|
| 843 |
+
"frac_reward_zero_std": 0.0,
|
| 844 |
+
"grad_norm": 0.8794277906417847,
|
| 845 |
+
"kl": 0.08255716518033296,
|
| 846 |
+
"learning_rate": 9.714285714285715e-05,
|
| 847 |
+
"loss": 0.0863,
|
| 848 |
+
"num_tokens": 7271283.0,
|
| 849 |
+
"reward": -0.5410826206207275,
|
| 850 |
+
"reward_std": 0.7768348455429077,
|
| 851 |
+
"rewards/rollout_reward_func/mean": -0.5410826206207275,
|
| 852 |
+
"rewards/rollout_reward_func/std": 0.7597488760948181,
|
| 853 |
+
"sampling/importance_sampling_ratio/max": 1.5629594326019287,
|
| 854 |
+
"sampling/importance_sampling_ratio/mean": 1.0001167058944702,
|
| 855 |
+
"sampling/importance_sampling_ratio/min": 0.5588953495025635,
|
| 856 |
+
"sampling/sampling_logp_difference/max": 0.5817930698394775,
|
| 857 |
+
"sampling/sampling_logp_difference/mean": 0.009778056293725967,
|
| 858 |
+
"step": 35,
|
| 859 |
+
"step_time": 130.91799312700277
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"clip_ratio/high_max": 0.011173836537636817,
|
| 863 |
+
"clip_ratio/high_mean": 0.005586918268818408,
|
| 864 |
+
"clip_ratio/low_mean": 0.00869341439101845,
|
| 865 |
+
"clip_ratio/low_min": 0.004238906840328127,
|
| 866 |
+
"clip_ratio/region_mean": 0.01428033280535601,
|
| 867 |
+
"entropy": 0.15124066965654492,
|
| 868 |
+
"epoch": 0.00036,
|
| 869 |
+
"grad_norm": 0.7353250980377197,
|
| 870 |
+
"kl": 0.08487725246232003,
|
| 871 |
+
"learning_rate": 0.0001,
|
| 872 |
+
"loss": 0.0769,
|
| 873 |
+
"step": 36,
|
| 874 |
+
"step_time": 45.46909211699858
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0015989625826478004,
|
| 878 |
+
"clip_ratio/high_mean": 0.0007994812913239002,
|
| 879 |
+
"clip_ratio/low_mean": 0.0020003379322588444,
|
| 880 |
+
"clip_ratio/low_min": 0.0005165289039723575,
|
| 881 |
+
"clip_ratio/region_mean": 0.0027998192235827446,
|
| 882 |
+
"completions/clipped_ratio": 0.625,
|
| 883 |
+
"completions/max_length": 14481.0,
|
| 884 |
+
"completions/max_terminated_length": 13367.0,
|
| 885 |
+
"completions/mean_length": 11635.15625,
|
| 886 |
+
"completions/mean_terminated_length": 7297.1669921875,
|
| 887 |
+
"completions/min_length": 439.0,
|
| 888 |
+
"completions/min_terminated_length": 439.0,
|
| 889 |
+
"entropy": 0.13707713410258293,
|
| 890 |
+
"epoch": 0.00037,
|
| 891 |
+
"frac_reward_zero_std": 0.0,
|
| 892 |
+
"grad_norm": 0.8795878887176514,
|
| 893 |
+
"kl": 0.09341590362600982,
|
| 894 |
+
"learning_rate": 9.918053502751771e-05,
|
| 895 |
+
"loss": 0.1423,
|
| 896 |
+
"num_tokens": 7670326.0,
|
| 897 |
+
"reward": -0.6904894113540649,
|
| 898 |
+
"reward_std": 0.6018991470336914,
|
| 899 |
+
"rewards/rollout_reward_func/mean": -0.6904894113540649,
|
| 900 |
+
"rewards/rollout_reward_func/std": 0.6566587686538696,
|
| 901 |
+
"sampling/importance_sampling_ratio/max": 1.4667878150939941,
|
| 902 |
+
"sampling/importance_sampling_ratio/mean": 0.999151349067688,
|
| 903 |
+
"sampling/importance_sampling_ratio/min": 0.3191526234149933,
|
| 904 |
+
"sampling/sampling_logp_difference/max": 1.1420859098434448,
|
| 905 |
+
"sampling/sampling_logp_difference/mean": 0.01049021165817976,
|
| 906 |
+
"step": 37,
|
| 907 |
+
"step_time": 128.31693721999363
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"clip_ratio/high_max": 0.012058351479936391,
|
| 911 |
+
"clip_ratio/high_mean": 0.007017562194960192,
|
| 912 |
+
"clip_ratio/low_mean": 0.010125949047505856,
|
| 913 |
+
"clip_ratio/low_min": 0.002969218941871077,
|
| 914 |
+
"clip_ratio/region_mean": 0.01714351132977754,
|
| 915 |
+
"entropy": 0.13681618124246597,
|
| 916 |
+
"epoch": 0.00038,
|
| 917 |
+
"grad_norm": 0.6959795951843262,
|
| 918 |
+
"kl": 0.09944733651354909,
|
| 919 |
+
"learning_rate": 9.675795466159755e-05,
|
| 920 |
+
"loss": 0.13,
|
| 921 |
+
"step": 38,
|
| 922 |
+
"step_time": 45.151127613000426
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"clip_ratio/high_max": 0.001359933929052204,
|
| 926 |
+
"clip_ratio/high_mean": 0.000679966964526102,
|
| 927 |
+
"clip_ratio/low_mean": 0.001585537102073431,
|
| 928 |
+
"clip_ratio/low_min": 0.0,
|
| 929 |
+
"clip_ratio/region_mean": 0.0022655040957033634,
|
| 930 |
+
"completions/clipped_ratio": 0.59375,
|
| 931 |
+
"completions/max_length": 14393.0,
|
| 932 |
+
"completions/max_terminated_length": 13179.0,
|
| 933 |
+
"completions/mean_length": 11368.53125,
|
| 934 |
+
"completions/mean_terminated_length": 7292.30810546875,
|
| 935 |
+
"completions/min_length": 1023.0,
|
| 936 |
+
"completions/min_terminated_length": 1023.0,
|
| 937 |
+
"entropy": 0.11355275707319379,
|
| 938 |
+
"epoch": 0.00039,
|
| 939 |
+
"frac_reward_zero_std": 0.0,
|
| 940 |
+
"grad_norm": 0.8372141122817993,
|
| 941 |
+
"kl": 0.12875043111853302,
|
| 942 |
+
"learning_rate": 9.283813728906054e-05,
|
| 943 |
+
"loss": -0.0014,
|
| 944 |
+
"num_tokens": 8061296.0,
|
| 945 |
+
"reward": -0.6022458076477051,
|
| 946 |
+
"reward_std": 0.6515352129936218,
|
| 947 |
+
"rewards/rollout_reward_func/mean": -0.6022458076477051,
|
| 948 |
+
"rewards/rollout_reward_func/std": 0.7095517516136169,
|
| 949 |
+
"sampling/importance_sampling_ratio/max": 1.636765480041504,
|
| 950 |
+
"sampling/importance_sampling_ratio/mean": 0.9989644289016724,
|
| 951 |
+
"sampling/importance_sampling_ratio/min": 0.47850245237350464,
|
| 952 |
+
"sampling/sampling_logp_difference/max": 0.7370939254760742,
|
| 953 |
+
"sampling/sampling_logp_difference/mean": 0.010086959227919579,
|
| 954 |
+
"step": 39,
|
| 955 |
+
"step_time": 126.83774206699854
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"clip_ratio/high_max": 0.008263030322268605,
|
| 959 |
+
"clip_ratio/high_mean": 0.004131515161134303,
|
| 960 |
+
"clip_ratio/low_mean": 0.014172348921420053,
|
| 961 |
+
"clip_ratio/low_min": 0.0036224325885996222,
|
| 962 |
+
"clip_ratio/region_mean": 0.018303864169865847,
|
| 963 |
+
"entropy": 0.10010521637741476,
|
| 964 |
+
"epoch": 0.0004,
|
| 965 |
+
"grad_norm": 0.7000178098678589,
|
| 966 |
+
"kl": 0.14327447954565287,
|
| 967 |
+
"learning_rate": 8.759239773845718e-05,
|
| 968 |
+
"loss": -0.0115,
|
| 969 |
+
"step": 40,
|
| 970 |
+
"step_time": 44.916688461000376
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"clip_ratio/high_max": 0.001846958533860743,
|
| 974 |
+
"clip_ratio/high_mean": 0.0009234792669303715,
|
| 975 |
+
"clip_ratio/low_mean": 0.002370692673139274,
|
| 976 |
+
"clip_ratio/low_min": 0.0,
|
| 977 |
+
"clip_ratio/region_mean": 0.0032941719400696456,
|
| 978 |
+
"completions/clipped_ratio": 0.65625,
|
| 979 |
+
"completions/max_length": 14506.0,
|
| 980 |
+
"completions/max_terminated_length": 13335.0,
|
| 981 |
+
"completions/mean_length": 11941.9375,
|
| 982 |
+
"completions/mean_terminated_length": 7638.63671875,
|
| 983 |
+
"completions/min_length": 1452.0,
|
| 984 |
+
"completions/min_terminated_length": 1452.0,
|
| 985 |
+
"entropy": 0.11166324256919324,
|
| 986 |
+
"epoch": 0.00041,
|
| 987 |
+
"frac_reward_zero_std": 0.0,
|
| 988 |
+
"grad_norm": 1.0560439825057983,
|
| 989 |
+
"kl": 0.10882639326155186,
|
| 990 |
+
"learning_rate": 8.125000000000001e-05,
|
| 991 |
+
"loss": 0.5418,
|
| 992 |
+
"num_tokens": 8470213.0,
|
| 993 |
+
"reward": -0.4550766348838806,
|
| 994 |
+
"reward_std": 0.7941820621490479,
|
| 995 |
+
"rewards/rollout_reward_func/mean": -0.4550766348838806,
|
| 996 |
+
"rewards/rollout_reward_func/std": 0.7887347340583801,
|
| 997 |
+
"sampling/importance_sampling_ratio/max": 1.8251365423202515,
|
| 998 |
+
"sampling/importance_sampling_ratio/mean": 1.0004825592041016,
|
| 999 |
+
"sampling/importance_sampling_ratio/min": 0.5376880168914795,
|
| 1000 |
+
"sampling/sampling_logp_difference/max": 0.6204767227172852,
|
| 1001 |
+
"sampling/sampling_logp_difference/mean": 0.011826084926724434,
|
| 1002 |
+
"step": 41,
|
| 1003 |
+
"step_time": 126.00419519500247
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"clip_ratio/high_max": 0.007851478818338364,
|
| 1007 |
+
"clip_ratio/high_mean": 0.003925739409169182,
|
| 1008 |
+
"clip_ratio/low_mean": 0.014391002681804821,
|
| 1009 |
+
"clip_ratio/low_min": 0.005810233065858483,
|
| 1010 |
+
"clip_ratio/region_mean": 0.018316742061870173,
|
| 1011 |
+
"entropy": 0.10689377831295133,
|
| 1012 |
+
"epoch": 0.00042,
|
| 1013 |
+
"grad_norm": 1.3130351305007935,
|
| 1014 |
+
"kl": 0.1170152414124459,
|
| 1015 |
+
"learning_rate": 7.408813728906053e-05,
|
| 1016 |
+
"loss": 0.5353,
|
| 1017 |
+
"step": 42,
|
| 1018 |
+
"step_time": 45.83305146299972
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"clip_ratio/high_max": 0.002037170110270381,
|
| 1022 |
+
"clip_ratio/high_mean": 0.0010185850551351905,
|
| 1023 |
+
"clip_ratio/low_mean": 0.0016175404307432473,
|
| 1024 |
+
"clip_ratio/low_min": 0.0,
|
| 1025 |
+
"clip_ratio/region_mean": 0.0026361254567746073,
|
| 1026 |
+
"completions/clipped_ratio": 0.53125,
|
| 1027 |
+
"completions/max_length": 14370.0,
|
| 1028 |
+
"completions/max_terminated_length": 13214.0,
|
| 1029 |
+
"completions/mean_length": 11265.375,
|
| 1030 |
+
"completions/mean_terminated_length": 7982.400390625,
|
| 1031 |
+
"completions/min_length": 782.0,
|
| 1032 |
+
"completions/min_terminated_length": 782.0,
|
| 1033 |
+
"entropy": 0.09073930280283093,
|
| 1034 |
+
"epoch": 0.00043,
|
| 1035 |
+
"frac_reward_zero_std": 0.0,
|
| 1036 |
+
"grad_norm": 1.7020624876022339,
|
| 1037 |
+
"kl": 0.13664298865478486,
|
| 1038 |
+
"learning_rate": 6.6419817372537e-05,
|
| 1039 |
+
"loss": 0.1856,
|
| 1040 |
+
"num_tokens": 8857416.0,
|
| 1041 |
+
"reward": -0.37660786509513855,
|
| 1042 |
+
"reward_std": 0.8688997030258179,
|
| 1043 |
+
"rewards/rollout_reward_func/mean": -0.37660786509513855,
|
| 1044 |
+
"rewards/rollout_reward_func/std": 0.8781781196594238,
|
| 1045 |
+
"sampling/importance_sampling_ratio/max": 1.9817417860031128,
|
| 1046 |
+
"sampling/importance_sampling_ratio/mean": 1.0001003742218018,
|
| 1047 |
+
"sampling/importance_sampling_ratio/min": 0.4231337010860443,
|
| 1048 |
+
"sampling/sampling_logp_difference/max": 0.8600671291351318,
|
| 1049 |
+
"sampling/sampling_logp_difference/mean": 0.009302067570388317,
|
| 1050 |
+
"step": 43,
|
| 1051 |
+
"step_time": 121.0720823820011
|
| 1052 |
+
},
|
| 1053 |
+
{
|
| 1054 |
+
"clip_ratio/high_max": 0.007119149784557521,
|
| 1055 |
+
"clip_ratio/high_mean": 0.0035595748922787607,
|
| 1056 |
+
"clip_ratio/low_mean": 0.01176984136691317,
|
| 1057 |
+
"clip_ratio/low_min": 0.002642020583152771,
|
| 1058 |
+
"clip_ratio/region_mean": 0.01532941620098427,
|
| 1059 |
+
"entropy": 0.08315122197382152,
|
| 1060 |
+
"epoch": 0.00044,
|
| 1061 |
+
"grad_norm": 5.769225597381592,
|
| 1062 |
+
"kl": 0.6573639016132802,
|
| 1063 |
+
"learning_rate": 5.858018262746301e-05,
|
| 1064 |
+
"loss": 0.1936,
|
| 1065 |
+
"step": 44,
|
| 1066 |
+
"step_time": 44.69906600800459
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0023281591129489243,
|
| 1070 |
+
"clip_ratio/high_mean": 0.0011640795564744622,
|
| 1071 |
+
"clip_ratio/low_mean": 0.002193144930060953,
|
| 1072 |
+
"clip_ratio/low_min": 0.0005530973430722952,
|
| 1073 |
+
"clip_ratio/region_mean": 0.0033572244574315846,
|
| 1074 |
+
"completions/clipped_ratio": 0.53125,
|
| 1075 |
+
"completions/max_length": 14504.0,
|
| 1076 |
+
"completions/max_terminated_length": 13747.0,
|
| 1077 |
+
"completions/mean_length": 11228.96875,
|
| 1078 |
+
"completions/mean_terminated_length": 7874.400390625,
|
| 1079 |
+
"completions/min_length": 1631.0,
|
| 1080 |
+
"completions/min_terminated_length": 1631.0,
|
| 1081 |
+
"entropy": 0.08939703018404543,
|
| 1082 |
+
"epoch": 0.00045,
|
| 1083 |
+
"frac_reward_zero_std": 0.0,
|
| 1084 |
+
"grad_norm": 1.0448198318481445,
|
| 1085 |
+
"kl": 0.11512639001011848,
|
| 1086 |
+
"learning_rate": 5.0911862710939485e-05,
|
| 1087 |
+
"loss": 0.0475,
|
| 1088 |
+
"num_tokens": 9243782.0,
|
| 1089 |
+
"reward": -0.49534285068511963,
|
| 1090 |
+
"reward_std": 0.7042239904403687,
|
| 1091 |
+
"rewards/rollout_reward_func/mean": -0.49534285068511963,
|
| 1092 |
+
"rewards/rollout_reward_func/std": 0.8103145360946655,
|
| 1093 |
+
"sampling/importance_sampling_ratio/max": 1.6891045570373535,
|
| 1094 |
+
"sampling/importance_sampling_ratio/mean": 1.0011885166168213,
|
| 1095 |
+
"sampling/importance_sampling_ratio/min": 0.5372036695480347,
|
| 1096 |
+
"sampling/sampling_logp_difference/max": 0.6213779449462891,
|
| 1097 |
+
"sampling/sampling_logp_difference/mean": 0.0091001121327281,
|
| 1098 |
+
"step": 45,
|
| 1099 |
+
"step_time": 120.37874379399727
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"clip_ratio/high_max": 0.008119428472127765,
|
| 1103 |
+
"clip_ratio/high_mean": 0.004059714236063883,
|
| 1104 |
+
"clip_ratio/low_mean": 0.008602545305620879,
|
| 1105 |
+
"clip_ratio/low_min": 0.0037590391584672034,
|
| 1106 |
+
"clip_ratio/region_mean": 0.01266225945437327,
|
| 1107 |
+
"entropy": 0.08823490096256137,
|
| 1108 |
+
"epoch": 0.00046,
|
| 1109 |
+
"grad_norm": 0.8318017721176147,
|
| 1110 |
+
"kl": 0.120926967356354,
|
| 1111 |
+
"learning_rate": 4.375000000000001e-05,
|
| 1112 |
+
"loss": 0.0362,
|
| 1113 |
+
"step": 46,
|
| 1114 |
+
"step_time": 44.49746013800177
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"clip_ratio/high_max": 0.003532699483912438,
|
| 1118 |
+
"clip_ratio/high_mean": 0.001766349741956219,
|
| 1119 |
+
"clip_ratio/low_mean": 0.0016052687860792503,
|
| 1120 |
+
"clip_ratio/low_min": 0.0,
|
| 1121 |
+
"clip_ratio/region_mean": 0.0033716185280354694,
|
| 1122 |
+
"completions/clipped_ratio": 0.65625,
|
| 1123 |
+
"completions/max_length": 14315.0,
|
| 1124 |
+
"completions/max_terminated_length": 13481.0,
|
| 1125 |
+
"completions/mean_length": 11687.5625,
|
| 1126 |
+
"completions/mean_terminated_length": 7038.7275390625,
|
| 1127 |
+
"completions/min_length": 1557.0,
|
| 1128 |
+
"completions/min_terminated_length": 1557.0,
|
| 1129 |
+
"entropy": 0.07309431000612676,
|
| 1130 |
+
"epoch": 0.00047,
|
| 1131 |
+
"frac_reward_zero_std": 0.0,
|
| 1132 |
+
"grad_norm": 0.8768713474273682,
|
| 1133 |
+
"kl": 0.08262627921067178,
|
| 1134 |
+
"learning_rate": 3.740760226154283e-05,
|
| 1135 |
+
"loss": 0.3828,
|
| 1136 |
+
"num_tokens": 9644940.0,
|
| 1137 |
+
"reward": -0.4843946695327759,
|
| 1138 |
+
"reward_std": 0.8082762360572815,
|
| 1139 |
+
"rewards/rollout_reward_func/mean": -0.4843946695327759,
|
| 1140 |
+
"rewards/rollout_reward_func/std": 0.8041583895683289,
|
| 1141 |
+
"sampling/importance_sampling_ratio/max": 1.4661790132522583,
|
| 1142 |
+
"sampling/importance_sampling_ratio/mean": 1.000061273574829,
|
| 1143 |
+
"sampling/importance_sampling_ratio/min": 0.3773066997528076,
|
| 1144 |
+
"sampling/sampling_logp_difference/max": 0.9746968746185303,
|
| 1145 |
+
"sampling/sampling_logp_difference/mean": 0.007087397389113903,
|
| 1146 |
+
"step": 47,
|
| 1147 |
+
"step_time": 121.44068199299727
|
| 1148 |
+
},
|
| 1149 |
+
{
|
| 1150 |
+
"clip_ratio/high_max": 0.01053907914320007,
|
| 1151 |
+
"clip_ratio/high_mean": 0.005612946202745661,
|
| 1152 |
+
"clip_ratio/low_mean": 0.00564750301418826,
|
| 1153 |
+
"clip_ratio/low_min": 0.0020543700957205147,
|
| 1154 |
+
"clip_ratio/region_mean": 0.01126044918783009,
|
| 1155 |
+
"entropy": 0.07405747356824577,
|
| 1156 |
+
"epoch": 0.00048,
|
| 1157 |
+
"grad_norm": 0.811284601688385,
|
| 1158 |
+
"kl": 0.08346198999788612,
|
| 1159 |
+
"learning_rate": 3.2161862710939476e-05,
|
| 1160 |
+
"loss": 0.374,
|
| 1161 |
+
"step": 48,
|
| 1162 |
+
"step_time": 44.960870664997856
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.002270299184601754,
|
| 1166 |
+
"clip_ratio/high_mean": 0.001135149592300877,
|
| 1167 |
+
"clip_ratio/low_mean": 0.003153837809804827,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.004288987343898043,
|
| 1170 |
+
"completions/clipped_ratio": 0.625,
|
| 1171 |
+
"completions/max_length": 14530.0,
|
| 1172 |
+
"completions/max_terminated_length": 13232.0,
|
| 1173 |
+
"completions/mean_length": 11548.625,
|
| 1174 |
+
"completions/mean_terminated_length": 7039.5,
|
| 1175 |
+
"completions/min_length": 1709.0,
|
| 1176 |
+
"completions/min_terminated_length": 1709.0,
|
| 1177 |
+
"entropy": 0.08768759481608868,
|
| 1178 |
+
"epoch": 0.00049,
|
| 1179 |
+
"frac_reward_zero_std": 0.0,
|
| 1180 |
+
"grad_norm": 1.6150716543197632,
|
| 1181 |
+
"kl": 0.3609654267784208,
|
| 1182 |
+
"learning_rate": 2.8242045338402468e-05,
|
| 1183 |
+
"loss": 0.4855,
|
| 1184 |
+
"num_tokens": 10041134.0,
|
| 1185 |
+
"reward": -0.5441310405731201,
|
| 1186 |
+
"reward_std": 0.6545704007148743,
|
| 1187 |
+
"rewards/rollout_reward_func/mean": -0.5441310405731201,
|
| 1188 |
+
"rewards/rollout_reward_func/std": 0.7639203667640686,
|
| 1189 |
+
"sampling/importance_sampling_ratio/max": 1.7008589506149292,
|
| 1190 |
+
"sampling/importance_sampling_ratio/mean": 1.0008265972137451,
|
| 1191 |
+
"sampling/importance_sampling_ratio/min": 0.45911118388175964,
|
| 1192 |
+
"sampling/sampling_logp_difference/max": 0.7784628868103027,
|
| 1193 |
+
"sampling/sampling_logp_difference/mean": 0.010290013626217842,
|
| 1194 |
+
"step": 49,
|
| 1195 |
+
"step_time": 124.03581126300378
|
| 1196 |
+
},
|
| 1197 |
+
{
|
| 1198 |
+
"clip_ratio/high_max": 0.004471153952181339,
|
| 1199 |
+
"clip_ratio/high_mean": 0.0022355769760906696,
|
| 1200 |
+
"clip_ratio/low_mean": 0.007084499462507665,
|
| 1201 |
+
"clip_ratio/low_min": 0.0021499572903849185,
|
| 1202 |
+
"clip_ratio/region_mean": 0.009320076409494504,
|
| 1203 |
+
"entropy": 0.08996679773554206,
|
| 1204 |
+
"epoch": 0.0005,
|
| 1205 |
+
"grad_norm": 0.8601014018058777,
|
| 1206 |
+
"kl": 0.24557857040781528,
|
| 1207 |
+
"learning_rate": 2.5819464972482288e-05,
|
| 1208 |
+
"loss": 0.4747,
|
| 1209 |
+
"step": 50,
|
| 1210 |
+
"step_time": 45.77899998500652
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"epoch": 0.0005,
|
| 1214 |
+
"eval_clip_ratio/high_max": 0.0,
|
| 1215 |
+
"eval_clip_ratio/high_mean": 0.0,
|
| 1216 |
+
"eval_clip_ratio/low_mean": 0.0,
|
| 1217 |
+
"eval_clip_ratio/low_min": 0.0,
|
| 1218 |
+
"eval_clip_ratio/region_mean": 0.0,
|
| 1219 |
+
"eval_completions/clipped_ratio": 0.60875,
|
| 1220 |
+
"eval_completions/max_length": 13600.67375,
|
| 1221 |
+
"eval_completions/max_terminated_length": 5307.3125,
|
| 1222 |
+
"eval_completions/mean_length": 11798.84625,
|
| 1223 |
+
"eval_completions/mean_terminated_length": 4963.2975,
|
| 1224 |
+
"eval_completions/min_length": 9997.01875,
|
| 1225 |
+
"eval_completions/min_terminated_length": 4619.2825,
|
| 1226 |
+
"eval_entropy": 0.09010161134880036,
|
| 1227 |
+
"eval_frac_reward_zero_std": 1.0,
|
| 1228 |
+
"eval_kl": 0.13719033321132884,
|
| 1229 |
+
"eval_loss": 0.00026262112078256905,
|
| 1230 |
+
"eval_num_tokens": 10041134.0,
|
| 1231 |
+
"eval_reward": -0.47466856505721805,
|
| 1232 |
+
"eval_reward_std": 0.0,
|
| 1233 |
+
"eval_rewards/rollout_reward_func/mean": -0.47466856505721805,
|
| 1234 |
+
"eval_rewards/rollout_reward_func/std": 0.509479589665134,
|
| 1235 |
+
"eval_runtime": 4806.419,
|
| 1236 |
+
"eval_samples_per_second": 0.042,
|
| 1237 |
+
"eval_sampling/importance_sampling_ratio/max": 1.2884997601807118,
|
| 1238 |
+
"eval_sampling/importance_sampling_ratio/mean": 1.000060096681118,
|
| 1239 |
+
"eval_sampling/importance_sampling_ratio/min": 0.7314270212873817,
|
| 1240 |
+
"eval_sampling/sampling_logp_difference/max": 0.38731383727863433,
|
| 1241 |
+
"eval_sampling/sampling_logp_difference/mean": 0.00951688139612088,
|
| 1242 |
+
"eval_steps_per_second": 0.021,
|
| 1243 |
+
"step": 50
|
| 1244 |
+
}
|
| 1245 |
+
],
|
| 1246 |
+
"logging_steps": 1.0,
|
| 1247 |
+
"max_steps": 50,
|
| 1248 |
+
"num_input_tokens_seen": 10041134,
|
| 1249 |
+
"num_train_epochs": 1,
|
| 1250 |
+
"save_steps": 500,
|
| 1251 |
+
"stateful_callbacks": {
|
| 1252 |
+
"TrainerControl": {
|
| 1253 |
+
"args": {
|
| 1254 |
+
"should_epoch_stop": false,
|
| 1255 |
+
"should_evaluate": false,
|
| 1256 |
+
"should_log": false,
|
| 1257 |
+
"should_save": true,
|
| 1258 |
+
"should_training_stop": true
|
| 1259 |
+
},
|
| 1260 |
+
"attributes": {}
|
| 1261 |
+
}
|
| 1262 |
+
},
|
| 1263 |
+
"total_flos": 0.0,
|
| 1264 |
+
"train_batch_size": 1,
|
| 1265 |
+
"trial_name": null,
|
| 1266 |
+
"trial_params": null
|
| 1267 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8adb550be405a8f1f15b5e74bdcc3049b647f9135632241d7f42aaad574cb8f5
|
| 3 |
+
size 8145
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|