Instructions to use Gege24/test_goof_intercode_gg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/test_goof_intercode_gg with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Jordansky/augmented-f560e4e6ee71e78d") model = PeftModel.from_pretrained(base_model, "Gege24/test_goof_intercode_gg") - Transformers
How to use Gege24/test_goof_intercode_gg with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/test_goof_intercode_gg") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Gege24/test_goof_intercode_gg", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/test_goof_intercode_gg with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/test_goof_intercode_gg" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/test_goof_intercode_gg", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/test_goof_intercode_gg
- SGLang
How to use Gege24/test_goof_intercode_gg 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 "Gege24/test_goof_intercode_gg" \ --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": "Gege24/test_goof_intercode_gg", "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 "Gege24/test_goof_intercode_gg" \ --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": "Gege24/test_goof_intercode_gg", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/test_goof_intercode_gg with Docker Model Runner:
docker model run hf.co/Gege24/test_goof_intercode_gg
Upload task output goof-intercode
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +28 -0
- chat_template.jinja +61 -0
- loss.txt +1 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +239 -0
- trainer_state.json +1438 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Jordansky/augmented-f560e4e6ee71e78d
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Jordansky--augmented-f560e4e6ee71e78d
|
| 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.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Jordansky/augmented-f560e4e6ee71e78d",
|
| 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": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 128,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"gate_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"q_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b4b3091b6ccfa96b03bf8f0e06ae4616fe4e7b52fe087299d246cf5f418ebc2
|
| 3 |
+
size 1057033224
|
added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- for message in messages %}
|
| 18 |
+
{%- if message.content is string %}
|
| 19 |
+
{%- set content = message.content %}
|
| 20 |
+
{%- else %}
|
| 21 |
+
{%- set content = '' %}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 24 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 25 |
+
{%- elif message.role == "assistant" %}
|
| 26 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 27 |
+
{%- if message.tool_calls %}
|
| 28 |
+
{%- for tool_call in message.tool_calls %}
|
| 29 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 30 |
+
{{- '\n' }}
|
| 31 |
+
{%- endif %}
|
| 32 |
+
{%- if tool_call.function %}
|
| 33 |
+
{%- set tool_call = tool_call.function %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 36 |
+
{{- tool_call.name }}
|
| 37 |
+
{{- '", "arguments": ' }}
|
| 38 |
+
{%- if tool_call.arguments is string %}
|
| 39 |
+
{{- tool_call.arguments }}
|
| 40 |
+
{%- else %}
|
| 41 |
+
{{- tool_call.arguments | tojson }}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{{- '}\n</tool_call>' }}
|
| 44 |
+
{%- endfor %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{{- '<|im_end|>\n' }}
|
| 47 |
+
{%- elif message.role == "tool" %}
|
| 48 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 49 |
+
{{- '<|im_start|>user' }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{{- '\n<tool_response>\n' }}
|
| 52 |
+
{{- content }}
|
| 53 |
+
{{- '\n</tool_response>' }}
|
| 54 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 55 |
+
{{- '<|im_end|>\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- endfor %}
|
| 59 |
+
{%- if add_generation_prompt %}
|
| 60 |
+
{{- '<|im_start|>assistant\n' }}
|
| 61 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
783,no_eval
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 1010000,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1438 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.47512135922330095,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 783,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.003033980582524272,
|
| 14 |
+
"grad_norm": 12.881993293762207,
|
| 15 |
+
"learning_rate": 1.7209638554216869e-06,
|
| 16 |
+
"loss": 1.8952,
|
| 17 |
+
"mean_token_accuracy": 0.6737864851951599,
|
| 18 |
+
"num_tokens": 407386.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.006067961165048544,
|
| 23 |
+
"grad_norm": 5.927900791168213,
|
| 24 |
+
"learning_rate": 3.872168674698796e-06,
|
| 25 |
+
"loss": 1.7501,
|
| 26 |
+
"mean_token_accuracy": 0.6814195275306701,
|
| 27 |
+
"num_tokens": 814608.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.009101941747572815,
|
| 32 |
+
"grad_norm": 3.0456957817077637,
|
| 33 |
+
"learning_rate": 6.023373493975903e-06,
|
| 34 |
+
"loss": 1.4337,
|
| 35 |
+
"mean_token_accuracy": 0.704640793800354,
|
| 36 |
+
"num_tokens": 1221103.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.012135922330097087,
|
| 41 |
+
"grad_norm": 2.4085395336151123,
|
| 42 |
+
"learning_rate": 8.174578313253012e-06,
|
| 43 |
+
"loss": 1.0971,
|
| 44 |
+
"mean_token_accuracy": 0.7540878534317017,
|
| 45 |
+
"num_tokens": 1628633.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.01516990291262136,
|
| 50 |
+
"grad_norm": 3.0483357906341553,
|
| 51 |
+
"learning_rate": 1.0325783132530121e-05,
|
| 52 |
+
"loss": 0.7505,
|
| 53 |
+
"mean_token_accuracy": 0.8266023993492126,
|
| 54 |
+
"num_tokens": 2035802.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.01820388349514563,
|
| 59 |
+
"grad_norm": 2.5269112586975098,
|
| 60 |
+
"learning_rate": 1.247698795180723e-05,
|
| 61 |
+
"loss": 0.413,
|
| 62 |
+
"mean_token_accuracy": 0.8993165135383606,
|
| 63 |
+
"num_tokens": 2442910.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.021237864077669904,
|
| 68 |
+
"grad_norm": 0.5028864741325378,
|
| 69 |
+
"learning_rate": 1.4628192771084337e-05,
|
| 70 |
+
"loss": 0.1641,
|
| 71 |
+
"mean_token_accuracy": 0.9638293981552124,
|
| 72 |
+
"num_tokens": 2849002.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.024271844660194174,
|
| 77 |
+
"grad_norm": 0.32503458857536316,
|
| 78 |
+
"learning_rate": 1.6779397590361448e-05,
|
| 79 |
+
"loss": 0.0904,
|
| 80 |
+
"mean_token_accuracy": 0.9782682418823242,
|
| 81 |
+
"num_tokens": 3256206.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.027305825242718445,
|
| 86 |
+
"grad_norm": 0.3155650794506073,
|
| 87 |
+
"learning_rate": 1.8930602409638557e-05,
|
| 88 |
+
"loss": 0.0543,
|
| 89 |
+
"mean_token_accuracy": 0.986135733127594,
|
| 90 |
+
"num_tokens": 3663246.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.03033980582524272,
|
| 95 |
+
"grad_norm": 0.18562550842761993,
|
| 96 |
+
"learning_rate": 2.1081807228915663e-05,
|
| 97 |
+
"loss": 0.0373,
|
| 98 |
+
"mean_token_accuracy": 0.9897839546203613,
|
| 99 |
+
"num_tokens": 4069706.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.03337378640776699,
|
| 104 |
+
"grad_norm": 0.120665542781353,
|
| 105 |
+
"learning_rate": 2.3233012048192772e-05,
|
| 106 |
+
"loss": 0.028,
|
| 107 |
+
"mean_token_accuracy": 0.9917330026626587,
|
| 108 |
+
"num_tokens": 4476831.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.03640776699029126,
|
| 113 |
+
"grad_norm": 0.08647274225950241,
|
| 114 |
+
"learning_rate": 2.538421686746988e-05,
|
| 115 |
+
"loss": 0.0246,
|
| 116 |
+
"mean_token_accuracy": 0.9926599621772766,
|
| 117 |
+
"num_tokens": 4883779.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.03944174757281554,
|
| 122 |
+
"grad_norm": 0.07028564810752869,
|
| 123 |
+
"learning_rate": 2.753542168674699e-05,
|
| 124 |
+
"loss": 0.0242,
|
| 125 |
+
"mean_token_accuracy": 0.9927438616752624,
|
| 126 |
+
"num_tokens": 5290679.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.04247572815533981,
|
| 131 |
+
"grad_norm": 0.10383659601211548,
|
| 132 |
+
"learning_rate": 2.96866265060241e-05,
|
| 133 |
+
"loss": 0.0237,
|
| 134 |
+
"mean_token_accuracy": 0.992747163772583,
|
| 135 |
+
"num_tokens": 5697620.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.04550970873786408,
|
| 140 |
+
"grad_norm": 0.09976121038198471,
|
| 141 |
+
"learning_rate": 3.183783132530121e-05,
|
| 142 |
+
"loss": 0.0278,
|
| 143 |
+
"mean_token_accuracy": 0.991703736782074,
|
| 144 |
+
"num_tokens": 6104413.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.04854368932038835,
|
| 149 |
+
"grad_norm": 0.06832871586084366,
|
| 150 |
+
"learning_rate": 3.3989036144578313e-05,
|
| 151 |
+
"loss": 0.0243,
|
| 152 |
+
"mean_token_accuracy": 0.992477285861969,
|
| 153 |
+
"num_tokens": 6510558.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.05157766990291262,
|
| 158 |
+
"grad_norm": 0.06535604596138,
|
| 159 |
+
"learning_rate": 3.570997301875174e-05,
|
| 160 |
+
"loss": 0.0248,
|
| 161 |
+
"mean_token_accuracy": 0.9922604560852051,
|
| 162 |
+
"num_tokens": 6917082.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.05461165048543689,
|
| 167 |
+
"grad_norm": 0.10271787643432617,
|
| 168 |
+
"learning_rate": 3.570902868647871e-05,
|
| 169 |
+
"loss": 0.0224,
|
| 170 |
+
"mean_token_accuracy": 0.9928990721702575,
|
| 171 |
+
"num_tokens": 7324254.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.05764563106796117,
|
| 176 |
+
"grad_norm": 0.10438171029090881,
|
| 177 |
+
"learning_rate": 3.5706735400516436e-05,
|
| 178 |
+
"loss": 0.0243,
|
| 179 |
+
"mean_token_accuracy": 0.9923665881156921,
|
| 180 |
+
"num_tokens": 7731206.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.06067961165048544,
|
| 185 |
+
"grad_norm": 0.04581941291689873,
|
| 186 |
+
"learning_rate": 3.570309339189348e-05,
|
| 187 |
+
"loss": 0.0224,
|
| 188 |
+
"mean_token_accuracy": 0.9928493976593018,
|
| 189 |
+
"num_tokens": 8137840.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.06371359223300971,
|
| 194 |
+
"grad_norm": 0.05334591865539551,
|
| 195 |
+
"learning_rate": 3.569810302751041e-05,
|
| 196 |
+
"loss": 0.0248,
|
| 197 |
+
"mean_token_accuracy": 0.9923072218894958,
|
| 198 |
+
"num_tokens": 8544534.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.06674757281553398,
|
| 203 |
+
"grad_norm": 0.052358437329530716,
|
| 204 |
+
"learning_rate": 3.569176481010288e-05,
|
| 205 |
+
"loss": 0.0239,
|
| 206 |
+
"mean_token_accuracy": 0.9925079822540284,
|
| 207 |
+
"num_tokens": 8951215.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.06978155339805825,
|
| 212 |
+
"grad_norm": 0.08001242578029633,
|
| 213 |
+
"learning_rate": 3.568407937819095e-05,
|
| 214 |
+
"loss": 0.0264,
|
| 215 |
+
"mean_token_accuracy": 0.9917665481567383,
|
| 216 |
+
"num_tokens": 9357839.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.07281553398058252,
|
| 221 |
+
"grad_norm": 0.05479741096496582,
|
| 222 |
+
"learning_rate": 3.5675047506014815e-05,
|
| 223 |
+
"loss": 0.0242,
|
| 224 |
+
"mean_token_accuracy": 0.9923253774642944,
|
| 225 |
+
"num_tokens": 9764643.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.07584951456310679,
|
| 230 |
+
"grad_norm": 0.05963903293013573,
|
| 231 |
+
"learning_rate": 3.566467010345674e-05,
|
| 232 |
+
"loss": 0.0231,
|
| 233 |
+
"mean_token_accuracy": 0.9926764607429505,
|
| 234 |
+
"num_tokens": 10170675.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.07888349514563107,
|
| 239 |
+
"grad_norm": 0.057525910437107086,
|
| 240 |
+
"learning_rate": 3.5652948215949454e-05,
|
| 241 |
+
"loss": 0.0223,
|
| 242 |
+
"mean_token_accuracy": 0.9926943898200988,
|
| 243 |
+
"num_tokens": 10577296.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.08191747572815535,
|
| 248 |
+
"grad_norm": 0.059444062411785126,
|
| 249 |
+
"learning_rate": 3.56398830243708e-05,
|
| 250 |
+
"loss": 0.0228,
|
| 251 |
+
"mean_token_accuracy": 0.9926655173301697,
|
| 252 |
+
"num_tokens": 10983842.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.08495145631067962,
|
| 257 |
+
"grad_norm": 0.10497656464576721,
|
| 258 |
+
"learning_rate": 3.562547584492477e-05,
|
| 259 |
+
"loss": 0.021,
|
| 260 |
+
"mean_token_accuracy": 0.9932034730911254,
|
| 261 |
+
"num_tokens": 11391523.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.08798543689320389,
|
| 266 |
+
"grad_norm": 0.04242556169629097,
|
| 267 |
+
"learning_rate": 3.5609728129008934e-05,
|
| 268 |
+
"loss": 0.0212,
|
| 269 |
+
"mean_token_accuracy": 0.9929630875587463,
|
| 270 |
+
"num_tokens": 11798319.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.09101941747572816,
|
| 275 |
+
"grad_norm": 0.03587333485484123,
|
| 276 |
+
"learning_rate": 3.5592641463068204e-05,
|
| 277 |
+
"loss": 0.0214,
|
| 278 |
+
"mean_token_accuracy": 0.9929973602294921,
|
| 279 |
+
"num_tokens": 12204367.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.09405339805825243,
|
| 284 |
+
"grad_norm": 0.03362417593598366,
|
| 285 |
+
"learning_rate": 3.557421756843501e-05,
|
| 286 |
+
"loss": 0.022,
|
| 287 |
+
"mean_token_accuracy": 0.9928773045539856,
|
| 288 |
+
"num_tokens": 12611691.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.0970873786407767,
|
| 293 |
+
"grad_norm": 0.05092537775635719,
|
| 294 |
+
"learning_rate": 3.555445830115592e-05,
|
| 295 |
+
"loss": 0.019,
|
| 296 |
+
"mean_token_accuracy": 0.9936353206634522,
|
| 297 |
+
"num_tokens": 13019316.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.10012135922330097,
|
| 302 |
+
"grad_norm": 0.051133450120687485,
|
| 303 |
+
"learning_rate": 3.5533365651804625e-05,
|
| 304 |
+
"loss": 0.0231,
|
| 305 |
+
"mean_token_accuracy": 0.9924604773521424,
|
| 306 |
+
"num_tokens": 13426273.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.10315533980582524,
|
| 311 |
+
"grad_norm": 0.0654042586684227,
|
| 312 |
+
"learning_rate": 3.5510941745281405e-05,
|
| 313 |
+
"loss": 0.0234,
|
| 314 |
+
"mean_token_accuracy": 0.9927022099494934,
|
| 315 |
+
"num_tokens": 13832090.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.10618932038834951,
|
| 320 |
+
"grad_norm": 0.05316481739282608,
|
| 321 |
+
"learning_rate": 3.548718884059912e-05,
|
| 322 |
+
"loss": 0.0173,
|
| 323 |
+
"mean_token_accuracy": 0.9940166115760803,
|
| 324 |
+
"num_tokens": 14239146.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.10922330097087378,
|
| 329 |
+
"grad_norm": 0.0432591438293457,
|
| 330 |
+
"learning_rate": 3.5462109330655545e-05,
|
| 331 |
+
"loss": 0.0226,
|
| 332 |
+
"mean_token_accuracy": 0.9927533149719239,
|
| 333 |
+
"num_tokens": 14645842.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.11225728155339806,
|
| 338 |
+
"grad_norm": 0.040612801909446716,
|
| 339 |
+
"learning_rate": 3.5435705741992395e-05,
|
| 340 |
+
"loss": 0.0228,
|
| 341 |
+
"mean_token_accuracy": 0.9925273418426513,
|
| 342 |
+
"num_tokens": 15052978.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.11529126213592233,
|
| 347 |
+
"grad_norm": 0.03967801108956337,
|
| 348 |
+
"learning_rate": 3.540798073454075e-05,
|
| 349 |
+
"loss": 0.0215,
|
| 350 |
+
"mean_token_accuracy": 0.9930168747901916,
|
| 351 |
+
"num_tokens": 15459755.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.1183252427184466,
|
| 356 |
+
"grad_norm": 0.06023363396525383,
|
| 357 |
+
"learning_rate": 3.5378937101353065e-05,
|
| 358 |
+
"loss": 0.0227,
|
| 359 |
+
"mean_token_accuracy": 0.9926756858825684,
|
| 360 |
+
"num_tokens": 15866485.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.12135922330097088,
|
| 365 |
+
"grad_norm": 0.028881069272756577,
|
| 366 |
+
"learning_rate": 3.534857776832187e-05,
|
| 367 |
+
"loss": 0.0194,
|
| 368 |
+
"mean_token_accuracy": 0.9934703350067139,
|
| 369 |
+
"num_tokens": 16274029.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.12439320388349515,
|
| 374 |
+
"grad_norm": 0.04172505810856819,
|
| 375 |
+
"learning_rate": 3.5316905793884944e-05,
|
| 376 |
+
"loss": 0.0217,
|
| 377 |
+
"mean_token_accuracy": 0.9927970051765442,
|
| 378 |
+
"num_tokens": 16681849.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.12742718446601942,
|
| 383 |
+
"grad_norm": 0.047556426376104355,
|
| 384 |
+
"learning_rate": 3.528392436871724e-05,
|
| 385 |
+
"loss": 0.0213,
|
| 386 |
+
"mean_token_accuracy": 0.992992353439331,
|
| 387 |
+
"num_tokens": 17089757.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.1304611650485437,
|
| 392 |
+
"grad_norm": 0.053197335451841354,
|
| 393 |
+
"learning_rate": 3.5249636815409434e-05,
|
| 394 |
+
"loss": 0.0233,
|
| 395 |
+
"mean_token_accuracy": 0.9926238298416138,
|
| 396 |
+
"num_tokens": 17496241.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.13349514563106796,
|
| 401 |
+
"grad_norm": 0.040444646030664444,
|
| 402 |
+
"learning_rate": 3.5214046588133205e-05,
|
| 403 |
+
"loss": 0.0242,
|
| 404 |
+
"mean_token_accuracy": 0.992365038394928,
|
| 405 |
+
"num_tokens": 17902466.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.13652912621359223,
|
| 410 |
+
"grad_norm": 0.07247660309076309,
|
| 411 |
+
"learning_rate": 3.5177157272293284e-05,
|
| 412 |
+
"loss": 0.0217,
|
| 413 |
+
"mean_token_accuracy": 0.9929222345352173,
|
| 414 |
+
"num_tokens": 18308520.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.1395631067961165,
|
| 419 |
+
"grad_norm": 0.3286735713481903,
|
| 420 |
+
"learning_rate": 3.513897258416623e-05,
|
| 421 |
+
"loss": 0.0211,
|
| 422 |
+
"mean_token_accuracy": 0.9928990960121155,
|
| 423 |
+
"num_tokens": 18715808.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.14259708737864077,
|
| 428 |
+
"grad_norm": 1.6682692766189575,
|
| 429 |
+
"learning_rate": 3.509949637052602e-05,
|
| 430 |
+
"loss": 0.0204,
|
| 431 |
+
"mean_token_accuracy": 0.9931188821792603,
|
| 432 |
+
"num_tokens": 19122927.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.14563106796116504,
|
| 437 |
+
"grad_norm": 0.3066796362400055,
|
| 438 |
+
"learning_rate": 3.505873260825659e-05,
|
| 439 |
+
"loss": 0.0223,
|
| 440 |
+
"mean_token_accuracy": 0.9929746747016907,
|
| 441 |
+
"num_tokens": 19530080.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.1486650485436893,
|
| 446 |
+
"grad_norm": 0.09548434615135193,
|
| 447 |
+
"learning_rate": 3.5016685403951156e-05,
|
| 448 |
+
"loss": 0.0215,
|
| 449 |
+
"mean_token_accuracy": 0.9930257797241211,
|
| 450 |
+
"num_tokens": 19936885.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.15169902912621358,
|
| 455 |
+
"grad_norm": 0.04770074412226677,
|
| 456 |
+
"learning_rate": 3.4973358993498494e-05,
|
| 457 |
+
"loss": 0.0206,
|
| 458 |
+
"mean_token_accuracy": 0.993126392364502,
|
| 459 |
+
"num_tokens": 20342832.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.15473300970873785,
|
| 464 |
+
"grad_norm": 0.07485935091972351,
|
| 465 |
+
"learning_rate": 3.492875774165625e-05,
|
| 466 |
+
"loss": 0.0232,
|
| 467 |
+
"mean_token_accuracy": 0.9926700353622436,
|
| 468 |
+
"num_tokens": 20748938.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.15776699029126215,
|
| 473 |
+
"grad_norm": 0.04704100638628006,
|
| 474 |
+
"learning_rate": 3.48828861416112e-05,
|
| 475 |
+
"loss": 0.0203,
|
| 476 |
+
"mean_token_accuracy": 0.9931455612182617,
|
| 477 |
+
"num_tokens": 21156249.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.16080097087378642,
|
| 482 |
+
"grad_norm": 0.04121704027056694,
|
| 483 |
+
"learning_rate": 3.4835748814526635e-05,
|
| 484 |
+
"loss": 0.0231,
|
| 485 |
+
"mean_token_accuracy": 0.9925450682640076,
|
| 486 |
+
"num_tokens": 21562911.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.1638349514563107,
|
| 491 |
+
"grad_norm": 0.28638556599617004,
|
| 492 |
+
"learning_rate": 3.478735050907677e-05,
|
| 493 |
+
"loss": 0.0212,
|
| 494 |
+
"mean_token_accuracy": 0.9931713461875915,
|
| 495 |
+
"num_tokens": 21968979.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.16686893203883496,
|
| 500 |
+
"grad_norm": 0.12565217912197113,
|
| 501 |
+
"learning_rate": 3.473769610096839e-05,
|
| 502 |
+
"loss": 0.0254,
|
| 503 |
+
"mean_token_accuracy": 0.9920137882232666,
|
| 504 |
+
"num_tokens": 22375386.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.16990291262135923,
|
| 509 |
+
"grad_norm": 0.22467869520187378,
|
| 510 |
+
"learning_rate": 3.468679059244967e-05,
|
| 511 |
+
"loss": 0.022,
|
| 512 |
+
"mean_token_accuracy": 0.9929057478904724,
|
| 513 |
+
"num_tokens": 22782306.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.1729368932038835,
|
| 518 |
+
"grad_norm": 0.0678594633936882,
|
| 519 |
+
"learning_rate": 3.463463911180622e-05,
|
| 520 |
+
"loss": 0.023,
|
| 521 |
+
"mean_token_accuracy": 0.9927614450454711,
|
| 522 |
+
"num_tokens": 23188938.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.17597087378640777,
|
| 527 |
+
"grad_norm": 0.05392945557832718,
|
| 528 |
+
"learning_rate": 3.458124691284445e-05,
|
| 529 |
+
"loss": 0.0205,
|
| 530 |
+
"mean_token_accuracy": 0.9933057188987732,
|
| 531 |
+
"num_tokens": 23595074.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.17900485436893204,
|
| 536 |
+
"grad_norm": 0.058865759521722794,
|
| 537 |
+
"learning_rate": 3.452661937436235e-05,
|
| 538 |
+
"loss": 0.0216,
|
| 539 |
+
"mean_token_accuracy": 0.9929778814315796,
|
| 540 |
+
"num_tokens": 24001568.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.1820388349514563,
|
| 545 |
+
"grad_norm": 0.05121828243136406,
|
| 546 |
+
"learning_rate": 3.447076199960755e-05,
|
| 547 |
+
"loss": 0.0223,
|
| 548 |
+
"mean_token_accuracy": 0.9928174257278443,
|
| 549 |
+
"num_tokens": 24407977.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.18507281553398058,
|
| 554 |
+
"grad_norm": 0.046074215322732925,
|
| 555 |
+
"learning_rate": 3.4413680415722955e-05,
|
| 556 |
+
"loss": 0.0211,
|
| 557 |
+
"mean_token_accuracy": 0.9932069063186646,
|
| 558 |
+
"num_tokens": 24813624.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.18810679611650485,
|
| 563 |
+
"grad_norm": 0.03264041990041733,
|
| 564 |
+
"learning_rate": 3.435538037317986e-05,
|
| 565 |
+
"loss": 0.0204,
|
| 566 |
+
"mean_token_accuracy": 0.9931853413581848,
|
| 567 |
+
"num_tokens": 25219688.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.19114077669902912,
|
| 572 |
+
"grad_norm": 0.03584812954068184,
|
| 573 |
+
"learning_rate": 3.429586774519863e-05,
|
| 574 |
+
"loss": 0.02,
|
| 575 |
+
"mean_token_accuracy": 0.9934399485588074,
|
| 576 |
+
"num_tokens": 25626392.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.1941747572815534,
|
| 581 |
+
"grad_norm": 0.03796568140387535,
|
| 582 |
+
"learning_rate": 3.423514852715701e-05,
|
| 583 |
+
"loss": 0.0198,
|
| 584 |
+
"mean_token_accuracy": 0.9932878255844116,
|
| 585 |
+
"num_tokens": 26033554.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.19720873786407767,
|
| 590 |
+
"grad_norm": 0.030003419145941734,
|
| 591 |
+
"learning_rate": 3.417322883598621e-05,
|
| 592 |
+
"loss": 0.0183,
|
| 593 |
+
"mean_token_accuracy": 0.9937293291091919,
|
| 594 |
+
"num_tokens": 26439949.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.20024271844660194,
|
| 599 |
+
"grad_norm": 0.03972536325454712,
|
| 600 |
+
"learning_rate": 3.411011490955457e-05,
|
| 601 |
+
"loss": 0.0215,
|
| 602 |
+
"mean_token_accuracy": 0.9929001450538635,
|
| 603 |
+
"num_tokens": 26847039.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.2032766990291262,
|
| 608 |
+
"grad_norm": 0.04523684084415436,
|
| 609 |
+
"learning_rate": 3.4045813106039256e-05,
|
| 610 |
+
"loss": 0.0211,
|
| 611 |
+
"mean_token_accuracy": 0.9929434895515442,
|
| 612 |
+
"num_tokens": 27253524.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.20631067961165048,
|
| 617 |
+
"grad_norm": 0.05554588511586189,
|
| 618 |
+
"learning_rate": 3.398032990328565e-05,
|
| 619 |
+
"loss": 0.0198,
|
| 620 |
+
"mean_token_accuracy": 0.9933468461036682,
|
| 621 |
+
"num_tokens": 27660579.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.20934466019417475,
|
| 626 |
+
"grad_norm": 0.0418703593313694,
|
| 627 |
+
"learning_rate": 3.3913671898154795e-05,
|
| 628 |
+
"loss": 0.0254,
|
| 629 |
+
"mean_token_accuracy": 0.9919080615043641,
|
| 630 |
+
"num_tokens": 28066764.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.21237864077669902,
|
| 635 |
+
"grad_norm": 0.03904140740633011,
|
| 636 |
+
"learning_rate": 3.384584580585883e-05,
|
| 637 |
+
"loss": 0.0222,
|
| 638 |
+
"mean_token_accuracy": 0.9925149798393249,
|
| 639 |
+
"num_tokens": 28474314.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.2154126213592233,
|
| 644 |
+
"grad_norm": 0.036088310182094574,
|
| 645 |
+
"learning_rate": 3.377685845928448e-05,
|
| 646 |
+
"loss": 0.0208,
|
| 647 |
+
"mean_token_accuracy": 0.9931179046630859,
|
| 648 |
+
"num_tokens": 28881394.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.21844660194174756,
|
| 653 |
+
"grad_norm": 0.04056026414036751,
|
| 654 |
+
"learning_rate": 3.370671680830471e-05,
|
| 655 |
+
"loss": 0.0218,
|
| 656 |
+
"mean_token_accuracy": 0.992766273021698,
|
| 657 |
+
"num_tokens": 29287460.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.22148058252427186,
|
| 662 |
+
"grad_norm": 0.0464637354016304,
|
| 663 |
+
"learning_rate": 3.363542791907854e-05,
|
| 664 |
+
"loss": 0.0197,
|
| 665 |
+
"mean_token_accuracy": 0.993265700340271,
|
| 666 |
+
"num_tokens": 29694534.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.22451456310679613,
|
| 671 |
+
"grad_norm": 0.036997150629758835,
|
| 672 |
+
"learning_rate": 3.356299897333927e-05,
|
| 673 |
+
"loss": 0.0219,
|
| 674 |
+
"mean_token_accuracy": 0.9928918242454529,
|
| 675 |
+
"num_tokens": 30101092.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.2275485436893204,
|
| 680 |
+
"grad_norm": 0.04870880767703056,
|
| 681 |
+
"learning_rate": 3.348943726767093e-05,
|
| 682 |
+
"loss": 0.0204,
|
| 683 |
+
"mean_token_accuracy": 0.9932775974273682,
|
| 684 |
+
"num_tokens": 30507917.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.23058252427184467,
|
| 689 |
+
"grad_norm": 0.07872658967971802,
|
| 690 |
+
"learning_rate": 3.3414750212773206e-05,
|
| 691 |
+
"loss": 0.02,
|
| 692 |
+
"mean_token_accuracy": 0.9932668089866639,
|
| 693 |
+
"num_tokens": 30914865.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.23361650485436894,
|
| 698 |
+
"grad_norm": 0.03615431487560272,
|
| 699 |
+
"learning_rate": 3.333894533271491e-05,
|
| 700 |
+
"loss": 0.0193,
|
| 701 |
+
"mean_token_accuracy": 0.9935308218002319,
|
| 702 |
+
"num_tokens": 31321893.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.2366504854368932,
|
| 707 |
+
"grad_norm": 0.033446334302425385,
|
| 708 |
+
"learning_rate": 3.326203026417599e-05,
|
| 709 |
+
"loss": 0.0199,
|
| 710 |
+
"mean_token_accuracy": 0.9932949662208557,
|
| 711 |
+
"num_tokens": 31729278.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.23968446601941748,
|
| 716 |
+
"grad_norm": 0.03931819647550583,
|
| 717 |
+
"learning_rate": 3.3184012755678186e-05,
|
| 718 |
+
"loss": 0.0199,
|
| 719 |
+
"mean_token_accuracy": 0.9932982683181762,
|
| 720 |
+
"num_tokens": 32135795.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.24271844660194175,
|
| 725 |
+
"grad_norm": 0.036338433623313904,
|
| 726 |
+
"learning_rate": 3.310490066680442e-05,
|
| 727 |
+
"loss": 0.0238,
|
| 728 |
+
"mean_token_accuracy": 0.9924678921699523,
|
| 729 |
+
"num_tokens": 32542773.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.24575242718446602,
|
| 734 |
+
"grad_norm": 0.033566638827323914,
|
| 735 |
+
"learning_rate": 3.302470196740707e-05,
|
| 736 |
+
"loss": 0.0192,
|
| 737 |
+
"mean_token_accuracy": 0.9934674024581909,
|
| 738 |
+
"num_tokens": 32949527.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.2487864077669903,
|
| 743 |
+
"grad_norm": 0.044052544981241226,
|
| 744 |
+
"learning_rate": 3.2943424736805e-05,
|
| 745 |
+
"loss": 0.0208,
|
| 746 |
+
"mean_token_accuracy": 0.9930399060249329,
|
| 747 |
+
"num_tokens": 33356981.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.2518203883495146,
|
| 752 |
+
"grad_norm": 0.0594814233481884,
|
| 753 |
+
"learning_rate": 3.28610771629697e-05,
|
| 754 |
+
"loss": 0.0193,
|
| 755 |
+
"mean_token_accuracy": 0.9934720158576965,
|
| 756 |
+
"num_tokens": 33763975.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.25485436893203883,
|
| 761 |
+
"grad_norm": 0.06194014474749565,
|
| 762 |
+
"learning_rate": 3.2777667541700405e-05,
|
| 763 |
+
"loss": 0.0204,
|
| 764 |
+
"mean_token_accuracy": 0.9930955171585083,
|
| 765 |
+
"num_tokens": 34171521.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.25788834951456313,
|
| 770 |
+
"grad_norm": 0.03647923097014427,
|
| 771 |
+
"learning_rate": 3.269320427578833e-05,
|
| 772 |
+
"loss": 0.0217,
|
| 773 |
+
"mean_token_accuracy": 0.9928809881210328,
|
| 774 |
+
"num_tokens": 34578265.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.2609223300970874,
|
| 779 |
+
"grad_norm": 0.06534451991319656,
|
| 780 |
+
"learning_rate": 3.260769587417021e-05,
|
| 781 |
+
"loss": 0.0203,
|
| 782 |
+
"mean_token_accuracy": 0.9933925867080688,
|
| 783 |
+
"num_tokens": 34984780.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.26395631067961167,
|
| 788 |
+
"grad_norm": 0.03720612823963165,
|
| 789 |
+
"learning_rate": 3.252115095107108e-05,
|
| 790 |
+
"loss": 0.0222,
|
| 791 |
+
"mean_token_accuracy": 0.9927129507064819,
|
| 792 |
+
"num_tokens": 35390481.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.2669902912621359,
|
| 797 |
+
"grad_norm": 0.052582353353500366,
|
| 798 |
+
"learning_rate": 3.243357822513647e-05,
|
| 799 |
+
"loss": 0.0206,
|
| 800 |
+
"mean_token_accuracy": 0.9931320190429688,
|
| 801 |
+
"num_tokens": 35797895.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.2700242718446602,
|
| 806 |
+
"grad_norm": 0.035469647496938705,
|
| 807 |
+
"learning_rate": 3.234498651855404e-05,
|
| 808 |
+
"loss": 0.0227,
|
| 809 |
+
"mean_token_accuracy": 0.9924560546875,
|
| 810 |
+
"num_tokens": 36205302.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.27305825242718446,
|
| 815 |
+
"grad_norm": 0.030852986499667168,
|
| 816 |
+
"learning_rate": 3.2255384756164905e-05,
|
| 817 |
+
"loss": 0.02,
|
| 818 |
+
"mean_token_accuracy": 0.9932003140449523,
|
| 819 |
+
"num_tokens": 36611860.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.27609223300970875,
|
| 824 |
+
"grad_norm": 0.03644876554608345,
|
| 825 |
+
"learning_rate": 3.216478196456445e-05,
|
| 826 |
+
"loss": 0.019,
|
| 827 |
+
"mean_token_accuracy": 0.9935380101203919,
|
| 828 |
+
"num_tokens": 37018765.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.279126213592233,
|
| 833 |
+
"grad_norm": 0.037993211299180984,
|
| 834 |
+
"learning_rate": 3.207318727119302e-05,
|
| 835 |
+
"loss": 0.0219,
|
| 836 |
+
"mean_token_accuracy": 0.992822015285492,
|
| 837 |
+
"num_tokens": 37426212.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.2821601941747573,
|
| 842 |
+
"grad_norm": 0.03461167588829994,
|
| 843 |
+
"learning_rate": 3.1980609903416415e-05,
|
| 844 |
+
"loss": 0.0199,
|
| 845 |
+
"mean_token_accuracy": 0.9932843446731567,
|
| 846 |
+
"num_tokens": 37832810.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.28519417475728154,
|
| 851 |
+
"grad_norm": 0.03228127583861351,
|
| 852 |
+
"learning_rate": 3.1887059187596306e-05,
|
| 853 |
+
"loss": 0.0223,
|
| 854 |
+
"mean_token_accuracy": 0.992818820476532,
|
| 855 |
+
"num_tokens": 38239386.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.28822815533980584,
|
| 860 |
+
"grad_norm": 0.04857522249221802,
|
| 861 |
+
"learning_rate": 3.179254454815066e-05,
|
| 862 |
+
"loss": 0.0211,
|
| 863 |
+
"mean_token_accuracy": 0.9930593371391296,
|
| 864 |
+
"num_tokens": 38646309.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.2912621359223301,
|
| 869 |
+
"grad_norm": 0.04640183225274086,
|
| 870 |
+
"learning_rate": 3.1697075506604365e-05,
|
| 871 |
+
"loss": 0.0205,
|
| 872 |
+
"mean_token_accuracy": 0.9930596828460694,
|
| 873 |
+
"num_tokens": 39054017.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.2942961165048544,
|
| 878 |
+
"grad_norm": 0.07724732160568237,
|
| 879 |
+
"learning_rate": 3.160066168062996e-05,
|
| 880 |
+
"loss": 0.0184,
|
| 881 |
+
"mean_token_accuracy": 0.9936440348625183,
|
| 882 |
+
"num_tokens": 39461269.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.2973300970873786,
|
| 887 |
+
"grad_norm": 0.02800828032195568,
|
| 888 |
+
"learning_rate": 3.150331278307879e-05,
|
| 889 |
+
"loss": 0.0221,
|
| 890 |
+
"mean_token_accuracy": 0.99279283285141,
|
| 891 |
+
"num_tokens": 39868650.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.3003640776699029,
|
| 896 |
+
"grad_norm": 0.037310052663087845,
|
| 897 |
+
"learning_rate": 3.140503862100249e-05,
|
| 898 |
+
"loss": 0.0201,
|
| 899 |
+
"mean_token_accuracy": 0.9932762980461121,
|
| 900 |
+
"num_tokens": 40274804.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.30339805825242716,
|
| 905 |
+
"grad_norm": 0.06045287847518921,
|
| 906 |
+
"learning_rate": 3.130584909466502e-05,
|
| 907 |
+
"loss": 0.0224,
|
| 908 |
+
"mean_token_accuracy": 0.9927901029586792,
|
| 909 |
+
"num_tokens": 40680743.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.30643203883495146,
|
| 914 |
+
"grad_norm": 0.037607740610837936,
|
| 915 |
+
"learning_rate": 3.1205754196545294e-05,
|
| 916 |
+
"loss": 0.0222,
|
| 917 |
+
"mean_token_accuracy": 0.9926772832870483,
|
| 918 |
+
"num_tokens": 41087347.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.3094660194174757,
|
| 923 |
+
"grad_norm": 0.036764051765203476,
|
| 924 |
+
"learning_rate": 3.110476401033054e-05,
|
| 925 |
+
"loss": 0.0217,
|
| 926 |
+
"mean_token_accuracy": 0.9927445411682129,
|
| 927 |
+
"num_tokens": 41494644.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.3125,
|
| 932 |
+
"grad_norm": 0.03375716134905815,
|
| 933 |
+
"learning_rate": 3.100288870990043e-05,
|
| 934 |
+
"loss": 0.0196,
|
| 935 |
+
"mean_token_accuracy": 0.9934267640113831,
|
| 936 |
+
"num_tokens": 41902084.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.3155339805825243,
|
| 941 |
+
"grad_norm": 0.03154360502958298,
|
| 942 |
+
"learning_rate": 3.0900138558302194e-05,
|
| 943 |
+
"loss": 0.0191,
|
| 944 |
+
"mean_token_accuracy": 0.9935309648513794,
|
| 945 |
+
"num_tokens": 42309300.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.31856796116504854,
|
| 950 |
+
"grad_norm": 0.025135209783911705,
|
| 951 |
+
"learning_rate": 3.079652390671665e-05,
|
| 952 |
+
"loss": 0.0193,
|
| 953 |
+
"mean_token_accuracy": 0.9934475421905518,
|
| 954 |
+
"num_tokens": 42716542.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.32160194174757284,
|
| 959 |
+
"grad_norm": 0.03982224315404892,
|
| 960 |
+
"learning_rate": 3.069205519341546e-05,
|
| 961 |
+
"loss": 0.0193,
|
| 962 |
+
"mean_token_accuracy": 0.9934385299682618,
|
| 963 |
+
"num_tokens": 43123256.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.3246359223300971,
|
| 968 |
+
"grad_norm": 0.04023640230298042,
|
| 969 |
+
"learning_rate": 3.058674294270955e-05,
|
| 970 |
+
"loss": 0.0186,
|
| 971 |
+
"mean_token_accuracy": 0.9937353134155273,
|
| 972 |
+
"num_tokens": 43529652.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.3276699029126214,
|
| 977 |
+
"grad_norm": 0.028163542971014977,
|
| 978 |
+
"learning_rate": 3.0480597763888863e-05,
|
| 979 |
+
"loss": 0.02,
|
| 980 |
+
"mean_token_accuracy": 0.993327522277832,
|
| 981 |
+
"num_tokens": 43935601.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.3307038834951456,
|
| 986 |
+
"grad_norm": 0.03361319378018379,
|
| 987 |
+
"learning_rate": 3.0373630350153597e-05,
|
| 988 |
+
"loss": 0.0175,
|
| 989 |
+
"mean_token_accuracy": 0.993952751159668,
|
| 990 |
+
"num_tokens": 44342453.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.3337378640776699,
|
| 995 |
+
"grad_norm": 0.035180699080228806,
|
| 996 |
+
"learning_rate": 3.026585147753692e-05,
|
| 997 |
+
"loss": 0.0226,
|
| 998 |
+
"mean_token_accuracy": 0.9926326274871826,
|
| 999 |
+
"num_tokens": 44748951.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.33677184466019416,
|
| 1004 |
+
"grad_norm": 0.04069613292813301,
|
| 1005 |
+
"learning_rate": 3.0157272003819414e-05,
|
| 1006 |
+
"loss": 0.0207,
|
| 1007 |
+
"mean_token_accuracy": 0.9931874632835388,
|
| 1008 |
+
"num_tokens": 45155188.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.33980582524271846,
|
| 1013 |
+
"grad_norm": 0.029416020959615707,
|
| 1014 |
+
"learning_rate": 3.0047902867435223e-05,
|
| 1015 |
+
"loss": 0.0224,
|
| 1016 |
+
"mean_token_accuracy": 0.9927819728851318,
|
| 1017 |
+
"num_tokens": 45561807.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.3428398058252427,
|
| 1022 |
+
"grad_norm": 0.035775549709796906,
|
| 1023 |
+
"learning_rate": 2.993775508637012e-05,
|
| 1024 |
+
"loss": 0.0227,
|
| 1025 |
+
"mean_token_accuracy": 0.9924745202064514,
|
| 1026 |
+
"num_tokens": 45968255.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.345873786407767,
|
| 1031 |
+
"grad_norm": 0.039437539875507355,
|
| 1032 |
+
"learning_rate": 2.9826839757051526e-05,
|
| 1033 |
+
"loss": 0.0197,
|
| 1034 |
+
"mean_token_accuracy": 0.9934724569320679,
|
| 1035 |
+
"num_tokens": 46375144.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.34890776699029125,
|
| 1040 |
+
"grad_norm": 0.03149618208408356,
|
| 1041 |
+
"learning_rate": 2.971516805323066e-05,
|
| 1042 |
+
"loss": 0.0214,
|
| 1043 |
+
"mean_token_accuracy": 0.992820394039154,
|
| 1044 |
+
"num_tokens": 46782323.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.35194174757281554,
|
| 1049 |
+
"grad_norm": 0.03710157796740532,
|
| 1050 |
+
"learning_rate": 2.9602751224856852e-05,
|
| 1051 |
+
"loss": 0.0199,
|
| 1052 |
+
"mean_token_accuracy": 0.9933429002761841,
|
| 1053 |
+
"num_tokens": 47188896.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.3549757281553398,
|
| 1058 |
+
"grad_norm": 0.03251684457063675,
|
| 1059 |
+
"learning_rate": 2.9489600596944236e-05,
|
| 1060 |
+
"loss": 0.0198,
|
| 1061 |
+
"mean_token_accuracy": 0.9933558225631713,
|
| 1062 |
+
"num_tokens": 47595402.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.3580097087378641,
|
| 1067 |
+
"grad_norm": 0.024846093729138374,
|
| 1068 |
+
"learning_rate": 2.937572756843084e-05,
|
| 1069 |
+
"loss": 0.0208,
|
| 1070 |
+
"mean_token_accuracy": 0.9929834604263306,
|
| 1071 |
+
"num_tokens": 48002676.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.36104368932038833,
|
| 1076 |
+
"grad_norm": 0.03847256675362587,
|
| 1077 |
+
"learning_rate": 2.9261143611030253e-05,
|
| 1078 |
+
"loss": 0.0197,
|
| 1079 |
+
"mean_token_accuracy": 0.9932600855827332,
|
| 1080 |
+
"num_tokens": 48408909.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.3640776699029126,
|
| 1085 |
+
"grad_norm": 0.03794528916478157,
|
| 1086 |
+
"learning_rate": 2.914586026807594e-05,
|
| 1087 |
+
"loss": 0.0201,
|
| 1088 |
+
"mean_token_accuracy": 0.9932417273521423,
|
| 1089 |
+
"num_tokens": 48816050.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.36711165048543687,
|
| 1094 |
+
"grad_norm": 0.03913505747914314,
|
| 1095 |
+
"learning_rate": 2.902988915335836e-05,
|
| 1096 |
+
"loss": 0.0207,
|
| 1097 |
+
"mean_token_accuracy": 0.9929919958114624,
|
| 1098 |
+
"num_tokens": 49223367.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.37014563106796117,
|
| 1103 |
+
"grad_norm": 0.03473582863807678,
|
| 1104 |
+
"learning_rate": 2.8913241949954957e-05,
|
| 1105 |
+
"loss": 0.0221,
|
| 1106 |
+
"mean_token_accuracy": 0.9925926566123963,
|
| 1107 |
+
"num_tokens": 49630760.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.3731796116504854,
|
| 1112 |
+
"grad_norm": 0.027801785618066788,
|
| 1113 |
+
"learning_rate": 2.8795930409053225e-05,
|
| 1114 |
+
"loss": 0.02,
|
| 1115 |
+
"mean_token_accuracy": 0.9932288885116577,
|
| 1116 |
+
"num_tokens": 50037598.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.3762135922330097,
|
| 1121 |
+
"grad_norm": 0.0316888689994812,
|
| 1122 |
+
"learning_rate": 2.867796634876686e-05,
|
| 1123 |
+
"loss": 0.0184,
|
| 1124 |
+
"mean_token_accuracy": 0.9937638401985168,
|
| 1125 |
+
"num_tokens": 50444771.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.379247572815534,
|
| 1130 |
+
"grad_norm": 0.07504960894584656,
|
| 1131 |
+
"learning_rate": 2.8559361652945176e-05,
|
| 1132 |
+
"loss": 0.0199,
|
| 1133 |
+
"mean_token_accuracy": 0.9932967185974121,
|
| 1134 |
+
"num_tokens": 50851588.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.38228155339805825,
|
| 1139 |
+
"grad_norm": 0.045697640627622604,
|
| 1140 |
+
"learning_rate": 2.8440128269975945e-05,
|
| 1141 |
+
"loss": 0.0187,
|
| 1142 |
+
"mean_token_accuracy": 0.9934902310371398,
|
| 1143 |
+
"num_tokens": 51258940.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.38531553398058255,
|
| 1148 |
+
"grad_norm": 0.03645659238100052,
|
| 1149 |
+
"learning_rate": 2.8320278211581675e-05,
|
| 1150 |
+
"loss": 0.0208,
|
| 1151 |
+
"mean_token_accuracy": 0.9932755589485168,
|
| 1152 |
+
"num_tokens": 51665862.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.3883495145631068,
|
| 1157 |
+
"grad_norm": 0.03291779011487961,
|
| 1158 |
+
"learning_rate": 2.8199823551609523e-05,
|
| 1159 |
+
"loss": 0.0242,
|
| 1160 |
+
"mean_token_accuracy": 0.9920920610427857,
|
| 1161 |
+
"num_tokens": 52072805.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.3913834951456311,
|
| 1166 |
+
"grad_norm": 0.03070950135588646,
|
| 1167 |
+
"learning_rate": 2.8078776424815e-05,
|
| 1168 |
+
"loss": 0.0209,
|
| 1169 |
+
"mean_token_accuracy": 0.9930874943733216,
|
| 1170 |
+
"num_tokens": 52479343.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.39441747572815533,
|
| 1175 |
+
"grad_norm": 0.040879931300878525,
|
| 1176 |
+
"learning_rate": 2.7957149025639455e-05,
|
| 1177 |
+
"loss": 0.0214,
|
| 1178 |
+
"mean_token_accuracy": 0.9928395271301269,
|
| 1179 |
+
"num_tokens": 52886647.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.39745145631067963,
|
| 1184 |
+
"grad_norm": 0.035599879920482635,
|
| 1185 |
+
"learning_rate": 2.7834953606981647e-05,
|
| 1186 |
+
"loss": 0.0213,
|
| 1187 |
+
"mean_token_accuracy": 0.9928174138069152,
|
| 1188 |
+
"num_tokens": 53292846.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.40048543689320387,
|
| 1193 |
+
"grad_norm": 0.03400155529379845,
|
| 1194 |
+
"learning_rate": 2.77122024789633e-05,
|
| 1195 |
+
"loss": 0.0199,
|
| 1196 |
+
"mean_token_accuracy": 0.9932538151741028,
|
| 1197 |
+
"num_tokens": 53700258.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.40351941747572817,
|
| 1202 |
+
"grad_norm": 0.028687704354524612,
|
| 1203 |
+
"learning_rate": 2.7588908007689038e-05,
|
| 1204 |
+
"loss": 0.0186,
|
| 1205 |
+
"mean_token_accuracy": 0.9934426546096802,
|
| 1206 |
+
"num_tokens": 54107958.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.4065533980582524,
|
| 1211 |
+
"grad_norm": 0.03738875687122345,
|
| 1212 |
+
"learning_rate": 2.7465082614000553e-05,
|
| 1213 |
+
"loss": 0.0224,
|
| 1214 |
+
"mean_token_accuracy": 0.9925989031791687,
|
| 1215 |
+
"num_tokens": 54514336.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.4095873786407767,
|
| 1220 |
+
"grad_norm": 0.03134342283010483,
|
| 1221 |
+
"learning_rate": 2.734073877222535e-05,
|
| 1222 |
+
"loss": 0.0192,
|
| 1223 |
+
"mean_token_accuracy": 0.9933988332748414,
|
| 1224 |
+
"num_tokens": 54921552.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.41262135922330095,
|
| 1229 |
+
"grad_norm": 0.026389850303530693,
|
| 1230 |
+
"learning_rate": 2.7215889008920038e-05,
|
| 1231 |
+
"loss": 0.0214,
|
| 1232 |
+
"mean_token_accuracy": 0.9930248975753784,
|
| 1233 |
+
"num_tokens": 55327241.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.41565533980582525,
|
| 1238 |
+
"grad_norm": 0.022707246243953705,
|
| 1239 |
+
"learning_rate": 2.7090545901608423e-05,
|
| 1240 |
+
"loss": 0.0197,
|
| 1241 |
+
"mean_token_accuracy": 0.9931993603706359,
|
| 1242 |
+
"num_tokens": 55734366.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.4186893203883495,
|
| 1247 |
+
"grad_norm": 0.042725060135126114,
|
| 1248 |
+
"learning_rate": 2.6964722077514394e-05,
|
| 1249 |
+
"loss": 0.024,
|
| 1250 |
+
"mean_token_accuracy": 0.9923825621604919,
|
| 1251 |
+
"num_tokens": 56140445.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.4217233009708738,
|
| 1256 |
+
"grad_norm": 0.055999163538217545,
|
| 1257 |
+
"learning_rate": 2.6838430212289874e-05,
|
| 1258 |
+
"loss": 0.0236,
|
| 1259 |
+
"mean_token_accuracy": 0.9923421740531921,
|
| 1260 |
+
"num_tokens": 56546727.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.42475728155339804,
|
| 1265 |
+
"grad_norm": 0.09104075282812119,
|
| 1266 |
+
"learning_rate": 2.6711683028737836e-05,
|
| 1267 |
+
"loss": 0.0211,
|
| 1268 |
+
"mean_token_accuracy": 0.9931105375289917,
|
| 1269 |
+
"num_tokens": 56953430.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.42779126213592233,
|
| 1274 |
+
"grad_norm": 0.03057127818465233,
|
| 1275 |
+
"learning_rate": 2.6584493295530605e-05,
|
| 1276 |
+
"loss": 0.0195,
|
| 1277 |
+
"mean_token_accuracy": 0.9935212850570678,
|
| 1278 |
+
"num_tokens": 57359890.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.4308252427184466,
|
| 1283 |
+
"grad_norm": 0.039992984384298325,
|
| 1284 |
+
"learning_rate": 2.6456873825923518e-05,
|
| 1285 |
+
"loss": 0.0203,
|
| 1286 |
+
"mean_token_accuracy": 0.9931409597396851,
|
| 1287 |
+
"num_tokens": 57766561.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.4338592233009709,
|
| 1292 |
+
"grad_norm": 0.03372696414589882,
|
| 1293 |
+
"learning_rate": 2.63288374764641e-05,
|
| 1294 |
+
"loss": 0.0205,
|
| 1295 |
+
"mean_token_accuracy": 0.9930363297462463,
|
| 1296 |
+
"num_tokens": 58173113.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.4368932038834951,
|
| 1301 |
+
"grad_norm": 0.020909098908305168,
|
| 1302 |
+
"learning_rate": 2.620039714569688e-05,
|
| 1303 |
+
"loss": 0.0194,
|
| 1304 |
+
"mean_token_accuracy": 0.9933443427085876,
|
| 1305 |
+
"num_tokens": 58580501.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.4399271844660194,
|
| 1310 |
+
"grad_norm": 0.02915063500404358,
|
| 1311 |
+
"learning_rate": 2.6071565772863995e-05,
|
| 1312 |
+
"loss": 0.0192,
|
| 1313 |
+
"mean_token_accuracy": 0.9934536218643188,
|
| 1314 |
+
"num_tokens": 58986906.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.4429611650485437,
|
| 1319 |
+
"grad_norm": 0.03697626665234566,
|
| 1320 |
+
"learning_rate": 2.594235633660163e-05,
|
| 1321 |
+
"loss": 0.0231,
|
| 1322 |
+
"mean_token_accuracy": 0.9925421714782715,
|
| 1323 |
+
"num_tokens": 59393310.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.44599514563106796,
|
| 1328 |
+
"grad_norm": 0.028796004131436348,
|
| 1329 |
+
"learning_rate": 2.5812781853632587e-05,
|
| 1330 |
+
"loss": 0.0219,
|
| 1331 |
+
"mean_token_accuracy": 0.9928050398826599,
|
| 1332 |
+
"num_tokens": 59799208.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.44902912621359226,
|
| 1337 |
+
"grad_norm": 0.03447737544775009,
|
| 1338 |
+
"learning_rate": 2.5682855377454918e-05,
|
| 1339 |
+
"loss": 0.0184,
|
| 1340 |
+
"mean_token_accuracy": 0.9936539769172669,
|
| 1341 |
+
"num_tokens": 60206416.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.4520631067961165,
|
| 1346 |
+
"grad_norm": 0.09332480281591415,
|
| 1347 |
+
"learning_rate": 2.555258999702692e-05,
|
| 1348 |
+
"loss": 0.0231,
|
| 1349 |
+
"mean_token_accuracy": 0.992510449886322,
|
| 1350 |
+
"num_tokens": 60612501.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.4550970873786408,
|
| 1355 |
+
"grad_norm": 0.13943925499916077,
|
| 1356 |
+
"learning_rate": 2.5421998835448545e-05,
|
| 1357 |
+
"loss": 0.0214,
|
| 1358 |
+
"mean_token_accuracy": 0.9927754759788513,
|
| 1359 |
+
"num_tokens": 61019113.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.45813106796116504,
|
| 1364 |
+
"grad_norm": 0.029267804697155952,
|
| 1365 |
+
"learning_rate": 2.5291095048639348e-05,
|
| 1366 |
+
"loss": 0.019,
|
| 1367 |
+
"mean_token_accuracy": 0.9934199333190918,
|
| 1368 |
+
"num_tokens": 61425726.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.46116504854368934,
|
| 1373 |
+
"grad_norm": 0.03230291232466698,
|
| 1374 |
+
"learning_rate": 2.5159891824013134e-05,
|
| 1375 |
+
"loss": 0.0218,
|
| 1376 |
+
"mean_token_accuracy": 0.9925872683525085,
|
| 1377 |
+
"num_tokens": 61831973.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"epoch": 0.4641990291262136,
|
| 1382 |
+
"grad_norm": 0.024981655180454254,
|
| 1383 |
+
"learning_rate": 2.502840237914948e-05,
|
| 1384 |
+
"loss": 0.0189,
|
| 1385 |
+
"mean_token_accuracy": 0.9935161352157593,
|
| 1386 |
+
"num_tokens": 62238418.0,
|
| 1387 |
+
"step": 765
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"epoch": 0.4672330097087379,
|
| 1391 |
+
"grad_norm": 0.022092267870903015,
|
| 1392 |
+
"learning_rate": 2.4896639960462126e-05,
|
| 1393 |
+
"loss": 0.0185,
|
| 1394 |
+
"mean_token_accuracy": 0.9936355710029602,
|
| 1395 |
+
"num_tokens": 62645878.0,
|
| 1396 |
+
"step": 770
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.4702669902912621,
|
| 1400 |
+
"grad_norm": 0.03437012434005737,
|
| 1401 |
+
"learning_rate": 2.476461784186456e-05,
|
| 1402 |
+
"loss": 0.0202,
|
| 1403 |
+
"mean_token_accuracy": 0.9932804703712463,
|
| 1404 |
+
"num_tokens": 63053187.0,
|
| 1405 |
+
"step": 775
|
| 1406 |
+
},
|
| 1407 |
+
{
|
| 1408 |
+
"epoch": 0.4733009708737864,
|
| 1409 |
+
"grad_norm": 0.039246056228876114,
|
| 1410 |
+
"learning_rate": 2.463234932343276e-05,
|
| 1411 |
+
"loss": 0.022,
|
| 1412 |
+
"mean_token_accuracy": 0.9929169893264771,
|
| 1413 |
+
"num_tokens": 63459015.0,
|
| 1414 |
+
"step": 780
|
| 1415 |
+
}
|
| 1416 |
+
],
|
| 1417 |
+
"logging_steps": 5,
|
| 1418 |
+
"max_steps": 1648,
|
| 1419 |
+
"num_input_tokens_seen": 0,
|
| 1420 |
+
"num_train_epochs": 1,
|
| 1421 |
+
"save_steps": 500,
|
| 1422 |
+
"stateful_callbacks": {
|
| 1423 |
+
"TrainerControl": {
|
| 1424 |
+
"args": {
|
| 1425 |
+
"should_epoch_stop": false,
|
| 1426 |
+
"should_evaluate": false,
|
| 1427 |
+
"should_log": false,
|
| 1428 |
+
"should_save": true,
|
| 1429 |
+
"should_training_stop": false
|
| 1430 |
+
},
|
| 1431 |
+
"attributes": {}
|
| 1432 |
+
}
|
| 1433 |
+
},
|
| 1434 |
+
"total_flos": 1.4897968655735194e+18,
|
| 1435 |
+
"train_batch_size": 20,
|
| 1436 |
+
"trial_name": null,
|
| 1437 |
+
"trial_params": null
|
| 1438 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dd6e15e67e417e411eb66432e277f8b640c229df7a98e9555061cff4d04bfd8
|
| 3 |
+
size 6545
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|