Instructions to use bimabk/test_gin_rummy_fix1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/test_gin_rummy_fix1 with PEFT:
Base model is not found.
- Transformers
How to use bimabk/test_gin_rummy_fix1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/test_gin_rummy_fix1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bimabk/test_gin_rummy_fix1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use bimabk/test_gin_rummy_fix1 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_fix1" # 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_fix1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/test_gin_rummy_fix1
- SGLang
How to use bimabk/test_gin_rummy_fix1 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_fix1" \ --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_fix1", "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_fix1" \ --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_fix1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/test_gin_rummy_fix1 with Docker Model Runner:
docker model run hf.co/bimabk/test_gin_rummy_fix1
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 |
+
"down_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"gate_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"k_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f6259fcfe5c263daa2883554700f5c4a54a49f7950ff88798a47f1c6e8f2546
|
| 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": 8966.0,
|
| 20 |
+
"completions/max_terminated_length": 8966.0,
|
| 21 |
+
"completions/mean_length": 7392.1875,
|
| 22 |
+
"completions/mean_terminated_length": 7392.1875,
|
| 23 |
+
"completions/min_length": 892.0,
|
| 24 |
+
"completions/min_terminated_length": 892.0,
|
| 25 |
+
"entropy": 0.11410779180005193,
|
| 26 |
+
"epoch": 1e-05,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 1.795484185218811,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 0.0,
|
| 31 |
+
"loss": -0.2193,
|
| 32 |
+
"num_tokens": 263588.0,
|
| 33 |
+
"reward": -0.3529798984527588,
|
| 34 |
+
"reward_std": 0.3798896074295044,
|
| 35 |
+
"rewards/rollout_reward_func/mean": -0.3529798984527588,
|
| 36 |
+
"rewards/rollout_reward_func/std": 0.4275760054588318,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.9381288290023804,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 0.9994939565658569,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.48449021577835083,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.7246580123901367,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.013468129560351372,
|
| 42 |
+
"step": 1,
|
| 43 |
+
"step_time": 93.399304126
|
| 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.11410779180005193,
|
| 52 |
+
"epoch": 2e-05,
|
| 53 |
+
"grad_norm": 1.7967665195465088,
|
| 54 |
+
"kl": 0.0,
|
| 55 |
+
"learning_rate": 2.8571428571428573e-06,
|
| 56 |
+
"loss": -0.2193,
|
| 57 |
+
"step": 2,
|
| 58 |
+
"step_time": 27.58208410200001
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"clip_ratio/high_max": 0.002206696954090148,
|
| 62 |
+
"clip_ratio/high_mean": 0.001103348477045074,
|
| 63 |
+
"clip_ratio/low_mean": 0.0021773561311420053,
|
| 64 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 65 |
+
"clip_ratio/region_mean": 0.0032807046081870794,
|
| 66 |
+
"completions/clipped_ratio": 0.0,
|
| 67 |
+
"completions/max_length": 8789.0,
|
| 68 |
+
"completions/max_terminated_length": 8789.0,
|
| 69 |
+
"completions/mean_length": 7273.3125,
|
| 70 |
+
"completions/mean_terminated_length": 7273.3125,
|
| 71 |
+
"completions/min_length": 1689.0,
|
| 72 |
+
"completions/min_terminated_length": 1689.0,
|
| 73 |
+
"entropy": 0.08583545382134616,
|
| 74 |
+
"epoch": 3e-05,
|
| 75 |
+
"frac_reward_zero_std": 0.0,
|
| 76 |
+
"grad_norm": 1.1726843118667603,
|
| 77 |
+
"kl": 0.0017027981803039438,
|
| 78 |
+
"learning_rate": 5.7142857142857145e-06,
|
| 79 |
+
"loss": -0.0032,
|
| 80 |
+
"num_tokens": 523711.0,
|
| 81 |
+
"reward": -0.3553134799003601,
|
| 82 |
+
"reward_std": 0.48743048310279846,
|
| 83 |
+
"rewards/rollout_reward_func/mean": -0.3553134799003601,
|
| 84 |
+
"rewards/rollout_reward_func/std": 0.5032535195350647,
|
| 85 |
+
"sampling/importance_sampling_ratio/max": 2.636791944503784,
|
| 86 |
+
"sampling/importance_sampling_ratio/mean": 1.0005749464035034,
|
| 87 |
+
"sampling/importance_sampling_ratio/min": 0.6534329652786255,
|
| 88 |
+
"sampling/sampling_logp_difference/max": 0.9695630073547363,
|
| 89 |
+
"sampling/sampling_logp_difference/mean": 0.008272429928183556,
|
| 90 |
+
"step": 3,
|
| 91 |
+
"step_time": 91.38279614700019
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"clip_ratio/high_max": 0.00520685565425083,
|
| 95 |
+
"clip_ratio/high_mean": 0.002603427827125415,
|
| 96 |
+
"clip_ratio/low_mean": 0.0017682212928775698,
|
| 97 |
+
"clip_ratio/low_min": 0.0,
|
| 98 |
+
"clip_ratio/region_mean": 0.004371649120002985,
|
| 99 |
+
"entropy": 0.08481810381636024,
|
| 100 |
+
"epoch": 4e-05,
|
| 101 |
+
"grad_norm": 2.2690632343292236,
|
| 102 |
+
"kl": 0.0009417296496394556,
|
| 103 |
+
"learning_rate": 8.571428571428573e-06,
|
| 104 |
+
"loss": -0.0051,
|
| 105 |
+
"step": 4,
|
| 106 |
+
"step_time": 26.98271870500014
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"clip_ratio/high_max": 0.004254478495568037,
|
| 110 |
+
"clip_ratio/high_mean": 0.0021272392477840185,
|
| 111 |
+
"clip_ratio/low_mean": 0.002160204341635108,
|
| 112 |
+
"clip_ratio/low_min": 0.0,
|
| 113 |
+
"clip_ratio/region_mean": 0.0042874435894191265,
|
| 114 |
+
"completions/clipped_ratio": 0.0,
|
| 115 |
+
"completions/max_length": 8986.0,
|
| 116 |
+
"completions/max_terminated_length": 8986.0,
|
| 117 |
+
"completions/mean_length": 7767.59375,
|
| 118 |
+
"completions/mean_terminated_length": 7767.59375,
|
| 119 |
+
"completions/min_length": 300.0,
|
| 120 |
+
"completions/min_terminated_length": 300.0,
|
| 121 |
+
"entropy": 0.10082893958315253,
|
| 122 |
+
"epoch": 5e-05,
|
| 123 |
+
"frac_reward_zero_std": 0.0,
|
| 124 |
+
"grad_norm": 1.3848886489868164,
|
| 125 |
+
"kl": 0.0014980694850237342,
|
| 126 |
+
"learning_rate": 1.1428571428571429e-05,
|
| 127 |
+
"loss": -0.1089,
|
| 128 |
+
"num_tokens": 799123.0,
|
| 129 |
+
"reward": -0.4331575036048889,
|
| 130 |
+
"reward_std": 0.3397783935070038,
|
| 131 |
+
"rewards/rollout_reward_func/mean": -0.4331575036048889,
|
| 132 |
+
"rewards/rollout_reward_func/std": 0.37834790349006653,
|
| 133 |
+
"sampling/importance_sampling_ratio/max": 1.6952898502349854,
|
| 134 |
+
"sampling/importance_sampling_ratio/mean": 0.9987826347351074,
|
| 135 |
+
"sampling/importance_sampling_ratio/min": 0.2250514030456543,
|
| 136 |
+
"sampling/sampling_logp_difference/max": 1.4914264678955078,
|
| 137 |
+
"sampling/sampling_logp_difference/mean": 0.010691944509744644,
|
| 138 |
+
"step": 5,
|
| 139 |
+
"step_time": 94.93945038100003
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"clip_ratio/high_max": 0.006353594711981714,
|
| 143 |
+
"clip_ratio/high_mean": 0.003176797355990857,
|
| 144 |
+
"clip_ratio/low_mean": 0.0018021696887444705,
|
| 145 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 146 |
+
"clip_ratio/region_mean": 0.004978967044735327,
|
| 147 |
+
"entropy": 0.10040339734405279,
|
| 148 |
+
"epoch": 6e-05,
|
| 149 |
+
"grad_norm": 1.3835108280181885,
|
| 150 |
+
"kl": 0.00129023771660286,
|
| 151 |
+
"learning_rate": 1.4285714285714285e-05,
|
| 152 |
+
"loss": -0.1114,
|
| 153 |
+
"step": 6,
|
| 154 |
+
"step_time": 27.51428913800021
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"clip_ratio/high_max": 0.007119529938790947,
|
| 158 |
+
"clip_ratio/high_mean": 0.0035597649693954736,
|
| 159 |
+
"clip_ratio/low_mean": 0.0018344622512813658,
|
| 160 |
+
"clip_ratio/low_min": 0.0,
|
| 161 |
+
"clip_ratio/region_mean": 0.0053942272788845,
|
| 162 |
+
"completions/clipped_ratio": 0.0,
|
| 163 |
+
"completions/max_length": 9295.0,
|
| 164 |
+
"completions/max_terminated_length": 9295.0,
|
| 165 |
+
"completions/mean_length": 8119.90625,
|
| 166 |
+
"completions/mean_terminated_length": 8119.90625,
|
| 167 |
+
"completions/min_length": 425.0,
|
| 168 |
+
"completions/min_terminated_length": 425.0,
|
| 169 |
+
"entropy": 0.08391103229951113,
|
| 170 |
+
"epoch": 7e-05,
|
| 171 |
+
"frac_reward_zero_std": 0.0,
|
| 172 |
+
"grad_norm": 1.6203776597976685,
|
| 173 |
+
"kl": 0.0014097213361310423,
|
| 174 |
+
"learning_rate": 1.7142857142857145e-05,
|
| 175 |
+
"loss": -0.1002,
|
| 176 |
+
"num_tokens": 1086692.0,
|
| 177 |
+
"reward": -0.5209137201309204,
|
| 178 |
+
"reward_std": 0.2494075447320938,
|
| 179 |
+
"rewards/rollout_reward_func/mean": -0.5209137201309204,
|
| 180 |
+
"rewards/rollout_reward_func/std": 0.2681976854801178,
|
| 181 |
+
"sampling/importance_sampling_ratio/max": 1.7586421966552734,
|
| 182 |
+
"sampling/importance_sampling_ratio/mean": 1.0001193284988403,
|
| 183 |
+
"sampling/importance_sampling_ratio/min": 0.5591319799423218,
|
| 184 |
+
"sampling/sampling_logp_difference/max": 0.5813696980476379,
|
| 185 |
+
"sampling/sampling_logp_difference/mean": 0.010238477028906345,
|
| 186 |
+
"step": 7,
|
| 187 |
+
"step_time": 99.45176190400002
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"clip_ratio/high_max": 0.0050131616299040616,
|
| 191 |
+
"clip_ratio/high_mean": 0.0025065808149520308,
|
| 192 |
+
"clip_ratio/low_mean": 0.0048430965398438275,
|
| 193 |
+
"clip_ratio/low_min": 0.0014367816038429737,
|
| 194 |
+
"clip_ratio/region_mean": 0.00734967747121118,
|
| 195 |
+
"entropy": 0.08137266687117517,
|
| 196 |
+
"epoch": 8e-05,
|
| 197 |
+
"grad_norm": 1.417209267616272,
|
| 198 |
+
"kl": 0.0033996296788245672,
|
| 199 |
+
"learning_rate": 2e-05,
|
| 200 |
+
"loss": -0.1028,
|
| 201 |
+
"step": 8,
|
| 202 |
+
"step_time": 29.014337608000233
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"clip_ratio/high_max": 0.0042058578110300004,
|
| 206 |
+
"clip_ratio/high_mean": 0.0024501511361449957,
|
| 207 |
+
"clip_ratio/low_mean": 0.0024779988452792168,
|
| 208 |
+
"clip_ratio/low_min": 0.0,
|
| 209 |
+
"clip_ratio/region_mean": 0.0049281499814242125,
|
| 210 |
+
"completions/clipped_ratio": 0.0,
|
| 211 |
+
"completions/max_length": 9264.0,
|
| 212 |
+
"completions/max_terminated_length": 9264.0,
|
| 213 |
+
"completions/mean_length": 7546.03125,
|
| 214 |
+
"completions/mean_terminated_length": 7546.03125,
|
| 215 |
+
"completions/min_length": 860.0,
|
| 216 |
+
"completions/min_terminated_length": 860.0,
|
| 217 |
+
"entropy": 0.08567450987175107,
|
| 218 |
+
"epoch": 9e-05,
|
| 219 |
+
"frac_reward_zero_std": 0.0,
|
| 220 |
+
"grad_norm": 1.5940141677856445,
|
| 221 |
+
"kl": 0.010301298352715094,
|
| 222 |
+
"learning_rate": 2.2857142857142858e-05,
|
| 223 |
+
"loss": -0.3628,
|
| 224 |
+
"num_tokens": 1355432.0,
|
| 225 |
+
"reward": -0.40637093782424927,
|
| 226 |
+
"reward_std": 0.3687950074672699,
|
| 227 |
+
"rewards/rollout_reward_func/mean": -0.40637093782424927,
|
| 228 |
+
"rewards/rollout_reward_func/std": 0.3848126232624054,
|
| 229 |
+
"sampling/importance_sampling_ratio/max": 1.819852352142334,
|
| 230 |
+
"sampling/importance_sampling_ratio/mean": 1.0000147819519043,
|
| 231 |
+
"sampling/importance_sampling_ratio/min": 0.4127380847930908,
|
| 232 |
+
"sampling/sampling_logp_difference/max": 0.8849420547485352,
|
| 233 |
+
"sampling/sampling_logp_difference/mean": 0.01255122572183609,
|
| 234 |
+
"step": 9,
|
| 235 |
+
"step_time": 92.58362530700037
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"clip_ratio/high_max": 0.010624476184602827,
|
| 239 |
+
"clip_ratio/high_mean": 0.006026733753969893,
|
| 240 |
+
"clip_ratio/low_mean": 0.01009578033699654,
|
| 241 |
+
"clip_ratio/low_min": 0.0042697106837295,
|
| 242 |
+
"clip_ratio/region_mean": 0.01612251391634345,
|
| 243 |
+
"entropy": 0.08229666040278971,
|
| 244 |
+
"epoch": 0.0001,
|
| 245 |
+
"grad_norm": 1.487949252128601,
|
| 246 |
+
"kl": 0.037161100313824136,
|
| 247 |
+
"learning_rate": 2.5714285714285714e-05,
|
| 248 |
+
"loss": -0.3665,
|
| 249 |
+
"step": 10,
|
| 250 |
+
"step_time": 28.38116288400022
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"clip_ratio/high_max": 0.0049977844464592636,
|
| 254 |
+
"clip_ratio/high_mean": 0.0024988922232296318,
|
| 255 |
+
"clip_ratio/low_mean": 0.0011143402953166515,
|
| 256 |
+
"clip_ratio/low_min": 0.0,
|
| 257 |
+
"clip_ratio/region_mean": 0.0036132325185462832,
|
| 258 |
+
"completions/clipped_ratio": 0.0,
|
| 259 |
+
"completions/max_length": 9244.0,
|
| 260 |
+
"completions/max_terminated_length": 9244.0,
|
| 261 |
+
"completions/mean_length": 7200.8125,
|
| 262 |
+
"completions/mean_terminated_length": 7200.8125,
|
| 263 |
+
"completions/min_length": 297.0,
|
| 264 |
+
"completions/min_terminated_length": 297.0,
|
| 265 |
+
"entropy": 0.06809334014542401,
|
| 266 |
+
"epoch": 0.00011,
|
| 267 |
+
"frac_reward_zero_std": 0.0,
|
| 268 |
+
"grad_norm": 1.8031041622161865,
|
| 269 |
+
"kl": 0.015580801184114534,
|
| 270 |
+
"learning_rate": 2.857142857142857e-05,
|
| 271 |
+
"loss": -0.3986,
|
| 272 |
+
"num_tokens": 1613108.0,
|
| 273 |
+
"reward": -0.4156220555305481,
|
| 274 |
+
"reward_std": 0.5291995406150818,
|
| 275 |
+
"rewards/rollout_reward_func/mean": -0.4156220555305481,
|
| 276 |
+
"rewards/rollout_reward_func/std": 0.5197964906692505,
|
| 277 |
+
"sampling/importance_sampling_ratio/max": 2.4048261642456055,
|
| 278 |
+
"sampling/importance_sampling_ratio/mean": 0.9991490244865417,
|
| 279 |
+
"sampling/importance_sampling_ratio/min": 0.2525537610054016,
|
| 280 |
+
"sampling/sampling_logp_difference/max": 1.3761311769485474,
|
| 281 |
+
"sampling/sampling_logp_difference/mean": 0.009278691373765469,
|
| 282 |
+
"step": 11,
|
| 283 |
+
"step_time": 91.42414895300033
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"clip_ratio/high_max": 0.00853408733382821,
|
| 287 |
+
"clip_ratio/high_mean": 0.004985434468835592,
|
| 288 |
+
"clip_ratio/low_mean": 0.006528367113787681,
|
| 289 |
+
"clip_ratio/low_min": 0.0,
|
| 290 |
+
"clip_ratio/region_mean": 0.011513801524415612,
|
| 291 |
+
"entropy": 0.06515359785407782,
|
| 292 |
+
"epoch": 0.00012,
|
| 293 |
+
"grad_norm": 0.9123954176902771,
|
| 294 |
+
"kl": 0.05925005234166747,
|
| 295 |
+
"learning_rate": 3.142857142857143e-05,
|
| 296 |
+
"loss": -0.4041,
|
| 297 |
+
"step": 12,
|
| 298 |
+
"step_time": 27.261401052000338
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"clip_ratio/high_max": 0.004881663771811873,
|
| 302 |
+
"clip_ratio/high_mean": 0.0027880541456397623,
|
| 303 |
+
"clip_ratio/low_mean": 0.0037891828105784953,
|
| 304 |
+
"clip_ratio/low_min": 0.0,
|
| 305 |
+
"clip_ratio/region_mean": 0.0065772370144259185,
|
| 306 |
+
"completions/clipped_ratio": 0.0,
|
| 307 |
+
"completions/max_length": 9011.0,
|
| 308 |
+
"completions/max_terminated_length": 9011.0,
|
| 309 |
+
"completions/mean_length": 7481.90625,
|
| 310 |
+
"completions/mean_terminated_length": 7481.90625,
|
| 311 |
+
"completions/min_length": 2417.0,
|
| 312 |
+
"completions/min_terminated_length": 2417.0,
|
| 313 |
+
"entropy": 0.06863200129009783,
|
| 314 |
+
"epoch": 0.00013,
|
| 315 |
+
"frac_reward_zero_std": 0.0,
|
| 316 |
+
"grad_norm": 2.003671407699585,
|
| 317 |
+
"kl": 0.039789786795154214,
|
| 318 |
+
"learning_rate": 3.428571428571429e-05,
|
| 319 |
+
"loss": -0.203,
|
| 320 |
+
"num_tokens": 1880242.0,
|
| 321 |
+
"reward": -0.5097812414169312,
|
| 322 |
+
"reward_std": 0.4184800386428833,
|
| 323 |
+
"rewards/rollout_reward_func/mean": -0.5097812414169312,
|
| 324 |
+
"rewards/rollout_reward_func/std": 0.4387035071849823,
|
| 325 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 326 |
+
"sampling/importance_sampling_ratio/mean": 1.0012085437774658,
|
| 327 |
+
"sampling/importance_sampling_ratio/min": 0.21886371076107025,
|
| 328 |
+
"sampling/sampling_logp_difference/max": 2.316737651824951,
|
| 329 |
+
"sampling/sampling_logp_difference/mean": 0.01692187413573265,
|
| 330 |
+
"step": 13,
|
| 331 |
+
"step_time": 93.44268519900038
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"clip_ratio/high_max": 0.012604236777406186,
|
| 335 |
+
"clip_ratio/high_mean": 0.006302118388703093,
|
| 336 |
+
"clip_ratio/low_mean": 0.01540282418136485,
|
| 337 |
+
"clip_ratio/low_min": 0.003511236049234867,
|
| 338 |
+
"clip_ratio/region_mean": 0.021704942628275603,
|
| 339 |
+
"entropy": 0.06422114372253418,
|
| 340 |
+
"epoch": 0.00014,
|
| 341 |
+
"grad_norm": 1.1214606761932373,
|
| 342 |
+
"kl": 0.07548845067503862,
|
| 343 |
+
"learning_rate": 3.7142857142857143e-05,
|
| 344 |
+
"loss": -0.2136,
|
| 345 |
+
"step": 14,
|
| 346 |
+
"step_time": 26.921327204999443
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"clip_ratio/high_max": 0.003742929140571505,
|
| 350 |
+
"clip_ratio/high_mean": 0.0022186867718119174,
|
| 351 |
+
"clip_ratio/low_mean": 0.0041773931588977575,
|
| 352 |
+
"clip_ratio/low_min": 0.0014451349852606654,
|
| 353 |
+
"clip_ratio/region_mean": 0.0063960799016058445,
|
| 354 |
+
"completions/clipped_ratio": 0.0,
|
| 355 |
+
"completions/max_length": 9200.0,
|
| 356 |
+
"completions/max_terminated_length": 9200.0,
|
| 357 |
+
"completions/mean_length": 7406.59375,
|
| 358 |
+
"completions/mean_terminated_length": 7406.59375,
|
| 359 |
+
"completions/min_length": 203.0,
|
| 360 |
+
"completions/min_terminated_length": 203.0,
|
| 361 |
+
"entropy": 0.046332313562743366,
|
| 362 |
+
"epoch": 0.00015,
|
| 363 |
+
"frac_reward_zero_std": 0.0,
|
| 364 |
+
"grad_norm": 1.3658106327056885,
|
| 365 |
+
"kl": 0.08860734064364806,
|
| 366 |
+
"learning_rate": 4e-05,
|
| 367 |
+
"loss": 0.0669,
|
| 368 |
+
"num_tokens": 2144669.0,
|
| 369 |
+
"reward": -0.3528895974159241,
|
| 370 |
+
"reward_std": 0.443051815032959,
|
| 371 |
+
"rewards/rollout_reward_func/mean": -0.3528895974159241,
|
| 372 |
+
"rewards/rollout_reward_func/std": 0.48428139090538025,
|
| 373 |
+
"sampling/importance_sampling_ratio/max": 1.8482800722122192,
|
| 374 |
+
"sampling/importance_sampling_ratio/mean": 0.9966132640838623,
|
| 375 |
+
"sampling/importance_sampling_ratio/min": 0.118045873939991,
|
| 376 |
+
"sampling/sampling_logp_difference/max": 2.1366820335388184,
|
| 377 |
+
"sampling/sampling_logp_difference/mean": 0.016083233058452606,
|
| 378 |
+
"step": 15,
|
| 379 |
+
"step_time": 91.83712665100029
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"clip_ratio/high_max": 0.004916455829516053,
|
| 383 |
+
"clip_ratio/high_mean": 0.0024582279147580266,
|
| 384 |
+
"clip_ratio/low_mean": 0.008916221850086004,
|
| 385 |
+
"clip_ratio/low_min": 0.0021388453897088766,
|
| 386 |
+
"clip_ratio/region_mean": 0.011374449823051691,
|
| 387 |
+
"entropy": 0.04555429570609704,
|
| 388 |
+
"epoch": 0.00016,
|
| 389 |
+
"grad_norm": 1.3114889860153198,
|
| 390 |
+
"kl": 0.1314735203923192,
|
| 391 |
+
"learning_rate": 4.2857142857142856e-05,
|
| 392 |
+
"loss": 0.0618,
|
| 393 |
+
"step": 16,
|
| 394 |
+
"step_time": 27.011356363000004
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"clip_ratio/high_max": 0.008057098719291389,
|
| 398 |
+
"clip_ratio/high_mean": 0.00437577159027569,
|
| 399 |
+
"clip_ratio/low_mean": 0.004278601991245523,
|
| 400 |
+
"clip_ratio/low_min": 0.0,
|
| 401 |
+
"clip_ratio/region_mean": 0.008654373581521213,
|
| 402 |
+
"completions/clipped_ratio": 0.0,
|
| 403 |
+
"completions/max_length": 9228.0,
|
| 404 |
+
"completions/max_terminated_length": 9228.0,
|
| 405 |
+
"completions/mean_length": 7819.875,
|
| 406 |
+
"completions/mean_terminated_length": 7819.875,
|
| 407 |
+
"completions/min_length": 3760.0,
|
| 408 |
+
"completions/min_terminated_length": 3760.0,
|
| 409 |
+
"entropy": 0.07362106395885348,
|
| 410 |
+
"epoch": 0.00017,
|
| 411 |
+
"frac_reward_zero_std": 0.0,
|
| 412 |
+
"grad_norm": 2.2947819232940674,
|
| 413 |
+
"kl": 0.13101027125958353,
|
| 414 |
+
"learning_rate": 4.5714285714285716e-05,
|
| 415 |
+
"loss": -0.0547,
|
| 416 |
+
"num_tokens": 2422510.0,
|
| 417 |
+
"reward": -0.35005444288253784,
|
| 418 |
+
"reward_std": 0.49921366572380066,
|
| 419 |
+
"rewards/rollout_reward_func/mean": -0.35005444288253784,
|
| 420 |
+
"rewards/rollout_reward_func/std": 0.522201657295227,
|
| 421 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 422 |
+
"sampling/importance_sampling_ratio/mean": 1.0008654594421387,
|
| 423 |
+
"sampling/importance_sampling_ratio/min": 0.04268655180931091,
|
| 424 |
+
"sampling/sampling_logp_difference/max": 3.1538712978363037,
|
| 425 |
+
"sampling/sampling_logp_difference/mean": 0.027018871158361435,
|
| 426 |
+
"step": 17,
|
| 427 |
+
"step_time": 96.36866129600003
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"clip_ratio/high_max": 0.011791770870331675,
|
| 431 |
+
"clip_ratio/high_mean": 0.0066107546736020595,
|
| 432 |
+
"clip_ratio/low_mean": 0.01208667631726712,
|
| 433 |
+
"clip_ratio/low_min": 0.0028746770112775266,
|
| 434 |
+
"clip_ratio/region_mean": 0.01869743096176535,
|
| 435 |
+
"entropy": 0.0709565794095397,
|
| 436 |
+
"epoch": 0.00018,
|
| 437 |
+
"grad_norm": 3.9747724533081055,
|
| 438 |
+
"kl": 0.45611770218238235,
|
| 439 |
+
"learning_rate": 4.8571428571428576e-05,
|
| 440 |
+
"loss": -0.0527,
|
| 441 |
+
"step": 18,
|
| 442 |
+
"step_time": 27.170892336000406
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.006368288770318031,
|
| 446 |
+
"clip_ratio/high_mean": 0.0031841443851590157,
|
| 447 |
+
"clip_ratio/low_mean": 0.0007183908019214869,
|
| 448 |
+
"clip_ratio/low_min": 0.0,
|
| 449 |
+
"clip_ratio/region_mean": 0.0039025351288728416,
|
| 450 |
+
"completions/clipped_ratio": 0.0,
|
| 451 |
+
"completions/max_length": 9443.0,
|
| 452 |
+
"completions/max_terminated_length": 9443.0,
|
| 453 |
+
"completions/mean_length": 7551.3125,
|
| 454 |
+
"completions/mean_terminated_length": 7551.3125,
|
| 455 |
+
"completions/min_length": 2300.0,
|
| 456 |
+
"completions/min_terminated_length": 2300.0,
|
| 457 |
+
"entropy": 0.05112030985765159,
|
| 458 |
+
"epoch": 0.00019,
|
| 459 |
+
"frac_reward_zero_std": 0.0,
|
| 460 |
+
"grad_norm": 1.3253093957901,
|
| 461 |
+
"kl": 0.06368285935604945,
|
| 462 |
+
"learning_rate": 5.142857142857143e-05,
|
| 463 |
+
"loss": -0.1504,
|
| 464 |
+
"num_tokens": 2691652.0,
|
| 465 |
+
"reward": -0.4411429762840271,
|
| 466 |
+
"reward_std": 0.4299367666244507,
|
| 467 |
+
"rewards/rollout_reward_func/mean": -0.4411429762840271,
|
| 468 |
+
"rewards/rollout_reward_func/std": 0.4561052918434143,
|
| 469 |
+
"sampling/importance_sampling_ratio/max": 1.6581709384918213,
|
| 470 |
+
"sampling/importance_sampling_ratio/mean": 0.997830867767334,
|
| 471 |
+
"sampling/importance_sampling_ratio/min": 0.07465386390686035,
|
| 472 |
+
"sampling/sampling_logp_difference/max": 2.594892978668213,
|
| 473 |
+
"sampling/sampling_logp_difference/mean": 0.013442842289805412,
|
| 474 |
+
"step": 19,
|
| 475 |
+
"step_time": 93.42405358899964
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"clip_ratio/high_max": 0.01606024947250262,
|
| 479 |
+
"clip_ratio/high_mean": 0.008740443765418604,
|
| 480 |
+
"clip_ratio/low_mean": 0.006419806071789935,
|
| 481 |
+
"clip_ratio/low_min": 0.0,
|
| 482 |
+
"clip_ratio/region_mean": 0.015160249720793217,
|
| 483 |
+
"entropy": 0.053090699831955135,
|
| 484 |
+
"epoch": 0.0002,
|
| 485 |
+
"grad_norm": 1.2332507371902466,
|
| 486 |
+
"kl": 0.1118333391204942,
|
| 487 |
+
"learning_rate": 5.428571428571428e-05,
|
| 488 |
+
"loss": -0.156,
|
| 489 |
+
"step": 20,
|
| 490 |
+
"step_time": 27.701954217999173
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"clip_ratio/high_max": 0.005651562649291009,
|
| 494 |
+
"clip_ratio/high_mean": 0.0028257813246455044,
|
| 495 |
+
"clip_ratio/low_mean": 0.0027939277642872185,
|
| 496 |
+
"clip_ratio/low_min": 0.0,
|
| 497 |
+
"clip_ratio/region_mean": 0.005619709118036553,
|
| 498 |
+
"completions/clipped_ratio": 0.0,
|
| 499 |
+
"completions/max_length": 9189.0,
|
| 500 |
+
"completions/max_terminated_length": 9189.0,
|
| 501 |
+
"completions/mean_length": 7761.09375,
|
| 502 |
+
"completions/mean_terminated_length": 7761.09375,
|
| 503 |
+
"completions/min_length": 1417.0,
|
| 504 |
+
"completions/min_terminated_length": 1417.0,
|
| 505 |
+
"entropy": 0.06741820118622854,
|
| 506 |
+
"epoch": 0.00021,
|
| 507 |
+
"frac_reward_zero_std": 0.0,
|
| 508 |
+
"grad_norm": 3.6862173080444336,
|
| 509 |
+
"kl": 0.4830274658452254,
|
| 510 |
+
"learning_rate": 5.714285714285714e-05,
|
| 511 |
+
"loss": -0.2263,
|
| 512 |
+
"num_tokens": 2967426.0,
|
| 513 |
+
"reward": -0.28399354219436646,
|
| 514 |
+
"reward_std": 0.4300430417060852,
|
| 515 |
+
"rewards/rollout_reward_func/mean": -0.28399354219436646,
|
| 516 |
+
"rewards/rollout_reward_func/std": 0.5347884297370911,
|
| 517 |
+
"sampling/importance_sampling_ratio/max": 2.1812915802001953,
|
| 518 |
+
"sampling/importance_sampling_ratio/mean": 0.997977614402771,
|
| 519 |
+
"sampling/importance_sampling_ratio/min": 0.4058607518672943,
|
| 520 |
+
"sampling/sampling_logp_difference/max": 0.9017452001571655,
|
| 521 |
+
"sampling/sampling_logp_difference/mean": 0.014318476431071758,
|
| 522 |
+
"step": 21,
|
| 523 |
+
"step_time": 94.09382517800077
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_ratio/high_max": 0.009377924376167357,
|
| 527 |
+
"clip_ratio/high_mean": 0.006085653760237619,
|
| 528 |
+
"clip_ratio/low_mean": 0.012686202622717246,
|
| 529 |
+
"clip_ratio/low_min": 0.002905860950704664,
|
| 530 |
+
"clip_ratio/region_mean": 0.018771856353851035,
|
| 531 |
+
"entropy": 0.07064696005545557,
|
| 532 |
+
"epoch": 0.00022,
|
| 533 |
+
"grad_norm": 6.065097332000732,
|
| 534 |
+
"kl": 0.08845078520243987,
|
| 535 |
+
"learning_rate": 6e-05,
|
| 536 |
+
"loss": -0.2227,
|
| 537 |
+
"step": 22,
|
| 538 |
+
"step_time": 27.40954218999991
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.0028251263429410756,
|
| 542 |
+
"clip_ratio/high_mean": 0.0017597853729967028,
|
| 543 |
+
"clip_ratio/low_mean": 0.0020223904284648597,
|
| 544 |
+
"clip_ratio/low_min": 0.0005252101109363139,
|
| 545 |
+
"clip_ratio/region_mean": 0.0037821758014615625,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 8721.0,
|
| 548 |
+
"completions/max_terminated_length": 8721.0,
|
| 549 |
+
"completions/mean_length": 7136.59375,
|
| 550 |
+
"completions/mean_terminated_length": 7136.59375,
|
| 551 |
+
"completions/min_length": 959.0,
|
| 552 |
+
"completions/min_terminated_length": 959.0,
|
| 553 |
+
"entropy": 0.06426455150358379,
|
| 554 |
+
"epoch": 0.00023,
|
| 555 |
+
"frac_reward_zero_std": 0.0,
|
| 556 |
+
"grad_norm": 2.0993857383728027,
|
| 557 |
+
"kl": 0.1524171840865165,
|
| 558 |
+
"learning_rate": 6.285714285714286e-05,
|
| 559 |
+
"loss": -0.0482,
|
| 560 |
+
"num_tokens": 3222856.0,
|
| 561 |
+
"reward": -0.365644633769989,
|
| 562 |
+
"reward_std": 0.5254338979721069,
|
| 563 |
+
"rewards/rollout_reward_func/mean": -0.365644633769989,
|
| 564 |
+
"rewards/rollout_reward_func/std": 0.5246545076370239,
|
| 565 |
+
"sampling/importance_sampling_ratio/max": 2.320268392562866,
|
| 566 |
+
"sampling/importance_sampling_ratio/mean": 0.9996501803398132,
|
| 567 |
+
"sampling/importance_sampling_ratio/min": 0.09908817708492279,
|
| 568 |
+
"sampling/sampling_logp_difference/max": 2.3117451667785645,
|
| 569 |
+
"sampling/sampling_logp_difference/mean": 0.011567876674234867,
|
| 570 |
+
"step": 23,
|
| 571 |
+
"step_time": 89.85609540400014
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.009038183547090739,
|
| 575 |
+
"clip_ratio/high_mean": 0.005584432714385912,
|
| 576 |
+
"clip_ratio/low_mean": 0.005201028659939766,
|
| 577 |
+
"clip_ratio/low_min": 0.0015668768319301307,
|
| 578 |
+
"clip_ratio/region_mean": 0.010785461287014186,
|
| 579 |
+
"entropy": 0.06729507446289062,
|
| 580 |
+
"epoch": 0.00024,
|
| 581 |
+
"grad_norm": 1.5627487897872925,
|
| 582 |
+
"kl": 0.1648054391844198,
|
| 583 |
+
"learning_rate": 6.571428571428571e-05,
|
| 584 |
+
"loss": -0.0548,
|
| 585 |
+
"step": 24,
|
| 586 |
+
"step_time": 25.88749120899979
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"clip_ratio/high_max": 0.005618693074211478,
|
| 590 |
+
"clip_ratio/high_mean": 0.002809346537105739,
|
| 591 |
+
"clip_ratio/low_mean": 0.001929406455019489,
|
| 592 |
+
"clip_ratio/low_min": 0.0,
|
| 593 |
+
"clip_ratio/region_mean": 0.004738752992125228,
|
| 594 |
+
"completions/clipped_ratio": 0.0,
|
| 595 |
+
"completions/max_length": 8856.0,
|
| 596 |
+
"completions/max_terminated_length": 8856.0,
|
| 597 |
+
"completions/mean_length": 7467.65625,
|
| 598 |
+
"completions/mean_terminated_length": 7467.65625,
|
| 599 |
+
"completions/min_length": 402.0,
|
| 600 |
+
"completions/min_terminated_length": 402.0,
|
| 601 |
+
"entropy": 0.07340177637524903,
|
| 602 |
+
"epoch": 0.00025,
|
| 603 |
+
"frac_reward_zero_std": 0.0,
|
| 604 |
+
"grad_norm": 1.2772353887557983,
|
| 605 |
+
"kl": 0.0859682586742565,
|
| 606 |
+
"learning_rate": 6.857142857142858e-05,
|
| 607 |
+
"loss": -0.2314,
|
| 608 |
+
"num_tokens": 3488411.0,
|
| 609 |
+
"reward": -0.3830329477787018,
|
| 610 |
+
"reward_std": 0.5107574462890625,
|
| 611 |
+
"rewards/rollout_reward_func/mean": -0.3830329477787018,
|
| 612 |
+
"rewards/rollout_reward_func/std": 0.5173285007476807,
|
| 613 |
+
"sampling/importance_sampling_ratio/max": 2.1774182319641113,
|
| 614 |
+
"sampling/importance_sampling_ratio/mean": 0.999387264251709,
|
| 615 |
+
"sampling/importance_sampling_ratio/min": 0.29978206753730774,
|
| 616 |
+
"sampling/sampling_logp_difference/max": 1.2046995162963867,
|
| 617 |
+
"sampling/sampling_logp_difference/mean": 0.011983634904026985,
|
| 618 |
+
"step": 25,
|
| 619 |
+
"step_time": 92.61141428400015
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"clip_ratio/high_max": 0.014493243885226548,
|
| 623 |
+
"clip_ratio/high_mean": 0.008288288547191769,
|
| 624 |
+
"clip_ratio/low_mean": 0.013486813055351377,
|
| 625 |
+
"clip_ratio/low_min": 0.0028249489841982722,
|
| 626 |
+
"clip_ratio/region_mean": 0.021775101457023993,
|
| 627 |
+
"entropy": 0.0781157671008259,
|
| 628 |
+
"epoch": 0.00026,
|
| 629 |
+
"grad_norm": 0.8266052603721619,
|
| 630 |
+
"kl": 0.08862257207510993,
|
| 631 |
+
"learning_rate": 7.142857142857143e-05,
|
| 632 |
+
"loss": -0.2407,
|
| 633 |
+
"step": 26,
|
| 634 |
+
"step_time": 26.541104049000296
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"clip_ratio/high_max": 0.0022112573496997356,
|
| 638 |
+
"clip_ratio/high_mean": 0.001456752244848758,
|
| 639 |
+
"clip_ratio/low_mean": 0.0013966916594654322,
|
| 640 |
+
"clip_ratio/low_min": 0.0,
|
| 641 |
+
"clip_ratio/region_mean": 0.00285344390431419,
|
| 642 |
+
"completions/clipped_ratio": 0.0,
|
| 643 |
+
"completions/max_length": 9222.0,
|
| 644 |
+
"completions/max_terminated_length": 9222.0,
|
| 645 |
+
"completions/mean_length": 7990.125,
|
| 646 |
+
"completions/mean_terminated_length": 7990.125,
|
| 647 |
+
"completions/min_length": 2192.0,
|
| 648 |
+
"completions/min_terminated_length": 2192.0,
|
| 649 |
+
"entropy": 0.08974491525441408,
|
| 650 |
+
"epoch": 0.00027,
|
| 651 |
+
"frac_reward_zero_std": 0.0,
|
| 652 |
+
"grad_norm": 1.0755014419555664,
|
| 653 |
+
"kl": 0.08955412585055456,
|
| 654 |
+
"learning_rate": 7.428571428571429e-05,
|
| 655 |
+
"loss": -0.0612,
|
| 656 |
+
"num_tokens": 3770720.0,
|
| 657 |
+
"reward": -0.1771392822265625,
|
| 658 |
+
"reward_std": 0.4869571924209595,
|
| 659 |
+
"rewards/rollout_reward_func/mean": -0.1771392822265625,
|
| 660 |
+
"rewards/rollout_reward_func/std": 0.46993595361709595,
|
| 661 |
+
"sampling/importance_sampling_ratio/max": 1.7862199544906616,
|
| 662 |
+
"sampling/importance_sampling_ratio/mean": 1.0007758140563965,
|
| 663 |
+
"sampling/importance_sampling_ratio/min": 0.294488787651062,
|
| 664 |
+
"sampling/sampling_logp_difference/max": 1.2225143909454346,
|
| 665 |
+
"sampling/sampling_logp_difference/mean": 0.011052686721086502,
|
| 666 |
+
"step": 27,
|
| 667 |
+
"step_time": 95.3786270669998
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"clip_ratio/high_max": 0.012634392420295626,
|
| 671 |
+
"clip_ratio/high_mean": 0.00806891280808486,
|
| 672 |
+
"clip_ratio/low_mean": 0.005300049553625286,
|
| 673 |
+
"clip_ratio/low_min": 0.0014046717551536858,
|
| 674 |
+
"clip_ratio/region_mean": 0.013368962419917807,
|
| 675 |
+
"entropy": 0.09402668941766024,
|
| 676 |
+
"epoch": 0.00028,
|
| 677 |
+
"grad_norm": 0.9924318790435791,
|
| 678 |
+
"kl": 0.0753595522546675,
|
| 679 |
+
"learning_rate": 7.714285714285715e-05,
|
| 680 |
+
"loss": -0.0693,
|
| 681 |
+
"step": 28,
|
| 682 |
+
"step_time": 27.647992973000328
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"clip_ratio/high_max": 0.0035870341234840453,
|
| 686 |
+
"clip_ratio/high_mean": 0.002140739292372018,
|
| 687 |
+
"clip_ratio/low_mean": 0.0017440025694668293,
|
| 688 |
+
"clip_ratio/low_min": 0.0,
|
| 689 |
+
"clip_ratio/region_mean": 0.003884741832735017,
|
| 690 |
+
"completions/clipped_ratio": 0.0,
|
| 691 |
+
"completions/max_length": 9067.0,
|
| 692 |
+
"completions/max_terminated_length": 9067.0,
|
| 693 |
+
"completions/mean_length": 7836.9375,
|
| 694 |
+
"completions/mean_terminated_length": 7836.9375,
|
| 695 |
+
"completions/min_length": 1928.0,
|
| 696 |
+
"completions/min_terminated_length": 1928.0,
|
| 697 |
+
"entropy": 0.09281386900693178,
|
| 698 |
+
"epoch": 0.00029,
|
| 699 |
+
"frac_reward_zero_std": 0.0,
|
| 700 |
+
"grad_norm": 1.068334937095642,
|
| 701 |
+
"kl": 0.0688294384162873,
|
| 702 |
+
"learning_rate": 8e-05,
|
| 703 |
+
"loss": 0.0442,
|
| 704 |
+
"num_tokens": 4047979.0,
|
| 705 |
+
"reward": -0.25341448187828064,
|
| 706 |
+
"reward_std": 0.49919599294662476,
|
| 707 |
+
"rewards/rollout_reward_func/mean": -0.25341448187828064,
|
| 708 |
+
"rewards/rollout_reward_func/std": 0.500785231590271,
|
| 709 |
+
"sampling/importance_sampling_ratio/max": 1.868089199066162,
|
| 710 |
+
"sampling/importance_sampling_ratio/mean": 1.0002467632293701,
|
| 711 |
+
"sampling/importance_sampling_ratio/min": 0.5016597509384155,
|
| 712 |
+
"sampling/sampling_logp_difference/max": 0.6898331642150879,
|
| 713 |
+
"sampling/sampling_logp_difference/mean": 0.009339751675724983,
|
| 714 |
+
"step": 29,
|
| 715 |
+
"step_time": 94.94639882799993
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"clip_ratio/high_max": 0.015361635130830109,
|
| 719 |
+
"clip_ratio/high_mean": 0.0076808175654150546,
|
| 720 |
+
"clip_ratio/low_mean": 0.007387197489151731,
|
| 721 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 722 |
+
"clip_ratio/region_mean": 0.015068015054566786,
|
| 723 |
+
"entropy": 0.09539854992181063,
|
| 724 |
+
"epoch": 0.0003,
|
| 725 |
+
"grad_norm": 0.7568414807319641,
|
| 726 |
+
"kl": 0.06834399094805121,
|
| 727 |
+
"learning_rate": 8.285714285714287e-05,
|
| 728 |
+
"loss": 0.0376,
|
| 729 |
+
"step": 30,
|
| 730 |
+
"step_time": 26.633041288999266
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.004851312725804746,
|
| 734 |
+
"clip_ratio/high_mean": 0.002425656362902373,
|
| 735 |
+
"clip_ratio/low_mean": 0.003376906446646899,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.00580256269313395,
|
| 738 |
+
"completions/clipped_ratio": 0.0,
|
| 739 |
+
"completions/max_length": 9536.0,
|
| 740 |
+
"completions/max_terminated_length": 9536.0,
|
| 741 |
+
"completions/mean_length": 8069.3125,
|
| 742 |
+
"completions/mean_terminated_length": 8069.3125,
|
| 743 |
+
"completions/min_length": 2100.0,
|
| 744 |
+
"completions/min_terminated_length": 2100.0,
|
| 745 |
+
"entropy": 0.1009219279512763,
|
| 746 |
+
"epoch": 0.00031,
|
| 747 |
+
"frac_reward_zero_std": 0.0,
|
| 748 |
+
"grad_norm": 1.0075691938400269,
|
| 749 |
+
"kl": 0.06613797519821674,
|
| 750 |
+
"learning_rate": 8.571428571428571e-05,
|
| 751 |
+
"loss": 0.0875,
|
| 752 |
+
"num_tokens": 4332991.0,
|
| 753 |
+
"reward": -0.2427319884300232,
|
| 754 |
+
"reward_std": 0.5179601907730103,
|
| 755 |
+
"rewards/rollout_reward_func/mean": -0.2427319884300232,
|
| 756 |
+
"rewards/rollout_reward_func/std": 0.5765778422355652,
|
| 757 |
+
"sampling/importance_sampling_ratio/max": 1.7835460901260376,
|
| 758 |
+
"sampling/importance_sampling_ratio/mean": 0.9999290704727173,
|
| 759 |
+
"sampling/importance_sampling_ratio/min": 0.6331738829612732,
|
| 760 |
+
"sampling/sampling_logp_difference/max": 0.5786035060882568,
|
| 761 |
+
"sampling/sampling_logp_difference/mean": 0.009435810148715973,
|
| 762 |
+
"step": 31,
|
| 763 |
+
"step_time": 94.81605570200009
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"clip_ratio/high_max": 0.017235137231182307,
|
| 767 |
+
"clip_ratio/high_mean": 0.008985215710708871,
|
| 768 |
+
"clip_ratio/low_mean": 0.012812130036763847,
|
| 769 |
+
"clip_ratio/low_min": 0.0027777778450399637,
|
| 770 |
+
"clip_ratio/region_mean": 0.021797345718368888,
|
| 771 |
+
"entropy": 0.10036895563825965,
|
| 772 |
+
"epoch": 0.00032,
|
| 773 |
+
"grad_norm": 0.7584834098815918,
|
| 774 |
+
"kl": 0.11454511061310768,
|
| 775 |
+
"learning_rate": 8.857142857142857e-05,
|
| 776 |
+
"loss": 0.0788,
|
| 777 |
+
"step": 32,
|
| 778 |
+
"step_time": 28.761855419000312
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"clip_ratio/high_max": 0.0031494522700086236,
|
| 782 |
+
"clip_ratio/high_mean": 0.0015747261350043118,
|
| 783 |
+
"clip_ratio/low_mean": 0.0024462497676722705,
|
| 784 |
+
"clip_ratio/low_min": 0.0,
|
| 785 |
+
"clip_ratio/region_mean": 0.004020975931780413,
|
| 786 |
+
"completions/clipped_ratio": 0.0,
|
| 787 |
+
"completions/max_length": 9354.0,
|
| 788 |
+
"completions/max_terminated_length": 9354.0,
|
| 789 |
+
"completions/mean_length": 7928.5,
|
| 790 |
+
"completions/mean_terminated_length": 7928.5,
|
| 791 |
+
"completions/min_length": 3150.0,
|
| 792 |
+
"completions/min_terminated_length": 3150.0,
|
| 793 |
+
"entropy": 0.1094990405254066,
|
| 794 |
+
"epoch": 0.00033,
|
| 795 |
+
"frac_reward_zero_std": 0.0,
|
| 796 |
+
"grad_norm": 0.8852567672729492,
|
| 797 |
+
"kl": 0.0793593015987426,
|
| 798 |
+
"learning_rate": 9.142857142857143e-05,
|
| 799 |
+
"loss": 0.1924,
|
| 800 |
+
"num_tokens": 4613150.0,
|
| 801 |
+
"reward": -0.1065119206905365,
|
| 802 |
+
"reward_std": 0.6632397174835205,
|
| 803 |
+
"rewards/rollout_reward_func/mean": -0.1065119206905365,
|
| 804 |
+
"rewards/rollout_reward_func/std": 0.6485887765884399,
|
| 805 |
+
"sampling/importance_sampling_ratio/max": 1.593437671661377,
|
| 806 |
+
"sampling/importance_sampling_ratio/mean": 0.9991821050643921,
|
| 807 |
+
"sampling/importance_sampling_ratio/min": 0.5760508179664612,
|
| 808 |
+
"sampling/sampling_logp_difference/max": 0.551559329032898,
|
| 809 |
+
"sampling/sampling_logp_difference/mean": 0.0090299928560853,
|
| 810 |
+
"step": 33,
|
| 811 |
+
"step_time": 94.56970139799978
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"clip_ratio/high_max": 0.010831523861270398,
|
| 815 |
+
"clip_ratio/high_mean": 0.006442332087317482,
|
| 816 |
+
"clip_ratio/low_mean": 0.014884777745464817,
|
| 817 |
+
"clip_ratio/low_min": 0.004198966489639133,
|
| 818 |
+
"clip_ratio/region_mean": 0.02132710992009379,
|
| 819 |
+
"entropy": 0.1035804757848382,
|
| 820 |
+
"epoch": 0.00034,
|
| 821 |
+
"grad_norm": 6.932408332824707,
|
| 822 |
+
"kl": 0.36925772204995155,
|
| 823 |
+
"learning_rate": 9.428571428571429e-05,
|
| 824 |
+
"loss": 0.19,
|
| 825 |
+
"step": 34,
|
| 826 |
+
"step_time": 28.189770212999974
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"clip_ratio/high_max": 0.004503837670199573,
|
| 830 |
+
"clip_ratio/high_mean": 0.0022519188350997865,
|
| 831 |
+
"clip_ratio/low_mean": 0.001957070722710341,
|
| 832 |
+
"clip_ratio/low_min": 0.0,
|
| 833 |
+
"clip_ratio/region_mean": 0.004208989586913958,
|
| 834 |
+
"completions/clipped_ratio": 0.0,
|
| 835 |
+
"completions/max_length": 9253.0,
|
| 836 |
+
"completions/max_terminated_length": 9253.0,
|
| 837 |
+
"completions/mean_length": 8121.40625,
|
| 838 |
+
"completions/mean_terminated_length": 8121.40625,
|
| 839 |
+
"completions/min_length": 3211.0,
|
| 840 |
+
"completions/min_terminated_length": 3211.0,
|
| 841 |
+
"entropy": 0.08986494969576597,
|
| 842 |
+
"epoch": 0.00035,
|
| 843 |
+
"frac_reward_zero_std": 0.0,
|
| 844 |
+
"grad_norm": 1.0189476013183594,
|
| 845 |
+
"kl": 0.11070865276269615,
|
| 846 |
+
"learning_rate": 9.714285714285715e-05,
|
| 847 |
+
"loss": -0.1358,
|
| 848 |
+
"num_tokens": 4899944.0,
|
| 849 |
+
"reward": -0.3683607578277588,
|
| 850 |
+
"reward_std": 0.39094337821006775,
|
| 851 |
+
"rewards/rollout_reward_func/mean": -0.3683607578277588,
|
| 852 |
+
"rewards/rollout_reward_func/std": 0.3886735141277313,
|
| 853 |
+
"sampling/importance_sampling_ratio/max": 1.678568720817566,
|
| 854 |
+
"sampling/importance_sampling_ratio/mean": 0.9991096258163452,
|
| 855 |
+
"sampling/importance_sampling_ratio/min": 0.2759600579738617,
|
| 856 |
+
"sampling/sampling_logp_difference/max": 1.287499189376831,
|
| 857 |
+
"sampling/sampling_logp_difference/mean": 0.009727813303470612,
|
| 858 |
+
"step": 35,
|
| 859 |
+
"step_time": 95.49759846299912
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"clip_ratio/high_max": 0.016388497198931873,
|
| 863 |
+
"clip_ratio/high_mean": 0.008888693118933588,
|
| 864 |
+
"clip_ratio/low_mean": 0.012551680905744433,
|
| 865 |
+
"clip_ratio/low_min": 0.002083333383779973,
|
| 866 |
+
"clip_ratio/region_mean": 0.021440374111989513,
|
| 867 |
+
"entropy": 0.08508480247110128,
|
| 868 |
+
"epoch": 0.00036,
|
| 869 |
+
"grad_norm": 0.7093645334243774,
|
| 870 |
+
"kl": 0.13321141549386084,
|
| 871 |
+
"learning_rate": 0.0001,
|
| 872 |
+
"loss": -0.142,
|
| 873 |
+
"step": 36,
|
| 874 |
+
"step_time": 28.9255163910002
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0037438530707731843,
|
| 878 |
+
"clip_ratio/high_mean": 0.0018719265353865921,
|
| 879 |
+
"clip_ratio/low_mean": 0.0017557953542564064,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0036277218896429986,
|
| 882 |
+
"completions/clipped_ratio": 0.0,
|
| 883 |
+
"completions/max_length": 8904.0,
|
| 884 |
+
"completions/max_terminated_length": 8904.0,
|
| 885 |
+
"completions/mean_length": 7886.75,
|
| 886 |
+
"completions/mean_terminated_length": 7886.75,
|
| 887 |
+
"completions/min_length": 2730.0,
|
| 888 |
+
"completions/min_terminated_length": 2730.0,
|
| 889 |
+
"entropy": 0.0856572980992496,
|
| 890 |
+
"epoch": 0.00037,
|
| 891 |
+
"frac_reward_zero_std": 0.0,
|
| 892 |
+
"grad_norm": 0.8132036328315735,
|
| 893 |
+
"kl": 0.10761717008426785,
|
| 894 |
+
"learning_rate": 9.918053502751771e-05,
|
| 895 |
+
"loss": -0.0071,
|
| 896 |
+
"num_tokens": 5179039.0,
|
| 897 |
+
"reward": -0.2326236367225647,
|
| 898 |
+
"reward_std": 0.5471592545509338,
|
| 899 |
+
"rewards/rollout_reward_func/mean": -0.2326236367225647,
|
| 900 |
+
"rewards/rollout_reward_func/std": 0.5504636168479919,
|
| 901 |
+
"sampling/importance_sampling_ratio/max": 1.7522045373916626,
|
| 902 |
+
"sampling/importance_sampling_ratio/mean": 0.9999704360961914,
|
| 903 |
+
"sampling/importance_sampling_ratio/min": 0.6301739811897278,
|
| 904 |
+
"sampling/sampling_logp_difference/max": 0.5608747005462646,
|
| 905 |
+
"sampling/sampling_logp_difference/mean": 0.00934191420674324,
|
| 906 |
+
"step": 37,
|
| 907 |
+
"step_time": 91.66157414699956
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"clip_ratio/high_max": 0.009254805103410035,
|
| 911 |
+
"clip_ratio/high_mean": 0.004974624811438844,
|
| 912 |
+
"clip_ratio/low_mean": 0.0146892913908232,
|
| 913 |
+
"clip_ratio/low_min": 0.002091136120725423,
|
| 914 |
+
"clip_ratio/region_mean": 0.019663916405988857,
|
| 915 |
+
"entropy": 0.08511333051137626,
|
| 916 |
+
"epoch": 0.00038,
|
| 917 |
+
"grad_norm": 1.016090750694275,
|
| 918 |
+
"kl": 0.13888527592644095,
|
| 919 |
+
"learning_rate": 9.675795466159755e-05,
|
| 920 |
+
"loss": -0.0123,
|
| 921 |
+
"step": 38,
|
| 922 |
+
"step_time": 27.996872589999384
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"clip_ratio/high_max": 0.004166666767559946,
|
| 926 |
+
"clip_ratio/high_mean": 0.002083333383779973,
|
| 927 |
+
"clip_ratio/low_mean": 0.003956988512072712,
|
| 928 |
+
"clip_ratio/low_min": 0.0013966916594654322,
|
| 929 |
+
"clip_ratio/region_mean": 0.006040321895852685,
|
| 930 |
+
"completions/clipped_ratio": 0.0,
|
| 931 |
+
"completions/max_length": 9174.0,
|
| 932 |
+
"completions/max_terminated_length": 9174.0,
|
| 933 |
+
"completions/mean_length": 7773.78125,
|
| 934 |
+
"completions/mean_terminated_length": 7773.78125,
|
| 935 |
+
"completions/min_length": 644.0,
|
| 936 |
+
"completions/min_terminated_length": 644.0,
|
| 937 |
+
"entropy": 0.08465631771832705,
|
| 938 |
+
"epoch": 0.00039,
|
| 939 |
+
"frac_reward_zero_std": 0.0,
|
| 940 |
+
"grad_norm": 1.2169103622436523,
|
| 941 |
+
"kl": 0.08935846015810966,
|
| 942 |
+
"learning_rate": 9.283813728906054e-05,
|
| 943 |
+
"loss": -0.1228,
|
| 944 |
+
"num_tokens": 5455087.0,
|
| 945 |
+
"reward": -0.23303870856761932,
|
| 946 |
+
"reward_std": 0.587963879108429,
|
| 947 |
+
"rewards/rollout_reward_func/mean": -0.23303870856761932,
|
| 948 |
+
"rewards/rollout_reward_func/std": 0.6264134645462036,
|
| 949 |
+
"sampling/importance_sampling_ratio/max": 2.5134615898132324,
|
| 950 |
+
"sampling/importance_sampling_ratio/mean": 1.000549077987671,
|
| 951 |
+
"sampling/importance_sampling_ratio/min": 0.555368959903717,
|
| 952 |
+
"sampling/sampling_logp_difference/max": 0.9216609001159668,
|
| 953 |
+
"sampling/sampling_logp_difference/mean": 0.009383916854858398,
|
| 954 |
+
"step": 39,
|
| 955 |
+
"step_time": 87.98878976900005
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"clip_ratio/high_max": 0.007900029362645,
|
| 959 |
+
"clip_ratio/high_mean": 0.004326520691392943,
|
| 960 |
+
"clip_ratio/low_mean": 0.011018106888514012,
|
| 961 |
+
"clip_ratio/low_min": 0.0018596546142362058,
|
| 962 |
+
"clip_ratio/region_mean": 0.015344627550803125,
|
| 963 |
+
"entropy": 0.08598045213147998,
|
| 964 |
+
"epoch": 0.0004,
|
| 965 |
+
"grad_norm": 1.855177640914917,
|
| 966 |
+
"kl": 0.08451172313652933,
|
| 967 |
+
"learning_rate": 8.759239773845718e-05,
|
| 968 |
+
"loss": -0.1252,
|
| 969 |
+
"step": 40,
|
| 970 |
+
"step_time": 28.765726263999568
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"clip_ratio/high_max": 0.005807758076116443,
|
| 974 |
+
"clip_ratio/high_mean": 0.003251101268688217,
|
| 975 |
+
"clip_ratio/low_mean": 0.0,
|
| 976 |
+
"clip_ratio/low_min": 0.0,
|
| 977 |
+
"clip_ratio/region_mean": 0.003251101268688217,
|
| 978 |
+
"completions/clipped_ratio": 0.0,
|
| 979 |
+
"completions/max_length": 8897.0,
|
| 980 |
+
"completions/max_terminated_length": 8897.0,
|
| 981 |
+
"completions/mean_length": 7154.53125,
|
| 982 |
+
"completions/mean_terminated_length": 7154.53125,
|
| 983 |
+
"completions/min_length": 2028.0,
|
| 984 |
+
"completions/min_terminated_length": 2028.0,
|
| 985 |
+
"entropy": 0.07370180264115334,
|
| 986 |
+
"epoch": 0.00041,
|
| 987 |
+
"frac_reward_zero_std": 0.0,
|
| 988 |
+
"grad_norm": 0.6197995543479919,
|
| 989 |
+
"kl": 0.08875341480597854,
|
| 990 |
+
"learning_rate": 8.125000000000001e-05,
|
| 991 |
+
"loss": -0.0075,
|
| 992 |
+
"num_tokens": 5710693.0,
|
| 993 |
+
"reward": -0.11052435636520386,
|
| 994 |
+
"reward_std": 0.6305065155029297,
|
| 995 |
+
"rewards/rollout_reward_func/mean": -0.11052435636520386,
|
| 996 |
+
"rewards/rollout_reward_func/std": 0.6378242373466492,
|
| 997 |
+
"sampling/importance_sampling_ratio/max": 1.3583569526672363,
|
| 998 |
+
"sampling/importance_sampling_ratio/mean": 0.9987045526504517,
|
| 999 |
+
"sampling/importance_sampling_ratio/min": 0.3902639150619507,
|
| 1000 |
+
"sampling/sampling_logp_difference/max": 0.940932035446167,
|
| 1001 |
+
"sampling/sampling_logp_difference/mean": 0.007857292890548706,
|
| 1002 |
+
"step": 41,
|
| 1003 |
+
"step_time": 89.4707287680003
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"clip_ratio/high_max": 0.011104670935310423,
|
| 1007 |
+
"clip_ratio/high_mean": 0.005552335467655212,
|
| 1008 |
+
"clip_ratio/low_mean": 0.0056608943559695035,
|
| 1009 |
+
"clip_ratio/low_min": 0.0024853801587596536,
|
| 1010 |
+
"clip_ratio/region_mean": 0.011213229881832376,
|
| 1011 |
+
"entropy": 0.07147298031486571,
|
| 1012 |
+
"epoch": 0.00042,
|
| 1013 |
+
"grad_norm": 0.532979428768158,
|
| 1014 |
+
"kl": 0.1001066651660949,
|
| 1015 |
+
"learning_rate": 7.408813728906053e-05,
|
| 1016 |
+
"loss": -0.0097,
|
| 1017 |
+
"step": 42,
|
| 1018 |
+
"step_time": 27.083737006999854
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"clip_ratio/high_max": 0.002190170984249562,
|
| 1022 |
+
"clip_ratio/high_mean": 0.001095085492124781,
|
| 1023 |
+
"clip_ratio/low_mean": 0.0017723122437018901,
|
| 1024 |
+
"clip_ratio/low_min": 0.0,
|
| 1025 |
+
"clip_ratio/region_mean": 0.002867397735826671,
|
| 1026 |
+
"completions/clipped_ratio": 0.0,
|
| 1027 |
+
"completions/max_length": 9047.0,
|
| 1028 |
+
"completions/max_terminated_length": 9047.0,
|
| 1029 |
+
"completions/mean_length": 7559.5625,
|
| 1030 |
+
"completions/mean_terminated_length": 7559.5625,
|
| 1031 |
+
"completions/min_length": 714.0,
|
| 1032 |
+
"completions/min_terminated_length": 714.0,
|
| 1033 |
+
"entropy": 0.07850536378100514,
|
| 1034 |
+
"epoch": 0.00043,
|
| 1035 |
+
"frac_reward_zero_std": 0.0,
|
| 1036 |
+
"grad_norm": 0.6568584442138672,
|
| 1037 |
+
"kl": 0.13246144936420023,
|
| 1038 |
+
"learning_rate": 6.6419817372537e-05,
|
| 1039 |
+
"loss": -0.164,
|
| 1040 |
+
"num_tokens": 5979343.0,
|
| 1041 |
+
"reward": -0.18616318702697754,
|
| 1042 |
+
"reward_std": 0.5167393088340759,
|
| 1043 |
+
"rewards/rollout_reward_func/mean": -0.18616318702697754,
|
| 1044 |
+
"rewards/rollout_reward_func/std": 0.5579463243484497,
|
| 1045 |
+
"sampling/importance_sampling_ratio/max": 1.8209000825881958,
|
| 1046 |
+
"sampling/importance_sampling_ratio/mean": 1.0000110864639282,
|
| 1047 |
+
"sampling/importance_sampling_ratio/min": 0.5961325764656067,
|
| 1048 |
+
"sampling/sampling_logp_difference/max": 0.5993309020996094,
|
| 1049 |
+
"sampling/sampling_logp_difference/mean": 0.007760843262076378,
|
| 1050 |
+
"step": 43,
|
| 1051 |
+
"step_time": 89.20096494900008
|
| 1052 |
+
},
|
| 1053 |
+
{
|
| 1054 |
+
"clip_ratio/high_max": 0.011211407894734293,
|
| 1055 |
+
"clip_ratio/high_mean": 0.0063001484086271375,
|
| 1056 |
+
"clip_ratio/low_mean": 0.00652579654706642,
|
| 1057 |
+
"clip_ratio/low_min": 0.0014211886445991695,
|
| 1058 |
+
"clip_ratio/region_mean": 0.012825944955693558,
|
| 1059 |
+
"entropy": 0.07914698123931885,
|
| 1060 |
+
"epoch": 0.00044,
|
| 1061 |
+
"grad_norm": 0.4922528564929962,
|
| 1062 |
+
"kl": 0.1358487531542778,
|
| 1063 |
+
"learning_rate": 5.858018262746301e-05,
|
| 1064 |
+
"loss": -0.1705,
|
| 1065 |
+
"step": 44,
|
| 1066 |
+
"step_time": 28.31045281400202
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0007102272938936949,
|
| 1070 |
+
"clip_ratio/high_mean": 0.00035511364694684744,
|
| 1071 |
+
"clip_ratio/low_mean": 0.0017025089473463595,
|
| 1072 |
+
"clip_ratio/low_min": 0.0,
|
| 1073 |
+
"clip_ratio/region_mean": 0.002057622594293207,
|
| 1074 |
+
"completions/clipped_ratio": 0.0,
|
| 1075 |
+
"completions/max_length": 8960.0,
|
| 1076 |
+
"completions/max_terminated_length": 8960.0,
|
| 1077 |
+
"completions/mean_length": 7259.9375,
|
| 1078 |
+
"completions/mean_terminated_length": 7259.9375,
|
| 1079 |
+
"completions/min_length": 1793.0,
|
| 1080 |
+
"completions/min_terminated_length": 1793.0,
|
| 1081 |
+
"entropy": 0.0675961917731911,
|
| 1082 |
+
"epoch": 0.00045,
|
| 1083 |
+
"frac_reward_zero_std": 0.0,
|
| 1084 |
+
"grad_norm": 0.4965215027332306,
|
| 1085 |
+
"kl": 0.12192867766134441,
|
| 1086 |
+
"learning_rate": 5.0911862710939485e-05,
|
| 1087 |
+
"loss": 0.0928,
|
| 1088 |
+
"num_tokens": 6238685.0,
|
| 1089 |
+
"reward": -0.19794124364852905,
|
| 1090 |
+
"reward_std": 0.6908308267593384,
|
| 1091 |
+
"rewards/rollout_reward_func/mean": -0.19794124364852905,
|
| 1092 |
+
"rewards/rollout_reward_func/std": 0.6924669742584229,
|
| 1093 |
+
"sampling/importance_sampling_ratio/max": 1.7397383451461792,
|
| 1094 |
+
"sampling/importance_sampling_ratio/mean": 1.0005090236663818,
|
| 1095 |
+
"sampling/importance_sampling_ratio/min": 0.6195511817932129,
|
| 1096 |
+
"sampling/sampling_logp_difference/max": 0.5537347793579102,
|
| 1097 |
+
"sampling/sampling_logp_difference/mean": 0.006288852542638779,
|
| 1098 |
+
"step": 45,
|
| 1099 |
+
"step_time": 88.08988413000043
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"clip_ratio/high_max": 0.0034880051389336586,
|
| 1103 |
+
"clip_ratio/high_mean": 0.0017440025694668293,
|
| 1104 |
+
"clip_ratio/low_mean": 0.0030215850565582514,
|
| 1105 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 1106 |
+
"clip_ratio/region_mean": 0.004765587626025081,
|
| 1107 |
+
"entropy": 0.06737200380302966,
|
| 1108 |
+
"epoch": 0.00046,
|
| 1109 |
+
"grad_norm": 0.537150502204895,
|
| 1110 |
+
"kl": 0.12145327543839812,
|
| 1111 |
+
"learning_rate": 4.375000000000001e-05,
|
| 1112 |
+
"loss": 0.092,
|
| 1113 |
+
"step": 46,
|
| 1114 |
+
"step_time": 27.73081736800077
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"clip_ratio/high_max": 0.001753766497131437,
|
| 1118 |
+
"clip_ratio/high_mean": 0.0012241055082995445,
|
| 1119 |
+
"clip_ratio/low_mean": 0.001392790290992707,
|
| 1120 |
+
"clip_ratio/low_min": 0.0,
|
| 1121 |
+
"clip_ratio/region_mean": 0.0026168957992922515,
|
| 1122 |
+
"completions/clipped_ratio": 0.0,
|
| 1123 |
+
"completions/max_length": 9253.0,
|
| 1124 |
+
"completions/max_terminated_length": 9253.0,
|
| 1125 |
+
"completions/mean_length": 7692.15625,
|
| 1126 |
+
"completions/mean_terminated_length": 7692.15625,
|
| 1127 |
+
"completions/min_length": 293.0,
|
| 1128 |
+
"completions/min_terminated_length": 293.0,
|
| 1129 |
+
"entropy": 0.0828928763512522,
|
| 1130 |
+
"epoch": 0.00047,
|
| 1131 |
+
"frac_reward_zero_std": 0.0,
|
| 1132 |
+
"grad_norm": 0.5421693921089172,
|
| 1133 |
+
"kl": 0.13829960371367633,
|
| 1134 |
+
"learning_rate": 3.740760226154283e-05,
|
| 1135 |
+
"loss": 0.1124,
|
| 1136 |
+
"num_tokens": 6512018.0,
|
| 1137 |
+
"reward": -0.13337820768356323,
|
| 1138 |
+
"reward_std": 0.6952483057975769,
|
| 1139 |
+
"rewards/rollout_reward_func/mean": -0.13337820768356323,
|
| 1140 |
+
"rewards/rollout_reward_func/std": 0.6867809295654297,
|
| 1141 |
+
"sampling/importance_sampling_ratio/max": 1.9118043184280396,
|
| 1142 |
+
"sampling/importance_sampling_ratio/mean": 1.000080943107605,
|
| 1143 |
+
"sampling/importance_sampling_ratio/min": 0.6484359502792358,
|
| 1144 |
+
"sampling/sampling_logp_difference/max": 0.6480474472045898,
|
| 1145 |
+
"sampling/sampling_logp_difference/mean": 0.007844729349017143,
|
| 1146 |
+
"step": 47,
|
| 1147 |
+
"step_time": 89.50516965200086
|
| 1148 |
+
},
|
| 1149 |
+
{
|
| 1150 |
+
"clip_ratio/high_max": 0.0034878277801908553,
|
| 1151 |
+
"clip_ratio/high_mean": 0.002519218367524445,
|
| 1152 |
+
"clip_ratio/low_mean": 0.00764669178170152,
|
| 1153 |
+
"clip_ratio/low_min": 0.0013888889225199819,
|
| 1154 |
+
"clip_ratio/region_mean": 0.010165910149225965,
|
| 1155 |
+
"entropy": 0.08108305186033249,
|
| 1156 |
+
"epoch": 0.00048,
|
| 1157 |
+
"grad_norm": 0.5435065031051636,
|
| 1158 |
+
"kl": 0.15144605189561844,
|
| 1159 |
+
"learning_rate": 3.2161862710939476e-05,
|
| 1160 |
+
"loss": 0.1097,
|
| 1161 |
+
"step": 48,
|
| 1162 |
+
"step_time": 28.342568254000525
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.004411048837937415,
|
| 1166 |
+
"clip_ratio/high_mean": 0.0022055244189687073,
|
| 1167 |
+
"clip_ratio/low_mean": 0.0010455680603627115,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.003251092479331419,
|
| 1170 |
+
"completions/clipped_ratio": 0.0,
|
| 1171 |
+
"completions/max_length": 9355.0,
|
| 1172 |
+
"completions/max_terminated_length": 9355.0,
|
| 1173 |
+
"completions/mean_length": 7641.09375,
|
| 1174 |
+
"completions/mean_terminated_length": 7641.09375,
|
| 1175 |
+
"completions/min_length": 395.0,
|
| 1176 |
+
"completions/min_terminated_length": 395.0,
|
| 1177 |
+
"entropy": 0.06896222359500825,
|
| 1178 |
+
"epoch": 0.00049,
|
| 1179 |
+
"frac_reward_zero_std": 0.0,
|
| 1180 |
+
"grad_norm": 0.7906138300895691,
|
| 1181 |
+
"kl": 0.17947973730042577,
|
| 1182 |
+
"learning_rate": 2.8242045338402468e-05,
|
| 1183 |
+
"loss": 0.0025,
|
| 1184 |
+
"num_tokens": 6783110.0,
|
| 1185 |
+
"reward": -0.24048486351966858,
|
| 1186 |
+
"reward_std": 0.5240083932876587,
|
| 1187 |
+
"rewards/rollout_reward_func/mean": -0.24048486351966858,
|
| 1188 |
+
"rewards/rollout_reward_func/std": 0.6190164685249329,
|
| 1189 |
+
"sampling/importance_sampling_ratio/max": 1.339056372642517,
|
| 1190 |
+
"sampling/importance_sampling_ratio/mean": 1.000028371810913,
|
| 1191 |
+
"sampling/importance_sampling_ratio/min": 0.6448177099227905,
|
| 1192 |
+
"sampling/sampling_logp_difference/max": 0.43878769874572754,
|
| 1193 |
+
"sampling/sampling_logp_difference/mean": 0.0061599984765052795,
|
| 1194 |
+
"step": 49,
|
| 1195 |
+
"step_time": 91.6421234169984
|
| 1196 |
+
},
|
| 1197 |
+
{
|
| 1198 |
+
"clip_ratio/high_max": 0.00502964504994452,
|
| 1199 |
+
"clip_ratio/high_mean": 0.00251482252497226,
|
| 1200 |
+
"clip_ratio/low_mean": 0.00382724724477157,
|
| 1201 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 1202 |
+
"clip_ratio/region_mean": 0.00634206976974383,
|
| 1203 |
+
"entropy": 0.0660756464349106,
|
| 1204 |
+
"epoch": 0.0005,
|
| 1205 |
+
"grad_norm": 0.6092560887336731,
|
| 1206 |
+
"kl": 0.1758871516212821,
|
| 1207 |
+
"learning_rate": 2.5819464972482288e-05,
|
| 1208 |
+
"loss": -0.0001,
|
| 1209 |
+
"step": 50,
|
| 1210 |
+
"step_time": 28.18612482699973
|
| 1211 |
+
}
|
| 1212 |
+
],
|
| 1213 |
+
"logging_steps": 1.0,
|
| 1214 |
+
"max_steps": 50,
|
| 1215 |
+
"num_input_tokens_seen": 6783110,
|
| 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:019b24481996b285ffc979c3d1c3f694891c8900b84f610887b4f2a87d8967c6
|
| 3 |
+
size 8145
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|