Instructions to use Gege24/test_goof_intercode_synth_2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/test_goof_intercode_synth_2 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Jordansky/augmented-f560e4e6ee71e78d") model = PeftModel.from_pretrained(base_model, "Gege24/test_goof_intercode_synth_2") - Transformers
How to use Gege24/test_goof_intercode_synth_2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/test_goof_intercode_synth_2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Gege24/test_goof_intercode_synth_2", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/test_goof_intercode_synth_2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/test_goof_intercode_synth_2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/test_goof_intercode_synth_2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/test_goof_intercode_synth_2
- SGLang
How to use Gege24/test_goof_intercode_synth_2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Gege24/test_goof_intercode_synth_2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/test_goof_intercode_synth_2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Gege24/test_goof_intercode_synth_2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/test_goof_intercode_synth_2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/test_goof_intercode_synth_2 with Docker Model Runner:
docker model run hf.co/Gege24/test_goof_intercode_synth_2
Upload task output goof-intercode-synth
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +28 -0
- chat_template.jinja +61 -0
- loss.txt +1 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +239 -0
- trainer_state.json +1591 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Jordansky/augmented-f560e4e6ee71e78d
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Jordansky--augmented-f560e4e6ee71e78d
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Jordansky/augmented-f560e4e6ee71e78d",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 128,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"o_proj",
|
| 33 |
+
"up_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"down_proj",
|
| 38 |
+
"q_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3598fd5fa956f092a7a1b00b7771250d547a1dfc2ef483619747b42524202575
|
| 3 |
+
size 1057033224
|
added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- for message in messages %}
|
| 18 |
+
{%- if message.content is string %}
|
| 19 |
+
{%- set content = message.content %}
|
| 20 |
+
{%- else %}
|
| 21 |
+
{%- set content = '' %}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 24 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 25 |
+
{%- elif message.role == "assistant" %}
|
| 26 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 27 |
+
{%- if message.tool_calls %}
|
| 28 |
+
{%- for tool_call in message.tool_calls %}
|
| 29 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 30 |
+
{{- '\n' }}
|
| 31 |
+
{%- endif %}
|
| 32 |
+
{%- if tool_call.function %}
|
| 33 |
+
{%- set tool_call = tool_call.function %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 36 |
+
{{- tool_call.name }}
|
| 37 |
+
{{- '", "arguments": ' }}
|
| 38 |
+
{%- if tool_call.arguments is string %}
|
| 39 |
+
{{- tool_call.arguments }}
|
| 40 |
+
{%- else %}
|
| 41 |
+
{{- tool_call.arguments | tojson }}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{{- '}\n</tool_call>' }}
|
| 44 |
+
{%- endfor %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{{- '<|im_end|>\n' }}
|
| 47 |
+
{%- elif message.role == "tool" %}
|
| 48 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 49 |
+
{{- '<|im_start|>user' }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{{- '\n<tool_response>\n' }}
|
| 52 |
+
{{- content }}
|
| 53 |
+
{{- '\n</tool_response>' }}
|
| 54 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 55 |
+
{{- '<|im_end|>\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- endfor %}
|
| 59 |
+
{%- if add_generation_prompt %}
|
| 60 |
+
{{- '<|im_start|>assistant\n' }}
|
| 61 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
869,no_eval
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 1010000,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1591 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.9988505747126437,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 869,
|
| 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.005747126436781609,
|
| 14 |
+
"grad_norm": 11.50942325592041,
|
| 15 |
+
"learning_rate": 3.2463636363636365e-06,
|
| 16 |
+
"loss": 1.9136,
|
| 17 |
+
"mean_token_accuracy": 0.6757451295852661,
|
| 18 |
+
"num_tokens": 403129.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.011494252873563218,
|
| 23 |
+
"grad_norm": 3.601832866668701,
|
| 24 |
+
"learning_rate": 7.3043181818181825e-06,
|
| 25 |
+
"loss": 1.6064,
|
| 26 |
+
"mean_token_accuracy": 0.6915940046310425,
|
| 27 |
+
"num_tokens": 808163.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.017241379310344827,
|
| 32 |
+
"grad_norm": 2.5387675762176514,
|
| 33 |
+
"learning_rate": 1.1362272727272727e-05,
|
| 34 |
+
"loss": 1.178,
|
| 35 |
+
"mean_token_accuracy": 0.7406479597091675,
|
| 36 |
+
"num_tokens": 1212678.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.022988505747126436,
|
| 41 |
+
"grad_norm": 2.6335058212280273,
|
| 42 |
+
"learning_rate": 1.5420227272727274e-05,
|
| 43 |
+
"loss": 0.752,
|
| 44 |
+
"mean_token_accuracy": 0.8273701429367065,
|
| 45 |
+
"num_tokens": 1615888.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.028735632183908046,
|
| 50 |
+
"grad_norm": 1.3575574159622192,
|
| 51 |
+
"learning_rate": 1.9478181818181816e-05,
|
| 52 |
+
"loss": 0.3227,
|
| 53 |
+
"mean_token_accuracy": 0.9204407930374146,
|
| 54 |
+
"num_tokens": 2020108.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.034482758620689655,
|
| 59 |
+
"grad_norm": 4.603687763214111,
|
| 60 |
+
"learning_rate": 2.3536136363636365e-05,
|
| 61 |
+
"loss": 0.0922,
|
| 62 |
+
"mean_token_accuracy": 0.9775937318801879,
|
| 63 |
+
"num_tokens": 2425497.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.040229885057471264,
|
| 68 |
+
"grad_norm": 0.3694731295108795,
|
| 69 |
+
"learning_rate": 2.759409090909091e-05,
|
| 70 |
+
"loss": 0.0651,
|
| 71 |
+
"mean_token_accuracy": 0.983700180053711,
|
| 72 |
+
"num_tokens": 2828765.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.04597701149425287,
|
| 77 |
+
"grad_norm": 0.312744677066803,
|
| 78 |
+
"learning_rate": 3.1652045454545456e-05,
|
| 79 |
+
"loss": 0.0291,
|
| 80 |
+
"mean_token_accuracy": 0.991856825351715,
|
| 81 |
+
"num_tokens": 3233303.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.05172413793103448,
|
| 86 |
+
"grad_norm": 0.1357622891664505,
|
| 87 |
+
"learning_rate": 3.571e-05,
|
| 88 |
+
"loss": 0.0213,
|
| 89 |
+
"mean_token_accuracy": 0.9935701847076416,
|
| 90 |
+
"num_tokens": 3637991.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.05747126436781609,
|
| 95 |
+
"grad_norm": 0.11526472866535187,
|
| 96 |
+
"learning_rate": 3.570757864931307e-05,
|
| 97 |
+
"loss": 0.0188,
|
| 98 |
+
"mean_token_accuracy": 0.9941024422645569,
|
| 99 |
+
"num_tokens": 4042692.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.06321839080459771,
|
| 104 |
+
"grad_norm": 0.06420823186635971,
|
| 105 |
+
"learning_rate": 3.570031547288962e-05,
|
| 106 |
+
"loss": 0.0187,
|
| 107 |
+
"mean_token_accuracy": 0.9939285755157471,
|
| 108 |
+
"num_tokens": 4446677.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.06896551724137931,
|
| 113 |
+
"grad_norm": 0.07142060250043869,
|
| 114 |
+
"learning_rate": 3.568821309732495e-05,
|
| 115 |
+
"loss": 0.0179,
|
| 116 |
+
"mean_token_accuracy": 0.9940606236457825,
|
| 117 |
+
"num_tokens": 4851040.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.07471264367816093,
|
| 122 |
+
"grad_norm": 0.14311493933200836,
|
| 123 |
+
"learning_rate": 3.567127589922249e-05,
|
| 124 |
+
"loss": 0.0181,
|
| 125 |
+
"mean_token_accuracy": 0.9940086245536804,
|
| 126 |
+
"num_tokens": 5254512.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.08045977011494253,
|
| 131 |
+
"grad_norm": 0.1732994168996811,
|
| 132 |
+
"learning_rate": 3.5649510003611104e-05,
|
| 133 |
+
"loss": 0.0163,
|
| 134 |
+
"mean_token_accuracy": 0.9943243384361267,
|
| 135 |
+
"num_tokens": 5659208.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.08620689655172414,
|
| 140 |
+
"grad_norm": 0.03773409128189087,
|
| 141 |
+
"learning_rate": 3.562292328173002e-05,
|
| 142 |
+
"loss": 0.0154,
|
| 143 |
+
"mean_token_accuracy": 0.9946787118911743,
|
| 144 |
+
"num_tokens": 6064767.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.09195402298850575,
|
| 149 |
+
"grad_norm": 0.04296102374792099,
|
| 150 |
+
"learning_rate": 3.5591525348182415e-05,
|
| 151 |
+
"loss": 0.0174,
|
| 152 |
+
"mean_token_accuracy": 0.9942841291427612,
|
| 153 |
+
"num_tokens": 6467687.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.09770114942528736,
|
| 158 |
+
"grad_norm": 0.052675988525152206,
|
| 159 |
+
"learning_rate": 3.5555327557458406e-05,
|
| 160 |
+
"loss": 0.0168,
|
| 161 |
+
"mean_token_accuracy": 0.9943979263305665,
|
| 162 |
+
"num_tokens": 6870874.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.10344827586206896,
|
| 167 |
+
"grad_norm": 0.04074929654598236,
|
| 168 |
+
"learning_rate": 3.551434299982895e-05,
|
| 169 |
+
"loss": 0.0162,
|
| 170 |
+
"mean_token_accuracy": 0.9944364666938782,
|
| 171 |
+
"num_tokens": 7274927.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.10919540229885058,
|
| 176 |
+
"grad_norm": 0.053142838180065155,
|
| 177 |
+
"learning_rate": 3.546858649661196e-05,
|
| 178 |
+
"loss": 0.0166,
|
| 179 |
+
"mean_token_accuracy": 0.994316291809082,
|
| 180 |
+
"num_tokens": 7678668.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.11494252873563218,
|
| 185 |
+
"grad_norm": 0.05124868080019951,
|
| 186 |
+
"learning_rate": 3.5418074594812456e-05,
|
| 187 |
+
"loss": 0.0156,
|
| 188 |
+
"mean_token_accuracy": 0.9945274949073791,
|
| 189 |
+
"num_tokens": 8082319.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.1206896551724138,
|
| 194 |
+
"grad_norm": 0.05799630656838417,
|
| 195 |
+
"learning_rate": 3.536282556113864e-05,
|
| 196 |
+
"loss": 0.0153,
|
| 197 |
+
"mean_token_accuracy": 0.9946353793144226,
|
| 198 |
+
"num_tokens": 8485887.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.12643678160919541,
|
| 203 |
+
"grad_norm": 0.048035357147455215,
|
| 204 |
+
"learning_rate": 3.530285937539609e-05,
|
| 205 |
+
"loss": 0.0153,
|
| 206 |
+
"mean_token_accuracy": 0.9946409940719605,
|
| 207 |
+
"num_tokens": 8888964.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.13218390804597702,
|
| 212 |
+
"grad_norm": 0.040226273238658905,
|
| 213 |
+
"learning_rate": 3.5238197723262395e-05,
|
| 214 |
+
"loss": 0.0151,
|
| 215 |
+
"mean_token_accuracy": 0.9946888566017151,
|
| 216 |
+
"num_tokens": 9291928.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.13793103448275862,
|
| 221 |
+
"grad_norm": 0.05495241656899452,
|
| 222 |
+
"learning_rate": 3.5168863988444935e-05,
|
| 223 |
+
"loss": 0.0149,
|
| 224 |
+
"mean_token_accuracy": 0.9946548223495484,
|
| 225 |
+
"num_tokens": 9695699.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.14367816091954022,
|
| 230 |
+
"grad_norm": 0.06851889193058014,
|
| 231 |
+
"learning_rate": 3.509488324422462e-05,
|
| 232 |
+
"loss": 0.0152,
|
| 233 |
+
"mean_token_accuracy": 0.9944992899894715,
|
| 234 |
+
"num_tokens": 10099209.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.14942528735632185,
|
| 239 |
+
"grad_norm": 0.04976602643728256,
|
| 240 |
+
"learning_rate": 3.5016282244388565e-05,
|
| 241 |
+
"loss": 0.0143,
|
| 242 |
+
"mean_token_accuracy": 0.9948261499404907,
|
| 243 |
+
"num_tokens": 10503188.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.15517241379310345,
|
| 248 |
+
"grad_norm": 0.05081531032919884,
|
| 249 |
+
"learning_rate": 3.493308941355507e-05,
|
| 250 |
+
"loss": 0.0155,
|
| 251 |
+
"mean_token_accuracy": 0.994414746761322,
|
| 252 |
+
"num_tokens": 10906288.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.16091954022988506,
|
| 257 |
+
"grad_norm": 0.050771500915288925,
|
| 258 |
+
"learning_rate": 3.48453348368944e-05,
|
| 259 |
+
"loss": 0.0143,
|
| 260 |
+
"mean_token_accuracy": 0.9947004079818725,
|
| 261 |
+
"num_tokens": 11311117.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.16666666666666666,
|
| 266 |
+
"grad_norm": 0.06757643818855286,
|
| 267 |
+
"learning_rate": 3.475305024924899e-05,
|
| 268 |
+
"loss": 0.0142,
|
| 269 |
+
"mean_token_accuracy": 0.994769024848938,
|
| 270 |
+
"num_tokens": 11715201.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.1724137931034483,
|
| 275 |
+
"grad_norm": 0.050865691155195236,
|
| 276 |
+
"learning_rate": 3.465626902365717e-05,
|
| 277 |
+
"loss": 0.0148,
|
| 278 |
+
"mean_token_accuracy": 0.9945730566978455,
|
| 279 |
+
"num_tokens": 12117386.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.1781609195402299,
|
| 284 |
+
"grad_norm": 0.038052380084991455,
|
| 285 |
+
"learning_rate": 3.455502615928437e-05,
|
| 286 |
+
"loss": 0.0143,
|
| 287 |
+
"mean_token_accuracy": 0.9947114586830139,
|
| 288 |
+
"num_tokens": 12519849.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.1839080459770115,
|
| 293 |
+
"grad_norm": 0.045970458537340164,
|
| 294 |
+
"learning_rate": 3.4449358268766333e-05,
|
| 295 |
+
"loss": 0.0149,
|
| 296 |
+
"mean_token_accuracy": 0.9944195628166199,
|
| 297 |
+
"num_tokens": 12922528.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.1896551724137931,
|
| 302 |
+
"grad_norm": 0.03716587647795677,
|
| 303 |
+
"learning_rate": 3.433930356496882e-05,
|
| 304 |
+
"loss": 0.0141,
|
| 305 |
+
"mean_token_accuracy": 0.994634211063385,
|
| 306 |
+
"num_tokens": 13325018.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.19540229885057472,
|
| 311 |
+
"grad_norm": 0.039773862808942795,
|
| 312 |
+
"learning_rate": 3.422490184716862e-05,
|
| 313 |
+
"loss": 0.0135,
|
| 314 |
+
"mean_token_accuracy": 0.9949192404747009,
|
| 315 |
+
"num_tokens": 13729095.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.20114942528735633,
|
| 320 |
+
"grad_norm": 0.058626800775527954,
|
| 321 |
+
"learning_rate": 3.4106194486660854e-05,
|
| 322 |
+
"loss": 0.014,
|
| 323 |
+
"mean_token_accuracy": 0.9947888255119324,
|
| 324 |
+
"num_tokens": 14132517.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.20689655172413793,
|
| 329 |
+
"grad_norm": 0.04217752069234848,
|
| 330 |
+
"learning_rate": 3.398322441179785e-05,
|
| 331 |
+
"loss": 0.014,
|
| 332 |
+
"mean_token_accuracy": 0.9947295308113098,
|
| 333 |
+
"num_tokens": 14537265.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.21264367816091953,
|
| 338 |
+
"grad_norm": 0.029374336823821068,
|
| 339 |
+
"learning_rate": 3.385603609246481e-05,
|
| 340 |
+
"loss": 0.014,
|
| 341 |
+
"mean_token_accuracy": 0.9946742534637452,
|
| 342 |
+
"num_tokens": 14941978.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.21839080459770116,
|
| 347 |
+
"grad_norm": 0.043314963579177856,
|
| 348 |
+
"learning_rate": 3.372467552399816e-05,
|
| 349 |
+
"loss": 0.0141,
|
| 350 |
+
"mean_token_accuracy": 0.9947606563568115,
|
| 351 |
+
"num_tokens": 15345327.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.22413793103448276,
|
| 356 |
+
"grad_norm": 0.03939647227525711,
|
| 357 |
+
"learning_rate": 3.358919021055213e-05,
|
| 358 |
+
"loss": 0.0139,
|
| 359 |
+
"mean_token_accuracy": 0.9946980714797974,
|
| 360 |
+
"num_tokens": 15749804.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.22988505747126436,
|
| 365 |
+
"grad_norm": 0.02790178172290325,
|
| 366 |
+
"learning_rate": 3.3449629147919754e-05,
|
| 367 |
+
"loss": 0.0143,
|
| 368 |
+
"mean_token_accuracy": 0.9946450471878052,
|
| 369 |
+
"num_tokens": 16154369.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.23563218390804597,
|
| 374 |
+
"grad_norm": 0.051178909838199615,
|
| 375 |
+
"learning_rate": 3.330604280581446e-05,
|
| 376 |
+
"loss": 0.0138,
|
| 377 |
+
"mean_token_accuracy": 0.9946406483650208,
|
| 378 |
+
"num_tokens": 16558165.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.2413793103448276,
|
| 383 |
+
"grad_norm": 0.08488579094409943,
|
| 384 |
+
"learning_rate": 3.315848310961857e-05,
|
| 385 |
+
"loss": 0.014,
|
| 386 |
+
"mean_token_accuracy": 0.994620680809021,
|
| 387 |
+
"num_tokens": 16962046.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.2471264367816092,
|
| 392 |
+
"grad_norm": 0.06223829835653305,
|
| 393 |
+
"learning_rate": 3.3007003421605485e-05,
|
| 394 |
+
"loss": 0.0139,
|
| 395 |
+
"mean_token_accuracy": 0.9947610378265381,
|
| 396 |
+
"num_tokens": 17365830.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.25287356321839083,
|
| 401 |
+
"grad_norm": 0.04801960662007332,
|
| 402 |
+
"learning_rate": 3.285165852164214e-05,
|
| 403 |
+
"loss": 0.014,
|
| 404 |
+
"mean_token_accuracy": 0.9947750210762024,
|
| 405 |
+
"num_tokens": 17769736.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.25862068965517243,
|
| 410 |
+
"grad_norm": 0.06384305655956268,
|
| 411 |
+
"learning_rate": 3.2692504587378904e-05,
|
| 412 |
+
"loss": 0.0142,
|
| 413 |
+
"mean_token_accuracy": 0.9945329785346985,
|
| 414 |
+
"num_tokens": 18173470.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.26436781609195403,
|
| 419 |
+
"grad_norm": 0.041138093918561935,
|
| 420 |
+
"learning_rate": 3.252959917393394e-05,
|
| 421 |
+
"loss": 0.0138,
|
| 422 |
+
"mean_token_accuracy": 0.9946693658828736,
|
| 423 |
+
"num_tokens": 18577196.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.27011494252873564,
|
| 428 |
+
"grad_norm": 0.03739451244473457,
|
| 429 |
+
"learning_rate": 3.236300119307945e-05,
|
| 430 |
+
"loss": 0.0136,
|
| 431 |
+
"mean_token_accuracy": 0.9948052048683167,
|
| 432 |
+
"num_tokens": 18981159.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.27586206896551724,
|
| 437 |
+
"grad_norm": 0.03280220553278923,
|
| 438 |
+
"learning_rate": 3.219277089193731e-05,
|
| 439 |
+
"loss": 0.014,
|
| 440 |
+
"mean_token_accuracy": 0.9946678638458252,
|
| 441 |
+
"num_tokens": 19384054.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.28160919540229884,
|
| 446 |
+
"grad_norm": 0.032432641834020615,
|
| 447 |
+
"learning_rate": 3.201896983119178e-05,
|
| 448 |
+
"loss": 0.0141,
|
| 449 |
+
"mean_token_accuracy": 0.9946418523788452,
|
| 450 |
+
"num_tokens": 19786850.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.28735632183908044,
|
| 455 |
+
"grad_norm": 0.03479701280593872,
|
| 456 |
+
"learning_rate": 3.184166086282724e-05,
|
| 457 |
+
"loss": 0.0139,
|
| 458 |
+
"mean_token_accuracy": 0.9946959257125855,
|
| 459 |
+
"num_tokens": 20190209.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.29310344827586204,
|
| 464 |
+
"grad_norm": 0.04647434875369072,
|
| 465 |
+
"learning_rate": 3.166090810739887e-05,
|
| 466 |
+
"loss": 0.0135,
|
| 467 |
+
"mean_token_accuracy": 0.9949136853218079,
|
| 468 |
+
"num_tokens": 20593987.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.2988505747126437,
|
| 473 |
+
"grad_norm": 0.05208832398056984,
|
| 474 |
+
"learning_rate": 3.147677693084465e-05,
|
| 475 |
+
"loss": 0.0144,
|
| 476 |
+
"mean_token_accuracy": 0.9945999264717102,
|
| 477 |
+
"num_tokens": 20996490.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.3045977011494253,
|
| 482 |
+
"grad_norm": 0.027506856247782707,
|
| 483 |
+
"learning_rate": 3.128933392084697e-05,
|
| 484 |
+
"loss": 0.0138,
|
| 485 |
+
"mean_token_accuracy": 0.9948423385620118,
|
| 486 |
+
"num_tokens": 21400522.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.3103448275862069,
|
| 491 |
+
"grad_norm": 0.04659893363714218,
|
| 492 |
+
"learning_rate": 3.109864686275239e-05,
|
| 493 |
+
"loss": 0.0133,
|
| 494 |
+
"mean_token_accuracy": 0.9948711514472961,
|
| 495 |
+
"num_tokens": 21805437.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.3160919540229885,
|
| 500 |
+
"grad_norm": 0.03459516912698746,
|
| 501 |
+
"learning_rate": 3.0904784715058294e-05,
|
| 502 |
+
"loss": 0.0136,
|
| 503 |
+
"mean_token_accuracy": 0.9946945190429688,
|
| 504 |
+
"num_tokens": 22210298.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.3218390804597701,
|
| 509 |
+
"grad_norm": 0.04663790389895439,
|
| 510 |
+
"learning_rate": 3.0707817584475316e-05,
|
| 511 |
+
"loss": 0.0141,
|
| 512 |
+
"mean_token_accuracy": 0.9947023153305053,
|
| 513 |
+
"num_tokens": 22614052.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.3275862068965517,
|
| 518 |
+
"grad_norm": 0.0350983701646328,
|
| 519 |
+
"learning_rate": 3.0507816700574574e-05,
|
| 520 |
+
"loss": 0.0135,
|
| 521 |
+
"mean_token_accuracy": 0.9948037743568421,
|
| 522 |
+
"num_tokens": 23017388.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.3333333333333333,
|
| 527 |
+
"grad_norm": 0.041611939668655396,
|
| 528 |
+
"learning_rate": 3.030485439002871e-05,
|
| 529 |
+
"loss": 0.0138,
|
| 530 |
+
"mean_token_accuracy": 0.9947538614273072,
|
| 531 |
+
"num_tokens": 23421547.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.3390804597701149,
|
| 536 |
+
"grad_norm": 0.044495340436697006,
|
| 537 |
+
"learning_rate": 3.009900405045633e-05,
|
| 538 |
+
"loss": 0.0139,
|
| 539 |
+
"mean_token_accuracy": 0.9946321249008179,
|
| 540 |
+
"num_tokens": 23824441.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.3448275862068966,
|
| 545 |
+
"grad_norm": 0.0457838736474514,
|
| 546 |
+
"learning_rate": 2.989034012387908e-05,
|
| 547 |
+
"loss": 0.0136,
|
| 548 |
+
"mean_token_accuracy": 0.9946706891059875,
|
| 549 |
+
"num_tokens": 24228304.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.3505747126436782,
|
| 554 |
+
"grad_norm": 0.05629606544971466,
|
| 555 |
+
"learning_rate": 2.9678938069801016e-05,
|
| 556 |
+
"loss": 0.0129,
|
| 557 |
+
"mean_token_accuracy": 0.9949870824813842,
|
| 558 |
+
"num_tokens": 24633847.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.3563218390804598,
|
| 563 |
+
"grad_norm": 0.03772628307342529,
|
| 564 |
+
"learning_rate": 2.9464874337920103e-05,
|
| 565 |
+
"loss": 0.0137,
|
| 566 |
+
"mean_token_accuracy": 0.9947891712188721,
|
| 567 |
+
"num_tokens": 25037659.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.3620689655172414,
|
| 572 |
+
"grad_norm": 0.04441123828291893,
|
| 573 |
+
"learning_rate": 2.924822634048154e-05,
|
| 574 |
+
"loss": 0.0136,
|
| 575 |
+
"mean_token_accuracy": 0.9948173046112061,
|
| 576 |
+
"num_tokens": 25441857.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.367816091954023,
|
| 581 |
+
"grad_norm": 0.032479654997587204,
|
| 582 |
+
"learning_rate": 2.9029072424283028e-05,
|
| 583 |
+
"loss": 0.0133,
|
| 584 |
+
"mean_token_accuracy": 0.9949279308319092,
|
| 585 |
+
"num_tokens": 25847022.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.3735632183908046,
|
| 590 |
+
"grad_norm": 0.03903662785887718,
|
| 591 |
+
"learning_rate": 2.8807491842342106e-05,
|
| 592 |
+
"loss": 0.014,
|
| 593 |
+
"mean_token_accuracy": 0.9946053504943848,
|
| 594 |
+
"num_tokens": 26250421.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.3793103448275862,
|
| 599 |
+
"grad_norm": 0.03149571642279625,
|
| 600 |
+
"learning_rate": 2.858356472523572e-05,
|
| 601 |
+
"loss": 0.0137,
|
| 602 |
+
"mean_token_accuracy": 0.9947115182876587,
|
| 603 |
+
"num_tokens": 26653852.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.3850574712643678,
|
| 608 |
+
"grad_norm": 0.05093760043382645,
|
| 609 |
+
"learning_rate": 2.8357372052122475e-05,
|
| 610 |
+
"loss": 0.0137,
|
| 611 |
+
"mean_token_accuracy": 0.99478600025177,
|
| 612 |
+
"num_tokens": 27056647.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.39080459770114945,
|
| 617 |
+
"grad_norm": 0.04730261117219925,
|
| 618 |
+
"learning_rate": 2.8128995621458e-05,
|
| 619 |
+
"loss": 0.0135,
|
| 620 |
+
"mean_token_accuracy": 0.9948318123817443,
|
| 621 |
+
"num_tokens": 27460001.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.39655172413793105,
|
| 626 |
+
"grad_norm": 0.035402730107307434,
|
| 627 |
+
"learning_rate": 2.7898518021414006e-05,
|
| 628 |
+
"loss": 0.0135,
|
| 629 |
+
"mean_token_accuracy": 0.9948247194290161,
|
| 630 |
+
"num_tokens": 27864720.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.40229885057471265,
|
| 635 |
+
"grad_norm": 0.038121409714221954,
|
| 636 |
+
"learning_rate": 2.766602260001181e-05,
|
| 637 |
+
"loss": 0.014,
|
| 638 |
+
"mean_token_accuracy": 0.994686484336853,
|
| 639 |
+
"num_tokens": 28268488.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.40804597701149425,
|
| 644 |
+
"grad_norm": 0.04125091806054115,
|
| 645 |
+
"learning_rate": 2.7431593434981018e-05,
|
| 646 |
+
"loss": 0.0134,
|
| 647 |
+
"mean_token_accuracy": 0.9948553442955017,
|
| 648 |
+
"num_tokens": 28672697.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.41379310344827586,
|
| 653 |
+
"grad_norm": 0.03373762220144272,
|
| 654 |
+
"learning_rate": 2.719531530335436e-05,
|
| 655 |
+
"loss": 0.014,
|
| 656 |
+
"mean_token_accuracy": 0.994598388671875,
|
| 657 |
+
"num_tokens": 29076416.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.41954022988505746,
|
| 662 |
+
"grad_norm": 0.05404042452573776,
|
| 663 |
+
"learning_rate": 2.695727365080962e-05,
|
| 664 |
+
"loss": 0.0139,
|
| 665 |
+
"mean_token_accuracy": 0.9946176290512085,
|
| 666 |
+
"num_tokens": 29479332.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.42528735632183906,
|
| 671 |
+
"grad_norm": 0.040191181004047394,
|
| 672 |
+
"learning_rate": 2.671755456076977e-05,
|
| 673 |
+
"loss": 0.0137,
|
| 674 |
+
"mean_token_accuracy": 0.9947783350944519,
|
| 675 |
+
"num_tokens": 29883389.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.43103448275862066,
|
| 680 |
+
"grad_norm": 0.05008212476968765,
|
| 681 |
+
"learning_rate": 2.6476244723272458e-05,
|
| 682 |
+
"loss": 0.0141,
|
| 683 |
+
"mean_token_accuracy": 0.9946029782295227,
|
| 684 |
+
"num_tokens": 30287635.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.4367816091954023,
|
| 689 |
+
"grad_norm": 0.03571382537484169,
|
| 690 |
+
"learning_rate": 2.6233431403620137e-05,
|
| 691 |
+
"loss": 0.014,
|
| 692 |
+
"mean_token_accuracy": 0.99459388256073,
|
| 693 |
+
"num_tokens": 30691089.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.4425287356321839,
|
| 698 |
+
"grad_norm": 0.03077247366309166,
|
| 699 |
+
"learning_rate": 2.598920241082219e-05,
|
| 700 |
+
"loss": 0.0134,
|
| 701 |
+
"mean_token_accuracy": 0.9948281884193421,
|
| 702 |
+
"num_tokens": 31095704.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.4482758620689655,
|
| 707 |
+
"grad_norm": 0.02985704317688942,
|
| 708 |
+
"learning_rate": 2.5743646065840346e-05,
|
| 709 |
+
"loss": 0.0136,
|
| 710 |
+
"mean_token_accuracy": 0.9947766423225403,
|
| 711 |
+
"num_tokens": 31499708.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.4540229885057471,
|
| 716 |
+
"grad_norm": 0.03301994130015373,
|
| 717 |
+
"learning_rate": 2.549685116964907e-05,
|
| 718 |
+
"loss": 0.0134,
|
| 719 |
+
"mean_token_accuracy": 0.9949437975883484,
|
| 720 |
+
"num_tokens": 31904187.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.45977011494252873,
|
| 725 |
+
"grad_norm": 0.04135014861822128,
|
| 726 |
+
"learning_rate": 2.5248906971122276e-05,
|
| 727 |
+
"loss": 0.0134,
|
| 728 |
+
"mean_token_accuracy": 0.9948192358016967,
|
| 729 |
+
"num_tokens": 32307081.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.46551724137931033,
|
| 734 |
+
"grad_norm": 0.05234241113066673,
|
| 735 |
+
"learning_rate": 2.4999903134758113e-05,
|
| 736 |
+
"loss": 0.0135,
|
| 737 |
+
"mean_token_accuracy": 0.9947088360786438,
|
| 738 |
+
"num_tokens": 32712091.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.47126436781609193,
|
| 743 |
+
"grad_norm": 0.03200434520840645,
|
| 744 |
+
"learning_rate": 2.4749929708253427e-05,
|
| 745 |
+
"loss": 0.0132,
|
| 746 |
+
"mean_token_accuracy": 0.9949337005615234,
|
| 747 |
+
"num_tokens": 33115832.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.47701149425287354,
|
| 752 |
+
"grad_norm": 0.025907520204782486,
|
| 753 |
+
"learning_rate": 2.4499077089939677e-05,
|
| 754 |
+
"loss": 0.0133,
|
| 755 |
+
"mean_token_accuracy": 0.9948367953300477,
|
| 756 |
+
"num_tokens": 33520665.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.4827586206896552,
|
| 761 |
+
"grad_norm": 0.026905179023742676,
|
| 762 |
+
"learning_rate": 2.4247435996091983e-05,
|
| 763 |
+
"loss": 0.0135,
|
| 764 |
+
"mean_token_accuracy": 0.9948036670684814,
|
| 765 |
+
"num_tokens": 33924164.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.4885057471264368,
|
| 770 |
+
"grad_norm": 0.0450819693505764,
|
| 771 |
+
"learning_rate": 2.3995097428123274e-05,
|
| 772 |
+
"loss": 0.0134,
|
| 773 |
+
"mean_token_accuracy": 0.9949346303939819,
|
| 774 |
+
"num_tokens": 34329060.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.4942528735632184,
|
| 779 |
+
"grad_norm": 0.0394849069416523,
|
| 780 |
+
"learning_rate": 2.3742152639675284e-05,
|
| 781 |
+
"loss": 0.0132,
|
| 782 |
+
"mean_token_accuracy": 0.9948944926261902,
|
| 783 |
+
"num_tokens": 34733190.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.5,
|
| 788 |
+
"grad_norm": 0.02788865938782692,
|
| 789 |
+
"learning_rate": 2.3488693103618318e-05,
|
| 790 |
+
"loss": 0.013,
|
| 791 |
+
"mean_token_accuracy": 0.9949518084526062,
|
| 792 |
+
"num_tokens": 35137740.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.5057471264367817,
|
| 797 |
+
"grad_norm": 0.03805901110172272,
|
| 798 |
+
"learning_rate": 2.3234810478971772e-05,
|
| 799 |
+
"loss": 0.0136,
|
| 800 |
+
"mean_token_accuracy": 0.994696569442749,
|
| 801 |
+
"num_tokens": 35542288.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.5114942528735632,
|
| 806 |
+
"grad_norm": 0.032415661960840225,
|
| 807 |
+
"learning_rate": 2.2980596577757305e-05,
|
| 808 |
+
"loss": 0.0134,
|
| 809 |
+
"mean_token_accuracy": 0.9947757482528686,
|
| 810 |
+
"num_tokens": 35946058.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.5172413793103449,
|
| 815 |
+
"grad_norm": 0.053135160356760025,
|
| 816 |
+
"learning_rate": 2.2726143331796738e-05,
|
| 817 |
+
"loss": 0.0134,
|
| 818 |
+
"mean_token_accuracy": 0.9948907971382142,
|
| 819 |
+
"num_tokens": 36349724.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.5229885057471264,
|
| 824 |
+
"grad_norm": 0.03707072511315346,
|
| 825 |
+
"learning_rate": 2.247154275946651e-05,
|
| 826 |
+
"loss": 0.0137,
|
| 827 |
+
"mean_token_accuracy": 0.9947781324386596,
|
| 828 |
+
"num_tokens": 36752494.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.5287356321839081,
|
| 833 |
+
"grad_norm": 0.032205525785684586,
|
| 834 |
+
"learning_rate": 2.2216886932420993e-05,
|
| 835 |
+
"loss": 0.0139,
|
| 836 |
+
"mean_token_accuracy": 0.9945814847946167,
|
| 837 |
+
"num_tokens": 37156356.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.5344827586206896,
|
| 842 |
+
"grad_norm": 0.0344030000269413,
|
| 843 |
+
"learning_rate": 2.19622679422964e-05,
|
| 844 |
+
"loss": 0.0132,
|
| 845 |
+
"mean_token_accuracy": 0.9949215650558472,
|
| 846 |
+
"num_tokens": 37560139.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.5402298850574713,
|
| 851 |
+
"grad_norm": 0.024279696866869926,
|
| 852 |
+
"learning_rate": 2.170777786740754e-05,
|
| 853 |
+
"loss": 0.0138,
|
| 854 |
+
"mean_token_accuracy": 0.9947062373161316,
|
| 855 |
+
"num_tokens": 37965641.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.5459770114942529,
|
| 860 |
+
"grad_norm": 0.030384989455342293,
|
| 861 |
+
"learning_rate": 2.14535087394494e-05,
|
| 862 |
+
"loss": 0.0132,
|
| 863 |
+
"mean_token_accuracy": 0.9948716759681702,
|
| 864 |
+
"num_tokens": 38369757.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.5517241379310345,
|
| 869 |
+
"grad_norm": 0.04183518514037132,
|
| 870 |
+
"learning_rate": 2.1199552510215515e-05,
|
| 871 |
+
"loss": 0.0136,
|
| 872 |
+
"mean_token_accuracy": 0.9947738170623779,
|
| 873 |
+
"num_tokens": 38772941.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.5574712643678161,
|
| 878 |
+
"grad_norm": 0.03046581894159317,
|
| 879 |
+
"learning_rate": 2.0946001018345306e-05,
|
| 880 |
+
"loss": 0.0133,
|
| 881 |
+
"mean_token_accuracy": 0.9949072957038879,
|
| 882 |
+
"num_tokens": 39178203.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.5632183908045977,
|
| 887 |
+
"grad_norm": 0.09169202297925949,
|
| 888 |
+
"learning_rate": 2.0692945956112318e-05,
|
| 889 |
+
"loss": 0.0133,
|
| 890 |
+
"mean_token_accuracy": 0.9949472784996033,
|
| 891 |
+
"num_tokens": 39581967.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.5689655172413793,
|
| 896 |
+
"grad_norm": 0.029076358303427696,
|
| 897 |
+
"learning_rate": 2.0440478836265358e-05,
|
| 898 |
+
"loss": 0.0133,
|
| 899 |
+
"mean_token_accuracy": 0.9948386192321778,
|
| 900 |
+
"num_tokens": 39984021.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.5747126436781609,
|
| 905 |
+
"grad_norm": 0.05347994714975357,
|
| 906 |
+
"learning_rate": 2.0188690958934603e-05,
|
| 907 |
+
"loss": 0.0136,
|
| 908 |
+
"mean_token_accuracy": 0.9947713971138,
|
| 909 |
+
"num_tokens": 40387785.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.5804597701149425,
|
| 914 |
+
"grad_norm": 0.023038016632199287,
|
| 915 |
+
"learning_rate": 1.993767337861455e-05,
|
| 916 |
+
"loss": 0.0133,
|
| 917 |
+
"mean_token_accuracy": 0.9948361039161682,
|
| 918 |
+
"num_tokens": 40791443.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.5862068965517241,
|
| 923 |
+
"grad_norm": 0.03382337838411331,
|
| 924 |
+
"learning_rate": 1.9687516871235824e-05,
|
| 925 |
+
"loss": 0.0136,
|
| 926 |
+
"mean_token_accuracy": 0.9947430968284607,
|
| 927 |
+
"num_tokens": 41194964.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.5919540229885057,
|
| 932 |
+
"grad_norm": 0.03841397538781166,
|
| 933 |
+
"learning_rate": 1.9438311901337744e-05,
|
| 934 |
+
"loss": 0.0139,
|
| 935 |
+
"mean_token_accuracy": 0.9947336792945862,
|
| 936 |
+
"num_tokens": 41599118.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.5977011494252874,
|
| 941 |
+
"grad_norm": 0.03508458286523819,
|
| 942 |
+
"learning_rate": 1.9190148589353425e-05,
|
| 943 |
+
"loss": 0.0138,
|
| 944 |
+
"mean_token_accuracy": 0.9947627902030944,
|
| 945 |
+
"num_tokens": 42001873.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.603448275862069,
|
| 950 |
+
"grad_norm": 0.0344594344496727,
|
| 951 |
+
"learning_rate": 1.8943116679019407e-05,
|
| 952 |
+
"loss": 0.0134,
|
| 953 |
+
"mean_token_accuracy": 0.9947917938232422,
|
| 954 |
+
"num_tokens": 42405413.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.6091954022988506,
|
| 959 |
+
"grad_norm": 0.024883072823286057,
|
| 960 |
+
"learning_rate": 1.869730550492144e-05,
|
| 961 |
+
"loss": 0.0133,
|
| 962 |
+
"mean_token_accuracy": 0.9948460817337036,
|
| 963 |
+
"num_tokens": 42809113.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.6149425287356322,
|
| 968 |
+
"grad_norm": 0.03987499698996544,
|
| 969 |
+
"learning_rate": 1.8452803960188304e-05,
|
| 970 |
+
"loss": 0.0132,
|
| 971 |
+
"mean_token_accuracy": 0.9949107050895691,
|
| 972 |
+
"num_tokens": 43213404.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.6206896551724138,
|
| 977 |
+
"grad_norm": 0.04916604235768318,
|
| 978 |
+
"learning_rate": 1.8209700464345162e-05,
|
| 979 |
+
"loss": 0.013,
|
| 980 |
+
"mean_token_accuracy": 0.9949909687042237,
|
| 981 |
+
"num_tokens": 43616989.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.6264367816091954,
|
| 986 |
+
"grad_norm": 0.025707852095365524,
|
| 987 |
+
"learning_rate": 1.796808293133832e-05,
|
| 988 |
+
"loss": 0.0131,
|
| 989 |
+
"mean_token_accuracy": 0.9949591755867004,
|
| 990 |
+
"num_tokens": 44020557.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.632183908045977,
|
| 995 |
+
"grad_norm": 0.03211604803800583,
|
| 996 |
+
"learning_rate": 1.7728038737742696e-05,
|
| 997 |
+
"loss": 0.0133,
|
| 998 |
+
"mean_token_accuracy": 0.9948301553726197,
|
| 999 |
+
"num_tokens": 44424704.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.6379310344827587,
|
| 1004 |
+
"grad_norm": 0.03153684735298157,
|
| 1005 |
+
"learning_rate": 1.748965469116373e-05,
|
| 1006 |
+
"loss": 0.0132,
|
| 1007 |
+
"mean_token_accuracy": 0.9949110507965088,
|
| 1008 |
+
"num_tokens": 44828304.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.6436781609195402,
|
| 1013 |
+
"grad_norm": 0.044283442199230194,
|
| 1014 |
+
"learning_rate": 1.7253016998844934e-05,
|
| 1015 |
+
"loss": 0.0134,
|
| 1016 |
+
"mean_token_accuracy": 0.994849705696106,
|
| 1017 |
+
"num_tokens": 45231864.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.6494252873563219,
|
| 1022 |
+
"grad_norm": 0.03939127177000046,
|
| 1023 |
+
"learning_rate": 1.7018211236492662e-05,
|
| 1024 |
+
"loss": 0.0134,
|
| 1025 |
+
"mean_token_accuracy": 0.9948228478431702,
|
| 1026 |
+
"num_tokens": 45636143.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.6551724137931034,
|
| 1031 |
+
"grad_norm": 0.02582518756389618,
|
| 1032 |
+
"learning_rate": 1.678532231732921e-05,
|
| 1033 |
+
"loss": 0.0132,
|
| 1034 |
+
"mean_token_accuracy": 0.9948286533355712,
|
| 1035 |
+
"num_tokens": 46041434.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.6609195402298851,
|
| 1040 |
+
"grad_norm": 0.03828392177820206,
|
| 1041 |
+
"learning_rate": 1.655443446138546e-05,
|
| 1042 |
+
"loss": 0.0132,
|
| 1043 |
+
"mean_token_accuracy": 0.9949392199516296,
|
| 1044 |
+
"num_tokens": 46445765.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.6666666666666666,
|
| 1049 |
+
"grad_norm": 0.026919830590486526,
|
| 1050 |
+
"learning_rate": 1.632563116504431e-05,
|
| 1051 |
+
"loss": 0.0132,
|
| 1052 |
+
"mean_token_accuracy": 0.9947931051254273,
|
| 1053 |
+
"num_tokens": 46850075.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.6724137931034483,
|
| 1058 |
+
"grad_norm": 0.031082892790436745,
|
| 1059 |
+
"learning_rate": 1.6098995170845647e-05,
|
| 1060 |
+
"loss": 0.0133,
|
| 1061 |
+
"mean_token_accuracy": 0.99483882188797,
|
| 1062 |
+
"num_tokens": 47254907.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.6781609195402298,
|
| 1067 |
+
"grad_norm": 0.0375247485935688,
|
| 1068 |
+
"learning_rate": 1.5874608437564096e-05,
|
| 1069 |
+
"loss": 0.0133,
|
| 1070 |
+
"mean_token_accuracy": 0.9948214530944824,
|
| 1071 |
+
"num_tokens": 47659312.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.6839080459770115,
|
| 1076 |
+
"grad_norm": 0.0356401652097702,
|
| 1077 |
+
"learning_rate": 1.565255211057006e-05,
|
| 1078 |
+
"loss": 0.013,
|
| 1079 |
+
"mean_token_accuracy": 0.9949233651161193,
|
| 1080 |
+
"num_tokens": 48062760.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.6896551724137931,
|
| 1085 |
+
"grad_norm": 0.046727504581213,
|
| 1086 |
+
"learning_rate": 1.5432906492485005e-05,
|
| 1087 |
+
"loss": 0.0131,
|
| 1088 |
+
"mean_token_accuracy": 0.9949892401695252,
|
| 1089 |
+
"num_tokens": 48466976.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.6954022988505747,
|
| 1094 |
+
"grad_norm": 0.056539956480264664,
|
| 1095 |
+
"learning_rate": 1.52157510141415e-05,
|
| 1096 |
+
"loss": 0.0131,
|
| 1097 |
+
"mean_token_accuracy": 0.9949196696281433,
|
| 1098 |
+
"num_tokens": 48870906.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.7011494252873564,
|
| 1103 |
+
"grad_norm": 0.049220457673072815,
|
| 1104 |
+
"learning_rate": 1.5001164205858465e-05,
|
| 1105 |
+
"loss": 0.0131,
|
| 1106 |
+
"mean_token_accuracy": 0.994917893409729,
|
| 1107 |
+
"num_tokens": 49275039.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.7068965517241379,
|
| 1112 |
+
"grad_norm": 0.04120581969618797,
|
| 1113 |
+
"learning_rate": 1.4789223669042143e-05,
|
| 1114 |
+
"loss": 0.0128,
|
| 1115 |
+
"mean_token_accuracy": 0.994994330406189,
|
| 1116 |
+
"num_tokens": 49678668.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.7126436781609196,
|
| 1121 |
+
"grad_norm": 0.02625158056616783,
|
| 1122 |
+
"learning_rate": 1.4580006048122943e-05,
|
| 1123 |
+
"loss": 0.0128,
|
| 1124 |
+
"mean_token_accuracy": 0.9949682116508484,
|
| 1125 |
+
"num_tokens": 50083729.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.7183908045977011,
|
| 1130 |
+
"grad_norm": 0.05274219810962677,
|
| 1131 |
+
"learning_rate": 1.43735870028384e-05,
|
| 1132 |
+
"loss": 0.0134,
|
| 1133 |
+
"mean_token_accuracy": 0.9948260664939881,
|
| 1134 |
+
"num_tokens": 50488215.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.7241379310344828,
|
| 1139 |
+
"grad_norm": 0.03466196358203888,
|
| 1140 |
+
"learning_rate": 1.4170041180872212e-05,
|
| 1141 |
+
"loss": 0.013,
|
| 1142 |
+
"mean_token_accuracy": 0.9949446439743042,
|
| 1143 |
+
"num_tokens": 50892168.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.7298850574712644,
|
| 1148 |
+
"grad_norm": 0.03565268591046333,
|
| 1149 |
+
"learning_rate": 1.3969442190859236e-05,
|
| 1150 |
+
"loss": 0.0133,
|
| 1151 |
+
"mean_token_accuracy": 0.9947892189025879,
|
| 1152 |
+
"num_tokens": 51296446.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.735632183908046,
|
| 1157 |
+
"grad_norm": 0.03092004917562008,
|
| 1158 |
+
"learning_rate": 1.3771862575766306e-05,
|
| 1159 |
+
"loss": 0.0132,
|
| 1160 |
+
"mean_token_accuracy": 0.9949315309524536,
|
| 1161 |
+
"num_tokens": 51699117.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.7413793103448276,
|
| 1166 |
+
"grad_norm": 0.05381985753774643,
|
| 1167 |
+
"learning_rate": 1.3577373786658359e-05,
|
| 1168 |
+
"loss": 0.013,
|
| 1169 |
+
"mean_token_accuracy": 0.995068883895874,
|
| 1170 |
+
"num_tokens": 52103973.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.7471264367816092,
|
| 1175 |
+
"grad_norm": 0.03023788332939148,
|
| 1176 |
+
"learning_rate": 1.33860461568595e-05,
|
| 1177 |
+
"loss": 0.0133,
|
| 1178 |
+
"mean_token_accuracy": 0.9947940468788147,
|
| 1179 |
+
"num_tokens": 52507158.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.7528735632183908,
|
| 1184 |
+
"grad_norm": 0.04271196573972702,
|
| 1185 |
+
"learning_rate": 1.3197948876518184e-05,
|
| 1186 |
+
"loss": 0.0128,
|
| 1187 |
+
"mean_token_accuracy": 0.9950397610664368,
|
| 1188 |
+
"num_tokens": 52910307.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.7586206896551724,
|
| 1193 |
+
"grad_norm": 0.03678242862224579,
|
| 1194 |
+
"learning_rate": 1.301314996758591e-05,
|
| 1195 |
+
"loss": 0.0132,
|
| 1196 |
+
"mean_token_accuracy": 0.9949288129806518,
|
| 1197 |
+
"num_tokens": 53313505.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.764367816091954,
|
| 1202 |
+
"grad_norm": 0.024950511753559113,
|
| 1203 |
+
"learning_rate": 1.283171625921829e-05,
|
| 1204 |
+
"loss": 0.0131,
|
| 1205 |
+
"mean_token_accuracy": 0.994904899597168,
|
| 1206 |
+
"num_tokens": 53718020.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.7701149425287356,
|
| 1211 |
+
"grad_norm": 0.0270620696246624,
|
| 1212 |
+
"learning_rate": 1.2653713363607528e-05,
|
| 1213 |
+
"loss": 0.0134,
|
| 1214 |
+
"mean_token_accuracy": 0.9948266863822937,
|
| 1215 |
+
"num_tokens": 54119480.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.7758620689655172,
|
| 1220 |
+
"grad_norm": 0.027166401967406273,
|
| 1221 |
+
"learning_rate": 1.2479205652254954e-05,
|
| 1222 |
+
"loss": 0.0129,
|
| 1223 |
+
"mean_token_accuracy": 0.9950602531433106,
|
| 1224 |
+
"num_tokens": 54523011.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.7816091954022989,
|
| 1229 |
+
"grad_norm": 0.037310510873794556,
|
| 1230 |
+
"learning_rate": 1.2308256232692228e-05,
|
| 1231 |
+
"loss": 0.0134,
|
| 1232 |
+
"mean_token_accuracy": 0.9948535680770874,
|
| 1233 |
+
"num_tokens": 54926247.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.7873563218390804,
|
| 1238 |
+
"grad_norm": 0.030097058042883873,
|
| 1239 |
+
"learning_rate": 1.2140926925659696e-05,
|
| 1240 |
+
"loss": 0.013,
|
| 1241 |
+
"mean_token_accuracy": 0.9949084520339966,
|
| 1242 |
+
"num_tokens": 55329313.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.7931034482758621,
|
| 1247 |
+
"grad_norm": 0.031420208513736725,
|
| 1248 |
+
"learning_rate": 1.1977278242749991e-05,
|
| 1249 |
+
"loss": 0.0134,
|
| 1250 |
+
"mean_token_accuracy": 0.9948212742805481,
|
| 1251 |
+
"num_tokens": 55732944.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.7988505747126436,
|
| 1256 |
+
"grad_norm": 0.04165807366371155,
|
| 1257 |
+
"learning_rate": 1.1817369364525179e-05,
|
| 1258 |
+
"loss": 0.0132,
|
| 1259 |
+
"mean_token_accuracy": 0.9948533535003662,
|
| 1260 |
+
"num_tokens": 56137191.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.8045977011494253,
|
| 1265 |
+
"grad_norm": 0.04301629588007927,
|
| 1266 |
+
"learning_rate": 1.1661258119115136e-05,
|
| 1267 |
+
"loss": 0.0133,
|
| 1268 |
+
"mean_token_accuracy": 0.9947885513305664,
|
| 1269 |
+
"num_tokens": 56540742.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.8103448275862069,
|
| 1274 |
+
"grad_norm": 0.030160659924149513,
|
| 1275 |
+
"learning_rate": 1.1509000961305077e-05,
|
| 1276 |
+
"loss": 0.0128,
|
| 1277 |
+
"mean_token_accuracy": 0.9950136542320251,
|
| 1278 |
+
"num_tokens": 56944001.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.8160919540229885,
|
| 1283 |
+
"grad_norm": 0.03499389439821243,
|
| 1284 |
+
"learning_rate": 1.1360652952119732e-05,
|
| 1285 |
+
"loss": 0.0133,
|
| 1286 |
+
"mean_token_accuracy": 0.9947500705718995,
|
| 1287 |
+
"num_tokens": 57348147.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.8218390804597702,
|
| 1292 |
+
"grad_norm": 0.024081142619252205,
|
| 1293 |
+
"learning_rate": 1.1216267738911505e-05,
|
| 1294 |
+
"loss": 0.0135,
|
| 1295 |
+
"mean_token_accuracy": 0.9946637511253357,
|
| 1296 |
+
"num_tokens": 57751838.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.8275862068965517,
|
| 1301 |
+
"grad_norm": 0.027669720351696014,
|
| 1302 |
+
"learning_rate": 1.1075897535959896e-05,
|
| 1303 |
+
"loss": 0.0129,
|
| 1304 |
+
"mean_token_accuracy": 0.9950794219970703,
|
| 1305 |
+
"num_tokens": 58155972.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.8333333333333334,
|
| 1310 |
+
"grad_norm": 0.030040688812732697,
|
| 1311 |
+
"learning_rate": 1.0939593105589159e-05,
|
| 1312 |
+
"loss": 0.0125,
|
| 1313 |
+
"mean_token_accuracy": 0.9951125979423523,
|
| 1314 |
+
"num_tokens": 58561406.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.8390804597701149,
|
| 1319 |
+
"grad_norm": 0.0329650342464447,
|
| 1320 |
+
"learning_rate": 1.0807403739811037e-05,
|
| 1321 |
+
"loss": 0.013,
|
| 1322 |
+
"mean_token_accuracy": 0.994926369190216,
|
| 1323 |
+
"num_tokens": 58964866.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.8448275862068966,
|
| 1328 |
+
"grad_norm": 0.024679485708475113,
|
| 1329 |
+
"learning_rate": 1.0679377242499197e-05,
|
| 1330 |
+
"loss": 0.0125,
|
| 1331 |
+
"mean_token_accuracy": 0.9951718211174011,
|
| 1332 |
+
"num_tokens": 59368847.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.8505747126436781,
|
| 1337 |
+
"grad_norm": 0.06430592387914658,
|
| 1338 |
+
"learning_rate": 1.0555559912101832e-05,
|
| 1339 |
+
"loss": 0.013,
|
| 1340 |
+
"mean_token_accuracy": 0.9949762463569641,
|
| 1341 |
+
"num_tokens": 59772552.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.8563218390804598,
|
| 1346 |
+
"grad_norm": 0.028835134580731392,
|
| 1347 |
+
"learning_rate": 1.043599652489869e-05,
|
| 1348 |
+
"loss": 0.0131,
|
| 1349 |
+
"mean_token_accuracy": 0.9949678659439087,
|
| 1350 |
+
"num_tokens": 60176799.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.8620689655172413,
|
| 1355 |
+
"grad_norm": 0.026038020849227905,
|
| 1356 |
+
"learning_rate": 1.0320730318808507e-05,
|
| 1357 |
+
"loss": 0.0132,
|
| 1358 |
+
"mean_token_accuracy": 0.9948094844818115,
|
| 1359 |
+
"num_tokens": 60581056.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.867816091954023,
|
| 1364 |
+
"grad_norm": 0.02826244942843914,
|
| 1365 |
+
"learning_rate": 1.0209802977752852e-05,
|
| 1366 |
+
"loss": 0.0131,
|
| 1367 |
+
"mean_token_accuracy": 0.9948521971702575,
|
| 1368 |
+
"num_tokens": 60985012.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.8735632183908046,
|
| 1373 |
+
"grad_norm": 0.037073444575071335,
|
| 1374 |
+
"learning_rate": 1.0103254616581863e-05,
|
| 1375 |
+
"loss": 0.0129,
|
| 1376 |
+
"mean_token_accuracy": 0.9949637532234192,
|
| 1377 |
+
"num_tokens": 61388779.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"epoch": 0.8793103448275862,
|
| 1382 |
+
"grad_norm": 0.032884031534194946,
|
| 1383 |
+
"learning_rate": 1.0001123766567458e-05,
|
| 1384 |
+
"loss": 0.0131,
|
| 1385 |
+
"mean_token_accuracy": 0.9949699401855469,
|
| 1386 |
+
"num_tokens": 61793039.0,
|
| 1387 |
+
"step": 765
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"epoch": 0.8850574712643678,
|
| 1391 |
+
"grad_norm": 0.03468252718448639,
|
| 1392 |
+
"learning_rate": 9.90344736146919e-06,
|
| 1393 |
+
"loss": 0.0131,
|
| 1394 |
+
"mean_token_accuracy": 0.9949258089065551,
|
| 1395 |
+
"num_tokens": 62196261.0,
|
| 1396 |
+
"step": 770
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.8908045977011494,
|
| 1400 |
+
"grad_norm": 0.024934224784374237,
|
| 1401 |
+
"learning_rate": 9.810260724177834e-06,
|
| 1402 |
+
"loss": 0.0133,
|
| 1403 |
+
"mean_token_accuracy": 0.9948127031326294,
|
| 1404 |
+
"num_tokens": 62599709.0,
|
| 1405 |
+
"step": 775
|
| 1406 |
+
},
|
| 1407 |
+
{
|
| 1408 |
+
"epoch": 0.896551724137931,
|
| 1409 |
+
"grad_norm": 0.03356098756194115,
|
| 1410 |
+
"learning_rate": 9.721597553941526e-06,
|
| 1411 |
+
"loss": 0.0128,
|
| 1412 |
+
"mean_token_accuracy": 0.9949464678764344,
|
| 1413 |
+
"num_tokens": 63004030.0,
|
| 1414 |
+
"step": 780
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"epoch": 0.9022988505747126,
|
| 1418 |
+
"grad_norm": 0.038369644433259964,
|
| 1419 |
+
"learning_rate": 9.637489914179006e-06,
|
| 1420 |
+
"loss": 0.0129,
|
| 1421 |
+
"mean_token_accuracy": 0.9949608087539673,
|
| 1422 |
+
"num_tokens": 63408554.0,
|
| 1423 |
+
"step": 785
|
| 1424 |
+
},
|
| 1425 |
+
{
|
| 1426 |
+
"epoch": 0.9080459770114943,
|
| 1427 |
+
"grad_norm": 0.03118038922548294,
|
| 1428 |
+
"learning_rate": 9.557968220884502e-06,
|
| 1429 |
+
"loss": 0.0134,
|
| 1430 |
+
"mean_token_accuracy": 0.9947882890701294,
|
| 1431 |
+
"num_tokens": 63811332.0,
|
| 1432 |
+
"step": 790
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"epoch": 0.9137931034482759,
|
| 1436 |
+
"grad_norm": 0.036854732781648636,
|
| 1437 |
+
"learning_rate": 9.483061231628312e-06,
|
| 1438 |
+
"loss": 0.013,
|
| 1439 |
+
"mean_token_accuracy": 0.9949264883995056,
|
| 1440 |
+
"num_tokens": 64214657.0,
|
| 1441 |
+
"step": 795
|
| 1442 |
+
},
|
| 1443 |
+
{
|
| 1444 |
+
"epoch": 0.9195402298850575,
|
| 1445 |
+
"grad_norm": 0.04122990742325783,
|
| 1446 |
+
"learning_rate": 9.412796035157183e-06,
|
| 1447 |
+
"loss": 0.0132,
|
| 1448 |
+
"mean_token_accuracy": 0.9948729038238525,
|
| 1449 |
+
"num_tokens": 64617148.0,
|
| 1450 |
+
"step": 800
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"epoch": 0.9252873563218391,
|
| 1454 |
+
"grad_norm": 0.05959238111972809,
|
| 1455 |
+
"learning_rate": 9.347198041598134e-06,
|
| 1456 |
+
"loss": 0.0129,
|
| 1457 |
+
"mean_token_accuracy": 0.9949862718582153,
|
| 1458 |
+
"num_tokens": 65022073.0,
|
| 1459 |
+
"step": 805
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 0.9310344827586207,
|
| 1463 |
+
"grad_norm": 0.03828701004385948,
|
| 1464 |
+
"learning_rate": 9.286290973269366e-06,
|
| 1465 |
+
"loss": 0.0133,
|
| 1466 |
+
"mean_token_accuracy": 0.9947553157806397,
|
| 1467 |
+
"num_tokens": 65425185.0,
|
| 1468 |
+
"step": 810
|
| 1469 |
+
},
|
| 1470 |
+
{
|
| 1471 |
+
"epoch": 0.9367816091954023,
|
| 1472 |
+
"grad_norm": 0.03720645606517792,
|
| 1473 |
+
"learning_rate": 9.230096856101493e-06,
|
| 1474 |
+
"loss": 0.0126,
|
| 1475 |
+
"mean_token_accuracy": 0.9950950860977172,
|
| 1476 |
+
"num_tokens": 65827745.0,
|
| 1477 |
+
"step": 815
|
| 1478 |
+
},
|
| 1479 |
+
{
|
| 1480 |
+
"epoch": 0.9425287356321839,
|
| 1481 |
+
"grad_norm": 0.028984155505895615,
|
| 1482 |
+
"learning_rate": 9.178636011672301e-06,
|
| 1483 |
+
"loss": 0.013,
|
| 1484 |
+
"mean_token_accuracy": 0.9948612570762634,
|
| 1485 |
+
"num_tokens": 66231352.0,
|
| 1486 |
+
"step": 820
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"epoch": 0.9482758620689655,
|
| 1490 |
+
"grad_norm": 0.029562933370471,
|
| 1491 |
+
"learning_rate": 9.131927049857791e-06,
|
| 1492 |
+
"loss": 0.0129,
|
| 1493 |
+
"mean_token_accuracy": 0.9949148774147034,
|
| 1494 |
+
"num_tokens": 66634894.0,
|
| 1495 |
+
"step": 825
|
| 1496 |
+
},
|
| 1497 |
+
{
|
| 1498 |
+
"epoch": 0.9540229885057471,
|
| 1499 |
+
"grad_norm": 0.03893503174185753,
|
| 1500 |
+
"learning_rate": 9.089986862102262e-06,
|
| 1501 |
+
"loss": 0.0129,
|
| 1502 |
+
"mean_token_accuracy": 0.994910728931427,
|
| 1503 |
+
"num_tokens": 67038555.0,
|
| 1504 |
+
"step": 830
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"epoch": 0.9597701149425287,
|
| 1508 |
+
"grad_norm": 0.025236055254936218,
|
| 1509 |
+
"learning_rate": 9.052830615309845e-06,
|
| 1510 |
+
"loss": 0.0127,
|
| 1511 |
+
"mean_token_accuracy": 0.994949197769165,
|
| 1512 |
+
"num_tokens": 67441898.0,
|
| 1513 |
+
"step": 835
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"epoch": 0.9655172413793104,
|
| 1517 |
+
"grad_norm": 0.040895842015743256,
|
| 1518 |
+
"learning_rate": 9.020471746359651e-06,
|
| 1519 |
+
"loss": 0.0133,
|
| 1520 |
+
"mean_token_accuracy": 0.9949271559715271,
|
| 1521 |
+
"num_tokens": 67845282.0,
|
| 1522 |
+
"step": 840
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.9712643678160919,
|
| 1526 |
+
"grad_norm": 0.030874410644173622,
|
| 1527 |
+
"learning_rate": 8.992921957246571e-06,
|
| 1528 |
+
"loss": 0.0135,
|
| 1529 |
+
"mean_token_accuracy": 0.9948145151138306,
|
| 1530 |
+
"num_tokens": 68248415.0,
|
| 1531 |
+
"step": 845
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"epoch": 0.9770114942528736,
|
| 1535 |
+
"grad_norm": 0.02959192916750908,
|
| 1536 |
+
"learning_rate": 8.970191210849467e-06,
|
| 1537 |
+
"loss": 0.0132,
|
| 1538 |
+
"mean_token_accuracy": 0.9948099732398987,
|
| 1539 |
+
"num_tokens": 68652350.0,
|
| 1540 |
+
"step": 850
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"epoch": 0.9827586206896551,
|
| 1544 |
+
"grad_norm": 0.022801557555794716,
|
| 1545 |
+
"learning_rate": 8.952287727328286e-06,
|
| 1546 |
+
"loss": 0.0127,
|
| 1547 |
+
"mean_token_accuracy": 0.995022428035736,
|
| 1548 |
+
"num_tokens": 69057474.0,
|
| 1549 |
+
"step": 855
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"epoch": 0.9885057471264368,
|
| 1553 |
+
"grad_norm": 0.02625376358628273,
|
| 1554 |
+
"learning_rate": 8.939217981151367e-06,
|
| 1555 |
+
"loss": 0.0131,
|
| 1556 |
+
"mean_token_accuracy": 0.9948750615119935,
|
| 1557 |
+
"num_tokens": 69460959.0,
|
| 1558 |
+
"step": 860
|
| 1559 |
+
},
|
| 1560 |
+
{
|
| 1561 |
+
"epoch": 0.9942528735632183,
|
| 1562 |
+
"grad_norm": 0.027628207579255104,
|
| 1563 |
+
"learning_rate": 8.930986698754095e-06,
|
| 1564 |
+
"loss": 0.0126,
|
| 1565 |
+
"mean_token_accuracy": 0.9950263857841491,
|
| 1566 |
+
"num_tokens": 69864907.0,
|
| 1567 |
+
"step": 865
|
| 1568 |
+
}
|
| 1569 |
+
],
|
| 1570 |
+
"logging_steps": 5,
|
| 1571 |
+
"max_steps": 870,
|
| 1572 |
+
"num_input_tokens_seen": 0,
|
| 1573 |
+
"num_train_epochs": 1,
|
| 1574 |
+
"save_steps": 500,
|
| 1575 |
+
"stateful_callbacks": {
|
| 1576 |
+
"TrainerControl": {
|
| 1577 |
+
"args": {
|
| 1578 |
+
"should_epoch_stop": false,
|
| 1579 |
+
"should_evaluate": false,
|
| 1580 |
+
"should_log": false,
|
| 1581 |
+
"should_save": true,
|
| 1582 |
+
"should_training_stop": false
|
| 1583 |
+
},
|
| 1584 |
+
"attributes": {}
|
| 1585 |
+
}
|
| 1586 |
+
},
|
| 1587 |
+
"total_flos": 1.641453571692036e+18,
|
| 1588 |
+
"train_batch_size": 20,
|
| 1589 |
+
"trial_name": null,
|
| 1590 |
+
"trial_params": null
|
| 1591 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:431015aa236dbffeeb367355d0c9213146daf6fa5414dba3344b2bd4cc0080b7
|
| 3 |
+
size 6545
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|