Text Generation
Transformers
Safetensors
qwen3
Generated from Trainer
trl
sft
conversational
text-generation-inference
Instructions to use cs-552-2026-ChatMODS/general_knowledge_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cs-552-2026-ChatMODS/general_knowledge_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-ChatMODS/general_knowledge_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-ChatMODS/general_knowledge_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-ChatMODS/general_knowledge_model") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cs-552-2026-ChatMODS/general_knowledge_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-ChatMODS/general_knowledge_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-ChatMODS/general_knowledge_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-ChatMODS/general_knowledge_model
- SGLang
How to use cs-552-2026-ChatMODS/general_knowledge_model 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 "cs-552-2026-ChatMODS/general_knowledge_model" \ --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": "cs-552-2026-ChatMODS/general_knowledge_model", "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 "cs-552-2026-ChatMODS/general_knowledge_model" \ --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": "cs-552-2026-ChatMODS/general_knowledge_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-ChatMODS/general_knowledge_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-ChatMODS/general_knowledge_model
M2: GK SFT LoRA — MMLU trained
Browse files- README.md +57 -0
- chat_template.jinja +1 -0
- checkpoint-3400/README.md +209 -0
- checkpoint-3400/adapter_config.json +45 -0
- checkpoint-3400/adapter_model.safetensors +3 -0
- checkpoint-3400/chat_template.jinja +93 -0
- checkpoint-3400/optimizer.pt +3 -0
- checkpoint-3400/rng_state.pth +3 -0
- checkpoint-3400/scheduler.pt +3 -0
- checkpoint-3400/tokenizer.json +3 -0
- checkpoint-3400/tokenizer_config.json +30 -0
- checkpoint-3400/trainer_state.json +901 -0
- checkpoint-3400/training_args.bin +3 -0
- checkpoint-3470/README.md +209 -0
- checkpoint-3470/adapter_config.json +45 -0
- checkpoint-3470/adapter_model.safetensors +3 -0
- checkpoint-3470/chat_template.jinja +93 -0
- checkpoint-3470/optimizer.pt +3 -0
- checkpoint-3470/rng_state.pth +3 -0
- checkpoint-3470/scheduler.pt +3 -0
- checkpoint-3470/tokenizer.json +3 -0
- checkpoint-3470/tokenizer_config.json +30 -0
- checkpoint-3470/trainer_state.json +922 -0
- checkpoint-3470/training_args.bin +3 -0
- config.json +3 -3
- model.safetensors +1 -1
README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
model_name: gk_checkpoint_lora
|
| 4 |
+
tags:
|
| 5 |
+
- generated_from_trainer
|
| 6 |
+
- sft
|
| 7 |
+
- trl
|
| 8 |
+
licence: license
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Model Card for gk_checkpoint_lora
|
| 12 |
+
|
| 13 |
+
This model is a fine-tuned version of [None](https://huggingface.co/None).
|
| 14 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 15 |
+
|
| 16 |
+
## Quick start
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
from transformers import pipeline
|
| 20 |
+
|
| 21 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 22 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 23 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 24 |
+
print(output["generated_text"])
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Training procedure
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with SFT.
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 1.3.0
|
| 38 |
+
- Transformers: 5.7.0
|
| 39 |
+
- Pytorch: 2.10.0+cu128
|
| 40 |
+
- Datasets: 4.8.5
|
| 41 |
+
- Tokenizers: 0.22.2
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
Cite TRL as:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@software{vonwerra2020trl,
|
| 51 |
+
title = {{TRL: Transformers Reinforcement Learning}},
|
| 52 |
+
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
|
| 53 |
+
license = {Apache-2.0},
|
| 54 |
+
url = {https://github.com/huggingface/trl},
|
| 55 |
+
year = {2020}
|
| 56 |
+
}
|
| 57 |
+
```
|
chat_template.jinja
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
{%- set enable_thinking = false %}
|
|
|
|
| 2 |
{%- if tools %}
|
| 3 |
{{- '<|im_start|>system\n' }}
|
| 4 |
{%- if messages[0].role == 'system' %}
|
|
|
|
| 1 |
{%- set enable_thinking = false %}
|
| 2 |
+
{%- set enable_thinking = false %}
|
| 3 |
{%- if tools %}
|
| 4 |
{{- '<|im_start|>system\n' }}
|
| 5 |
{%- if messages[0].role == 'system' %}
|
checkpoint-3400/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /scratch/Qwen3-1.7B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/scratch/Qwen3-1.7B
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 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
|
checkpoint-3400/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/scratch/Qwen3-1.7B",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 16,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"q_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"v_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
checkpoint-3400/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e401ce6e6cdd8a72cf0150e5ee3ec8ddfe3f53feff0783869171035dfe81e04
|
| 3 |
+
size 25720120
|
checkpoint-3400/chat_template.jinja
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set enable_thinking = false %}
|
| 2 |
+
{%- set enable_thinking = false %}
|
| 3 |
+
{%- if tools %}
|
| 4 |
+
{{- '<|im_start|>system\n' }}
|
| 5 |
+
{%- if messages[0].role == 'system' %}
|
| 6 |
+
{{- messages[0].content + '\n\n' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0].role == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are a helpful assistant. Always put your final answer in \\boxed{}. For multiple choice questions, put only the letter in \\boxed{}, for example \\boxed{A}.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 22 |
+
{%- for message in messages[::-1] %}
|
| 23 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 24 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 25 |
+
{%- set ns.multi_step_tool = false %}
|
| 26 |
+
{%- set ns.last_query_index = index %}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- endfor %}
|
| 29 |
+
{%- for message in messages %}
|
| 30 |
+
{%- if message.content is string %}
|
| 31 |
+
{%- set content = message.content %}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{%- set content = '' %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 36 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 37 |
+
{%- elif message.role == "assistant" %}
|
| 38 |
+
{%- set reasoning_content = '' %}
|
| 39 |
+
{%- if message.reasoning_content is string %}
|
| 40 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 41 |
+
{%- else %}
|
| 42 |
+
{%- if '</think>' in content %}
|
| 43 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 44 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{%- endif %}
|
| 47 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 48 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 49 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 50 |
+
{%- else %}
|
| 51 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 52 |
+
{%- endif %}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- if message.tool_calls %}
|
| 57 |
+
{%- for tool_call in message.tool_calls %}
|
| 58 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 59 |
+
{{- '\n' }}
|
| 60 |
+
{%- endif %}
|
| 61 |
+
{%- if tool_call.function %}
|
| 62 |
+
{%- set tool_call = tool_call.function %}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 65 |
+
{{- tool_call.name }}
|
| 66 |
+
{{- '", "arguments": ' }}
|
| 67 |
+
{%- if tool_call.arguments is string %}
|
| 68 |
+
{{- tool_call.arguments }}
|
| 69 |
+
{%- else %}
|
| 70 |
+
{{- tool_call.arguments | tojson }}
|
| 71 |
+
{%- endif %}
|
| 72 |
+
{{- '}\n</tool_call>' }}
|
| 73 |
+
{%- endfor %}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{{- '<|im_end|>\n' }}
|
| 76 |
+
{%- elif message.role == "tool" %}
|
| 77 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 78 |
+
{{- '<|im_start|>user' }}
|
| 79 |
+
{%- endif %}
|
| 80 |
+
{{- '\n<tool_response>\n' }}
|
| 81 |
+
{{- content }}
|
| 82 |
+
{{- '\n</tool_response>' }}
|
| 83 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 84 |
+
{{- '<|im_end|>\n' }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
{%- if add_generation_prompt %}
|
| 89 |
+
{{- '<|im_start|>assistant\n' }}
|
| 90 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 91 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 92 |
+
{%- endif %}
|
| 93 |
+
{%- endif %}
|
checkpoint-3400/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cc9e90473de9a22d87399a9993971b069354340a9393194aff1a7eaa2bc9f53
|
| 3 |
+
size 51571787
|
checkpoint-3400/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d5dccc794d731272b109c09ddeef339010107c3b22497d824fd22162d07d049
|
| 3 |
+
size 14645
|
checkpoint-3400/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fc2765dae50097c408e2996d5b8207262316964e4cb804d670c17ed02e5b0db
|
| 3 |
+
size 1465
|
checkpoint-3400/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
checkpoint-3400/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": true,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|
checkpoint-3400/trainer_state.json
ADDED
|
@@ -0,0 +1,901 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 3000,
|
| 3 |
+
"best_metric": 0.5210983753204346,
|
| 4 |
+
"best_model_checkpoint": "/scratch/gk_checkpoint_lora/checkpoint-3000",
|
| 5 |
+
"epoch": 1.959792477302205,
|
| 6 |
+
"eval_steps": 200,
|
| 7 |
+
"global_step": 3400,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 0.8664254155755043,
|
| 14 |
+
"epoch": 0.02882259691598213,
|
| 15 |
+
"grad_norm": 2.775977611541748,
|
| 16 |
+
"learning_rate": 9.800000000000001e-06,
|
| 17 |
+
"loss": 3.2154922485351562,
|
| 18 |
+
"mean_token_accuracy": 0.5048915630578995,
|
| 19 |
+
"num_tokens": 270598.0,
|
| 20 |
+
"step": 50
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.210615372657776,
|
| 24 |
+
"epoch": 0.05764519383196426,
|
| 25 |
+
"grad_norm": 1.1605831384658813,
|
| 26 |
+
"learning_rate": 1.98e-05,
|
| 27 |
+
"loss": 2.068811798095703,
|
| 28 |
+
"mean_token_accuracy": 0.5692685562372207,
|
| 29 |
+
"num_tokens": 543717.0,
|
| 30 |
+
"step": 100
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.7421895080804825,
|
| 34 |
+
"epoch": 0.08646779074794639,
|
| 35 |
+
"grad_norm": 0.25959399342536926,
|
| 36 |
+
"learning_rate": 1.9989568984484556e-05,
|
| 37 |
+
"loss": 0.8849951171875,
|
| 38 |
+
"mean_token_accuracy": 0.8145365649461747,
|
| 39 |
+
"num_tokens": 813682.0,
|
| 40 |
+
"step": 150
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.6125312650203705,
|
| 44 |
+
"epoch": 0.11529038766392852,
|
| 45 |
+
"grad_norm": 0.24997037649154663,
|
| 46 |
+
"learning_rate": 1.9957442896851584e-05,
|
| 47 |
+
"loss": 0.691104507446289,
|
| 48 |
+
"mean_token_accuracy": 0.862597424685955,
|
| 49 |
+
"num_tokens": 1085263.0,
|
| 50 |
+
"step": 200
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 0.11529038766392852,
|
| 54 |
+
"eval_entropy": 0.5956721862680033,
|
| 55 |
+
"eval_loss": 0.6279548406600952,
|
| 56 |
+
"eval_mean_token_accuracy": 0.8725619774115713,
|
| 57 |
+
"eval_num_tokens": 1085263.0,
|
| 58 |
+
"eval_runtime": 25.3455,
|
| 59 |
+
"eval_samples_per_second": 59.695,
|
| 60 |
+
"eval_steps_per_second": 7.496,
|
| 61 |
+
"step": 200
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"entropy": 0.6464120636880398,
|
| 65 |
+
"epoch": 0.14411298457991065,
|
| 66 |
+
"grad_norm": 0.2776671051979065,
|
| 67 |
+
"learning_rate": 1.9903687176430222e-05,
|
| 68 |
+
"loss": 0.6937020874023437,
|
| 69 |
+
"mean_token_accuracy": 0.8613211107254028,
|
| 70 |
+
"num_tokens": 1359193.0,
|
| 71 |
+
"step": 250
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"entropy": 0.6303374738991261,
|
| 75 |
+
"epoch": 0.17293558149589278,
|
| 76 |
+
"grad_norm": 0.23006124794483185,
|
| 77 |
+
"learning_rate": 1.9828418591803025e-05,
|
| 78 |
+
"loss": 0.674161376953125,
|
| 79 |
+
"mean_token_accuracy": 0.865567267537117,
|
| 80 |
+
"num_tokens": 1633225.0,
|
| 81 |
+
"step": 300
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"entropy": 0.6267825645208359,
|
| 85 |
+
"epoch": 0.2017581784118749,
|
| 86 |
+
"grad_norm": 0.264813095331192,
|
| 87 |
+
"learning_rate": 1.973180064195894e-05,
|
| 88 |
+
"loss": 0.6597396850585937,
|
| 89 |
+
"mean_token_accuracy": 0.8673095554113388,
|
| 90 |
+
"num_tokens": 1905535.0,
|
| 91 |
+
"step": 350
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"entropy": 0.6219879929721356,
|
| 95 |
+
"epoch": 0.23058077532785703,
|
| 96 |
+
"grad_norm": 0.3037996292114258,
|
| 97 |
+
"learning_rate": 1.9614043201139513e-05,
|
| 98 |
+
"loss": 0.6504788208007812,
|
| 99 |
+
"mean_token_accuracy": 0.868158842921257,
|
| 100 |
+
"num_tokens": 2177042.0,
|
| 101 |
+
"step": 400
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.23058077532785703,
|
| 105 |
+
"eval_entropy": 0.5888996227791435,
|
| 106 |
+
"eval_loss": 0.5949175357818604,
|
| 107 |
+
"eval_mean_token_accuracy": 0.8765835507919914,
|
| 108 |
+
"eval_num_tokens": 2177042.0,
|
| 109 |
+
"eval_runtime": 25.3953,
|
| 110 |
+
"eval_samples_per_second": 59.578,
|
| 111 |
+
"eval_steps_per_second": 7.482,
|
| 112 |
+
"step": 400
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"entropy": 0.6223398548364639,
|
| 116 |
+
"epoch": 0.2594033722438392,
|
| 117 |
+
"grad_norm": 0.27440914511680603,
|
| 118 |
+
"learning_rate": 1.9475402062948533e-05,
|
| 119 |
+
"loss": 0.6479128265380859,
|
| 120 |
+
"mean_token_accuracy": 0.8684594085812569,
|
| 121 |
+
"num_tokens": 2452073.0,
|
| 122 |
+
"step": 450
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"entropy": 0.610146201401949,
|
| 126 |
+
"epoch": 0.2882259691598213,
|
| 127 |
+
"grad_norm": 0.3176165521144867,
|
| 128 |
+
"learning_rate": 1.9316178384715195e-05,
|
| 129 |
+
"loss": 0.6257384109497071,
|
| 130 |
+
"mean_token_accuracy": 0.8711106261610985,
|
| 131 |
+
"num_tokens": 2724641.0,
|
| 132 |
+
"step": 500
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 0.5934953857213259,
|
| 136 |
+
"epoch": 0.31704856607580345,
|
| 137 |
+
"grad_norm": 0.2879047095775604,
|
| 138 |
+
"learning_rate": 1.9136718033317887e-05,
|
| 139 |
+
"loss": 0.6003322601318359,
|
| 140 |
+
"mean_token_accuracy": 0.8751304519176483,
|
| 141 |
+
"num_tokens": 2994313.0,
|
| 142 |
+
"step": 550
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 0.5552539291977883,
|
| 146 |
+
"epoch": 0.34587116299178555,
|
| 147 |
+
"grad_norm": 0.31590884923934937,
|
| 148 |
+
"learning_rate": 1.8937410833889517e-05,
|
| 149 |
+
"loss": 0.5751915740966796,
|
| 150 |
+
"mean_token_accuracy": 0.8799619308114052,
|
| 151 |
+
"num_tokens": 3262166.0,
|
| 152 |
+
"step": 600
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"epoch": 0.34587116299178555,
|
| 156 |
+
"eval_entropy": 0.5373091018513629,
|
| 157 |
+
"eval_loss": 0.5472979545593262,
|
| 158 |
+
"eval_mean_token_accuracy": 0.882329721827256,
|
| 159 |
+
"eval_num_tokens": 3262166.0,
|
| 160 |
+
"eval_runtime": 25.4147,
|
| 161 |
+
"eval_samples_per_second": 59.533,
|
| 162 |
+
"eval_steps_per_second": 7.476,
|
| 163 |
+
"step": 600
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"entropy": 0.6037677505612373,
|
| 167 |
+
"epoch": 0.3746937599077677,
|
| 168 |
+
"grad_norm": 0.24785549938678741,
|
| 169 |
+
"learning_rate": 1.871868972303645e-05,
|
| 170 |
+
"loss": 0.6383477020263671,
|
| 171 |
+
"mean_token_accuracy": 0.868063251376152,
|
| 172 |
+
"num_tokens": 3540715.0,
|
| 173 |
+
"step": 650
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"entropy": 0.5363423094898462,
|
| 177 |
+
"epoch": 0.4035163568237498,
|
| 178 |
+
"grad_norm": 0.2744317650794983,
|
| 179 |
+
"learning_rate": 1.848102980841029e-05,
|
| 180 |
+
"loss": 0.5591300964355469,
|
| 181 |
+
"mean_token_accuracy": 0.8841247257590293,
|
| 182 |
+
"num_tokens": 3809747.0,
|
| 183 |
+
"step": 700
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"entropy": 0.5646945191174746,
|
| 187 |
+
"epoch": 0.43233895373973197,
|
| 188 |
+
"grad_norm": 0.22471845149993896,
|
| 189 |
+
"learning_rate": 1.8224947336675485e-05,
|
| 190 |
+
"loss": 0.5917744064331054,
|
| 191 |
+
"mean_token_accuracy": 0.8773607212305069,
|
| 192 |
+
"num_tokens": 4084262.0,
|
| 193 |
+
"step": 750
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"entropy": 0.5565017917752266,
|
| 197 |
+
"epoch": 0.46116155065571407,
|
| 198 |
+
"grad_norm": 0.24923403561115265,
|
| 199 |
+
"learning_rate": 1.79509985721144e-05,
|
| 200 |
+
"loss": 0.581727409362793,
|
| 201 |
+
"mean_token_accuracy": 0.8778996297717094,
|
| 202 |
+
"num_tokens": 4358564.0,
|
| 203 |
+
"step": 800
|
| 204 |
+
},
|
| 205 |
+
{
|
| 206 |
+
"epoch": 0.46116155065571407,
|
| 207 |
+
"eval_entropy": 0.5298120318274749,
|
| 208 |
+
"eval_loss": 0.5324572324752808,
|
| 209 |
+
"eval_mean_token_accuracy": 0.8855449488288478,
|
| 210 |
+
"eval_num_tokens": 4358564.0,
|
| 211 |
+
"eval_runtime": 25.3391,
|
| 212 |
+
"eval_samples_per_second": 59.71,
|
| 213 |
+
"eval_steps_per_second": 7.498,
|
| 214 |
+
"step": 800
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"entropy": 0.5551759076118469,
|
| 218 |
+
"epoch": 0.4899841475716962,
|
| 219 |
+
"grad_norm": 0.2890514135360718,
|
| 220 |
+
"learning_rate": 1.765977858830583e-05,
|
| 221 |
+
"loss": 0.5757025909423829,
|
| 222 |
+
"mean_token_accuracy": 0.8784776413440705,
|
| 223 |
+
"num_tokens": 4631480.0,
|
| 224 |
+
"step": 850
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"entropy": 0.5454864390939475,
|
| 228 |
+
"epoch": 0.5188067444876784,
|
| 229 |
+
"grad_norm": 0.23076863586902618,
|
| 230 |
+
"learning_rate": 1.735191997550167e-05,
|
| 231 |
+
"loss": 0.5680808258056641,
|
| 232 |
+
"mean_token_accuracy": 0.88047192633152,
|
| 233 |
+
"num_tokens": 4904344.0,
|
| 234 |
+
"step": 900
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"entropy": 0.5318841424584388,
|
| 238 |
+
"epoch": 0.5476293414036605,
|
| 239 |
+
"grad_norm": 0.23075300455093384,
|
| 240 |
+
"learning_rate": 1.7028091466509602e-05,
|
| 241 |
+
"loss": 0.555275650024414,
|
| 242 |
+
"mean_token_accuracy": 0.884403744339943,
|
| 243 |
+
"num_tokens": 5172046.0,
|
| 244 |
+
"step": 950
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"entropy": 0.5584682691097259,
|
| 248 |
+
"epoch": 0.5764519383196426,
|
| 249 |
+
"grad_norm": 0.22157496213912964,
|
| 250 |
+
"learning_rate": 1.668899648406662e-05,
|
| 251 |
+
"loss": 0.5754995346069336,
|
| 252 |
+
"mean_token_accuracy": 0.877709536254406,
|
| 253 |
+
"num_tokens": 5445539.0,
|
| 254 |
+
"step": 1000
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.5764519383196426,
|
| 258 |
+
"eval_entropy": 0.5218244160476484,
|
| 259 |
+
"eval_loss": 0.530579686164856,
|
| 260 |
+
"eval_mean_token_accuracy": 0.8847430721709603,
|
| 261 |
+
"eval_num_tokens": 5445539.0,
|
| 262 |
+
"eval_runtime": 25.2955,
|
| 263 |
+
"eval_samples_per_second": 59.813,
|
| 264 |
+
"eval_steps_per_second": 7.511,
|
| 265 |
+
"step": 1000
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"entropy": 0.5296673697978258,
|
| 269 |
+
"epoch": 0.6052745352356247,
|
| 270 |
+
"grad_norm": 0.2421996146440506,
|
| 271 |
+
"learning_rate": 1.6335371612858827e-05,
|
| 272 |
+
"loss": 0.552278709411621,
|
| 273 |
+
"mean_token_accuracy": 0.884430148601532,
|
| 274 |
+
"num_tokens": 5713428.0,
|
| 275 |
+
"step": 1050
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"entropy": 0.5427714378386735,
|
| 279 |
+
"epoch": 0.6340971321516069,
|
| 280 |
+
"grad_norm": 0.22103162109851837,
|
| 281 |
+
"learning_rate": 1.5967984999506623e-05,
|
| 282 |
+
"loss": 0.5644734954833984,
|
| 283 |
+
"mean_token_accuracy": 0.8810071355104446,
|
| 284 |
+
"num_tokens": 5985117.0,
|
| 285 |
+
"step": 1100
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"entropy": 0.5319583508372306,
|
| 289 |
+
"epoch": 0.662919729067589,
|
| 290 |
+
"grad_norm": 0.25406044721603394,
|
| 291 |
+
"learning_rate": 1.558763468399081e-05,
|
| 292 |
+
"loss": 0.551100959777832,
|
| 293 |
+
"mean_token_accuracy": 0.8851462480425835,
|
| 294 |
+
"num_tokens": 6254015.0,
|
| 295 |
+
"step": 1150
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"entropy": 0.5286855664849281,
|
| 299 |
+
"epoch": 0.6917423259835711,
|
| 300 |
+
"grad_norm": 0.24316425621509552,
|
| 301 |
+
"learning_rate": 1.5195146866144093e-05,
|
| 302 |
+
"loss": 0.5527534484863281,
|
| 303 |
+
"mean_token_accuracy": 0.8843164274096489,
|
| 304 |
+
"num_tokens": 6524236.0,
|
| 305 |
+
"step": 1200
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"epoch": 0.6917423259835711,
|
| 309 |
+
"eval_entropy": 0.5235515671341042,
|
| 310 |
+
"eval_loss": 0.5270145535469055,
|
| 311 |
+
"eval_mean_token_accuracy": 0.8862221178255583,
|
| 312 |
+
"eval_num_tokens": 6524236.0,
|
| 313 |
+
"eval_runtime": 25.2946,
|
| 314 |
+
"eval_samples_per_second": 59.815,
|
| 315 |
+
"eval_steps_per_second": 7.511,
|
| 316 |
+
"step": 1200
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"entropy": 0.5438067949563264,
|
| 320 |
+
"epoch": 0.7205649228995532,
|
| 321 |
+
"grad_norm": 0.2850089967250824,
|
| 322 |
+
"learning_rate": 1.4791374110973555e-05,
|
| 323 |
+
"loss": 0.5662718963623047,
|
| 324 |
+
"mean_token_accuracy": 0.8811582899093628,
|
| 325 |
+
"num_tokens": 6798500.0,
|
| 326 |
+
"step": 1250
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"entropy": 0.5394456747919321,
|
| 330 |
+
"epoch": 0.7493875198155354,
|
| 331 |
+
"grad_norm": 0.2898014783859253,
|
| 332 |
+
"learning_rate": 1.4377193496712517e-05,
|
| 333 |
+
"loss": 0.5550812149047851,
|
| 334 |
+
"mean_token_accuracy": 0.8827075427770614,
|
| 335 |
+
"num_tokens": 7068572.0,
|
| 336 |
+
"step": 1300
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"entropy": 0.5455511239916087,
|
| 340 |
+
"epoch": 0.7782101167315175,
|
| 341 |
+
"grad_norm": 0.22777394950389862,
|
| 342 |
+
"learning_rate": 1.395350470962454e-05,
|
| 343 |
+
"loss": 0.5698577117919922,
|
| 344 |
+
"mean_token_accuracy": 0.8805486962199212,
|
| 345 |
+
"num_tokens": 7338828.0,
|
| 346 |
+
"step": 1350
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"entropy": 0.5357480451464653,
|
| 350 |
+
"epoch": 0.8070327136474996,
|
| 351 |
+
"grad_norm": 0.22745366394519806,
|
| 352 |
+
"learning_rate": 1.3521228089698138e-05,
|
| 353 |
+
"loss": 0.555338134765625,
|
| 354 |
+
"mean_token_accuracy": 0.8834168764948845,
|
| 355 |
+
"num_tokens": 7608634.0,
|
| 356 |
+
"step": 1400
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 0.8070327136474996,
|
| 360 |
+
"eval_entropy": 0.5221125764282126,
|
| 361 |
+
"eval_loss": 0.5261030197143555,
|
| 362 |
+
"eval_mean_token_accuracy": 0.8857603835432153,
|
| 363 |
+
"eval_num_tokens": 7608634.0,
|
| 364 |
+
"eval_runtime": 25.3733,
|
| 365 |
+
"eval_samples_per_second": 59.63,
|
| 366 |
+
"eval_steps_per_second": 7.488,
|
| 367 |
+
"step": 1400
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"entropy": 0.5366402574628591,
|
| 371 |
+
"epoch": 0.8358553105634817,
|
| 372 |
+
"grad_norm": 0.3329956531524658,
|
| 373 |
+
"learning_rate": 1.3081302631477272e-05,
|
| 374 |
+
"loss": 0.5528204345703125,
|
| 375 |
+
"mean_token_accuracy": 0.883393512070179,
|
| 376 |
+
"num_tokens": 7876795.0,
|
| 377 |
+
"step": 1450
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"entropy": 0.5442750995606184,
|
| 381 |
+
"epoch": 0.8646779074794639,
|
| 382 |
+
"grad_norm": 0.22092807292938232,
|
| 383 |
+
"learning_rate": 1.263468394437032e-05,
|
| 384 |
+
"loss": 0.5658491897583008,
|
| 385 |
+
"mean_token_accuracy": 0.8810335186123848,
|
| 386 |
+
"num_tokens": 8149031.0,
|
| 387 |
+
"step": 1500
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"entropy": 0.5575385902076959,
|
| 391 |
+
"epoch": 0.893500504395446,
|
| 392 |
+
"grad_norm": 0.22535692155361176,
|
| 393 |
+
"learning_rate": 1.218234217686808e-05,
|
| 394 |
+
"loss": 0.577353744506836,
|
| 395 |
+
"mean_token_accuracy": 0.878656555712223,
|
| 396 |
+
"num_tokens": 8420950.0,
|
| 397 |
+
"step": 1550
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"entropy": 0.5398243299871683,
|
| 401 |
+
"epoch": 0.9223231013114281,
|
| 402 |
+
"grad_norm": 0.2995174527168274,
|
| 403 |
+
"learning_rate": 1.1725259909179875e-05,
|
| 404 |
+
"loss": 0.5575567626953125,
|
| 405 |
+
"mean_token_accuracy": 0.882205625474453,
|
| 406 |
+
"num_tokens": 8690831.0,
|
| 407 |
+
"step": 1600
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 0.9223231013114281,
|
| 411 |
+
"eval_entropy": 0.5169236369823155,
|
| 412 |
+
"eval_loss": 0.5248522162437439,
|
| 413 |
+
"eval_mean_token_accuracy": 0.8859441503098137,
|
| 414 |
+
"eval_num_tokens": 8690831.0,
|
| 415 |
+
"eval_runtime": 25.3236,
|
| 416 |
+
"eval_samples_per_second": 59.747,
|
| 417 |
+
"eval_steps_per_second": 7.503,
|
| 418 |
+
"step": 1600
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"entropy": 0.5338192899525166,
|
| 422 |
+
"epoch": 0.9511456982274102,
|
| 423 |
+
"grad_norm": 0.3139007091522217,
|
| 424 |
+
"learning_rate": 1.1264430018865391e-05,
|
| 425 |
+
"loss": 0.5552957916259765,
|
| 426 |
+
"mean_token_accuracy": 0.8834528475999832,
|
| 427 |
+
"num_tokens": 8961415.0,
|
| 428 |
+
"step": 1650
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"entropy": 0.5275231996178626,
|
| 432 |
+
"epoch": 0.9799682951433925,
|
| 433 |
+
"grad_norm": 0.2292962670326233,
|
| 434 |
+
"learning_rate": 1.0800853524098543e-05,
|
| 435 |
+
"loss": 0.5416835021972656,
|
| 436 |
+
"mean_token_accuracy": 0.8851530715823174,
|
| 437 |
+
"num_tokens": 9229637.0,
|
| 438 |
+
"step": 1700
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"entropy": 0.5638248626161461,
|
| 442 |
+
"epoch": 1.0086467790747946,
|
| 443 |
+
"grad_norm": 0.23777392506599426,
|
| 444 |
+
"learning_rate": 1.0335537409248204e-05,
|
| 445 |
+
"loss": 0.5851130676269531,
|
| 446 |
+
"mean_token_accuracy": 0.8776284435286594,
|
| 447 |
+
"num_tokens": 9499446.0,
|
| 448 |
+
"step": 1750
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"entropy": 0.5698649657517671,
|
| 452 |
+
"epoch": 1.0374693759907767,
|
| 453 |
+
"grad_norm": 0.2397402822971344,
|
| 454 |
+
"learning_rate": 9.869492437499167e-06,
|
| 455 |
+
"loss": 0.5934230804443359,
|
| 456 |
+
"mean_token_accuracy": 0.8746954175829887,
|
| 457 |
+
"num_tokens": 9775732.0,
|
| 458 |
+
"step": 1800
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 1.0374693759907767,
|
| 462 |
+
"eval_entropy": 0.5189189992452923,
|
| 463 |
+
"eval_loss": 0.5238012671470642,
|
| 464 |
+
"eval_mean_token_accuracy": 0.8859998445761831,
|
| 465 |
+
"eval_num_tokens": 9775732.0,
|
| 466 |
+
"eval_runtime": 25.2908,
|
| 467 |
+
"eval_samples_per_second": 59.824,
|
| 468 |
+
"eval_steps_per_second": 7.513,
|
| 469 |
+
"step": 1800
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"entropy": 0.5613676090538502,
|
| 473 |
+
"epoch": 1.0662919729067588,
|
| 474 |
+
"grad_norm": 0.2651011645793915,
|
| 475 |
+
"learning_rate": 9.403730955264677e-06,
|
| 476 |
+
"loss": 0.5792824935913086,
|
| 477 |
+
"mean_token_accuracy": 0.8779774031043053,
|
| 478 |
+
"num_tokens": 10051416.0,
|
| 479 |
+
"step": 1850
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"entropy": 0.564930793941021,
|
| 483 |
+
"epoch": 1.0951145698227411,
|
| 484 |
+
"grad_norm": 0.2934422194957733,
|
| 485 |
+
"learning_rate": 8.939264693159926e-06,
|
| 486 |
+
"loss": 0.5857321166992188,
|
| 487 |
+
"mean_token_accuracy": 0.8772886765003204,
|
| 488 |
+
"num_tokens": 10325112.0,
|
| 489 |
+
"step": 1900
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"entropy": 0.5554238288849592,
|
| 493 |
+
"epoch": 1.1239371667387232,
|
| 494 |
+
"grad_norm": 0.2599495053291321,
|
| 495 |
+
"learning_rate": 8.477102568313138e-06,
|
| 496 |
+
"loss": 0.5767181015014649,
|
| 497 |
+
"mean_token_accuracy": 0.8785749426484109,
|
| 498 |
+
"num_tokens": 10599513.0,
|
| 499 |
+
"step": 1950
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"entropy": 0.5364625386148691,
|
| 503 |
+
"epoch": 1.1527597636547053,
|
| 504 |
+
"grad_norm": 0.2258245348930359,
|
| 505 |
+
"learning_rate": 8.01824849278814e-06,
|
| 506 |
+
"loss": 0.555483169555664,
|
| 507 |
+
"mean_token_accuracy": 0.883213449716568,
|
| 508 |
+
"num_tokens": 10869586.0,
|
| 509 |
+
"step": 2000
|
| 510 |
+
},
|
| 511 |
+
{
|
| 512 |
+
"epoch": 1.1527597636547053,
|
| 513 |
+
"eval_entropy": 0.519798114582112,
|
| 514 |
+
"eval_loss": 0.5227712988853455,
|
| 515 |
+
"eval_mean_token_accuracy": 0.8866353715720929,
|
| 516 |
+
"eval_num_tokens": 10869586.0,
|
| 517 |
+
"eval_runtime": 25.2263,
|
| 518 |
+
"eval_samples_per_second": 59.977,
|
| 519 |
+
"eval_steps_per_second": 7.532,
|
| 520 |
+
"step": 2000
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.5413903272151948,
|
| 524 |
+
"epoch": 1.1815823605706874,
|
| 525 |
+
"grad_norm": 0.2601049542427063,
|
| 526 |
+
"learning_rate": 7.5636991928790226e-06,
|
| 527 |
+
"loss": 0.5650748443603516,
|
| 528 |
+
"mean_token_accuracy": 0.8822926163673401,
|
| 529 |
+
"num_tokens": 11142115.0,
|
| 530 |
+
"step": 2050
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.5441782039403915,
|
| 534 |
+
"epoch": 1.2104049574866695,
|
| 535 |
+
"grad_norm": 0.23305267095565796,
|
| 536 |
+
"learning_rate": 7.1144420440136945e-06,
|
| 537 |
+
"loss": 0.5608541870117187,
|
| 538 |
+
"mean_token_accuracy": 0.8806314519047738,
|
| 539 |
+
"num_tokens": 11414459.0,
|
| 540 |
+
"step": 2100
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.5373694878071547,
|
| 544 |
+
"epoch": 1.2392275544026516,
|
| 545 |
+
"grad_norm": 0.2710422873497009,
|
| 546 |
+
"learning_rate": 6.671452925969549e-06,
|
| 547 |
+
"loss": 0.5601076126098633,
|
| 548 |
+
"mean_token_accuracy": 0.8817597103118896,
|
| 549 |
+
"num_tokens": 11686439.0,
|
| 550 |
+
"step": 2150
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.5512064357846975,
|
| 554 |
+
"epoch": 1.2680501513186337,
|
| 555 |
+
"grad_norm": 0.24875891208648682,
|
| 556 |
+
"learning_rate": 6.2356941030600036e-06,
|
| 557 |
+
"loss": 0.572663803100586,
|
| 558 |
+
"mean_token_accuracy": 0.8795112228393555,
|
| 559 |
+
"num_tokens": 11959949.0,
|
| 560 |
+
"step": 2200
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"epoch": 1.2680501513186337,
|
| 564 |
+
"eval_entropy": 0.5157758243774113,
|
| 565 |
+
"eval_loss": 0.5222153663635254,
|
| 566 |
+
"eval_mean_token_accuracy": 0.8866087377071381,
|
| 567 |
+
"eval_num_tokens": 11959949.0,
|
| 568 |
+
"eval_runtime": 25.3435,
|
| 569 |
+
"eval_samples_per_second": 59.7,
|
| 570 |
+
"eval_steps_per_second": 7.497,
|
| 571 |
+
"step": 2200
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"entropy": 0.5333986005187035,
|
| 575 |
+
"epoch": 1.296872748234616,
|
| 576 |
+
"grad_norm": 0.2774944603443146,
|
| 577 |
+
"learning_rate": 5.808112133896682e-06,
|
| 578 |
+
"loss": 0.5507477569580078,
|
| 579 |
+
"mean_token_accuracy": 0.8833928933739662,
|
| 580 |
+
"num_tokens": 12230467.0,
|
| 581 |
+
"step": 2250
|
| 582 |
+
},
|
| 583 |
+
{
|
| 584 |
+
"entropy": 0.5385575620830059,
|
| 585 |
+
"epoch": 1.325695345150598,
|
| 586 |
+
"grad_norm": 0.24219754338264465,
|
| 587 |
+
"learning_rate": 5.38963581526766e-06,
|
| 588 |
+
"loss": 0.5618357849121094,
|
| 589 |
+
"mean_token_accuracy": 0.8824037438631058,
|
| 590 |
+
"num_tokens": 12500631.0,
|
| 591 |
+
"step": 2300
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"entropy": 0.5562852944433689,
|
| 595 |
+
"epoch": 1.3545179420665803,
|
| 596 |
+
"grad_norm": 0.23605461418628693,
|
| 597 |
+
"learning_rate": 4.981174164598023e-06,
|
| 598 |
+
"loss": 0.5740032577514649,
|
| 599 |
+
"mean_token_accuracy": 0.8787400788068771,
|
| 600 |
+
"num_tokens": 12773793.0,
|
| 601 |
+
"step": 2350
|
| 602 |
+
},
|
| 603 |
+
{
|
| 604 |
+
"entropy": 0.5452473207563162,
|
| 605 |
+
"epoch": 1.3833405389825624,
|
| 606 |
+
"grad_norm": 0.23601187765598297,
|
| 607 |
+
"learning_rate": 4.5836144453753595e-06,
|
| 608 |
+
"loss": 0.5657626724243164,
|
| 609 |
+
"mean_token_accuracy": 0.8807224997878075,
|
| 610 |
+
"num_tokens": 13046257.0,
|
| 611 |
+
"step": 2400
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 1.3833405389825624,
|
| 615 |
+
"eval_entropy": 0.5180542894884159,
|
| 616 |
+
"eval_loss": 0.5217919945716858,
|
| 617 |
+
"eval_mean_token_accuracy": 0.8867926757586629,
|
| 618 |
+
"eval_num_tokens": 13046257.0,
|
| 619 |
+
"eval_runtime": 25.2941,
|
| 620 |
+
"eval_samples_per_second": 59.816,
|
| 621 |
+
"eval_steps_per_second": 7.512,
|
| 622 |
+
"step": 2400
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"entropy": 0.5406669420003891,
|
| 626 |
+
"epoch": 1.4121631358985445,
|
| 627 |
+
"grad_norm": 0.27414751052856445,
|
| 628 |
+
"learning_rate": 4.197820239829295e-06,
|
| 629 |
+
"loss": 0.5581526184082031,
|
| 630 |
+
"mean_token_accuracy": 0.8821376091241837,
|
| 631 |
+
"num_tokens": 13318117.0,
|
| 632 |
+
"step": 2450
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"entropy": 0.5123971965163946,
|
| 636 |
+
"epoch": 1.4409857328145266,
|
| 637 |
+
"grad_norm": 0.27002713084220886,
|
| 638 |
+
"learning_rate": 3.8246295730516455e-06,
|
| 639 |
+
"loss": 0.5292396545410156,
|
| 640 |
+
"mean_token_accuracy": 0.8868949916958809,
|
| 641 |
+
"num_tokens": 13585112.0,
|
| 642 |
+
"step": 2500
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"entropy": 0.5250877778977155,
|
| 646 |
+
"epoch": 1.4698083297305087,
|
| 647 |
+
"grad_norm": 0.2513103187084198,
|
| 648 |
+
"learning_rate": 3.4648530926319634e-06,
|
| 649 |
+
"loss": 0.5443946075439453,
|
| 650 |
+
"mean_token_accuracy": 0.8851349979639054,
|
| 651 |
+
"num_tokens": 13854892.0,
|
| 652 |
+
"step": 2550
|
| 653 |
+
},
|
| 654 |
+
{
|
| 655 |
+
"entropy": 0.5314137779176236,
|
| 656 |
+
"epoch": 1.4986309266464908,
|
| 657 |
+
"grad_norm": 0.21981389820575714,
|
| 658 |
+
"learning_rate": 3.1192723077627163e-06,
|
| 659 |
+
"loss": 0.5500518798828125,
|
| 660 |
+
"mean_token_accuracy": 0.8838223886489868,
|
| 661 |
+
"num_tokens": 14126513.0,
|
| 662 |
+
"step": 2600
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.4986309266464908,
|
| 666 |
+
"eval_entropy": 0.5145505380473638,
|
| 667 |
+
"eval_loss": 0.5215311050415039,
|
| 668 |
+
"eval_mean_token_accuracy": 0.8864174689117231,
|
| 669 |
+
"eval_num_tokens": 14126513.0,
|
| 670 |
+
"eval_runtime": 25.2961,
|
| 671 |
+
"eval_samples_per_second": 59.812,
|
| 672 |
+
"eval_steps_per_second": 7.511,
|
| 673 |
+
"step": 2600
|
| 674 |
+
},
|
| 675 |
+
{
|
| 676 |
+
"entropy": 0.5299251443892717,
|
| 677 |
+
"epoch": 1.5274535235624729,
|
| 678 |
+
"grad_norm": 0.2680607736110687,
|
| 679 |
+
"learning_rate": 2.78863789163911e-06,
|
| 680 |
+
"loss": 0.5511317825317383,
|
| 681 |
+
"mean_token_accuracy": 0.8838860777020454,
|
| 682 |
+
"num_tokens": 14396535.0,
|
| 683 |
+
"step": 2650
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"entropy": 0.5394382092356682,
|
| 687 |
+
"epoch": 1.5562761204784552,
|
| 688 |
+
"grad_norm": 0.25587576627731323,
|
| 689 |
+
"learning_rate": 2.4736680508410902e-06,
|
| 690 |
+
"loss": 0.5560498809814454,
|
| 691 |
+
"mean_token_accuracy": 0.8820542943477631,
|
| 692 |
+
"num_tokens": 14666012.0,
|
| 693 |
+
"step": 2700
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"entropy": 0.5438171474635601,
|
| 697 |
+
"epoch": 1.585098717394437,
|
| 698 |
+
"grad_norm": 0.22950419783592224,
|
| 699 |
+
"learning_rate": 2.1750469652395777e-06,
|
| 700 |
+
"loss": 0.5646057891845703,
|
| 701 |
+
"mean_token_accuracy": 0.8806953200697899,
|
| 702 |
+
"num_tokens": 14938072.0,
|
| 703 |
+
"step": 2750
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"entropy": 0.5157144083827734,
|
| 707 |
+
"epoch": 1.6139213143104194,
|
| 708 |
+
"grad_norm": 0.23236404359340668,
|
| 709 |
+
"learning_rate": 1.8934233018157822e-06,
|
| 710 |
+
"loss": 0.5314432525634766,
|
| 711 |
+
"mean_token_accuracy": 0.8868013408780098,
|
| 712 |
+
"num_tokens": 15206239.0,
|
| 713 |
+
"step": 2800
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 1.6139213143104194,
|
| 717 |
+
"eval_entropy": 0.514612096783362,
|
| 718 |
+
"eval_loss": 0.5212787985801697,
|
| 719 |
+
"eval_mean_token_accuracy": 0.8865814996393103,
|
| 720 |
+
"eval_num_tokens": 15206239.0,
|
| 721 |
+
"eval_runtime": 25.284,
|
| 722 |
+
"eval_samples_per_second": 59.84,
|
| 723 |
+
"eval_steps_per_second": 7.515,
|
| 724 |
+
"step": 2800
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"entropy": 0.5607952538132668,
|
| 728 |
+
"epoch": 1.6427439112264015,
|
| 729 |
+
"grad_norm": 0.27139943838119507,
|
| 730 |
+
"learning_rate": 1.6294088056218705e-06,
|
| 731 |
+
"loss": 0.5802758026123047,
|
| 732 |
+
"mean_token_accuracy": 0.8771729645133018,
|
| 733 |
+
"num_tokens": 15479383.0,
|
| 734 |
+
"step": 2850
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"entropy": 0.5458529234677553,
|
| 738 |
+
"epoch": 1.6715665081423836,
|
| 739 |
+
"grad_norm": 0.22497807443141937,
|
| 740 |
+
"learning_rate": 1.3835769709437307e-06,
|
| 741 |
+
"loss": 0.5699198913574218,
|
| 742 |
+
"mean_token_accuracy": 0.8804216027259827,
|
| 743 |
+
"num_tokens": 15754571.0,
|
| 744 |
+
"step": 2900
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"entropy": 0.5275375150889158,
|
| 748 |
+
"epoch": 1.7003891050583657,
|
| 749 |
+
"grad_norm": 0.25096791982650757,
|
| 750 |
+
"learning_rate": 1.1564617955523716e-06,
|
| 751 |
+
"loss": 0.5493584060668946,
|
| 752 |
+
"mean_token_accuracy": 0.8840730246901513,
|
| 753 |
+
"num_tokens": 16024591.0,
|
| 754 |
+
"step": 2950
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"entropy": 0.529434435814619,
|
| 758 |
+
"epoch": 1.7292117019743478,
|
| 759 |
+
"grad_norm": 0.20803657174110413,
|
| 760 |
+
"learning_rate": 9.485566207498986e-07,
|
| 761 |
+
"loss": 0.552624740600586,
|
| 762 |
+
"mean_token_accuracy": 0.8842183569073677,
|
| 763 |
+
"num_tokens": 16291960.0,
|
| 764 |
+
"step": 3000
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"epoch": 1.7292117019743478,
|
| 768 |
+
"eval_entropy": 0.5173903987595909,
|
| 769 |
+
"eval_loss": 0.5210983753204346,
|
| 770 |
+
"eval_mean_token_accuracy": 0.8867466380721645,
|
| 771 |
+
"eval_num_tokens": 16291960.0,
|
| 772 |
+
"eval_runtime": 25.2973,
|
| 773 |
+
"eval_samples_per_second": 59.809,
|
| 774 |
+
"eval_steps_per_second": 7.511,
|
| 775 |
+
"step": 3000
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"entropy": 0.5379937102645636,
|
| 779 |
+
"epoch": 1.7580342988903301,
|
| 780 |
+
"grad_norm": 0.279082715511322,
|
| 781 |
+
"learning_rate": 7.603130597298147e-07,
|
| 782 |
+
"loss": 0.5518331146240234,
|
| 783 |
+
"mean_token_accuracy": 0.8835244515538215,
|
| 784 |
+
"num_tokens": 16562192.0,
|
| 785 |
+
"step": 3050
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"entropy": 0.5540396096557378,
|
| 789 |
+
"epoch": 1.786856895806312,
|
| 790 |
+
"grad_norm": 0.23533675074577332,
|
| 791 |
+
"learning_rate": 5.921400165794255e-07,
|
| 792 |
+
"loss": 0.5790340423583984,
|
| 793 |
+
"mean_token_accuracy": 0.8788801202178002,
|
| 794 |
+
"num_tokens": 16834646.0,
|
| 795 |
+
"step": 3100
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"entropy": 0.5152763035148382,
|
| 799 |
+
"epoch": 1.8156794927222943,
|
| 800 |
+
"grad_norm": 0.2803124487400055,
|
| 801 |
+
"learning_rate": 4.444027980552901e-07,
|
| 802 |
+
"loss": 0.5328571701049805,
|
| 803 |
+
"mean_token_accuracy": 0.8869862693548203,
|
| 804 |
+
"num_tokens": 17104758.0,
|
| 805 |
+
"step": 3150
|
| 806 |
+
},
|
| 807 |
+
{
|
| 808 |
+
"entropy": 0.5612848294526338,
|
| 809 |
+
"epoch": 1.8445020896382764,
|
| 810 |
+
"grad_norm": 0.26171237230300903,
|
| 811 |
+
"learning_rate": 3.1742232006111374e-07,
|
| 812 |
+
"loss": 0.5824931716918945,
|
| 813 |
+
"mean_token_accuracy": 0.8772889456152916,
|
| 814 |
+
"num_tokens": 17379954.0,
|
| 815 |
+
"step": 3200
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 1.8445020896382764,
|
| 819 |
+
"eval_entropy": 0.516960418381189,
|
| 820 |
+
"eval_loss": 0.5211681723594666,
|
| 821 |
+
"eval_mean_token_accuracy": 0.8866549037004772,
|
| 822 |
+
"eval_num_tokens": 17379954.0,
|
| 823 |
+
"eval_runtime": 25.3046,
|
| 824 |
+
"eval_samples_per_second": 59.791,
|
| 825 |
+
"eval_steps_per_second": 7.509,
|
| 826 |
+
"step": 3200
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"entropy": 0.5196366369724273,
|
| 830 |
+
"epoch": 1.8733246865542585,
|
| 831 |
+
"grad_norm": 0.6400351524353027,
|
| 832 |
+
"learning_rate": 2.1147441055180074e-07,
|
| 833 |
+
"loss": 0.5364640808105469,
|
| 834 |
+
"mean_token_accuracy": 0.8855624732375145,
|
| 835 |
+
"num_tokens": 17647943.0,
|
| 836 |
+
"step": 3250
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"entropy": 0.5125804611295461,
|
| 840 |
+
"epoch": 1.9021472834702406,
|
| 841 |
+
"grad_norm": 0.24278956651687622,
|
| 842 |
+
"learning_rate": 1.2678921037788118e-07,
|
| 843 |
+
"loss": 0.5320493316650391,
|
| 844 |
+
"mean_token_accuracy": 0.8888507178425789,
|
| 845 |
+
"num_tokens": 17914413.0,
|
| 846 |
+
"step": 3300
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"entropy": 0.5364588350057602,
|
| 850 |
+
"epoch": 1.9309698803862227,
|
| 851 |
+
"grad_norm": 0.2414465695619583,
|
| 852 |
+
"learning_rate": 6.355067337181497e-08,
|
| 853 |
+
"loss": 0.5448334121704101,
|
| 854 |
+
"mean_token_accuracy": 0.8835894984006881,
|
| 855 |
+
"num_tokens": 18184605.0,
|
| 856 |
+
"step": 3350
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"entropy": 0.5623560689389706,
|
| 860 |
+
"epoch": 1.959792477302205,
|
| 861 |
+
"grad_norm": 0.31695693731307983,
|
| 862 |
+
"learning_rate": 2.189616676208428e-08,
|
| 863 |
+
"loss": 0.5812443923950196,
|
| 864 |
+
"mean_token_accuracy": 0.877460196018219,
|
| 865 |
+
"num_tokens": 18459900.0,
|
| 866 |
+
"step": 3400
|
| 867 |
+
},
|
| 868 |
+
{
|
| 869 |
+
"epoch": 1.959792477302205,
|
| 870 |
+
"eval_entropy": 0.5174976312016186,
|
| 871 |
+
"eval_loss": 0.5211665630340576,
|
| 872 |
+
"eval_mean_token_accuracy": 0.8866490850323125,
|
| 873 |
+
"eval_num_tokens": 18459900.0,
|
| 874 |
+
"eval_runtime": 25.3065,
|
| 875 |
+
"eval_samples_per_second": 59.787,
|
| 876 |
+
"eval_steps_per_second": 7.508,
|
| 877 |
+
"step": 3400
|
| 878 |
+
}
|
| 879 |
+
],
|
| 880 |
+
"logging_steps": 50,
|
| 881 |
+
"max_steps": 3470,
|
| 882 |
+
"num_input_tokens_seen": 0,
|
| 883 |
+
"num_train_epochs": 2,
|
| 884 |
+
"save_steps": 200,
|
| 885 |
+
"stateful_callbacks": {
|
| 886 |
+
"TrainerControl": {
|
| 887 |
+
"args": {
|
| 888 |
+
"should_epoch_stop": false,
|
| 889 |
+
"should_evaluate": false,
|
| 890 |
+
"should_log": false,
|
| 891 |
+
"should_save": true,
|
| 892 |
+
"should_training_stop": false
|
| 893 |
+
},
|
| 894 |
+
"attributes": {}
|
| 895 |
+
}
|
| 896 |
+
},
|
| 897 |
+
"total_flos": 2.001481583701156e+17,
|
| 898 |
+
"train_batch_size": 4,
|
| 899 |
+
"trial_name": null,
|
| 900 |
+
"trial_params": null
|
| 901 |
+
}
|
checkpoint-3400/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce31781cfdf69130f19fa349f51bdab1b5bc268c80263195e5581f6a46a289d7
|
| 3 |
+
size 5713
|
checkpoint-3470/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /scratch/Qwen3-1.7B
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/scratch/Qwen3-1.7B
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 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
|
checkpoint-3470/adapter_config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "/scratch/Qwen3-1.7B",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 32,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 16,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"q_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"v_proj"
|
| 37 |
+
],
|
| 38 |
+
"target_parameters": null,
|
| 39 |
+
"task_type": "CAUSAL_LM",
|
| 40 |
+
"trainable_token_indices": null,
|
| 41 |
+
"use_bdlora": null,
|
| 42 |
+
"use_dora": false,
|
| 43 |
+
"use_qalora": false,
|
| 44 |
+
"use_rslora": false
|
| 45 |
+
}
|
checkpoint-3470/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0905f78d32977d0597e949a6a415439d45a957306c5369296ee4157abf37b7ea
|
| 3 |
+
size 25720120
|
checkpoint-3470/chat_template.jinja
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set enable_thinking = false %}
|
| 2 |
+
{%- set enable_thinking = false %}
|
| 3 |
+
{%- if tools %}
|
| 4 |
+
{{- '<|im_start|>system\n' }}
|
| 5 |
+
{%- if messages[0].role == 'system' %}
|
| 6 |
+
{{- messages[0].content + '\n\n' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0].role == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are a helpful assistant. Always put your final answer in \\boxed{}. For multiple choice questions, put only the letter in \\boxed{}, for example \\boxed{A}.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 22 |
+
{%- for message in messages[::-1] %}
|
| 23 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 24 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 25 |
+
{%- set ns.multi_step_tool = false %}
|
| 26 |
+
{%- set ns.last_query_index = index %}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- endfor %}
|
| 29 |
+
{%- for message in messages %}
|
| 30 |
+
{%- if message.content is string %}
|
| 31 |
+
{%- set content = message.content %}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{%- set content = '' %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 36 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 37 |
+
{%- elif message.role == "assistant" %}
|
| 38 |
+
{%- set reasoning_content = '' %}
|
| 39 |
+
{%- if message.reasoning_content is string %}
|
| 40 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 41 |
+
{%- else %}
|
| 42 |
+
{%- if '</think>' in content %}
|
| 43 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 44 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{%- endif %}
|
| 47 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 48 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 49 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 50 |
+
{%- else %}
|
| 51 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 52 |
+
{%- endif %}
|
| 53 |
+
{%- else %}
|
| 54 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 55 |
+
{%- endif %}
|
| 56 |
+
{%- if message.tool_calls %}
|
| 57 |
+
{%- for tool_call in message.tool_calls %}
|
| 58 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 59 |
+
{{- '\n' }}
|
| 60 |
+
{%- endif %}
|
| 61 |
+
{%- if tool_call.function %}
|
| 62 |
+
{%- set tool_call = tool_call.function %}
|
| 63 |
+
{%- endif %}
|
| 64 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 65 |
+
{{- tool_call.name }}
|
| 66 |
+
{{- '", "arguments": ' }}
|
| 67 |
+
{%- if tool_call.arguments is string %}
|
| 68 |
+
{{- tool_call.arguments }}
|
| 69 |
+
{%- else %}
|
| 70 |
+
{{- tool_call.arguments | tojson }}
|
| 71 |
+
{%- endif %}
|
| 72 |
+
{{- '}\n</tool_call>' }}
|
| 73 |
+
{%- endfor %}
|
| 74 |
+
{%- endif %}
|
| 75 |
+
{{- '<|im_end|>\n' }}
|
| 76 |
+
{%- elif message.role == "tool" %}
|
| 77 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 78 |
+
{{- '<|im_start|>user' }}
|
| 79 |
+
{%- endif %}
|
| 80 |
+
{{- '\n<tool_response>\n' }}
|
| 81 |
+
{{- content }}
|
| 82 |
+
{{- '\n</tool_response>' }}
|
| 83 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 84 |
+
{{- '<|im_end|>\n' }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- endfor %}
|
| 88 |
+
{%- if add_generation_prompt %}
|
| 89 |
+
{{- '<|im_start|>assistant\n' }}
|
| 90 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 91 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 92 |
+
{%- endif %}
|
| 93 |
+
{%- endif %}
|
checkpoint-3470/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3b25e49262f40ef179a1716c8700de0e66a56a48eeb0e192ab5a49c7cf5c5c9
|
| 3 |
+
size 51571787
|
checkpoint-3470/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae63b92720a32f8a6e8106718dbf0ee94c8b04ab259a39de5dd5f9c7fc64815d
|
| 3 |
+
size 14645
|
checkpoint-3470/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ad736cd88698b400162a4214857ee0a08406f65385e91caaf52f5cc2fe1676a
|
| 3 |
+
size 1465
|
checkpoint-3470/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
|
| 3 |
+
size 11422650
|
checkpoint-3470/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": true,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|
checkpoint-3470/trainer_state.json
ADDED
|
@@ -0,0 +1,922 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": 3470,
|
| 3 |
+
"best_metric": 0.5210279822349548,
|
| 4 |
+
"best_model_checkpoint": "/scratch/gk_checkpoint_lora/checkpoint-3470",
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 200,
|
| 7 |
+
"global_step": 3470,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 0.8664254155755043,
|
| 14 |
+
"epoch": 0.02882259691598213,
|
| 15 |
+
"grad_norm": 2.775977611541748,
|
| 16 |
+
"learning_rate": 9.800000000000001e-06,
|
| 17 |
+
"loss": 3.2154922485351562,
|
| 18 |
+
"mean_token_accuracy": 0.5048915630578995,
|
| 19 |
+
"num_tokens": 270598.0,
|
| 20 |
+
"step": 50
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 1.210615372657776,
|
| 24 |
+
"epoch": 0.05764519383196426,
|
| 25 |
+
"grad_norm": 1.1605831384658813,
|
| 26 |
+
"learning_rate": 1.98e-05,
|
| 27 |
+
"loss": 2.068811798095703,
|
| 28 |
+
"mean_token_accuracy": 0.5692685562372207,
|
| 29 |
+
"num_tokens": 543717.0,
|
| 30 |
+
"step": 100
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.7421895080804825,
|
| 34 |
+
"epoch": 0.08646779074794639,
|
| 35 |
+
"grad_norm": 0.25959399342536926,
|
| 36 |
+
"learning_rate": 1.9989568984484556e-05,
|
| 37 |
+
"loss": 0.8849951171875,
|
| 38 |
+
"mean_token_accuracy": 0.8145365649461747,
|
| 39 |
+
"num_tokens": 813682.0,
|
| 40 |
+
"step": 150
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.6125312650203705,
|
| 44 |
+
"epoch": 0.11529038766392852,
|
| 45 |
+
"grad_norm": 0.24997037649154663,
|
| 46 |
+
"learning_rate": 1.9957442896851584e-05,
|
| 47 |
+
"loss": 0.691104507446289,
|
| 48 |
+
"mean_token_accuracy": 0.862597424685955,
|
| 49 |
+
"num_tokens": 1085263.0,
|
| 50 |
+
"step": 200
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 0.11529038766392852,
|
| 54 |
+
"eval_entropy": 0.5956721862680033,
|
| 55 |
+
"eval_loss": 0.6279548406600952,
|
| 56 |
+
"eval_mean_token_accuracy": 0.8725619774115713,
|
| 57 |
+
"eval_num_tokens": 1085263.0,
|
| 58 |
+
"eval_runtime": 25.3455,
|
| 59 |
+
"eval_samples_per_second": 59.695,
|
| 60 |
+
"eval_steps_per_second": 7.496,
|
| 61 |
+
"step": 200
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"entropy": 0.6464120636880398,
|
| 65 |
+
"epoch": 0.14411298457991065,
|
| 66 |
+
"grad_norm": 0.2776671051979065,
|
| 67 |
+
"learning_rate": 1.9903687176430222e-05,
|
| 68 |
+
"loss": 0.6937020874023437,
|
| 69 |
+
"mean_token_accuracy": 0.8613211107254028,
|
| 70 |
+
"num_tokens": 1359193.0,
|
| 71 |
+
"step": 250
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"entropy": 0.6303374738991261,
|
| 75 |
+
"epoch": 0.17293558149589278,
|
| 76 |
+
"grad_norm": 0.23006124794483185,
|
| 77 |
+
"learning_rate": 1.9828418591803025e-05,
|
| 78 |
+
"loss": 0.674161376953125,
|
| 79 |
+
"mean_token_accuracy": 0.865567267537117,
|
| 80 |
+
"num_tokens": 1633225.0,
|
| 81 |
+
"step": 300
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"entropy": 0.6267825645208359,
|
| 85 |
+
"epoch": 0.2017581784118749,
|
| 86 |
+
"grad_norm": 0.264813095331192,
|
| 87 |
+
"learning_rate": 1.973180064195894e-05,
|
| 88 |
+
"loss": 0.6597396850585937,
|
| 89 |
+
"mean_token_accuracy": 0.8673095554113388,
|
| 90 |
+
"num_tokens": 1905535.0,
|
| 91 |
+
"step": 350
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"entropy": 0.6219879929721356,
|
| 95 |
+
"epoch": 0.23058077532785703,
|
| 96 |
+
"grad_norm": 0.3037996292114258,
|
| 97 |
+
"learning_rate": 1.9614043201139513e-05,
|
| 98 |
+
"loss": 0.6504788208007812,
|
| 99 |
+
"mean_token_accuracy": 0.868158842921257,
|
| 100 |
+
"num_tokens": 2177042.0,
|
| 101 |
+
"step": 400
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.23058077532785703,
|
| 105 |
+
"eval_entropy": 0.5888996227791435,
|
| 106 |
+
"eval_loss": 0.5949175357818604,
|
| 107 |
+
"eval_mean_token_accuracy": 0.8765835507919914,
|
| 108 |
+
"eval_num_tokens": 2177042.0,
|
| 109 |
+
"eval_runtime": 25.3953,
|
| 110 |
+
"eval_samples_per_second": 59.578,
|
| 111 |
+
"eval_steps_per_second": 7.482,
|
| 112 |
+
"step": 400
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"entropy": 0.6223398548364639,
|
| 116 |
+
"epoch": 0.2594033722438392,
|
| 117 |
+
"grad_norm": 0.27440914511680603,
|
| 118 |
+
"learning_rate": 1.9475402062948533e-05,
|
| 119 |
+
"loss": 0.6479128265380859,
|
| 120 |
+
"mean_token_accuracy": 0.8684594085812569,
|
| 121 |
+
"num_tokens": 2452073.0,
|
| 122 |
+
"step": 450
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"entropy": 0.610146201401949,
|
| 126 |
+
"epoch": 0.2882259691598213,
|
| 127 |
+
"grad_norm": 0.3176165521144867,
|
| 128 |
+
"learning_rate": 1.9316178384715195e-05,
|
| 129 |
+
"loss": 0.6257384109497071,
|
| 130 |
+
"mean_token_accuracy": 0.8711106261610985,
|
| 131 |
+
"num_tokens": 2724641.0,
|
| 132 |
+
"step": 500
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"entropy": 0.5934953857213259,
|
| 136 |
+
"epoch": 0.31704856607580345,
|
| 137 |
+
"grad_norm": 0.2879047095775604,
|
| 138 |
+
"learning_rate": 1.9136718033317887e-05,
|
| 139 |
+
"loss": 0.6003322601318359,
|
| 140 |
+
"mean_token_accuracy": 0.8751304519176483,
|
| 141 |
+
"num_tokens": 2994313.0,
|
| 142 |
+
"step": 550
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"entropy": 0.5552539291977883,
|
| 146 |
+
"epoch": 0.34587116299178555,
|
| 147 |
+
"grad_norm": 0.31590884923934937,
|
| 148 |
+
"learning_rate": 1.8937410833889517e-05,
|
| 149 |
+
"loss": 0.5751915740966796,
|
| 150 |
+
"mean_token_accuracy": 0.8799619308114052,
|
| 151 |
+
"num_tokens": 3262166.0,
|
| 152 |
+
"step": 600
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"epoch": 0.34587116299178555,
|
| 156 |
+
"eval_entropy": 0.5373091018513629,
|
| 157 |
+
"eval_loss": 0.5472979545593262,
|
| 158 |
+
"eval_mean_token_accuracy": 0.882329721827256,
|
| 159 |
+
"eval_num_tokens": 3262166.0,
|
| 160 |
+
"eval_runtime": 25.4147,
|
| 161 |
+
"eval_samples_per_second": 59.533,
|
| 162 |
+
"eval_steps_per_second": 7.476,
|
| 163 |
+
"step": 600
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"entropy": 0.6037677505612373,
|
| 167 |
+
"epoch": 0.3746937599077677,
|
| 168 |
+
"grad_norm": 0.24785549938678741,
|
| 169 |
+
"learning_rate": 1.871868972303645e-05,
|
| 170 |
+
"loss": 0.6383477020263671,
|
| 171 |
+
"mean_token_accuracy": 0.868063251376152,
|
| 172 |
+
"num_tokens": 3540715.0,
|
| 173 |
+
"step": 650
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"entropy": 0.5363423094898462,
|
| 177 |
+
"epoch": 0.4035163568237498,
|
| 178 |
+
"grad_norm": 0.2744317650794983,
|
| 179 |
+
"learning_rate": 1.848102980841029e-05,
|
| 180 |
+
"loss": 0.5591300964355469,
|
| 181 |
+
"mean_token_accuracy": 0.8841247257590293,
|
| 182 |
+
"num_tokens": 3809747.0,
|
| 183 |
+
"step": 700
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"entropy": 0.5646945191174746,
|
| 187 |
+
"epoch": 0.43233895373973197,
|
| 188 |
+
"grad_norm": 0.22471845149993896,
|
| 189 |
+
"learning_rate": 1.8224947336675485e-05,
|
| 190 |
+
"loss": 0.5917744064331054,
|
| 191 |
+
"mean_token_accuracy": 0.8773607212305069,
|
| 192 |
+
"num_tokens": 4084262.0,
|
| 193 |
+
"step": 750
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"entropy": 0.5565017917752266,
|
| 197 |
+
"epoch": 0.46116155065571407,
|
| 198 |
+
"grad_norm": 0.24923403561115265,
|
| 199 |
+
"learning_rate": 1.79509985721144e-05,
|
| 200 |
+
"loss": 0.581727409362793,
|
| 201 |
+
"mean_token_accuracy": 0.8778996297717094,
|
| 202 |
+
"num_tokens": 4358564.0,
|
| 203 |
+
"step": 800
|
| 204 |
+
},
|
| 205 |
+
{
|
| 206 |
+
"epoch": 0.46116155065571407,
|
| 207 |
+
"eval_entropy": 0.5298120318274749,
|
| 208 |
+
"eval_loss": 0.5324572324752808,
|
| 209 |
+
"eval_mean_token_accuracy": 0.8855449488288478,
|
| 210 |
+
"eval_num_tokens": 4358564.0,
|
| 211 |
+
"eval_runtime": 25.3391,
|
| 212 |
+
"eval_samples_per_second": 59.71,
|
| 213 |
+
"eval_steps_per_second": 7.498,
|
| 214 |
+
"step": 800
|
| 215 |
+
},
|
| 216 |
+
{
|
| 217 |
+
"entropy": 0.5551759076118469,
|
| 218 |
+
"epoch": 0.4899841475716962,
|
| 219 |
+
"grad_norm": 0.2890514135360718,
|
| 220 |
+
"learning_rate": 1.765977858830583e-05,
|
| 221 |
+
"loss": 0.5757025909423829,
|
| 222 |
+
"mean_token_accuracy": 0.8784776413440705,
|
| 223 |
+
"num_tokens": 4631480.0,
|
| 224 |
+
"step": 850
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"entropy": 0.5454864390939475,
|
| 228 |
+
"epoch": 0.5188067444876784,
|
| 229 |
+
"grad_norm": 0.23076863586902618,
|
| 230 |
+
"learning_rate": 1.735191997550167e-05,
|
| 231 |
+
"loss": 0.5680808258056641,
|
| 232 |
+
"mean_token_accuracy": 0.88047192633152,
|
| 233 |
+
"num_tokens": 4904344.0,
|
| 234 |
+
"step": 900
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"entropy": 0.5318841424584388,
|
| 238 |
+
"epoch": 0.5476293414036605,
|
| 239 |
+
"grad_norm": 0.23075300455093384,
|
| 240 |
+
"learning_rate": 1.7028091466509602e-05,
|
| 241 |
+
"loss": 0.555275650024414,
|
| 242 |
+
"mean_token_accuracy": 0.884403744339943,
|
| 243 |
+
"num_tokens": 5172046.0,
|
| 244 |
+
"step": 950
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"entropy": 0.5584682691097259,
|
| 248 |
+
"epoch": 0.5764519383196426,
|
| 249 |
+
"grad_norm": 0.22157496213912964,
|
| 250 |
+
"learning_rate": 1.668899648406662e-05,
|
| 251 |
+
"loss": 0.5754995346069336,
|
| 252 |
+
"mean_token_accuracy": 0.877709536254406,
|
| 253 |
+
"num_tokens": 5445539.0,
|
| 254 |
+
"step": 1000
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.5764519383196426,
|
| 258 |
+
"eval_entropy": 0.5218244160476484,
|
| 259 |
+
"eval_loss": 0.530579686164856,
|
| 260 |
+
"eval_mean_token_accuracy": 0.8847430721709603,
|
| 261 |
+
"eval_num_tokens": 5445539.0,
|
| 262 |
+
"eval_runtime": 25.2955,
|
| 263 |
+
"eval_samples_per_second": 59.813,
|
| 264 |
+
"eval_steps_per_second": 7.511,
|
| 265 |
+
"step": 1000
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"entropy": 0.5296673697978258,
|
| 269 |
+
"epoch": 0.6052745352356247,
|
| 270 |
+
"grad_norm": 0.2421996146440506,
|
| 271 |
+
"learning_rate": 1.6335371612858827e-05,
|
| 272 |
+
"loss": 0.552278709411621,
|
| 273 |
+
"mean_token_accuracy": 0.884430148601532,
|
| 274 |
+
"num_tokens": 5713428.0,
|
| 275 |
+
"step": 1050
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"entropy": 0.5427714378386735,
|
| 279 |
+
"epoch": 0.6340971321516069,
|
| 280 |
+
"grad_norm": 0.22103162109851837,
|
| 281 |
+
"learning_rate": 1.5967984999506623e-05,
|
| 282 |
+
"loss": 0.5644734954833984,
|
| 283 |
+
"mean_token_accuracy": 0.8810071355104446,
|
| 284 |
+
"num_tokens": 5985117.0,
|
| 285 |
+
"step": 1100
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"entropy": 0.5319583508372306,
|
| 289 |
+
"epoch": 0.662919729067589,
|
| 290 |
+
"grad_norm": 0.25406044721603394,
|
| 291 |
+
"learning_rate": 1.558763468399081e-05,
|
| 292 |
+
"loss": 0.551100959777832,
|
| 293 |
+
"mean_token_accuracy": 0.8851462480425835,
|
| 294 |
+
"num_tokens": 6254015.0,
|
| 295 |
+
"step": 1150
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"entropy": 0.5286855664849281,
|
| 299 |
+
"epoch": 0.6917423259835711,
|
| 300 |
+
"grad_norm": 0.24316425621509552,
|
| 301 |
+
"learning_rate": 1.5195146866144093e-05,
|
| 302 |
+
"loss": 0.5527534484863281,
|
| 303 |
+
"mean_token_accuracy": 0.8843164274096489,
|
| 304 |
+
"num_tokens": 6524236.0,
|
| 305 |
+
"step": 1200
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"epoch": 0.6917423259835711,
|
| 309 |
+
"eval_entropy": 0.5235515671341042,
|
| 310 |
+
"eval_loss": 0.5270145535469055,
|
| 311 |
+
"eval_mean_token_accuracy": 0.8862221178255583,
|
| 312 |
+
"eval_num_tokens": 6524236.0,
|
| 313 |
+
"eval_runtime": 25.2946,
|
| 314 |
+
"eval_samples_per_second": 59.815,
|
| 315 |
+
"eval_steps_per_second": 7.511,
|
| 316 |
+
"step": 1200
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"entropy": 0.5438067949563264,
|
| 320 |
+
"epoch": 0.7205649228995532,
|
| 321 |
+
"grad_norm": 0.2850089967250824,
|
| 322 |
+
"learning_rate": 1.4791374110973555e-05,
|
| 323 |
+
"loss": 0.5662718963623047,
|
| 324 |
+
"mean_token_accuracy": 0.8811582899093628,
|
| 325 |
+
"num_tokens": 6798500.0,
|
| 326 |
+
"step": 1250
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"entropy": 0.5394456747919321,
|
| 330 |
+
"epoch": 0.7493875198155354,
|
| 331 |
+
"grad_norm": 0.2898014783859253,
|
| 332 |
+
"learning_rate": 1.4377193496712517e-05,
|
| 333 |
+
"loss": 0.5550812149047851,
|
| 334 |
+
"mean_token_accuracy": 0.8827075427770614,
|
| 335 |
+
"num_tokens": 7068572.0,
|
| 336 |
+
"step": 1300
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"entropy": 0.5455511239916087,
|
| 340 |
+
"epoch": 0.7782101167315175,
|
| 341 |
+
"grad_norm": 0.22777394950389862,
|
| 342 |
+
"learning_rate": 1.395350470962454e-05,
|
| 343 |
+
"loss": 0.5698577117919922,
|
| 344 |
+
"mean_token_accuracy": 0.8805486962199212,
|
| 345 |
+
"num_tokens": 7338828.0,
|
| 346 |
+
"step": 1350
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"entropy": 0.5357480451464653,
|
| 350 |
+
"epoch": 0.8070327136474996,
|
| 351 |
+
"grad_norm": 0.22745366394519806,
|
| 352 |
+
"learning_rate": 1.3521228089698138e-05,
|
| 353 |
+
"loss": 0.555338134765625,
|
| 354 |
+
"mean_token_accuracy": 0.8834168764948845,
|
| 355 |
+
"num_tokens": 7608634.0,
|
| 356 |
+
"step": 1400
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"epoch": 0.8070327136474996,
|
| 360 |
+
"eval_entropy": 0.5221125764282126,
|
| 361 |
+
"eval_loss": 0.5261030197143555,
|
| 362 |
+
"eval_mean_token_accuracy": 0.8857603835432153,
|
| 363 |
+
"eval_num_tokens": 7608634.0,
|
| 364 |
+
"eval_runtime": 25.3733,
|
| 365 |
+
"eval_samples_per_second": 59.63,
|
| 366 |
+
"eval_steps_per_second": 7.488,
|
| 367 |
+
"step": 1400
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"entropy": 0.5366402574628591,
|
| 371 |
+
"epoch": 0.8358553105634817,
|
| 372 |
+
"grad_norm": 0.3329956531524658,
|
| 373 |
+
"learning_rate": 1.3081302631477272e-05,
|
| 374 |
+
"loss": 0.5528204345703125,
|
| 375 |
+
"mean_token_accuracy": 0.883393512070179,
|
| 376 |
+
"num_tokens": 7876795.0,
|
| 377 |
+
"step": 1450
|
| 378 |
+
},
|
| 379 |
+
{
|
| 380 |
+
"entropy": 0.5442750995606184,
|
| 381 |
+
"epoch": 0.8646779074794639,
|
| 382 |
+
"grad_norm": 0.22092807292938232,
|
| 383 |
+
"learning_rate": 1.263468394437032e-05,
|
| 384 |
+
"loss": 0.5658491897583008,
|
| 385 |
+
"mean_token_accuracy": 0.8810335186123848,
|
| 386 |
+
"num_tokens": 8149031.0,
|
| 387 |
+
"step": 1500
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"entropy": 0.5575385902076959,
|
| 391 |
+
"epoch": 0.893500504395446,
|
| 392 |
+
"grad_norm": 0.22535692155361176,
|
| 393 |
+
"learning_rate": 1.218234217686808e-05,
|
| 394 |
+
"loss": 0.577353744506836,
|
| 395 |
+
"mean_token_accuracy": 0.878656555712223,
|
| 396 |
+
"num_tokens": 8420950.0,
|
| 397 |
+
"step": 1550
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"entropy": 0.5398243299871683,
|
| 401 |
+
"epoch": 0.9223231013114281,
|
| 402 |
+
"grad_norm": 0.2995174527168274,
|
| 403 |
+
"learning_rate": 1.1725259909179875e-05,
|
| 404 |
+
"loss": 0.5575567626953125,
|
| 405 |
+
"mean_token_accuracy": 0.882205625474453,
|
| 406 |
+
"num_tokens": 8690831.0,
|
| 407 |
+
"step": 1600
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 0.9223231013114281,
|
| 411 |
+
"eval_entropy": 0.5169236369823155,
|
| 412 |
+
"eval_loss": 0.5248522162437439,
|
| 413 |
+
"eval_mean_token_accuracy": 0.8859441503098137,
|
| 414 |
+
"eval_num_tokens": 8690831.0,
|
| 415 |
+
"eval_runtime": 25.3236,
|
| 416 |
+
"eval_samples_per_second": 59.747,
|
| 417 |
+
"eval_steps_per_second": 7.503,
|
| 418 |
+
"step": 1600
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"entropy": 0.5338192899525166,
|
| 422 |
+
"epoch": 0.9511456982274102,
|
| 423 |
+
"grad_norm": 0.3139007091522217,
|
| 424 |
+
"learning_rate": 1.1264430018865391e-05,
|
| 425 |
+
"loss": 0.5552957916259765,
|
| 426 |
+
"mean_token_accuracy": 0.8834528475999832,
|
| 427 |
+
"num_tokens": 8961415.0,
|
| 428 |
+
"step": 1650
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"entropy": 0.5275231996178626,
|
| 432 |
+
"epoch": 0.9799682951433925,
|
| 433 |
+
"grad_norm": 0.2292962670326233,
|
| 434 |
+
"learning_rate": 1.0800853524098543e-05,
|
| 435 |
+
"loss": 0.5416835021972656,
|
| 436 |
+
"mean_token_accuracy": 0.8851530715823174,
|
| 437 |
+
"num_tokens": 9229637.0,
|
| 438 |
+
"step": 1700
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"entropy": 0.5638248626161461,
|
| 442 |
+
"epoch": 1.0086467790747946,
|
| 443 |
+
"grad_norm": 0.23777392506599426,
|
| 444 |
+
"learning_rate": 1.0335537409248204e-05,
|
| 445 |
+
"loss": 0.5851130676269531,
|
| 446 |
+
"mean_token_accuracy": 0.8776284435286594,
|
| 447 |
+
"num_tokens": 9499446.0,
|
| 448 |
+
"step": 1750
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"entropy": 0.5698649657517671,
|
| 452 |
+
"epoch": 1.0374693759907767,
|
| 453 |
+
"grad_norm": 0.2397402822971344,
|
| 454 |
+
"learning_rate": 9.869492437499167e-06,
|
| 455 |
+
"loss": 0.5934230804443359,
|
| 456 |
+
"mean_token_accuracy": 0.8746954175829887,
|
| 457 |
+
"num_tokens": 9775732.0,
|
| 458 |
+
"step": 1800
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 1.0374693759907767,
|
| 462 |
+
"eval_entropy": 0.5189189992452923,
|
| 463 |
+
"eval_loss": 0.5238012671470642,
|
| 464 |
+
"eval_mean_token_accuracy": 0.8859998445761831,
|
| 465 |
+
"eval_num_tokens": 9775732.0,
|
| 466 |
+
"eval_runtime": 25.2908,
|
| 467 |
+
"eval_samples_per_second": 59.824,
|
| 468 |
+
"eval_steps_per_second": 7.513,
|
| 469 |
+
"step": 1800
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"entropy": 0.5613676090538502,
|
| 473 |
+
"epoch": 1.0662919729067588,
|
| 474 |
+
"grad_norm": 0.2651011645793915,
|
| 475 |
+
"learning_rate": 9.403730955264677e-06,
|
| 476 |
+
"loss": 0.5792824935913086,
|
| 477 |
+
"mean_token_accuracy": 0.8779774031043053,
|
| 478 |
+
"num_tokens": 10051416.0,
|
| 479 |
+
"step": 1850
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"entropy": 0.564930793941021,
|
| 483 |
+
"epoch": 1.0951145698227411,
|
| 484 |
+
"grad_norm": 0.2934422194957733,
|
| 485 |
+
"learning_rate": 8.939264693159926e-06,
|
| 486 |
+
"loss": 0.5857321166992188,
|
| 487 |
+
"mean_token_accuracy": 0.8772886765003204,
|
| 488 |
+
"num_tokens": 10325112.0,
|
| 489 |
+
"step": 1900
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"entropy": 0.5554238288849592,
|
| 493 |
+
"epoch": 1.1239371667387232,
|
| 494 |
+
"grad_norm": 0.2599495053291321,
|
| 495 |
+
"learning_rate": 8.477102568313138e-06,
|
| 496 |
+
"loss": 0.5767181015014649,
|
| 497 |
+
"mean_token_accuracy": 0.8785749426484109,
|
| 498 |
+
"num_tokens": 10599513.0,
|
| 499 |
+
"step": 1950
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"entropy": 0.5364625386148691,
|
| 503 |
+
"epoch": 1.1527597636547053,
|
| 504 |
+
"grad_norm": 0.2258245348930359,
|
| 505 |
+
"learning_rate": 8.01824849278814e-06,
|
| 506 |
+
"loss": 0.555483169555664,
|
| 507 |
+
"mean_token_accuracy": 0.883213449716568,
|
| 508 |
+
"num_tokens": 10869586.0,
|
| 509 |
+
"step": 2000
|
| 510 |
+
},
|
| 511 |
+
{
|
| 512 |
+
"epoch": 1.1527597636547053,
|
| 513 |
+
"eval_entropy": 0.519798114582112,
|
| 514 |
+
"eval_loss": 0.5227712988853455,
|
| 515 |
+
"eval_mean_token_accuracy": 0.8866353715720929,
|
| 516 |
+
"eval_num_tokens": 10869586.0,
|
| 517 |
+
"eval_runtime": 25.2263,
|
| 518 |
+
"eval_samples_per_second": 59.977,
|
| 519 |
+
"eval_steps_per_second": 7.532,
|
| 520 |
+
"step": 2000
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.5413903272151948,
|
| 524 |
+
"epoch": 1.1815823605706874,
|
| 525 |
+
"grad_norm": 0.2601049542427063,
|
| 526 |
+
"learning_rate": 7.5636991928790226e-06,
|
| 527 |
+
"loss": 0.5650748443603516,
|
| 528 |
+
"mean_token_accuracy": 0.8822926163673401,
|
| 529 |
+
"num_tokens": 11142115.0,
|
| 530 |
+
"step": 2050
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.5441782039403915,
|
| 534 |
+
"epoch": 1.2104049574866695,
|
| 535 |
+
"grad_norm": 0.23305267095565796,
|
| 536 |
+
"learning_rate": 7.1144420440136945e-06,
|
| 537 |
+
"loss": 0.5608541870117187,
|
| 538 |
+
"mean_token_accuracy": 0.8806314519047738,
|
| 539 |
+
"num_tokens": 11414459.0,
|
| 540 |
+
"step": 2100
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.5373694878071547,
|
| 544 |
+
"epoch": 1.2392275544026516,
|
| 545 |
+
"grad_norm": 0.2710422873497009,
|
| 546 |
+
"learning_rate": 6.671452925969549e-06,
|
| 547 |
+
"loss": 0.5601076126098633,
|
| 548 |
+
"mean_token_accuracy": 0.8817597103118896,
|
| 549 |
+
"num_tokens": 11686439.0,
|
| 550 |
+
"step": 2150
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.5512064357846975,
|
| 554 |
+
"epoch": 1.2680501513186337,
|
| 555 |
+
"grad_norm": 0.24875891208648682,
|
| 556 |
+
"learning_rate": 6.2356941030600036e-06,
|
| 557 |
+
"loss": 0.572663803100586,
|
| 558 |
+
"mean_token_accuracy": 0.8795112228393555,
|
| 559 |
+
"num_tokens": 11959949.0,
|
| 560 |
+
"step": 2200
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"epoch": 1.2680501513186337,
|
| 564 |
+
"eval_entropy": 0.5157758243774113,
|
| 565 |
+
"eval_loss": 0.5222153663635254,
|
| 566 |
+
"eval_mean_token_accuracy": 0.8866087377071381,
|
| 567 |
+
"eval_num_tokens": 11959949.0,
|
| 568 |
+
"eval_runtime": 25.3435,
|
| 569 |
+
"eval_samples_per_second": 59.7,
|
| 570 |
+
"eval_steps_per_second": 7.497,
|
| 571 |
+
"step": 2200
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"entropy": 0.5333986005187035,
|
| 575 |
+
"epoch": 1.296872748234616,
|
| 576 |
+
"grad_norm": 0.2774944603443146,
|
| 577 |
+
"learning_rate": 5.808112133896682e-06,
|
| 578 |
+
"loss": 0.5507477569580078,
|
| 579 |
+
"mean_token_accuracy": 0.8833928933739662,
|
| 580 |
+
"num_tokens": 12230467.0,
|
| 581 |
+
"step": 2250
|
| 582 |
+
},
|
| 583 |
+
{
|
| 584 |
+
"entropy": 0.5385575620830059,
|
| 585 |
+
"epoch": 1.325695345150598,
|
| 586 |
+
"grad_norm": 0.24219754338264465,
|
| 587 |
+
"learning_rate": 5.38963581526766e-06,
|
| 588 |
+
"loss": 0.5618357849121094,
|
| 589 |
+
"mean_token_accuracy": 0.8824037438631058,
|
| 590 |
+
"num_tokens": 12500631.0,
|
| 591 |
+
"step": 2300
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"entropy": 0.5562852944433689,
|
| 595 |
+
"epoch": 1.3545179420665803,
|
| 596 |
+
"grad_norm": 0.23605461418628693,
|
| 597 |
+
"learning_rate": 4.981174164598023e-06,
|
| 598 |
+
"loss": 0.5740032577514649,
|
| 599 |
+
"mean_token_accuracy": 0.8787400788068771,
|
| 600 |
+
"num_tokens": 12773793.0,
|
| 601 |
+
"step": 2350
|
| 602 |
+
},
|
| 603 |
+
{
|
| 604 |
+
"entropy": 0.5452473207563162,
|
| 605 |
+
"epoch": 1.3833405389825624,
|
| 606 |
+
"grad_norm": 0.23601187765598297,
|
| 607 |
+
"learning_rate": 4.5836144453753595e-06,
|
| 608 |
+
"loss": 0.5657626724243164,
|
| 609 |
+
"mean_token_accuracy": 0.8807224997878075,
|
| 610 |
+
"num_tokens": 13046257.0,
|
| 611 |
+
"step": 2400
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 1.3833405389825624,
|
| 615 |
+
"eval_entropy": 0.5180542894884159,
|
| 616 |
+
"eval_loss": 0.5217919945716858,
|
| 617 |
+
"eval_mean_token_accuracy": 0.8867926757586629,
|
| 618 |
+
"eval_num_tokens": 13046257.0,
|
| 619 |
+
"eval_runtime": 25.2941,
|
| 620 |
+
"eval_samples_per_second": 59.816,
|
| 621 |
+
"eval_steps_per_second": 7.512,
|
| 622 |
+
"step": 2400
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"entropy": 0.5406669420003891,
|
| 626 |
+
"epoch": 1.4121631358985445,
|
| 627 |
+
"grad_norm": 0.27414751052856445,
|
| 628 |
+
"learning_rate": 4.197820239829295e-06,
|
| 629 |
+
"loss": 0.5581526184082031,
|
| 630 |
+
"mean_token_accuracy": 0.8821376091241837,
|
| 631 |
+
"num_tokens": 13318117.0,
|
| 632 |
+
"step": 2450
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"entropy": 0.5123971965163946,
|
| 636 |
+
"epoch": 1.4409857328145266,
|
| 637 |
+
"grad_norm": 0.27002713084220886,
|
| 638 |
+
"learning_rate": 3.8246295730516455e-06,
|
| 639 |
+
"loss": 0.5292396545410156,
|
| 640 |
+
"mean_token_accuracy": 0.8868949916958809,
|
| 641 |
+
"num_tokens": 13585112.0,
|
| 642 |
+
"step": 2500
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"entropy": 0.5250877778977155,
|
| 646 |
+
"epoch": 1.4698083297305087,
|
| 647 |
+
"grad_norm": 0.2513103187084198,
|
| 648 |
+
"learning_rate": 3.4648530926319634e-06,
|
| 649 |
+
"loss": 0.5443946075439453,
|
| 650 |
+
"mean_token_accuracy": 0.8851349979639054,
|
| 651 |
+
"num_tokens": 13854892.0,
|
| 652 |
+
"step": 2550
|
| 653 |
+
},
|
| 654 |
+
{
|
| 655 |
+
"entropy": 0.5314137779176236,
|
| 656 |
+
"epoch": 1.4986309266464908,
|
| 657 |
+
"grad_norm": 0.21981389820575714,
|
| 658 |
+
"learning_rate": 3.1192723077627163e-06,
|
| 659 |
+
"loss": 0.5500518798828125,
|
| 660 |
+
"mean_token_accuracy": 0.8838223886489868,
|
| 661 |
+
"num_tokens": 14126513.0,
|
| 662 |
+
"step": 2600
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.4986309266464908,
|
| 666 |
+
"eval_entropy": 0.5145505380473638,
|
| 667 |
+
"eval_loss": 0.5215311050415039,
|
| 668 |
+
"eval_mean_token_accuracy": 0.8864174689117231,
|
| 669 |
+
"eval_num_tokens": 14126513.0,
|
| 670 |
+
"eval_runtime": 25.2961,
|
| 671 |
+
"eval_samples_per_second": 59.812,
|
| 672 |
+
"eval_steps_per_second": 7.511,
|
| 673 |
+
"step": 2600
|
| 674 |
+
},
|
| 675 |
+
{
|
| 676 |
+
"entropy": 0.5299251443892717,
|
| 677 |
+
"epoch": 1.5274535235624729,
|
| 678 |
+
"grad_norm": 0.2680607736110687,
|
| 679 |
+
"learning_rate": 2.78863789163911e-06,
|
| 680 |
+
"loss": 0.5511317825317383,
|
| 681 |
+
"mean_token_accuracy": 0.8838860777020454,
|
| 682 |
+
"num_tokens": 14396535.0,
|
| 683 |
+
"step": 2650
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"entropy": 0.5394382092356682,
|
| 687 |
+
"epoch": 1.5562761204784552,
|
| 688 |
+
"grad_norm": 0.25587576627731323,
|
| 689 |
+
"learning_rate": 2.4736680508410902e-06,
|
| 690 |
+
"loss": 0.5560498809814454,
|
| 691 |
+
"mean_token_accuracy": 0.8820542943477631,
|
| 692 |
+
"num_tokens": 14666012.0,
|
| 693 |
+
"step": 2700
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"entropy": 0.5438171474635601,
|
| 697 |
+
"epoch": 1.585098717394437,
|
| 698 |
+
"grad_norm": 0.22950419783592224,
|
| 699 |
+
"learning_rate": 2.1750469652395777e-06,
|
| 700 |
+
"loss": 0.5646057891845703,
|
| 701 |
+
"mean_token_accuracy": 0.8806953200697899,
|
| 702 |
+
"num_tokens": 14938072.0,
|
| 703 |
+
"step": 2750
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"entropy": 0.5157144083827734,
|
| 707 |
+
"epoch": 1.6139213143104194,
|
| 708 |
+
"grad_norm": 0.23236404359340668,
|
| 709 |
+
"learning_rate": 1.8934233018157822e-06,
|
| 710 |
+
"loss": 0.5314432525634766,
|
| 711 |
+
"mean_token_accuracy": 0.8868013408780098,
|
| 712 |
+
"num_tokens": 15206239.0,
|
| 713 |
+
"step": 2800
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 1.6139213143104194,
|
| 717 |
+
"eval_entropy": 0.514612096783362,
|
| 718 |
+
"eval_loss": 0.5212787985801697,
|
| 719 |
+
"eval_mean_token_accuracy": 0.8865814996393103,
|
| 720 |
+
"eval_num_tokens": 15206239.0,
|
| 721 |
+
"eval_runtime": 25.284,
|
| 722 |
+
"eval_samples_per_second": 59.84,
|
| 723 |
+
"eval_steps_per_second": 7.515,
|
| 724 |
+
"step": 2800
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"entropy": 0.5607952538132668,
|
| 728 |
+
"epoch": 1.6427439112264015,
|
| 729 |
+
"grad_norm": 0.27139943838119507,
|
| 730 |
+
"learning_rate": 1.6294088056218705e-06,
|
| 731 |
+
"loss": 0.5802758026123047,
|
| 732 |
+
"mean_token_accuracy": 0.8771729645133018,
|
| 733 |
+
"num_tokens": 15479383.0,
|
| 734 |
+
"step": 2850
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"entropy": 0.5458529234677553,
|
| 738 |
+
"epoch": 1.6715665081423836,
|
| 739 |
+
"grad_norm": 0.22497807443141937,
|
| 740 |
+
"learning_rate": 1.3835769709437307e-06,
|
| 741 |
+
"loss": 0.5699198913574218,
|
| 742 |
+
"mean_token_accuracy": 0.8804216027259827,
|
| 743 |
+
"num_tokens": 15754571.0,
|
| 744 |
+
"step": 2900
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"entropy": 0.5275375150889158,
|
| 748 |
+
"epoch": 1.7003891050583657,
|
| 749 |
+
"grad_norm": 0.25096791982650757,
|
| 750 |
+
"learning_rate": 1.1564617955523716e-06,
|
| 751 |
+
"loss": 0.5493584060668946,
|
| 752 |
+
"mean_token_accuracy": 0.8840730246901513,
|
| 753 |
+
"num_tokens": 16024591.0,
|
| 754 |
+
"step": 2950
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"entropy": 0.529434435814619,
|
| 758 |
+
"epoch": 1.7292117019743478,
|
| 759 |
+
"grad_norm": 0.20803657174110413,
|
| 760 |
+
"learning_rate": 9.485566207498986e-07,
|
| 761 |
+
"loss": 0.552624740600586,
|
| 762 |
+
"mean_token_accuracy": 0.8842183569073677,
|
| 763 |
+
"num_tokens": 16291960.0,
|
| 764 |
+
"step": 3000
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"epoch": 1.7292117019743478,
|
| 768 |
+
"eval_entropy": 0.5173903987595909,
|
| 769 |
+
"eval_loss": 0.5210983753204346,
|
| 770 |
+
"eval_mean_token_accuracy": 0.8867466380721645,
|
| 771 |
+
"eval_num_tokens": 16291960.0,
|
| 772 |
+
"eval_runtime": 25.2973,
|
| 773 |
+
"eval_samples_per_second": 59.809,
|
| 774 |
+
"eval_steps_per_second": 7.511,
|
| 775 |
+
"step": 3000
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"entropy": 0.5379937102645636,
|
| 779 |
+
"epoch": 1.7580342988903301,
|
| 780 |
+
"grad_norm": 0.279082715511322,
|
| 781 |
+
"learning_rate": 7.603130597298147e-07,
|
| 782 |
+
"loss": 0.5518331146240234,
|
| 783 |
+
"mean_token_accuracy": 0.8835244515538215,
|
| 784 |
+
"num_tokens": 16562192.0,
|
| 785 |
+
"step": 3050
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"entropy": 0.5540396096557378,
|
| 789 |
+
"epoch": 1.786856895806312,
|
| 790 |
+
"grad_norm": 0.23533675074577332,
|
| 791 |
+
"learning_rate": 5.921400165794255e-07,
|
| 792 |
+
"loss": 0.5790340423583984,
|
| 793 |
+
"mean_token_accuracy": 0.8788801202178002,
|
| 794 |
+
"num_tokens": 16834646.0,
|
| 795 |
+
"step": 3100
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"entropy": 0.5152763035148382,
|
| 799 |
+
"epoch": 1.8156794927222943,
|
| 800 |
+
"grad_norm": 0.2803124487400055,
|
| 801 |
+
"learning_rate": 4.444027980552901e-07,
|
| 802 |
+
"loss": 0.5328571701049805,
|
| 803 |
+
"mean_token_accuracy": 0.8869862693548203,
|
| 804 |
+
"num_tokens": 17104758.0,
|
| 805 |
+
"step": 3150
|
| 806 |
+
},
|
| 807 |
+
{
|
| 808 |
+
"entropy": 0.5612848294526338,
|
| 809 |
+
"epoch": 1.8445020896382764,
|
| 810 |
+
"grad_norm": 0.26171237230300903,
|
| 811 |
+
"learning_rate": 3.1742232006111374e-07,
|
| 812 |
+
"loss": 0.5824931716918945,
|
| 813 |
+
"mean_token_accuracy": 0.8772889456152916,
|
| 814 |
+
"num_tokens": 17379954.0,
|
| 815 |
+
"step": 3200
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 1.8445020896382764,
|
| 819 |
+
"eval_entropy": 0.516960418381189,
|
| 820 |
+
"eval_loss": 0.5211681723594666,
|
| 821 |
+
"eval_mean_token_accuracy": 0.8866549037004772,
|
| 822 |
+
"eval_num_tokens": 17379954.0,
|
| 823 |
+
"eval_runtime": 25.3046,
|
| 824 |
+
"eval_samples_per_second": 59.791,
|
| 825 |
+
"eval_steps_per_second": 7.509,
|
| 826 |
+
"step": 3200
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"entropy": 0.5196366369724273,
|
| 830 |
+
"epoch": 1.8733246865542585,
|
| 831 |
+
"grad_norm": 0.6400351524353027,
|
| 832 |
+
"learning_rate": 2.1147441055180074e-07,
|
| 833 |
+
"loss": 0.5364640808105469,
|
| 834 |
+
"mean_token_accuracy": 0.8855624732375145,
|
| 835 |
+
"num_tokens": 17647943.0,
|
| 836 |
+
"step": 3250
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"entropy": 0.5125804611295461,
|
| 840 |
+
"epoch": 1.9021472834702406,
|
| 841 |
+
"grad_norm": 0.24278956651687622,
|
| 842 |
+
"learning_rate": 1.2678921037788118e-07,
|
| 843 |
+
"loss": 0.5320493316650391,
|
| 844 |
+
"mean_token_accuracy": 0.8888507178425789,
|
| 845 |
+
"num_tokens": 17914413.0,
|
| 846 |
+
"step": 3300
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"entropy": 0.5364588350057602,
|
| 850 |
+
"epoch": 1.9309698803862227,
|
| 851 |
+
"grad_norm": 0.2414465695619583,
|
| 852 |
+
"learning_rate": 6.355067337181497e-08,
|
| 853 |
+
"loss": 0.5448334121704101,
|
| 854 |
+
"mean_token_accuracy": 0.8835894984006881,
|
| 855 |
+
"num_tokens": 18184605.0,
|
| 856 |
+
"step": 3350
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"entropy": 0.5623560689389706,
|
| 860 |
+
"epoch": 1.959792477302205,
|
| 861 |
+
"grad_norm": 0.31695693731307983,
|
| 862 |
+
"learning_rate": 2.189616676208428e-08,
|
| 863 |
+
"loss": 0.5812443923950196,
|
| 864 |
+
"mean_token_accuracy": 0.877460196018219,
|
| 865 |
+
"num_tokens": 18459900.0,
|
| 866 |
+
"step": 3400
|
| 867 |
+
},
|
| 868 |
+
{
|
| 869 |
+
"epoch": 1.959792477302205,
|
| 870 |
+
"eval_entropy": 0.5174976312016186,
|
| 871 |
+
"eval_loss": 0.5211665630340576,
|
| 872 |
+
"eval_mean_token_accuracy": 0.8866490850323125,
|
| 873 |
+
"eval_num_tokens": 18459900.0,
|
| 874 |
+
"eval_runtime": 25.3065,
|
| 875 |
+
"eval_samples_per_second": 59.787,
|
| 876 |
+
"eval_steps_per_second": 7.508,
|
| 877 |
+
"step": 3400
|
| 878 |
+
},
|
| 879 |
+
{
|
| 880 |
+
"entropy": 0.5258527837693692,
|
| 881 |
+
"epoch": 1.988615074218187,
|
| 882 |
+
"grad_norm": 0.2398333102464676,
|
| 883 |
+
"learning_rate": 1.916172783061887e-09,
|
| 884 |
+
"loss": 0.5451886367797851,
|
| 885 |
+
"mean_token_accuracy": 0.8846419337391853,
|
| 886 |
+
"num_tokens": 18729680.0,
|
| 887 |
+
"step": 3450
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 2.0,
|
| 891 |
+
"eval_entropy": 0.5169560465373491,
|
| 892 |
+
"eval_loss": 0.5210279822349548,
|
| 893 |
+
"eval_mean_token_accuracy": 0.8867915294672314,
|
| 894 |
+
"eval_num_tokens": 18836626.0,
|
| 895 |
+
"eval_runtime": 25.327,
|
| 896 |
+
"eval_samples_per_second": 59.739,
|
| 897 |
+
"eval_steps_per_second": 7.502,
|
| 898 |
+
"step": 3470
|
| 899 |
+
}
|
| 900 |
+
],
|
| 901 |
+
"logging_steps": 50,
|
| 902 |
+
"max_steps": 3470,
|
| 903 |
+
"num_input_tokens_seen": 0,
|
| 904 |
+
"num_train_epochs": 2,
|
| 905 |
+
"save_steps": 200,
|
| 906 |
+
"stateful_callbacks": {
|
| 907 |
+
"TrainerControl": {
|
| 908 |
+
"args": {
|
| 909 |
+
"should_epoch_stop": false,
|
| 910 |
+
"should_evaluate": false,
|
| 911 |
+
"should_log": false,
|
| 912 |
+
"should_save": true,
|
| 913 |
+
"should_training_stop": true
|
| 914 |
+
},
|
| 915 |
+
"attributes": {}
|
| 916 |
+
}
|
| 917 |
+
},
|
| 918 |
+
"total_flos": 2.0420402599061914e+17,
|
| 919 |
+
"train_batch_size": 4,
|
| 920 |
+
"trial_name": null,
|
| 921 |
+
"trial_params": null
|
| 922 |
+
}
|
checkpoint-3470/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce31781cfdf69130f19fa349f51bdab1b5bc268c80263195e5581f6a46a289d7
|
| 3 |
+
size 5713
|
config.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
-
"bos_token_id":
|
| 8 |
"dtype": "bfloat16",
|
| 9 |
"eos_token_id": 151645,
|
| 10 |
"head_dim": 128,
|
|
@@ -48,7 +48,7 @@
|
|
| 48 |
"num_attention_heads": 16,
|
| 49 |
"num_hidden_layers": 28,
|
| 50 |
"num_key_value_heads": 8,
|
| 51 |
-
"pad_token_id":
|
| 52 |
"rms_norm_eps": 1e-06,
|
| 53 |
"rope_parameters": {
|
| 54 |
"rope_theta": 1000000,
|
|
@@ -57,7 +57,7 @@
|
|
| 57 |
"sliding_window": null,
|
| 58 |
"tie_word_embeddings": true,
|
| 59 |
"transformers_version": "5.7.0",
|
| 60 |
-
"use_cache":
|
| 61 |
"use_sliding_window": false,
|
| 62 |
"vocab_size": 151936
|
| 63 |
}
|
|
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": null,
|
| 8 |
"dtype": "bfloat16",
|
| 9 |
"eos_token_id": 151645,
|
| 10 |
"head_dim": 128,
|
|
|
|
| 48 |
"num_attention_heads": 16,
|
| 49 |
"num_hidden_layers": 28,
|
| 50 |
"num_key_value_heads": 8,
|
| 51 |
+
"pad_token_id": 151643,
|
| 52 |
"rms_norm_eps": 1e-06,
|
| 53 |
"rope_parameters": {
|
| 54 |
"rope_theta": 1000000,
|
|
|
|
| 57 |
"sliding_window": null,
|
| 58 |
"tie_word_embeddings": true,
|
| 59 |
"transformers_version": "5.7.0",
|
| 60 |
+
"use_cache": false,
|
| 61 |
"use_sliding_window": false,
|
| 62 |
"vocab_size": 151936
|
| 63 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 3441185608
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7efa4a1e4882e95c953593dd50efe8d955e112437c4bd50e457698a2874896d
|
| 3 |
size 3441185608
|