Instructions to use bimabk/test_gin_rummy_fix2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/test_gin_rummy_fix2 with PEFT:
Base model is not found.
- Transformers
How to use bimabk/test_gin_rummy_fix2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/test_gin_rummy_fix2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bimabk/test_gin_rummy_fix2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use bimabk/test_gin_rummy_fix2 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_fix2" # 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_fix2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/test_gin_rummy_fix2
- SGLang
How to use bimabk/test_gin_rummy_fix2 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_fix2" \ --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_fix2", "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_fix2" \ --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_fix2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/test_gin_rummy_fix2 with Docker Model Runner:
docker model run hf.co/bimabk/test_gin_rummy_fix2
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 +1319 -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 |
+
"o_proj",
|
| 33 |
+
"down_proj",
|
| 34 |
+
"up_proj",
|
| 35 |
+
"gate_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"k_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af4d3b113c62a33eb1defe9d0552171ad65f80af82ec035625130db5741362c7
|
| 3 |
+
size 239536272
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
50,-0.3934959270060062
|
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,1319 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": 11287.0,
|
| 20 |
+
"completions/max_terminated_length": 11287.0,
|
| 21 |
+
"completions/mean_length": 8394.21875,
|
| 22 |
+
"completions/mean_terminated_length": 8394.21875,
|
| 23 |
+
"completions/min_length": 2887.0,
|
| 24 |
+
"completions/min_terminated_length": 2887.0,
|
| 25 |
+
"entropy": 0.11788358655758202,
|
| 26 |
+
"epoch": 1e-05,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 1.6996961832046509,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 0.0,
|
| 31 |
+
"loss": 0.1667,
|
| 32 |
+
"num_tokens": 297100.0,
|
| 33 |
+
"reward": -0.03610033914446831,
|
| 34 |
+
"reward_std": 0.7386711835861206,
|
| 35 |
+
"rewards/rollout_eval_reward_func/mean": 0.2578760087490082,
|
| 36 |
+
"rewards/rollout_eval_reward_func/std": 0.30121663212776184,
|
| 37 |
+
"rewards/rollout_reward_func/mean": -0.03610033914446831,
|
| 38 |
+
"rewards/rollout_reward_func/std": 0.728388786315918,
|
| 39 |
+
"sampling/importance_sampling_ratio/max": 1.6487237215042114,
|
| 40 |
+
"sampling/importance_sampling_ratio/mean": 0.9993462562561035,
|
| 41 |
+
"sampling/importance_sampling_ratio/min": 0.44016358256340027,
|
| 42 |
+
"sampling/sampling_logp_difference/max": 0.8206088542938232,
|
| 43 |
+
"sampling/sampling_logp_difference/mean": 0.011885393410921097,
|
| 44 |
+
"step": 1,
|
| 45 |
+
"step_time": 73.96733120499948
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"clip_ratio/high_max": 0.0,
|
| 49 |
+
"clip_ratio/high_mean": 0.0,
|
| 50 |
+
"clip_ratio/low_mean": 0.0,
|
| 51 |
+
"clip_ratio/low_min": 0.0,
|
| 52 |
+
"clip_ratio/region_mean": 0.0,
|
| 53 |
+
"entropy": 0.11788358655758202,
|
| 54 |
+
"epoch": 2e-05,
|
| 55 |
+
"grad_norm": 1.699277400970459,
|
| 56 |
+
"kl": 0.0,
|
| 57 |
+
"learning_rate": 2.8571428571428573e-06,
|
| 58 |
+
"loss": 0.1667,
|
| 59 |
+
"step": 2,
|
| 60 |
+
"step_time": 33.627345983999476
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"clip_ratio/high_max": 0.005571161163970828,
|
| 64 |
+
"clip_ratio/high_mean": 0.0031328028126154095,
|
| 65 |
+
"clip_ratio/low_mean": 0.007165575778344646,
|
| 66 |
+
"clip_ratio/low_min": 0.0007102272938936949,
|
| 67 |
+
"clip_ratio/region_mean": 0.010298378649167717,
|
| 68 |
+
"completions/clipped_ratio": 0.0,
|
| 69 |
+
"completions/max_length": 11163.0,
|
| 70 |
+
"completions/max_terminated_length": 11163.0,
|
| 71 |
+
"completions/mean_length": 8984.84375,
|
| 72 |
+
"completions/mean_terminated_length": 8984.84375,
|
| 73 |
+
"completions/min_length": 346.0,
|
| 74 |
+
"completions/min_terminated_length": 346.0,
|
| 75 |
+
"entropy": 0.14975268673151731,
|
| 76 |
+
"epoch": 3e-05,
|
| 77 |
+
"frac_reward_zero_std": 0.0,
|
| 78 |
+
"grad_norm": 1.3866604566574097,
|
| 79 |
+
"kl": 0.002339825068702339,
|
| 80 |
+
"learning_rate": 5.7142857142857145e-06,
|
| 81 |
+
"loss": -0.2053,
|
| 82 |
+
"num_tokens": 613530.0,
|
| 83 |
+
"reward": -0.20636191964149475,
|
| 84 |
+
"reward_std": 0.5412060022354126,
|
| 85 |
+
"rewards/rollout_eval_reward_func/mean": 0.13351118564605713,
|
| 86 |
+
"rewards/rollout_eval_reward_func/std": 0.24266032874584198,
|
| 87 |
+
"rewards/rollout_reward_func/mean": -0.20636191964149475,
|
| 88 |
+
"rewards/rollout_reward_func/std": 0.542148232460022,
|
| 89 |
+
"sampling/importance_sampling_ratio/max": 1.7320148944854736,
|
| 90 |
+
"sampling/importance_sampling_ratio/mean": 1.0001366138458252,
|
| 91 |
+
"sampling/importance_sampling_ratio/min": 0.5123909115791321,
|
| 92 |
+
"sampling/sampling_logp_difference/max": 0.6686674356460571,
|
| 93 |
+
"sampling/sampling_logp_difference/mean": 0.014301672577857971,
|
| 94 |
+
"step": 3,
|
| 95 |
+
"step_time": 76.45311136299915
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"clip_ratio/high_max": 0.0063213135581463575,
|
| 99 |
+
"clip_ratio/high_mean": 0.003855101269437,
|
| 100 |
+
"clip_ratio/low_mean": 0.0049675037153065205,
|
| 101 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 102 |
+
"clip_ratio/region_mean": 0.00882260489743203,
|
| 103 |
+
"entropy": 0.14919065916910768,
|
| 104 |
+
"epoch": 4e-05,
|
| 105 |
+
"grad_norm": 1.35505211353302,
|
| 106 |
+
"kl": 0.0014064895312912995,
|
| 107 |
+
"learning_rate": 8.571428571428573e-06,
|
| 108 |
+
"loss": -0.2073,
|
| 109 |
+
"step": 4,
|
| 110 |
+
"step_time": 34.60768302199995
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"clip_ratio/high_max": 0.007777874590829015,
|
| 114 |
+
"clip_ratio/high_mean": 0.0042565843323245645,
|
| 115 |
+
"clip_ratio/low_mean": 0.003121181536698714,
|
| 116 |
+
"clip_ratio/low_min": 0.0,
|
| 117 |
+
"clip_ratio/region_mean": 0.0073777658108156174,
|
| 118 |
+
"completions/clipped_ratio": 0.0,
|
| 119 |
+
"completions/max_length": 11443.0,
|
| 120 |
+
"completions/max_terminated_length": 11443.0,
|
| 121 |
+
"completions/mean_length": 8618.625,
|
| 122 |
+
"completions/mean_terminated_length": 8618.625,
|
| 123 |
+
"completions/min_length": 336.0,
|
| 124 |
+
"completions/min_terminated_length": 336.0,
|
| 125 |
+
"entropy": 0.11723149428144097,
|
| 126 |
+
"epoch": 5e-05,
|
| 127 |
+
"frac_reward_zero_std": 0.0,
|
| 128 |
+
"grad_norm": 1.2567578554153442,
|
| 129 |
+
"kl": 0.0012220569333294407,
|
| 130 |
+
"learning_rate": 1.1428571428571429e-05,
|
| 131 |
+
"loss": 0.14,
|
| 132 |
+
"num_tokens": 917591.0,
|
| 133 |
+
"reward": -0.0526789128780365,
|
| 134 |
+
"reward_std": 0.7260563373565674,
|
| 135 |
+
"rewards/rollout_eval_reward_func/mean": 0.24098068475723267,
|
| 136 |
+
"rewards/rollout_eval_reward_func/std": 0.30969831347465515,
|
| 137 |
+
"rewards/rollout_reward_func/mean": -0.0526789128780365,
|
| 138 |
+
"rewards/rollout_reward_func/std": 0.7283722758293152,
|
| 139 |
+
"sampling/importance_sampling_ratio/max": 1.8090978860855103,
|
| 140 |
+
"sampling/importance_sampling_ratio/mean": 0.9998831748962402,
|
| 141 |
+
"sampling/importance_sampling_ratio/min": 0.46312808990478516,
|
| 142 |
+
"sampling/sampling_logp_difference/max": 0.7697516679763794,
|
| 143 |
+
"sampling/sampling_logp_difference/mean": 0.012965342029929161,
|
| 144 |
+
"step": 5,
|
| 145 |
+
"step_time": 76.55231227500053
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"clip_ratio/high_max": 0.006731559580657631,
|
| 149 |
+
"clip_ratio/high_mean": 0.0033657797903288156,
|
| 150 |
+
"clip_ratio/low_mean": 0.0034470450482331216,
|
| 151 |
+
"clip_ratio/low_min": 0.0,
|
| 152 |
+
"clip_ratio/region_mean": 0.006812824809458107,
|
| 153 |
+
"entropy": 0.1164796226657927,
|
| 154 |
+
"epoch": 6e-05,
|
| 155 |
+
"grad_norm": 1.2304322719573975,
|
| 156 |
+
"kl": 0.001537940081107081,
|
| 157 |
+
"learning_rate": 1.4285714285714285e-05,
|
| 158 |
+
"loss": 0.1411,
|
| 159 |
+
"step": 6,
|
| 160 |
+
"step_time": 34.486522669000806
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"clip_ratio/high_max": 0.004329371266067028,
|
| 164 |
+
"clip_ratio/high_mean": 0.002164685633033514,
|
| 165 |
+
"clip_ratio/low_mean": 0.0018710909644141793,
|
| 166 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 167 |
+
"clip_ratio/region_mean": 0.004035776626551524,
|
| 168 |
+
"completions/clipped_ratio": 0.0,
|
| 169 |
+
"completions/max_length": 11026.0,
|
| 170 |
+
"completions/max_terminated_length": 11026.0,
|
| 171 |
+
"completions/mean_length": 8904.9375,
|
| 172 |
+
"completions/mean_terminated_length": 8904.9375,
|
| 173 |
+
"completions/min_length": 1870.0,
|
| 174 |
+
"completions/min_terminated_length": 1870.0,
|
| 175 |
+
"entropy": 0.11141919903457165,
|
| 176 |
+
"epoch": 7e-05,
|
| 177 |
+
"frac_reward_zero_std": 0.0,
|
| 178 |
+
"grad_norm": 2.0392634868621826,
|
| 179 |
+
"kl": 0.0028663520533882547,
|
| 180 |
+
"learning_rate": 1.7142857142857145e-05,
|
| 181 |
+
"loss": 0.2956,
|
| 182 |
+
"num_tokens": 1231697.0,
|
| 183 |
+
"reward": 0.06170085445046425,
|
| 184 |
+
"reward_std": 0.6284129619598389,
|
| 185 |
+
"rewards/rollout_eval_reward_func/mean": 0.1812753975391388,
|
| 186 |
+
"rewards/rollout_eval_reward_func/std": 0.29651859402656555,
|
| 187 |
+
"rewards/rollout_reward_func/mean": 0.06170085445046425,
|
| 188 |
+
"rewards/rollout_reward_func/std": 0.6143175363540649,
|
| 189 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 190 |
+
"sampling/importance_sampling_ratio/mean": 1.0020291805267334,
|
| 191 |
+
"sampling/importance_sampling_ratio/min": 0.4785745441913605,
|
| 192 |
+
"sampling/sampling_logp_difference/max": 1.289139747619629,
|
| 193 |
+
"sampling/sampling_logp_difference/mean": 0.012369468808174133,
|
| 194 |
+
"step": 7,
|
| 195 |
+
"step_time": 79.23396538400038
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"clip_ratio/high_max": 0.004530098114628345,
|
| 199 |
+
"clip_ratio/high_mean": 0.0022650490573141724,
|
| 200 |
+
"clip_ratio/low_mean": 0.0062050665146671236,
|
| 201 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 202 |
+
"clip_ratio/region_mean": 0.008470115601085126,
|
| 203 |
+
"entropy": 0.10932181030511856,
|
| 204 |
+
"epoch": 8e-05,
|
| 205 |
+
"grad_norm": 1.4861699342727661,
|
| 206 |
+
"kl": 0.004455661201063776,
|
| 207 |
+
"learning_rate": 2e-05,
|
| 208 |
+
"loss": 0.291,
|
| 209 |
+
"step": 8,
|
| 210 |
+
"step_time": 33.553139639999245
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"clip_ratio/high_max": 0.006702587008476257,
|
| 214 |
+
"clip_ratio/high_mean": 0.00395225512329489,
|
| 215 |
+
"clip_ratio/low_mean": 0.001561393088195473,
|
| 216 |
+
"clip_ratio/low_min": 0.0,
|
| 217 |
+
"clip_ratio/region_mean": 0.005513648211490363,
|
| 218 |
+
"completions/clipped_ratio": 0.0,
|
| 219 |
+
"completions/max_length": 11738.0,
|
| 220 |
+
"completions/max_terminated_length": 11738.0,
|
| 221 |
+
"completions/mean_length": 7849.21875,
|
| 222 |
+
"completions/mean_terminated_length": 7849.21875,
|
| 223 |
+
"completions/min_length": 323.0,
|
| 224 |
+
"completions/min_terminated_length": 323.0,
|
| 225 |
+
"entropy": 0.10142783727496862,
|
| 226 |
+
"epoch": 9e-05,
|
| 227 |
+
"frac_reward_zero_std": 0.0,
|
| 228 |
+
"grad_norm": 1.1208703517913818,
|
| 229 |
+
"kl": 0.005338215534720803,
|
| 230 |
+
"learning_rate": 2.2857142857142858e-05,
|
| 231 |
+
"loss": -0.0444,
|
| 232 |
+
"num_tokens": 1511511.0,
|
| 233 |
+
"reward": -0.1137353852391243,
|
| 234 |
+
"reward_std": 0.6742830872535706,
|
| 235 |
+
"rewards/rollout_eval_reward_func/mean": 0.21138212084770203,
|
| 236 |
+
"rewards/rollout_eval_reward_func/std": 0.2764902412891388,
|
| 237 |
+
"rewards/rollout_reward_func/mean": -0.1137353852391243,
|
| 238 |
+
"rewards/rollout_reward_func/std": 0.6757553219795227,
|
| 239 |
+
"sampling/importance_sampling_ratio/max": 1.9115883111953735,
|
| 240 |
+
"sampling/importance_sampling_ratio/mean": 0.9999130964279175,
|
| 241 |
+
"sampling/importance_sampling_ratio/min": 0.6430048942565918,
|
| 242 |
+
"sampling/sampling_logp_difference/max": 0.6479344367980957,
|
| 243 |
+
"sampling/sampling_logp_difference/mean": 0.009747568517923355,
|
| 244 |
+
"step": 9,
|
| 245 |
+
"step_time": 78.92596304499875
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"clip_ratio/high_max": 0.014946904906537384,
|
| 249 |
+
"clip_ratio/high_mean": 0.008911944547435269,
|
| 250 |
+
"clip_ratio/low_mean": 0.008717332733795047,
|
| 251 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 252 |
+
"clip_ratio/region_mean": 0.017629277397645637,
|
| 253 |
+
"entropy": 0.09894524328410625,
|
| 254 |
+
"epoch": 0.0001,
|
| 255 |
+
"grad_norm": 0.8779318332672119,
|
| 256 |
+
"kl": 0.012525228099548258,
|
| 257 |
+
"learning_rate": 2.5714285714285714e-05,
|
| 258 |
+
"loss": -0.0474,
|
| 259 |
+
"step": 10,
|
| 260 |
+
"step_time": 33.86218772000029
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"clip_ratio/high_max": 0.005196896672714502,
|
| 264 |
+
"clip_ratio/high_mean": 0.002598448336357251,
|
| 265 |
+
"clip_ratio/low_mean": 0.00565887795528397,
|
| 266 |
+
"clip_ratio/low_min": 0.0,
|
| 267 |
+
"clip_ratio/region_mean": 0.00825732629164122,
|
| 268 |
+
"completions/clipped_ratio": 0.0,
|
| 269 |
+
"completions/max_length": 11663.0,
|
| 270 |
+
"completions/max_terminated_length": 11663.0,
|
| 271 |
+
"completions/mean_length": 9176.8125,
|
| 272 |
+
"completions/mean_terminated_length": 9176.8125,
|
| 273 |
+
"completions/min_length": 2189.0,
|
| 274 |
+
"completions/min_terminated_length": 2189.0,
|
| 275 |
+
"entropy": 0.1143840029835701,
|
| 276 |
+
"epoch": 0.00011,
|
| 277 |
+
"frac_reward_zero_std": 0.0,
|
| 278 |
+
"grad_norm": 1.9076919555664062,
|
| 279 |
+
"kl": 0.02556461405765731,
|
| 280 |
+
"learning_rate": 2.857142857142857e-05,
|
| 281 |
+
"loss": 0.1457,
|
| 282 |
+
"num_tokens": 1833833.0,
|
| 283 |
+
"reward": -0.07531464844942093,
|
| 284 |
+
"reward_std": 0.6547598838806152,
|
| 285 |
+
"rewards/rollout_eval_reward_func/mean": 0.1659044623374939,
|
| 286 |
+
"rewards/rollout_eval_reward_func/std": 0.27956825494766235,
|
| 287 |
+
"rewards/rollout_reward_func/mean": -0.07531464844942093,
|
| 288 |
+
"rewards/rollout_reward_func/std": 0.6382541060447693,
|
| 289 |
+
"sampling/importance_sampling_ratio/max": 2.9357423782348633,
|
| 290 |
+
"sampling/importance_sampling_ratio/mean": 0.9987922310829163,
|
| 291 |
+
"sampling/importance_sampling_ratio/min": 0.4146113395690918,
|
| 292 |
+
"sampling/sampling_logp_difference/max": 1.0769603252410889,
|
| 293 |
+
"sampling/sampling_logp_difference/mean": 0.01623542606830597,
|
| 294 |
+
"step": 11,
|
| 295 |
+
"step_time": 85.64898062899738
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"clip_ratio/high_max": 0.007925633108243346,
|
| 299 |
+
"clip_ratio/high_mean": 0.003962816554121673,
|
| 300 |
+
"clip_ratio/low_mean": 0.013630853296490386,
|
| 301 |
+
"clip_ratio/low_min": 0.004900663043372333,
|
| 302 |
+
"clip_ratio/region_mean": 0.01759366990881972,
|
| 303 |
+
"entropy": 0.11427765572443604,
|
| 304 |
+
"epoch": 0.00012,
|
| 305 |
+
"grad_norm": 1.6511975526809692,
|
| 306 |
+
"kl": 0.048679544823244214,
|
| 307 |
+
"learning_rate": 3.142857142857143e-05,
|
| 308 |
+
"loss": 0.142,
|
| 309 |
+
"step": 12,
|
| 310 |
+
"step_time": 34.99860805099979
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"clip_ratio/high_max": 0.003243650193326175,
|
| 314 |
+
"clip_ratio/high_mean": 0.0016218250966630876,
|
| 315 |
+
"clip_ratio/low_mean": 0.0024501511070411652,
|
| 316 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 317 |
+
"clip_ratio/region_mean": 0.004071976203704253,
|
| 318 |
+
"completions/clipped_ratio": 0.0,
|
| 319 |
+
"completions/max_length": 11007.0,
|
| 320 |
+
"completions/max_terminated_length": 11007.0,
|
| 321 |
+
"completions/mean_length": 8355.625,
|
| 322 |
+
"completions/mean_terminated_length": 8355.625,
|
| 323 |
+
"completions/min_length": 874.0,
|
| 324 |
+
"completions/min_terminated_length": 874.0,
|
| 325 |
+
"entropy": 0.11024783831089735,
|
| 326 |
+
"epoch": 0.00013,
|
| 327 |
+
"frac_reward_zero_std": 0.0,
|
| 328 |
+
"grad_norm": 2.4035089015960693,
|
| 329 |
+
"kl": 0.08716274873586372,
|
| 330 |
+
"learning_rate": 3.428571428571429e-05,
|
| 331 |
+
"loss": 0.1218,
|
| 332 |
+
"num_tokens": 2130373.0,
|
| 333 |
+
"reward": 0.020019814372062683,
|
| 334 |
+
"reward_std": 0.6314284801483154,
|
| 335 |
+
"rewards/rollout_eval_reward_func/mean": 0.21633638441562653,
|
| 336 |
+
"rewards/rollout_eval_reward_func/std": 0.31151828169822693,
|
| 337 |
+
"rewards/rollout_reward_func/mean": 0.020019814372062683,
|
| 338 |
+
"rewards/rollout_reward_func/std": 0.689924418926239,
|
| 339 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 340 |
+
"sampling/importance_sampling_ratio/mean": 1.0034040212631226,
|
| 341 |
+
"sampling/importance_sampling_ratio/min": 0.20111392438411713,
|
| 342 |
+
"sampling/sampling_logp_difference/max": 1.6038837432861328,
|
| 343 |
+
"sampling/sampling_logp_difference/mean": 0.02121809497475624,
|
| 344 |
+
"step": 13,
|
| 345 |
+
"step_time": 86.70206161200258
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"clip_ratio/high_max": 0.009814315650146455,
|
| 349 |
+
"clip_ratio/high_mean": 0.005678762652678415,
|
| 350 |
+
"clip_ratio/low_mean": 0.012552198284538463,
|
| 351 |
+
"clip_ratio/low_min": 0.004237600835040212,
|
| 352 |
+
"clip_ratio/region_mean": 0.01823096099542454,
|
| 353 |
+
"entropy": 0.10833629406988621,
|
| 354 |
+
"epoch": 0.00014,
|
| 355 |
+
"grad_norm": 2.254364490509033,
|
| 356 |
+
"kl": 0.07821251518907957,
|
| 357 |
+
"learning_rate": 3.7142857142857143e-05,
|
| 358 |
+
"loss": 0.1127,
|
| 359 |
+
"step": 14,
|
| 360 |
+
"step_time": 33.7453661569989
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"clip_ratio/high_max": 0.004190173640381545,
|
| 364 |
+
"clip_ratio/high_mean": 0.0020950868201907724,
|
| 365 |
+
"clip_ratio/low_mean": 0.0028092548600398004,
|
| 366 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 367 |
+
"clip_ratio/region_mean": 0.004904341680230573,
|
| 368 |
+
"completions/clipped_ratio": 0.0,
|
| 369 |
+
"completions/max_length": 10761.0,
|
| 370 |
+
"completions/max_terminated_length": 10761.0,
|
| 371 |
+
"completions/mean_length": 8177.6875,
|
| 372 |
+
"completions/mean_terminated_length": 8177.6875,
|
| 373 |
+
"completions/min_length": 811.0,
|
| 374 |
+
"completions/min_terminated_length": 811.0,
|
| 375 |
+
"entropy": 0.10465786419808865,
|
| 376 |
+
"epoch": 0.00015,
|
| 377 |
+
"frac_reward_zero_std": 0.0,
|
| 378 |
+
"grad_norm": 1.6561901569366455,
|
| 379 |
+
"kl": 0.1072866928880103,
|
| 380 |
+
"learning_rate": 4e-05,
|
| 381 |
+
"loss": 0.356,
|
| 382 |
+
"num_tokens": 2420931.0,
|
| 383 |
+
"reward": 0.11278900504112244,
|
| 384 |
+
"reward_std": 0.6452403664588928,
|
| 385 |
+
"rewards/rollout_eval_reward_func/mean": 0.23056402802467346,
|
| 386 |
+
"rewards/rollout_eval_reward_func/std": 0.3142653703689575,
|
| 387 |
+
"rewards/rollout_reward_func/mean": 0.11278900504112244,
|
| 388 |
+
"rewards/rollout_reward_func/std": 0.6579005718231201,
|
| 389 |
+
"sampling/importance_sampling_ratio/max": 2.278707504272461,
|
| 390 |
+
"sampling/importance_sampling_ratio/mean": 0.9995414018630981,
|
| 391 |
+
"sampling/importance_sampling_ratio/min": 0.18554040789604187,
|
| 392 |
+
"sampling/sampling_logp_difference/max": 1.6844825744628906,
|
| 393 |
+
"sampling/sampling_logp_difference/mean": 0.023679137229919434,
|
| 394 |
+
"step": 15,
|
| 395 |
+
"step_time": 84.81073227599518
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"clip_ratio/high_max": 0.00427410431439057,
|
| 399 |
+
"clip_ratio/high_mean": 0.002137052157195285,
|
| 400 |
+
"clip_ratio/low_mean": 0.013172850711271167,
|
| 401 |
+
"clip_ratio/low_min": 0.00423778424737975,
|
| 402 |
+
"clip_ratio/region_mean": 0.015309902926674113,
|
| 403 |
+
"entropy": 0.1049683466553688,
|
| 404 |
+
"epoch": 0.00016,
|
| 405 |
+
"grad_norm": 1.5131983757019043,
|
| 406 |
+
"kl": 0.12803897575940937,
|
| 407 |
+
"learning_rate": 4.2857142857142856e-05,
|
| 408 |
+
"loss": 0.3499,
|
| 409 |
+
"step": 16,
|
| 410 |
+
"step_time": 32.4860796890016
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"clip_ratio/high_max": 0.006543069262988865,
|
| 414 |
+
"clip_ratio/high_mean": 0.003775566816329956,
|
| 415 |
+
"clip_ratio/low_mean": 0.0031609196157660335,
|
| 416 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 417 |
+
"clip_ratio/region_mean": 0.00693648643209599,
|
| 418 |
+
"completions/clipped_ratio": 0.0,
|
| 419 |
+
"completions/max_length": 11153.0,
|
| 420 |
+
"completions/max_terminated_length": 11153.0,
|
| 421 |
+
"completions/mean_length": 8529.6875,
|
| 422 |
+
"completions/mean_terminated_length": 8529.6875,
|
| 423 |
+
"completions/min_length": 330.0,
|
| 424 |
+
"completions/min_terminated_length": 330.0,
|
| 425 |
+
"entropy": 0.10206164792180061,
|
| 426 |
+
"epoch": 0.00017,
|
| 427 |
+
"frac_reward_zero_std": 0.0,
|
| 428 |
+
"grad_norm": 1.3023760318756104,
|
| 429 |
+
"kl": 0.09016790508758277,
|
| 430 |
+
"learning_rate": 4.5714285714285716e-05,
|
| 431 |
+
"loss": -0.055,
|
| 432 |
+
"num_tokens": 2722874.0,
|
| 433 |
+
"reward": 0.0452897846698761,
|
| 434 |
+
"reward_std": 0.5471868515014648,
|
| 435 |
+
"rewards/rollout_eval_reward_func/mean": 0.16552338004112244,
|
| 436 |
+
"rewards/rollout_eval_reward_func/std": 0.2769395411014557,
|
| 437 |
+
"rewards/rollout_reward_func/mean": 0.0452897846698761,
|
| 438 |
+
"rewards/rollout_reward_func/std": 0.5707083344459534,
|
| 439 |
+
"sampling/importance_sampling_ratio/max": 1.9813306331634521,
|
| 440 |
+
"sampling/importance_sampling_ratio/mean": 0.9965455532073975,
|
| 441 |
+
"sampling/importance_sampling_ratio/min": 0.1743103712797165,
|
| 442 |
+
"sampling/sampling_logp_difference/max": 1.746917724609375,
|
| 443 |
+
"sampling/sampling_logp_difference/mean": 0.021249916404485703,
|
| 444 |
+
"step": 17,
|
| 445 |
+
"step_time": 93.31380597800035
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"clip_ratio/high_max": 0.013804474321659654,
|
| 449 |
+
"clip_ratio/high_mean": 0.008459640172077343,
|
| 450 |
+
"clip_ratio/low_mean": 0.009875382616883144,
|
| 451 |
+
"clip_ratio/low_min": 0.002192793588619679,
|
| 452 |
+
"clip_ratio/region_mean": 0.018335022643441334,
|
| 453 |
+
"entropy": 0.10283505916595459,
|
| 454 |
+
"epoch": 0.00018,
|
| 455 |
+
"grad_norm": 1.0806056261062622,
|
| 456 |
+
"kl": 0.11839380749734119,
|
| 457 |
+
"learning_rate": 4.8571428571428576e-05,
|
| 458 |
+
"loss": -0.0586,
|
| 459 |
+
"step": 18,
|
| 460 |
+
"step_time": 32.5428760199984
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"clip_ratio/high_max": 0.004807963909115642,
|
| 464 |
+
"clip_ratio/high_mean": 0.002403981954557821,
|
| 465 |
+
"clip_ratio/low_mean": 0.004428166459547356,
|
| 466 |
+
"clip_ratio/low_min": 0.0006944444612599909,
|
| 467 |
+
"clip_ratio/region_mean": 0.006832148414105177,
|
| 468 |
+
"completions/clipped_ratio": 0.0,
|
| 469 |
+
"completions/max_length": 10399.0,
|
| 470 |
+
"completions/max_terminated_length": 10399.0,
|
| 471 |
+
"completions/mean_length": 7525.5625,
|
| 472 |
+
"completions/mean_terminated_length": 7525.5625,
|
| 473 |
+
"completions/min_length": 1309.0,
|
| 474 |
+
"completions/min_terminated_length": 1309.0,
|
| 475 |
+
"entropy": 0.10726649826392531,
|
| 476 |
+
"epoch": 0.00019,
|
| 477 |
+
"frac_reward_zero_std": 0.0,
|
| 478 |
+
"grad_norm": 1.3821837902069092,
|
| 479 |
+
"kl": 0.09694959409534931,
|
| 480 |
+
"learning_rate": 5.142857142857143e-05,
|
| 481 |
+
"loss": 0.2508,
|
| 482 |
+
"num_tokens": 2992614.0,
|
| 483 |
+
"reward": 0.22085225582122803,
|
| 484 |
+
"reward_std": 0.7439246773719788,
|
| 485 |
+
"rewards/rollout_eval_reward_func/mean": 0.32672765851020813,
|
| 486 |
+
"rewards/rollout_eval_reward_func/std": 0.3242030739784241,
|
| 487 |
+
"rewards/rollout_reward_func/mean": 0.22085225582122803,
|
| 488 |
+
"rewards/rollout_reward_func/std": 0.7110569477081299,
|
| 489 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 490 |
+
"sampling/importance_sampling_ratio/mean": 1.0050089359283447,
|
| 491 |
+
"sampling/importance_sampling_ratio/min": 0.2929533123970032,
|
| 492 |
+
"sampling/sampling_logp_difference/max": 1.916597604751587,
|
| 493 |
+
"sampling/sampling_logp_difference/mean": 0.022352777421474457,
|
| 494 |
+
"step": 19,
|
| 495 |
+
"step_time": 89.20460286800153
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"clip_ratio/high_max": 0.011035054223611951,
|
| 499 |
+
"clip_ratio/high_mean": 0.0055175271118059754,
|
| 500 |
+
"clip_ratio/low_mean": 0.018963277572765946,
|
| 501 |
+
"clip_ratio/low_min": 0.0055555556900799274,
|
| 502 |
+
"clip_ratio/region_mean": 0.024480804742779583,
|
| 503 |
+
"entropy": 0.1047364235855639,
|
| 504 |
+
"epoch": 0.0002,
|
| 505 |
+
"grad_norm": 0.9138187170028687,
|
| 506 |
+
"kl": 0.10579214652534574,
|
| 507 |
+
"learning_rate": 5.428571428571428e-05,
|
| 508 |
+
"loss": 0.2408,
|
| 509 |
+
"step": 20,
|
| 510 |
+
"step_time": 30.517773796002075
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"clip_ratio/high_max": 0.004395612399093807,
|
| 514 |
+
"clip_ratio/high_mean": 0.0028961520874872804,
|
| 515 |
+
"clip_ratio/low_mean": 0.0034880968159995973,
|
| 516 |
+
"clip_ratio/low_min": 0.0,
|
| 517 |
+
"clip_ratio/region_mean": 0.006384248874383047,
|
| 518 |
+
"completions/clipped_ratio": 0.0,
|
| 519 |
+
"completions/max_length": 11335.0,
|
| 520 |
+
"completions/max_terminated_length": 11335.0,
|
| 521 |
+
"completions/mean_length": 8358.6875,
|
| 522 |
+
"completions/mean_terminated_length": 8358.6875,
|
| 523 |
+
"completions/min_length": 749.0,
|
| 524 |
+
"completions/min_terminated_length": 749.0,
|
| 525 |
+
"entropy": 0.12294450332410634,
|
| 526 |
+
"epoch": 0.00021,
|
| 527 |
+
"frac_reward_zero_std": 0.0,
|
| 528 |
+
"grad_norm": 1.3461740016937256,
|
| 529 |
+
"kl": 0.19072263734415174,
|
| 530 |
+
"learning_rate": 5.714285714285714e-05,
|
| 531 |
+
"loss": -0.0037,
|
| 532 |
+
"num_tokens": 3288905.0,
|
| 533 |
+
"reward": -0.1559383124113083,
|
| 534 |
+
"reward_std": 0.5600723028182983,
|
| 535 |
+
"rewards/rollout_eval_reward_func/mean": 0.14430895447731018,
|
| 536 |
+
"rewards/rollout_eval_reward_func/std": 0.2627376317977905,
|
| 537 |
+
"rewards/rollout_reward_func/mean": -0.1559383124113083,
|
| 538 |
+
"rewards/rollout_reward_func/std": 0.5887359380722046,
|
| 539 |
+
"sampling/importance_sampling_ratio/max": 2.2654411792755127,
|
| 540 |
+
"sampling/importance_sampling_ratio/mean": 0.9976513385772705,
|
| 541 |
+
"sampling/importance_sampling_ratio/min": 0.20272883772850037,
|
| 542 |
+
"sampling/sampling_logp_difference/max": 1.595885992050171,
|
| 543 |
+
"sampling/sampling_logp_difference/mean": 0.02302836999297142,
|
| 544 |
+
"step": 21,
|
| 545 |
+
"step_time": 97.79121274199952
|
| 546 |
+
},
|
| 547 |
+
{
|
| 548 |
+
"clip_ratio/high_max": 0.015567402355372906,
|
| 549 |
+
"clip_ratio/high_mean": 0.009180392837151885,
|
| 550 |
+
"clip_ratio/low_mean": 0.017762881761882454,
|
| 551 |
+
"clip_ratio/low_min": 0.006345431203953922,
|
| 552 |
+
"clip_ratio/region_mean": 0.026943274919176474,
|
| 553 |
+
"entropy": 0.12321826652623713,
|
| 554 |
+
"epoch": 0.00022,
|
| 555 |
+
"grad_norm": 1.64430570602417,
|
| 556 |
+
"kl": 0.269085428211838,
|
| 557 |
+
"learning_rate": 6e-05,
|
| 558 |
+
"loss": -0.0084,
|
| 559 |
+
"step": 22,
|
| 560 |
+
"step_time": 32.807887424998626
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"clip_ratio/high_max": 0.003910088969860226,
|
| 564 |
+
"clip_ratio/high_mean": 0.001955044484930113,
|
| 565 |
+
"clip_ratio/low_mean": 0.002580859523732215,
|
| 566 |
+
"clip_ratio/low_min": 0.0,
|
| 567 |
+
"clip_ratio/region_mean": 0.004535904008662328,
|
| 568 |
+
"completions/clipped_ratio": 0.0,
|
| 569 |
+
"completions/max_length": 11344.0,
|
| 570 |
+
"completions/max_terminated_length": 11344.0,
|
| 571 |
+
"completions/mean_length": 8706.71875,
|
| 572 |
+
"completions/mean_terminated_length": 8706.71875,
|
| 573 |
+
"completions/min_length": 1846.0,
|
| 574 |
+
"completions/min_terminated_length": 1846.0,
|
| 575 |
+
"entropy": 0.1066858924459666,
|
| 576 |
+
"epoch": 0.00023,
|
| 577 |
+
"frac_reward_zero_std": 0.0,
|
| 578 |
+
"grad_norm": 1.9362024068832397,
|
| 579 |
+
"kl": 0.12137257889844477,
|
| 580 |
+
"learning_rate": 6.285714285714286e-05,
|
| 581 |
+
"loss": 0.2385,
|
| 582 |
+
"num_tokens": 3596056.0,
|
| 583 |
+
"reward": 0.12735633552074432,
|
| 584 |
+
"reward_std": 0.6423711776733398,
|
| 585 |
+
"rewards/rollout_eval_reward_func/mean": 0.2489837408065796,
|
| 586 |
+
"rewards/rollout_eval_reward_func/std": 0.3152793347835541,
|
| 587 |
+
"rewards/rollout_reward_func/mean": 0.12735633552074432,
|
| 588 |
+
"rewards/rollout_reward_func/std": 0.7003796696662903,
|
| 589 |
+
"sampling/importance_sampling_ratio/max": 2.351552963256836,
|
| 590 |
+
"sampling/importance_sampling_ratio/mean": 1.0003013610839844,
|
| 591 |
+
"sampling/importance_sampling_ratio/min": 0.3779045045375824,
|
| 592 |
+
"sampling/sampling_logp_difference/max": 0.9731137752532959,
|
| 593 |
+
"sampling/sampling_logp_difference/mean": 0.016432534903287888,
|
| 594 |
+
"step": 23,
|
| 595 |
+
"step_time": 99.05041999199784
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"clip_ratio/high_max": 0.011161994189023972,
|
| 599 |
+
"clip_ratio/high_mean": 0.0066947695158887655,
|
| 600 |
+
"clip_ratio/low_mean": 0.009474401478655636,
|
| 601 |
+
"clip_ratio/low_min": 0.0021156331058591604,
|
| 602 |
+
"clip_ratio/region_mean": 0.01616917096544057,
|
| 603 |
+
"entropy": 0.11043372261337936,
|
| 604 |
+
"epoch": 0.00024,
|
| 605 |
+
"grad_norm": 1.812207818031311,
|
| 606 |
+
"kl": 0.09031509491614997,
|
| 607 |
+
"learning_rate": 6.571428571428571e-05,
|
| 608 |
+
"loss": 0.2393,
|
| 609 |
+
"step": 24,
|
| 610 |
+
"step_time": 32.823300022000694
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"clip_ratio/high_max": 0.006489152496214956,
|
| 614 |
+
"clip_ratio/high_mean": 0.003244576248107478,
|
| 615 |
+
"clip_ratio/low_mean": 0.0018077631539199501,
|
| 616 |
+
"clip_ratio/low_min": 0.0,
|
| 617 |
+
"clip_ratio/region_mean": 0.005052339431131259,
|
| 618 |
+
"completions/clipped_ratio": 0.0,
|
| 619 |
+
"completions/max_length": 10988.0,
|
| 620 |
+
"completions/max_terminated_length": 10988.0,
|
| 621 |
+
"completions/mean_length": 8457.65625,
|
| 622 |
+
"completions/mean_terminated_length": 8457.65625,
|
| 623 |
+
"completions/min_length": 1525.0,
|
| 624 |
+
"completions/min_terminated_length": 1525.0,
|
| 625 |
+
"entropy": 0.11516976961866021,
|
| 626 |
+
"epoch": 0.00025,
|
| 627 |
+
"frac_reward_zero_std": 0.0,
|
| 628 |
+
"grad_norm": 1.3577765226364136,
|
| 629 |
+
"kl": 0.1303024498047307,
|
| 630 |
+
"learning_rate": 6.857142857142858e-05,
|
| 631 |
+
"loss": 0.1265,
|
| 632 |
+
"num_tokens": 3894768.0,
|
| 633 |
+
"reward": 0.20315799117088318,
|
| 634 |
+
"reward_std": 0.6316713094711304,
|
| 635 |
+
"rewards/rollout_eval_reward_func/mean": 0.240091472864151,
|
| 636 |
+
"rewards/rollout_eval_reward_func/std": 0.31059667468070984,
|
| 637 |
+
"rewards/rollout_reward_func/mean": 0.20315799117088318,
|
| 638 |
+
"rewards/rollout_reward_func/std": 0.6295517683029175,
|
| 639 |
+
"sampling/importance_sampling_ratio/max": 2.256138801574707,
|
| 640 |
+
"sampling/importance_sampling_ratio/mean": 0.9993441104888916,
|
| 641 |
+
"sampling/importance_sampling_ratio/min": 0.2282668501138687,
|
| 642 |
+
"sampling/sampling_logp_difference/max": 1.477239966392517,
|
| 643 |
+
"sampling/sampling_logp_difference/mean": 0.01688190922141075,
|
| 644 |
+
"step": 25,
|
| 645 |
+
"step_time": 96.7960174280006
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"clip_ratio/high_max": 0.016165015986189246,
|
| 649 |
+
"clip_ratio/high_mean": 0.010140184662304819,
|
| 650 |
+
"clip_ratio/low_mean": 0.027886587660759687,
|
| 651 |
+
"clip_ratio/low_min": 0.013233458623290062,
|
| 652 |
+
"clip_ratio/region_mean": 0.038026772264856845,
|
| 653 |
+
"entropy": 0.11189563758671284,
|
| 654 |
+
"epoch": 0.00026,
|
| 655 |
+
"grad_norm": 2.0246684551239014,
|
| 656 |
+
"kl": 0.2296465744730085,
|
| 657 |
+
"learning_rate": 7.142857142857143e-05,
|
| 658 |
+
"loss": 0.1164,
|
| 659 |
+
"step": 26,
|
| 660 |
+
"step_time": 32.81865678699978
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"clip_ratio/high_max": 0.0038667930057272315,
|
| 664 |
+
"clip_ratio/high_mean": 0.0019333965028636158,
|
| 665 |
+
"clip_ratio/low_mean": 0.003156299644615501,
|
| 666 |
+
"clip_ratio/low_min": 0.0014046717551536858,
|
| 667 |
+
"clip_ratio/region_mean": 0.005089696147479117,
|
| 668 |
+
"completions/clipped_ratio": 0.0,
|
| 669 |
+
"completions/max_length": 11043.0,
|
| 670 |
+
"completions/max_terminated_length": 11043.0,
|
| 671 |
+
"completions/mean_length": 8288.09375,
|
| 672 |
+
"completions/mean_terminated_length": 8288.09375,
|
| 673 |
+
"completions/min_length": 873.0,
|
| 674 |
+
"completions/min_terminated_length": 873.0,
|
| 675 |
+
"entropy": 0.1172712086699903,
|
| 676 |
+
"epoch": 0.00027,
|
| 677 |
+
"frac_reward_zero_std": 0.0,
|
| 678 |
+
"grad_norm": 2.0188708305358887,
|
| 679 |
+
"kl": 0.14066953863948584,
|
| 680 |
+
"learning_rate": 7.428571428571429e-05,
|
| 681 |
+
"loss": 0.019,
|
| 682 |
+
"num_tokens": 4187980.0,
|
| 683 |
+
"reward": 0.3152431547641754,
|
| 684 |
+
"reward_std": 0.6300436854362488,
|
| 685 |
+
"rewards/rollout_eval_reward_func/mean": 0.31758129596710205,
|
| 686 |
+
"rewards/rollout_eval_reward_func/std": 0.32922983169555664,
|
| 687 |
+
"rewards/rollout_reward_func/mean": 0.3152431547641754,
|
| 688 |
+
"rewards/rollout_reward_func/std": 0.6763298511505127,
|
| 689 |
+
"sampling/importance_sampling_ratio/max": 3.0,
|
| 690 |
+
"sampling/importance_sampling_ratio/mean": 0.9995622634887695,
|
| 691 |
+
"sampling/importance_sampling_ratio/min": 0.4497600793838501,
|
| 692 |
+
"sampling/sampling_logp_difference/max": 1.9223380088806152,
|
| 693 |
+
"sampling/sampling_logp_difference/mean": 0.017684465274214745,
|
| 694 |
+
"step": 27,
|
| 695 |
+
"step_time": 96.53867048800112
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"clip_ratio/high_max": 0.01634173752972856,
|
| 699 |
+
"clip_ratio/high_mean": 0.00923296029213816,
|
| 700 |
+
"clip_ratio/low_mean": 0.011995688633760437,
|
| 701 |
+
"clip_ratio/low_min": 0.0042134831310249865,
|
| 702 |
+
"clip_ratio/region_mean": 0.021228648955002427,
|
| 703 |
+
"entropy": 0.11727899359539151,
|
| 704 |
+
"epoch": 0.00028,
|
| 705 |
+
"grad_norm": 1.0265206098556519,
|
| 706 |
+
"kl": 0.1646709272172302,
|
| 707 |
+
"learning_rate": 7.714285714285715e-05,
|
| 708 |
+
"loss": 0.0122,
|
| 709 |
+
"step": 28,
|
| 710 |
+
"step_time": 32.412335121999604
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"clip_ratio/high_max": 0.0030616914154961705,
|
| 714 |
+
"clip_ratio/high_mean": 0.0015308457077480853,
|
| 715 |
+
"clip_ratio/low_mean": 0.0017557066748850048,
|
| 716 |
+
"clip_ratio/low_min": 0.0,
|
| 717 |
+
"clip_ratio/region_mean": 0.003286552324425429,
|
| 718 |
+
"completions/clipped_ratio": 0.0,
|
| 719 |
+
"completions/max_length": 11171.0,
|
| 720 |
+
"completions/max_terminated_length": 11171.0,
|
| 721 |
+
"completions/mean_length": 7933.9375,
|
| 722 |
+
"completions/mean_terminated_length": 7933.9375,
|
| 723 |
+
"completions/min_length": 1855.0,
|
| 724 |
+
"completions/min_terminated_length": 1855.0,
|
| 725 |
+
"entropy": 0.10820061061531305,
|
| 726 |
+
"epoch": 0.00029,
|
| 727 |
+
"frac_reward_zero_std": 0.0,
|
| 728 |
+
"grad_norm": 1.078338623046875,
|
| 729 |
+
"kl": 0.12938267178833485,
|
| 730 |
+
"learning_rate": 8e-05,
|
| 731 |
+
"loss": 0.1072,
|
| 732 |
+
"num_tokens": 4469763.0,
|
| 733 |
+
"reward": 0.19558671116828918,
|
| 734 |
+
"reward_std": 0.6997864842414856,
|
| 735 |
+
"rewards/rollout_eval_reward_func/mean": 0.2963668704032898,
|
| 736 |
+
"rewards/rollout_eval_reward_func/std": 0.3109610080718994,
|
| 737 |
+
"rewards/rollout_reward_func/mean": 0.19558671116828918,
|
| 738 |
+
"rewards/rollout_reward_func/std": 0.6721439361572266,
|
| 739 |
+
"sampling/importance_sampling_ratio/max": 1.8601394891738892,
|
| 740 |
+
"sampling/importance_sampling_ratio/mean": 1.0000590085983276,
|
| 741 |
+
"sampling/importance_sampling_ratio/min": 0.5378966927528381,
|
| 742 |
+
"sampling/sampling_logp_difference/max": 0.6206514835357666,
|
| 743 |
+
"sampling/sampling_logp_difference/mean": 0.01655469462275505,
|
| 744 |
+
"step": 29,
|
| 745 |
+
"step_time": 93.66265234299863
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"clip_ratio/high_max": 0.017240845831111073,
|
| 749 |
+
"clip_ratio/high_mean": 0.009188604657538235,
|
| 750 |
+
"clip_ratio/low_mean": 0.018311504449229687,
|
| 751 |
+
"clip_ratio/low_min": 0.004907927650492638,
|
| 752 |
+
"clip_ratio/region_mean": 0.027500109281390905,
|
| 753 |
+
"entropy": 0.10658967308700085,
|
| 754 |
+
"epoch": 0.0003,
|
| 755 |
+
"grad_norm": 0.5991150140762329,
|
| 756 |
+
"kl": 0.14486833242699504,
|
| 757 |
+
"learning_rate": 8.285714285714287e-05,
|
| 758 |
+
"loss": 0.0961,
|
| 759 |
+
"step": 30,
|
| 760 |
+
"step_time": 32.02409046399953
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"clip_ratio/high_max": 0.007639755902346224,
|
| 764 |
+
"clip_ratio/high_mean": 0.003819877951173112,
|
| 765 |
+
"clip_ratio/low_mean": 0.0032558340462855995,
|
| 766 |
+
"clip_ratio/low_min": 0.000811688310932368,
|
| 767 |
+
"clip_ratio/region_mean": 0.007075712055666372,
|
| 768 |
+
"completions/clipped_ratio": 0.0,
|
| 769 |
+
"completions/max_length": 11207.0,
|
| 770 |
+
"completions/max_terminated_length": 11207.0,
|
| 771 |
+
"completions/mean_length": 7446.4375,
|
| 772 |
+
"completions/mean_terminated_length": 7446.4375,
|
| 773 |
+
"completions/min_length": 1941.0,
|
| 774 |
+
"completions/min_terminated_length": 1941.0,
|
| 775 |
+
"entropy": 0.1075986991636455,
|
| 776 |
+
"epoch": 0.00031,
|
| 777 |
+
"frac_reward_zero_std": 0.0,
|
| 778 |
+
"grad_norm": 1.3741053342819214,
|
| 779 |
+
"kl": 0.1601699753664434,
|
| 780 |
+
"learning_rate": 8.571428571428571e-05,
|
| 781 |
+
"loss": 0.3119,
|
| 782 |
+
"num_tokens": 4736188.0,
|
| 783 |
+
"reward": 0.3060583770275116,
|
| 784 |
+
"reward_std": 0.7248314619064331,
|
| 785 |
+
"rewards/rollout_eval_reward_func/mean": 0.3489583134651184,
|
| 786 |
+
"rewards/rollout_eval_reward_func/std": 0.3138476312160492,
|
| 787 |
+
"rewards/rollout_reward_func/mean": 0.3060583770275116,
|
| 788 |
+
"rewards/rollout_reward_func/std": 0.7231479287147522,
|
| 789 |
+
"sampling/importance_sampling_ratio/max": 2.0959339141845703,
|
| 790 |
+
"sampling/importance_sampling_ratio/mean": 1.0005576610565186,
|
| 791 |
+
"sampling/importance_sampling_ratio/min": 0.3962559998035431,
|
| 792 |
+
"sampling/sampling_logp_difference/max": 0.9256948232650757,
|
| 793 |
+
"sampling/sampling_logp_difference/mean": 0.015314233489334583,
|
| 794 |
+
"step": 31,
|
| 795 |
+
"step_time": 89.359079396997
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"clip_ratio/high_max": 0.018800459045451134,
|
| 799 |
+
"clip_ratio/high_mean": 0.010931086115306243,
|
| 800 |
+
"clip_ratio/low_mean": 0.014964523201342672,
|
| 801 |
+
"clip_ratio/low_min": 0.002763190073892474,
|
| 802 |
+
"clip_ratio/region_mean": 0.025895609316648915,
|
| 803 |
+
"entropy": 0.11107803648337722,
|
| 804 |
+
"epoch": 0.00032,
|
| 805 |
+
"grad_norm": 0.8436726927757263,
|
| 806 |
+
"kl": 0.17236854787915945,
|
| 807 |
+
"learning_rate": 8.857142857142857e-05,
|
| 808 |
+
"loss": 0.2984,
|
| 809 |
+
"step": 32,
|
| 810 |
+
"step_time": 32.26129659800063
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"clip_ratio/high_max": 0.005184833600651473,
|
| 814 |
+
"clip_ratio/high_mean": 0.0025924168003257364,
|
| 815 |
+
"clip_ratio/low_mean": 0.0021227904653642327,
|
| 816 |
+
"clip_ratio/low_min": 0.0,
|
| 817 |
+
"clip_ratio/region_mean": 0.004715207265689969,
|
| 818 |
+
"completions/clipped_ratio": 0.0,
|
| 819 |
+
"completions/max_length": 11234.0,
|
| 820 |
+
"completions/max_terminated_length": 11234.0,
|
| 821 |
+
"completions/mean_length": 8056.90625,
|
| 822 |
+
"completions/mean_terminated_length": 8056.90625,
|
| 823 |
+
"completions/min_length": 834.0,
|
| 824 |
+
"completions/min_terminated_length": 834.0,
|
| 825 |
+
"entropy": 0.10890151979401708,
|
| 826 |
+
"epoch": 0.00033,
|
| 827 |
+
"frac_reward_zero_std": 0.0,
|
| 828 |
+
"grad_norm": 1.012204647064209,
|
| 829 |
+
"kl": 0.13646527798846364,
|
| 830 |
+
"learning_rate": 9.142857142857143e-05,
|
| 831 |
+
"loss": 0.2208,
|
| 832 |
+
"num_tokens": 5021855.0,
|
| 833 |
+
"reward": 0.28810450434684753,
|
| 834 |
+
"reward_std": 0.6511638164520264,
|
| 835 |
+
"rewards/rollout_eval_reward_func/mean": 0.27172255516052246,
|
| 836 |
+
"rewards/rollout_eval_reward_func/std": 0.3220342993736267,
|
| 837 |
+
"rewards/rollout_reward_func/mean": 0.28810450434684753,
|
| 838 |
+
"rewards/rollout_reward_func/std": 0.6260398030281067,
|
| 839 |
+
"sampling/importance_sampling_ratio/max": 1.8270360231399536,
|
| 840 |
+
"sampling/importance_sampling_ratio/mean": 1.0004476308822632,
|
| 841 |
+
"sampling/importance_sampling_ratio/min": 0.2768998444080353,
|
| 842 |
+
"sampling/sampling_logp_difference/max": 1.2840993404388428,
|
| 843 |
+
"sampling/sampling_logp_difference/mean": 0.012767134234309196,
|
| 844 |
+
"step": 33,
|
| 845 |
+
"step_time": 93.59931743799825
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"clip_ratio/high_max": 0.013980166870169342,
|
| 849 |
+
"clip_ratio/high_mean": 0.008351352356839925,
|
| 850 |
+
"clip_ratio/low_mean": 0.016900451679248363,
|
| 851 |
+
"clip_ratio/low_min": 0.0068813529796898365,
|
| 852 |
+
"clip_ratio/region_mean": 0.025251803919672966,
|
| 853 |
+
"entropy": 0.1073108701966703,
|
| 854 |
+
"epoch": 0.00034,
|
| 855 |
+
"grad_norm": 0.6274716258049011,
|
| 856 |
+
"kl": 0.14035740494728088,
|
| 857 |
+
"learning_rate": 9.428571428571429e-05,
|
| 858 |
+
"loss": 0.2118,
|
| 859 |
+
"step": 34,
|
| 860 |
+
"step_time": 32.919508103002954
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"clip_ratio/high_max": 0.0018894725944846869,
|
| 864 |
+
"clip_ratio/high_mean": 0.0009447362972423434,
|
| 865 |
+
"clip_ratio/low_mean": 0.0021555489802267402,
|
| 866 |
+
"clip_ratio/low_min": 0.0,
|
| 867 |
+
"clip_ratio/region_mean": 0.0031002852774690837,
|
| 868 |
+
"completions/clipped_ratio": 0.0,
|
| 869 |
+
"completions/max_length": 11099.0,
|
| 870 |
+
"completions/max_terminated_length": 11099.0,
|
| 871 |
+
"completions/mean_length": 8609.5,
|
| 872 |
+
"completions/mean_terminated_length": 8609.5,
|
| 873 |
+
"completions/min_length": 1070.0,
|
| 874 |
+
"completions/min_terminated_length": 1070.0,
|
| 875 |
+
"entropy": 0.10947995679453015,
|
| 876 |
+
"epoch": 0.00035,
|
| 877 |
+
"frac_reward_zero_std": 0.0,
|
| 878 |
+
"grad_norm": 0.9109163284301758,
|
| 879 |
+
"kl": 0.24753205897286534,
|
| 880 |
+
"learning_rate": 9.714285714285715e-05,
|
| 881 |
+
"loss": 0.1542,
|
| 882 |
+
"num_tokens": 5325755.0,
|
| 883 |
+
"reward": 0.4508249759674072,
|
| 884 |
+
"reward_std": 0.5780479907989502,
|
| 885 |
+
"rewards/rollout_eval_reward_func/mean": 0.32621949911117554,
|
| 886 |
+
"rewards/rollout_eval_reward_func/std": 0.3382527828216553,
|
| 887 |
+
"rewards/rollout_reward_func/mean": 0.4508249759674072,
|
| 888 |
+
"rewards/rollout_reward_func/std": 0.5698684453964233,
|
| 889 |
+
"sampling/importance_sampling_ratio/max": 1.7834506034851074,
|
| 890 |
+
"sampling/importance_sampling_ratio/mean": 1.0010955333709717,
|
| 891 |
+
"sampling/importance_sampling_ratio/min": 0.366268515586853,
|
| 892 |
+
"sampling/sampling_logp_difference/max": 1.0043885707855225,
|
| 893 |
+
"sampling/sampling_logp_difference/mean": 0.013199402019381523,
|
| 894 |
+
"step": 35,
|
| 895 |
+
"step_time": 93.34705402800137
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"clip_ratio/high_max": 0.0200398035813123,
|
| 899 |
+
"clip_ratio/high_mean": 0.01071434619370848,
|
| 900 |
+
"clip_ratio/low_mean": 0.010386000329162925,
|
| 901 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 902 |
+
"clip_ratio/region_mean": 0.021100346348248422,
|
| 903 |
+
"entropy": 0.11280779354274273,
|
| 904 |
+
"epoch": 0.00036,
|
| 905 |
+
"grad_norm": 0.8509212732315063,
|
| 906 |
+
"kl": 0.24738536309450865,
|
| 907 |
+
"learning_rate": 0.0001,
|
| 908 |
+
"loss": 0.1443,
|
| 909 |
+
"step": 36,
|
| 910 |
+
"step_time": 33.26461400700191
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"clip_ratio/high_max": 0.0045615925919264555,
|
| 914 |
+
"clip_ratio/high_mean": 0.002661893842741847,
|
| 915 |
+
"clip_ratio/low_mean": 0.001787908433470875,
|
| 916 |
+
"clip_ratio/low_min": 0.0,
|
| 917 |
+
"clip_ratio/region_mean": 0.004449802276212722,
|
| 918 |
+
"completions/clipped_ratio": 0.0,
|
| 919 |
+
"completions/max_length": 10712.0,
|
| 920 |
+
"completions/max_terminated_length": 10712.0,
|
| 921 |
+
"completions/mean_length": 7822.9375,
|
| 922 |
+
"completions/mean_terminated_length": 7822.9375,
|
| 923 |
+
"completions/min_length": 1061.0,
|
| 924 |
+
"completions/min_terminated_length": 1061.0,
|
| 925 |
+
"entropy": 0.09347328078001738,
|
| 926 |
+
"epoch": 0.00037,
|
| 927 |
+
"frac_reward_zero_std": 0.0,
|
| 928 |
+
"grad_norm": 0.7398293018341064,
|
| 929 |
+
"kl": 0.14611079543828964,
|
| 930 |
+
"learning_rate": 9.918053502751771e-05,
|
| 931 |
+
"loss": 0.0539,
|
| 932 |
+
"num_tokens": 5604207.0,
|
| 933 |
+
"reward": 0.2784110903739929,
|
| 934 |
+
"reward_std": 0.6512280702590942,
|
| 935 |
+
"rewards/rollout_eval_reward_func/mean": 0.2896341383457184,
|
| 936 |
+
"rewards/rollout_eval_reward_func/std": 0.32505732774734497,
|
| 937 |
+
"rewards/rollout_reward_func/mean": 0.2784110903739929,
|
| 938 |
+
"rewards/rollout_reward_func/std": 0.6340307593345642,
|
| 939 |
+
"sampling/importance_sampling_ratio/max": 1.785902500152588,
|
| 940 |
+
"sampling/importance_sampling_ratio/mean": 0.9995973110198975,
|
| 941 |
+
"sampling/importance_sampling_ratio/min": 0.3934570252895355,
|
| 942 |
+
"sampling/sampling_logp_difference/max": 0.9327834844589233,
|
| 943 |
+
"sampling/sampling_logp_difference/mean": 0.01090280432254076,
|
| 944 |
+
"step": 37,
|
| 945 |
+
"step_time": 89.90687796200018
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"clip_ratio/high_max": 0.014242319972254336,
|
| 949 |
+
"clip_ratio/high_mean": 0.007633455039467663,
|
| 950 |
+
"clip_ratio/low_mean": 0.009654591587604955,
|
| 951 |
+
"clip_ratio/low_min": 0.001453684933949262,
|
| 952 |
+
"clip_ratio/region_mean": 0.017288046510657296,
|
| 953 |
+
"entropy": 0.09478882700204849,
|
| 954 |
+
"epoch": 0.00038,
|
| 955 |
+
"grad_norm": 0.5018179416656494,
|
| 956 |
+
"kl": 0.15739013627171516,
|
| 957 |
+
"learning_rate": 9.675795466159755e-05,
|
| 958 |
+
"loss": 0.0474,
|
| 959 |
+
"step": 38,
|
| 960 |
+
"step_time": 32.40730591600277
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"clip_ratio/high_max": 0.0033184904023073614,
|
| 964 |
+
"clip_ratio/high_mean": 0.0016592452011536807,
|
| 965 |
+
"clip_ratio/low_mean": 0.002118892065482214,
|
| 966 |
+
"clip_ratio/low_min": 0.0007102272938936949,
|
| 967 |
+
"clip_ratio/region_mean": 0.0037781372957397252,
|
| 968 |
+
"completions/clipped_ratio": 0.0,
|
| 969 |
+
"completions/max_length": 10878.0,
|
| 970 |
+
"completions/max_terminated_length": 10878.0,
|
| 971 |
+
"completions/mean_length": 8825.25,
|
| 972 |
+
"completions/mean_terminated_length": 8825.25,
|
| 973 |
+
"completions/min_length": 2113.0,
|
| 974 |
+
"completions/min_terminated_length": 2113.0,
|
| 975 |
+
"entropy": 0.13806713884696364,
|
| 976 |
+
"epoch": 0.00039,
|
| 977 |
+
"frac_reward_zero_std": 0.0,
|
| 978 |
+
"grad_norm": 1.113547444343567,
|
| 979 |
+
"kl": 0.20099136885255575,
|
| 980 |
+
"learning_rate": 9.283813728906054e-05,
|
| 981 |
+
"loss": 0.1486,
|
| 982 |
+
"num_tokens": 5915217.0,
|
| 983 |
+
"reward": 0.18237435817718506,
|
| 984 |
+
"reward_std": 0.5858109593391418,
|
| 985 |
+
"rewards/rollout_eval_reward_func/mean": 0.23246951401233673,
|
| 986 |
+
"rewards/rollout_eval_reward_func/std": 0.3161698281764984,
|
| 987 |
+
"rewards/rollout_reward_func/mean": 0.18237435817718506,
|
| 988 |
+
"rewards/rollout_reward_func/std": 0.6235412955284119,
|
| 989 |
+
"sampling/importance_sampling_ratio/max": 1.8600788116455078,
|
| 990 |
+
"sampling/importance_sampling_ratio/mean": 1.0009781122207642,
|
| 991 |
+
"sampling/importance_sampling_ratio/min": 0.6195499897003174,
|
| 992 |
+
"sampling/sampling_logp_difference/max": 0.6206188201904297,
|
| 993 |
+
"sampling/sampling_logp_difference/mean": 0.01361357793211937,
|
| 994 |
+
"step": 39,
|
| 995 |
+
"step_time": 95.42290947900165
|
| 996 |
+
},
|
| 997 |
+
{
|
| 998 |
+
"clip_ratio/high_max": 0.01989291445352137,
|
| 999 |
+
"clip_ratio/high_mean": 0.010865762596949935,
|
| 1000 |
+
"clip_ratio/low_mean": 0.01921083332854323,
|
| 1001 |
+
"clip_ratio/low_min": 0.004245770338457078,
|
| 1002 |
+
"clip_ratio/region_mean": 0.030076596303842962,
|
| 1003 |
+
"entropy": 0.13848060183227062,
|
| 1004 |
+
"epoch": 0.0004,
|
| 1005 |
+
"grad_norm": 0.8446061611175537,
|
| 1006 |
+
"kl": 0.22338007856160402,
|
| 1007 |
+
"learning_rate": 8.759239773845718e-05,
|
| 1008 |
+
"loss": 0.1364,
|
| 1009 |
+
"step": 40,
|
| 1010 |
+
"step_time": 33.852559433999886
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"clip_ratio/high_max": 0.0030503973248414695,
|
| 1014 |
+
"clip_ratio/high_mean": 0.0015251986624207348,
|
| 1015 |
+
"clip_ratio/low_mean": 0.0010654326470103115,
|
| 1016 |
+
"clip_ratio/low_min": 0.0,
|
| 1017 |
+
"clip_ratio/region_mean": 0.0025906313094310462,
|
| 1018 |
+
"completions/clipped_ratio": 0.0,
|
| 1019 |
+
"completions/max_length": 11107.0,
|
| 1020 |
+
"completions/max_terminated_length": 11107.0,
|
| 1021 |
+
"completions/mean_length": 8257.21875,
|
| 1022 |
+
"completions/mean_terminated_length": 8257.21875,
|
| 1023 |
+
"completions/min_length": 2666.0,
|
| 1024 |
+
"completions/min_terminated_length": 2666.0,
|
| 1025 |
+
"entropy": 0.11340034916065633,
|
| 1026 |
+
"epoch": 0.00041,
|
| 1027 |
+
"frac_reward_zero_std": 0.0,
|
| 1028 |
+
"grad_norm": 1.0817996263504028,
|
| 1029 |
+
"kl": 0.20612840354442596,
|
| 1030 |
+
"learning_rate": 8.125000000000001e-05,
|
| 1031 |
+
"loss": 0.3665,
|
| 1032 |
+
"num_tokens": 6207607.0,
|
| 1033 |
+
"reward": 0.42999449372291565,
|
| 1034 |
+
"reward_std": 0.5903699994087219,
|
| 1035 |
+
"rewards/rollout_eval_reward_func/mean": 0.33269816637039185,
|
| 1036 |
+
"rewards/rollout_eval_reward_func/std": 0.343418687582016,
|
| 1037 |
+
"rewards/rollout_reward_func/mean": 0.42999449372291565,
|
| 1038 |
+
"rewards/rollout_reward_func/std": 0.5738593935966492,
|
| 1039 |
+
"sampling/importance_sampling_ratio/max": 1.4319037199020386,
|
| 1040 |
+
"sampling/importance_sampling_ratio/mean": 0.9990136027336121,
|
| 1041 |
+
"sampling/importance_sampling_ratio/min": 0.4935825765132904,
|
| 1042 |
+
"sampling/sampling_logp_difference/max": 0.7060651779174805,
|
| 1043 |
+
"sampling/sampling_logp_difference/mean": 0.011390198953449726,
|
| 1044 |
+
"step": 41,
|
| 1045 |
+
"step_time": 91.59171992200027
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"clip_ratio/high_max": 0.01730476424563676,
|
| 1049 |
+
"clip_ratio/high_mean": 0.009731545054819435,
|
| 1050 |
+
"clip_ratio/low_mean": 0.01579960942035541,
|
| 1051 |
+
"clip_ratio/low_min": 0.006750052853021771,
|
| 1052 |
+
"clip_ratio/region_mean": 0.025531154591590166,
|
| 1053 |
+
"entropy": 0.11443871166557074,
|
| 1054 |
+
"epoch": 0.00042,
|
| 1055 |
+
"grad_norm": 0.7992480397224426,
|
| 1056 |
+
"kl": 0.27106572315096855,
|
| 1057 |
+
"learning_rate": 7.408813728906053e-05,
|
| 1058 |
+
"loss": 0.3537,
|
| 1059 |
+
"step": 42,
|
| 1060 |
+
"step_time": 33.60049366600106
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"clip_ratio/high_max": 0.0035054103354923427,
|
| 1064 |
+
"clip_ratio/high_mean": 0.0017527051677461714,
|
| 1065 |
+
"clip_ratio/low_mean": 0.0010694226948544383,
|
| 1066 |
+
"clip_ratio/low_min": 0.0,
|
| 1067 |
+
"clip_ratio/region_mean": 0.0028221279208082706,
|
| 1068 |
+
"completions/clipped_ratio": 0.0,
|
| 1069 |
+
"completions/max_length": 10896.0,
|
| 1070 |
+
"completions/max_terminated_length": 10896.0,
|
| 1071 |
+
"completions/mean_length": 7894.15625,
|
| 1072 |
+
"completions/mean_terminated_length": 7894.15625,
|
| 1073 |
+
"completions/min_length": 2890.0,
|
| 1074 |
+
"completions/min_terminated_length": 2890.0,
|
| 1075 |
+
"entropy": 0.13558923918753862,
|
| 1076 |
+
"epoch": 0.00043,
|
| 1077 |
+
"frac_reward_zero_std": 0.0,
|
| 1078 |
+
"grad_norm": 0.9851862192153931,
|
| 1079 |
+
"kl": 0.24445611471310258,
|
| 1080 |
+
"learning_rate": 6.6419817372537e-05,
|
| 1081 |
+
"loss": 0.1226,
|
| 1082 |
+
"num_tokens": 6488287.0,
|
| 1083 |
+
"reward": 0.18586361408233643,
|
| 1084 |
+
"reward_std": 0.6816079616546631,
|
| 1085 |
+
"rewards/rollout_eval_reward_func/mean": 0.30538618564605713,
|
| 1086 |
+
"rewards/rollout_eval_reward_func/std": 0.32574331760406494,
|
| 1087 |
+
"rewards/rollout_reward_func/mean": 0.18586361408233643,
|
| 1088 |
+
"rewards/rollout_reward_func/std": 0.676216721534729,
|
| 1089 |
+
"sampling/importance_sampling_ratio/max": 1.8440579175949097,
|
| 1090 |
+
"sampling/importance_sampling_ratio/mean": 1.0000970363616943,
|
| 1091 |
+
"sampling/importance_sampling_ratio/min": 0.6517351269721985,
|
| 1092 |
+
"sampling/sampling_logp_difference/max": 0.6119685173034668,
|
| 1093 |
+
"sampling/sampling_logp_difference/mean": 0.012094310484826565,
|
| 1094 |
+
"step": 43,
|
| 1095 |
+
"step_time": 92.82438364300197
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"clip_ratio/high_max": 0.010269680351484567,
|
| 1099 |
+
"clip_ratio/high_mean": 0.005821653438033536,
|
| 1100 |
+
"clip_ratio/low_mean": 0.015070577035658062,
|
| 1101 |
+
"clip_ratio/low_min": 0.0048273742431774735,
|
| 1102 |
+
"clip_ratio/region_mean": 0.020892230415483937,
|
| 1103 |
+
"entropy": 0.13336073094978929,
|
| 1104 |
+
"epoch": 0.00044,
|
| 1105 |
+
"grad_norm": 0.6729846000671387,
|
| 1106 |
+
"kl": 0.2622186541557312,
|
| 1107 |
+
"learning_rate": 5.858018262746301e-05,
|
| 1108 |
+
"loss": 0.1142,
|
| 1109 |
+
"step": 44,
|
| 1110 |
+
"step_time": 32.630656069
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"clip_ratio/high_max": 0.006278776447288692,
|
| 1114 |
+
"clip_ratio/high_mean": 0.003139388223644346,
|
| 1115 |
+
"clip_ratio/low_mean": 0.0014205463230609894,
|
| 1116 |
+
"clip_ratio/low_min": 0.0007022471982054412,
|
| 1117 |
+
"clip_ratio/region_mean": 0.004559934546705335,
|
| 1118 |
+
"completions/clipped_ratio": 0.0,
|
| 1119 |
+
"completions/max_length": 11255.0,
|
| 1120 |
+
"completions/max_terminated_length": 11255.0,
|
| 1121 |
+
"completions/mean_length": 7849.59375,
|
| 1122 |
+
"completions/mean_terminated_length": 7849.59375,
|
| 1123 |
+
"completions/min_length": 841.0,
|
| 1124 |
+
"completions/min_terminated_length": 841.0,
|
| 1125 |
+
"entropy": 0.13749901531264186,
|
| 1126 |
+
"epoch": 0.00045,
|
| 1127 |
+
"frac_reward_zero_std": 0.0,
|
| 1128 |
+
"grad_norm": 1.1264039278030396,
|
| 1129 |
+
"kl": 0.22676664125174284,
|
| 1130 |
+
"learning_rate": 5.0911862710939485e-05,
|
| 1131 |
+
"loss": -0.0333,
|
| 1132 |
+
"num_tokens": 6767906.0,
|
| 1133 |
+
"reward": 0.15443384647369385,
|
| 1134 |
+
"reward_std": 0.693654477596283,
|
| 1135 |
+
"rewards/rollout_eval_reward_func/mean": 0.2919207215309143,
|
| 1136 |
+
"rewards/rollout_eval_reward_func/std": 0.29990869760513306,
|
| 1137 |
+
"rewards/rollout_reward_func/mean": 0.15443384647369385,
|
| 1138 |
+
"rewards/rollout_reward_func/std": 0.7213361263275146,
|
| 1139 |
+
"sampling/importance_sampling_ratio/max": 1.6071842908859253,
|
| 1140 |
+
"sampling/importance_sampling_ratio/mean": 0.9978848099708557,
|
| 1141 |
+
"sampling/importance_sampling_ratio/min": 0.48193788528442383,
|
| 1142 |
+
"sampling/sampling_logp_difference/max": 0.7299400568008423,
|
| 1143 |
+
"sampling/sampling_logp_difference/mean": 0.01217048242688179,
|
| 1144 |
+
"step": 45,
|
| 1145 |
+
"step_time": 91.51718380699913
|
| 1146 |
+
},
|
| 1147 |
+
{
|
| 1148 |
+
"clip_ratio/high_max": 0.012777922616805881,
|
| 1149 |
+
"clip_ratio/high_mean": 0.006918622384546325,
|
| 1150 |
+
"clip_ratio/low_mean": 0.014222246245481074,
|
| 1151 |
+
"clip_ratio/low_min": 0.005445442744530737,
|
| 1152 |
+
"clip_ratio/region_mean": 0.0211408686300274,
|
| 1153 |
+
"entropy": 0.1343677118420601,
|
| 1154 |
+
"epoch": 0.00046,
|
| 1155 |
+
"grad_norm": 0.7688785791397095,
|
| 1156 |
+
"kl": 0.24824338778853416,
|
| 1157 |
+
"learning_rate": 4.375000000000001e-05,
|
| 1158 |
+
"loss": -0.0418,
|
| 1159 |
+
"step": 46,
|
| 1160 |
+
"step_time": 33.231114288000754
|
| 1161 |
+
},
|
| 1162 |
+
{
|
| 1163 |
+
"clip_ratio/high_max": 0.002997979463543743,
|
| 1164 |
+
"clip_ratio/high_mean": 0.0018581851327326149,
|
| 1165 |
+
"clip_ratio/low_mean": 0.0012389520416036248,
|
| 1166 |
+
"clip_ratio/low_min": 0.0,
|
| 1167 |
+
"clip_ratio/region_mean": 0.0030971371743362397,
|
| 1168 |
+
"completions/clipped_ratio": 0.0,
|
| 1169 |
+
"completions/max_length": 10980.0,
|
| 1170 |
+
"completions/max_terminated_length": 10980.0,
|
| 1171 |
+
"completions/mean_length": 7450.6875,
|
| 1172 |
+
"completions/mean_terminated_length": 7450.6875,
|
| 1173 |
+
"completions/min_length": 320.0,
|
| 1174 |
+
"completions/min_terminated_length": 320.0,
|
| 1175 |
+
"entropy": 0.11971927247941494,
|
| 1176 |
+
"epoch": 0.00047,
|
| 1177 |
+
"frac_reward_zero_std": 0.0,
|
| 1178 |
+
"grad_norm": 1.0886417627334595,
|
| 1179 |
+
"kl": 0.27644640300422907,
|
| 1180 |
+
"learning_rate": 3.740760226154283e-05,
|
| 1181 |
+
"loss": 0.0684,
|
| 1182 |
+
"num_tokens": 7034802.0,
|
| 1183 |
+
"reward": 0.32516512274742126,
|
| 1184 |
+
"reward_std": 0.6862237453460693,
|
| 1185 |
+
"rewards/rollout_eval_reward_func/mean": 0.3408282399177551,
|
| 1186 |
+
"rewards/rollout_eval_reward_func/std": 0.31514763832092285,
|
| 1187 |
+
"rewards/rollout_reward_func/mean": 0.32516512274742126,
|
| 1188 |
+
"rewards/rollout_reward_func/std": 0.6982549428939819,
|
| 1189 |
+
"sampling/importance_sampling_ratio/max": 1.4899945259094238,
|
| 1190 |
+
"sampling/importance_sampling_ratio/mean": 0.9988203048706055,
|
| 1191 |
+
"sampling/importance_sampling_ratio/min": 0.5982000827789307,
|
| 1192 |
+
"sampling/sampling_logp_difference/max": 0.5138299465179443,
|
| 1193 |
+
"sampling/sampling_logp_difference/mean": 0.010367423295974731,
|
| 1194 |
+
"step": 47,
|
| 1195 |
+
"step_time": 92.68640525500086
|
| 1196 |
+
},
|
| 1197 |
+
{
|
| 1198 |
+
"clip_ratio/high_max": 0.005615144735202193,
|
| 1199 |
+
"clip_ratio/high_mean": 0.0031981973443180323,
|
| 1200 |
+
"clip_ratio/low_mean": 0.008041755587328225,
|
| 1201 |
+
"clip_ratio/low_min": 0.0007102272938936949,
|
| 1202 |
+
"clip_ratio/region_mean": 0.011239952960750088,
|
| 1203 |
+
"entropy": 0.11511751124635339,
|
| 1204 |
+
"epoch": 0.00048,
|
| 1205 |
+
"grad_norm": 0.677844762802124,
|
| 1206 |
+
"kl": 0.2775820675306022,
|
| 1207 |
+
"learning_rate": 3.2161862710939476e-05,
|
| 1208 |
+
"loss": 0.0609,
|
| 1209 |
+
"step": 48,
|
| 1210 |
+
"step_time": 32.67402728900106
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"clip_ratio/high_max": 0.00474693434080109,
|
| 1214 |
+
"clip_ratio/high_mean": 0.002373467170400545,
|
| 1215 |
+
"clip_ratio/low_mean": 0.0003511235991027206,
|
| 1216 |
+
"clip_ratio/low_min": 0.0,
|
| 1217 |
+
"clip_ratio/region_mean": 0.0027245907695032656,
|
| 1218 |
+
"completions/clipped_ratio": 0.0,
|
| 1219 |
+
"completions/max_length": 11070.0,
|
| 1220 |
+
"completions/max_terminated_length": 11070.0,
|
| 1221 |
+
"completions/mean_length": 7308.03125,
|
| 1222 |
+
"completions/mean_terminated_length": 7308.03125,
|
| 1223 |
+
"completions/min_length": 854.0,
|
| 1224 |
+
"completions/min_terminated_length": 854.0,
|
| 1225 |
+
"entropy": 0.10222014435566962,
|
| 1226 |
+
"epoch": 0.00049,
|
| 1227 |
+
"frac_reward_zero_std": 0.0,
|
| 1228 |
+
"grad_norm": 0.8171713948249817,
|
| 1229 |
+
"kl": 0.22370027378201485,
|
| 1230 |
+
"learning_rate": 2.8242045338402468e-05,
|
| 1231 |
+
"loss": -0.068,
|
| 1232 |
+
"num_tokens": 7296677.0,
|
| 1233 |
+
"reward": 0.28688520193099976,
|
| 1234 |
+
"reward_std": 0.7849241495132446,
|
| 1235 |
+
"rewards/rollout_eval_reward_func/mean": 0.37195122241973877,
|
| 1236 |
+
"rewards/rollout_eval_reward_func/std": 0.3127909302711487,
|
| 1237 |
+
"rewards/rollout_reward_func/mean": 0.28688520193099976,
|
| 1238 |
+
"rewards/rollout_reward_func/std": 0.7561083436012268,
|
| 1239 |
+
"sampling/importance_sampling_ratio/max": 1.7672066688537598,
|
| 1240 |
+
"sampling/importance_sampling_ratio/mean": 1.0014787912368774,
|
| 1241 |
+
"sampling/importance_sampling_ratio/min": 0.5275546908378601,
|
| 1242 |
+
"sampling/sampling_logp_difference/max": 0.639502763748169,
|
| 1243 |
+
"sampling/sampling_logp_difference/mean": 0.011029250919818878,
|
| 1244 |
+
"step": 49,
|
| 1245 |
+
"step_time": 86.99529032999908
|
| 1246 |
+
},
|
| 1247 |
+
{
|
| 1248 |
+
"clip_ratio/high_max": 0.007674970023799688,
|
| 1249 |
+
"clip_ratio/high_mean": 0.004594452795572579,
|
| 1250 |
+
"clip_ratio/low_mean": 0.008248247409937903,
|
| 1251 |
+
"clip_ratio/low_min": 0.0007183908019214869,
|
| 1252 |
+
"clip_ratio/region_mean": 0.012842700205510482,
|
| 1253 |
+
"entropy": 0.09808745188638568,
|
| 1254 |
+
"epoch": 0.0005,
|
| 1255 |
+
"grad_norm": 0.6178692579269409,
|
| 1256 |
+
"kl": 0.23346312018111348,
|
| 1257 |
+
"learning_rate": 2.5819464972482288e-05,
|
| 1258 |
+
"loss": -0.0742,
|
| 1259 |
+
"step": 50,
|
| 1260 |
+
"step_time": 32.30095837099998
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"epoch": 0.0005,
|
| 1264 |
+
"eval_clip_ratio/high_max": 0.0,
|
| 1265 |
+
"eval_clip_ratio/high_mean": 0.0,
|
| 1266 |
+
"eval_clip_ratio/low_mean": 0.0,
|
| 1267 |
+
"eval_clip_ratio/low_min": 0.0,
|
| 1268 |
+
"eval_clip_ratio/region_mean": 0.0,
|
| 1269 |
+
"eval_completions/clipped_ratio": 0.0,
|
| 1270 |
+
"eval_completions/max_length": 10309.35,
|
| 1271 |
+
"eval_completions/max_terminated_length": 10309.35,
|
| 1272 |
+
"eval_completions/mean_length": 7614.075,
|
| 1273 |
+
"eval_completions/mean_terminated_length": 7614.075,
|
| 1274 |
+
"eval_completions/min_length": 4457.25,
|
| 1275 |
+
"eval_completions/min_terminated_length": 4457.25,
|
| 1276 |
+
"eval_entropy": 0.1146618027240038,
|
| 1277 |
+
"eval_frac_reward_zero_std": 1.0,
|
| 1278 |
+
"eval_kl": 0.2420900955796242,
|
| 1279 |
+
"eval_loss": 0.00033982208697125316,
|
| 1280 |
+
"eval_num_tokens": 7296677.0,
|
| 1281 |
+
"eval_reward": 0.439066107571125,
|
| 1282 |
+
"eval_reward_std": 0.0,
|
| 1283 |
+
"eval_rewards/rollout_eval_reward_func/mean": 0.3934959270060062,
|
| 1284 |
+
"eval_rewards/rollout_eval_reward_func/std": 0.30925278924405575,
|
| 1285 |
+
"eval_rewards/rollout_reward_func/mean": 0.439066107571125,
|
| 1286 |
+
"eval_rewards/rollout_reward_func/std": 0.643099270761013,
|
| 1287 |
+
"eval_runtime": 164.9571,
|
| 1288 |
+
"eval_samples_per_second": 0.061,
|
| 1289 |
+
"eval_sampling/importance_sampling_ratio/max": 1.303001207113266,
|
| 1290 |
+
"eval_sampling/importance_sampling_ratio/mean": 1.0004466891288757,
|
| 1291 |
+
"eval_sampling/importance_sampling_ratio/min": 0.7182389438152313,
|
| 1292 |
+
"eval_sampling/sampling_logp_difference/max": 0.3734502553939819,
|
| 1293 |
+
"eval_sampling/sampling_logp_difference/mean": 0.009935753676109016,
|
| 1294 |
+
"eval_steps_per_second": 0.018,
|
| 1295 |
+
"step": 50
|
| 1296 |
+
}
|
| 1297 |
+
],
|
| 1298 |
+
"logging_steps": 1.0,
|
| 1299 |
+
"max_steps": 50,
|
| 1300 |
+
"num_input_tokens_seen": 7296677,
|
| 1301 |
+
"num_train_epochs": 1,
|
| 1302 |
+
"save_steps": 500,
|
| 1303 |
+
"stateful_callbacks": {
|
| 1304 |
+
"TrainerControl": {
|
| 1305 |
+
"args": {
|
| 1306 |
+
"should_epoch_stop": false,
|
| 1307 |
+
"should_evaluate": false,
|
| 1308 |
+
"should_log": false,
|
| 1309 |
+
"should_save": true,
|
| 1310 |
+
"should_training_stop": true
|
| 1311 |
+
},
|
| 1312 |
+
"attributes": {}
|
| 1313 |
+
}
|
| 1314 |
+
},
|
| 1315 |
+
"total_flos": 0.0,
|
| 1316 |
+
"train_batch_size": 1,
|
| 1317 |
+
"trial_name": null,
|
| 1318 |
+
"trial_params": null
|
| 1319 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6023a241ed9e13dc120558482fd59ad8483ff6a757259a53618a637b706d2707
|
| 3 |
+
size 8145
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|