Instructions to use bimabk/test_gin_rummy_fix4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/test_gin_rummy_fix4 with PEFT:
Base model is not found.
- Transformers
How to use bimabk/test_gin_rummy_fix4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/test_gin_rummy_fix4") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bimabk/test_gin_rummy_fix4", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use bimabk/test_gin_rummy_fix4 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_fix4" # 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_fix4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/test_gin_rummy_fix4
- SGLang
How to use bimabk/test_gin_rummy_fix4 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_fix4" \ --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_fix4", "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_fix4" \ --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_fix4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/test_gin_rummy_fix4 with Docker Model Runner:
docker model run hf.co/bimabk/test_gin_rummy_fix4
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 +1234 -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 |
+
"v_proj",
|
| 33 |
+
"q_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"up_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:e2f51df241da488414daa3e56f59f8c968ea91e605fdf1908eaa9786fe9e28ca
|
| 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,no_eval
|
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,1234 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0,
|
| 19 |
+
"completions/max_length": 9365.0,
|
| 20 |
+
"completions/max_terminated_length": 9365.0,
|
| 21 |
+
"completions/mean_length": 8020.65625,
|
| 22 |
+
"completions/mean_terminated_length": 8020.65625,
|
| 23 |
+
"completions/min_length": 4249.0,
|
| 24 |
+
"completions/min_terminated_length": 4249.0,
|
| 25 |
+
"entropy": 0.09263912006281316,
|
| 26 |
+
"epoch": 1e-05,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 1.3079737424850464,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 0.0,
|
| 31 |
+
"loss": -0.0363,
|
| 32 |
+
"num_tokens": 283668.0,
|
| 33 |
+
"reward": -0.4597676992416382,
|
| 34 |
+
"reward_std": 0.3370218873023987,
|
| 35 |
+
"rewards/rollout_reward_func/mean": -0.4597676992416382,
|
| 36 |
+
"rewards/rollout_reward_func/std": 0.37389153242111206,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.752305507659912,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 0.9996651411056519,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.4149494767189026,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.8795984983444214,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.009596828371286392,
|
| 42 |
+
"step": 1,
|
| 43 |
+
"step_time": 96.616219112002
|
| 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.09263912006281316,
|
| 52 |
+
"epoch": 2e-05,
|
| 53 |
+
"grad_norm": 1.297884225845337,
|
| 54 |
+
"kl": 0.0,
|
| 55 |
+
"learning_rate": 2.8571428571428573e-06,
|
| 56 |
+
"loss": -0.0363,
|
| 57 |
+
"step": 2,
|
| 58 |
+
"step_time": 28.28962996199698
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"clip_ratio/high_max": 0.005740102380514145,
|
| 62 |
+
"clip_ratio/high_mean": 0.0028700511902570724,
|
| 63 |
+
"clip_ratio/low_mean": 0.0018344554118812084,
|
| 64 |
+
"clip_ratio/low_min": 0.0,
|
| 65 |
+
"clip_ratio/region_mean": 0.004704506660345942,
|
| 66 |
+
"completions/clipped_ratio": 0.0,
|
| 67 |
+
"completions/max_length": 9371.0,
|
| 68 |
+
"completions/max_terminated_length": 9371.0,
|
| 69 |
+
"completions/mean_length": 7904.6875,
|
| 70 |
+
"completions/mean_terminated_length": 7904.6875,
|
| 71 |
+
"completions/min_length": 2043.0,
|
| 72 |
+
"completions/min_terminated_length": 2043.0,
|
| 73 |
+
"entropy": 0.11998538533225656,
|
| 74 |
+
"epoch": 3e-05,
|
| 75 |
+
"frac_reward_zero_std": 0.0,
|
| 76 |
+
"grad_norm": 1.5289855003356934,
|
| 77 |
+
"kl": 0.0012301416445552604,
|
| 78 |
+
"learning_rate": 5.7142857142857145e-06,
|
| 79 |
+
"loss": -0.0457,
|
| 80 |
+
"num_tokens": 564087.0,
|
| 81 |
+
"reward": -0.5441880226135254,
|
| 82 |
+
"reward_std": 0.3924558162689209,
|
| 83 |
+
"rewards/rollout_reward_func/mean": -0.5441880226135254,
|
| 84 |
+
"rewards/rollout_reward_func/std": 0.42554038763046265,
|
| 85 |
+
"sampling/importance_sampling_ratio/max": 1.5868604183197021,
|
| 86 |
+
"sampling/importance_sampling_ratio/mean": 0.9994746446609497,
|
| 87 |
+
"sampling/importance_sampling_ratio/min": 0.5226752758026123,
|
| 88 |
+
"sampling/sampling_logp_difference/max": 0.6487948894500732,
|
| 89 |
+
"sampling/sampling_logp_difference/mean": 0.011393455788493156,
|
| 90 |
+
"step": 3,
|
| 91 |
+
"step_time": 96.45885010200436
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"clip_ratio/high_max": 0.005765739129856229,
|
| 95 |
+
"clip_ratio/high_mean": 0.0028828695649281144,
|
| 96 |
+
"clip_ratio/low_mean": 0.0021901361469645053,
|
| 97 |
+
"clip_ratio/low_min": 0.0,
|
| 98 |
+
"clip_ratio/region_mean": 0.00507300574099645,
|
| 99 |
+
"entropy": 0.12003705860115588,
|
| 100 |
+
"epoch": 4e-05,
|
| 101 |
+
"grad_norm": 1.2704079151153564,
|
| 102 |
+
"kl": 0.001491897305186285,
|
| 103 |
+
"learning_rate": 8.571428571428573e-06,
|
| 104 |
+
"loss": -0.047,
|
| 105 |
+
"step": 4,
|
| 106 |
+
"step_time": 29.195899179991102
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"clip_ratio/high_max": 0.005963329633232206,
|
| 110 |
+
"clip_ratio/high_mean": 0.002981664816616103,
|
| 111 |
+
"clip_ratio/low_mean": 0.0014880952658131719,
|
| 112 |
+
"clip_ratio/low_min": 0.0,
|
| 113 |
+
"clip_ratio/region_mean": 0.004469760082429275,
|
| 114 |
+
"completions/clipped_ratio": 0.0,
|
| 115 |
+
"completions/max_length": 8882.0,
|
| 116 |
+
"completions/max_terminated_length": 8882.0,
|
| 117 |
+
"completions/mean_length": 7734.1875,
|
| 118 |
+
"completions/mean_terminated_length": 7734.1875,
|
| 119 |
+
"completions/min_length": 1783.0,
|
| 120 |
+
"completions/min_terminated_length": 1783.0,
|
| 121 |
+
"entropy": 0.09044346120208502,
|
| 122 |
+
"epoch": 5e-05,
|
| 123 |
+
"frac_reward_zero_std": 0.0,
|
| 124 |
+
"grad_norm": 1.5453312397003174,
|
| 125 |
+
"kl": 0.0007876164445406175,
|
| 126 |
+
"learning_rate": 1.1428571428571429e-05,
|
| 127 |
+
"loss": -0.0298,
|
| 128 |
+
"num_tokens": 838350.0,
|
| 129 |
+
"reward": -0.5028736591339111,
|
| 130 |
+
"reward_std": 0.371159166097641,
|
| 131 |
+
"rewards/rollout_reward_func/mean": -0.5028736591339111,
|
| 132 |
+
"rewards/rollout_reward_func/std": 0.38670846819877625,
|
| 133 |
+
"sampling/importance_sampling_ratio/max": 1.758213996887207,
|
| 134 |
+
"sampling/importance_sampling_ratio/mean": 0.9994957447052002,
|
| 135 |
+
"sampling/importance_sampling_ratio/min": 0.3028993308544159,
|
| 136 |
+
"sampling/sampling_logp_difference/max": 1.194354772567749,
|
| 137 |
+
"sampling/sampling_logp_difference/mean": 0.009732999838888645,
|
| 138 |
+
"step": 5,
|
| 139 |
+
"step_time": 93.71373151599619
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"clip_ratio/high_max": 0.006641630490776151,
|
| 143 |
+
"clip_ratio/high_mean": 0.004027052520541474,
|
| 144 |
+
"clip_ratio/low_mean": 0.002363648993195966,
|
| 145 |
+
"clip_ratio/low_min": 0.0,
|
| 146 |
+
"clip_ratio/region_mean": 0.00639070151373744,
|
| 147 |
+
"entropy": 0.08915826864540577,
|
| 148 |
+
"epoch": 6e-05,
|
| 149 |
+
"grad_norm": 1.28467857837677,
|
| 150 |
+
"kl": 0.0010278278514306294,
|
| 151 |
+
"learning_rate": 1.4285714285714285e-05,
|
| 152 |
+
"loss": -0.0305,
|
| 153 |
+
"step": 6,
|
| 154 |
+
"step_time": 27.6442580659932
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"clip_ratio/high_max": 0.006255197920836508,
|
| 158 |
+
"clip_ratio/high_mean": 0.003127598960418254,
|
| 159 |
+
"clip_ratio/low_mean": 0.0010739664430730045,
|
| 160 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 161 |
+
"clip_ratio/region_mean": 0.004201565403491259,
|
| 162 |
+
"completions/clipped_ratio": 0.0,
|
| 163 |
+
"completions/max_length": 9327.0,
|
| 164 |
+
"completions/max_terminated_length": 9327.0,
|
| 165 |
+
"completions/mean_length": 7944.875,
|
| 166 |
+
"completions/mean_terminated_length": 7944.875,
|
| 167 |
+
"completions/min_length": 1618.0,
|
| 168 |
+
"completions/min_terminated_length": 1618.0,
|
| 169 |
+
"entropy": 0.0936605577589944,
|
| 170 |
+
"epoch": 7e-05,
|
| 171 |
+
"frac_reward_zero_std": 0.0,
|
| 172 |
+
"grad_norm": 1.6153287887573242,
|
| 173 |
+
"kl": 0.001322501270351495,
|
| 174 |
+
"learning_rate": 1.7142857142857145e-05,
|
| 175 |
+
"loss": -0.04,
|
| 176 |
+
"num_tokens": 1120382.0,
|
| 177 |
+
"reward": -0.40193918347358704,
|
| 178 |
+
"reward_std": 0.42798829078674316,
|
| 179 |
+
"rewards/rollout_reward_func/mean": -0.40193918347358704,
|
| 180 |
+
"rewards/rollout_reward_func/std": 0.45951688289642334,
|
| 181 |
+
"sampling/importance_sampling_ratio/max": 2.626508951187134,
|
| 182 |
+
"sampling/importance_sampling_ratio/mean": 0.9997774362564087,
|
| 183 |
+
"sampling/importance_sampling_ratio/min": 0.4664866328239441,
|
| 184 |
+
"sampling/sampling_logp_difference/max": 0.9656555652618408,
|
| 185 |
+
"sampling/sampling_logp_difference/mean": 0.011292756535112858,
|
| 186 |
+
"step": 7,
|
| 187 |
+
"step_time": 93.59508053499303
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"clip_ratio/high_max": 0.004923702392261475,
|
| 191 |
+
"clip_ratio/high_mean": 0.0028252233169041574,
|
| 192 |
+
"clip_ratio/low_mean": 0.006011958757881075,
|
| 193 |
+
"clip_ratio/low_min": 0.0007102272938936949,
|
| 194 |
+
"clip_ratio/region_mean": 0.008837182191200554,
|
| 195 |
+
"entropy": 0.08954936638474464,
|
| 196 |
+
"epoch": 8e-05,
|
| 197 |
+
"grad_norm": 1.4120911359786987,
|
| 198 |
+
"kl": 0.0029542466588736715,
|
| 199 |
+
"learning_rate": 2e-05,
|
| 200 |
+
"loss": -0.0404,
|
| 201 |
+
"step": 8,
|
| 202 |
+
"step_time": 28.796026483003516
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"clip_ratio/high_max": 0.004531709826551378,
|
| 206 |
+
"clip_ratio/high_mean": 0.00261697854148224,
|
| 207 |
+
"clip_ratio/low_mean": 0.0036588753282558173,
|
| 208 |
+
"clip_ratio/low_min": 0.0014044943964108825,
|
| 209 |
+
"clip_ratio/region_mean": 0.006275853869738057,
|
| 210 |
+
"completions/clipped_ratio": 0.0,
|
| 211 |
+
"completions/max_length": 9217.0,
|
| 212 |
+
"completions/max_terminated_length": 9217.0,
|
| 213 |
+
"completions/mean_length": 7774.4375,
|
| 214 |
+
"completions/mean_terminated_length": 7774.4375,
|
| 215 |
+
"completions/min_length": 860.0,
|
| 216 |
+
"completions/min_terminated_length": 860.0,
|
| 217 |
+
"entropy": 0.09250054159201682,
|
| 218 |
+
"epoch": 9e-05,
|
| 219 |
+
"frac_reward_zero_std": 0.0,
|
| 220 |
+
"grad_norm": 0.8319895267486572,
|
| 221 |
+
"kl": 0.003183710745361168,
|
| 222 |
+
"learning_rate": 2.2857142857142858e-05,
|
| 223 |
+
"loss": -0.0399,
|
| 224 |
+
"num_tokens": 1396422.0,
|
| 225 |
+
"reward": -0.35600194334983826,
|
| 226 |
+
"reward_std": 0.46349450945854187,
|
| 227 |
+
"rewards/rollout_reward_func/mean": -0.35600194334983826,
|
| 228 |
+
"rewards/rollout_reward_func/std": 0.4859367907047272,
|
| 229 |
+
"sampling/importance_sampling_ratio/max": 2.4923911094665527,
|
| 230 |
+
"sampling/importance_sampling_ratio/mean": 0.9995814561843872,
|
| 231 |
+
"sampling/importance_sampling_ratio/min": 0.34728506207466125,
|
| 232 |
+
"sampling/sampling_logp_difference/max": 1.0576093196868896,
|
| 233 |
+
"sampling/sampling_logp_difference/mean": 0.011536622419953346,
|
| 234 |
+
"step": 9,
|
| 235 |
+
"step_time": 91.41392734301189
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"clip_ratio/high_max": 0.005798806145321578,
|
| 239 |
+
"clip_ratio/high_mean": 0.0032545167196076363,
|
| 240 |
+
"clip_ratio/low_mean": 0.005793917312985286,
|
| 241 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 242 |
+
"clip_ratio/region_mean": 0.009048434003489092,
|
| 243 |
+
"entropy": 0.08986990223638713,
|
| 244 |
+
"epoch": 0.0001,
|
| 245 |
+
"grad_norm": 1.1754401922225952,
|
| 246 |
+
"kl": 0.006458986033976544,
|
| 247 |
+
"learning_rate": 2.5714285714285714e-05,
|
| 248 |
+
"loss": -0.0398,
|
| 249 |
+
"step": 10,
|
| 250 |
+
"step_time": 27.723220527001104
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"clip_ratio/high_max": 0.002881916589103639,
|
| 254 |
+
"clip_ratio/high_mean": 0.0014409582945518196,
|
| 255 |
+
"clip_ratio/low_mean": 0.0003511235991027206,
|
| 256 |
+
"clip_ratio/low_min": 0.0,
|
| 257 |
+
"clip_ratio/region_mean": 0.0017920818936545402,
|
| 258 |
+
"completions/clipped_ratio": 0.0,
|
| 259 |
+
"completions/max_length": 9155.0,
|
| 260 |
+
"completions/max_terminated_length": 9155.0,
|
| 261 |
+
"completions/mean_length": 7173.3125,
|
| 262 |
+
"completions/mean_terminated_length": 7173.3125,
|
| 263 |
+
"completions/min_length": 887.0,
|
| 264 |
+
"completions/min_terminated_length": 887.0,
|
| 265 |
+
"entropy": 0.06778168666642159,
|
| 266 |
+
"epoch": 0.00011,
|
| 267 |
+
"frac_reward_zero_std": 0.0,
|
| 268 |
+
"grad_norm": 1.0174713134765625,
|
| 269 |
+
"kl": 0.004350664900812262,
|
| 270 |
+
"learning_rate": 2.857142857142857e-05,
|
| 271 |
+
"loss": -0.2438,
|
| 272 |
+
"num_tokens": 1653204.0,
|
| 273 |
+
"reward": -0.4879741668701172,
|
| 274 |
+
"reward_std": 0.49708276987075806,
|
| 275 |
+
"rewards/rollout_reward_func/mean": -0.4879741668701172,
|
| 276 |
+
"rewards/rollout_reward_func/std": 0.5053675770759583,
|
| 277 |
+
"sampling/importance_sampling_ratio/max": 1.3829487562179565,
|
| 278 |
+
"sampling/importance_sampling_ratio/mean": 1.0001708269119263,
|
| 279 |
+
"sampling/importance_sampling_ratio/min": 0.6129343509674072,
|
| 280 |
+
"sampling/sampling_logp_difference/max": 0.48949742317199707,
|
| 281 |
+
"sampling/sampling_logp_difference/mean": 0.006062386557459831,
|
| 282 |
+
"step": 11,
|
| 283 |
+
"step_time": 88.94538035600272
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"clip_ratio/high_max": 0.0021720757358707488,
|
| 287 |
+
"clip_ratio/high_mean": 0.0010860378679353744,
|
| 288 |
+
"clip_ratio/low_mean": 0.005371870560338721,
|
| 289 |
+
"clip_ratio/low_min": 0.0,
|
| 290 |
+
"clip_ratio/region_mean": 0.006457908428274095,
|
| 291 |
+
"entropy": 0.0648728254600428,
|
| 292 |
+
"epoch": 0.00012,
|
| 293 |
+
"grad_norm": 0.9108887910842896,
|
| 294 |
+
"kl": 0.010094417615619022,
|
| 295 |
+
"learning_rate": 3.142857142857143e-05,
|
| 296 |
+
"loss": -0.2448,
|
| 297 |
+
"step": 12,
|
| 298 |
+
"step_time": 27.213586286001373
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"clip_ratio/high_max": 0.009980108763556927,
|
| 302 |
+
"clip_ratio/high_mean": 0.004990054381778464,
|
| 303 |
+
"clip_ratio/low_mean": 0.00396484971861355,
|
| 304 |
+
"clip_ratio/low_min": 0.0,
|
| 305 |
+
"clip_ratio/region_mean": 0.008954904100392014,
|
| 306 |
+
"completions/clipped_ratio": 0.0,
|
| 307 |
+
"completions/max_length": 9369.0,
|
| 308 |
+
"completions/max_terminated_length": 9369.0,
|
| 309 |
+
"completions/mean_length": 8193.15625,
|
| 310 |
+
"completions/mean_terminated_length": 8193.15625,
|
| 311 |
+
"completions/min_length": 960.0,
|
| 312 |
+
"completions/min_terminated_length": 960.0,
|
| 313 |
+
"entropy": 0.10193604091182351,
|
| 314 |
+
"epoch": 0.00013,
|
| 315 |
+
"frac_reward_zero_std": 0.0,
|
| 316 |
+
"grad_norm": 1.485856294631958,
|
| 317 |
+
"kl": 0.030039603414479643,
|
| 318 |
+
"learning_rate": 3.428571428571429e-05,
|
| 319 |
+
"loss": -0.1495,
|
| 320 |
+
"num_tokens": 1943132.0,
|
| 321 |
+
"reward": -0.5804459452629089,
|
| 322 |
+
"reward_std": 0.27082452178001404,
|
| 323 |
+
"rewards/rollout_reward_func/mean": -0.5804459452629089,
|
| 324 |
+
"rewards/rollout_reward_func/std": 0.2952437400817871,
|
| 325 |
+
"sampling/importance_sampling_ratio/max": 1.951629877090454,
|
| 326 |
+
"sampling/importance_sampling_ratio/mean": 0.9995810985565186,
|
| 327 |
+
"sampling/importance_sampling_ratio/min": 0.08306944370269775,
|
| 328 |
+
"sampling/sampling_logp_difference/max": 2.4880783557891846,
|
| 329 |
+
"sampling/sampling_logp_difference/mean": 0.016808483749628067,
|
| 330 |
+
"step": 13,
|
| 331 |
+
"step_time": 94.51923282000644
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"clip_ratio/high_max": 0.015696270624175668,
|
| 335 |
+
"clip_ratio/high_mean": 0.007848135312087834,
|
| 336 |
+
"clip_ratio/low_mean": 0.00827725778799504,
|
| 337 |
+
"clip_ratio/low_min": 0.0021828330936841667,
|
| 338 |
+
"clip_ratio/region_mean": 0.016125393158290535,
|
| 339 |
+
"entropy": 0.10211672727018595,
|
| 340 |
+
"epoch": 0.00014,
|
| 341 |
+
"grad_norm": 1.529998779296875,
|
| 342 |
+
"kl": 0.045463139831554145,
|
| 343 |
+
"learning_rate": 3.7142857142857143e-05,
|
| 344 |
+
"loss": -0.1549,
|
| 345 |
+
"step": 14,
|
| 346 |
+
"step_time": 27.938481579996733
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"clip_ratio/high_max": 0.002873942954465747,
|
| 350 |
+
"clip_ratio/high_mean": 0.0017880951054394245,
|
| 351 |
+
"clip_ratio/low_mean": 0.0017879052029456943,
|
| 352 |
+
"clip_ratio/low_min": 0.0,
|
| 353 |
+
"clip_ratio/region_mean": 0.003576000308385119,
|
| 354 |
+
"completions/clipped_ratio": 0.0,
|
| 355 |
+
"completions/max_length": 9252.0,
|
| 356 |
+
"completions/max_terminated_length": 9252.0,
|
| 357 |
+
"completions/mean_length": 7854.34375,
|
| 358 |
+
"completions/mean_terminated_length": 7854.34375,
|
| 359 |
+
"completions/min_length": 1084.0,
|
| 360 |
+
"completions/min_terminated_length": 1084.0,
|
| 361 |
+
"entropy": 0.064073825487867,
|
| 362 |
+
"epoch": 0.00015,
|
| 363 |
+
"frac_reward_zero_std": 0.0,
|
| 364 |
+
"grad_norm": 2.1420814990997314,
|
| 365 |
+
"kl": 0.013782255366095342,
|
| 366 |
+
"learning_rate": 4e-05,
|
| 367 |
+
"loss": 0.0498,
|
| 368 |
+
"num_tokens": 2221867.0,
|
| 369 |
+
"reward": -0.3640046715736389,
|
| 370 |
+
"reward_std": 0.5706602334976196,
|
| 371 |
+
"rewards/rollout_reward_func/mean": -0.3640046715736389,
|
| 372 |
+
"rewards/rollout_reward_func/std": 0.5570085644721985,
|
| 373 |
+
"sampling/importance_sampling_ratio/max": 2.0640242099761963,
|
| 374 |
+
"sampling/importance_sampling_ratio/mean": 1.001070499420166,
|
| 375 |
+
"sampling/importance_sampling_ratio/min": 0.4299520254135132,
|
| 376 |
+
"sampling/sampling_logp_difference/max": 0.8440816402435303,
|
| 377 |
+
"sampling/sampling_logp_difference/mean": 0.008871052414178848,
|
| 378 |
+
"step": 15,
|
| 379 |
+
"step_time": 95.68331051399582
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"clip_ratio/high_max": 0.009986817487515509,
|
| 383 |
+
"clip_ratio/high_mean": 0.005344532371964306,
|
| 384 |
+
"clip_ratio/low_mean": 0.005893140041735023,
|
| 385 |
+
"clip_ratio/low_min": 0.0014044943964108825,
|
| 386 |
+
"clip_ratio/region_mean": 0.01123767253011465,
|
| 387 |
+
"entropy": 0.0662008763756603,
|
| 388 |
+
"epoch": 0.00016,
|
| 389 |
+
"grad_norm": 1.10405695438385,
|
| 390 |
+
"kl": 0.022447960553108715,
|
| 391 |
+
"learning_rate": 4.2857142857142856e-05,
|
| 392 |
+
"loss": 0.045,
|
| 393 |
+
"step": 16,
|
| 394 |
+
"step_time": 27.621052484992106
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"clip_ratio/high_max": 0.006080338731408119,
|
| 398 |
+
"clip_ratio/high_mean": 0.0030401693657040596,
|
| 399 |
+
"clip_ratio/low_mean": 0.003163026151014492,
|
| 400 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 401 |
+
"clip_ratio/region_mean": 0.0062031955167185515,
|
| 402 |
+
"completions/clipped_ratio": 0.0,
|
| 403 |
+
"completions/max_length": 9357.0,
|
| 404 |
+
"completions/max_terminated_length": 9357.0,
|
| 405 |
+
"completions/mean_length": 7752.09375,
|
| 406 |
+
"completions/mean_terminated_length": 7752.09375,
|
| 407 |
+
"completions/min_length": 2165.0,
|
| 408 |
+
"completions/min_terminated_length": 2165.0,
|
| 409 |
+
"entropy": 0.07411375921219587,
|
| 410 |
+
"epoch": 0.00017,
|
| 411 |
+
"frac_reward_zero_std": 0.0,
|
| 412 |
+
"grad_norm": 1.4593960046768188,
|
| 413 |
+
"kl": 0.05461276904679835,
|
| 414 |
+
"learning_rate": 4.5714285714285716e-05,
|
| 415 |
+
"loss": 0.0396,
|
| 416 |
+
"num_tokens": 2497538.0,
|
| 417 |
+
"reward": -0.2799840569496155,
|
| 418 |
+
"reward_std": 0.5249596834182739,
|
| 419 |
+
"rewards/rollout_reward_func/mean": -0.2799840569496155,
|
| 420 |
+
"rewards/rollout_reward_func/std": 0.5806505680084229,
|
| 421 |
+
"sampling/importance_sampling_ratio/max": 1.9463616609573364,
|
| 422 |
+
"sampling/importance_sampling_ratio/mean": 0.9976865649223328,
|
| 423 |
+
"sampling/importance_sampling_ratio/min": 0.06184462085366249,
|
| 424 |
+
"sampling/sampling_logp_difference/max": 2.783130168914795,
|
| 425 |
+
"sampling/sampling_logp_difference/mean": 0.014597892761230469,
|
| 426 |
+
"step": 17,
|
| 427 |
+
"step_time": 93.46702274899872
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"clip_ratio/high_max": 0.01004306401591748,
|
| 431 |
+
"clip_ratio/high_mean": 0.00502153200795874,
|
| 432 |
+
"clip_ratio/low_mean": 0.009563877363689244,
|
| 433 |
+
"clip_ratio/low_min": 0.001420638000126928,
|
| 434 |
+
"clip_ratio/region_mean": 0.014585409400751814,
|
| 435 |
+
"entropy": 0.07483723293989897,
|
| 436 |
+
"epoch": 0.00018,
|
| 437 |
+
"grad_norm": 1.2538055181503296,
|
| 438 |
+
"kl": 0.17985437362222,
|
| 439 |
+
"learning_rate": 4.8571428571428576e-05,
|
| 440 |
+
"loss": 0.036,
|
| 441 |
+
"step": 18,
|
| 442 |
+
"step_time": 27.61892309099494
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.007797640864737332,
|
| 446 |
+
"clip_ratio/high_mean": 0.004960351681802422,
|
| 447 |
+
"clip_ratio/low_mean": 0.003771967807551846,
|
| 448 |
+
"clip_ratio/low_min": 0.0013297871919348836,
|
| 449 |
+
"clip_ratio/region_mean": 0.008732319489354268,
|
| 450 |
+
"completions/clipped_ratio": 0.0,
|
| 451 |
+
"completions/max_length": 9323.0,
|
| 452 |
+
"completions/max_terminated_length": 9323.0,
|
| 453 |
+
"completions/mean_length": 8057.5625,
|
| 454 |
+
"completions/mean_terminated_length": 8057.5625,
|
| 455 |
+
"completions/min_length": 4131.0,
|
| 456 |
+
"completions/min_terminated_length": 4131.0,
|
| 457 |
+
"entropy": 0.09318487590644509,
|
| 458 |
+
"epoch": 0.00019,
|
| 459 |
+
"frac_reward_zero_std": 0.0,
|
| 460 |
+
"grad_norm": 1.8037179708480835,
|
| 461 |
+
"kl": 0.08203080226667225,
|
| 462 |
+
"learning_rate": 5.142857142857143e-05,
|
| 463 |
+
"loss": -0.1161,
|
| 464 |
+
"num_tokens": 2782910.0,
|
| 465 |
+
"reward": -0.5081856846809387,
|
| 466 |
+
"reward_std": 0.34735041856765747,
|
| 467 |
+
"rewards/rollout_reward_func/mean": -0.5081856846809387,
|
| 468 |
+
"rewards/rollout_reward_func/std": 0.34861209988594055,
|
| 469 |
+
"sampling/importance_sampling_ratio/max": 2.6022117137908936,
|
| 470 |
+
"sampling/importance_sampling_ratio/mean": 1.0005253553390503,
|
| 471 |
+
"sampling/importance_sampling_ratio/min": 0.39166536927223206,
|
| 472 |
+
"sampling/sampling_logp_difference/max": 0.9563617706298828,
|
| 473 |
+
"sampling/sampling_logp_difference/mean": 0.016585635021328926,
|
| 474 |
+
"step": 19,
|
| 475 |
+
"step_time": 96.19064523599809
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"clip_ratio/high_max": 0.009210843476466835,
|
| 479 |
+
"clip_ratio/high_mean": 0.0056830079411156476,
|
| 480 |
+
"clip_ratio/low_mean": 0.01183583348756656,
|
| 481 |
+
"clip_ratio/low_min": 0.005575570685323328,
|
| 482 |
+
"clip_ratio/region_mean": 0.01751884145778604,
|
| 483 |
+
"entropy": 0.08642621210310608,
|
| 484 |
+
"epoch": 0.0002,
|
| 485 |
+
"grad_norm": 1.6954180002212524,
|
| 486 |
+
"kl": 0.1374246042687446,
|
| 487 |
+
"learning_rate": 5.428571428571428e-05,
|
| 488 |
+
"loss": -0.1201,
|
| 489 |
+
"step": 20,
|
| 490 |
+
"step_time": 27.602408401988214
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"clip_ratio/high_max": 0.005014301335904747,
|
| 494 |
+
"clip_ratio/high_mean": 0.002883656619815156,
|
| 495 |
+
"clip_ratio/low_mean": 0.0028673816996160895,
|
| 496 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 497 |
+
"clip_ratio/region_mean": 0.005751038319431245,
|
| 498 |
+
"completions/clipped_ratio": 0.0,
|
| 499 |
+
"completions/max_length": 9403.0,
|
| 500 |
+
"completions/max_terminated_length": 9403.0,
|
| 501 |
+
"completions/mean_length": 7930.5625,
|
| 502 |
+
"completions/mean_terminated_length": 7930.5625,
|
| 503 |
+
"completions/min_length": 634.0,
|
| 504 |
+
"completions/min_terminated_length": 634.0,
|
| 505 |
+
"entropy": 0.07444759807549417,
|
| 506 |
+
"epoch": 0.00021,
|
| 507 |
+
"frac_reward_zero_std": 0.0,
|
| 508 |
+
"grad_norm": 1.1838347911834717,
|
| 509 |
+
"kl": 0.09432762704091147,
|
| 510 |
+
"learning_rate": 5.714285714285714e-05,
|
| 511 |
+
"loss": -0.159,
|
| 512 |
+
"num_tokens": 3064148.0,
|
| 513 |
+
"reward": -0.3027535676956177,
|
| 514 |
+
"reward_std": 0.49178069829940796,
|
| 515 |
+
"rewards/rollout_reward_func/mean": -0.3027535676956177,
|
| 516 |
+
"rewards/rollout_reward_func/std": 0.5297390818595886,
|
| 517 |
+
"sampling/importance_sampling_ratio/max": 2.3851823806762695,
|
| 518 |
+
"sampling/importance_sampling_ratio/mean": 1.0000920295715332,
|
| 519 |
+
"sampling/importance_sampling_ratio/min": 0.3727108836174011,
|
| 520 |
+
"sampling/sampling_logp_difference/max": 0.9869523048400879,
|
| 521 |
+
"sampling/sampling_logp_difference/mean": 0.011310078203678131,
|
| 522 |
+
"step": 21,
|
| 523 |
+
"step_time": 91.98894712300535
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_ratio/high_max": 0.011702421237714589,
|
| 527 |
+
"clip_ratio/high_mean": 0.0065865046926774085,
|
| 528 |
+
"clip_ratio/low_mean": 0.011994066560873762,
|
| 529 |
+
"clip_ratio/low_min": 0.0024457787512801588,
|
| 530 |
+
"clip_ratio/region_mean": 0.01858057125355117,
|
| 531 |
+
"entropy": 0.07004613918252289,
|
| 532 |
+
"epoch": 0.00022,
|
| 533 |
+
"grad_norm": 1.0932140350341797,
|
| 534 |
+
"kl": 0.06876913830637932,
|
| 535 |
+
"learning_rate": 6e-05,
|
| 536 |
+
"loss": -0.168,
|
| 537 |
+
"step": 22,
|
| 538 |
+
"step_time": 27.827071762007108
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.007137945271097124,
|
| 542 |
+
"clip_ratio/high_mean": 0.003936619672458619,
|
| 543 |
+
"clip_ratio/low_mean": 0.0028658679220825434,
|
| 544 |
+
"clip_ratio/low_min": 0.0007267441833391786,
|
| 545 |
+
"clip_ratio/region_mean": 0.006802487594541162,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 9274.0,
|
| 548 |
+
"completions/max_terminated_length": 9274.0,
|
| 549 |
+
"completions/mean_length": 8095.0625,
|
| 550 |
+
"completions/mean_terminated_length": 8095.0625,
|
| 551 |
+
"completions/min_length": 1533.0,
|
| 552 |
+
"completions/min_terminated_length": 1533.0,
|
| 553 |
+
"entropy": 0.0666239457204938,
|
| 554 |
+
"epoch": 0.00023,
|
| 555 |
+
"frac_reward_zero_std": 0.0,
|
| 556 |
+
"grad_norm": 1.2763183116912842,
|
| 557 |
+
"kl": 0.05845395056530833,
|
| 558 |
+
"learning_rate": 6.285714285714286e-05,
|
| 559 |
+
"loss": 0.3004,
|
| 560 |
+
"num_tokens": 3350379.0,
|
| 561 |
+
"reward": -0.3713611960411072,
|
| 562 |
+
"reward_std": 0.44723719358444214,
|
| 563 |
+
"rewards/rollout_reward_func/mean": -0.3713611960411072,
|
| 564 |
+
"rewards/rollout_reward_func/std": 0.5041891932487488,
|
| 565 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 566 |
+
"sampling/importance_sampling_ratio/mean": 1.0009047985076904,
|
| 567 |
+
"sampling/importance_sampling_ratio/min": 0.4158317744731903,
|
| 568 |
+
"sampling/sampling_logp_difference/max": 1.114884614944458,
|
| 569 |
+
"sampling/sampling_logp_difference/mean": 0.01109105534851551,
|
| 570 |
+
"step": 23,
|
| 571 |
+
"step_time": 93.21978440000748
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.014727697416674346,
|
| 575 |
+
"clip_ratio/high_mean": 0.00882161219487898,
|
| 576 |
+
"clip_ratio/low_mean": 0.01083813124569133,
|
| 577 |
+
"clip_ratio/low_min": 0.003661759605165571,
|
| 578 |
+
"clip_ratio/region_mean": 0.01965974346967414,
|
| 579 |
+
"entropy": 0.06382836727425456,
|
| 580 |
+
"epoch": 0.00024,
|
| 581 |
+
"grad_norm": 1.133302092552185,
|
| 582 |
+
"kl": 0.07930020266212523,
|
| 583 |
+
"learning_rate": 6.571428571428571e-05,
|
| 584 |
+
"loss": 0.2957,
|
| 585 |
+
"step": 24,
|
| 586 |
+
"step_time": 28.035423179004283
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"clip_ratio/high_max": 0.004302181303501129,
|
| 590 |
+
"clip_ratio/high_mean": 0.0021510906517505646,
|
| 591 |
+
"clip_ratio/low_mean": 0.0007800387684255838,
|
| 592 |
+
"clip_ratio/low_min": 0.0,
|
| 593 |
+
"clip_ratio/region_mean": 0.0029311294783838093,
|
| 594 |
+
"completions/clipped_ratio": 0.0,
|
| 595 |
+
"completions/max_length": 8580.0,
|
| 596 |
+
"completions/max_terminated_length": 8580.0,
|
| 597 |
+
"completions/mean_length": 6758.75,
|
| 598 |
+
"completions/mean_terminated_length": 6758.75,
|
| 599 |
+
"completions/min_length": 272.0,
|
| 600 |
+
"completions/min_terminated_length": 272.0,
|
| 601 |
+
"entropy": 0.04931171424686909,
|
| 602 |
+
"epoch": 0.00025,
|
| 603 |
+
"frac_reward_zero_std": 0.0,
|
| 604 |
+
"grad_norm": 1.291664719581604,
|
| 605 |
+
"kl": 0.07758830557577312,
|
| 606 |
+
"learning_rate": 6.857142857142858e-05,
|
| 607 |
+
"loss": -0.2042,
|
| 608 |
+
"num_tokens": 3593214.0,
|
| 609 |
+
"reward": -0.5959107875823975,
|
| 610 |
+
"reward_std": 0.35876262187957764,
|
| 611 |
+
"rewards/rollout_reward_func/mean": -0.5959107875823975,
|
| 612 |
+
"rewards/rollout_reward_func/std": 0.39302268624305725,
|
| 613 |
+
"sampling/importance_sampling_ratio/max": 2.010491371154785,
|
| 614 |
+
"sampling/importance_sampling_ratio/mean": 1.0006413459777832,
|
| 615 |
+
"sampling/importance_sampling_ratio/min": 0.42770469188690186,
|
| 616 |
+
"sampling/sampling_logp_difference/max": 0.8493223190307617,
|
| 617 |
+
"sampling/sampling_logp_difference/mean": 0.008722992613911629,
|
| 618 |
+
"step": 25,
|
| 619 |
+
"step_time": 86.72631602899492
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"clip_ratio/high_max": 0.010786514729261398,
|
| 623 |
+
"clip_ratio/high_mean": 0.005393257364630699,
|
| 624 |
+
"clip_ratio/low_mean": 0.011662953183986247,
|
| 625 |
+
"clip_ratio/low_min": 0.0019696029485203326,
|
| 626 |
+
"clip_ratio/region_mean": 0.017056210490409285,
|
| 627 |
+
"entropy": 0.05728732608258724,
|
| 628 |
+
"epoch": 0.00026,
|
| 629 |
+
"grad_norm": 2.188659906387329,
|
| 630 |
+
"kl": 0.08259193820413202,
|
| 631 |
+
"learning_rate": 7.142857142857143e-05,
|
| 632 |
+
"loss": -0.2036,
|
| 633 |
+
"step": 26,
|
| 634 |
+
"step_time": 26.119606291009404
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"clip_ratio/high_max": 0.0061968869413249195,
|
| 638 |
+
"clip_ratio/high_mean": 0.0030984434706624597,
|
| 639 |
+
"clip_ratio/low_mean": 0.0010736910917330533,
|
| 640 |
+
"clip_ratio/low_min": 0.0,
|
| 641 |
+
"clip_ratio/region_mean": 0.0041721345914993435,
|
| 642 |
+
"completions/clipped_ratio": 0.0,
|
| 643 |
+
"completions/max_length": 8940.0,
|
| 644 |
+
"completions/max_terminated_length": 8940.0,
|
| 645 |
+
"completions/mean_length": 7771.3125,
|
| 646 |
+
"completions/mean_terminated_length": 7771.3125,
|
| 647 |
+
"completions/min_length": 1515.0,
|
| 648 |
+
"completions/min_terminated_length": 1515.0,
|
| 649 |
+
"entropy": 0.0601597810164094,
|
| 650 |
+
"epoch": 0.00027,
|
| 651 |
+
"frac_reward_zero_std": 0.0,
|
| 652 |
+
"grad_norm": 1.141928791999817,
|
| 653 |
+
"kl": 0.05808806075947359,
|
| 654 |
+
"learning_rate": 7.428571428571429e-05,
|
| 655 |
+
"loss": 0.1398,
|
| 656 |
+
"num_tokens": 3868467.0,
|
| 657 |
+
"reward": -0.36368632316589355,
|
| 658 |
+
"reward_std": 0.5357357263565063,
|
| 659 |
+
"rewards/rollout_reward_func/mean": -0.36368632316589355,
|
| 660 |
+
"rewards/rollout_reward_func/std": 0.5756723880767822,
|
| 661 |
+
"sampling/importance_sampling_ratio/max": 1.8575561046600342,
|
| 662 |
+
"sampling/importance_sampling_ratio/mean": 1.0000970363616943,
|
| 663 |
+
"sampling/importance_sampling_ratio/min": 0.3134206235408783,
|
| 664 |
+
"sampling/sampling_logp_difference/max": 1.1602091789245605,
|
| 665 |
+
"sampling/sampling_logp_difference/mean": 0.009103494696319103,
|
| 666 |
+
"step": 27,
|
| 667 |
+
"step_time": 92.96613138498651
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"clip_ratio/high_max": 0.0164202400483191,
|
| 671 |
+
"clip_ratio/high_mean": 0.00821012002415955,
|
| 672 |
+
"clip_ratio/low_mean": 0.013974322064314038,
|
| 673 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 674 |
+
"clip_ratio/region_mean": 0.022184442059369758,
|
| 675 |
+
"entropy": 0.0649251660797745,
|
| 676 |
+
"epoch": 0.00028,
|
| 677 |
+
"grad_norm": 0.8147655725479126,
|
| 678 |
+
"kl": 0.10712331312242895,
|
| 679 |
+
"learning_rate": 7.714285714285715e-05,
|
| 680 |
+
"loss": 0.1369,
|
| 681 |
+
"step": 28,
|
| 682 |
+
"step_time": 27.32312696599911
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"clip_ratio/high_max": 0.002155932132154703,
|
| 686 |
+
"clip_ratio/high_mean": 0.0010779660660773516,
|
| 687 |
+
"clip_ratio/low_mean": 0.0007102272938936949,
|
| 688 |
+
"clip_ratio/low_min": 0.0,
|
| 689 |
+
"clip_ratio/region_mean": 0.0017881933599710464,
|
| 690 |
+
"completions/clipped_ratio": 0.0,
|
| 691 |
+
"completions/max_length": 9165.0,
|
| 692 |
+
"completions/max_terminated_length": 9165.0,
|
| 693 |
+
"completions/mean_length": 7336.8125,
|
| 694 |
+
"completions/mean_terminated_length": 7336.8125,
|
| 695 |
+
"completions/min_length": 1667.0,
|
| 696 |
+
"completions/min_terminated_length": 1667.0,
|
| 697 |
+
"entropy": 0.06351292878389359,
|
| 698 |
+
"epoch": 0.00029,
|
| 699 |
+
"frac_reward_zero_std": 0.0,
|
| 700 |
+
"grad_norm": 0.7936819195747375,
|
| 701 |
+
"kl": 0.04702634894056246,
|
| 702 |
+
"learning_rate": 8e-05,
|
| 703 |
+
"loss": -0.2535,
|
| 704 |
+
"num_tokens": 4129721.0,
|
| 705 |
+
"reward": -0.4376564919948578,
|
| 706 |
+
"reward_std": 0.39146924018859863,
|
| 707 |
+
"rewards/rollout_reward_func/mean": -0.4376564919948578,
|
| 708 |
+
"rewards/rollout_reward_func/std": 0.4162859320640564,
|
| 709 |
+
"sampling/importance_sampling_ratio/max": 1.9884843826293945,
|
| 710 |
+
"sampling/importance_sampling_ratio/mean": 1.0006194114685059,
|
| 711 |
+
"sampling/importance_sampling_ratio/min": 0.5153306126594543,
|
| 712 |
+
"sampling/sampling_logp_difference/max": 0.6873726844787598,
|
| 713 |
+
"sampling/sampling_logp_difference/mean": 0.00740803312510252,
|
| 714 |
+
"step": 29,
|
| 715 |
+
"step_time": 91.82200075300352
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"clip_ratio/high_max": 0.005039906303863972,
|
| 719 |
+
"clip_ratio/high_mean": 0.00323018038761802,
|
| 720 |
+
"clip_ratio/low_mean": 0.010294274339685217,
|
| 721 |
+
"clip_ratio/low_min": 0.004024621332064271,
|
| 722 |
+
"clip_ratio/region_mean": 0.013524454698199406,
|
| 723 |
+
"entropy": 0.06765187811106443,
|
| 724 |
+
"epoch": 0.0003,
|
| 725 |
+
"grad_norm": 0.7302473783493042,
|
| 726 |
+
"kl": 0.050249568943399936,
|
| 727 |
+
"learning_rate": 8.285714285714287e-05,
|
| 728 |
+
"loss": -0.2607,
|
| 729 |
+
"step": 30,
|
| 730 |
+
"step_time": 28.11271668801055
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.00493967067450285,
|
| 734 |
+
"clip_ratio/high_mean": 0.002469835337251425,
|
| 735 |
+
"clip_ratio/low_mean": 0.0007143090479075909,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.0031841443851590157,
|
| 738 |
+
"completions/clipped_ratio": 0.0,
|
| 739 |
+
"completions/max_length": 9146.0,
|
| 740 |
+
"completions/max_terminated_length": 9146.0,
|
| 741 |
+
"completions/mean_length": 7793.5625,
|
| 742 |
+
"completions/mean_terminated_length": 7793.5625,
|
| 743 |
+
"completions/min_length": 263.0,
|
| 744 |
+
"completions/min_terminated_length": 263.0,
|
| 745 |
+
"entropy": 0.08614894514903426,
|
| 746 |
+
"epoch": 0.00031,
|
| 747 |
+
"frac_reward_zero_std": 0.0,
|
| 748 |
+
"grad_norm": 1.0549495220184326,
|
| 749 |
+
"kl": 0.06513052270747721,
|
| 750 |
+
"learning_rate": 8.571428571428571e-05,
|
| 751 |
+
"loss": -0.0626,
|
| 752 |
+
"num_tokens": 4405861.0,
|
| 753 |
+
"reward": -0.37940478324890137,
|
| 754 |
+
"reward_std": 0.45117825269699097,
|
| 755 |
+
"rewards/rollout_reward_func/mean": -0.37940478324890137,
|
| 756 |
+
"rewards/rollout_reward_func/std": 0.48283621668815613,
|
| 757 |
+
"sampling/importance_sampling_ratio/max": 1.4535597562789917,
|
| 758 |
+
"sampling/importance_sampling_ratio/mean": 0.9976645112037659,
|
| 759 |
+
"sampling/importance_sampling_ratio/min": 0.5075654983520508,
|
| 760 |
+
"sampling/sampling_logp_difference/max": 0.6781294345855713,
|
| 761 |
+
"sampling/sampling_logp_difference/mean": 0.009683198295533657,
|
| 762 |
+
"step": 31,
|
| 763 |
+
"step_time": 92.44875282800785
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"clip_ratio/high_max": 0.011355375638231635,
|
| 767 |
+
"clip_ratio/high_mean": 0.006735137314535677,
|
| 768 |
+
"clip_ratio/low_mean": 0.012324601178988814,
|
| 769 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 770 |
+
"clip_ratio/region_mean": 0.019059738871874288,
|
| 771 |
+
"entropy": 0.08400337002240121,
|
| 772 |
+
"epoch": 0.00032,
|
| 773 |
+
"grad_norm": 0.6007691621780396,
|
| 774 |
+
"kl": 0.08906090061645955,
|
| 775 |
+
"learning_rate": 8.857142857142857e-05,
|
| 776 |
+
"loss": -0.0698,
|
| 777 |
+
"step": 32,
|
| 778 |
+
"step_time": 28.252189476006606
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"clip_ratio/high_max": 0.007888395455665886,
|
| 782 |
+
"clip_ratio/high_mean": 0.003944197727832943,
|
| 783 |
+
"clip_ratio/low_mean": 0.004384168569231406,
|
| 784 |
+
"clip_ratio/low_min": 0.0,
|
| 785 |
+
"clip_ratio/region_mean": 0.00832836632616818,
|
| 786 |
+
"completions/clipped_ratio": 0.0,
|
| 787 |
+
"completions/max_length": 9394.0,
|
| 788 |
+
"completions/max_terminated_length": 9394.0,
|
| 789 |
+
"completions/mean_length": 7661.125,
|
| 790 |
+
"completions/mean_terminated_length": 7661.125,
|
| 791 |
+
"completions/min_length": 1012.0,
|
| 792 |
+
"completions/min_terminated_length": 1012.0,
|
| 793 |
+
"entropy": 0.08313656039535999,
|
| 794 |
+
"epoch": 0.00033,
|
| 795 |
+
"frac_reward_zero_std": 0.0,
|
| 796 |
+
"grad_norm": 1.035186767578125,
|
| 797 |
+
"kl": 0.09069790283683687,
|
| 798 |
+
"learning_rate": 9.142857142857143e-05,
|
| 799 |
+
"loss": 0.0166,
|
| 800 |
+
"num_tokens": 4677397.0,
|
| 801 |
+
"reward": -0.3240296244621277,
|
| 802 |
+
"reward_std": 0.4347441494464874,
|
| 803 |
+
"rewards/rollout_reward_func/mean": -0.3240296244621277,
|
| 804 |
+
"rewards/rollout_reward_func/std": 0.4854819178581238,
|
| 805 |
+
"sampling/importance_sampling_ratio/max": 1.7231584787368774,
|
| 806 |
+
"sampling/importance_sampling_ratio/mean": 0.9987027645111084,
|
| 807 |
+
"sampling/importance_sampling_ratio/min": 0.06808681786060333,
|
| 808 |
+
"sampling/sampling_logp_difference/max": 2.686971664428711,
|
| 809 |
+
"sampling/sampling_logp_difference/mean": 0.010714043863117695,
|
| 810 |
+
"step": 33,
|
| 811 |
+
"step_time": 93.2897496730111
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"clip_ratio/high_max": 0.020736676699016243,
|
| 815 |
+
"clip_ratio/high_mean": 0.01142766050179489,
|
| 816 |
+
"clip_ratio/low_mean": 0.010279498674208298,
|
| 817 |
+
"clip_ratio/low_min": 0.0,
|
| 818 |
+
"clip_ratio/region_mean": 0.02170715932152234,
|
| 819 |
+
"entropy": 0.07817789679393172,
|
| 820 |
+
"epoch": 0.00034,
|
| 821 |
+
"grad_norm": 0.6795229911804199,
|
| 822 |
+
"kl": 0.110447074577678,
|
| 823 |
+
"learning_rate": 9.428571428571429e-05,
|
| 824 |
+
"loss": 0.0053,
|
| 825 |
+
"step": 34,
|
| 826 |
+
"step_time": 28.798946735994832
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"clip_ratio/high_max": 0.004271204466931522,
|
| 830 |
+
"clip_ratio/high_mean": 0.002135602233465761,
|
| 831 |
+
"clip_ratio/low_mean": 0.0010695144010242075,
|
| 832 |
+
"clip_ratio/low_min": 0.0,
|
| 833 |
+
"clip_ratio/region_mean": 0.0032051166344899684,
|
| 834 |
+
"completions/clipped_ratio": 0.0,
|
| 835 |
+
"completions/max_length": 9245.0,
|
| 836 |
+
"completions/max_terminated_length": 9245.0,
|
| 837 |
+
"completions/mean_length": 8244.75,
|
| 838 |
+
"completions/mean_terminated_length": 8244.75,
|
| 839 |
+
"completions/min_length": 291.0,
|
| 840 |
+
"completions/min_terminated_length": 291.0,
|
| 841 |
+
"entropy": 0.06729014380834997,
|
| 842 |
+
"epoch": 0.00035,
|
| 843 |
+
"frac_reward_zero_std": 0.0,
|
| 844 |
+
"grad_norm": 1.4786404371261597,
|
| 845 |
+
"kl": 0.10362116701435298,
|
| 846 |
+
"learning_rate": 9.714285714285715e-05,
|
| 847 |
+
"loss": -0.2709,
|
| 848 |
+
"num_tokens": 4968197.0,
|
| 849 |
+
"reward": -0.3916197419166565,
|
| 850 |
+
"reward_std": 0.35996532440185547,
|
| 851 |
+
"rewards/rollout_reward_func/mean": -0.3916197419166565,
|
| 852 |
+
"rewards/rollout_reward_func/std": 0.3666594326496124,
|
| 853 |
+
"sampling/importance_sampling_ratio/max": 1.5868641138076782,
|
| 854 |
+
"sampling/importance_sampling_ratio/mean": 1.0002307891845703,
|
| 855 |
+
"sampling/importance_sampling_ratio/min": 0.6188454031944275,
|
| 856 |
+
"sampling/sampling_logp_difference/max": 0.4798997640609741,
|
| 857 |
+
"sampling/sampling_logp_difference/mean": 0.007114737294614315,
|
| 858 |
+
"step": 35,
|
| 859 |
+
"step_time": 92.1033384639959
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"clip_ratio/high_max": 0.017084260645788163,
|
| 863 |
+
"clip_ratio/high_mean": 0.009252357733203098,
|
| 864 |
+
"clip_ratio/low_mean": 0.012271191226318479,
|
| 865 |
+
"clip_ratio/low_min": 0.0014044943964108825,
|
| 866 |
+
"clip_ratio/region_mean": 0.021523548872210085,
|
| 867 |
+
"entropy": 0.06766591034829617,
|
| 868 |
+
"epoch": 0.00036,
|
| 869 |
+
"grad_norm": 0.7554082870483398,
|
| 870 |
+
"kl": 0.11198568157851696,
|
| 871 |
+
"learning_rate": 0.0001,
|
| 872 |
+
"loss": -0.2783,
|
| 873 |
+
"step": 36,
|
| 874 |
+
"step_time": 28.797730328002217
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0014046717551536858,
|
| 878 |
+
"clip_ratio/high_mean": 0.0007023358775768429,
|
| 879 |
+
"clip_ratio/low_mean": 0.0,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0007023358775768429,
|
| 882 |
+
"completions/clipped_ratio": 0.0,
|
| 883 |
+
"completions/max_length": 9282.0,
|
| 884 |
+
"completions/max_terminated_length": 9282.0,
|
| 885 |
+
"completions/mean_length": 7701.8125,
|
| 886 |
+
"completions/mean_terminated_length": 7701.8125,
|
| 887 |
+
"completions/min_length": 1350.0,
|
| 888 |
+
"completions/min_terminated_length": 1350.0,
|
| 889 |
+
"entropy": 0.06278971070423722,
|
| 890 |
+
"epoch": 0.00037,
|
| 891 |
+
"frac_reward_zero_std": 0.0,
|
| 892 |
+
"grad_norm": 1.0583816766738892,
|
| 893 |
+
"kl": 0.12011543358676136,
|
| 894 |
+
"learning_rate": 9.918053502751771e-05,
|
| 895 |
+
"loss": -0.0297,
|
| 896 |
+
"num_tokens": 5241387.0,
|
| 897 |
+
"reward": -0.304426908493042,
|
| 898 |
+
"reward_std": 0.4464525580406189,
|
| 899 |
+
"rewards/rollout_reward_func/mean": -0.304426908493042,
|
| 900 |
+
"rewards/rollout_reward_func/std": 0.4538337290287018,
|
| 901 |
+
"sampling/importance_sampling_ratio/max": 1.6482372283935547,
|
| 902 |
+
"sampling/importance_sampling_ratio/mean": 0.9995368719100952,
|
| 903 |
+
"sampling/importance_sampling_ratio/min": 0.5574944615364075,
|
| 904 |
+
"sampling/sampling_logp_difference/max": 0.5843026638031006,
|
| 905 |
+
"sampling/sampling_logp_difference/mean": 0.007077127229422331,
|
| 906 |
+
"step": 37,
|
| 907 |
+
"step_time": 91.12368497201533
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"clip_ratio/high_max": 0.010138559562619776,
|
| 911 |
+
"clip_ratio/high_mean": 0.006660482700681314,
|
| 912 |
+
"clip_ratio/low_mean": 0.01362931149196811,
|
| 913 |
+
"clip_ratio/low_min": 0.003907083009835333,
|
| 914 |
+
"clip_ratio/region_mean": 0.020289794192649424,
|
| 915 |
+
"entropy": 0.05679044884163886,
|
| 916 |
+
"epoch": 0.00038,
|
| 917 |
+
"grad_norm": 0.618403971195221,
|
| 918 |
+
"kl": 0.118131990195252,
|
| 919 |
+
"learning_rate": 9.675795466159755e-05,
|
| 920 |
+
"loss": -0.0362,
|
| 921 |
+
"step": 38,
|
| 922 |
+
"step_time": 28.32057495099798
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"clip_ratio/high_max": 0.005428613570984453,
|
| 926 |
+
"clip_ratio/high_mean": 0.0027143067854922265,
|
| 927 |
+
"clip_ratio/low_mean": 0.0010573608451522887,
|
| 928 |
+
"clip_ratio/low_min": 0.0,
|
| 929 |
+
"clip_ratio/region_mean": 0.003771667630644515,
|
| 930 |
+
"completions/clipped_ratio": 0.0,
|
| 931 |
+
"completions/max_length": 9203.0,
|
| 932 |
+
"completions/max_terminated_length": 9203.0,
|
| 933 |
+
"completions/mean_length": 7459.09375,
|
| 934 |
+
"completions/mean_terminated_length": 7459.09375,
|
| 935 |
+
"completions/min_length": 647.0,
|
| 936 |
+
"completions/min_terminated_length": 647.0,
|
| 937 |
+
"entropy": 0.05742924939841032,
|
| 938 |
+
"epoch": 0.00039,
|
| 939 |
+
"frac_reward_zero_std": 0.0,
|
| 940 |
+
"grad_norm": 1.1807667016983032,
|
| 941 |
+
"kl": 0.11824507999699563,
|
| 942 |
+
"learning_rate": 9.283813728906054e-05,
|
| 943 |
+
"loss": -0.0685,
|
| 944 |
+
"num_tokens": 5507267.0,
|
| 945 |
+
"reward": -0.1265014261007309,
|
| 946 |
+
"reward_std": 0.6104403734207153,
|
| 947 |
+
"rewards/rollout_reward_func/mean": -0.1265014261007309,
|
| 948 |
+
"rewards/rollout_reward_func/std": 0.6330578327178955,
|
| 949 |
+
"sampling/importance_sampling_ratio/max": 1.6747703552246094,
|
| 950 |
+
"sampling/importance_sampling_ratio/mean": 0.9992620944976807,
|
| 951 |
+
"sampling/importance_sampling_ratio/min": 0.39614981412887573,
|
| 952 |
+
"sampling/sampling_logp_difference/max": 0.9259628653526306,
|
| 953 |
+
"sampling/sampling_logp_difference/mean": 0.006985975429415703,
|
| 954 |
+
"step": 39,
|
| 955 |
+
"step_time": 91.56473480099157
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"clip_ratio/high_max": 0.017474214837420732,
|
| 959 |
+
"clip_ratio/high_mean": 0.008737107418710366,
|
| 960 |
+
"clip_ratio/low_mean": 0.01038203525240533,
|
| 961 |
+
"clip_ratio/low_min": 0.0021973324473947287,
|
| 962 |
+
"clip_ratio/region_mean": 0.01911914284573868,
|
| 963 |
+
"entropy": 0.05913685623090714,
|
| 964 |
+
"epoch": 0.0004,
|
| 965 |
+
"grad_norm": 11257.0869140625,
|
| 966 |
+
"kl": 15902.953878552886,
|
| 967 |
+
"learning_rate": 8.759239773845718e-05,
|
| 968 |
+
"loss": 59.5637,
|
| 969 |
+
"step": 40,
|
| 970 |
+
"step_time": 28.143666776995815
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"clip_ratio/high_max": 0.0014367816038429737,
|
| 974 |
+
"clip_ratio/high_mean": 0.00109489681199193,
|
| 975 |
+
"clip_ratio/low_mean": 0.002375774463871494,
|
| 976 |
+
"clip_ratio/low_min": 0.0,
|
| 977 |
+
"clip_ratio/region_mean": 0.003470671275863424,
|
| 978 |
+
"completions/clipped_ratio": 0.0,
|
| 979 |
+
"completions/max_length": 9299.0,
|
| 980 |
+
"completions/max_terminated_length": 9299.0,
|
| 981 |
+
"completions/mean_length": 7399.59375,
|
| 982 |
+
"completions/mean_terminated_length": 7399.59375,
|
| 983 |
+
"completions/min_length": 311.0,
|
| 984 |
+
"completions/min_terminated_length": 311.0,
|
| 985 |
+
"entropy": 0.0707793568726629,
|
| 986 |
+
"epoch": 0.00041,
|
| 987 |
+
"frac_reward_zero_std": 0.0,
|
| 988 |
+
"grad_norm": 0.779978334903717,
|
| 989 |
+
"kl": 0.1064646802842617,
|
| 990 |
+
"learning_rate": 8.125000000000001e-05,
|
| 991 |
+
"loss": -0.006,
|
| 992 |
+
"num_tokens": 5770826.0,
|
| 993 |
+
"reward": -0.10253402590751648,
|
| 994 |
+
"reward_std": 0.587022602558136,
|
| 995 |
+
"rewards/rollout_reward_func/mean": -0.10253402590751648,
|
| 996 |
+
"rewards/rollout_reward_func/std": 0.58503657579422,
|
| 997 |
+
"sampling/importance_sampling_ratio/max": 1.7891288995742798,
|
| 998 |
+
"sampling/importance_sampling_ratio/mean": 1.000353455543518,
|
| 999 |
+
"sampling/importance_sampling_ratio/min": 0.33879733085632324,
|
| 1000 |
+
"sampling/sampling_logp_difference/max": 1.082353115081787,
|
| 1001 |
+
"sampling/sampling_logp_difference/mean": 0.008459154516458511,
|
| 1002 |
+
"step": 41,
|
| 1003 |
+
"step_time": 89.9564655849972
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"clip_ratio/high_max": 0.013633344613481313,
|
| 1007 |
+
"clip_ratio/high_mean": 0.0071758677077014,
|
| 1008 |
+
"clip_ratio/low_mean": 0.013401742442511022,
|
| 1009 |
+
"clip_ratio/low_min": 0.0028420357266440988,
|
| 1010 |
+
"clip_ratio/region_mean": 0.020577610324835405,
|
| 1011 |
+
"entropy": 0.07488202536478639,
|
| 1012 |
+
"epoch": 0.00042,
|
| 1013 |
+
"grad_norm": 0.6732333302497864,
|
| 1014 |
+
"kl": 0.11995455622673035,
|
| 1015 |
+
"learning_rate": 7.408813728906053e-05,
|
| 1016 |
+
"loss": -0.0139,
|
| 1017 |
+
"step": 42,
|
| 1018 |
+
"step_time": 27.865521725998406
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"clip_ratio/high_max": 0.001420638000126928,
|
| 1022 |
+
"clip_ratio/high_mean": 0.000710319000063464,
|
| 1023 |
+
"clip_ratio/low_mean": 0.002360046637477353,
|
| 1024 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 1025 |
+
"clip_ratio/region_mean": 0.0030703656375408173,
|
| 1026 |
+
"completions/clipped_ratio": 0.0,
|
| 1027 |
+
"completions/max_length": 8920.0,
|
| 1028 |
+
"completions/max_terminated_length": 8920.0,
|
| 1029 |
+
"completions/mean_length": 7293.5,
|
| 1030 |
+
"completions/mean_terminated_length": 7293.5,
|
| 1031 |
+
"completions/min_length": 876.0,
|
| 1032 |
+
"completions/min_terminated_length": 876.0,
|
| 1033 |
+
"entropy": 0.06767579750157893,
|
| 1034 |
+
"epoch": 0.00043,
|
| 1035 |
+
"frac_reward_zero_std": 0.0,
|
| 1036 |
+
"grad_norm": 0.9846507906913757,
|
| 1037 |
+
"kl": 0.11756309028714895,
|
| 1038 |
+
"learning_rate": 6.6419817372537e-05,
|
| 1039 |
+
"loss": -0.105,
|
| 1040 |
+
"num_tokens": 6030904.0,
|
| 1041 |
+
"reward": -0.17516297101974487,
|
| 1042 |
+
"reward_std": 0.6336148977279663,
|
| 1043 |
+
"rewards/rollout_reward_func/mean": -0.17516297101974487,
|
| 1044 |
+
"rewards/rollout_reward_func/std": 0.6060534715652466,
|
| 1045 |
+
"sampling/importance_sampling_ratio/max": 1.5995110273361206,
|
| 1046 |
+
"sampling/importance_sampling_ratio/mean": 1.0016493797302246,
|
| 1047 |
+
"sampling/importance_sampling_ratio/min": 0.6211615800857544,
|
| 1048 |
+
"sampling/sampling_logp_difference/max": 0.4761640429496765,
|
| 1049 |
+
"sampling/sampling_logp_difference/mean": 0.00795302540063858,
|
| 1050 |
+
"step": 43,
|
| 1051 |
+
"step_time": 88.68364224100515
|
| 1052 |
+
},
|
| 1053 |
+
{
|
| 1054 |
+
"clip_ratio/high_max": 0.011437574110459536,
|
| 1055 |
+
"clip_ratio/high_mean": 0.006488003156846389,
|
| 1056 |
+
"clip_ratio/low_mean": 0.011332564434269443,
|
| 1057 |
+
"clip_ratio/low_min": 0.002825683041010052,
|
| 1058 |
+
"clip_ratio/region_mean": 0.01782056744559668,
|
| 1059 |
+
"entropy": 0.06705769780091941,
|
| 1060 |
+
"epoch": 0.00044,
|
| 1061 |
+
"grad_norm": 0.5778977274894714,
|
| 1062 |
+
"kl": 0.13579032279085368,
|
| 1063 |
+
"learning_rate": 5.858018262746301e-05,
|
| 1064 |
+
"loss": -0.1148,
|
| 1065 |
+
"step": 44,
|
| 1066 |
+
"step_time": 26.98718312199344
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0022492663701996207,
|
| 1070 |
+
"clip_ratio/high_mean": 0.0011246331850998104,
|
| 1071 |
+
"clip_ratio/low_mean": 0.0028377448907122016,
|
| 1072 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 1073 |
+
"clip_ratio/region_mean": 0.003962378075812012,
|
| 1074 |
+
"completions/clipped_ratio": 0.0,
|
| 1075 |
+
"completions/max_length": 9242.0,
|
| 1076 |
+
"completions/max_terminated_length": 9242.0,
|
| 1077 |
+
"completions/mean_length": 8146.5,
|
| 1078 |
+
"completions/mean_terminated_length": 8146.5,
|
| 1079 |
+
"completions/min_length": 1426.0,
|
| 1080 |
+
"completions/min_terminated_length": 1426.0,
|
| 1081 |
+
"entropy": 0.08103846106678247,
|
| 1082 |
+
"epoch": 0.00045,
|
| 1083 |
+
"frac_reward_zero_std": 0.0,
|
| 1084 |
+
"grad_norm": 1.409741759300232,
|
| 1085 |
+
"kl": 0.14359550992958248,
|
| 1086 |
+
"learning_rate": 5.0911862710939485e-05,
|
| 1087 |
+
"loss": -0.034,
|
| 1088 |
+
"num_tokens": 6318667.0,
|
| 1089 |
+
"reward": -0.12613427639007568,
|
| 1090 |
+
"reward_std": 0.5343547463417053,
|
| 1091 |
+
"rewards/rollout_reward_func/mean": -0.12613427639007568,
|
| 1092 |
+
"rewards/rollout_reward_func/std": 0.5416647791862488,
|
| 1093 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 1094 |
+
"sampling/importance_sampling_ratio/mean": 1.000476598739624,
|
| 1095 |
+
"sampling/importance_sampling_ratio/min": 0.09892720729112625,
|
| 1096 |
+
"sampling/sampling_logp_difference/max": 2.313370943069458,
|
| 1097 |
+
"sampling/sampling_logp_difference/mean": 0.012712076306343079,
|
| 1098 |
+
"step": 45,
|
| 1099 |
+
"step_time": 93.79370664700036
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"clip_ratio/high_max": 0.011134565633255988,
|
| 1103 |
+
"clip_ratio/high_mean": 0.006269618694204837,
|
| 1104 |
+
"clip_ratio/low_mean": 0.009181194531265646,
|
| 1105 |
+
"clip_ratio/low_min": 0.0028904599603265524,
|
| 1106 |
+
"clip_ratio/region_mean": 0.015450813429197297,
|
| 1107 |
+
"entropy": 0.08389568043639883,
|
| 1108 |
+
"epoch": 0.00046,
|
| 1109 |
+
"grad_norm": 1.2059129476547241,
|
| 1110 |
+
"kl": 0.24020475335419178,
|
| 1111 |
+
"learning_rate": 4.375000000000001e-05,
|
| 1112 |
+
"loss": -0.0432,
|
| 1113 |
+
"step": 46,
|
| 1114 |
+
"step_time": 28.168583785994997
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"clip_ratio/high_max": 0.005004245089367032,
|
| 1118 |
+
"clip_ratio/high_mean": 0.002502122544683516,
|
| 1119 |
+
"clip_ratio/low_mean": 0.002046188630629331,
|
| 1120 |
+
"clip_ratio/low_min": 0.0,
|
| 1121 |
+
"clip_ratio/region_mean": 0.0045483111462090164,
|
| 1122 |
+
"completions/clipped_ratio": 0.0,
|
| 1123 |
+
"completions/max_length": 9056.0,
|
| 1124 |
+
"completions/max_terminated_length": 9056.0,
|
| 1125 |
+
"completions/mean_length": 7947.84375,
|
| 1126 |
+
"completions/mean_terminated_length": 7947.84375,
|
| 1127 |
+
"completions/min_length": 4376.0,
|
| 1128 |
+
"completions/min_terminated_length": 4376.0,
|
| 1129 |
+
"entropy": 0.07940921117551625,
|
| 1130 |
+
"epoch": 0.00047,
|
| 1131 |
+
"frac_reward_zero_std": 0.0,
|
| 1132 |
+
"grad_norm": 1.2504568099975586,
|
| 1133 |
+
"kl": 0.16516069741919637,
|
| 1134 |
+
"learning_rate": 3.740760226154283e-05,
|
| 1135 |
+
"loss": -0.0286,
|
| 1136 |
+
"num_tokens": 6600118.0,
|
| 1137 |
+
"reward": -0.12103764712810516,
|
| 1138 |
+
"reward_std": 0.5211879014968872,
|
| 1139 |
+
"rewards/rollout_reward_func/mean": -0.12103764712810516,
|
| 1140 |
+
"rewards/rollout_reward_func/std": 0.5456745028495789,
|
| 1141 |
+
"sampling/importance_sampling_ratio/max": 1.9942717552185059,
|
| 1142 |
+
"sampling/importance_sampling_ratio/mean": 0.9991114139556885,
|
| 1143 |
+
"sampling/importance_sampling_ratio/min": 0.11994559317827225,
|
| 1144 |
+
"sampling/sampling_logp_difference/max": 2.1207170486450195,
|
| 1145 |
+
"sampling/sampling_logp_difference/mean": 0.010312505066394806,
|
| 1146 |
+
"step": 47,
|
| 1147 |
+
"step_time": 94.76915054599158
|
| 1148 |
+
},
|
| 1149 |
+
{
|
| 1150 |
+
"clip_ratio/high_max": 0.00876080454327166,
|
| 1151 |
+
"clip_ratio/high_mean": 0.00438040227163583,
|
| 1152 |
+
"clip_ratio/low_mean": 0.002355890115723014,
|
| 1153 |
+
"clip_ratio/low_min": 0.0,
|
| 1154 |
+
"clip_ratio/region_mean": 0.006736292387358844,
|
| 1155 |
+
"entropy": 0.08134529506787658,
|
| 1156 |
+
"epoch": 0.00048,
|
| 1157 |
+
"grad_norm": 0.805917501449585,
|
| 1158 |
+
"kl": 0.16713016014546156,
|
| 1159 |
+
"learning_rate": 3.2161862710939476e-05,
|
| 1160 |
+
"loss": -0.0331,
|
| 1161 |
+
"step": 48,
|
| 1162 |
+
"step_time": 27.11353817199779
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.004328028007876128,
|
| 1166 |
+
"clip_ratio/high_mean": 0.002164014003938064,
|
| 1167 |
+
"clip_ratio/low_mean": 0.0010534594766795635,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.003217473509721458,
|
| 1170 |
+
"completions/clipped_ratio": 0.0,
|
| 1171 |
+
"completions/max_length": 9558.0,
|
| 1172 |
+
"completions/max_terminated_length": 9558.0,
|
| 1173 |
+
"completions/mean_length": 8071.4375,
|
| 1174 |
+
"completions/mean_terminated_length": 8071.4375,
|
| 1175 |
+
"completions/min_length": 3757.0,
|
| 1176 |
+
"completions/min_terminated_length": 3757.0,
|
| 1177 |
+
"entropy": 0.09437589161098003,
|
| 1178 |
+
"epoch": 0.00049,
|
| 1179 |
+
"frac_reward_zero_std": 0.0,
|
| 1180 |
+
"grad_norm": 1.223923921585083,
|
| 1181 |
+
"kl": 0.17360988864675164,
|
| 1182 |
+
"learning_rate": 2.8242045338402468e-05,
|
| 1183 |
+
"loss": 0.0868,
|
| 1184 |
+
"num_tokens": 6885078.0,
|
| 1185 |
+
"reward": -0.17595598101615906,
|
| 1186 |
+
"reward_std": 0.574884295463562,
|
| 1187 |
+
"rewards/rollout_reward_func/mean": -0.17595598101615906,
|
| 1188 |
+
"rewards/rollout_reward_func/std": 0.617475152015686,
|
| 1189 |
+
"sampling/importance_sampling_ratio/max": 2.3295459747314453,
|
| 1190 |
+
"sampling/importance_sampling_ratio/mean": 0.9994887709617615,
|
| 1191 |
+
"sampling/importance_sampling_ratio/min": 0.21804022789001465,
|
| 1192 |
+
"sampling/sampling_logp_difference/max": 1.5230756998062134,
|
| 1193 |
+
"sampling/sampling_logp_difference/mean": 0.012081097811460495,
|
| 1194 |
+
"step": 49,
|
| 1195 |
+
"step_time": 92.44432610799413
|
| 1196 |
+
},
|
| 1197 |
+
{
|
| 1198 |
+
"clip_ratio/high_max": 0.009452320169657469,
|
| 1199 |
+
"clip_ratio/high_mean": 0.005073382286354899,
|
| 1200 |
+
"clip_ratio/low_mean": 0.00776787509676069,
|
| 1201 |
+
"clip_ratio/low_min": 0.002785580581985414,
|
| 1202 |
+
"clip_ratio/region_mean": 0.012841257266700268,
|
| 1203 |
+
"entropy": 0.09734066273085773,
|
| 1204 |
+
"epoch": 0.0005,
|
| 1205 |
+
"grad_norm": 1.335457682609558,
|
| 1206 |
+
"kl": 0.17287601297721267,
|
| 1207 |
+
"learning_rate": 2.5819464972482288e-05,
|
| 1208 |
+
"loss": 0.0771,
|
| 1209 |
+
"step": 50,
|
| 1210 |
+
"step_time": 28.072686168001383
|
| 1211 |
+
}
|
| 1212 |
+
],
|
| 1213 |
+
"logging_steps": 1.0,
|
| 1214 |
+
"max_steps": 50,
|
| 1215 |
+
"num_input_tokens_seen": 6885078,
|
| 1216 |
+
"num_train_epochs": 1,
|
| 1217 |
+
"save_steps": 500,
|
| 1218 |
+
"stateful_callbacks": {
|
| 1219 |
+
"TrainerControl": {
|
| 1220 |
+
"args": {
|
| 1221 |
+
"should_epoch_stop": false,
|
| 1222 |
+
"should_evaluate": false,
|
| 1223 |
+
"should_log": false,
|
| 1224 |
+
"should_save": true,
|
| 1225 |
+
"should_training_stop": true
|
| 1226 |
+
},
|
| 1227 |
+
"attributes": {}
|
| 1228 |
+
}
|
| 1229 |
+
},
|
| 1230 |
+
"total_flos": 0.0,
|
| 1231 |
+
"train_batch_size": 1,
|
| 1232 |
+
"trial_name": null,
|
| 1233 |
+
"trial_params": null
|
| 1234 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e935e55bc95518f74954dabb1aeb2c31c84771846baba87cd5ac90c34aa6de35
|
| 3 |
+
size 8145
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|