Instructions to use Gege24/test_goof_intercode_synth_clean_v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/test_goof_intercode_synth_clean_v3 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B-Instruct-2507") model = PeftModel.from_pretrained(base_model, "Gege24/test_goof_intercode_synth_clean_v3") - Transformers
How to use Gege24/test_goof_intercode_synth_clean_v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/test_goof_intercode_synth_clean_v3") 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_clean_v3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/test_goof_intercode_synth_clean_v3 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_clean_v3" # 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_clean_v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/test_goof_intercode_synth_clean_v3
- SGLang
How to use Gege24/test_goof_intercode_synth_clean_v3 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_clean_v3" \ --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_clean_v3", "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_clean_v3" \ --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_clean_v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/test_goof_intercode_synth_clean_v3 with Docker Model Runner:
docker model run hf.co/Gege24/test_goof_intercode_synth_clean_v3
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 +1699 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3-4B-Instruct-2507
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Qwen--Qwen3-4B-Instruct-2507
|
| 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": "Qwen/Qwen3-4B-Instruct-2507",
|
| 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 |
+
"down_proj",
|
| 33 |
+
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"o_proj",
|
| 36 |
+
"up_proj",
|
| 37 |
+
"gate_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:b694d6e881a14aaa9b9500200cf483b480ac262ff5cce39cae218aff37f8672b
|
| 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 |
+
927,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,1699 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.9989224137931034,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 927,
|
| 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.005387931034482759,
|
| 14 |
+
"grad_norm": 11.118752479553223,
|
| 15 |
+
"learning_rate": 3.0395136778115497e-06,
|
| 16 |
+
"loss": 1.8415,
|
| 17 |
+
"mean_token_accuracy": 0.6949578166007996,
|
| 18 |
+
"num_tokens": 400768.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.010775862068965518,
|
| 23 |
+
"grad_norm": 3.6559956073760986,
|
| 24 |
+
"learning_rate": 6.838905775075987e-06,
|
| 25 |
+
"loss": 1.5636,
|
| 26 |
+
"mean_token_accuracy": 0.7073541164398194,
|
| 27 |
+
"num_tokens": 802094.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.016163793103448277,
|
| 32 |
+
"grad_norm": 2.47355318069458,
|
| 33 |
+
"learning_rate": 1.0638297872340424e-05,
|
| 34 |
+
"loss": 1.1447,
|
| 35 |
+
"mean_token_accuracy": 0.7477938294410705,
|
| 36 |
+
"num_tokens": 1204372.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.021551724137931036,
|
| 41 |
+
"grad_norm": 2.6038503646850586,
|
| 42 |
+
"learning_rate": 1.4437689969604861e-05,
|
| 43 |
+
"loss": 0.7431,
|
| 44 |
+
"mean_token_accuracy": 0.8272091269493103,
|
| 45 |
+
"num_tokens": 1605927.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.02693965517241379,
|
| 50 |
+
"grad_norm": 1.5864155292510986,
|
| 51 |
+
"learning_rate": 1.8237082066869297e-05,
|
| 52 |
+
"loss": 0.3175,
|
| 53 |
+
"mean_token_accuracy": 0.9232812523841858,
|
| 54 |
+
"num_tokens": 2008521.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.032327586206896554,
|
| 59 |
+
"grad_norm": 0.40001317858695984,
|
| 60 |
+
"learning_rate": 2.2036474164133735e-05,
|
| 61 |
+
"loss": 0.1035,
|
| 62 |
+
"mean_token_accuracy": 0.9760098576545715,
|
| 63 |
+
"num_tokens": 2411283.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.03771551724137931,
|
| 68 |
+
"grad_norm": 0.37432125210762024,
|
| 69 |
+
"learning_rate": 2.5835866261398174e-05,
|
| 70 |
+
"loss": 0.0492,
|
| 71 |
+
"mean_token_accuracy": 0.9880791783332825,
|
| 72 |
+
"num_tokens": 2812381.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.04310344827586207,
|
| 77 |
+
"grad_norm": 0.12147562205791473,
|
| 78 |
+
"learning_rate": 2.963525835866261e-05,
|
| 79 |
+
"loss": 0.0203,
|
| 80 |
+
"mean_token_accuracy": 0.9950897693634033,
|
| 81 |
+
"num_tokens": 3214234.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.04849137931034483,
|
| 86 |
+
"grad_norm": 0.07509531080722809,
|
| 87 |
+
"learning_rate": 3.343465045592705e-05,
|
| 88 |
+
"loss": 0.0121,
|
| 89 |
+
"mean_token_accuracy": 0.9974198818206788,
|
| 90 |
+
"num_tokens": 3615581.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.05387931034482758,
|
| 95 |
+
"grad_norm": 4.481222629547119,
|
| 96 |
+
"learning_rate": 3.5713945110618356e-05,
|
| 97 |
+
"loss": 0.0156,
|
| 98 |
+
"mean_token_accuracy": 0.9971701502799988,
|
| 99 |
+
"num_tokens": 4017171.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.059267241379310345,
|
| 104 |
+
"grad_norm": 1.3098348379135132,
|
| 105 |
+
"learning_rate": 3.5710113518316467e-05,
|
| 106 |
+
"loss": 0.0138,
|
| 107 |
+
"mean_token_accuracy": 0.9971798539161683,
|
| 108 |
+
"num_tokens": 4419002.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.06465517241379311,
|
| 113 |
+
"grad_norm": 0.07002394646406174,
|
| 114 |
+
"learning_rate": 3.570202580121256e-05,
|
| 115 |
+
"loss": 0.0077,
|
| 116 |
+
"mean_token_accuracy": 0.9981415390968322,
|
| 117 |
+
"num_tokens": 4822332.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.07004310344827586,
|
| 122 |
+
"grad_norm": 0.05212470144033432,
|
| 123 |
+
"learning_rate": 3.568968453030844e-05,
|
| 124 |
+
"loss": 0.0094,
|
| 125 |
+
"mean_token_accuracy": 0.9978966236114502,
|
| 126 |
+
"num_tokens": 5223107.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.07543103448275862,
|
| 131 |
+
"grad_norm": 0.02627100795507431,
|
| 132 |
+
"learning_rate": 3.5673093628766804e-05,
|
| 133 |
+
"loss": 0.0062,
|
| 134 |
+
"mean_token_accuracy": 0.9985594034194947,
|
| 135 |
+
"num_tokens": 5625734.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.08081896551724138,
|
| 140 |
+
"grad_norm": 0.0241162721067667,
|
| 141 |
+
"learning_rate": 3.565225837066405e-05,
|
| 142 |
+
"loss": 0.0071,
|
| 143 |
+
"mean_token_accuracy": 0.9983980655670166,
|
| 144 |
+
"num_tokens": 6027742.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.08620689655172414,
|
| 149 |
+
"grad_norm": 0.03432080149650574,
|
| 150 |
+
"learning_rate": 3.562718537931378e-05,
|
| 151 |
+
"loss": 0.0084,
|
| 152 |
+
"mean_token_accuracy": 0.9979879975318908,
|
| 153 |
+
"num_tokens": 6428384.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.09159482758620689,
|
| 158 |
+
"grad_norm": 0.028015699237585068,
|
| 159 |
+
"learning_rate": 3.559788262516122e-05,
|
| 160 |
+
"loss": 0.0077,
|
| 161 |
+
"mean_token_accuracy": 0.9981574892997742,
|
| 162 |
+
"num_tokens": 6829293.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.09698275862068965,
|
| 167 |
+
"grad_norm": 0.0296330489218235,
|
| 168 |
+
"learning_rate": 3.55643594232496e-05,
|
| 169 |
+
"loss": 0.0061,
|
| 170 |
+
"mean_token_accuracy": 0.9985599040985107,
|
| 171 |
+
"num_tokens": 7231379.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.10237068965517242,
|
| 176 |
+
"grad_norm": 0.027567585930228233,
|
| 177 |
+
"learning_rate": 3.5526626430258894e-05,
|
| 178 |
+
"loss": 0.0045,
|
| 179 |
+
"mean_token_accuracy": 0.9988541007041931,
|
| 180 |
+
"num_tokens": 7634176.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.10775862068965517,
|
| 185 |
+
"grad_norm": 0.03464515879750252,
|
| 186 |
+
"learning_rate": 3.5484695641118264e-05,
|
| 187 |
+
"loss": 0.006,
|
| 188 |
+
"mean_token_accuracy": 0.998340117931366,
|
| 189 |
+
"num_tokens": 8034981.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.11314655172413793,
|
| 194 |
+
"grad_norm": 0.03444606438279152,
|
| 195 |
+
"learning_rate": 3.543858038519294e-05,
|
| 196 |
+
"loss": 0.0063,
|
| 197 |
+
"mean_token_accuracy": 0.9984558463096619,
|
| 198 |
+
"num_tokens": 8435719.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.11853448275862069,
|
| 203 |
+
"grad_norm": 0.02906894125044346,
|
| 204 |
+
"learning_rate": 3.538829532204697e-05,
|
| 205 |
+
"loss": 0.0059,
|
| 206 |
+
"mean_token_accuracy": 0.9984469652175904,
|
| 207 |
+
"num_tokens": 8836428.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.12392241379310345,
|
| 212 |
+
"grad_norm": 0.026567254215478897,
|
| 213 |
+
"learning_rate": 3.533385643678309e-05,
|
| 214 |
+
"loss": 0.0052,
|
| 215 |
+
"mean_token_accuracy": 0.9984662294387817,
|
| 216 |
+
"num_tokens": 9237421.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.12931034482758622,
|
| 221 |
+
"grad_norm": 0.028587114065885544,
|
| 222 |
+
"learning_rate": 3.527528103496123e-05,
|
| 223 |
+
"loss": 0.0045,
|
| 224 |
+
"mean_token_accuracy": 0.9987730145454407,
|
| 225 |
+
"num_tokens": 9639778.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.13469827586206898,
|
| 230 |
+
"grad_norm": 0.02611548639833927,
|
| 231 |
+
"learning_rate": 3.521258773709726e-05,
|
| 232 |
+
"loss": 0.005,
|
| 233 |
+
"mean_token_accuracy": 0.9985883116722107,
|
| 234 |
+
"num_tokens": 10041852.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.1400862068965517,
|
| 239 |
+
"grad_norm": 0.028025874868035316,
|
| 240 |
+
"learning_rate": 3.514579647274372e-05,
|
| 241 |
+
"loss": 0.0049,
|
| 242 |
+
"mean_token_accuracy": 0.998680031299591,
|
| 243 |
+
"num_tokens": 10444159.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.14547413793103448,
|
| 248 |
+
"grad_norm": 0.04556312412023544,
|
| 249 |
+
"learning_rate": 3.5074928474154395e-05,
|
| 250 |
+
"loss": 0.0044,
|
| 251 |
+
"mean_token_accuracy": 0.9987163543701172,
|
| 252 |
+
"num_tokens": 10845771.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.15086206896551724,
|
| 257 |
+
"grad_norm": 0.04252542927861214,
|
| 258 |
+
"learning_rate": 3.500000626953483e-05,
|
| 259 |
+
"loss": 0.0039,
|
| 260 |
+
"mean_token_accuracy": 0.9987828731536865,
|
| 261 |
+
"num_tokens": 11247804.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.15625,
|
| 266 |
+
"grad_norm": 0.039127446711063385,
|
| 267 |
+
"learning_rate": 3.492105367588084e-05,
|
| 268 |
+
"loss": 0.0057,
|
| 269 |
+
"mean_token_accuracy": 0.9981782674789429,
|
| 270 |
+
"num_tokens": 11647222.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.16163793103448276,
|
| 275 |
+
"grad_norm": 0.02822212316095829,
|
| 276 |
+
"learning_rate": 3.4838095791407325e-05,
|
| 277 |
+
"loss": 0.0042,
|
| 278 |
+
"mean_token_accuracy": 0.998698377609253,
|
| 279 |
+
"num_tokens": 12048813.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.16702586206896552,
|
| 284 |
+
"grad_norm": 0.021515976637601852,
|
| 285 |
+
"learning_rate": 3.4751158987569807e-05,
|
| 286 |
+
"loss": 0.0036,
|
| 287 |
+
"mean_token_accuracy": 0.9988813161849975,
|
| 288 |
+
"num_tokens": 12451442.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.1724137931034483,
|
| 293 |
+
"grad_norm": 0.04444750025868416,
|
| 294 |
+
"learning_rate": 3.4660270900681224e-05,
|
| 295 |
+
"loss": 0.0042,
|
| 296 |
+
"mean_token_accuracy": 0.998634934425354,
|
| 297 |
+
"num_tokens": 12853398.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.17780172413793102,
|
| 302 |
+
"grad_norm": 0.0250164233148098,
|
| 303 |
+
"learning_rate": 3.456546042312664e-05,
|
| 304 |
+
"loss": 0.0033,
|
| 305 |
+
"mean_token_accuracy": 0.9989552855491638,
|
| 306 |
+
"num_tokens": 13256187.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.18318965517241378,
|
| 311 |
+
"grad_norm": 0.029835877940058708,
|
| 312 |
+
"learning_rate": 3.446675769417862e-05,
|
| 313 |
+
"loss": 0.004,
|
| 314 |
+
"mean_token_accuracy": 0.9987164378166199,
|
| 315 |
+
"num_tokens": 13657420.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.18857758620689655,
|
| 320 |
+
"grad_norm": 0.02986965700984001,
|
| 321 |
+
"learning_rate": 3.4364194090416284e-05,
|
| 322 |
+
"loss": 0.0032,
|
| 323 |
+
"mean_token_accuracy": 0.9989364504814148,
|
| 324 |
+
"num_tokens": 14059932.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.1939655172413793,
|
| 329 |
+
"grad_norm": 0.028351912274956703,
|
| 330 |
+
"learning_rate": 3.425780221575104e-05,
|
| 331 |
+
"loss": 0.0043,
|
| 332 |
+
"mean_token_accuracy": 0.9985925316810608,
|
| 333 |
+
"num_tokens": 14460951.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.19935344827586207,
|
| 338 |
+
"grad_norm": 0.016597596928477287,
|
| 339 |
+
"learning_rate": 3.414761589106212e-05,
|
| 340 |
+
"loss": 0.0029,
|
| 341 |
+
"mean_token_accuracy": 0.9990380048751831,
|
| 342 |
+
"num_tokens": 14864383.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.20474137931034483,
|
| 347 |
+
"grad_norm": 0.031333401799201965,
|
| 348 |
+
"learning_rate": 3.403367014344524e-05,
|
| 349 |
+
"loss": 0.0033,
|
| 350 |
+
"mean_token_accuracy": 0.9988710880279541,
|
| 351 |
+
"num_tokens": 15266886.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.2101293103448276,
|
| 356 |
+
"grad_norm": 0.02912697196006775,
|
| 357 |
+
"learning_rate": 3.3916001195077896e-05,
|
| 358 |
+
"loss": 0.0035,
|
| 359 |
+
"mean_token_accuracy": 0.998849093914032,
|
| 360 |
+
"num_tokens": 15669207.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.21551724137931033,
|
| 365 |
+
"grad_norm": 0.029591375961899757,
|
| 366 |
+
"learning_rate": 3.379464645170468e-05,
|
| 367 |
+
"loss": 0.0036,
|
| 368 |
+
"mean_token_accuracy": 0.9988542199134827,
|
| 369 |
+
"num_tokens": 16071006.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.2209051724137931,
|
| 374 |
+
"grad_norm": 0.02394878678023815,
|
| 375 |
+
"learning_rate": 3.36696444907464e-05,
|
| 376 |
+
"loss": 0.0039,
|
| 377 |
+
"mean_token_accuracy": 0.9987379312515259,
|
| 378 |
+
"num_tokens": 16472933.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.22629310344827586,
|
| 383 |
+
"grad_norm": 0.023629413917660713,
|
| 384 |
+
"learning_rate": 3.3541035049036674e-05,
|
| 385 |
+
"loss": 0.0031,
|
| 386 |
+
"mean_token_accuracy": 0.9989330530166626,
|
| 387 |
+
"num_tokens": 16875395.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.23168103448275862,
|
| 392 |
+
"grad_norm": 0.032314199954271317,
|
| 393 |
+
"learning_rate": 3.340885901019005e-05,
|
| 394 |
+
"loss": 0.0032,
|
| 395 |
+
"mean_token_accuracy": 0.9989269018173218,
|
| 396 |
+
"num_tokens": 17277271.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.23706896551724138,
|
| 401 |
+
"grad_norm": 0.0229765884578228,
|
| 402 |
+
"learning_rate": 3.327315839160552e-05,
|
| 403 |
+
"loss": 0.0031,
|
| 404 |
+
"mean_token_accuracy": 0.9989865899085999,
|
| 405 |
+
"num_tokens": 17680114.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.24245689655172414,
|
| 410 |
+
"grad_norm": 0.024461975321173668,
|
| 411 |
+
"learning_rate": 3.3133976331109576e-05,
|
| 412 |
+
"loss": 0.0035,
|
| 413 |
+
"mean_token_accuracy": 0.9988359451293946,
|
| 414 |
+
"num_tokens": 18082245.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.2478448275862069,
|
| 419 |
+
"grad_norm": 0.026213262230157852,
|
| 420 |
+
"learning_rate": 3.299135707324319e-05,
|
| 421 |
+
"loss": 0.0034,
|
| 422 |
+
"mean_token_accuracy": 0.9987861156463623,
|
| 423 |
+
"num_tokens": 18483821.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.25323275862068967,
|
| 428 |
+
"grad_norm": 0.032358359545469284,
|
| 429 |
+
"learning_rate": 3.2845345955196925e-05,
|
| 430 |
+
"loss": 0.0034,
|
| 431 |
+
"mean_token_accuracy": 0.9987888932228088,
|
| 432 |
+
"num_tokens": 18884746.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.25862068965517243,
|
| 437 |
+
"grad_norm": 0.021628115326166153,
|
| 438 |
+
"learning_rate": 3.2695989392398675e-05,
|
| 439 |
+
"loss": 0.0034,
|
| 440 |
+
"mean_token_accuracy": 0.9988565802574157,
|
| 441 |
+
"num_tokens": 19286927.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.2640086206896552,
|
| 446 |
+
"grad_norm": 0.032560136169195175,
|
| 447 |
+
"learning_rate": 3.254333486375871e-05,
|
| 448 |
+
"loss": 0.0036,
|
| 449 |
+
"mean_token_accuracy": 0.998822295665741,
|
| 450 |
+
"num_tokens": 19688165.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.26939655172413796,
|
| 455 |
+
"grad_norm": 0.026628414168953896,
|
| 456 |
+
"learning_rate": 3.238743089657662e-05,
|
| 457 |
+
"loss": 0.0031,
|
| 458 |
+
"mean_token_accuracy": 0.9988994359970093,
|
| 459 |
+
"num_tokens": 20090262.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.27478448275862066,
|
| 464 |
+
"grad_norm": 0.021604420617222786,
|
| 465 |
+
"learning_rate": 3.222832705111498e-05,
|
| 466 |
+
"loss": 0.0036,
|
| 467 |
+
"mean_token_accuracy": 0.9988043308258057,
|
| 468 |
+
"num_tokens": 20492107.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.2801724137931034,
|
| 473 |
+
"grad_norm": 0.027409082278609276,
|
| 474 |
+
"learning_rate": 3.206607390484465e-05,
|
| 475 |
+
"loss": 0.0033,
|
| 476 |
+
"mean_token_accuracy": 0.9988442182540893,
|
| 477 |
+
"num_tokens": 20894248.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.2855603448275862,
|
| 482 |
+
"grad_norm": 0.031035037711262703,
|
| 483 |
+
"learning_rate": 3.190072303636671e-05,
|
| 484 |
+
"loss": 0.003,
|
| 485 |
+
"mean_token_accuracy": 0.9989655137062072,
|
| 486 |
+
"num_tokens": 21296720.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.29094827586206895,
|
| 491 |
+
"grad_norm": 0.025560248643159866,
|
| 492 |
+
"learning_rate": 3.1732327009016207e-05,
|
| 493 |
+
"loss": 0.0038,
|
| 494 |
+
"mean_token_accuracy": 0.9986896753311157,
|
| 495 |
+
"num_tokens": 21697077.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.2963362068965517,
|
| 500 |
+
"grad_norm": 0.027044419199228287,
|
| 501 |
+
"learning_rate": 3.1560939354152733e-05,
|
| 502 |
+
"loss": 0.0037,
|
| 503 |
+
"mean_token_accuracy": 0.9987533926963806,
|
| 504 |
+
"num_tokens": 22098063.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.3017241379310345,
|
| 509 |
+
"grad_norm": 0.04460646212100983,
|
| 510 |
+
"learning_rate": 3.138661455414342e-05,
|
| 511 |
+
"loss": 0.0037,
|
| 512 |
+
"mean_token_accuracy": 0.9987125039100647,
|
| 513 |
+
"num_tokens": 22499277.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.30711206896551724,
|
| 518 |
+
"grad_norm": 0.02684149332344532,
|
| 519 |
+
"learning_rate": 3.120940802504353e-05,
|
| 520 |
+
"loss": 0.0029,
|
| 521 |
+
"mean_token_accuracy": 0.9990176081657409,
|
| 522 |
+
"num_tokens": 22902818.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.3125,
|
| 527 |
+
"grad_norm": 0.025129975751042366,
|
| 528 |
+
"learning_rate": 3.102937609898027e-05,
|
| 529 |
+
"loss": 0.0035,
|
| 530 |
+
"mean_token_accuracy": 0.9988201856613159,
|
| 531 |
+
"num_tokens": 23304341.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.31788793103448276,
|
| 536 |
+
"grad_norm": 0.03148937597870827,
|
| 537 |
+
"learning_rate": 3.084657600624539e-05,
|
| 538 |
+
"loss": 0.0037,
|
| 539 |
+
"mean_token_accuracy": 0.9986629009246826,
|
| 540 |
+
"num_tokens": 23704925.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.3232758620689655,
|
| 545 |
+
"grad_norm": 0.030350444838404655,
|
| 546 |
+
"learning_rate": 3.066106585710227e-05,
|
| 547 |
+
"loss": 0.0032,
|
| 548 |
+
"mean_token_accuracy": 0.9988539814949036,
|
| 549 |
+
"num_tokens": 24106861.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.3286637931034483,
|
| 554 |
+
"grad_norm": 0.027379781007766724,
|
| 555 |
+
"learning_rate": 3.0472904623313255e-05,
|
| 556 |
+
"loss": 0.0038,
|
| 557 |
+
"mean_token_accuracy": 0.9986437201499939,
|
| 558 |
+
"num_tokens": 24507326.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.33405172413793105,
|
| 563 |
+
"grad_norm": 0.028325095772743225,
|
| 564 |
+
"learning_rate": 3.028215211939314e-05,
|
| 565 |
+
"loss": 0.0033,
|
| 566 |
+
"mean_token_accuracy": 0.9988056659698487,
|
| 567 |
+
"num_tokens": 24908336.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.3394396551724138,
|
| 572 |
+
"grad_norm": 0.022994231432676315,
|
| 573 |
+
"learning_rate": 3.0088868983594765e-05,
|
| 574 |
+
"loss": 0.0033,
|
| 575 |
+
"mean_token_accuracy": 0.9988773822784424,
|
| 576 |
+
"num_tokens": 25309863.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.3448275862068966,
|
| 581 |
+
"grad_norm": 0.02782243676483631,
|
| 582 |
+
"learning_rate": 2.9893116658632732e-05,
|
| 583 |
+
"loss": 0.0031,
|
| 584 |
+
"mean_token_accuracy": 0.9988821387290955,
|
| 585 |
+
"num_tokens": 25711787.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.35021551724137934,
|
| 590 |
+
"grad_norm": 0.01946713961660862,
|
| 591 |
+
"learning_rate": 2.9694957372151408e-05,
|
| 592 |
+
"loss": 0.0032,
|
| 593 |
+
"mean_token_accuracy": 0.9987824201583863,
|
| 594 |
+
"num_tokens": 26113810.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.35560344827586204,
|
| 599 |
+
"grad_norm": 0.02599230408668518,
|
| 600 |
+
"learning_rate": 2.9494454116943372e-05,
|
| 601 |
+
"loss": 0.0031,
|
| 602 |
+
"mean_token_accuracy": 0.9988673329353333,
|
| 603 |
+
"num_tokens": 26515442.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.3609913793103448,
|
| 608 |
+
"grad_norm": 0.0248300451785326,
|
| 609 |
+
"learning_rate": 2.92916706309247e-05,
|
| 610 |
+
"loss": 0.0041,
|
| 611 |
+
"mean_token_accuracy": 0.9985779404640198,
|
| 612 |
+
"num_tokens": 26914834.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.36637931034482757,
|
| 617 |
+
"grad_norm": 0.028298387303948402,
|
| 618 |
+
"learning_rate": 2.9086671376873294e-05,
|
| 619 |
+
"loss": 0.0035,
|
| 620 |
+
"mean_token_accuracy": 0.998742938041687,
|
| 621 |
+
"num_tokens": 27315857.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.37176724137931033,
|
| 626 |
+
"grad_norm": 0.03281069174408913,
|
| 627 |
+
"learning_rate": 2.887952152193688e-05,
|
| 628 |
+
"loss": 0.0033,
|
| 629 |
+
"mean_token_accuracy": 0.9988440275192261,
|
| 630 |
+
"num_tokens": 27717269.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.3771551724137931,
|
| 635 |
+
"grad_norm": 0.03256155177950859,
|
| 636 |
+
"learning_rate": 2.8670286916916988e-05,
|
| 637 |
+
"loss": 0.0039,
|
| 638 |
+
"mean_token_accuracy": 0.9987234234809875,
|
| 639 |
+
"num_tokens": 28118459.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.38254310344827586,
|
| 644 |
+
"grad_norm": 0.022085973992943764,
|
| 645 |
+
"learning_rate": 2.84590340753357e-05,
|
| 646 |
+
"loss": 0.0035,
|
| 647 |
+
"mean_token_accuracy": 0.9987329363822937,
|
| 648 |
+
"num_tokens": 28518510.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.3879310344827586,
|
| 653 |
+
"grad_norm": 0.017243554815649986,
|
| 654 |
+
"learning_rate": 2.8245830152291688e-05,
|
| 655 |
+
"loss": 0.0028,
|
| 656 |
+
"mean_token_accuracy": 0.9990796089172364,
|
| 657 |
+
"num_tokens": 28921146.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.3933189655172414,
|
| 662 |
+
"grad_norm": 0.018972132354974747,
|
| 663 |
+
"learning_rate": 2.8030742923112265e-05,
|
| 664 |
+
"loss": 0.0028,
|
| 665 |
+
"mean_token_accuracy": 0.9990222811698913,
|
| 666 |
+
"num_tokens": 29323731.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.39870689655172414,
|
| 671 |
+
"grad_norm": 0.02033703401684761,
|
| 672 |
+
"learning_rate": 2.7813840761808355e-05,
|
| 673 |
+
"loss": 0.0033,
|
| 674 |
+
"mean_token_accuracy": 0.9988647699356079,
|
| 675 |
+
"num_tokens": 29725134.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.4040948275862069,
|
| 680 |
+
"grad_norm": 0.02075575664639473,
|
| 681 |
+
"learning_rate": 2.7595192619339067e-05,
|
| 682 |
+
"loss": 0.0029,
|
| 683 |
+
"mean_token_accuracy": 0.998983871936798,
|
| 684 |
+
"num_tokens": 30127021.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.40948275862068967,
|
| 689 |
+
"grad_norm": 0.01936476305127144,
|
| 690 |
+
"learning_rate": 2.7374868001692914e-05,
|
| 691 |
+
"loss": 0.0032,
|
| 692 |
+
"mean_token_accuracy": 0.9988717794418335,
|
| 693 |
+
"num_tokens": 30528417.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.41487068965517243,
|
| 698 |
+
"grad_norm": 0.022590680047869682,
|
| 699 |
+
"learning_rate": 2.7152936947792565e-05,
|
| 700 |
+
"loss": 0.0025,
|
| 701 |
+
"mean_token_accuracy": 0.9991134643554688,
|
| 702 |
+
"num_tokens": 30931584.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.4202586206896552,
|
| 707 |
+
"grad_norm": 0.029338538646697998,
|
| 708 |
+
"learning_rate": 2.69294700072302e-05,
|
| 709 |
+
"loss": 0.0033,
|
| 710 |
+
"mean_token_accuracy": 0.9988523483276367,
|
| 711 |
+
"num_tokens": 31333142.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.42564655172413796,
|
| 716 |
+
"grad_norm": 0.028044741600751877,
|
| 717 |
+
"learning_rate": 2.6704538217840525e-05,
|
| 718 |
+
"loss": 0.0034,
|
| 719 |
+
"mean_token_accuracy": 0.9987943410873413,
|
| 720 |
+
"num_tokens": 31734148.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.43103448275862066,
|
| 725 |
+
"grad_norm": 0.02476726658642292,
|
| 726 |
+
"learning_rate": 2.6478213083118573e-05,
|
| 727 |
+
"loss": 0.0027,
|
| 728 |
+
"mean_token_accuracy": 0.9990673303604126,
|
| 729 |
+
"num_tokens": 32137295.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.4364224137931034,
|
| 734 |
+
"grad_norm": 0.021439680829644203,
|
| 735 |
+
"learning_rate": 2.6250566549489473e-05,
|
| 736 |
+
"loss": 0.0031,
|
| 737 |
+
"mean_token_accuracy": 0.9989170432090759,
|
| 738 |
+
"num_tokens": 32538896.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.4418103448275862,
|
| 743 |
+
"grad_norm": 0.027145177125930786,
|
| 744 |
+
"learning_rate": 2.6021670983437456e-05,
|
| 745 |
+
"loss": 0.0034,
|
| 746 |
+
"mean_token_accuracy": 0.9987870693206787,
|
| 747 |
+
"num_tokens": 32940068.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.44719827586206895,
|
| 752 |
+
"grad_norm": 0.015717459842562675,
|
| 753 |
+
"learning_rate": 2.5791599148501243e-05,
|
| 754 |
+
"loss": 0.0028,
|
| 755 |
+
"mean_token_accuracy": 0.9990354537963867,
|
| 756 |
+
"num_tokens": 33342556.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.4525862068965517,
|
| 761 |
+
"grad_norm": 0.016596542671322823,
|
| 762 |
+
"learning_rate": 2.5560424182143315e-05,
|
| 763 |
+
"loss": 0.0028,
|
| 764 |
+
"mean_token_accuracy": 0.9989644050598144,
|
| 765 |
+
"num_tokens": 33744513.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.4579741379310345,
|
| 770 |
+
"grad_norm": 0.022335536777973175,
|
| 771 |
+
"learning_rate": 2.5328219572500253e-05,
|
| 772 |
+
"loss": 0.0033,
|
| 773 |
+
"mean_token_accuracy": 0.9987898945808411,
|
| 774 |
+
"num_tokens": 34145891.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.46336206896551724,
|
| 779 |
+
"grad_norm": 0.026606585830450058,
|
| 780 |
+
"learning_rate": 2.5095059135021593e-05,
|
| 781 |
+
"loss": 0.003,
|
| 782 |
+
"mean_token_accuracy": 0.9989604115486145,
|
| 783 |
+
"num_tokens": 34548204.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.46875,
|
| 788 |
+
"grad_norm": 0.022704385221004486,
|
| 789 |
+
"learning_rate": 2.4861016989004707e-05,
|
| 790 |
+
"loss": 0.0025,
|
| 791 |
+
"mean_token_accuracy": 0.9991106033325196,
|
| 792 |
+
"num_tokens": 34951187.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.47413793103448276,
|
| 797 |
+
"grad_norm": 0.04150070250034332,
|
| 798 |
+
"learning_rate": 2.4626167534032994e-05,
|
| 799 |
+
"loss": 0.0025,
|
| 800 |
+
"mean_token_accuracy": 0.9991032481193542,
|
| 801 |
+
"num_tokens": 35354414.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.4795258620689655,
|
| 806 |
+
"grad_norm": 0.02489551343023777,
|
| 807 |
+
"learning_rate": 2.439058542632504e-05,
|
| 808 |
+
"loss": 0.003,
|
| 809 |
+
"mean_token_accuracy": 0.9989043354988099,
|
| 810 |
+
"num_tokens": 35756305.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.4849137931034483,
|
| 815 |
+
"grad_norm": 0.027949925512075424,
|
| 816 |
+
"learning_rate": 2.415434555500219e-05,
|
| 817 |
+
"loss": 0.0028,
|
| 818 |
+
"mean_token_accuracy": 0.9990329504013061,
|
| 819 |
+
"num_tokens": 36158871.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.49030172413793105,
|
| 824 |
+
"grad_norm": 0.02412698045372963,
|
| 825 |
+
"learning_rate": 2.3917523018282043e-05,
|
| 826 |
+
"loss": 0.003,
|
| 827 |
+
"mean_token_accuracy": 0.9988869667053223,
|
| 828 |
+
"num_tokens": 36560269.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.4956896551724138,
|
| 833 |
+
"grad_norm": 0.02200850285589695,
|
| 834 |
+
"learning_rate": 2.3680193099605526e-05,
|
| 835 |
+
"loss": 0.0028,
|
| 836 |
+
"mean_token_accuracy": 0.9989560723304749,
|
| 837 |
+
"num_tokens": 36962062.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.5010775862068966,
|
| 842 |
+
"grad_norm": 0.01985372044146061,
|
| 843 |
+
"learning_rate": 2.3442431243705042e-05,
|
| 844 |
+
"loss": 0.0033,
|
| 845 |
+
"mean_token_accuracy": 0.9988078117370606,
|
| 846 |
+
"num_tokens": 37362795.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.5064655172413793,
|
| 851 |
+
"grad_norm": 0.0251405481249094,
|
| 852 |
+
"learning_rate": 2.3204313032621397e-05,
|
| 853 |
+
"loss": 0.0032,
|
| 854 |
+
"mean_token_accuracy": 0.9988798141479492,
|
| 855 |
+
"num_tokens": 37764363.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.5118534482758621,
|
| 860 |
+
"grad_norm": 0.017319003120064735,
|
| 861 |
+
"learning_rate": 2.2965914161677012e-05,
|
| 862 |
+
"loss": 0.0034,
|
| 863 |
+
"mean_token_accuracy": 0.9987285256385803,
|
| 864 |
+
"num_tokens": 38164542.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.5172413793103449,
|
| 869 |
+
"grad_norm": 0.02730216644704342,
|
| 870 |
+
"learning_rate": 2.2727310415413196e-05,
|
| 871 |
+
"loss": 0.0026,
|
| 872 |
+
"mean_token_accuracy": 0.999100661277771,
|
| 873 |
+
"num_tokens": 38568071.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.5226293103448276,
|
| 878 |
+
"grad_norm": 0.02837636135518551,
|
| 879 |
+
"learning_rate": 2.2488577643499015e-05,
|
| 880 |
+
"loss": 0.0037,
|
| 881 |
+
"mean_token_accuracy": 0.9986386775970459,
|
| 882 |
+
"num_tokens": 38968166.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.5280172413793104,
|
| 887 |
+
"grad_norm": 0.02115839347243309,
|
| 888 |
+
"learning_rate": 2.2249791736619445e-05,
|
| 889 |
+
"loss": 0.0037,
|
| 890 |
+
"mean_token_accuracy": 0.9987141489982605,
|
| 891 |
+
"num_tokens": 39368710.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.5334051724137931,
|
| 896 |
+
"grad_norm": 0.01951654814183712,
|
| 897 |
+
"learning_rate": 2.201102860235052e-05,
|
| 898 |
+
"loss": 0.0028,
|
| 899 |
+
"mean_token_accuracy": 0.9989643692970276,
|
| 900 |
+
"num_tokens": 39771110.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.5387931034482759,
|
| 905 |
+
"grad_norm": 0.011981317773461342,
|
| 906 |
+
"learning_rate": 2.17723641410291e-05,
|
| 907 |
+
"loss": 0.0032,
|
| 908 |
+
"mean_token_accuracy": 0.9988933444023133,
|
| 909 |
+
"num_tokens": 40172898.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.5441810344827587,
|
| 914 |
+
"grad_norm": 0.018850047141313553,
|
| 915 |
+
"learning_rate": 2.153387422162493e-05,
|
| 916 |
+
"loss": 0.0031,
|
| 917 |
+
"mean_token_accuracy": 0.9988592743873597,
|
| 918 |
+
"num_tokens": 40574281.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.5495689655172413,
|
| 923 |
+
"grad_norm": 0.018220078200101852,
|
| 924 |
+
"learning_rate": 2.1295634657622692e-05,
|
| 925 |
+
"loss": 0.0026,
|
| 926 |
+
"mean_token_accuracy": 0.9991109728813171,
|
| 927 |
+
"num_tokens": 40977292.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.5549568965517241,
|
| 932 |
+
"grad_norm": 0.02601587027311325,
|
| 933 |
+
"learning_rate": 2.1057721182921658e-05,
|
| 934 |
+
"loss": 0.0035,
|
| 935 |
+
"mean_token_accuracy": 0.9987223386764527,
|
| 936 |
+
"num_tokens": 41377321.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.5603448275862069,
|
| 941 |
+
"grad_norm": 0.017099367454648018,
|
| 942 |
+
"learning_rate": 2.0820209427760667e-05,
|
| 943 |
+
"loss": 0.0027,
|
| 944 |
+
"mean_token_accuracy": 0.9991111755371094,
|
| 945 |
+
"num_tokens": 41780166.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.5657327586206896,
|
| 950 |
+
"grad_norm": 0.01895494945347309,
|
| 951 |
+
"learning_rate": 2.058317489467608e-05,
|
| 952 |
+
"loss": 0.0028,
|
| 953 |
+
"mean_token_accuracy": 0.9990185737609864,
|
| 954 |
+
"num_tokens": 42182491.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.5711206896551724,
|
| 959 |
+
"grad_norm": 0.019429514184594154,
|
| 960 |
+
"learning_rate": 2.0346692934500267e-05,
|
| 961 |
+
"loss": 0.0035,
|
| 962 |
+
"mean_token_accuracy": 0.9987874507904053,
|
| 963 |
+
"num_tokens": 42583369.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.5765086206896551,
|
| 968 |
+
"grad_norm": 0.029150033369660378,
|
| 969 |
+
"learning_rate": 2.011083872240839e-05,
|
| 970 |
+
"loss": 0.0029,
|
| 971 |
+
"mean_token_accuracy": 0.9989708065986633,
|
| 972 |
+
"num_tokens": 42986169.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.5818965517241379,
|
| 977 |
+
"grad_norm": 0.01646232232451439,
|
| 978 |
+
"learning_rate": 1.987568723402096e-05,
|
| 979 |
+
"loss": 0.0028,
|
| 980 |
+
"mean_token_accuracy": 0.9990198969841003,
|
| 981 |
+
"num_tokens": 43388408.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.5872844827586207,
|
| 986 |
+
"grad_norm": 0.029317881911993027,
|
| 987 |
+
"learning_rate": 1.9641313221569873e-05,
|
| 988 |
+
"loss": 0.0034,
|
| 989 |
+
"mean_token_accuracy": 0.9987244963645935,
|
| 990 |
+
"num_tokens": 43789151.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.5926724137931034,
|
| 995 |
+
"grad_norm": 0.026302972808480263,
|
| 996 |
+
"learning_rate": 1.9407791190135443e-05,
|
| 997 |
+
"loss": 0.003,
|
| 998 |
+
"mean_token_accuracy": 0.9988860845565796,
|
| 999 |
+
"num_tokens": 44190220.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.5980603448275862,
|
| 1004 |
+
"grad_norm": 0.02601112239062786,
|
| 1005 |
+
"learning_rate": 1.917519537396203e-05,
|
| 1006 |
+
"loss": 0.0027,
|
| 1007 |
+
"mean_token_accuracy": 0.9990330338478088,
|
| 1008 |
+
"num_tokens": 44592857.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.603448275862069,
|
| 1013 |
+
"grad_norm": 0.019996047019958496,
|
| 1014 |
+
"learning_rate": 1.8943599712859686e-05,
|
| 1015 |
+
"loss": 0.0029,
|
| 1016 |
+
"mean_token_accuracy": 0.9989817619323731,
|
| 1017 |
+
"num_tokens": 44994800.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.6088362068965517,
|
| 1022 |
+
"grad_norm": 0.015889732167124748,
|
| 1023 |
+
"learning_rate": 1.8713077828699518e-05,
|
| 1024 |
+
"loss": 0.0025,
|
| 1025 |
+
"mean_token_accuracy": 0.9991264820098877,
|
| 1026 |
+
"num_tokens": 45398025.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.6142241379310345,
|
| 1031 |
+
"grad_norm": 0.01739376410841942,
|
| 1032 |
+
"learning_rate": 1.8483703002009994e-05,
|
| 1033 |
+
"loss": 0.0029,
|
| 1034 |
+
"mean_token_accuracy": 0.9989471673965454,
|
| 1035 |
+
"num_tokens": 45799951.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.6196120689655172,
|
| 1040 |
+
"grad_norm": 0.019734220579266548,
|
| 1041 |
+
"learning_rate": 1.8255548148681885e-05,
|
| 1042 |
+
"loss": 0.0034,
|
| 1043 |
+
"mean_token_accuracy": 0.9987558484077453,
|
| 1044 |
+
"num_tokens": 46200476.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.625,
|
| 1049 |
+
"grad_norm": 0.028406864032149315,
|
| 1050 |
+
"learning_rate": 1.8028685796788967e-05,
|
| 1051 |
+
"loss": 0.0028,
|
| 1052 |
+
"mean_token_accuracy": 0.9990233540534973,
|
| 1053 |
+
"num_tokens": 46602865.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.6303879310344828,
|
| 1058 |
+
"grad_norm": 0.029668040573596954,
|
| 1059 |
+
"learning_rate": 1.7803188063532184e-05,
|
| 1060 |
+
"loss": 0.003,
|
| 1061 |
+
"mean_token_accuracy": 0.9989258170127868,
|
| 1062 |
+
"num_tokens": 47004445.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.6357758620689655,
|
| 1067 |
+
"grad_norm": 0.017754795029759407,
|
| 1068 |
+
"learning_rate": 1.7579126632314283e-05,
|
| 1069 |
+
"loss": 0.0033,
|
| 1070 |
+
"mean_token_accuracy": 0.998816168308258,
|
| 1071 |
+
"num_tokens": 47405509.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.6411637931034483,
|
| 1076 |
+
"grad_norm": 0.023762712255120277,
|
| 1077 |
+
"learning_rate": 1.7356572729952424e-05,
|
| 1078 |
+
"loss": 0.003,
|
| 1079 |
+
"mean_token_accuracy": 0.9989230871200562,
|
| 1080 |
+
"num_tokens": 47807070.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.646551724137931,
|
| 1085 |
+
"grad_norm": 0.019800549373030663,
|
| 1086 |
+
"learning_rate": 1.713559710403587e-05,
|
| 1087 |
+
"loss": 0.0031,
|
| 1088 |
+
"mean_token_accuracy": 0.9988937497138977,
|
| 1089 |
+
"num_tokens": 48208600.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.6519396551724138,
|
| 1094 |
+
"grad_norm": 0.0168940257281065,
|
| 1095 |
+
"learning_rate": 1.6916270000436114e-05,
|
| 1096 |
+
"loss": 0.0028,
|
| 1097 |
+
"mean_token_accuracy": 0.998992097377777,
|
| 1098 |
+
"num_tokens": 48611166.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.6573275862068966,
|
| 1103 |
+
"grad_norm": 0.020920807495713234,
|
| 1104 |
+
"learning_rate": 1.6698661140976403e-05,
|
| 1105 |
+
"loss": 0.0027,
|
| 1106 |
+
"mean_token_accuracy": 0.9990215063095093,
|
| 1107 |
+
"num_tokens": 49013571.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.6627155172413793,
|
| 1112 |
+
"grad_norm": 0.01899370178580284,
|
| 1113 |
+
"learning_rate": 1.6482839701267902e-05,
|
| 1114 |
+
"loss": 0.0031,
|
| 1115 |
+
"mean_token_accuracy": 0.9987942934036255,
|
| 1116 |
+
"num_tokens": 49414184.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.6681034482758621,
|
| 1121 |
+
"grad_norm": 0.021047541871666908,
|
| 1122 |
+
"learning_rate": 1.626887428871947e-05,
|
| 1123 |
+
"loss": 0.0032,
|
| 1124 |
+
"mean_token_accuracy": 0.9988746643066406,
|
| 1125 |
+
"num_tokens": 49815792.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.6734913793103449,
|
| 1130 |
+
"grad_norm": 0.03720097616314888,
|
| 1131 |
+
"learning_rate": 1.6056832920728103e-05,
|
| 1132 |
+
"loss": 0.0028,
|
| 1133 |
+
"mean_token_accuracy": 0.998986005783081,
|
| 1134 |
+
"num_tokens": 50218315.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.6788793103448276,
|
| 1139 |
+
"grad_norm": 0.018089212477207184,
|
| 1140 |
+
"learning_rate": 1.5846783003056866e-05,
|
| 1141 |
+
"loss": 0.0032,
|
| 1142 |
+
"mean_token_accuracy": 0.9988272428512573,
|
| 1143 |
+
"num_tokens": 50619471.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.6842672413793104,
|
| 1148 |
+
"grad_norm": 0.01994973048567772,
|
| 1149 |
+
"learning_rate": 1.5638791308407327e-05,
|
| 1150 |
+
"loss": 0.0031,
|
| 1151 |
+
"mean_token_accuracy": 0.9988573670387269,
|
| 1152 |
+
"num_tokens": 51020999.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.6896551724137931,
|
| 1157 |
+
"grad_norm": 0.022940637543797493,
|
| 1158 |
+
"learning_rate": 1.5432923955193175e-05,
|
| 1159 |
+
"loss": 0.0029,
|
| 1160 |
+
"mean_token_accuracy": 0.9989816308021545,
|
| 1161 |
+
"num_tokens": 51422802.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.6950431034482759,
|
| 1166 |
+
"grad_norm": 0.02870994061231613,
|
| 1167 |
+
"learning_rate": 1.5229246386521894e-05,
|
| 1168 |
+
"loss": 0.0029,
|
| 1169 |
+
"mean_token_accuracy": 0.9989091634750367,
|
| 1170 |
+
"num_tokens": 51824364.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.7004310344827587,
|
| 1175 |
+
"grad_norm": 0.02485145442187786,
|
| 1176 |
+
"learning_rate": 1.502782334939104e-05,
|
| 1177 |
+
"loss": 0.0031,
|
| 1178 |
+
"mean_token_accuracy": 0.9988964319229126,
|
| 1179 |
+
"num_tokens": 52226195.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.7058189655172413,
|
| 1184 |
+
"grad_norm": 0.018746523186564445,
|
| 1185 |
+
"learning_rate": 1.4828718874105872e-05,
|
| 1186 |
+
"loss": 0.0032,
|
| 1187 |
+
"mean_token_accuracy": 0.9988164305686951,
|
| 1188 |
+
"num_tokens": 52627325.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.7112068965517241,
|
| 1193 |
+
"grad_norm": 0.021077096462249756,
|
| 1194 |
+
"learning_rate": 1.4631996253924749e-05,
|
| 1195 |
+
"loss": 0.0026,
|
| 1196 |
+
"mean_token_accuracy": 0.999091649055481,
|
| 1197 |
+
"num_tokens": 53029791.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.7165948275862069,
|
| 1202 |
+
"grad_norm": 0.023125356063246727,
|
| 1203 |
+
"learning_rate": 1.4437718024938859e-05,
|
| 1204 |
+
"loss": 0.0028,
|
| 1205 |
+
"mean_token_accuracy": 0.9989755392074585,
|
| 1206 |
+
"num_tokens": 53431762.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.7219827586206896,
|
| 1211 |
+
"grad_norm": 0.021164370700716972,
|
| 1212 |
+
"learning_rate": 1.4245945946192675e-05,
|
| 1213 |
+
"loss": 0.0027,
|
| 1214 |
+
"mean_token_accuracy": 0.9990996837615966,
|
| 1215 |
+
"num_tokens": 53834592.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.7273706896551724,
|
| 1220 |
+
"grad_norm": 0.023194963112473488,
|
| 1221 |
+
"learning_rate": 1.4056740980051348e-05,
|
| 1222 |
+
"loss": 0.0028,
|
| 1223 |
+
"mean_token_accuracy": 0.9989457607269288,
|
| 1224 |
+
"num_tokens": 54236113.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.7327586206896551,
|
| 1229 |
+
"grad_norm": 0.027318745851516724,
|
| 1230 |
+
"learning_rate": 1.3870163272821422e-05,
|
| 1231 |
+
"loss": 0.0026,
|
| 1232 |
+
"mean_token_accuracy": 0.999036180973053,
|
| 1233 |
+
"num_tokens": 54638773.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.7381465517241379,
|
| 1238 |
+
"grad_norm": 0.02111695520579815,
|
| 1239 |
+
"learning_rate": 1.3686272135630939e-05,
|
| 1240 |
+
"loss": 0.0033,
|
| 1241 |
+
"mean_token_accuracy": 0.9988025784492492,
|
| 1242 |
+
"num_tokens": 55039287.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.7435344827586207,
|
| 1247 |
+
"grad_norm": 0.021133102476596832,
|
| 1248 |
+
"learning_rate": 1.3505126025575055e-05,
|
| 1249 |
+
"loss": 0.0034,
|
| 1250 |
+
"mean_token_accuracy": 0.9987844109535218,
|
| 1251 |
+
"num_tokens": 55440154.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.7489224137931034,
|
| 1256 |
+
"grad_norm": 0.02764318138360977,
|
| 1257 |
+
"learning_rate": 1.3326782527133116e-05,
|
| 1258 |
+
"loss": 0.0034,
|
| 1259 |
+
"mean_token_accuracy": 0.9987500309944153,
|
| 1260 |
+
"num_tokens": 55840791.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.7543103448275862,
|
| 1265 |
+
"grad_norm": 0.024941669777035713,
|
| 1266 |
+
"learning_rate": 1.3151298333863147e-05,
|
| 1267 |
+
"loss": 0.0031,
|
| 1268 |
+
"mean_token_accuracy": 0.9988775968551635,
|
| 1269 |
+
"num_tokens": 56242887.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.759698275862069,
|
| 1274 |
+
"grad_norm": 0.020666925236582756,
|
| 1275 |
+
"learning_rate": 1.2978729230379578e-05,
|
| 1276 |
+
"loss": 0.0026,
|
| 1277 |
+
"mean_token_accuracy": 0.9990407824516296,
|
| 1278 |
+
"num_tokens": 56645470.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.7650862068965517,
|
| 1283 |
+
"grad_norm": 0.020904364064335823,
|
| 1284 |
+
"learning_rate": 1.2809130074619848e-05,
|
| 1285 |
+
"loss": 0.0028,
|
| 1286 |
+
"mean_token_accuracy": 0.998978590965271,
|
| 1287 |
+
"num_tokens": 57047650.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.7704741379310345,
|
| 1292 |
+
"grad_norm": 0.03892960771918297,
|
| 1293 |
+
"learning_rate": 1.2642554780405692e-05,
|
| 1294 |
+
"loss": 0.0033,
|
| 1295 |
+
"mean_token_accuracy": 0.9987773180007935,
|
| 1296 |
+
"num_tokens": 57448504.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.7758620689655172,
|
| 1301 |
+
"grad_norm": 0.019465629011392593,
|
| 1302 |
+
"learning_rate": 1.2479056300304417e-05,
|
| 1303 |
+
"loss": 0.0029,
|
| 1304 |
+
"mean_token_accuracy": 0.9989529132843018,
|
| 1305 |
+
"num_tokens": 57850023.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.78125,
|
| 1310 |
+
"grad_norm": 0.022766010835766792,
|
| 1311 |
+
"learning_rate": 1.2318686608795911e-05,
|
| 1312 |
+
"loss": 0.0026,
|
| 1313 |
+
"mean_token_accuracy": 0.9990706324577332,
|
| 1314 |
+
"num_tokens": 58252427.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.7866379310344828,
|
| 1319 |
+
"grad_norm": 0.01826990395784378,
|
| 1320 |
+
"learning_rate": 1.216149668575042e-05,
|
| 1321 |
+
"loss": 0.0028,
|
| 1322 |
+
"mean_token_accuracy": 0.9989858031272888,
|
| 1323 |
+
"num_tokens": 58654151.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.7920258620689655,
|
| 1328 |
+
"grad_norm": 0.024694079533219337,
|
| 1329 |
+
"learning_rate": 1.2007536500222625e-05,
|
| 1330 |
+
"loss": 0.0024,
|
| 1331 |
+
"mean_token_accuracy": 0.9991173863410949,
|
| 1332 |
+
"num_tokens": 59057239.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.7974137931034483,
|
| 1337 |
+
"grad_norm": 0.024528369307518005,
|
| 1338 |
+
"learning_rate": 1.1856854994566963e-05,
|
| 1339 |
+
"loss": 0.0033,
|
| 1340 |
+
"mean_token_accuracy": 0.9987176299095154,
|
| 1341 |
+
"num_tokens": 59457329.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.802801724137931,
|
| 1346 |
+
"grad_norm": 0.023563502356410027,
|
| 1347 |
+
"learning_rate": 1.170950006887937e-05,
|
| 1348 |
+
"loss": 0.0029,
|
| 1349 |
+
"mean_token_accuracy": 0.9988890886306763,
|
| 1350 |
+
"num_tokens": 59858237.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.8081896551724138,
|
| 1355 |
+
"grad_norm": 0.022601908072829247,
|
| 1356 |
+
"learning_rate": 1.1565518565770333e-05,
|
| 1357 |
+
"loss": 0.0032,
|
| 1358 |
+
"mean_token_accuracy": 0.9988453388214111,
|
| 1359 |
+
"num_tokens": 60258966.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.8135775862068966,
|
| 1364 |
+
"grad_norm": 0.02289353311061859,
|
| 1365 |
+
"learning_rate": 1.1424956255474115e-05,
|
| 1366 |
+
"loss": 0.0029,
|
| 1367 |
+
"mean_token_accuracy": 0.9989407777786254,
|
| 1368 |
+
"num_tokens": 60660391.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.8189655172413793,
|
| 1373 |
+
"grad_norm": 0.022011511027812958,
|
| 1374 |
+
"learning_rate": 1.128785782129885e-05,
|
| 1375 |
+
"loss": 0.0027,
|
| 1376 |
+
"mean_token_accuracy": 0.9989583969116211,
|
| 1377 |
+
"num_tokens": 61063253.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"epoch": 0.8243534482758621,
|
| 1382 |
+
"grad_norm": 0.016875440254807472,
|
| 1383 |
+
"learning_rate": 1.1154266845422202e-05,
|
| 1384 |
+
"loss": 0.0028,
|
| 1385 |
+
"mean_token_accuracy": 0.9989829182624816,
|
| 1386 |
+
"num_tokens": 61464810.0,
|
| 1387 |
+
"step": 765
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"epoch": 0.8297413793103449,
|
| 1391 |
+
"grad_norm": 0.019241346046328545,
|
| 1392 |
+
"learning_rate": 1.1024225795037032e-05,
|
| 1393 |
+
"loss": 0.0029,
|
| 1394 |
+
"mean_token_accuracy": 0.9989438533782959,
|
| 1395 |
+
"num_tokens": 61866531.0,
|
| 1396 |
+
"step": 770
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.8351293103448276,
|
| 1400 |
+
"grad_norm": 0.02377363108098507,
|
| 1401 |
+
"learning_rate": 1.089777600885151e-05,
|
| 1402 |
+
"loss": 0.0028,
|
| 1403 |
+
"mean_token_accuracy": 0.9989052176475525,
|
| 1404 |
+
"num_tokens": 62268172.0,
|
| 1405 |
+
"step": 775
|
| 1406 |
+
},
|
| 1407 |
+
{
|
| 1408 |
+
"epoch": 0.8405172413793104,
|
| 1409 |
+
"grad_norm": 0.020043199881911278,
|
| 1410 |
+
"learning_rate": 1.077495768394797e-05,
|
| 1411 |
+
"loss": 0.0029,
|
| 1412 |
+
"mean_token_accuracy": 0.9989200592041015,
|
| 1413 |
+
"num_tokens": 62669240.0,
|
| 1414 |
+
"step": 780
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"epoch": 0.8459051724137931,
|
| 1418 |
+
"grad_norm": 0.021909885108470917,
|
| 1419 |
+
"learning_rate": 1.065580986300468e-05,
|
| 1420 |
+
"loss": 0.0027,
|
| 1421 |
+
"mean_token_accuracy": 0.9990006566047669,
|
| 1422 |
+
"num_tokens": 63070830.0,
|
| 1423 |
+
"step": 785
|
| 1424 |
+
},
|
| 1425 |
+
{
|
| 1426 |
+
"epoch": 0.8512931034482759,
|
| 1427 |
+
"grad_norm": 0.022637179121375084,
|
| 1428 |
+
"learning_rate": 1.0540370421884568e-05,
|
| 1429 |
+
"loss": 0.0029,
|
| 1430 |
+
"mean_token_accuracy": 0.9989096641540527,
|
| 1431 |
+
"num_tokens": 63472170.0,
|
| 1432 |
+
"step": 790
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"epoch": 0.8566810344827587,
|
| 1436 |
+
"grad_norm": 0.024955401197075844,
|
| 1437 |
+
"learning_rate": 1.0428676057594878e-05,
|
| 1438 |
+
"loss": 0.0028,
|
| 1439 |
+
"mean_token_accuracy": 0.998984956741333,
|
| 1440 |
+
"num_tokens": 63874037.0,
|
| 1441 |
+
"step": 795
|
| 1442 |
+
},
|
| 1443 |
+
{
|
| 1444 |
+
"epoch": 0.8620689655172413,
|
| 1445 |
+
"grad_norm": 0.01749681495130062,
|
| 1446 |
+
"learning_rate": 1.0320762276621562e-05,
|
| 1447 |
+
"loss": 0.0028,
|
| 1448 |
+
"mean_token_accuracy": 0.9988763809204102,
|
| 1449 |
+
"num_tokens": 64275344.0,
|
| 1450 |
+
"step": 800
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"epoch": 0.8674568965517241,
|
| 1454 |
+
"grad_norm": 0.027656937018036842,
|
| 1455 |
+
"learning_rate": 1.0216663383642168e-05,
|
| 1456 |
+
"loss": 0.0027,
|
| 1457 |
+
"mean_token_accuracy": 0.998952853679657,
|
| 1458 |
+
"num_tokens": 64677126.0,
|
| 1459 |
+
"step": 805
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 0.8728448275862069,
|
| 1463 |
+
"grad_norm": 0.023702535778284073,
|
| 1464 |
+
"learning_rate": 1.0116412470620679e-05,
|
| 1465 |
+
"loss": 0.0025,
|
| 1466 |
+
"mean_token_accuracy": 0.9990836262702942,
|
| 1467 |
+
"num_tokens": 65079920.0,
|
| 1468 |
+
"step": 810
|
| 1469 |
+
},
|
| 1470 |
+
{
|
| 1471 |
+
"epoch": 0.8782327586206896,
|
| 1472 |
+
"grad_norm": 0.01650397479534149,
|
| 1473 |
+
"learning_rate": 1.0020041406287986e-05,
|
| 1474 |
+
"loss": 0.0029,
|
| 1475 |
+
"mean_token_accuracy": 0.9989512085914611,
|
| 1476 |
+
"num_tokens": 65481506.0,
|
| 1477 |
+
"step": 815
|
| 1478 |
+
},
|
| 1479 |
+
{
|
| 1480 |
+
"epoch": 0.8836206896551724,
|
| 1481 |
+
"grad_norm": 0.020977003499865532,
|
| 1482 |
+
"learning_rate": 9.927580826011085e-06,
|
| 1483 |
+
"loss": 0.0023,
|
| 1484 |
+
"mean_token_accuracy": 0.9991203188896179,
|
| 1485 |
+
"num_tokens": 65884331.0,
|
| 1486 |
+
"step": 820
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"epoch": 0.8890086206896551,
|
| 1490 |
+
"grad_norm": 0.024442242458462715,
|
| 1491 |
+
"learning_rate": 9.839060122054454e-06,
|
| 1492 |
+
"loss": 0.0027,
|
| 1493 |
+
"mean_token_accuracy": 0.998936676979065,
|
| 1494 |
+
"num_tokens": 66285759.0,
|
| 1495 |
+
"step": 825
|
| 1496 |
+
},
|
| 1497 |
+
{
|
| 1498 |
+
"epoch": 0.8943965517241379,
|
| 1499 |
+
"grad_norm": 0.026786241680383682,
|
| 1500 |
+
"learning_rate": 9.75450743423654e-06,
|
| 1501 |
+
"loss": 0.0033,
|
| 1502 |
+
"mean_token_accuracy": 0.998736298084259,
|
| 1503 |
+
"num_tokens": 66685714.0,
|
| 1504 |
+
"step": 830
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"epoch": 0.8997844827586207,
|
| 1508 |
+
"grad_norm": 0.02032666653394699,
|
| 1509 |
+
"learning_rate": 9.673949640984395e-06,
|
| 1510 |
+
"loss": 0.0031,
|
| 1511 |
+
"mean_token_accuracy": 0.9987974643707276,
|
| 1512 |
+
"num_tokens": 67086597.0,
|
| 1513 |
+
"step": 835
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"epoch": 0.9051724137931034,
|
| 1517 |
+
"grad_norm": 0.018526580184698105,
|
| 1518 |
+
"learning_rate": 9.597412350789308e-06,
|
| 1519 |
+
"loss": 0.0023,
|
| 1520 |
+
"mean_token_accuracy": 0.9991434216499329,
|
| 1521 |
+
"num_tokens": 67489472.0,
|
| 1522 |
+
"step": 840
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.9105603448275862,
|
| 1526 |
+
"grad_norm": 0.02303580939769745,
|
| 1527 |
+
"learning_rate": 9.52491989406613e-06,
|
| 1528 |
+
"loss": 0.0029,
|
| 1529 |
+
"mean_token_accuracy": 0.998892092704773,
|
| 1530 |
+
"num_tokens": 67890506.0,
|
| 1531 |
+
"step": 845
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"epoch": 0.915948275862069,
|
| 1535 |
+
"grad_norm": 0.02187165431678295,
|
| 1536 |
+
"learning_rate": 9.456495315418894e-06,
|
| 1537 |
+
"loss": 0.0028,
|
| 1538 |
+
"mean_token_accuracy": 0.998983633518219,
|
| 1539 |
+
"num_tokens": 68291917.0,
|
| 1540 |
+
"step": 850
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"epoch": 0.9213362068965517,
|
| 1544 |
+
"grad_norm": 0.024225406348705292,
|
| 1545 |
+
"learning_rate": 9.392160366315146e-06,
|
| 1546 |
+
"loss": 0.0028,
|
| 1547 |
+
"mean_token_accuracy": 0.9989516019821167,
|
| 1548 |
+
"num_tokens": 68693565.0,
|
| 1549 |
+
"step": 855
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"epoch": 0.9267241379310345,
|
| 1553 |
+
"grad_norm": 0.02186994068324566,
|
| 1554 |
+
"learning_rate": 9.331935498171415e-06,
|
| 1555 |
+
"loss": 0.0029,
|
| 1556 |
+
"mean_token_accuracy": 0.9988806962966919,
|
| 1557 |
+
"num_tokens": 69094557.0,
|
| 1558 |
+
"step": 860
|
| 1559 |
+
},
|
| 1560 |
+
{
|
| 1561 |
+
"epoch": 0.9321120689655172,
|
| 1562 |
+
"grad_norm": 0.028275199234485626,
|
| 1563 |
+
"learning_rate": 9.275839855851889e-06,
|
| 1564 |
+
"loss": 0.0027,
|
| 1565 |
+
"mean_token_accuracy": 0.9990072846412659,
|
| 1566 |
+
"num_tokens": 69496215.0,
|
| 1567 |
+
"step": 865
|
| 1568 |
+
},
|
| 1569 |
+
{
|
| 1570 |
+
"epoch": 0.9375,
|
| 1571 |
+
"grad_norm": 0.023129276931285858,
|
| 1572 |
+
"learning_rate": 9.223891271582473e-06,
|
| 1573 |
+
"loss": 0.0029,
|
| 1574 |
+
"mean_token_accuracy": 0.99894700050354,
|
| 1575 |
+
"num_tokens": 69897495.0,
|
| 1576 |
+
"step": 870
|
| 1577 |
+
},
|
| 1578 |
+
{
|
| 1579 |
+
"epoch": 0.9428879310344828,
|
| 1580 |
+
"grad_norm": 0.026557613164186478,
|
| 1581 |
+
"learning_rate": 9.176106259282111e-06,
|
| 1582 |
+
"loss": 0.0029,
|
| 1583 |
+
"mean_token_accuracy": 0.998926043510437,
|
| 1584 |
+
"num_tokens": 70298929.0,
|
| 1585 |
+
"step": 875
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 0.9482758620689655,
|
| 1589 |
+
"grad_norm": 0.026480358093976974,
|
| 1590 |
+
"learning_rate": 9.132500009313176e-06,
|
| 1591 |
+
"loss": 0.0029,
|
| 1592 |
+
"mean_token_accuracy": 0.9989673137664795,
|
| 1593 |
+
"num_tokens": 70700320.0,
|
| 1594 |
+
"step": 880
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"epoch": 0.9536637931034483,
|
| 1598 |
+
"grad_norm": 0.020785316824913025,
|
| 1599 |
+
"learning_rate": 9.093086383652602e-06,
|
| 1600 |
+
"loss": 0.0032,
|
| 1601 |
+
"mean_token_accuracy": 0.9987948417663575,
|
| 1602 |
+
"num_tokens": 71100703.0,
|
| 1603 |
+
"step": 885
|
| 1604 |
+
},
|
| 1605 |
+
{
|
| 1606 |
+
"epoch": 0.959051724137931,
|
| 1607 |
+
"grad_norm": 0.024656957015395164,
|
| 1608 |
+
"learning_rate": 9.057877911485328e-06,
|
| 1609 |
+
"loss": 0.0026,
|
| 1610 |
+
"mean_token_accuracy": 0.9990541458129882,
|
| 1611 |
+
"num_tokens": 71502763.0,
|
| 1612 |
+
"step": 890
|
| 1613 |
+
},
|
| 1614 |
+
{
|
| 1615 |
+
"epoch": 0.9644396551724138,
|
| 1616 |
+
"grad_norm": 0.023979607969522476,
|
| 1617 |
+
"learning_rate": 9.026885785221381e-06,
|
| 1618 |
+
"loss": 0.003,
|
| 1619 |
+
"mean_token_accuracy": 0.9988475799560547,
|
| 1620 |
+
"num_tokens": 71903543.0,
|
| 1621 |
+
"step": 895
|
| 1622 |
+
},
|
| 1623 |
+
{
|
| 1624 |
+
"epoch": 0.9698275862068966,
|
| 1625 |
+
"grad_norm": 0.03244682401418686,
|
| 1626 |
+
"learning_rate": 9.000119856937926e-06,
|
| 1627 |
+
"loss": 0.0028,
|
| 1628 |
+
"mean_token_accuracy": 0.9989493727684021,
|
| 1629 |
+
"num_tokens": 72304889.0,
|
| 1630 |
+
"step": 900
|
| 1631 |
+
},
|
| 1632 |
+
{
|
| 1633 |
+
"epoch": 0.9752155172413793,
|
| 1634 |
+
"grad_norm": 0.021832207217812538,
|
| 1635 |
+
"learning_rate": 8.977588635247394e-06,
|
| 1636 |
+
"loss": 0.0027,
|
| 1637 |
+
"mean_token_accuracy": 0.998972749710083,
|
| 1638 |
+
"num_tokens": 72706282.0,
|
| 1639 |
+
"step": 905
|
| 1640 |
+
},
|
| 1641 |
+
{
|
| 1642 |
+
"epoch": 0.9806034482758621,
|
| 1643 |
+
"grad_norm": 0.027536118403077126,
|
| 1644 |
+
"learning_rate": 8.95929928259269e-06,
|
| 1645 |
+
"loss": 0.0022,
|
| 1646 |
+
"mean_token_accuracy": 0.9991941571235656,
|
| 1647 |
+
"num_tokens": 73109508.0,
|
| 1648 |
+
"step": 910
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.9859913793103449,
|
| 1652 |
+
"grad_norm": 0.0195818729698658,
|
| 1653 |
+
"learning_rate": 8.945257612970317e-06,
|
| 1654 |
+
"loss": 0.0025,
|
| 1655 |
+
"mean_token_accuracy": 0.9990817308425903,
|
| 1656 |
+
"num_tokens": 73511750.0,
|
| 1657 |
+
"step": 915
|
| 1658 |
+
},
|
| 1659 |
+
{
|
| 1660 |
+
"epoch": 0.9913793103448276,
|
| 1661 |
+
"grad_norm": 0.02713189646601677,
|
| 1662 |
+
"learning_rate": 8.935468090082163e-06,
|
| 1663 |
+
"loss": 0.0029,
|
| 1664 |
+
"mean_token_accuracy": 0.9989341139793396,
|
| 1665 |
+
"num_tokens": 73912567.0,
|
| 1666 |
+
"step": 920
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"epoch": 0.9967672413793104,
|
| 1670 |
+
"grad_norm": 0.027518320828676224,
|
| 1671 |
+
"learning_rate": 8.929933825916554e-06,
|
| 1672 |
+
"loss": 0.0028,
|
| 1673 |
+
"mean_token_accuracy": 0.9989198088645935,
|
| 1674 |
+
"num_tokens": 74313918.0,
|
| 1675 |
+
"step": 925
|
| 1676 |
+
}
|
| 1677 |
+
],
|
| 1678 |
+
"logging_steps": 5,
|
| 1679 |
+
"max_steps": 928,
|
| 1680 |
+
"num_input_tokens_seen": 0,
|
| 1681 |
+
"num_train_epochs": 1,
|
| 1682 |
+
"save_steps": 500,
|
| 1683 |
+
"stateful_callbacks": {
|
| 1684 |
+
"TrainerControl": {
|
| 1685 |
+
"args": {
|
| 1686 |
+
"should_epoch_stop": false,
|
| 1687 |
+
"should_evaluate": false,
|
| 1688 |
+
"should_log": false,
|
| 1689 |
+
"should_save": true,
|
| 1690 |
+
"should_training_stop": false
|
| 1691 |
+
},
|
| 1692 |
+
"attributes": {}
|
| 1693 |
+
}
|
| 1694 |
+
},
|
| 1695 |
+
"total_flos": 1.7417098212933632e+18,
|
| 1696 |
+
"train_batch_size": 20,
|
| 1697 |
+
"trial_name": null,
|
| 1698 |
+
"trial_params": null
|
| 1699 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a6501df599ca2d094d2fc23c96912793a2eea8e543411f6ed466537e49e36f3
|
| 3 |
+
size 6545
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|