Text Generation
Transformers
Safetensors
Thai
llm
thai
mathematics
reasoning
lora
grpo
conversational
Instructions to use zoeythanayot/gemma3-it-grpo-thai with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zoeythanayot/gemma3-it-grpo-thai with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zoeythanayot/gemma3-it-grpo-thai") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("zoeythanayot/gemma3-it-grpo-thai", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zoeythanayot/gemma3-it-grpo-thai with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zoeythanayot/gemma3-it-grpo-thai" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zoeythanayot/gemma3-it-grpo-thai", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zoeythanayot/gemma3-it-grpo-thai
- SGLang
How to use zoeythanayot/gemma3-it-grpo-thai 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 "zoeythanayot/gemma3-it-grpo-thai" \ --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": "zoeythanayot/gemma3-it-grpo-thai", "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 "zoeythanayot/gemma3-it-grpo-thai" \ --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": "zoeythanayot/gemma3-it-grpo-thai", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zoeythanayot/gemma3-it-grpo-thai with Docker Model Runner:
docker model run hf.co/zoeythanayot/gemma3-it-grpo-thai
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +202 -0
- adapter_config.json +39 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +3 -0
- chat_template.jinja +47 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +33 -0
- tokenizer.json +3 -0
- tokenizer.model +3 -0
- tokenizer_config.json +0 -0
- trainer_state.json +846 -0
- training_args.bin +3 -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,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: google/gemma-3-4b-it
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.15.2
|
adapter_config.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "google/gemma-3-4b-it",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 64,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 32,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"v_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
+
"up_proj",
|
| 30 |
+
"o_proj",
|
| 31 |
+
"q_proj",
|
| 32 |
+
"k_proj",
|
| 33 |
+
"down_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"trainable_token_indices": null,
|
| 37 |
+
"use_dora": false,
|
| 38 |
+
"use_rslora": false
|
| 39 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37581067fb5d266b77b4dc0637e3eb926635cfa645cf2cc9ff074bd5f45235f6
|
| 3 |
+
size 238492088
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{ bos_token }}
|
| 2 |
+
{%- if messages[0]['role'] == 'system' -%}
|
| 3 |
+
{%- if messages[0]['content'] is string -%}
|
| 4 |
+
{%- set first_user_prefix = messages[0]['content'] + '
|
| 5 |
+
|
| 6 |
+
' -%}
|
| 7 |
+
{%- else -%}
|
| 8 |
+
{%- set first_user_prefix = messages[0]['content'][0]['text'] + '
|
| 9 |
+
|
| 10 |
+
' -%}
|
| 11 |
+
{%- endif -%}
|
| 12 |
+
{%- set loop_messages = messages[1:] -%}
|
| 13 |
+
{%- else -%}
|
| 14 |
+
{%- set first_user_prefix = "" -%}
|
| 15 |
+
{%- set loop_messages = messages -%}
|
| 16 |
+
{%- endif -%}
|
| 17 |
+
{%- for message in loop_messages -%}
|
| 18 |
+
{%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
|
| 19 |
+
{{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
|
| 20 |
+
{%- endif -%}
|
| 21 |
+
{%- if (message['role'] == 'assistant') -%}
|
| 22 |
+
{%- set role = "model" -%}
|
| 23 |
+
{%- else -%}
|
| 24 |
+
{%- set role = message['role'] -%}
|
| 25 |
+
{%- endif -%}
|
| 26 |
+
{{ '<start_of_turn>' + role + '
|
| 27 |
+
' + (first_user_prefix if loop.first else "") }}
|
| 28 |
+
{%- if message['content'] is string -%}
|
| 29 |
+
{{ message['content'] | trim }}
|
| 30 |
+
{%- elif message['content'] is iterable -%}
|
| 31 |
+
{%- for item in message['content'] -%}
|
| 32 |
+
{%- if item['type'] == 'image' -%}
|
| 33 |
+
{{ '<start_of_image>' }}
|
| 34 |
+
{%- elif item['type'] == 'text' -%}
|
| 35 |
+
{{ item['text'] | trim }}
|
| 36 |
+
{%- endif -%}
|
| 37 |
+
{%- endfor -%}
|
| 38 |
+
{%- else -%}
|
| 39 |
+
{{ raise_exception("Invalid content type") }}
|
| 40 |
+
{%- endif -%}
|
| 41 |
+
{{ '<end_of_turn>
|
| 42 |
+
' }}
|
| 43 |
+
{%- endfor -%}
|
| 44 |
+
{%- if add_generation_prompt -%}
|
| 45 |
+
{{'<start_of_turn>model
|
| 46 |
+
'}}
|
| 47 |
+
{%- endif -%}
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebb79f8b5de4a02da011164d80aa3ee3260c33f34ce31684f72a43c06cd4caf7
|
| 3 |
+
size 121642438
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dfd1d6f91e2b424a94d63c6a65efb6e73df07b6f0951e03ef3030c2256e4eb1
|
| 3 |
+
size 14244
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ea8c33528ed85211ccdb7f8564520ece0df82eadcf8eec3cf5d0eb1aa2173a3
|
| 3 |
+
size 1064
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"boi_token": "<start_of_image>",
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"content": "<bos>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
},
|
| 10 |
+
"eoi_token": "<end_of_image>",
|
| 11 |
+
"eos_token": {
|
| 12 |
+
"content": "<eos>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false
|
| 17 |
+
},
|
| 18 |
+
"image_token": "<image_soft_token>",
|
| 19 |
+
"pad_token": {
|
| 20 |
+
"content": "<pad>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false
|
| 25 |
+
},
|
| 26 |
+
"unk_token": {
|
| 27 |
+
"content": "<unk>",
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"normalized": false,
|
| 30 |
+
"rstrip": false,
|
| 31 |
+
"single_word": false
|
| 32 |
+
}
|
| 33 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d786405177734910d7a3db625c2826640964a0b4e5cdbbd70620ae3313a01bef
|
| 3 |
+
size 33384722
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
trainer_state.json
ADDED
|
@@ -0,0 +1,846 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 280,
|
| 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": 1.0,
|
| 19 |
+
"completions/max_length": 160.0,
|
| 20 |
+
"completions/max_terminated_length": 0.0,
|
| 21 |
+
"completions/mean_length": 160.0,
|
| 22 |
+
"completions/mean_terminated_length": 0.0,
|
| 23 |
+
"completions/min_length": 160.0,
|
| 24 |
+
"completions/min_terminated_length": 0.0,
|
| 25 |
+
"entropy": 0.12625992042012513,
|
| 26 |
+
"epoch": 0.03571428571428571,
|
| 27 |
+
"frac_reward_zero_std": 0.1,
|
| 28 |
+
"grad_norm": 0.5207030773162842,
|
| 29 |
+
"kl": 0.029890698788585725,
|
| 30 |
+
"learning_rate": 4.8392857142857146e-05,
|
| 31 |
+
"loss": 0.0003,
|
| 32 |
+
"num_tokens": 46564.0,
|
| 33 |
+
"reward": 0.24375,
|
| 34 |
+
"reward_std": 0.38889276385307314,
|
| 35 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 36 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 37 |
+
"rewards/format_reward/mean": 0.24375,
|
| 38 |
+
"rewards/format_reward/std": 0.38889277875423434,
|
| 39 |
+
"step": 10
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"clip_ratio/high_max": 0.0,
|
| 43 |
+
"clip_ratio/high_mean": 0.0,
|
| 44 |
+
"clip_ratio/low_mean": 0.0,
|
| 45 |
+
"clip_ratio/low_min": 0.0,
|
| 46 |
+
"clip_ratio/region_mean": 0.0,
|
| 47 |
+
"completions/clipped_ratio": 1.0,
|
| 48 |
+
"completions/max_length": 160.0,
|
| 49 |
+
"completions/max_terminated_length": 0.0,
|
| 50 |
+
"completions/mean_length": 160.0,
|
| 51 |
+
"completions/mean_terminated_length": 0.0,
|
| 52 |
+
"completions/min_length": 160.0,
|
| 53 |
+
"completions/min_terminated_length": 0.0,
|
| 54 |
+
"entropy": 0.12813723259605467,
|
| 55 |
+
"epoch": 0.07142857142857142,
|
| 56 |
+
"frac_reward_zero_std": 0.0,
|
| 57 |
+
"grad_norm": 0.5805707573890686,
|
| 58 |
+
"kl": 0.14628016483038664,
|
| 59 |
+
"learning_rate": 4.660714285714286e-05,
|
| 60 |
+
"loss": 0.0015,
|
| 61 |
+
"num_tokens": 92372.0,
|
| 62 |
+
"reward": 0.31875,
|
| 63 |
+
"reward_std": 0.44964262247085574,
|
| 64 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 65 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 66 |
+
"rewards/format_reward/mean": 0.31875,
|
| 67 |
+
"rewards/format_reward/std": 0.4496426522731781,
|
| 68 |
+
"step": 20
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"clip_ratio/high_max": 0.0,
|
| 72 |
+
"clip_ratio/high_mean": 0.0,
|
| 73 |
+
"clip_ratio/low_mean": 0.0,
|
| 74 |
+
"clip_ratio/low_min": 0.0,
|
| 75 |
+
"clip_ratio/region_mean": 0.0,
|
| 76 |
+
"completions/clipped_ratio": 1.0,
|
| 77 |
+
"completions/max_length": 160.0,
|
| 78 |
+
"completions/max_terminated_length": 0.0,
|
| 79 |
+
"completions/mean_length": 160.0,
|
| 80 |
+
"completions/mean_terminated_length": 0.0,
|
| 81 |
+
"completions/min_length": 160.0,
|
| 82 |
+
"completions/min_terminated_length": 0.0,
|
| 83 |
+
"entropy": 0.13213527642656117,
|
| 84 |
+
"epoch": 0.10714285714285714,
|
| 85 |
+
"frac_reward_zero_std": 0.0,
|
| 86 |
+
"grad_norm": 0.452333003282547,
|
| 87 |
+
"kl": 0.14923681337386369,
|
| 88 |
+
"learning_rate": 4.482142857142857e-05,
|
| 89 |
+
"loss": 0.0015,
|
| 90 |
+
"num_tokens": 137784.0,
|
| 91 |
+
"reward": 0.4125,
|
| 92 |
+
"reward_std": 0.480369633436203,
|
| 93 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 94 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 95 |
+
"rewards/format_reward/mean": 0.4125,
|
| 96 |
+
"rewards/format_reward/std": 0.48036965131759646,
|
| 97 |
+
"step": 30
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"clip_ratio/high_max": 0.0,
|
| 101 |
+
"clip_ratio/high_mean": 0.0,
|
| 102 |
+
"clip_ratio/low_mean": 0.0,
|
| 103 |
+
"clip_ratio/low_min": 0.0,
|
| 104 |
+
"clip_ratio/region_mean": 0.0,
|
| 105 |
+
"completions/clipped_ratio": 1.0,
|
| 106 |
+
"completions/max_length": 160.0,
|
| 107 |
+
"completions/max_terminated_length": 0.0,
|
| 108 |
+
"completions/mean_length": 160.0,
|
| 109 |
+
"completions/mean_terminated_length": 0.0,
|
| 110 |
+
"completions/min_length": 160.0,
|
| 111 |
+
"completions/min_terminated_length": 0.0,
|
| 112 |
+
"entropy": 0.13474671822041273,
|
| 113 |
+
"epoch": 0.14285714285714285,
|
| 114 |
+
"frac_reward_zero_std": 0.0,
|
| 115 |
+
"grad_norm": 0.6397606730461121,
|
| 116 |
+
"kl": 0.17617695135995745,
|
| 117 |
+
"learning_rate": 4.303571428571429e-05,
|
| 118 |
+
"loss": 0.0018,
|
| 119 |
+
"num_tokens": 184512.0,
|
| 120 |
+
"reward": 0.29375,
|
| 121 |
+
"reward_std": 0.4483493506908417,
|
| 122 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 123 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 124 |
+
"rewards/format_reward/mean": 0.29375,
|
| 125 |
+
"rewards/format_reward/std": 0.4483493685722351,
|
| 126 |
+
"step": 40
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"clip_ratio/high_max": 0.0,
|
| 130 |
+
"clip_ratio/high_mean": 0.0,
|
| 131 |
+
"clip_ratio/low_mean": 0.0,
|
| 132 |
+
"clip_ratio/low_min": 0.0,
|
| 133 |
+
"clip_ratio/region_mean": 0.0,
|
| 134 |
+
"completions/clipped_ratio": 1.0,
|
| 135 |
+
"completions/max_length": 160.0,
|
| 136 |
+
"completions/max_terminated_length": 0.0,
|
| 137 |
+
"completions/mean_length": 160.0,
|
| 138 |
+
"completions/mean_terminated_length": 0.0,
|
| 139 |
+
"completions/min_length": 160.0,
|
| 140 |
+
"completions/min_terminated_length": 0.0,
|
| 141 |
+
"entropy": 0.13772077192552387,
|
| 142 |
+
"epoch": 0.17857142857142858,
|
| 143 |
+
"frac_reward_zero_std": 0.0,
|
| 144 |
+
"grad_norm": 0.023568596690893173,
|
| 145 |
+
"kl": 0.20543135565239937,
|
| 146 |
+
"learning_rate": 4.125e-05,
|
| 147 |
+
"loss": 0.0021,
|
| 148 |
+
"num_tokens": 230810.0,
|
| 149 |
+
"reward": 0.40625,
|
| 150 |
+
"reward_std": 0.46784973740577696,
|
| 151 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 152 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 153 |
+
"rewards/format_reward/mean": 0.40625,
|
| 154 |
+
"rewards/format_reward/std": 0.4678497463464737,
|
| 155 |
+
"step": 50
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"clip_ratio/high_max": 0.0,
|
| 159 |
+
"clip_ratio/high_mean": 0.0,
|
| 160 |
+
"clip_ratio/low_mean": 0.0,
|
| 161 |
+
"clip_ratio/low_min": 0.0,
|
| 162 |
+
"clip_ratio/region_mean": 0.0,
|
| 163 |
+
"completions/clipped_ratio": 1.0,
|
| 164 |
+
"completions/max_length": 160.0,
|
| 165 |
+
"completions/max_terminated_length": 0.0,
|
| 166 |
+
"completions/mean_length": 160.0,
|
| 167 |
+
"completions/mean_terminated_length": 0.0,
|
| 168 |
+
"completions/min_length": 160.0,
|
| 169 |
+
"completions/min_terminated_length": 0.0,
|
| 170 |
+
"entropy": 0.1001779991784133,
|
| 171 |
+
"epoch": 0.21428571428571427,
|
| 172 |
+
"frac_reward_zero_std": 0.0,
|
| 173 |
+
"grad_norm": 0.3460525572299957,
|
| 174 |
+
"kl": 0.22092539798468352,
|
| 175 |
+
"learning_rate": 3.946428571428571e-05,
|
| 176 |
+
"loss": 0.0022,
|
| 177 |
+
"num_tokens": 276958.0,
|
| 178 |
+
"reward": 0.63125,
|
| 179 |
+
"reward_std": 0.4759595632553101,
|
| 180 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 181 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 182 |
+
"rewards/format_reward/mean": 0.63125,
|
| 183 |
+
"rewards/format_reward/std": 0.4759595781564713,
|
| 184 |
+
"step": 60
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"clip_ratio/high_max": 0.0,
|
| 188 |
+
"clip_ratio/high_mean": 0.0,
|
| 189 |
+
"clip_ratio/low_mean": 0.0,
|
| 190 |
+
"clip_ratio/low_min": 0.0,
|
| 191 |
+
"clip_ratio/region_mean": 0.0,
|
| 192 |
+
"completions/clipped_ratio": 1.0,
|
| 193 |
+
"completions/max_length": 160.0,
|
| 194 |
+
"completions/max_terminated_length": 0.0,
|
| 195 |
+
"completions/mean_length": 160.0,
|
| 196 |
+
"completions/mean_terminated_length": 0.0,
|
| 197 |
+
"completions/min_length": 160.0,
|
| 198 |
+
"completions/min_terminated_length": 0.0,
|
| 199 |
+
"entropy": 0.09113281725440174,
|
| 200 |
+
"epoch": 0.25,
|
| 201 |
+
"frac_reward_zero_std": 0.0,
|
| 202 |
+
"grad_norm": 0.27182736992836,
|
| 203 |
+
"kl": 0.2702178731560707,
|
| 204 |
+
"learning_rate": 3.767857142857143e-05,
|
| 205 |
+
"loss": 0.0027,
|
| 206 |
+
"num_tokens": 322870.0,
|
| 207 |
+
"reward": 0.74375,
|
| 208 |
+
"reward_std": 0.4677943289279938,
|
| 209 |
+
"rewards/accuracy_reward/mean": 0.01875,
|
| 210 |
+
"rewards/accuracy_reward/std": 0.05915650427341461,
|
| 211 |
+
"rewards/format_reward/mean": 0.725,
|
| 212 |
+
"rewards/format_reward/std": 0.44086891412734985,
|
| 213 |
+
"step": 70
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"clip_ratio/high_max": 0.0,
|
| 217 |
+
"clip_ratio/high_mean": 0.0,
|
| 218 |
+
"clip_ratio/low_mean": 0.0,
|
| 219 |
+
"clip_ratio/low_min": 0.0,
|
| 220 |
+
"clip_ratio/region_mean": 0.0,
|
| 221 |
+
"completions/clipped_ratio": 1.0,
|
| 222 |
+
"completions/max_length": 160.0,
|
| 223 |
+
"completions/max_terminated_length": 0.0,
|
| 224 |
+
"completions/mean_length": 160.0,
|
| 225 |
+
"completions/mean_terminated_length": 0.0,
|
| 226 |
+
"completions/min_length": 160.0,
|
| 227 |
+
"completions/min_terminated_length": 0.0,
|
| 228 |
+
"entropy": 0.07283033218700438,
|
| 229 |
+
"epoch": 0.2857142857142857,
|
| 230 |
+
"frac_reward_zero_std": 0.3,
|
| 231 |
+
"grad_norm": 0.4305204153060913,
|
| 232 |
+
"kl": 0.30486682509072127,
|
| 233 |
+
"learning_rate": 3.589285714285715e-05,
|
| 234 |
+
"loss": 0.003,
|
| 235 |
+
"num_tokens": 368898.0,
|
| 236 |
+
"reward": 0.875,
|
| 237 |
+
"reward_std": 0.2758632004261017,
|
| 238 |
+
"rewards/accuracy_reward/mean": 0.00625,
|
| 239 |
+
"rewards/accuracy_reward/std": 0.025,
|
| 240 |
+
"rewards/format_reward/mean": 0.86875,
|
| 241 |
+
"rewards/format_reward/std": 0.26565522849559786,
|
| 242 |
+
"step": 80
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"clip_ratio/high_max": 0.0,
|
| 246 |
+
"clip_ratio/high_mean": 0.0,
|
| 247 |
+
"clip_ratio/low_mean": 0.0,
|
| 248 |
+
"clip_ratio/low_min": 0.0,
|
| 249 |
+
"clip_ratio/region_mean": 0.0,
|
| 250 |
+
"completions/clipped_ratio": 1.0,
|
| 251 |
+
"completions/max_length": 160.0,
|
| 252 |
+
"completions/max_terminated_length": 0.0,
|
| 253 |
+
"completions/mean_length": 160.0,
|
| 254 |
+
"completions/mean_terminated_length": 0.0,
|
| 255 |
+
"completions/min_length": 160.0,
|
| 256 |
+
"completions/min_terminated_length": 0.0,
|
| 257 |
+
"entropy": 0.06701735492097213,
|
| 258 |
+
"epoch": 0.32142857142857145,
|
| 259 |
+
"frac_reward_zero_std": 0.1,
|
| 260 |
+
"grad_norm": 0.007617300376296043,
|
| 261 |
+
"kl": 0.32528871656395497,
|
| 262 |
+
"learning_rate": 3.410714285714286e-05,
|
| 263 |
+
"loss": 0.0033,
|
| 264 |
+
"num_tokens": 415134.0,
|
| 265 |
+
"reward": 0.8875,
|
| 266 |
+
"reward_std": 0.33791992366313933,
|
| 267 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 268 |
+
"rewards/accuracy_reward/std": 0.05,
|
| 269 |
+
"rewards/format_reward/mean": 0.875,
|
| 270 |
+
"rewards/format_reward/std": 0.31671638786792755,
|
| 271 |
+
"step": 90
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"clip_ratio/high_max": 0.0,
|
| 275 |
+
"clip_ratio/high_mean": 0.0,
|
| 276 |
+
"clip_ratio/low_mean": 0.0,
|
| 277 |
+
"clip_ratio/low_min": 0.0,
|
| 278 |
+
"clip_ratio/region_mean": 0.0,
|
| 279 |
+
"completions/clipped_ratio": 1.0,
|
| 280 |
+
"completions/max_length": 160.0,
|
| 281 |
+
"completions/max_terminated_length": 0.0,
|
| 282 |
+
"completions/mean_length": 160.0,
|
| 283 |
+
"completions/mean_terminated_length": 0.0,
|
| 284 |
+
"completions/min_length": 160.0,
|
| 285 |
+
"completions/min_terminated_length": 0.0,
|
| 286 |
+
"entropy": 0.06509439181536436,
|
| 287 |
+
"epoch": 0.35714285714285715,
|
| 288 |
+
"frac_reward_zero_std": 0.3,
|
| 289 |
+
"grad_norm": 0.010140369646251202,
|
| 290 |
+
"kl": 0.298904563812539,
|
| 291 |
+
"learning_rate": 3.2321428571428574e-05,
|
| 292 |
+
"loss": 0.003,
|
| 293 |
+
"num_tokens": 460524.0,
|
| 294 |
+
"reward": 0.9375,
|
| 295 |
+
"reward_std": 0.2313473641872406,
|
| 296 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 297 |
+
"rewards/accuracy_reward/std": 0.034156504273414615,
|
| 298 |
+
"rewards/format_reward/mean": 0.925,
|
| 299 |
+
"rewards/format_reward/std": 0.19719087481498718,
|
| 300 |
+
"step": 100
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"clip_ratio/high_max": 0.0,
|
| 304 |
+
"clip_ratio/high_mean": 0.0,
|
| 305 |
+
"clip_ratio/low_mean": 0.0,
|
| 306 |
+
"clip_ratio/low_min": 0.0,
|
| 307 |
+
"clip_ratio/region_mean": 0.0,
|
| 308 |
+
"completions/clipped_ratio": 1.0,
|
| 309 |
+
"completions/max_length": 160.0,
|
| 310 |
+
"completions/max_terminated_length": 0.0,
|
| 311 |
+
"completions/mean_length": 160.0,
|
| 312 |
+
"completions/mean_terminated_length": 0.0,
|
| 313 |
+
"completions/min_length": 160.0,
|
| 314 |
+
"completions/min_terminated_length": 0.0,
|
| 315 |
+
"entropy": 0.0780115590954665,
|
| 316 |
+
"epoch": 0.39285714285714285,
|
| 317 |
+
"frac_reward_zero_std": 0.2,
|
| 318 |
+
"grad_norm": 0.6102597117424011,
|
| 319 |
+
"kl": 0.314992543682456,
|
| 320 |
+
"learning_rate": 3.053571428571429e-05,
|
| 321 |
+
"loss": 0.0031,
|
| 322 |
+
"num_tokens": 506718.0,
|
| 323 |
+
"reward": 0.95,
|
| 324 |
+
"reward_std": 0.2625021517276764,
|
| 325 |
+
"rewards/accuracy_reward/mean": 0.025,
|
| 326 |
+
"rewards/accuracy_reward/std": 0.06831300854682923,
|
| 327 |
+
"rewards/format_reward/mean": 0.925,
|
| 328 |
+
"rewards/format_reward/std": 0.19418915510177612,
|
| 329 |
+
"step": 110
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"clip_ratio/high_max": 0.0,
|
| 333 |
+
"clip_ratio/high_mean": 0.0,
|
| 334 |
+
"clip_ratio/low_mean": 0.0,
|
| 335 |
+
"clip_ratio/low_min": 0.0,
|
| 336 |
+
"clip_ratio/region_mean": 0.0,
|
| 337 |
+
"completions/clipped_ratio": 1.0,
|
| 338 |
+
"completions/max_length": 160.0,
|
| 339 |
+
"completions/max_terminated_length": 0.0,
|
| 340 |
+
"completions/mean_length": 160.0,
|
| 341 |
+
"completions/mean_terminated_length": 0.0,
|
| 342 |
+
"completions/min_length": 160.0,
|
| 343 |
+
"completions/min_terminated_length": 0.0,
|
| 344 |
+
"entropy": 0.06869765471710707,
|
| 345 |
+
"epoch": 0.42857142857142855,
|
| 346 |
+
"frac_reward_zero_std": 0.3,
|
| 347 |
+
"grad_norm": 0.18664264678955078,
|
| 348 |
+
"kl": 0.3312602242454886,
|
| 349 |
+
"learning_rate": 2.8749999999999997e-05,
|
| 350 |
+
"loss": 0.0033,
|
| 351 |
+
"num_tokens": 551914.0,
|
| 352 |
+
"reward": 0.975,
|
| 353 |
+
"reward_std": 0.23939219117164612,
|
| 354 |
+
"rewards/accuracy_reward/mean": 0.03125,
|
| 355 |
+
"rewards/accuracy_reward/std": 0.09331300854682922,
|
| 356 |
+
"rewards/format_reward/mean": 0.94375,
|
| 357 |
+
"rewards/format_reward/std": 0.17446779310703278,
|
| 358 |
+
"step": 120
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"clip_ratio/high_max": 0.0,
|
| 362 |
+
"clip_ratio/high_mean": 0.0,
|
| 363 |
+
"clip_ratio/low_mean": 0.0,
|
| 364 |
+
"clip_ratio/low_min": 0.0,
|
| 365 |
+
"clip_ratio/region_mean": 0.0,
|
| 366 |
+
"completions/clipped_ratio": 1.0,
|
| 367 |
+
"completions/max_length": 160.0,
|
| 368 |
+
"completions/max_terminated_length": 0.0,
|
| 369 |
+
"completions/mean_length": 160.0,
|
| 370 |
+
"completions/mean_terminated_length": 0.0,
|
| 371 |
+
"completions/min_length": 160.0,
|
| 372 |
+
"completions/min_terminated_length": 0.0,
|
| 373 |
+
"entropy": 0.07147310696454952,
|
| 374 |
+
"epoch": 0.4642857142857143,
|
| 375 |
+
"frac_reward_zero_std": 0.5,
|
| 376 |
+
"grad_norm": 0.02365143969655037,
|
| 377 |
+
"kl": 0.35637650578282776,
|
| 378 |
+
"learning_rate": 2.6964285714285714e-05,
|
| 379 |
+
"loss": 0.0036,
|
| 380 |
+
"num_tokens": 597752.0,
|
| 381 |
+
"reward": 0.95625,
|
| 382 |
+
"reward_std": 0.17910928130149842,
|
| 383 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 384 |
+
"rewards/accuracy_reward/std": 0.034156504273414615,
|
| 385 |
+
"rewards/format_reward/mean": 0.94375,
|
| 386 |
+
"rewards/format_reward/std": 0.16162601709365845,
|
| 387 |
+
"step": 130
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"clip_ratio/high_max": 0.0,
|
| 391 |
+
"clip_ratio/high_mean": 0.0,
|
| 392 |
+
"clip_ratio/low_mean": 0.0,
|
| 393 |
+
"clip_ratio/low_min": 0.0,
|
| 394 |
+
"clip_ratio/region_mean": 0.0,
|
| 395 |
+
"completions/clipped_ratio": 1.0,
|
| 396 |
+
"completions/max_length": 160.0,
|
| 397 |
+
"completions/max_terminated_length": 0.0,
|
| 398 |
+
"completions/mean_length": 160.0,
|
| 399 |
+
"completions/mean_terminated_length": 0.0,
|
| 400 |
+
"completions/min_length": 160.0,
|
| 401 |
+
"completions/min_terminated_length": 0.0,
|
| 402 |
+
"entropy": 0.06830690645729191,
|
| 403 |
+
"epoch": 0.5,
|
| 404 |
+
"frac_reward_zero_std": 0.2,
|
| 405 |
+
"grad_norm": 0.02468046173453331,
|
| 406 |
+
"kl": 0.3641864719800651,
|
| 407 |
+
"learning_rate": 2.5178571428571428e-05,
|
| 408 |
+
"loss": 0.0036,
|
| 409 |
+
"num_tokens": 643248.0,
|
| 410 |
+
"reward": 0.95625,
|
| 411 |
+
"reward_std": 0.2526991993188858,
|
| 412 |
+
"rewards/accuracy_reward/mean": 0.025,
|
| 413 |
+
"rewards/accuracy_reward/std": 0.08415650427341462,
|
| 414 |
+
"rewards/format_reward/mean": 0.93125,
|
| 415 |
+
"rewards/format_reward/std": 0.18202786147594452,
|
| 416 |
+
"step": 140
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"clip_ratio/high_max": 0.0,
|
| 420 |
+
"clip_ratio/high_mean": 0.0,
|
| 421 |
+
"clip_ratio/low_mean": 0.0,
|
| 422 |
+
"clip_ratio/low_min": 0.0,
|
| 423 |
+
"clip_ratio/region_mean": 0.0,
|
| 424 |
+
"completions/clipped_ratio": 1.0,
|
| 425 |
+
"completions/max_length": 160.0,
|
| 426 |
+
"completions/max_terminated_length": 0.0,
|
| 427 |
+
"completions/mean_length": 160.0,
|
| 428 |
+
"completions/mean_terminated_length": 0.0,
|
| 429 |
+
"completions/min_length": 160.0,
|
| 430 |
+
"completions/min_terminated_length": 0.0,
|
| 431 |
+
"entropy": 0.07277907942188903,
|
| 432 |
+
"epoch": 0.5357142857142857,
|
| 433 |
+
"frac_reward_zero_std": 0.2,
|
| 434 |
+
"grad_norm": 0.3342110812664032,
|
| 435 |
+
"kl": 0.35218177605420353,
|
| 436 |
+
"learning_rate": 2.3392857142857145e-05,
|
| 437 |
+
"loss": 0.0035,
|
| 438 |
+
"num_tokens": 689174.0,
|
| 439 |
+
"reward": 0.96875,
|
| 440 |
+
"reward_std": 0.2683339625597,
|
| 441 |
+
"rewards/accuracy_reward/mean": 0.0375,
|
| 442 |
+
"rewards/accuracy_reward/std": 0.11831300854682922,
|
| 443 |
+
"rewards/format_reward/mean": 0.93125,
|
| 444 |
+
"rewards/format_reward/std": 0.21162601709365844,
|
| 445 |
+
"step": 150
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"clip_ratio/high_max": 0.0,
|
| 449 |
+
"clip_ratio/high_mean": 0.0,
|
| 450 |
+
"clip_ratio/low_mean": 0.0,
|
| 451 |
+
"clip_ratio/low_min": 0.0,
|
| 452 |
+
"clip_ratio/region_mean": 0.0,
|
| 453 |
+
"completions/clipped_ratio": 1.0,
|
| 454 |
+
"completions/max_length": 160.0,
|
| 455 |
+
"completions/max_terminated_length": 0.0,
|
| 456 |
+
"completions/mean_length": 160.0,
|
| 457 |
+
"completions/mean_terminated_length": 0.0,
|
| 458 |
+
"completions/min_length": 160.0,
|
| 459 |
+
"completions/min_terminated_length": 0.0,
|
| 460 |
+
"entropy": 0.07139425584464335,
|
| 461 |
+
"epoch": 0.5714285714285714,
|
| 462 |
+
"frac_reward_zero_std": 0.9,
|
| 463 |
+
"grad_norm": 0.021100714802742004,
|
| 464 |
+
"kl": 0.3498226302675903,
|
| 465 |
+
"learning_rate": 2.1607142857142858e-05,
|
| 466 |
+
"loss": 0.0035,
|
| 467 |
+
"num_tokens": 735904.0,
|
| 468 |
+
"reward": 1.00625,
|
| 469 |
+
"reward_std": 0.025,
|
| 470 |
+
"rewards/accuracy_reward/mean": 0.00625,
|
| 471 |
+
"rewards/accuracy_reward/std": 0.025,
|
| 472 |
+
"rewards/format_reward/mean": 1.0,
|
| 473 |
+
"rewards/format_reward/std": 0.0,
|
| 474 |
+
"step": 160
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"clip_ratio/high_max": 0.0,
|
| 478 |
+
"clip_ratio/high_mean": 0.0,
|
| 479 |
+
"clip_ratio/low_mean": 0.0,
|
| 480 |
+
"clip_ratio/low_min": 0.0,
|
| 481 |
+
"clip_ratio/region_mean": 0.0,
|
| 482 |
+
"completions/clipped_ratio": 1.0,
|
| 483 |
+
"completions/max_length": 160.0,
|
| 484 |
+
"completions/max_terminated_length": 0.0,
|
| 485 |
+
"completions/mean_length": 160.0,
|
| 486 |
+
"completions/mean_terminated_length": 0.0,
|
| 487 |
+
"completions/min_length": 160.0,
|
| 488 |
+
"completions/min_terminated_length": 0.0,
|
| 489 |
+
"entropy": 0.09096196873579174,
|
| 490 |
+
"epoch": 0.6071428571428571,
|
| 491 |
+
"frac_reward_zero_std": 0.2,
|
| 492 |
+
"grad_norm": 0.36118584871292114,
|
| 493 |
+
"kl": 0.3759258924983442,
|
| 494 |
+
"learning_rate": 1.982142857142857e-05,
|
| 495 |
+
"loss": 0.0038,
|
| 496 |
+
"num_tokens": 782492.0,
|
| 497 |
+
"reward": 0.95,
|
| 498 |
+
"reward_std": 0.26942057013511655,
|
| 499 |
+
"rewards/accuracy_reward/mean": 0.025,
|
| 500 |
+
"rewards/accuracy_reward/std": 0.06831300854682923,
|
| 501 |
+
"rewards/format_reward/mean": 0.925,
|
| 502 |
+
"rewards/format_reward/std": 0.217780801653862,
|
| 503 |
+
"step": 170
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"clip_ratio/high_max": 0.0,
|
| 507 |
+
"clip_ratio/high_mean": 0.0,
|
| 508 |
+
"clip_ratio/low_mean": 0.0,
|
| 509 |
+
"clip_ratio/low_min": 0.0,
|
| 510 |
+
"clip_ratio/region_mean": 0.0,
|
| 511 |
+
"completions/clipped_ratio": 1.0,
|
| 512 |
+
"completions/max_length": 160.0,
|
| 513 |
+
"completions/max_terminated_length": 0.0,
|
| 514 |
+
"completions/mean_length": 160.0,
|
| 515 |
+
"completions/mean_terminated_length": 0.0,
|
| 516 |
+
"completions/min_length": 160.0,
|
| 517 |
+
"completions/min_terminated_length": 0.0,
|
| 518 |
+
"entropy": 0.11560409280937164,
|
| 519 |
+
"epoch": 0.6428571428571429,
|
| 520 |
+
"frac_reward_zero_std": 0.6,
|
| 521 |
+
"grad_norm": 0.00570648955181241,
|
| 522 |
+
"kl": 0.382719272794202,
|
| 523 |
+
"learning_rate": 1.8035714285714285e-05,
|
| 524 |
+
"loss": 0.0038,
|
| 525 |
+
"num_tokens": 829112.0,
|
| 526 |
+
"reward": 0.98125,
|
| 527 |
+
"reward_std": 0.12840956151485444,
|
| 528 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 529 |
+
"rewards/accuracy_reward/std": 0.05,
|
| 530 |
+
"rewards/format_reward/mean": 0.96875,
|
| 531 |
+
"rewards/format_reward/std": 0.09331300854682922,
|
| 532 |
+
"step": 180
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"clip_ratio/high_max": 0.0,
|
| 536 |
+
"clip_ratio/high_mean": 0.0,
|
| 537 |
+
"clip_ratio/low_mean": 0.0,
|
| 538 |
+
"clip_ratio/low_min": 0.0,
|
| 539 |
+
"clip_ratio/region_mean": 0.0,
|
| 540 |
+
"completions/clipped_ratio": 1.0,
|
| 541 |
+
"completions/max_length": 160.0,
|
| 542 |
+
"completions/max_terminated_length": 0.0,
|
| 543 |
+
"completions/mean_length": 160.0,
|
| 544 |
+
"completions/mean_terminated_length": 0.0,
|
| 545 |
+
"completions/min_length": 160.0,
|
| 546 |
+
"completions/min_terminated_length": 0.0,
|
| 547 |
+
"entropy": 0.10731171959778293,
|
| 548 |
+
"epoch": 0.6785714285714286,
|
| 549 |
+
"frac_reward_zero_std": 0.6,
|
| 550 |
+
"grad_norm": 0.012304564006626606,
|
| 551 |
+
"kl": 0.3598832252435386,
|
| 552 |
+
"learning_rate": 1.6250000000000002e-05,
|
| 553 |
+
"loss": 0.0036,
|
| 554 |
+
"num_tokens": 875390.0,
|
| 555 |
+
"reward": 0.95625,
|
| 556 |
+
"reward_std": 0.15684083700180054,
|
| 557 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 558 |
+
"rewards/accuracy_reward/std": 0.034156504273414615,
|
| 559 |
+
"rewards/format_reward/mean": 0.94375,
|
| 560 |
+
"rewards/format_reward/std": 0.13977908194065095,
|
| 561 |
+
"step": 190
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"clip_ratio/high_max": 0.0,
|
| 565 |
+
"clip_ratio/high_mean": 0.0,
|
| 566 |
+
"clip_ratio/low_mean": 0.0,
|
| 567 |
+
"clip_ratio/low_min": 0.0,
|
| 568 |
+
"clip_ratio/region_mean": 0.0,
|
| 569 |
+
"completions/clipped_ratio": 1.0,
|
| 570 |
+
"completions/max_length": 160.0,
|
| 571 |
+
"completions/max_terminated_length": 0.0,
|
| 572 |
+
"completions/mean_length": 160.0,
|
| 573 |
+
"completions/mean_terminated_length": 0.0,
|
| 574 |
+
"completions/min_length": 160.0,
|
| 575 |
+
"completions/min_terminated_length": 0.0,
|
| 576 |
+
"entropy": 0.1362523474963382,
|
| 577 |
+
"epoch": 0.7142857142857143,
|
| 578 |
+
"frac_reward_zero_std": 0.4,
|
| 579 |
+
"grad_norm": 0.5960667729377747,
|
| 580 |
+
"kl": 0.39577870490029454,
|
| 581 |
+
"learning_rate": 1.4464285714285717e-05,
|
| 582 |
+
"loss": 0.004,
|
| 583 |
+
"num_tokens": 922518.0,
|
| 584 |
+
"reward": 0.93125,
|
| 585 |
+
"reward_std": 0.22683832049369812,
|
| 586 |
+
"rewards/accuracy_reward/mean": 0.01875,
|
| 587 |
+
"rewards/accuracy_reward/std": 0.075,
|
| 588 |
+
"rewards/format_reward/mean": 0.9125,
|
| 589 |
+
"rewards/format_reward/std": 0.19454776644706726,
|
| 590 |
+
"step": 200
|
| 591 |
+
},
|
| 592 |
+
{
|
| 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": 1.0,
|
| 599 |
+
"completions/max_length": 160.0,
|
| 600 |
+
"completions/max_terminated_length": 0.0,
|
| 601 |
+
"completions/mean_length": 160.0,
|
| 602 |
+
"completions/mean_terminated_length": 0.0,
|
| 603 |
+
"completions/min_length": 160.0,
|
| 604 |
+
"completions/min_terminated_length": 0.0,
|
| 605 |
+
"entropy": 0.10914715133840218,
|
| 606 |
+
"epoch": 0.75,
|
| 607 |
+
"frac_reward_zero_std": 0.5,
|
| 608 |
+
"grad_norm": 0.006838708650320768,
|
| 609 |
+
"kl": 0.37330353884026407,
|
| 610 |
+
"learning_rate": 1.2678571428571429e-05,
|
| 611 |
+
"loss": 0.0037,
|
| 612 |
+
"num_tokens": 968198.0,
|
| 613 |
+
"reward": 0.99375,
|
| 614 |
+
"reward_std": 0.16918914914131164,
|
| 615 |
+
"rewards/accuracy_reward/mean": 0.03125,
|
| 616 |
+
"rewards/accuracy_reward/std": 0.09031128883361816,
|
| 617 |
+
"rewards/format_reward/mean": 0.9625,
|
| 618 |
+
"rewards/format_reward/std": 0.07887786626815796,
|
| 619 |
+
"step": 210
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"clip_ratio/high_max": 0.0,
|
| 623 |
+
"clip_ratio/high_mean": 0.0,
|
| 624 |
+
"clip_ratio/low_mean": 0.0,
|
| 625 |
+
"clip_ratio/low_min": 0.0,
|
| 626 |
+
"clip_ratio/region_mean": 0.0,
|
| 627 |
+
"completions/clipped_ratio": 1.0,
|
| 628 |
+
"completions/max_length": 160.0,
|
| 629 |
+
"completions/max_terminated_length": 0.0,
|
| 630 |
+
"completions/mean_length": 160.0,
|
| 631 |
+
"completions/mean_terminated_length": 0.0,
|
| 632 |
+
"completions/min_length": 160.0,
|
| 633 |
+
"completions/min_terminated_length": 0.0,
|
| 634 |
+
"entropy": 0.11798728982685133,
|
| 635 |
+
"epoch": 0.7857142857142857,
|
| 636 |
+
"frac_reward_zero_std": 0.7,
|
| 637 |
+
"grad_norm": 0.020410774275660515,
|
| 638 |
+
"kl": 0.3922887581400573,
|
| 639 |
+
"learning_rate": 1.0892857142857144e-05,
|
| 640 |
+
"loss": 0.0039,
|
| 641 |
+
"num_tokens": 1014656.0,
|
| 642 |
+
"reward": 0.9625,
|
| 643 |
+
"reward_std": 0.1187208503484726,
|
| 644 |
+
"rewards/accuracy_reward/mean": 0.00625,
|
| 645 |
+
"rewards/accuracy_reward/std": 0.025,
|
| 646 |
+
"rewards/format_reward/mean": 0.95625,
|
| 647 |
+
"rewards/format_reward/std": 0.10862429738044739,
|
| 648 |
+
"step": 220
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"clip_ratio/high_max": 0.0,
|
| 652 |
+
"clip_ratio/high_mean": 0.0,
|
| 653 |
+
"clip_ratio/low_mean": 0.0,
|
| 654 |
+
"clip_ratio/low_min": 0.0,
|
| 655 |
+
"clip_ratio/region_mean": 0.0,
|
| 656 |
+
"completions/clipped_ratio": 1.0,
|
| 657 |
+
"completions/max_length": 160.0,
|
| 658 |
+
"completions/max_terminated_length": 0.0,
|
| 659 |
+
"completions/mean_length": 160.0,
|
| 660 |
+
"completions/mean_terminated_length": 0.0,
|
| 661 |
+
"completions/min_length": 160.0,
|
| 662 |
+
"completions/min_terminated_length": 0.0,
|
| 663 |
+
"entropy": 0.1181378597393632,
|
| 664 |
+
"epoch": 0.8214285714285714,
|
| 665 |
+
"frac_reward_zero_std": 0.5,
|
| 666 |
+
"grad_norm": 0.011710015125572681,
|
| 667 |
+
"kl": 0.38200892861932517,
|
| 668 |
+
"learning_rate": 9.107142857142858e-06,
|
| 669 |
+
"loss": 0.0038,
|
| 670 |
+
"num_tokens": 1061108.0,
|
| 671 |
+
"reward": 0.99375,
|
| 672 |
+
"reward_std": 0.1616260051727295,
|
| 673 |
+
"rewards/accuracy_reward/mean": 0.025,
|
| 674 |
+
"rewards/accuracy_reward/std": 0.06831300854682923,
|
| 675 |
+
"rewards/format_reward/mean": 0.96875,
|
| 676 |
+
"rewards/format_reward/std": 0.09331300854682922,
|
| 677 |
+
"step": 230
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"clip_ratio/high_max": 0.0,
|
| 681 |
+
"clip_ratio/high_mean": 0.0,
|
| 682 |
+
"clip_ratio/low_mean": 0.0,
|
| 683 |
+
"clip_ratio/low_min": 0.0,
|
| 684 |
+
"clip_ratio/region_mean": 0.0,
|
| 685 |
+
"completions/clipped_ratio": 1.0,
|
| 686 |
+
"completions/max_length": 160.0,
|
| 687 |
+
"completions/max_terminated_length": 0.0,
|
| 688 |
+
"completions/mean_length": 160.0,
|
| 689 |
+
"completions/mean_terminated_length": 0.0,
|
| 690 |
+
"completions/min_length": 160.0,
|
| 691 |
+
"completions/min_terminated_length": 0.0,
|
| 692 |
+
"entropy": 0.1463294762186706,
|
| 693 |
+
"epoch": 0.8571428571428571,
|
| 694 |
+
"frac_reward_zero_std": 0.3,
|
| 695 |
+
"grad_norm": 0.007682339753955603,
|
| 696 |
+
"kl": 0.40318670785054567,
|
| 697 |
+
"learning_rate": 7.321428571428572e-06,
|
| 698 |
+
"loss": 0.004,
|
| 699 |
+
"num_tokens": 1108338.0,
|
| 700 |
+
"reward": 0.925,
|
| 701 |
+
"reward_std": 0.25421872138977053,
|
| 702 |
+
"rewards/accuracy_reward/mean": 0.01875,
|
| 703 |
+
"rewards/accuracy_reward/std": 0.05915650427341461,
|
| 704 |
+
"rewards/format_reward/mean": 0.90625,
|
| 705 |
+
"rewards/format_reward/std": 0.1950622320175171,
|
| 706 |
+
"step": 240
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"clip_ratio/high_max": 0.0,
|
| 710 |
+
"clip_ratio/high_mean": 0.0,
|
| 711 |
+
"clip_ratio/low_mean": 0.0,
|
| 712 |
+
"clip_ratio/low_min": 0.0,
|
| 713 |
+
"clip_ratio/region_mean": 0.0,
|
| 714 |
+
"completions/clipped_ratio": 1.0,
|
| 715 |
+
"completions/max_length": 160.0,
|
| 716 |
+
"completions/max_terminated_length": 0.0,
|
| 717 |
+
"completions/mean_length": 160.0,
|
| 718 |
+
"completions/mean_terminated_length": 0.0,
|
| 719 |
+
"completions/min_length": 160.0,
|
| 720 |
+
"completions/min_terminated_length": 0.0,
|
| 721 |
+
"entropy": 0.12144056173274294,
|
| 722 |
+
"epoch": 0.8928571428571429,
|
| 723 |
+
"frac_reward_zero_std": 0.5,
|
| 724 |
+
"grad_norm": 0.01580824889242649,
|
| 725 |
+
"kl": 0.384551886562258,
|
| 726 |
+
"learning_rate": 5.535714285714285e-06,
|
| 727 |
+
"loss": 0.0038,
|
| 728 |
+
"num_tokens": 1153978.0,
|
| 729 |
+
"reward": 0.9625,
|
| 730 |
+
"reward_std": 0.16303436160087587,
|
| 731 |
+
"rewards/accuracy_reward/mean": 0.0125,
|
| 732 |
+
"rewards/accuracy_reward/std": 0.05,
|
| 733 |
+
"rewards/format_reward/mean": 0.95,
|
| 734 |
+
"rewards/format_reward/std": 0.11303437054157257,
|
| 735 |
+
"step": 250
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"clip_ratio/high_max": 0.0,
|
| 739 |
+
"clip_ratio/high_mean": 0.0,
|
| 740 |
+
"clip_ratio/low_mean": 0.0,
|
| 741 |
+
"clip_ratio/low_min": 0.0,
|
| 742 |
+
"clip_ratio/region_mean": 0.0,
|
| 743 |
+
"completions/clipped_ratio": 1.0,
|
| 744 |
+
"completions/max_length": 160.0,
|
| 745 |
+
"completions/max_terminated_length": 0.0,
|
| 746 |
+
"completions/mean_length": 160.0,
|
| 747 |
+
"completions/mean_terminated_length": 0.0,
|
| 748 |
+
"completions/min_length": 160.0,
|
| 749 |
+
"completions/min_terminated_length": 0.0,
|
| 750 |
+
"entropy": 0.13457293838728218,
|
| 751 |
+
"epoch": 0.9285714285714286,
|
| 752 |
+
"frac_reward_zero_std": 0.3,
|
| 753 |
+
"grad_norm": 0.018065791577100754,
|
| 754 |
+
"kl": 0.38744454458355904,
|
| 755 |
+
"learning_rate": 3.75e-06,
|
| 756 |
+
"loss": 0.0039,
|
| 757 |
+
"num_tokens": 1200028.0,
|
| 758 |
+
"reward": 0.99375,
|
| 759 |
+
"reward_std": 0.19331300258636475,
|
| 760 |
+
"rewards/accuracy_reward/mean": 0.025,
|
| 761 |
+
"rewards/accuracy_reward/std": 0.06831300854682923,
|
| 762 |
+
"rewards/format_reward/mean": 0.96875,
|
| 763 |
+
"rewards/format_reward/std": 0.125,
|
| 764 |
+
"step": 260
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"clip_ratio/high_max": 0.0,
|
| 768 |
+
"clip_ratio/high_mean": 0.0,
|
| 769 |
+
"clip_ratio/low_mean": 0.0,
|
| 770 |
+
"clip_ratio/low_min": 0.0,
|
| 771 |
+
"clip_ratio/region_mean": 0.0,
|
| 772 |
+
"completions/clipped_ratio": 1.0,
|
| 773 |
+
"completions/max_length": 160.0,
|
| 774 |
+
"completions/max_terminated_length": 0.0,
|
| 775 |
+
"completions/mean_length": 160.0,
|
| 776 |
+
"completions/mean_terminated_length": 0.0,
|
| 777 |
+
"completions/min_length": 160.0,
|
| 778 |
+
"completions/min_terminated_length": 0.0,
|
| 779 |
+
"entropy": 0.12677656556479633,
|
| 780 |
+
"epoch": 0.9642857142857143,
|
| 781 |
+
"frac_reward_zero_std": 0.5,
|
| 782 |
+
"grad_norm": 0.008128122426569462,
|
| 783 |
+
"kl": 0.3681739863939583,
|
| 784 |
+
"learning_rate": 1.9642857142857144e-06,
|
| 785 |
+
"loss": 0.0037,
|
| 786 |
+
"num_tokens": 1246390.0,
|
| 787 |
+
"reward": 0.91875,
|
| 788 |
+
"reward_std": 0.17746950387954713,
|
| 789 |
+
"rewards/accuracy_reward/mean": 0.0,
|
| 790 |
+
"rewards/accuracy_reward/std": 0.0,
|
| 791 |
+
"rewards/format_reward/mean": 0.91875,
|
| 792 |
+
"rewards/format_reward/std": 0.17746951282024384,
|
| 793 |
+
"step": 270
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"clip_ratio/high_max": 0.0,
|
| 797 |
+
"clip_ratio/high_mean": 0.0,
|
| 798 |
+
"clip_ratio/low_mean": 0.0,
|
| 799 |
+
"clip_ratio/low_min": 0.0,
|
| 800 |
+
"clip_ratio/region_mean": 0.0,
|
| 801 |
+
"completions/clipped_ratio": 1.0,
|
| 802 |
+
"completions/max_length": 160.0,
|
| 803 |
+
"completions/max_terminated_length": 0.0,
|
| 804 |
+
"completions/mean_length": 160.0,
|
| 805 |
+
"completions/mean_terminated_length": 0.0,
|
| 806 |
+
"completions/min_length": 160.0,
|
| 807 |
+
"completions/min_terminated_length": 0.0,
|
| 808 |
+
"entropy": 0.1310231292503886,
|
| 809 |
+
"epoch": 1.0,
|
| 810 |
+
"frac_reward_zero_std": 0.6,
|
| 811 |
+
"grad_norm": 0.3009057939052582,
|
| 812 |
+
"kl": 0.42363901240751145,
|
| 813 |
+
"learning_rate": 1.7857142857142858e-07,
|
| 814 |
+
"loss": 0.0042,
|
| 815 |
+
"num_tokens": 1292538.0,
|
| 816 |
+
"reward": 0.98125,
|
| 817 |
+
"reward_std": 0.10915650129318237,
|
| 818 |
+
"rewards/accuracy_reward/mean": 0.00625,
|
| 819 |
+
"rewards/accuracy_reward/std": 0.025,
|
| 820 |
+
"rewards/format_reward/mean": 0.975,
|
| 821 |
+
"rewards/format_reward/std": 0.08415650427341462,
|
| 822 |
+
"step": 280
|
| 823 |
+
}
|
| 824 |
+
],
|
| 825 |
+
"logging_steps": 10,
|
| 826 |
+
"max_steps": 280,
|
| 827 |
+
"num_input_tokens_seen": 1292538,
|
| 828 |
+
"num_train_epochs": 1,
|
| 829 |
+
"save_steps": 100,
|
| 830 |
+
"stateful_callbacks": {
|
| 831 |
+
"TrainerControl": {
|
| 832 |
+
"args": {
|
| 833 |
+
"should_epoch_stop": false,
|
| 834 |
+
"should_evaluate": false,
|
| 835 |
+
"should_log": false,
|
| 836 |
+
"should_save": true,
|
| 837 |
+
"should_training_stop": true
|
| 838 |
+
},
|
| 839 |
+
"attributes": {}
|
| 840 |
+
}
|
| 841 |
+
},
|
| 842 |
+
"total_flos": 0.0,
|
| 843 |
+
"train_batch_size": 1,
|
| 844 |
+
"trial_name": null,
|
| 845 |
+
"trial_params": null
|
| 846 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a845fbc64b7d8106568ed5d1a3ccddb2d6bef397567ea23c23ec1e77ba8fd358
|
| 3 |
+
size 6776
|