Instructions to use master103525/god-miner-memory-calling-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use master103525/god-miner-memory-calling-1 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("/cache/models/Qwen--Qwen2.5-7B-Instruct") model = PeftModel.from_pretrained(base_model, "master103525/god-miner-memory-calling-1") - Transformers
How to use master103525/god-miner-memory-calling-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="master103525/god-miner-memory-calling-1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("master103525/god-miner-memory-calling-1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use master103525/god-miner-memory-calling-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "master103525/god-miner-memory-calling-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "master103525/god-miner-memory-calling-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/master103525/god-miner-memory-calling-1
- SGLang
How to use master103525/god-miner-memory-calling-1 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 "master103525/god-miner-memory-calling-1" \ --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": "master103525/god-miner-memory-calling-1", "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 "master103525/god-miner-memory-calling-1" \ --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": "master103525/god-miner-memory-calling-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use master103525/god-miner-memory-calling-1 with Docker Model Runner:
docker model run hf.co/master103525/god-miner-memory-calling-1
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- chat_template.jinja +54 -0
- loss.txt +1 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +207 -0
- trainer_state.json +1834 -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: Qwen--Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Qwen--Qwen2.5-7B-Instruct
|
| 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": "/cache/models/Qwen--Qwen2.5-7B-Instruct",
|
| 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 |
+
"up_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"gate_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
+
"k_proj",
|
| 38 |
+
"down_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:44c39be7d6b51045c4252d2347a09b3cff0326159fa140090629c686434cc349
|
| 3 |
+
size 1291899160
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1000,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:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 131072,
|
| 203 |
+
"pad_token": "<|endoftext|>",
|
| 204 |
+
"split_special_tokens": false,
|
| 205 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 206 |
+
"unk_token": null
|
| 207 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1834 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.7640878701050621,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1000,
|
| 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.0038204393505253103,
|
| 14 |
+
"grad_norm": 15.201638221740723,
|
| 15 |
+
"learning_rate": 4.917142857142858e-06,
|
| 16 |
+
"loss": 0.9785,
|
| 17 |
+
"mean_token_accuracy": 0.8454411208629609,
|
| 18 |
+
"num_tokens": 190362.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.007640878701050621,
|
| 23 |
+
"grad_norm": 3.6675734519958496,
|
| 24 |
+
"learning_rate": 1.106357142857143e-05,
|
| 25 |
+
"loss": 0.4654,
|
| 26 |
+
"mean_token_accuracy": 0.8957700878381729,
|
| 27 |
+
"num_tokens": 379171.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.011461318051575931,
|
| 32 |
+
"grad_norm": 2.4532852172851562,
|
| 33 |
+
"learning_rate": 1.7210000000000003e-05,
|
| 34 |
+
"loss": 0.2014,
|
| 35 |
+
"mean_token_accuracy": 0.9451590657234192,
|
| 36 |
+
"num_tokens": 573150.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.015281757402101241,
|
| 41 |
+
"grad_norm": 1.0862683057785034,
|
| 42 |
+
"learning_rate": 2.3356428571428574e-05,
|
| 43 |
+
"loss": 0.0905,
|
| 44 |
+
"mean_token_accuracy": 0.9684270918369293,
|
| 45 |
+
"num_tokens": 770760.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.019102196752626553,
|
| 50 |
+
"grad_norm": 1.4964179992675781,
|
| 51 |
+
"learning_rate": 2.950285714285715e-05,
|
| 52 |
+
"loss": 0.0957,
|
| 53 |
+
"mean_token_accuracy": 0.9640194743871688,
|
| 54 |
+
"num_tokens": 960649.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.022922636103151862,
|
| 59 |
+
"grad_norm": 0.7489196062088013,
|
| 60 |
+
"learning_rate": 3.5649285714285724e-05,
|
| 61 |
+
"loss": 0.0957,
|
| 62 |
+
"mean_token_accuracy": 0.9661861270666122,
|
| 63 |
+
"num_tokens": 1149643.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.026743075453677174,
|
| 68 |
+
"grad_norm": 0.4919213354587555,
|
| 69 |
+
"learning_rate": 4.179571428571429e-05,
|
| 70 |
+
"loss": 0.0811,
|
| 71 |
+
"mean_token_accuracy": 0.968377611041069,
|
| 72 |
+
"num_tokens": 1341445.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.030563514804202482,
|
| 77 |
+
"grad_norm": 0.8133232593536377,
|
| 78 |
+
"learning_rate": 4.3024809062069924e-05,
|
| 79 |
+
"loss": 0.0638,
|
| 80 |
+
"mean_token_accuracy": 0.9746772289276123,
|
| 81 |
+
"num_tokens": 1533608.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.034383954154727794,
|
| 86 |
+
"grad_norm": 0.5709226131439209,
|
| 87 |
+
"learning_rate": 4.302403338447426e-05,
|
| 88 |
+
"loss": 0.0732,
|
| 89 |
+
"mean_token_accuracy": 0.9714215457439422,
|
| 90 |
+
"num_tokens": 1726410.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.038204393505253106,
|
| 95 |
+
"grad_norm": 0.6107519268989563,
|
| 96 |
+
"learning_rate": 4.3022661062256383e-05,
|
| 97 |
+
"loss": 0.0791,
|
| 98 |
+
"mean_token_accuracy": 0.9731226474046707,
|
| 99 |
+
"num_tokens": 1915533.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.04202483285577841,
|
| 104 |
+
"grad_norm": 0.6385495066642761,
|
| 105 |
+
"learning_rate": 4.3020692146167425e-05,
|
| 106 |
+
"loss": 0.1017,
|
| 107 |
+
"mean_token_accuracy": 0.9618591457605362,
|
| 108 |
+
"num_tokens": 2101018.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.045845272206303724,
|
| 113 |
+
"grad_norm": 0.4049123525619507,
|
| 114 |
+
"learning_rate": 4.30181267090217e-05,
|
| 115 |
+
"loss": 0.0956,
|
| 116 |
+
"mean_token_accuracy": 0.9634065091609955,
|
| 117 |
+
"num_tokens": 2293929.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.049665711556829036,
|
| 122 |
+
"grad_norm": 0.4711824953556061,
|
| 123 |
+
"learning_rate": 4.301496484569403e-05,
|
| 124 |
+
"loss": 0.0911,
|
| 125 |
+
"mean_token_accuracy": 0.9642636924982071,
|
| 126 |
+
"num_tokens": 2483903.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.05348615090735435,
|
| 131 |
+
"grad_norm": 0.2694167494773865,
|
| 132 |
+
"learning_rate": 4.3011206673116235e-05,
|
| 133 |
+
"loss": 0.0763,
|
| 134 |
+
"mean_token_accuracy": 0.9684840172529221,
|
| 135 |
+
"num_tokens": 2676082.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.05730659025787966,
|
| 140 |
+
"grad_norm": 0.21997177600860596,
|
| 141 |
+
"learning_rate": 4.300685233027281e-05,
|
| 142 |
+
"loss": 0.0692,
|
| 143 |
+
"mean_token_accuracy": 0.9735830575227737,
|
| 144 |
+
"num_tokens": 2865817.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.061127029608404965,
|
| 149 |
+
"grad_norm": 0.48388707637786865,
|
| 150 |
+
"learning_rate": 4.300190197819575e-05,
|
| 151 |
+
"loss": 0.0666,
|
| 152 |
+
"mean_token_accuracy": 0.9729795724153518,
|
| 153 |
+
"num_tokens": 3059731.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.06494746895893028,
|
| 158 |
+
"grad_norm": 0.3043380379676819,
|
| 159 |
+
"learning_rate": 4.299635579995865e-05,
|
| 160 |
+
"loss": 0.0896,
|
| 161 |
+
"mean_token_accuracy": 0.9654609531164169,
|
| 162 |
+
"num_tokens": 3248547.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.06876790830945559,
|
| 167 |
+
"grad_norm": 0.34322434663772583,
|
| 168 |
+
"learning_rate": 4.299021400066991e-05,
|
| 169 |
+
"loss": 0.0671,
|
| 170 |
+
"mean_token_accuracy": 0.9724334269762039,
|
| 171 |
+
"num_tokens": 3442361.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.0725883476599809,
|
| 176 |
+
"grad_norm": 0.21328647434711456,
|
| 177 |
+
"learning_rate": 4.2983476807465125e-05,
|
| 178 |
+
"loss": 0.0684,
|
| 179 |
+
"mean_token_accuracy": 0.9704120546579361,
|
| 180 |
+
"num_tokens": 3632136.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.07640878701050621,
|
| 185 |
+
"grad_norm": 0.21835950016975403,
|
| 186 |
+
"learning_rate": 4.2976144469498725e-05,
|
| 187 |
+
"loss": 0.066,
|
| 188 |
+
"mean_token_accuracy": 0.9741405993700027,
|
| 189 |
+
"num_tokens": 3830824.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.08022922636103152,
|
| 194 |
+
"grad_norm": 0.28788259625434875,
|
| 195 |
+
"learning_rate": 4.296821725793474e-05,
|
| 196 |
+
"loss": 0.0665,
|
| 197 |
+
"mean_token_accuracy": 0.9729400396347045,
|
| 198 |
+
"num_tokens": 4021165.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.08404966571155682,
|
| 203 |
+
"grad_norm": 0.20847582817077637,
|
| 204 |
+
"learning_rate": 4.295969546593677e-05,
|
| 205 |
+
"loss": 0.048,
|
| 206 |
+
"mean_token_accuracy": 0.9813327103853225,
|
| 207 |
+
"num_tokens": 4217037.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.08787010506208214,
|
| 212 |
+
"grad_norm": 0.5263293981552124,
|
| 213 |
+
"learning_rate": 4.2950579408657155e-05,
|
| 214 |
+
"loss": 0.0515,
|
| 215 |
+
"mean_token_accuracy": 0.9777360051870346,
|
| 216 |
+
"num_tokens": 4416323.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.09169054441260745,
|
| 221 |
+
"grad_norm": 0.3691597878932953,
|
| 222 |
+
"learning_rate": 4.2940869423225314e-05,
|
| 223 |
+
"loss": 0.0702,
|
| 224 |
+
"mean_token_accuracy": 0.9730219930410385,
|
| 225 |
+
"num_tokens": 4608848.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.09551098376313276,
|
| 230 |
+
"grad_norm": 0.418745756149292,
|
| 231 |
+
"learning_rate": 4.293056586873527e-05,
|
| 232 |
+
"loss": 0.0795,
|
| 233 |
+
"mean_token_accuracy": 0.9684157103300095,
|
| 234 |
+
"num_tokens": 4799085.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.09933142311365807,
|
| 239 |
+
"grad_norm": 0.1828339397907257,
|
| 240 |
+
"learning_rate": 4.291966912623238e-05,
|
| 241 |
+
"loss": 0.0813,
|
| 242 |
+
"mean_token_accuracy": 0.9673069924116134,
|
| 243 |
+
"num_tokens": 4989425.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.10315186246418338,
|
| 248 |
+
"grad_norm": 0.1943412721157074,
|
| 249 |
+
"learning_rate": 4.290817959869925e-05,
|
| 250 |
+
"loss": 0.0486,
|
| 251 |
+
"mean_token_accuracy": 0.9804543942213059,
|
| 252 |
+
"num_tokens": 5181996.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.1069723018147087,
|
| 257 |
+
"grad_norm": 0.27603718638420105,
|
| 258 |
+
"learning_rate": 4.289609771104081e-05,
|
| 259 |
+
"loss": 0.0694,
|
| 260 |
+
"mean_token_accuracy": 0.9706949889659882,
|
| 261 |
+
"num_tokens": 5373158.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.11079274116523401,
|
| 266 |
+
"grad_norm": 0.2905213534832001,
|
| 267 |
+
"learning_rate": 4.2883423910068604e-05,
|
| 268 |
+
"loss": 0.0633,
|
| 269 |
+
"mean_token_accuracy": 0.9741755068302155,
|
| 270 |
+
"num_tokens": 5566234.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.11461318051575932,
|
| 275 |
+
"grad_norm": 0.19648431241512299,
|
| 276 |
+
"learning_rate": 4.2870158664484296e-05,
|
| 277 |
+
"loss": 0.0718,
|
| 278 |
+
"mean_token_accuracy": 0.9699918508529664,
|
| 279 |
+
"num_tokens": 5754918.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.11843361986628462,
|
| 284 |
+
"grad_norm": 0.34930410981178284,
|
| 285 |
+
"learning_rate": 4.285630246486231e-05,
|
| 286 |
+
"loss": 0.0704,
|
| 287 |
+
"mean_token_accuracy": 0.9721553355455399,
|
| 288 |
+
"num_tokens": 5944190.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.12225405921680993,
|
| 293 |
+
"grad_norm": 0.3542683720588684,
|
| 294 |
+
"learning_rate": 4.284185582363168e-05,
|
| 295 |
+
"loss": 0.0576,
|
| 296 |
+
"mean_token_accuracy": 0.9750690400600434,
|
| 297 |
+
"num_tokens": 6139109.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.12607449856733524,
|
| 302 |
+
"grad_norm": 0.27087774872779846,
|
| 303 |
+
"learning_rate": 4.282681927505712e-05,
|
| 304 |
+
"loss": 0.0486,
|
| 305 |
+
"mean_token_accuracy": 0.9792540937662124,
|
| 306 |
+
"num_tokens": 6330632.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.12989493791786055,
|
| 311 |
+
"grad_norm": 0.15475647151470184,
|
| 312 |
+
"learning_rate": 4.281119337521925e-05,
|
| 313 |
+
"loss": 0.0694,
|
| 314 |
+
"mean_token_accuracy": 0.9716268599033355,
|
| 315 |
+
"num_tokens": 6519770.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.13371537726838587,
|
| 320 |
+
"grad_norm": 0.19823479652404785,
|
| 321 |
+
"learning_rate": 4.279497870199406e-05,
|
| 322 |
+
"loss": 0.0555,
|
| 323 |
+
"mean_token_accuracy": 0.9756160885095596,
|
| 324 |
+
"num_tokens": 6711264.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.13753581661891118,
|
| 329 |
+
"grad_norm": 0.2758966088294983,
|
| 330 |
+
"learning_rate": 4.277817585503149e-05,
|
| 331 |
+
"loss": 0.0438,
|
| 332 |
+
"mean_token_accuracy": 0.9821220278739929,
|
| 333 |
+
"num_tokens": 6907145.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.1413562559694365,
|
| 338 |
+
"grad_norm": 0.3245423138141632,
|
| 339 |
+
"learning_rate": 4.27607854557333e-05,
|
| 340 |
+
"loss": 0.05,
|
| 341 |
+
"mean_token_accuracy": 0.9807667016983033,
|
| 342 |
+
"num_tokens": 7104423.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.1451766953199618,
|
| 347 |
+
"grad_norm": 0.22670352458953857,
|
| 348 |
+
"learning_rate": 4.2742808147230056e-05,
|
| 349 |
+
"loss": 0.0586,
|
| 350 |
+
"mean_token_accuracy": 0.9768105119466781,
|
| 351 |
+
"num_tokens": 7294454.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.1489971346704871,
|
| 356 |
+
"grad_norm": 0.3042696714401245,
|
| 357 |
+
"learning_rate": 4.2724244594357395e-05,
|
| 358 |
+
"loss": 0.0658,
|
| 359 |
+
"mean_token_accuracy": 0.9748756378889084,
|
| 360 |
+
"num_tokens": 7482853.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.15281757402101243,
|
| 365 |
+
"grad_norm": 0.2198762446641922,
|
| 366 |
+
"learning_rate": 4.270509548363136e-05,
|
| 367 |
+
"loss": 0.0502,
|
| 368 |
+
"mean_token_accuracy": 0.9786651730537415,
|
| 369 |
+
"num_tokens": 7679690.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.15663801337153774,
|
| 374 |
+
"grad_norm": 0.24992121756076813,
|
| 375 |
+
"learning_rate": 4.268536152322307e-05,
|
| 376 |
+
"loss": 0.0791,
|
| 377 |
+
"mean_token_accuracy": 0.9685411423444747,
|
| 378 |
+
"num_tokens": 7869078.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.16045845272206305,
|
| 383 |
+
"grad_norm": 0.2517041265964508,
|
| 384 |
+
"learning_rate": 4.266504344293253e-05,
|
| 385 |
+
"loss": 0.0523,
|
| 386 |
+
"mean_token_accuracy": 0.9794965207576751,
|
| 387 |
+
"num_tokens": 8062246.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.16427889207258833,
|
| 392 |
+
"grad_norm": 0.42241668701171875,
|
| 393 |
+
"learning_rate": 4.264414199416162e-05,
|
| 394 |
+
"loss": 0.0641,
|
| 395 |
+
"mean_token_accuracy": 0.9746231615543366,
|
| 396 |
+
"num_tokens": 8255102.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.16809933142311365,
|
| 401 |
+
"grad_norm": 0.3903146982192993,
|
| 402 |
+
"learning_rate": 4.26226579498863e-05,
|
| 403 |
+
"loss": 0.0676,
|
| 404 |
+
"mean_token_accuracy": 0.9708555549383163,
|
| 405 |
+
"num_tokens": 8448152.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.17191977077363896,
|
| 410 |
+
"grad_norm": 0.18771636486053467,
|
| 411 |
+
"learning_rate": 4.260059210462805e-05,
|
| 412 |
+
"loss": 0.0467,
|
| 413 |
+
"mean_token_accuracy": 0.9809397220611572,
|
| 414 |
+
"num_tokens": 8641044.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.17574021012416427,
|
| 419 |
+
"grad_norm": 0.24989716708660126,
|
| 420 |
+
"learning_rate": 4.257794527442448e-05,
|
| 421 |
+
"loss": 0.0574,
|
| 422 |
+
"mean_token_accuracy": 0.9770851105451583,
|
| 423 |
+
"num_tokens": 8838921.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.17956064947468958,
|
| 428 |
+
"grad_norm": 0.0954967513680458,
|
| 429 |
+
"learning_rate": 4.2554718296799135e-05,
|
| 430 |
+
"loss": 0.0505,
|
| 431 |
+
"mean_token_accuracy": 0.979452383518219,
|
| 432 |
+
"num_tokens": 9031067.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.1833810888252149,
|
| 437 |
+
"grad_norm": 0.23748601973056793,
|
| 438 |
+
"learning_rate": 4.2530912030730534e-05,
|
| 439 |
+
"loss": 0.0615,
|
| 440 |
+
"mean_token_accuracy": 0.9752046942710877,
|
| 441 |
+
"num_tokens": 9217893.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.1872015281757402,
|
| 446 |
+
"grad_norm": 0.23530811071395874,
|
| 447 |
+
"learning_rate": 4.2506527356620404e-05,
|
| 448 |
+
"loss": 0.0706,
|
| 449 |
+
"mean_token_accuracy": 0.9701990783214569,
|
| 450 |
+
"num_tokens": 9412173.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.19102196752626552,
|
| 455 |
+
"grad_norm": 0.2745545506477356,
|
| 456 |
+
"learning_rate": 4.248156517626113e-05,
|
| 457 |
+
"loss": 0.0451,
|
| 458 |
+
"mean_token_accuracy": 0.9807097434997558,
|
| 459 |
+
"num_tokens": 9608252.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.19484240687679083,
|
| 464 |
+
"grad_norm": 0.41043621301651,
|
| 465 |
+
"learning_rate": 4.245602641280239e-05,
|
| 466 |
+
"loss": 0.0497,
|
| 467 |
+
"mean_token_accuracy": 0.9810603886842728,
|
| 468 |
+
"num_tokens": 9803865.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.19866284622731614,
|
| 473 |
+
"grad_norm": 0.2759955823421478,
|
| 474 |
+
"learning_rate": 4.2429912010716984e-05,
|
| 475 |
+
"loss": 0.0582,
|
| 476 |
+
"mean_token_accuracy": 0.9766894429922104,
|
| 477 |
+
"num_tokens": 9995013.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.20248328557784145,
|
| 482 |
+
"grad_norm": 0.3307853043079376,
|
| 483 |
+
"learning_rate": 4.2403222935766006e-05,
|
| 484 |
+
"loss": 0.059,
|
| 485 |
+
"mean_token_accuracy": 0.9772057175636292,
|
| 486 |
+
"num_tokens": 10188340.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.20630372492836677,
|
| 491 |
+
"grad_norm": 0.20665952563285828,
|
| 492 |
+
"learning_rate": 4.237596017496301e-05,
|
| 493 |
+
"loss": 0.0608,
|
| 494 |
+
"mean_token_accuracy": 0.9768591314554215,
|
| 495 |
+
"num_tokens": 10381615.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.21012416427889208,
|
| 500 |
+
"grad_norm": 0.1744696944952011,
|
| 501 |
+
"learning_rate": 4.2348124736537575e-05,
|
| 502 |
+
"loss": 0.0506,
|
| 503 |
+
"mean_token_accuracy": 0.9770352751016617,
|
| 504 |
+
"num_tokens": 10575970.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.2139446036294174,
|
| 509 |
+
"grad_norm": 0.33633992075920105,
|
| 510 |
+
"learning_rate": 4.231971764989802e-05,
|
| 511 |
+
"loss": 0.0608,
|
| 512 |
+
"mean_token_accuracy": 0.9772638320922852,
|
| 513 |
+
"num_tokens": 10768443.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.2177650429799427,
|
| 518 |
+
"grad_norm": 0.2037603110074997,
|
| 519 |
+
"learning_rate": 4.229073996559331e-05,
|
| 520 |
+
"loss": 0.053,
|
| 521 |
+
"mean_token_accuracy": 0.9792750954627991,
|
| 522 |
+
"num_tokens": 10963013.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.22158548233046801,
|
| 527 |
+
"grad_norm": 0.2864745855331421,
|
| 528 |
+
"learning_rate": 4.226119275527421e-05,
|
| 529 |
+
"loss": 0.0621,
|
| 530 |
+
"mean_token_accuracy": 0.9746448636054993,
|
| 531 |
+
"num_tokens": 11151539.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.22540592168099333,
|
| 536 |
+
"grad_norm": 0.3466282784938812,
|
| 537 |
+
"learning_rate": 4.2231077111653674e-05,
|
| 538 |
+
"loss": 0.0572,
|
| 539 |
+
"mean_token_accuracy": 0.9750597178936005,
|
| 540 |
+
"num_tokens": 11345874.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.22922636103151864,
|
| 545 |
+
"grad_norm": 0.20305858552455902,
|
| 546 |
+
"learning_rate": 4.220039414846639e-05,
|
| 547 |
+
"loss": 0.0489,
|
| 548 |
+
"mean_token_accuracy": 0.9798380732536316,
|
| 549 |
+
"num_tokens": 11540262.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.23304680038204392,
|
| 554 |
+
"grad_norm": 0.30013033747673035,
|
| 555 |
+
"learning_rate": 4.2169145000427635e-05,
|
| 556 |
+
"loss": 0.0643,
|
| 557 |
+
"mean_token_accuracy": 0.9761583149433136,
|
| 558 |
+
"num_tokens": 11727141.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.23686723973256923,
|
| 563 |
+
"grad_norm": 0.2139650285243988,
|
| 564 |
+
"learning_rate": 4.2137330823191304e-05,
|
| 565 |
+
"loss": 0.0469,
|
| 566 |
+
"mean_token_accuracy": 0.9818692028522491,
|
| 567 |
+
"num_tokens": 11923804.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.24068767908309455,
|
| 572 |
+
"grad_norm": 0.21393324434757233,
|
| 573 |
+
"learning_rate": 4.210495279330716e-05,
|
| 574 |
+
"loss": 0.0794,
|
| 575 |
+
"mean_token_accuracy": 0.9690388560295105,
|
| 576 |
+
"num_tokens": 12114269.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.24450811843361986,
|
| 581 |
+
"grad_norm": 0.27864113450050354,
|
| 582 |
+
"learning_rate": 4.2072012108177314e-05,
|
| 583 |
+
"loss": 0.077,
|
| 584 |
+
"mean_token_accuracy": 0.9711580067873001,
|
| 585 |
+
"num_tokens": 12301613.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.24832855778414517,
|
| 590 |
+
"grad_norm": 0.26272112131118774,
|
| 591 |
+
"learning_rate": 4.2038509986011984e-05,
|
| 592 |
+
"loss": 0.0624,
|
| 593 |
+
"mean_token_accuracy": 0.9762404501438141,
|
| 594 |
+
"num_tokens": 12496573.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.2521489971346705,
|
| 599 |
+
"grad_norm": 0.15598540008068085,
|
| 600 |
+
"learning_rate": 4.200444766578437e-05,
|
| 601 |
+
"loss": 0.0565,
|
| 602 |
+
"mean_token_accuracy": 0.9755767703056335,
|
| 603 |
+
"num_tokens": 12690313.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.2559694364851958,
|
| 608 |
+
"grad_norm": 0.42017388343811035,
|
| 609 |
+
"learning_rate": 4.1969826407184916e-05,
|
| 610 |
+
"loss": 0.0728,
|
| 611 |
+
"mean_token_accuracy": 0.9695112437009812,
|
| 612 |
+
"num_tokens": 12878504.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.2597898758357211,
|
| 617 |
+
"grad_norm": 0.23844686150550842,
|
| 618 |
+
"learning_rate": 4.1934647490574675e-05,
|
| 619 |
+
"loss": 0.0556,
|
| 620 |
+
"mean_token_accuracy": 0.9785339087247849,
|
| 621 |
+
"num_tokens": 13071352.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.2636103151862464,
|
| 626 |
+
"grad_norm": 0.22254465520381927,
|
| 627 |
+
"learning_rate": 4.189891221693798e-05,
|
| 628 |
+
"loss": 0.063,
|
| 629 |
+
"mean_token_accuracy": 0.9737227350473404,
|
| 630 |
+
"num_tokens": 13264834.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.26743075453677173,
|
| 635 |
+
"grad_norm": 0.15139898657798767,
|
| 636 |
+
"learning_rate": 4.18626219078343e-05,
|
| 637 |
+
"loss": 0.0461,
|
| 638 |
+
"mean_token_accuracy": 0.9813186198472976,
|
| 639 |
+
"num_tokens": 13455272.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.271251193887297,
|
| 644 |
+
"grad_norm": 0.40693023800849915,
|
| 645 |
+
"learning_rate": 4.182577790534941e-05,
|
| 646 |
+
"loss": 0.0602,
|
| 647 |
+
"mean_token_accuracy": 0.976009014248848,
|
| 648 |
+
"num_tokens": 13647607.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.27507163323782235,
|
| 653 |
+
"grad_norm": 0.2027602195739746,
|
| 654 |
+
"learning_rate": 4.178838157204572e-05,
|
| 655 |
+
"loss": 0.0461,
|
| 656 |
+
"mean_token_accuracy": 0.9815563976764679,
|
| 657 |
+
"num_tokens": 13837724.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.27889207258834764,
|
| 662 |
+
"grad_norm": 0.14095771312713623,
|
| 663 |
+
"learning_rate": 4.1750434290911926e-05,
|
| 664 |
+
"loss": 0.0657,
|
| 665 |
+
"mean_token_accuracy": 0.9724122434854507,
|
| 666 |
+
"num_tokens": 14028092.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.282712511938873,
|
| 671 |
+
"grad_norm": 0.27064386010169983,
|
| 672 |
+
"learning_rate": 4.171193746531181e-05,
|
| 673 |
+
"loss": 0.0514,
|
| 674 |
+
"mean_token_accuracy": 0.9779324233531952,
|
| 675 |
+
"num_tokens": 14226064.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.28653295128939826,
|
| 680 |
+
"grad_norm": 0.1595909297466278,
|
| 681 |
+
"learning_rate": 4.167289251893238e-05,
|
| 682 |
+
"loss": 0.068,
|
| 683 |
+
"mean_token_accuracy": 0.9747934162616729,
|
| 684 |
+
"num_tokens": 14410718.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.2903533906399236,
|
| 689 |
+
"grad_norm": 0.1524188369512558,
|
| 690 |
+
"learning_rate": 4.163330089573122e-05,
|
| 691 |
+
"loss": 0.0576,
|
| 692 |
+
"mean_token_accuracy": 0.97566257417202,
|
| 693 |
+
"num_tokens": 14599342.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.2941738299904489,
|
| 698 |
+
"grad_norm": 0.14495456218719482,
|
| 699 |
+
"learning_rate": 4.159316405988308e-05,
|
| 700 |
+
"loss": 0.0527,
|
| 701 |
+
"mean_token_accuracy": 0.979561498761177,
|
| 702 |
+
"num_tokens": 14793575.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.2979942693409742,
|
| 707 |
+
"grad_norm": 0.5709442496299744,
|
| 708 |
+
"learning_rate": 4.15524834957257e-05,
|
| 709 |
+
"loss": 0.083,
|
| 710 |
+
"mean_token_accuracy": 0.9667803287506104,
|
| 711 |
+
"num_tokens": 14984217.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.3018147086914995,
|
| 716 |
+
"grad_norm": 0.18003742396831512,
|
| 717 |
+
"learning_rate": 4.1511260707704986e-05,
|
| 718 |
+
"loss": 0.0663,
|
| 719 |
+
"mean_token_accuracy": 0.9747018158435822,
|
| 720 |
+
"num_tokens": 15179803.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.30563514804202485,
|
| 725 |
+
"grad_norm": 0.21097174286842346,
|
| 726 |
+
"learning_rate": 4.146949722031929e-05,
|
| 727 |
+
"loss": 0.0507,
|
| 728 |
+
"mean_token_accuracy": 0.9834589123725891,
|
| 729 |
+
"num_tokens": 15378939.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.30945558739255014,
|
| 734 |
+
"grad_norm": 0.2961026728153229,
|
| 735 |
+
"learning_rate": 4.14271945780631e-05,
|
| 736 |
+
"loss": 0.0557,
|
| 737 |
+
"mean_token_accuracy": 0.9774508029222488,
|
| 738 |
+
"num_tokens": 15572668.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.3132760267430755,
|
| 743 |
+
"grad_norm": 0.27165207266807556,
|
| 744 |
+
"learning_rate": 4.138435434536988e-05,
|
| 745 |
+
"loss": 0.0715,
|
| 746 |
+
"mean_token_accuracy": 0.9714416980743408,
|
| 747 |
+
"num_tokens": 15766237.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.31709646609360076,
|
| 752 |
+
"grad_norm": 0.13058046996593475,
|
| 753 |
+
"learning_rate": 4.1340978106554227e-05,
|
| 754 |
+
"loss": 0.0475,
|
| 755 |
+
"mean_token_accuracy": 0.9799029618501663,
|
| 756 |
+
"num_tokens": 15964239.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.3209169054441261,
|
| 761 |
+
"grad_norm": 0.15920332074165344,
|
| 762 |
+
"learning_rate": 4.129706746575329e-05,
|
| 763 |
+
"loss": 0.0493,
|
| 764 |
+
"mean_token_accuracy": 0.9792453438043595,
|
| 765 |
+
"num_tokens": 16160992.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.3247373447946514,
|
| 770 |
+
"grad_norm": 0.19430503249168396,
|
| 771 |
+
"learning_rate": 4.125262404686742e-05,
|
| 772 |
+
"loss": 0.0625,
|
| 773 |
+
"mean_token_accuracy": 0.9731769442558289,
|
| 774 |
+
"num_tokens": 16352371.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.32855778414517667,
|
| 779 |
+
"grad_norm": 0.11031383275985718,
|
| 780 |
+
"learning_rate": 4.1207649493500154e-05,
|
| 781 |
+
"loss": 0.0509,
|
| 782 |
+
"mean_token_accuracy": 0.9789532154798508,
|
| 783 |
+
"num_tokens": 16547451.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.332378223495702,
|
| 788 |
+
"grad_norm": 0.21514596045017242,
|
| 789 |
+
"learning_rate": 4.116214546889738e-05,
|
| 790 |
+
"loss": 0.0547,
|
| 791 |
+
"mean_token_accuracy": 0.9742819428443908,
|
| 792 |
+
"num_tokens": 16739926.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.3361986628462273,
|
| 797 |
+
"grad_norm": 0.2110457569360733,
|
| 798 |
+
"learning_rate": 4.111611365588588e-05,
|
| 799 |
+
"loss": 0.0577,
|
| 800 |
+
"mean_token_accuracy": 0.9753052473068238,
|
| 801 |
+
"num_tokens": 16931998.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.34001910219675263,
|
| 806 |
+
"grad_norm": 0.5559974312782288,
|
| 807 |
+
"learning_rate": 4.106955575681106e-05,
|
| 808 |
+
"loss": 0.059,
|
| 809 |
+
"mean_token_accuracy": 0.9771996021270752,
|
| 810 |
+
"num_tokens": 17125263.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.3438395415472779,
|
| 815 |
+
"grad_norm": 0.15509715676307678,
|
| 816 |
+
"learning_rate": 4.102247349347401e-05,
|
| 817 |
+
"loss": 0.0352,
|
| 818 |
+
"mean_token_accuracy": 0.9866044849157334,
|
| 819 |
+
"num_tokens": 17323951.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.34765998089780326,
|
| 824 |
+
"grad_norm": 0.220753014087677,
|
| 825 |
+
"learning_rate": 4.097486860706782e-05,
|
| 826 |
+
"loss": 0.0497,
|
| 827 |
+
"mean_token_accuracy": 0.9807918220758438,
|
| 828 |
+
"num_tokens": 17515406.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.35148042024832854,
|
| 833 |
+
"grad_norm": 0.3094851076602936,
|
| 834 |
+
"learning_rate": 4.092674285811319e-05,
|
| 835 |
+
"loss": 0.0494,
|
| 836 |
+
"mean_token_accuracy": 0.9795226901769638,
|
| 837 |
+
"num_tokens": 17708032.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.3553008595988539,
|
| 842 |
+
"grad_norm": 0.26296278834342957,
|
| 843 |
+
"learning_rate": 4.087809802639333e-05,
|
| 844 |
+
"loss": 0.0642,
|
| 845 |
+
"mean_token_accuracy": 0.9748444706201553,
|
| 846 |
+
"num_tokens": 17896416.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.35912129894937916,
|
| 851 |
+
"grad_norm": 0.2660556137561798,
|
| 852 |
+
"learning_rate": 4.082893591088813e-05,
|
| 853 |
+
"loss": 0.0763,
|
| 854 |
+
"mean_token_accuracy": 0.9685628533363342,
|
| 855 |
+
"num_tokens": 18084617.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.3629417382999045,
|
| 860 |
+
"grad_norm": 0.11729703098535538,
|
| 861 |
+
"learning_rate": 4.077925832970764e-05,
|
| 862 |
+
"loss": 0.0565,
|
| 863 |
+
"mean_token_accuracy": 0.9762477964162827,
|
| 864 |
+
"num_tokens": 18273414.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.3667621776504298,
|
| 869 |
+
"grad_norm": 0.8921375274658203,
|
| 870 |
+
"learning_rate": 4.0729067120024805e-05,
|
| 871 |
+
"loss": 0.0422,
|
| 872 |
+
"mean_token_accuracy": 0.9814232975244522,
|
| 873 |
+
"num_tokens": 18471101.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.37058261700095513,
|
| 878 |
+
"grad_norm": 0.14002133905887604,
|
| 879 |
+
"learning_rate": 4.0678364138007574e-05,
|
| 880 |
+
"loss": 0.0529,
|
| 881 |
+
"mean_token_accuracy": 0.980798265337944,
|
| 882 |
+
"num_tokens": 18665070.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.3744030563514804,
|
| 887 |
+
"grad_norm": 0.164137601852417,
|
| 888 |
+
"learning_rate": 4.062715125875021e-05,
|
| 889 |
+
"loss": 0.0532,
|
| 890 |
+
"mean_token_accuracy": 0.978941360116005,
|
| 891 |
+
"num_tokens": 18856032.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.37822349570200575,
|
| 896 |
+
"grad_norm": 0.3199448585510254,
|
| 897 |
+
"learning_rate": 4.0575430376203964e-05,
|
| 898 |
+
"loss": 0.0546,
|
| 899 |
+
"mean_token_accuracy": 0.9780995190143585,
|
| 900 |
+
"num_tokens": 19055791.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.38204393505253104,
|
| 905 |
+
"grad_norm": 0.21233463287353516,
|
| 906 |
+
"learning_rate": 4.0523203403107025e-05,
|
| 907 |
+
"loss": 0.0455,
|
| 908 |
+
"mean_token_accuracy": 0.9815221428871155,
|
| 909 |
+
"num_tokens": 19253892.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.3858643744030564,
|
| 914 |
+
"grad_norm": 0.28013288974761963,
|
| 915 |
+
"learning_rate": 4.0470472270913807e-05,
|
| 916 |
+
"loss": 0.0532,
|
| 917 |
+
"mean_token_accuracy": 0.9790537118911743,
|
| 918 |
+
"num_tokens": 19449346.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.38968481375358166,
|
| 923 |
+
"grad_norm": 0.29040253162384033,
|
| 924 |
+
"learning_rate": 4.041723892972348e-05,
|
| 925 |
+
"loss": 0.0572,
|
| 926 |
+
"mean_token_accuracy": 0.9756559371948242,
|
| 927 |
+
"num_tokens": 19640989.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.39350525310410694,
|
| 932 |
+
"grad_norm": 0.13456866145133972,
|
| 933 |
+
"learning_rate": 4.036350534820788e-05,
|
| 934 |
+
"loss": 0.0447,
|
| 935 |
+
"mean_token_accuracy": 0.9812914997339248,
|
| 936 |
+
"num_tokens": 19834960.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.3973256924546323,
|
| 941 |
+
"grad_norm": 0.15088418126106262,
|
| 942 |
+
"learning_rate": 4.0309273513538705e-05,
|
| 943 |
+
"loss": 0.0543,
|
| 944 |
+
"mean_token_accuracy": 0.97936552464962,
|
| 945 |
+
"num_tokens": 20025923.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.40114613180515757,
|
| 950 |
+
"grad_norm": 0.1476389616727829,
|
| 951 |
+
"learning_rate": 4.025454543131401e-05,
|
| 952 |
+
"loss": 0.0567,
|
| 953 |
+
"mean_token_accuracy": 0.9769350290298462,
|
| 954 |
+
"num_tokens": 20215104.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.4049665711556829,
|
| 959 |
+
"grad_norm": 0.24653594195842743,
|
| 960 |
+
"learning_rate": 4.019932312548405e-05,
|
| 961 |
+
"loss": 0.0609,
|
| 962 |
+
"mean_token_accuracy": 0.9765990972518921,
|
| 963 |
+
"num_tokens": 20402833.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.4087870105062082,
|
| 968 |
+
"grad_norm": 0.17821958661079407,
|
| 969 |
+
"learning_rate": 4.0143608638276414e-05,
|
| 970 |
+
"loss": 0.0483,
|
| 971 |
+
"mean_token_accuracy": 0.9801214545965194,
|
| 972 |
+
"num_tokens": 20599454.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.41260744985673353,
|
| 977 |
+
"grad_norm": 0.08458976447582245,
|
| 978 |
+
"learning_rate": 4.008740403012052e-05,
|
| 979 |
+
"loss": 0.0445,
|
| 980 |
+
"mean_token_accuracy": 0.9814120203256607,
|
| 981 |
+
"num_tokens": 20793274.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.4164278892072588,
|
| 986 |
+
"grad_norm": 0.16333456337451935,
|
| 987 |
+
"learning_rate": 4.0030711379571394e-05,
|
| 988 |
+
"loss": 0.0558,
|
| 989 |
+
"mean_token_accuracy": 0.9752419918775559,
|
| 990 |
+
"num_tokens": 20983430.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.42024832855778416,
|
| 995 |
+
"grad_norm": 0.32965436577796936,
|
| 996 |
+
"learning_rate": 3.997353278323283e-05,
|
| 997 |
+
"loss": 0.0543,
|
| 998 |
+
"mean_token_accuracy": 0.9790427118539811,
|
| 999 |
+
"num_tokens": 21174872.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.42406876790830944,
|
| 1004 |
+
"grad_norm": 0.23592133820056915,
|
| 1005 |
+
"learning_rate": 3.9915870355679814e-05,
|
| 1006 |
+
"loss": 0.0518,
|
| 1007 |
+
"mean_token_accuracy": 0.9799334049224854,
|
| 1008 |
+
"num_tokens": 21363955.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.4278892072588348,
|
| 1013 |
+
"grad_norm": 0.2007017284631729,
|
| 1014 |
+
"learning_rate": 3.985772622938037e-05,
|
| 1015 |
+
"loss": 0.0693,
|
| 1016 |
+
"mean_token_accuracy": 0.971209266781807,
|
| 1017 |
+
"num_tokens": 21554937.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.43170964660936006,
|
| 1022 |
+
"grad_norm": 0.22252358496189117,
|
| 1023 |
+
"learning_rate": 3.979910255461665e-05,
|
| 1024 |
+
"loss": 0.0497,
|
| 1025 |
+
"mean_token_accuracy": 0.9803436905145645,
|
| 1026 |
+
"num_tokens": 21742640.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.4355300859598854,
|
| 1031 |
+
"grad_norm": 0.28110989928245544,
|
| 1032 |
+
"learning_rate": 3.9740001499405454e-05,
|
| 1033 |
+
"loss": 0.043,
|
| 1034 |
+
"mean_token_accuracy": 0.983144435286522,
|
| 1035 |
+
"num_tokens": 21936022.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.4393505253104107,
|
| 1040 |
+
"grad_norm": 0.5248743295669556,
|
| 1041 |
+
"learning_rate": 3.968042524941802e-05,
|
| 1042 |
+
"loss": 0.0556,
|
| 1043 |
+
"mean_token_accuracy": 0.976366838812828,
|
| 1044 |
+
"num_tokens": 22131602.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.44317096466093603,
|
| 1049 |
+
"grad_norm": 0.15875911712646484,
|
| 1050 |
+
"learning_rate": 3.9620376007899225e-05,
|
| 1051 |
+
"loss": 0.054,
|
| 1052 |
+
"mean_token_accuracy": 0.9768787533044815,
|
| 1053 |
+
"num_tokens": 22325559.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.4469914040114613,
|
| 1058 |
+
"grad_norm": 0.1441507190465927,
|
| 1059 |
+
"learning_rate": 3.955985599558606e-05,
|
| 1060 |
+
"loss": 0.0498,
|
| 1061 |
+
"mean_token_accuracy": 0.9814888626337052,
|
| 1062 |
+
"num_tokens": 22517905.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.45081184336198665,
|
| 1067 |
+
"grad_norm": 0.1760101318359375,
|
| 1068 |
+
"learning_rate": 3.949886745062554e-05,
|
| 1069 |
+
"loss": 0.0576,
|
| 1070 |
+
"mean_token_accuracy": 0.9776659190654755,
|
| 1071 |
+
"num_tokens": 22708766.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.45463228271251194,
|
| 1076 |
+
"grad_norm": 0.297606498003006,
|
| 1077 |
+
"learning_rate": 3.943741262849194e-05,
|
| 1078 |
+
"loss": 0.0609,
|
| 1079 |
+
"mean_token_accuracy": 0.975119811296463,
|
| 1080 |
+
"num_tokens": 22897064.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.4584527220630373,
|
| 1085 |
+
"grad_norm": 0.26312318444252014,
|
| 1086 |
+
"learning_rate": 3.937549380190334e-05,
|
| 1087 |
+
"loss": 0.0578,
|
| 1088 |
+
"mean_token_accuracy": 0.9778578579425812,
|
| 1089 |
+
"num_tokens": 23088878.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.46227316141356256,
|
| 1094 |
+
"grad_norm": 0.2967909276485443,
|
| 1095 |
+
"learning_rate": 3.931311326073763e-05,
|
| 1096 |
+
"loss": 0.0557,
|
| 1097 |
+
"mean_token_accuracy": 0.9773400127887726,
|
| 1098 |
+
"num_tokens": 23288227.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.46609360076408785,
|
| 1103 |
+
"grad_norm": 0.15036430954933167,
|
| 1104 |
+
"learning_rate": 3.9250273311947766e-05,
|
| 1105 |
+
"loss": 0.0516,
|
| 1106 |
+
"mean_token_accuracy": 0.9784754246473313,
|
| 1107 |
+
"num_tokens": 23483144.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.4699140401146132,
|
| 1112 |
+
"grad_norm": 0.27099692821502686,
|
| 1113 |
+
"learning_rate": 3.918697627947652e-05,
|
| 1114 |
+
"loss": 0.0385,
|
| 1115 |
+
"mean_token_accuracy": 0.9838829040527344,
|
| 1116 |
+
"num_tokens": 23678857.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.47373447946513847,
|
| 1121 |
+
"grad_norm": 0.15760372579097748,
|
| 1122 |
+
"learning_rate": 3.912322450417046e-05,
|
| 1123 |
+
"loss": 0.0525,
|
| 1124 |
+
"mean_token_accuracy": 0.9788579672574997,
|
| 1125 |
+
"num_tokens": 23870926.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.4775549188156638,
|
| 1130 |
+
"grad_norm": 0.12999805808067322,
|
| 1131 |
+
"learning_rate": 3.905902034369347e-05,
|
| 1132 |
+
"loss": 0.0508,
|
| 1133 |
+
"mean_token_accuracy": 0.9793928295373917,
|
| 1134 |
+
"num_tokens": 24064759.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.4813753581661891,
|
| 1139 |
+
"grad_norm": 0.16970236599445343,
|
| 1140 |
+
"learning_rate": 3.899436617243947e-05,
|
| 1141 |
+
"loss": 0.0536,
|
| 1142 |
+
"mean_token_accuracy": 0.977686858177185,
|
| 1143 |
+
"num_tokens": 24255210.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.48519579751671443,
|
| 1148 |
+
"grad_norm": 0.1461954116821289,
|
| 1149 |
+
"learning_rate": 3.892926438144468e-05,
|
| 1150 |
+
"loss": 0.052,
|
| 1151 |
+
"mean_token_accuracy": 0.9788082480430603,
|
| 1152 |
+
"num_tokens": 24450330.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.4890162368672397,
|
| 1157 |
+
"grad_norm": 0.0894608348608017,
|
| 1158 |
+
"learning_rate": 3.886371737829914e-05,
|
| 1159 |
+
"loss": 0.0493,
|
| 1160 |
+
"mean_token_accuracy": 0.9786105424165725,
|
| 1161 |
+
"num_tokens": 24644117.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.49283667621776506,
|
| 1166 |
+
"grad_norm": 0.11515697836875916,
|
| 1167 |
+
"learning_rate": 3.8797727587057716e-05,
|
| 1168 |
+
"loss": 0.0508,
|
| 1169 |
+
"mean_token_accuracy": 0.9799627989530564,
|
| 1170 |
+
"num_tokens": 24836722.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.49665711556829034,
|
| 1175 |
+
"grad_norm": 0.1395769864320755,
|
| 1176 |
+
"learning_rate": 3.8731297448150406e-05,
|
| 1177 |
+
"loss": 0.0514,
|
| 1178 |
+
"mean_token_accuracy": 0.9781762450933457,
|
| 1179 |
+
"num_tokens": 25028141.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.5004775549188156,
|
| 1184 |
+
"grad_norm": 0.12115350365638733,
|
| 1185 |
+
"learning_rate": 3.8664429418292145e-05,
|
| 1186 |
+
"loss": 0.0509,
|
| 1187 |
+
"mean_token_accuracy": 0.979265108704567,
|
| 1188 |
+
"num_tokens": 25221128.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.504297994269341,
|
| 1193 |
+
"grad_norm": 0.13618040084838867,
|
| 1194 |
+
"learning_rate": 3.859712597039192e-05,
|
| 1195 |
+
"loss": 0.0465,
|
| 1196 |
+
"mean_token_accuracy": 0.982085543870926,
|
| 1197 |
+
"num_tokens": 25414361.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.5081184336198663,
|
| 1202 |
+
"grad_norm": 0.18155395984649658,
|
| 1203 |
+
"learning_rate": 3.852938959346128e-05,
|
| 1204 |
+
"loss": 0.0567,
|
| 1205 |
+
"mean_token_accuracy": 0.9777590453624725,
|
| 1206 |
+
"num_tokens": 25605235.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.5119388729703916,
|
| 1211 |
+
"grad_norm": 0.15678228437900543,
|
| 1212 |
+
"learning_rate": 3.846122279252237e-05,
|
| 1213 |
+
"loss": 0.0389,
|
| 1214 |
+
"mean_token_accuracy": 0.9848253726959229,
|
| 1215 |
+
"num_tokens": 25801181.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.5157593123209169,
|
| 1220 |
+
"grad_norm": 0.26756489276885986,
|
| 1221 |
+
"learning_rate": 3.839262808851524e-05,
|
| 1222 |
+
"loss": 0.0676,
|
| 1223 |
+
"mean_token_accuracy": 0.9738009810447693,
|
| 1224 |
+
"num_tokens": 25988331.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.5195797516714422,
|
| 1229 |
+
"grad_norm": 0.1596137434244156,
|
| 1230 |
+
"learning_rate": 3.832360801820459e-05,
|
| 1231 |
+
"loss": 0.0402,
|
| 1232 |
+
"mean_token_accuracy": 0.9835259169340134,
|
| 1233 |
+
"num_tokens": 26183909.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.5234001910219676,
|
| 1238 |
+
"grad_norm": 0.2432740032672882,
|
| 1239 |
+
"learning_rate": 3.825416513408604e-05,
|
| 1240 |
+
"loss": 0.0441,
|
| 1241 |
+
"mean_token_accuracy": 0.9817402601242066,
|
| 1242 |
+
"num_tokens": 26378511.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.5272206303724928,
|
| 1247 |
+
"grad_norm": 0.11702600121498108,
|
| 1248 |
+
"learning_rate": 3.818430200429163e-05,
|
| 1249 |
+
"loss": 0.0697,
|
| 1250 |
+
"mean_token_accuracy": 0.9732681095600129,
|
| 1251 |
+
"num_tokens": 26569560.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.5310410697230181,
|
| 1256 |
+
"grad_norm": 0.2008005529642105,
|
| 1257 |
+
"learning_rate": 3.811402121249493e-05,
|
| 1258 |
+
"loss": 0.0513,
|
| 1259 |
+
"mean_token_accuracy": 0.9787397295236587,
|
| 1260 |
+
"num_tokens": 26762807.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.5348615090735435,
|
| 1265 |
+
"grad_norm": 0.1823837012052536,
|
| 1266 |
+
"learning_rate": 3.8043325357815445e-05,
|
| 1267 |
+
"loss": 0.0391,
|
| 1268 |
+
"mean_token_accuracy": 0.9833790808916092,
|
| 1269 |
+
"num_tokens": 26959446.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.5386819484240688,
|
| 1274 |
+
"grad_norm": 0.19221177697181702,
|
| 1275 |
+
"learning_rate": 3.797221705472252e-05,
|
| 1276 |
+
"loss": 0.039,
|
| 1277 |
+
"mean_token_accuracy": 0.9832836896181106,
|
| 1278 |
+
"num_tokens": 27156708.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.542502387774594,
|
| 1283 |
+
"grad_norm": 0.1583368480205536,
|
| 1284 |
+
"learning_rate": 3.790069893293862e-05,
|
| 1285 |
+
"loss": 0.0438,
|
| 1286 |
+
"mean_token_accuracy": 0.9821615636348724,
|
| 1287 |
+
"num_tokens": 27348513.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.5463228271251194,
|
| 1292 |
+
"grad_norm": 0.14715953171253204,
|
| 1293 |
+
"learning_rate": 3.7828773637342113e-05,
|
| 1294 |
+
"loss": 0.0519,
|
| 1295 |
+
"mean_token_accuracy": 0.9778920650482178,
|
| 1296 |
+
"num_tokens": 27540580.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.5501432664756447,
|
| 1301 |
+
"grad_norm": 0.20188972353935242,
|
| 1302 |
+
"learning_rate": 3.775644382786943e-05,
|
| 1303 |
+
"loss": 0.0371,
|
| 1304 |
+
"mean_token_accuracy": 0.9840046137571334,
|
| 1305 |
+
"num_tokens": 27738101.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.55396370582617,
|
| 1310 |
+
"grad_norm": 0.15126635134220123,
|
| 1311 |
+
"learning_rate": 3.768371217941672e-05,
|
| 1312 |
+
"loss": 0.0506,
|
| 1313 |
+
"mean_token_accuracy": 0.9788207143545151,
|
| 1314 |
+
"num_tokens": 27931754.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.5577841451766953,
|
| 1319 |
+
"grad_norm": 0.09126510471105576,
|
| 1320 |
+
"learning_rate": 3.761058138174091e-05,
|
| 1321 |
+
"loss": 0.0387,
|
| 1322 |
+
"mean_token_accuracy": 0.9840620666742325,
|
| 1323 |
+
"num_tokens": 28122701.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.5616045845272206,
|
| 1328 |
+
"grad_norm": 0.41348138451576233,
|
| 1329 |
+
"learning_rate": 3.753705413936023e-05,
|
| 1330 |
+
"loss": 0.0563,
|
| 1331 |
+
"mean_token_accuracy": 0.9763787448406219,
|
| 1332 |
+
"num_tokens": 28312019.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.565425023877746,
|
| 1337 |
+
"grad_norm": 0.10064998269081116,
|
| 1338 |
+
"learning_rate": 3.746313317145419e-05,
|
| 1339 |
+
"loss": 0.0644,
|
| 1340 |
+
"mean_token_accuracy": 0.9752407640218734,
|
| 1341 |
+
"num_tokens": 28497924.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.5692454632282713,
|
| 1346 |
+
"grad_norm": 0.210185706615448,
|
| 1347 |
+
"learning_rate": 3.7388821211763076e-05,
|
| 1348 |
+
"loss": 0.0528,
|
| 1349 |
+
"mean_token_accuracy": 0.9797067105770111,
|
| 1350 |
+
"num_tokens": 28689547.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.5730659025787965,
|
| 1355 |
+
"grad_norm": 0.39739805459976196,
|
| 1356 |
+
"learning_rate": 3.7314121008486755e-05,
|
| 1357 |
+
"loss": 0.0461,
|
| 1358 |
+
"mean_token_accuracy": 0.9805936962366104,
|
| 1359 |
+
"num_tokens": 28883672.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.5768863419293219,
|
| 1364 |
+
"grad_norm": 0.14409542083740234,
|
| 1365 |
+
"learning_rate": 3.723903532418312e-05,
|
| 1366 |
+
"loss": 0.0679,
|
| 1367 |
+
"mean_token_accuracy": 0.9712859630584717,
|
| 1368 |
+
"num_tokens": 29068286.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.5807067812798472,
|
| 1373 |
+
"grad_norm": 0.2085961103439331,
|
| 1374 |
+
"learning_rate": 3.716356693566589e-05,
|
| 1375 |
+
"loss": 0.0637,
|
| 1376 |
+
"mean_token_accuracy": 0.9745287299156189,
|
| 1377 |
+
"num_tokens": 29257579.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"epoch": 0.5845272206303725,
|
| 1382 |
+
"grad_norm": 0.15800058841705322,
|
| 1383 |
+
"learning_rate": 3.708771863390193e-05,
|
| 1384 |
+
"loss": 0.0476,
|
| 1385 |
+
"mean_token_accuracy": 0.9808867007493973,
|
| 1386 |
+
"num_tokens": 29454887.0,
|
| 1387 |
+
"step": 765
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"epoch": 0.5883476599808978,
|
| 1391 |
+
"grad_norm": 0.35635408759117126,
|
| 1392 |
+
"learning_rate": 3.701149322390802e-05,
|
| 1393 |
+
"loss": 0.0449,
|
| 1394 |
+
"mean_token_accuracy": 0.9803213357925415,
|
| 1395 |
+
"num_tokens": 29651591.0,
|
| 1396 |
+
"step": 770
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.5921680993314231,
|
| 1400 |
+
"grad_norm": 0.15421795845031738,
|
| 1401 |
+
"learning_rate": 3.693489352464713e-05,
|
| 1402 |
+
"loss": 0.0417,
|
| 1403 |
+
"mean_token_accuracy": 0.9807868421077728,
|
| 1404 |
+
"num_tokens": 29845157.0,
|
| 1405 |
+
"step": 775
|
| 1406 |
+
},
|
| 1407 |
+
{
|
| 1408 |
+
"epoch": 0.5959885386819485,
|
| 1409 |
+
"grad_norm": 0.22060208022594452,
|
| 1410 |
+
"learning_rate": 3.68579223689242e-05,
|
| 1411 |
+
"loss": 0.0644,
|
| 1412 |
+
"mean_token_accuracy": 0.9709617555141449,
|
| 1413 |
+
"num_tokens": 30034025.0,
|
| 1414 |
+
"step": 780
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"epoch": 0.5998089780324737,
|
| 1418 |
+
"grad_norm": 0.23613664507865906,
|
| 1419 |
+
"learning_rate": 3.678058260328131e-05,
|
| 1420 |
+
"loss": 0.0477,
|
| 1421 |
+
"mean_token_accuracy": 0.9798530042171478,
|
| 1422 |
+
"num_tokens": 30229035.0,
|
| 1423 |
+
"step": 785
|
| 1424 |
+
},
|
| 1425 |
+
{
|
| 1426 |
+
"epoch": 0.603629417382999,
|
| 1427 |
+
"grad_norm": 0.12523150444030762,
|
| 1428 |
+
"learning_rate": 3.670287708789248e-05,
|
| 1429 |
+
"loss": 0.0524,
|
| 1430 |
+
"mean_token_accuracy": 0.9785983085632324,
|
| 1431 |
+
"num_tokens": 30418474.0,
|
| 1432 |
+
"step": 790
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"epoch": 0.6074498567335244,
|
| 1436 |
+
"grad_norm": 0.18749313056468964,
|
| 1437 |
+
"learning_rate": 3.6624808696457835e-05,
|
| 1438 |
+
"loss": 0.0763,
|
| 1439 |
+
"mean_token_accuracy": 0.9689610749483109,
|
| 1440 |
+
"num_tokens": 30607423.0,
|
| 1441 |
+
"step": 795
|
| 1442 |
+
},
|
| 1443 |
+
{
|
| 1444 |
+
"epoch": 0.6112702960840497,
|
| 1445 |
+
"grad_norm": 0.14081282913684845,
|
| 1446 |
+
"learning_rate": 3.6546380316097366e-05,
|
| 1447 |
+
"loss": 0.0455,
|
| 1448 |
+
"mean_token_accuracy": 0.9808779299259186,
|
| 1449 |
+
"num_tokens": 30803864.0,
|
| 1450 |
+
"step": 800
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"epoch": 0.6150907354345749,
|
| 1454 |
+
"grad_norm": 0.13193558156490326,
|
| 1455 |
+
"learning_rate": 3.646759484724415e-05,
|
| 1456 |
+
"loss": 0.0523,
|
| 1457 |
+
"mean_token_accuracy": 0.9788305640220643,
|
| 1458 |
+
"num_tokens": 30995233.0,
|
| 1459 |
+
"step": 805
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 0.6189111747851003,
|
| 1463 |
+
"grad_norm": 0.2833406329154968,
|
| 1464 |
+
"learning_rate": 3.638845520353711e-05,
|
| 1465 |
+
"loss": 0.0419,
|
| 1466 |
+
"mean_token_accuracy": 0.981367215514183,
|
| 1467 |
+
"num_tokens": 31187454.0,
|
| 1468 |
+
"step": 810
|
| 1469 |
+
},
|
| 1470 |
+
{
|
| 1471 |
+
"epoch": 0.6227316141356256,
|
| 1472 |
+
"grad_norm": 0.11428867280483246,
|
| 1473 |
+
"learning_rate": 3.6308964311713196e-05,
|
| 1474 |
+
"loss": 0.0408,
|
| 1475 |
+
"mean_token_accuracy": 0.9843004494905472,
|
| 1476 |
+
"num_tokens": 31388786.0,
|
| 1477 |
+
"step": 815
|
| 1478 |
+
},
|
| 1479 |
+
{
|
| 1480 |
+
"epoch": 0.626552053486151,
|
| 1481 |
+
"grad_norm": 0.15500947833061218,
|
| 1482 |
+
"learning_rate": 3.6229125111499226e-05,
|
| 1483 |
+
"loss": 0.0448,
|
| 1484 |
+
"mean_token_accuracy": 0.9808977574110032,
|
| 1485 |
+
"num_tokens": 31585859.0,
|
| 1486 |
+
"step": 820
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"epoch": 0.6303724928366762,
|
| 1490 |
+
"grad_norm": 0.18459661304950714,
|
| 1491 |
+
"learning_rate": 3.6148940555503124e-05,
|
| 1492 |
+
"loss": 0.0612,
|
| 1493 |
+
"mean_token_accuracy": 0.973130851984024,
|
| 1494 |
+
"num_tokens": 31781245.0,
|
| 1495 |
+
"step": 825
|
| 1496 |
+
},
|
| 1497 |
+
{
|
| 1498 |
+
"epoch": 0.6341929321872015,
|
| 1499 |
+
"grad_norm": 0.23240184783935547,
|
| 1500 |
+
"learning_rate": 3.6068413609104744e-05,
|
| 1501 |
+
"loss": 0.0596,
|
| 1502 |
+
"mean_token_accuracy": 0.9753832727670669,
|
| 1503 |
+
"num_tokens": 31968375.0,
|
| 1504 |
+
"step": 830
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"epoch": 0.6380133715377269,
|
| 1508 |
+
"grad_norm": 0.3594913184642792,
|
| 1509 |
+
"learning_rate": 3.598754725034619e-05,
|
| 1510 |
+
"loss": 0.0394,
|
| 1511 |
+
"mean_token_accuracy": 0.9833639293909073,
|
| 1512 |
+
"num_tokens": 32152583.0,
|
| 1513 |
+
"step": 835
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"epoch": 0.6418338108882522,
|
| 1517 |
+
"grad_norm": 0.23351864516735077,
|
| 1518 |
+
"learning_rate": 3.5906344469821684e-05,
|
| 1519 |
+
"loss": 0.0599,
|
| 1520 |
+
"mean_token_accuracy": 0.9735638827085495,
|
| 1521 |
+
"num_tokens": 32339634.0,
|
| 1522 |
+
"step": 840
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.6456542502387774,
|
| 1526 |
+
"grad_norm": 0.15344874560832977,
|
| 1527 |
+
"learning_rate": 3.5824808270567e-05,
|
| 1528 |
+
"loss": 0.0588,
|
| 1529 |
+
"mean_token_accuracy": 0.977136743068695,
|
| 1530 |
+
"num_tokens": 32534153.0,
|
| 1531 |
+
"step": 845
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"epoch": 0.6494746895893028,
|
| 1535 |
+
"grad_norm": 0.24362897872924805,
|
| 1536 |
+
"learning_rate": 3.574294166794837e-05,
|
| 1537 |
+
"loss": 0.0452,
|
| 1538 |
+
"mean_token_accuracy": 0.9823481678962708,
|
| 1539 |
+
"num_tokens": 32725350.0,
|
| 1540 |
+
"step": 850
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"epoch": 0.6532951289398281,
|
| 1544 |
+
"grad_norm": 0.1514531672000885,
|
| 1545 |
+
"learning_rate": 3.566074768955096e-05,
|
| 1546 |
+
"loss": 0.0567,
|
| 1547 |
+
"mean_token_accuracy": 0.9780875772237778,
|
| 1548 |
+
"num_tokens": 32917041.0,
|
| 1549 |
+
"step": 855
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"epoch": 0.6571155682903533,
|
| 1553 |
+
"grad_norm": 0.15000875294208527,
|
| 1554 |
+
"learning_rate": 3.557822937506696e-05,
|
| 1555 |
+
"loss": 0.073,
|
| 1556 |
+
"mean_token_accuracy": 0.9712677448987961,
|
| 1557 |
+
"num_tokens": 33110434.0,
|
| 1558 |
+
"step": 860
|
| 1559 |
+
},
|
| 1560 |
+
{
|
| 1561 |
+
"epoch": 0.6609360076408787,
|
| 1562 |
+
"grad_norm": 0.2099716067314148,
|
| 1563 |
+
"learning_rate": 3.549538977618311e-05,
|
| 1564 |
+
"loss": 0.0682,
|
| 1565 |
+
"mean_token_accuracy": 0.969989937543869,
|
| 1566 |
+
"num_tokens": 33301486.0,
|
| 1567 |
+
"step": 865
|
| 1568 |
+
},
|
| 1569 |
+
{
|
| 1570 |
+
"epoch": 0.664756446991404,
|
| 1571 |
+
"grad_norm": 1.0591760873794556,
|
| 1572 |
+
"learning_rate": 3.5412231956467874e-05,
|
| 1573 |
+
"loss": 0.0622,
|
| 1574 |
+
"mean_token_accuracy": 0.9767576843500138,
|
| 1575 |
+
"num_tokens": 33494914.0,
|
| 1576 |
+
"step": 870
|
| 1577 |
+
},
|
| 1578 |
+
{
|
| 1579 |
+
"epoch": 0.6685768863419294,
|
| 1580 |
+
"grad_norm": 0.18039724230766296,
|
| 1581 |
+
"learning_rate": 3.5328758991258146e-05,
|
| 1582 |
+
"loss": 0.0636,
|
| 1583 |
+
"mean_token_accuracy": 0.9752348959445953,
|
| 1584 |
+
"num_tokens": 33687748.0,
|
| 1585 |
+
"step": 875
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 0.6723973256924546,
|
| 1589 |
+
"grad_norm": 0.37878313660621643,
|
| 1590 |
+
"learning_rate": 3.524497396754551e-05,
|
| 1591 |
+
"loss": 0.0586,
|
| 1592 |
+
"mean_token_accuracy": 0.9764747142791748,
|
| 1593 |
+
"num_tokens": 33880399.0,
|
| 1594 |
+
"step": 880
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"epoch": 0.6762177650429799,
|
| 1598 |
+
"grad_norm": 0.1831691712141037,
|
| 1599 |
+
"learning_rate": 3.5160879983862046e-05,
|
| 1600 |
+
"loss": 0.0447,
|
| 1601 |
+
"mean_token_accuracy": 0.9823864996433258,
|
| 1602 |
+
"num_tokens": 34075282.0,
|
| 1603 |
+
"step": 885
|
| 1604 |
+
},
|
| 1605 |
+
{
|
| 1606 |
+
"epoch": 0.6800382043935053,
|
| 1607 |
+
"grad_norm": 0.10887472331523895,
|
| 1608 |
+
"learning_rate": 3.5076480150165817e-05,
|
| 1609 |
+
"loss": 0.0339,
|
| 1610 |
+
"mean_token_accuracy": 0.9854964166879654,
|
| 1611 |
+
"num_tokens": 34273329.0,
|
| 1612 |
+
"step": 890
|
| 1613 |
+
},
|
| 1614 |
+
{
|
| 1615 |
+
"epoch": 0.6838586437440306,
|
| 1616 |
+
"grad_norm": 0.18240153789520264,
|
| 1617 |
+
"learning_rate": 3.4991777587725774e-05,
|
| 1618 |
+
"loss": 0.0556,
|
| 1619 |
+
"mean_token_accuracy": 0.9771496653556824,
|
| 1620 |
+
"num_tokens": 34462663.0,
|
| 1621 |
+
"step": 895
|
| 1622 |
+
},
|
| 1623 |
+
{
|
| 1624 |
+
"epoch": 0.6876790830945558,
|
| 1625 |
+
"grad_norm": 0.10713613778352737,
|
| 1626 |
+
"learning_rate": 3.4906775429006386e-05,
|
| 1627 |
+
"loss": 0.0441,
|
| 1628 |
+
"mean_token_accuracy": 0.9816964775323868,
|
| 1629 |
+
"num_tokens": 34658745.0,
|
| 1630 |
+
"step": 900
|
| 1631 |
+
},
|
| 1632 |
+
{
|
| 1633 |
+
"epoch": 0.6914995224450812,
|
| 1634 |
+
"grad_norm": 0.39516904950141907,
|
| 1635 |
+
"learning_rate": 3.4821476817551755e-05,
|
| 1636 |
+
"loss": 0.0602,
|
| 1637 |
+
"mean_token_accuracy": 0.9714990973472595,
|
| 1638 |
+
"num_tokens": 34849108.0,
|
| 1639 |
+
"step": 905
|
| 1640 |
+
},
|
| 1641 |
+
{
|
| 1642 |
+
"epoch": 0.6953199617956065,
|
| 1643 |
+
"grad_norm": 0.17023275792598724,
|
| 1644 |
+
"learning_rate": 3.473588490786939e-05,
|
| 1645 |
+
"loss": 0.0444,
|
| 1646 |
+
"mean_token_accuracy": 0.9812820851802826,
|
| 1647 |
+
"num_tokens": 35045821.0,
|
| 1648 |
+
"step": 910
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.6991404011461319,
|
| 1652 |
+
"grad_norm": 0.14729702472686768,
|
| 1653 |
+
"learning_rate": 3.465000286531353e-05,
|
| 1654 |
+
"loss": 0.0429,
|
| 1655 |
+
"mean_token_accuracy": 0.980825787782669,
|
| 1656 |
+
"num_tokens": 35242509.0,
|
| 1657 |
+
"step": 915
|
| 1658 |
+
},
|
| 1659 |
+
{
|
| 1660 |
+
"epoch": 0.7029608404966571,
|
| 1661 |
+
"grad_norm": 0.1457536220550537,
|
| 1662 |
+
"learning_rate": 3.456383386596808e-05,
|
| 1663 |
+
"loss": 0.0414,
|
| 1664 |
+
"mean_token_accuracy": 0.9837114304304123,
|
| 1665 |
+
"num_tokens": 35435255.0,
|
| 1666 |
+
"step": 920
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"epoch": 0.7067812798471824,
|
| 1670 |
+
"grad_norm": 0.18686139583587646,
|
| 1671 |
+
"learning_rate": 3.447738109652918e-05,
|
| 1672 |
+
"loss": 0.0538,
|
| 1673 |
+
"mean_token_accuracy": 0.9776090174913407,
|
| 1674 |
+
"num_tokens": 35630886.0,
|
| 1675 |
+
"step": 925
|
| 1676 |
+
},
|
| 1677 |
+
{
|
| 1678 |
+
"epoch": 0.7106017191977078,
|
| 1679 |
+
"grad_norm": 0.20606687664985657,
|
| 1680 |
+
"learning_rate": 3.439064775418731e-05,
|
| 1681 |
+
"loss": 0.0603,
|
| 1682 |
+
"mean_token_accuracy": 0.9773728638887406,
|
| 1683 |
+
"num_tokens": 35826949.0,
|
| 1684 |
+
"step": 930
|
| 1685 |
+
},
|
| 1686 |
+
{
|
| 1687 |
+
"epoch": 0.7144221585482331,
|
| 1688 |
+
"grad_norm": 0.12486971914768219,
|
| 1689 |
+
"learning_rate": 3.430363704650912e-05,
|
| 1690 |
+
"loss": 0.0565,
|
| 1691 |
+
"mean_token_accuracy": 0.9752701312303543,
|
| 1692 |
+
"num_tokens": 36020207.0,
|
| 1693 |
+
"step": 935
|
| 1694 |
+
},
|
| 1695 |
+
{
|
| 1696 |
+
"epoch": 0.7182425978987583,
|
| 1697 |
+
"grad_norm": 0.15200285613536835,
|
| 1698 |
+
"learning_rate": 3.421635219131872e-05,
|
| 1699 |
+
"loss": 0.037,
|
| 1700 |
+
"mean_token_accuracy": 0.9842792868614196,
|
| 1701 |
+
"num_tokens": 36214070.0,
|
| 1702 |
+
"step": 940
|
| 1703 |
+
},
|
| 1704 |
+
{
|
| 1705 |
+
"epoch": 0.7220630372492837,
|
| 1706 |
+
"grad_norm": 0.09536109864711761,
|
| 1707 |
+
"learning_rate": 3.412879641657875e-05,
|
| 1708 |
+
"loss": 0.0448,
|
| 1709 |
+
"mean_token_accuracy": 0.9808387368917465,
|
| 1710 |
+
"num_tokens": 36404816.0,
|
| 1711 |
+
"step": 945
|
| 1712 |
+
},
|
| 1713 |
+
{
|
| 1714 |
+
"epoch": 0.725883476599809,
|
| 1715 |
+
"grad_norm": 0.22405336797237396,
|
| 1716 |
+
"learning_rate": 3.404097296027098e-05,
|
| 1717 |
+
"loss": 0.047,
|
| 1718 |
+
"mean_token_accuracy": 0.9801785320043563,
|
| 1719 |
+
"num_tokens": 36600303.0,
|
| 1720 |
+
"step": 950
|
| 1721 |
+
},
|
| 1722 |
+
{
|
| 1723 |
+
"epoch": 0.7297039159503342,
|
| 1724 |
+
"grad_norm": 0.1923264116048813,
|
| 1725 |
+
"learning_rate": 3.395288507027655e-05,
|
| 1726 |
+
"loss": 0.0482,
|
| 1727 |
+
"mean_token_accuracy": 0.9776667267084121,
|
| 1728 |
+
"num_tokens": 36794087.0,
|
| 1729 |
+
"step": 955
|
| 1730 |
+
},
|
| 1731 |
+
{
|
| 1732 |
+
"epoch": 0.7335243553008596,
|
| 1733 |
+
"grad_norm": 0.24032950401306152,
|
| 1734 |
+
"learning_rate": 3.386453600425588e-05,
|
| 1735 |
+
"loss": 0.0582,
|
| 1736 |
+
"mean_token_accuracy": 0.9770094871520996,
|
| 1737 |
+
"num_tokens": 36990475.0,
|
| 1738 |
+
"step": 960
|
| 1739 |
+
},
|
| 1740 |
+
{
|
| 1741 |
+
"epoch": 0.7373447946513849,
|
| 1742 |
+
"grad_norm": 0.23802198469638824,
|
| 1743 |
+
"learning_rate": 3.3775929029528174e-05,
|
| 1744 |
+
"loss": 0.044,
|
| 1745 |
+
"mean_token_accuracy": 0.9814777672290802,
|
| 1746 |
+
"num_tokens": 37184588.0,
|
| 1747 |
+
"step": 965
|
| 1748 |
+
},
|
| 1749 |
+
{
|
| 1750 |
+
"epoch": 0.7411652340019103,
|
| 1751 |
+
"grad_norm": 0.2588277757167816,
|
| 1752 |
+
"learning_rate": 3.368706742295061e-05,
|
| 1753 |
+
"loss": 0.0413,
|
| 1754 |
+
"mean_token_accuracy": 0.9830630749464035,
|
| 1755 |
+
"num_tokens": 37372001.0,
|
| 1756 |
+
"step": 970
|
| 1757 |
+
},
|
| 1758 |
+
{
|
| 1759 |
+
"epoch": 0.7449856733524355,
|
| 1760 |
+
"grad_norm": 0.14313346147537231,
|
| 1761 |
+
"learning_rate": 3.359795447079712e-05,
|
| 1762 |
+
"loss": 0.0679,
|
| 1763 |
+
"mean_token_accuracy": 0.9724821150302887,
|
| 1764 |
+
"num_tokens": 37559141.0,
|
| 1765 |
+
"step": 975
|
| 1766 |
+
},
|
| 1767 |
+
{
|
| 1768 |
+
"epoch": 0.7488061127029608,
|
| 1769 |
+
"grad_norm": 0.06837604939937592,
|
| 1770 |
+
"learning_rate": 3.3508593468636916e-05,
|
| 1771 |
+
"loss": 0.0465,
|
| 1772 |
+
"mean_token_accuracy": 0.9818051338195801,
|
| 1773 |
+
"num_tokens": 37756838.0,
|
| 1774 |
+
"step": 980
|
| 1775 |
+
},
|
| 1776 |
+
{
|
| 1777 |
+
"epoch": 0.7526265520534862,
|
| 1778 |
+
"grad_norm": 0.16657404601573944,
|
| 1779 |
+
"learning_rate": 3.341898772121256e-05,
|
| 1780 |
+
"loss": 0.0409,
|
| 1781 |
+
"mean_token_accuracy": 0.9842217713594437,
|
| 1782 |
+
"num_tokens": 37947357.0,
|
| 1783 |
+
"step": 985
|
| 1784 |
+
},
|
| 1785 |
+
{
|
| 1786 |
+
"epoch": 0.7564469914040115,
|
| 1787 |
+
"grad_norm": 0.1696610301733017,
|
| 1788 |
+
"learning_rate": 3.3329140542317766e-05,
|
| 1789 |
+
"loss": 0.0435,
|
| 1790 |
+
"mean_token_accuracy": 0.9822180181741714,
|
| 1791 |
+
"num_tokens": 38141883.0,
|
| 1792 |
+
"step": 990
|
| 1793 |
+
},
|
| 1794 |
+
{
|
| 1795 |
+
"epoch": 0.7602674307545367,
|
| 1796 |
+
"grad_norm": 0.11435242742300034,
|
| 1797 |
+
"learning_rate": 3.3239055254674843e-05,
|
| 1798 |
+
"loss": 0.0466,
|
| 1799 |
+
"mean_token_accuracy": 0.9786978244781495,
|
| 1800 |
+
"num_tokens": 38332542.0,
|
| 1801 |
+
"step": 995
|
| 1802 |
+
},
|
| 1803 |
+
{
|
| 1804 |
+
"epoch": 0.7640878701050621,
|
| 1805 |
+
"grad_norm": 0.13120298087596893,
|
| 1806 |
+
"learning_rate": 3.314873518981184e-05,
|
| 1807 |
+
"loss": 0.0518,
|
| 1808 |
+
"mean_token_accuracy": 0.979632043838501,
|
| 1809 |
+
"num_tokens": 38524994.0,
|
| 1810 |
+
"step": 1000
|
| 1811 |
+
}
|
| 1812 |
+
],
|
| 1813 |
+
"logging_steps": 5,
|
| 1814 |
+
"max_steps": 2618,
|
| 1815 |
+
"num_input_tokens_seen": 0,
|
| 1816 |
+
"num_train_epochs": 2,
|
| 1817 |
+
"save_steps": 500,
|
| 1818 |
+
"stateful_callbacks": {
|
| 1819 |
+
"TrainerControl": {
|
| 1820 |
+
"args": {
|
| 1821 |
+
"should_epoch_stop": false,
|
| 1822 |
+
"should_evaluate": false,
|
| 1823 |
+
"should_log": false,
|
| 1824 |
+
"should_save": true,
|
| 1825 |
+
"should_training_stop": false
|
| 1826 |
+
},
|
| 1827 |
+
"attributes": {}
|
| 1828 |
+
}
|
| 1829 |
+
},
|
| 1830 |
+
"total_flos": 2.1319279777888727e+18,
|
| 1831 |
+
"train_batch_size": 6,
|
| 1832 |
+
"trial_name": null,
|
| 1833 |
+
"trial_params": null
|
| 1834 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bad5483d5a687e0a7734da0f1c111638eb80e122087d8bfc03eeb3362c36ddb8
|
| 3 |
+
size 6481
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|