Instructions to use ddidacus/olmoe-prompt-conditioned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use ddidacus/olmoe-prompt-conditioned with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("allenai/OLMoE-1B-7B-0125-Instruct") model = PeftModel.from_pretrained(base_model, "ddidacus/olmoe-prompt-conditioned") - Transformers
How to use ddidacus/olmoe-prompt-conditioned with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ddidacus/olmoe-prompt-conditioned") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ddidacus/olmoe-prompt-conditioned", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ddidacus/olmoe-prompt-conditioned with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ddidacus/olmoe-prompt-conditioned" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ddidacus/olmoe-prompt-conditioned", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ddidacus/olmoe-prompt-conditioned
- SGLang
How to use ddidacus/olmoe-prompt-conditioned 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 "ddidacus/olmoe-prompt-conditioned" \ --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": "ddidacus/olmoe-prompt-conditioned", "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 "ddidacus/olmoe-prompt-conditioned" \ --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": "ddidacus/olmoe-prompt-conditioned", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ddidacus/olmoe-prompt-conditioned with Docker Model Runner:
docker model run hf.co/ddidacus/olmoe-prompt-conditioned
Upload folder using huggingface_hub
Browse files- README.md +209 -0
- adapter_config.json +54 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +9 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +15 -0
- trainer_state.json +674 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: allenai/OLMoE-1B-7B-0125-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:allenai/OLMoE-1B-7B-0125-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.19.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {
|
| 4 |
+
".*\\.gate_up_proj": 64
|
| 5 |
+
},
|
| 6 |
+
"arrow_config": null,
|
| 7 |
+
"auto_mapping": null,
|
| 8 |
+
"base_model_name_or_path": "allenai/OLMoE-1B-7B-0125-Instruct",
|
| 9 |
+
"bias": "none",
|
| 10 |
+
"corda_config": null,
|
| 11 |
+
"ensure_weight_tying": false,
|
| 12 |
+
"eva_config": null,
|
| 13 |
+
"exclude_modules": null,
|
| 14 |
+
"fan_in_fan_out": false,
|
| 15 |
+
"inference_mode": true,
|
| 16 |
+
"init_lora_weights": true,
|
| 17 |
+
"layer_replication": null,
|
| 18 |
+
"layers_pattern": null,
|
| 19 |
+
"layers_to_transform": null,
|
| 20 |
+
"loftq_config": {},
|
| 21 |
+
"lora_alpha": 32,
|
| 22 |
+
"lora_bias": false,
|
| 23 |
+
"lora_dropout": 0.0,
|
| 24 |
+
"lora_ga_config": null,
|
| 25 |
+
"megatron_config": null,
|
| 26 |
+
"megatron_core": "megatron.core",
|
| 27 |
+
"modules_to_save": null,
|
| 28 |
+
"peft_type": "LORA",
|
| 29 |
+
"peft_version": "0.19.1",
|
| 30 |
+
"qalora_group_size": 16,
|
| 31 |
+
"r": 16,
|
| 32 |
+
"rank_pattern": {
|
| 33 |
+
".*\\.gate_up_proj": 32
|
| 34 |
+
},
|
| 35 |
+
"revision": null,
|
| 36 |
+
"target_modules": [
|
| 37 |
+
"v_proj",
|
| 38 |
+
"router",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"q_proj",
|
| 41 |
+
"o_proj"
|
| 42 |
+
],
|
| 43 |
+
"target_parameters": [
|
| 44 |
+
"down_proj",
|
| 45 |
+
"gate_up_proj",
|
| 46 |
+
"gate.weight"
|
| 47 |
+
],
|
| 48 |
+
"task_type": "CAUSAL_LM",
|
| 49 |
+
"trainable_token_indices": null,
|
| 50 |
+
"use_bdlora": null,
|
| 51 |
+
"use_dora": false,
|
| 52 |
+
"use_qalora": false,
|
| 53 |
+
"use_rslora": false
|
| 54 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66bef69b001859cf0288bdc857607d5934a8be30de5a31cd7614630254efa479
|
| 3 |
+
size 757167808
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}{% for message in messages %}{% if message['role'] == 'system' %}{{ '<|system|>
|
| 2 |
+
' + message['content'] + '
|
| 3 |
+
' }}{% elif message['role'] == 'user' %}{{ '<|user|>
|
| 4 |
+
' + message['content'] + '
|
| 5 |
+
' }}{% elif message['role'] == 'assistant' %}{% if not loop.last %}{{ '<|assistant|>
|
| 6 |
+
' + message['content'] + eos_token + '
|
| 7 |
+
' }}{% else %}{{ '<|assistant|>
|
| 8 |
+
' + message['content'] + eos_token }}{% endif %}{% endif %}{% if loop.last and add_generation_prompt %}{{ '<|assistant|>
|
| 9 |
+
' }}{% endif %}{% endfor %}
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82b85f459254dae235e4a682ab240cea1b9c74d09f2bb842ef6a71572f13dd30
|
| 3 |
+
size 1514466827
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:570e333df026be0afe4258c1e7ef27fc9eb5459fa566c051a4ae4d3d266dff93
|
| 3 |
+
size 14645
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4dcd0fcafdf0cac56c6781c9554680e5d2ba9bfee0d823975791d1d648a00172
|
| 3 |
+
size 1465
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": "|||IP_ADDRESS|||",
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "|||IP_ADDRESS|||",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"is_local": false,
|
| 9 |
+
"local_files_only": true,
|
| 10 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 11 |
+
"pad_token": "<pad>",
|
| 12 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
| 13 |
+
"trim_offsets": true,
|
| 14 |
+
"unk_token": null
|
| 15 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,674 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.041736227045075125,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 200,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"cache_hit_rate": 0.6749276161193848,
|
| 14 |
+
"cache_hit_rate_size16": 0.6550344030062357,
|
| 15 |
+
"cache_hit_rate_size32": 0.8710664212703705,
|
| 16 |
+
"cache_hit_rate_size8": 0.4304385483264923,
|
| 17 |
+
"clip_ratio/high_max": 0.0,
|
| 18 |
+
"clip_ratio/high_mean": 0.0,
|
| 19 |
+
"clip_ratio/low_mean": 0.0,
|
| 20 |
+
"clip_ratio/low_min": 0.0,
|
| 21 |
+
"clip_ratio/region_mean": 0.0,
|
| 22 |
+
"completions/clipped_ratio": 0.2875,
|
| 23 |
+
"completions/max_length": 1024.0,
|
| 24 |
+
"completions/max_terminated_length": 926.0,
|
| 25 |
+
"completions/mean_length": 732.10625,
|
| 26 |
+
"completions/mean_terminated_length": 595.8285858154297,
|
| 27 |
+
"completions/min_length": 208.4,
|
| 28 |
+
"completions/min_terminated_length": 208.4,
|
| 29 |
+
"entropy": 0.6143155984580517,
|
| 30 |
+
"epoch": 0.002086811352253756,
|
| 31 |
+
"frac_reward_zero_std": 0.0,
|
| 32 |
+
"grad_norm": 0.1999109834432602,
|
| 33 |
+
"kl": 0.002709078643238172,
|
| 34 |
+
"learning_rate": 9e-05,
|
| 35 |
+
"loss": -0.020685632526874543,
|
| 36 |
+
"num_tokens": 148025.0,
|
| 37 |
+
"reward": 0.6688930571079255,
|
| 38 |
+
"reward_std": 0.10492694256827235,
|
| 39 |
+
"rewards/cache_reward/mean": 0.6688930571079255,
|
| 40 |
+
"rewards/cache_reward/std": 0.10492694256827235,
|
| 41 |
+
"step": 10,
|
| 42 |
+
"step_time": 109.66132322684862
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"cache_hit_rate": 0.6733510851860046,
|
| 46 |
+
"cache_hit_rate_size16": 0.7422660708427429,
|
| 47 |
+
"cache_hit_rate_size32": 0.8451784491539002,
|
| 48 |
+
"cache_hit_rate_size8": 0.4291795551776886,
|
| 49 |
+
"clip_ratio/high_max": 0.0,
|
| 50 |
+
"clip_ratio/high_mean": 0.0,
|
| 51 |
+
"clip_ratio/low_mean": 0.0,
|
| 52 |
+
"clip_ratio/low_min": 0.0,
|
| 53 |
+
"clip_ratio/region_mean": 0.0,
|
| 54 |
+
"completions/clipped_ratio": 0.38125,
|
| 55 |
+
"completions/max_length": 1024.0,
|
| 56 |
+
"completions/max_terminated_length": 988.3,
|
| 57 |
+
"completions/mean_length": 870.26875,
|
| 58 |
+
"completions/mean_terminated_length": 780.20380859375,
|
| 59 |
+
"completions/min_length": 517.0,
|
| 60 |
+
"completions/min_terminated_length": 517.0,
|
| 61 |
+
"entropy": 0.5574822902679444,
|
| 62 |
+
"epoch": 0.004173622704507512,
|
| 63 |
+
"frac_reward_zero_std": 0.0,
|
| 64 |
+
"grad_norm": 0.27785834670066833,
|
| 65 |
+
"kl": 0.008998260926455259,
|
| 66 |
+
"learning_rate": 0.0001,
|
| 67 |
+
"loss": -0.04589595198631287,
|
| 68 |
+
"num_tokens": 324300.0,
|
| 69 |
+
"reward": 0.6649930059909821,
|
| 70 |
+
"reward_std": 0.09102208893746137,
|
| 71 |
+
"rewards/cache_reward/mean": 0.6649930059909821,
|
| 72 |
+
"rewards/cache_reward/std": 0.09102208893746137,
|
| 73 |
+
"step": 20,
|
| 74 |
+
"step_time": 109.77420157198794
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"cache_hit_rate": 0.7234689474105835,
|
| 78 |
+
"cache_hit_rate_size16": 0.7119116663932801,
|
| 79 |
+
"cache_hit_rate_size32": 0.8416047170758247,
|
| 80 |
+
"cache_hit_rate_size8": 0.3245641191800435,
|
| 81 |
+
"clip_ratio/high_max": 0.0,
|
| 82 |
+
"clip_ratio/high_mean": 0.0,
|
| 83 |
+
"clip_ratio/low_mean": 0.0,
|
| 84 |
+
"clip_ratio/low_min": 0.0,
|
| 85 |
+
"clip_ratio/region_mean": 0.0,
|
| 86 |
+
"completions/clipped_ratio": 0.2625,
|
| 87 |
+
"completions/max_length": 989.8,
|
| 88 |
+
"completions/max_terminated_length": 914.9,
|
| 89 |
+
"completions/mean_length": 701.85625,
|
| 90 |
+
"completions/mean_terminated_length": 626.0504425048828,
|
| 91 |
+
"completions/min_length": 341.9,
|
| 92 |
+
"completions/min_terminated_length": 341.9,
|
| 93 |
+
"entropy": 0.6420590102672576,
|
| 94 |
+
"epoch": 0.006260434056761269,
|
| 95 |
+
"frac_reward_zero_std": 0.0,
|
| 96 |
+
"grad_norm": 0.2189197838306427,
|
| 97 |
+
"kl": 0.015754866227507592,
|
| 98 |
+
"learning_rate": 0.0001,
|
| 99 |
+
"loss": -0.057462894916534425,
|
| 100 |
+
"num_tokens": 461973.0,
|
| 101 |
+
"reward": 0.7092925369739532,
|
| 102 |
+
"reward_std": 0.09992160452529789,
|
| 103 |
+
"rewards/cache_reward/mean": 0.7092925369739532,
|
| 104 |
+
"rewards/cache_reward/std": 0.09992160452529789,
|
| 105 |
+
"step": 30,
|
| 106 |
+
"step_time": 105.50118747297674
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"cache_hit_rate": 0.6422885358333588,
|
| 110 |
+
"cache_hit_rate_size16": 0.7278285367148263,
|
| 111 |
+
"cache_hit_rate_size32": 0.8580973446369171,
|
| 112 |
+
"cache_hit_rate_size8": 0.37648922204971313,
|
| 113 |
+
"clip_ratio/high_max": 0.0,
|
| 114 |
+
"clip_ratio/high_mean": 0.0,
|
| 115 |
+
"clip_ratio/low_mean": 0.0,
|
| 116 |
+
"clip_ratio/low_min": 0.0,
|
| 117 |
+
"clip_ratio/region_mean": 0.0,
|
| 118 |
+
"completions/clipped_ratio": 0.4125,
|
| 119 |
+
"completions/max_length": 1017.0,
|
| 120 |
+
"completions/max_terminated_length": 930.3,
|
| 121 |
+
"completions/mean_length": 831.81875,
|
| 122 |
+
"completions/mean_terminated_length": 727.4821502685547,
|
| 123 |
+
"completions/min_length": 484.1,
|
| 124 |
+
"completions/min_terminated_length": 484.1,
|
| 125 |
+
"entropy": 0.5546563148498536,
|
| 126 |
+
"epoch": 0.008347245409015025,
|
| 127 |
+
"frac_reward_zero_std": 0.0,
|
| 128 |
+
"grad_norm": 0.2441343367099762,
|
| 129 |
+
"kl": 0.021256055543199183,
|
| 130 |
+
"learning_rate": 0.0001,
|
| 131 |
+
"loss": -0.06346478462219238,
|
| 132 |
+
"num_tokens": 636696.0,
|
| 133 |
+
"reward": 0.6391598552465438,
|
| 134 |
+
"reward_std": 0.13217019997537136,
|
| 135 |
+
"rewards/cache_reward/mean": 0.6391598552465438,
|
| 136 |
+
"rewards/cache_reward/std": 0.13217019997537136,
|
| 137 |
+
"step": 40,
|
| 138 |
+
"step_time": 109.29803132868838
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"cache_hit_rate": 0.6705451369285583,
|
| 142 |
+
"cache_hit_rate_size16": 0.6974249720573426,
|
| 143 |
+
"cache_hit_rate_size32": 0.8658615776470729,
|
| 144 |
+
"cache_hit_rate_size8": 0.4653993273774783,
|
| 145 |
+
"clip_ratio/high_max": 0.0,
|
| 146 |
+
"clip_ratio/high_mean": 0.0,
|
| 147 |
+
"clip_ratio/low_mean": 0.0,
|
| 148 |
+
"clip_ratio/low_min": 0.0,
|
| 149 |
+
"clip_ratio/region_mean": 0.0,
|
| 150 |
+
"completions/clipped_ratio": 0.34375,
|
| 151 |
+
"completions/max_length": 1021.8,
|
| 152 |
+
"completions/max_terminated_length": 879.7,
|
| 153 |
+
"completions/mean_length": 794.4875,
|
| 154 |
+
"completions/mean_terminated_length": 615.1027160644531,
|
| 155 |
+
"completions/min_length": 435.1,
|
| 156 |
+
"completions/min_terminated_length": 332.7,
|
| 157 |
+
"entropy": 0.6008389577269554,
|
| 158 |
+
"epoch": 0.010434056761268781,
|
| 159 |
+
"frac_reward_zero_std": 0.0,
|
| 160 |
+
"grad_norm": 0.23809342086315155,
|
| 161 |
+
"kl": 0.03263230957090855,
|
| 162 |
+
"learning_rate": 0.0001,
|
| 163 |
+
"loss": -0.04350569248199463,
|
| 164 |
+
"num_tokens": 798422.0,
|
| 165 |
+
"reward": 0.688891452550888,
|
| 166 |
+
"reward_std": 0.1476906482130289,
|
| 167 |
+
"rewards/cache_reward/mean": 0.688891452550888,
|
| 168 |
+
"rewards/cache_reward/std": 0.1476906482130289,
|
| 169 |
+
"step": 50,
|
| 170 |
+
"step_time": 109.32008387609385
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"cache_hit_rate": 0.5735559463500977,
|
| 174 |
+
"cache_hit_rate_size16": 0.6513433158397675,
|
| 175 |
+
"cache_hit_rate_size32": 0.8832110166549683,
|
| 176 |
+
"cache_hit_rate_size8": 0.4417416916953193,
|
| 177 |
+
"clip_ratio/high_max": 0.0,
|
| 178 |
+
"clip_ratio/high_mean": 0.0,
|
| 179 |
+
"clip_ratio/low_mean": 0.0,
|
| 180 |
+
"clip_ratio/low_min": 0.0,
|
| 181 |
+
"clip_ratio/region_mean": 0.0,
|
| 182 |
+
"completions/clipped_ratio": 0.39375,
|
| 183 |
+
"completions/max_length": 1024.0,
|
| 184 |
+
"completions/max_terminated_length": 950.8,
|
| 185 |
+
"completions/mean_length": 820.71875,
|
| 186 |
+
"completions/mean_terminated_length": 705.5888244628907,
|
| 187 |
+
"completions/min_length": 393.1,
|
| 188 |
+
"completions/min_terminated_length": 393.1,
|
| 189 |
+
"entropy": 0.5146959632635116,
|
| 190 |
+
"epoch": 0.012520868113522538,
|
| 191 |
+
"frac_reward_zero_std": 0.0,
|
| 192 |
+
"grad_norm": 0.2036655694246292,
|
| 193 |
+
"kl": 0.03261517193168402,
|
| 194 |
+
"learning_rate": 0.0001,
|
| 195 |
+
"loss": -0.06676955223083496,
|
| 196 |
+
"num_tokens": 977289.0,
|
| 197 |
+
"reward": 0.5551395505666733,
|
| 198 |
+
"reward_std": 0.130782650411129,
|
| 199 |
+
"rewards/cache_reward/mean": 0.5551395505666733,
|
| 200 |
+
"rewards/cache_reward/std": 0.130782650411129,
|
| 201 |
+
"step": 60,
|
| 202 |
+
"step_time": 110.19092689147219
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"cache_hit_rate": 0.7626929998397827,
|
| 206 |
+
"cache_hit_rate_size16": 0.6949937641620636,
|
| 207 |
+
"cache_hit_rate_size32": 0.8773939145935906,
|
| 208 |
+
"cache_hit_rate_size8": 0.5052446524302164,
|
| 209 |
+
"clip_ratio/high_max": 0.0,
|
| 210 |
+
"clip_ratio/high_mean": 0.0,
|
| 211 |
+
"clip_ratio/low_mean": 0.0,
|
| 212 |
+
"clip_ratio/low_min": 0.0,
|
| 213 |
+
"clip_ratio/region_mean": 0.0,
|
| 214 |
+
"completions/clipped_ratio": 0.375,
|
| 215 |
+
"completions/max_length": 1024.0,
|
| 216 |
+
"completions/max_terminated_length": 960.0,
|
| 217 |
+
"completions/mean_length": 831.425,
|
| 218 |
+
"completions/mean_terminated_length": 736.7794067382813,
|
| 219 |
+
"completions/min_length": 410.3,
|
| 220 |
+
"completions/min_terminated_length": 410.3,
|
| 221 |
+
"entropy": 0.550393845140934,
|
| 222 |
+
"epoch": 0.014607679465776294,
|
| 223 |
+
"frac_reward_zero_std": 0.0,
|
| 224 |
+
"grad_norm": 0.2976628541946411,
|
| 225 |
+
"kl": 0.04141218531876802,
|
| 226 |
+
"learning_rate": 0.0001,
|
| 227 |
+
"loss": -0.028155168890953063,
|
| 228 |
+
"num_tokens": 1149221.0,
|
| 229 |
+
"reward": 0.765302586555481,
|
| 230 |
+
"reward_std": 0.10612610904499889,
|
| 231 |
+
"rewards/cache_reward/mean": 0.765302586555481,
|
| 232 |
+
"rewards/cache_reward/std": 0.10612610904499889,
|
| 233 |
+
"step": 70,
|
| 234 |
+
"step_time": 109.80838733934797
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"cache_hit_rate": 0.6532172083854675,
|
| 238 |
+
"cache_hit_rate_size16": 0.7496759465762547,
|
| 239 |
+
"cache_hit_rate_size32": 0.8642965952555338,
|
| 240 |
+
"cache_hit_rate_size8": 0.4807915687561035,
|
| 241 |
+
"clip_ratio/high_max": 0.0,
|
| 242 |
+
"clip_ratio/high_mean": 0.0,
|
| 243 |
+
"clip_ratio/low_mean": 0.0,
|
| 244 |
+
"clip_ratio/low_min": 0.0,
|
| 245 |
+
"clip_ratio/region_mean": 0.0,
|
| 246 |
+
"completions/clipped_ratio": 0.475,
|
| 247 |
+
"completions/max_length": 1024.0,
|
| 248 |
+
"completions/max_terminated_length": 958.0,
|
| 249 |
+
"completions/mean_length": 828.0625,
|
| 250 |
+
"completions/mean_terminated_length": 696.7795776367187,
|
| 251 |
+
"completions/min_length": 460.7,
|
| 252 |
+
"completions/min_terminated_length": 460.7,
|
| 253 |
+
"entropy": 0.5280586190521717,
|
| 254 |
+
"epoch": 0.01669449081803005,
|
| 255 |
+
"frac_reward_zero_std": 0.0,
|
| 256 |
+
"grad_norm": 0.21478967368602753,
|
| 257 |
+
"kl": 0.05440526399761438,
|
| 258 |
+
"learning_rate": 0.0001,
|
| 259 |
+
"loss": -0.047751826047897336,
|
| 260 |
+
"num_tokens": 1317623.0,
|
| 261 |
+
"reward": 0.6507435321807862,
|
| 262 |
+
"reward_std": 0.1329113408923149,
|
| 263 |
+
"rewards/cache_reward/mean": 0.6507435321807862,
|
| 264 |
+
"rewards/cache_reward/std": 0.1329113408923149,
|
| 265 |
+
"step": 80,
|
| 266 |
+
"step_time": 109.61795915367547
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"cache_hit_rate": 0.628938740491867,
|
| 270 |
+
"cache_hit_rate_size16": 0.6589138408501943,
|
| 271 |
+
"cache_hit_rate_size32": 0.8045709133148193,
|
| 272 |
+
"cache_hit_rate_size8": 0.4631062958921705,
|
| 273 |
+
"clip_ratio/high_max": 0.0,
|
| 274 |
+
"clip_ratio/high_mean": 0.0,
|
| 275 |
+
"clip_ratio/low_mean": 0.0,
|
| 276 |
+
"clip_ratio/low_min": 0.0,
|
| 277 |
+
"clip_ratio/region_mean": 0.0,
|
| 278 |
+
"completions/clipped_ratio": 0.39375,
|
| 279 |
+
"completions/max_length": 1024.0,
|
| 280 |
+
"completions/max_terminated_length": 922.1,
|
| 281 |
+
"completions/mean_length": 763.0125,
|
| 282 |
+
"completions/mean_terminated_length": 620.8271697998047,
|
| 283 |
+
"completions/min_length": 354.5,
|
| 284 |
+
"completions/min_terminated_length": 354.5,
|
| 285 |
+
"entropy": 0.6081107705831528,
|
| 286 |
+
"epoch": 0.018781302170283808,
|
| 287 |
+
"frac_reward_zero_std": 0.0,
|
| 288 |
+
"grad_norm": 0.2587888240814209,
|
| 289 |
+
"kl": 0.06952012721449137,
|
| 290 |
+
"learning_rate": 0.0001,
|
| 291 |
+
"loss": -0.006095578521490097,
|
| 292 |
+
"num_tokens": 1485377.0,
|
| 293 |
+
"reward": 0.6154629409313201,
|
| 294 |
+
"reward_std": 0.10154437553137541,
|
| 295 |
+
"rewards/cache_reward/mean": 0.6154629409313201,
|
| 296 |
+
"rewards/cache_reward/std": 0.10154437553137541,
|
| 297 |
+
"step": 90,
|
| 298 |
+
"step_time": 110.01140693970956
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"cache_hit_rate": 0.6613744765520095,
|
| 302 |
+
"cache_hit_rate_size16": 0.7402904033660889,
|
| 303 |
+
"cache_hit_rate_size32": 0.8814258575439453,
|
| 304 |
+
"cache_hit_rate_size8": 0.42935203909873965,
|
| 305 |
+
"clip_ratio/high_max": 0.0,
|
| 306 |
+
"clip_ratio/high_mean": 0.0,
|
| 307 |
+
"clip_ratio/low_mean": 0.0,
|
| 308 |
+
"clip_ratio/low_min": 0.0,
|
| 309 |
+
"clip_ratio/region_mean": 0.0,
|
| 310 |
+
"completions/clipped_ratio": 0.425,
|
| 311 |
+
"completions/max_length": 1024.0,
|
| 312 |
+
"completions/max_terminated_length": 943.8,
|
| 313 |
+
"completions/mean_length": 829.99375,
|
| 314 |
+
"completions/mean_terminated_length": 697.3199035644532,
|
| 315 |
+
"completions/min_length": 391.9,
|
| 316 |
+
"completions/min_terminated_length": 391.9,
|
| 317 |
+
"entropy": 0.5821917943656445,
|
| 318 |
+
"epoch": 0.020868113522537562,
|
| 319 |
+
"frac_reward_zero_std": 0.0,
|
| 320 |
+
"grad_norm": 0.23848511278629303,
|
| 321 |
+
"kl": 0.07018006853759289,
|
| 322 |
+
"learning_rate": 0.0001,
|
| 323 |
+
"loss": -0.031068474054336548,
|
| 324 |
+
"num_tokens": 1647416.0,
|
| 325 |
+
"reward": 0.6516854614019394,
|
| 326 |
+
"reward_std": 0.08088633958250284,
|
| 327 |
+
"rewards/cache_reward/mean": 0.6516854614019394,
|
| 328 |
+
"rewards/cache_reward/std": 0.08088633958250284,
|
| 329 |
+
"step": 100,
|
| 330 |
+
"step_time": 109.22561302329413
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"cache_hit_rate": 0.7659814059734344,
|
| 334 |
+
"cache_hit_rate_size16": 0.7210325002670288,
|
| 335 |
+
"cache_hit_rate_size32": 0.8733292288250394,
|
| 336 |
+
"cache_hit_rate_size8": 0.5074326276779175,
|
| 337 |
+
"clip_ratio/high_max": 0.0,
|
| 338 |
+
"clip_ratio/high_mean": 0.0,
|
| 339 |
+
"clip_ratio/low_mean": 0.0,
|
| 340 |
+
"clip_ratio/low_min": 0.0,
|
| 341 |
+
"clip_ratio/region_mean": 0.0,
|
| 342 |
+
"completions/clipped_ratio": 0.39375,
|
| 343 |
+
"completions/max_length": 1000.1,
|
| 344 |
+
"completions/max_terminated_length": 903.8,
|
| 345 |
+
"completions/mean_length": 738.875,
|
| 346 |
+
"completions/mean_terminated_length": 597.613003540039,
|
| 347 |
+
"completions/min_length": 244.4,
|
| 348 |
+
"completions/min_terminated_length": 244.4,
|
| 349 |
+
"entropy": 0.6063698619604111,
|
| 350 |
+
"epoch": 0.022954924874791317,
|
| 351 |
+
"frac_reward_zero_std": 0.0,
|
| 352 |
+
"grad_norm": 0.22822512686252594,
|
| 353 |
+
"kl": 0.0519987877458334,
|
| 354 |
+
"learning_rate": 0.0001,
|
| 355 |
+
"loss": -0.004398582130670547,
|
| 356 |
+
"num_tokens": 1809740.0,
|
| 357 |
+
"reward": 0.7583289802074432,
|
| 358 |
+
"reward_std": 0.11587669281288981,
|
| 359 |
+
"rewards/cache_reward/mean": 0.7583289802074432,
|
| 360 |
+
"rewards/cache_reward/std": 0.11587669281288981,
|
| 361 |
+
"step": 110,
|
| 362 |
+
"step_time": 107.61979042319581
|
| 363 |
+
},
|
| 364 |
+
{
|
| 365 |
+
"cache_hit_rate": 0.667035973072052,
|
| 366 |
+
"cache_hit_rate_size16": 0.6942717552185058,
|
| 367 |
+
"cache_hit_rate_size32": 0.8527272343635559,
|
| 368 |
+
"cache_hit_rate_size8": 0.40293918251991273,
|
| 369 |
+
"clip_ratio/high_max": 0.0,
|
| 370 |
+
"clip_ratio/high_mean": 0.0,
|
| 371 |
+
"clip_ratio/low_mean": 0.0,
|
| 372 |
+
"clip_ratio/low_min": 0.0,
|
| 373 |
+
"clip_ratio/region_mean": 0.0,
|
| 374 |
+
"completions/clipped_ratio": 0.175,
|
| 375 |
+
"completions/max_length": 1003.6,
|
| 376 |
+
"completions/max_terminated_length": 930.3,
|
| 377 |
+
"completions/mean_length": 665.3625,
|
| 378 |
+
"completions/mean_terminated_length": 598.4001220703125,
|
| 379 |
+
"completions/min_length": 247.0,
|
| 380 |
+
"completions/min_terminated_length": 247.0,
|
| 381 |
+
"entropy": 0.7441994078457356,
|
| 382 |
+
"epoch": 0.025041736227045076,
|
| 383 |
+
"frac_reward_zero_std": 0.0,
|
| 384 |
+
"grad_norm": 0.21977545320987701,
|
| 385 |
+
"kl": 0.06097110863775015,
|
| 386 |
+
"learning_rate": 0.0001,
|
| 387 |
+
"loss": -0.05008636116981506,
|
| 388 |
+
"num_tokens": 1947502.0,
|
| 389 |
+
"reward": 0.6475550562143326,
|
| 390 |
+
"reward_std": 0.11349433939903975,
|
| 391 |
+
"rewards/cache_reward/mean": 0.6475550562143326,
|
| 392 |
+
"rewards/cache_reward/std": 0.11349433939903975,
|
| 393 |
+
"step": 120,
|
| 394 |
+
"step_time": 107.30077534515877
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"cache_hit_rate": 0.686054265499115,
|
| 398 |
+
"cache_hit_rate_size16": 0.6798208653926849,
|
| 399 |
+
"cache_hit_rate_size32": 0.871903528769811,
|
| 400 |
+
"cache_hit_rate_size8": 0.443097785115242,
|
| 401 |
+
"clip_ratio/high_max": 0.0,
|
| 402 |
+
"clip_ratio/high_mean": 0.0,
|
| 403 |
+
"clip_ratio/low_mean": 0.0,
|
| 404 |
+
"clip_ratio/low_min": 0.0,
|
| 405 |
+
"clip_ratio/region_mean": 0.0,
|
| 406 |
+
"completions/clipped_ratio": 0.2875,
|
| 407 |
+
"completions/max_length": 986.6,
|
| 408 |
+
"completions/max_terminated_length": 909.5,
|
| 409 |
+
"completions/mean_length": 661.2125,
|
| 410 |
+
"completions/mean_terminated_length": 539.6267791748047,
|
| 411 |
+
"completions/min_length": 202.2,
|
| 412 |
+
"completions/min_terminated_length": 202.2,
|
| 413 |
+
"entropy": 0.685629041492939,
|
| 414 |
+
"epoch": 0.02712854757929883,
|
| 415 |
+
"frac_reward_zero_std": 0.0,
|
| 416 |
+
"grad_norm": 0.2505522072315216,
|
| 417 |
+
"kl": 0.06346707474440336,
|
| 418 |
+
"learning_rate": 0.0001,
|
| 419 |
+
"loss": -0.08610177040100098,
|
| 420 |
+
"num_tokens": 2106072.0,
|
| 421 |
+
"reward": 0.6472916662693023,
|
| 422 |
+
"reward_std": 0.10670399386435747,
|
| 423 |
+
"rewards/cache_reward/mean": 0.6472916662693023,
|
| 424 |
+
"rewards/cache_reward/std": 0.10670399386435747,
|
| 425 |
+
"step": 130,
|
| 426 |
+
"step_time": 106.4104538091924
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"cache_hit_rate": 0.7193193137645721,
|
| 430 |
+
"cache_hit_rate_size16": 0.6384188731511434,
|
| 431 |
+
"cache_hit_rate_size32": 0.9035206958651543,
|
| 432 |
+
"cache_hit_rate_size8": 0.45546102098056246,
|
| 433 |
+
"clip_ratio/high_max": 0.0,
|
| 434 |
+
"clip_ratio/high_mean": 0.0,
|
| 435 |
+
"clip_ratio/low_mean": 0.0,
|
| 436 |
+
"clip_ratio/low_min": 0.0,
|
| 437 |
+
"clip_ratio/region_mean": 0.0,
|
| 438 |
+
"completions/clipped_ratio": 0.49375,
|
| 439 |
+
"completions/max_length": 1011.1,
|
| 440 |
+
"completions/max_terminated_length": 949.7,
|
| 441 |
+
"completions/mean_length": 824.2125,
|
| 442 |
+
"completions/mean_terminated_length": 655.7207336425781,
|
| 443 |
+
"completions/min_length": 250.9,
|
| 444 |
+
"completions/min_terminated_length": 250.9,
|
| 445 |
+
"entropy": 0.5345787741243839,
|
| 446 |
+
"epoch": 0.02921535893155259,
|
| 447 |
+
"frac_reward_zero_std": 0.0,
|
| 448 |
+
"grad_norm": 0.24551904201507568,
|
| 449 |
+
"kl": 0.05889502316713333,
|
| 450 |
+
"learning_rate": 0.0001,
|
| 451 |
+
"loss": -0.10549832582473755,
|
| 452 |
+
"num_tokens": 2277234.0,
|
| 453 |
+
"reward": 0.6919173955917358,
|
| 454 |
+
"reward_std": 0.18916533272713423,
|
| 455 |
+
"rewards/cache_reward/mean": 0.6919173955917358,
|
| 456 |
+
"rewards/cache_reward/std": 0.18916533272713423,
|
| 457 |
+
"step": 140,
|
| 458 |
+
"step_time": 108.70422725854442
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"cache_hit_rate": 0.6837528288364411,
|
| 462 |
+
"cache_hit_rate_size16": 0.743753457069397,
|
| 463 |
+
"cache_hit_rate_size32": 0.8899944126605988,
|
| 464 |
+
"cache_hit_rate_size8": 0.43498979695141315,
|
| 465 |
+
"clip_ratio/high_max": 0.0,
|
| 466 |
+
"clip_ratio/high_mean": 0.0,
|
| 467 |
+
"clip_ratio/low_mean": 0.0,
|
| 468 |
+
"clip_ratio/low_min": 0.0,
|
| 469 |
+
"clip_ratio/region_mean": 0.0,
|
| 470 |
+
"completions/clipped_ratio": 0.29375,
|
| 471 |
+
"completions/max_length": 997.1,
|
| 472 |
+
"completions/max_terminated_length": 943.5,
|
| 473 |
+
"completions/mean_length": 775.30625,
|
| 474 |
+
"completions/mean_terminated_length": 693.9155212402344,
|
| 475 |
+
"completions/min_length": 411.5,
|
| 476 |
+
"completions/min_terminated_length": 411.5,
|
| 477 |
+
"entropy": 0.5689274027943612,
|
| 478 |
+
"epoch": 0.031302170283806344,
|
| 479 |
+
"frac_reward_zero_std": 0.0,
|
| 480 |
+
"grad_norm": 0.22718407213687897,
|
| 481 |
+
"kl": 0.06529534254223109,
|
| 482 |
+
"learning_rate": 0.0001,
|
| 483 |
+
"loss": -0.04616514444351196,
|
| 484 |
+
"num_tokens": 2444147.0,
|
| 485 |
+
"reward": 0.6700104534626007,
|
| 486 |
+
"reward_std": 0.17748181223869325,
|
| 487 |
+
"rewards/cache_reward/mean": 0.6700104534626007,
|
| 488 |
+
"rewards/cache_reward/std": 0.17748181223869325,
|
| 489 |
+
"step": 150,
|
| 490 |
+
"step_time": 106.98494991599583
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"cache_hit_rate": 0.6439329028129578,
|
| 494 |
+
"cache_hit_rate_size16": 0.7306425826890128,
|
| 495 |
+
"cache_hit_rate_size32": 0.865531712770462,
|
| 496 |
+
"cache_hit_rate_size8": 0.4455534170071284,
|
| 497 |
+
"clip_ratio/high_max": 0.0,
|
| 498 |
+
"clip_ratio/high_mean": 0.0,
|
| 499 |
+
"clip_ratio/low_mean": 0.0,
|
| 500 |
+
"clip_ratio/low_min": 0.0,
|
| 501 |
+
"clip_ratio/region_mean": 0.0,
|
| 502 |
+
"completions/clipped_ratio": 0.24375,
|
| 503 |
+
"completions/max_length": 1010.9,
|
| 504 |
+
"completions/max_terminated_length": 928.8,
|
| 505 |
+
"completions/mean_length": 701.30625,
|
| 506 |
+
"completions/mean_terminated_length": 617.9401885986329,
|
| 507 |
+
"completions/min_length": 373.5,
|
| 508 |
+
"completions/min_terminated_length": 373.5,
|
| 509 |
+
"entropy": 0.6062380790710449,
|
| 510 |
+
"epoch": 0.0333889816360601,
|
| 511 |
+
"frac_reward_zero_std": 0.0,
|
| 512 |
+
"grad_norm": 0.311809241771698,
|
| 513 |
+
"kl": 0.06560975145548582,
|
| 514 |
+
"learning_rate": 0.0001,
|
| 515 |
+
"loss": -0.11374449729919434,
|
| 516 |
+
"num_tokens": 2588116.0,
|
| 517 |
+
"reward": 0.629342782497406,
|
| 518 |
+
"reward_std": 0.09073512144386768,
|
| 519 |
+
"rewards/cache_reward/mean": 0.629342782497406,
|
| 520 |
+
"rewards/cache_reward/std": 0.09073512144386768,
|
| 521 |
+
"step": 160,
|
| 522 |
+
"step_time": 107.92681602598168
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"cache_hit_rate": 0.737691605091095,
|
| 526 |
+
"cache_hit_rate_size16": 0.7616987451910973,
|
| 527 |
+
"cache_hit_rate_size32": 0.8484096378087997,
|
| 528 |
+
"cache_hit_rate_size8": 0.47391005357106525,
|
| 529 |
+
"clip_ratio/high_max": 0.0,
|
| 530 |
+
"clip_ratio/high_mean": 0.0,
|
| 531 |
+
"clip_ratio/low_mean": 0.0,
|
| 532 |
+
"clip_ratio/low_min": 0.0,
|
| 533 |
+
"clip_ratio/region_mean": 0.0,
|
| 534 |
+
"completions/clipped_ratio": 0.5375,
|
| 535 |
+
"completions/max_length": 1015.0,
|
| 536 |
+
"completions/max_terminated_length": 968.0,
|
| 537 |
+
"completions/mean_length": 876.60625,
|
| 538 |
+
"completions/mean_terminated_length": 778.4466735839844,
|
| 539 |
+
"completions/min_length": 541.3,
|
| 540 |
+
"completions/min_terminated_length": 541.3,
|
| 541 |
+
"entropy": 0.5039393544197083,
|
| 542 |
+
"epoch": 0.03547579298831385,
|
| 543 |
+
"frac_reward_zero_std": 0.0,
|
| 544 |
+
"grad_norm": 0.22193852066993713,
|
| 545 |
+
"kl": 0.07721416000276804,
|
| 546 |
+
"learning_rate": 0.0001,
|
| 547 |
+
"loss": 0.009571240842342376,
|
| 548 |
+
"num_tokens": 2774853.0,
|
| 549 |
+
"reward": 0.7360832095146179,
|
| 550 |
+
"reward_std": 0.09169260896742344,
|
| 551 |
+
"rewards/cache_reward/mean": 0.7360832095146179,
|
| 552 |
+
"rewards/cache_reward/std": 0.09169260896742344,
|
| 553 |
+
"step": 170,
|
| 554 |
+
"step_time": 108.83163746409119
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"cache_hit_rate": 0.6702417641878128,
|
| 558 |
+
"cache_hit_rate_size16": 0.7594628930091858,
|
| 559 |
+
"cache_hit_rate_size32": 0.8569953143596649,
|
| 560 |
+
"cache_hit_rate_size8": 0.4382890040675799,
|
| 561 |
+
"clip_ratio/high_max": 0.0,
|
| 562 |
+
"clip_ratio/high_mean": 0.0,
|
| 563 |
+
"clip_ratio/low_mean": 0.0,
|
| 564 |
+
"clip_ratio/low_min": 0.0,
|
| 565 |
+
"clip_ratio/region_mean": 0.0,
|
| 566 |
+
"completions/clipped_ratio": 0.3625,
|
| 567 |
+
"completions/max_length": 1016.3,
|
| 568 |
+
"completions/max_terminated_length": 938.8,
|
| 569 |
+
"completions/mean_length": 702.325,
|
| 570 |
+
"completions/mean_terminated_length": 549.5508026123047,
|
| 571 |
+
"completions/min_length": 199.8,
|
| 572 |
+
"completions/min_terminated_length": 199.8,
|
| 573 |
+
"entropy": 0.6205699190497398,
|
| 574 |
+
"epoch": 0.037562604340567615,
|
| 575 |
+
"frac_reward_zero_std": 0.0,
|
| 576 |
+
"grad_norm": 0.28704333305358887,
|
| 577 |
+
"kl": 0.08045898843556643,
|
| 578 |
+
"learning_rate": 0.0001,
|
| 579 |
+
"loss": -0.04709939360618591,
|
| 580 |
+
"num_tokens": 2935177.0,
|
| 581 |
+
"reward": 0.6992827504873276,
|
| 582 |
+
"reward_std": 0.131203200109303,
|
| 583 |
+
"rewards/cache_reward/mean": 0.6992827504873276,
|
| 584 |
+
"rewards/cache_reward/std": 0.131203200109303,
|
| 585 |
+
"step": 180,
|
| 586 |
+
"step_time": 109.50919925523922
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"cache_hit_rate": 0.6852899014949798,
|
| 590 |
+
"cache_hit_rate_size16": 0.6899512580462864,
|
| 591 |
+
"cache_hit_rate_size32": 0.8868090361356735,
|
| 592 |
+
"cache_hit_rate_size8": 0.4937669684489568,
|
| 593 |
+
"clip_ratio/high_max": 0.0,
|
| 594 |
+
"clip_ratio/high_mean": 0.0,
|
| 595 |
+
"clip_ratio/low_mean": 0.0,
|
| 596 |
+
"clip_ratio/low_min": 0.0,
|
| 597 |
+
"clip_ratio/region_mean": 0.0,
|
| 598 |
+
"completions/clipped_ratio": 0.40625,
|
| 599 |
+
"completions/max_length": 1024.0,
|
| 600 |
+
"completions/max_terminated_length": 867.3,
|
| 601 |
+
"completions/mean_length": 734.975,
|
| 602 |
+
"completions/mean_terminated_length": 540.3156127929688,
|
| 603 |
+
"completions/min_length": 192.5,
|
| 604 |
+
"completions/min_terminated_length": 192.5,
|
| 605 |
+
"entropy": 0.5207937769591808,
|
| 606 |
+
"epoch": 0.03964941569282137,
|
| 607 |
+
"frac_reward_zero_std": 0.0,
|
| 608 |
+
"grad_norm": 0.2835640013217926,
|
| 609 |
+
"kl": 0.0956730455160141,
|
| 610 |
+
"learning_rate": 0.0001,
|
| 611 |
+
"loss": -0.044486325979232785,
|
| 612 |
+
"num_tokens": 3104349.0,
|
| 613 |
+
"reward": 0.6792330205440521,
|
| 614 |
+
"reward_std": 0.14855806417763234,
|
| 615 |
+
"rewards/cache_reward/mean": 0.6792330205440521,
|
| 616 |
+
"rewards/cache_reward/std": 0.14855806417763234,
|
| 617 |
+
"step": 190,
|
| 618 |
+
"step_time": 110.20991073080805
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"cache_hit_rate": 0.6421143919229507,
|
| 622 |
+
"cache_hit_rate_size16": 0.6826490312814713,
|
| 623 |
+
"cache_hit_rate_size32": 0.8723512291908264,
|
| 624 |
+
"cache_hit_rate_size8": 0.44266503552595776,
|
| 625 |
+
"clip_ratio/high_max": 0.0,
|
| 626 |
+
"clip_ratio/high_mean": 0.0,
|
| 627 |
+
"clip_ratio/low_mean": 0.0,
|
| 628 |
+
"clip_ratio/low_min": 0.0,
|
| 629 |
+
"clip_ratio/region_mean": 0.0,
|
| 630 |
+
"completions/clipped_ratio": 0.425,
|
| 631 |
+
"completions/max_length": 1024.0,
|
| 632 |
+
"completions/max_terminated_length": 871.2,
|
| 633 |
+
"completions/mean_length": 670.93125,
|
| 634 |
+
"completions/mean_terminated_length": 457.2080528259277,
|
| 635 |
+
"completions/min_length": 191.1,
|
| 636 |
+
"completions/min_terminated_length": 191.1,
|
| 637 |
+
"entropy": 0.6987772159278393,
|
| 638 |
+
"epoch": 0.041736227045075125,
|
| 639 |
+
"frac_reward_zero_std": 0.0,
|
| 640 |
+
"grad_norm": 0.28543853759765625,
|
| 641 |
+
"kl": 0.09522749911993741,
|
| 642 |
+
"learning_rate": 0.0001,
|
| 643 |
+
"loss": -0.05127257704734802,
|
| 644 |
+
"num_tokens": 3267042.0,
|
| 645 |
+
"reward": 0.6385201156139374,
|
| 646 |
+
"reward_std": 0.12131488006561994,
|
| 647 |
+
"rewards/cache_reward/mean": 0.6385201156139374,
|
| 648 |
+
"rewards/cache_reward/std": 0.12131488006561994,
|
| 649 |
+
"step": 200,
|
| 650 |
+
"step_time": 110.4871686702827
|
| 651 |
+
}
|
| 652 |
+
],
|
| 653 |
+
"logging_steps": 10,
|
| 654 |
+
"max_steps": 200,
|
| 655 |
+
"num_input_tokens_seen": 3267042,
|
| 656 |
+
"num_train_epochs": 1,
|
| 657 |
+
"save_steps": 50,
|
| 658 |
+
"stateful_callbacks": {
|
| 659 |
+
"TrainerControl": {
|
| 660 |
+
"args": {
|
| 661 |
+
"should_epoch_stop": false,
|
| 662 |
+
"should_evaluate": false,
|
| 663 |
+
"should_log": false,
|
| 664 |
+
"should_save": true,
|
| 665 |
+
"should_training_stop": true
|
| 666 |
+
},
|
| 667 |
+
"attributes": {}
|
| 668 |
+
}
|
| 669 |
+
},
|
| 670 |
+
"total_flos": 0.0,
|
| 671 |
+
"train_batch_size": 8,
|
| 672 |
+
"trial_name": null,
|
| 673 |
+
"trial_params": null
|
| 674 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d990e886140bc05f15c566f6832c8487051786c46e57df5ffd57605bdf6d2cf1
|
| 3 |
+
size 7825
|