Instructions to use Gege24/test_goof_intercode_synth_clean_v2 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_v2 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_v2") - Transformers
How to use Gege24/test_goof_intercode_synth_clean_v2 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_v2") 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_v2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/test_goof_intercode_synth_clean_v2 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_v2" # 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_v2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/test_goof_intercode_synth_clean_v2
- SGLang
How to use Gege24/test_goof_intercode_synth_clean_v2 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_v2" \ --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_v2", "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_v2" \ --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_v2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/test_goof_intercode_synth_clean_v2 with Docker Model Runner:
docker model run hf.co/Gege24/test_goof_intercode_synth_clean_v2
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 |
+
"v_proj",
|
| 33 |
+
"o_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"down_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:eeaed67547f317f6591a26e6a1ec515fa0b27d563a12926d0112e9b6c5cf0622
|
| 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.358600616455078,
|
| 15 |
+
"learning_rate": 3.0395136778115497e-06,
|
| 16 |
+
"loss": 1.9178,
|
| 17 |
+
"mean_token_accuracy": 0.6784796357154846,
|
| 18 |
+
"num_tokens": 400768.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.010775862068965518,
|
| 23 |
+
"grad_norm": 3.644407033920288,
|
| 24 |
+
"learning_rate": 6.838905775075987e-06,
|
| 25 |
+
"loss": 1.6268,
|
| 26 |
+
"mean_token_accuracy": 0.6908416032791138,
|
| 27 |
+
"num_tokens": 802094.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.016163793103448277,
|
| 32 |
+
"grad_norm": 2.4331142902374268,
|
| 33 |
+
"learning_rate": 1.0638297872340424e-05,
|
| 34 |
+
"loss": 1.2037,
|
| 35 |
+
"mean_token_accuracy": 0.7343859195709228,
|
| 36 |
+
"num_tokens": 1204372.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.021551724137931036,
|
| 41 |
+
"grad_norm": 2.40728497505188,
|
| 42 |
+
"learning_rate": 1.4437689969604861e-05,
|
| 43 |
+
"loss": 0.7993,
|
| 44 |
+
"mean_token_accuracy": 0.8154044389724732,
|
| 45 |
+
"num_tokens": 1605927.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.02693965517241379,
|
| 50 |
+
"grad_norm": 1.5771023035049438,
|
| 51 |
+
"learning_rate": 1.8237082066869297e-05,
|
| 52 |
+
"loss": 0.3527,
|
| 53 |
+
"mean_token_accuracy": 0.914470088481903,
|
| 54 |
+
"num_tokens": 2008521.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.032327586206896554,
|
| 59 |
+
"grad_norm": 0.5942408442497253,
|
| 60 |
+
"learning_rate": 2.2036474164133735e-05,
|
| 61 |
+
"loss": 0.1246,
|
| 62 |
+
"mean_token_accuracy": 0.9693703055381775,
|
| 63 |
+
"num_tokens": 2411283.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.03771551724137931,
|
| 68 |
+
"grad_norm": 0.49840110540390015,
|
| 69 |
+
"learning_rate": 2.5835866261398174e-05,
|
| 70 |
+
"loss": 0.0648,
|
| 71 |
+
"mean_token_accuracy": 0.9832711696624756,
|
| 72 |
+
"num_tokens": 2812381.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.04310344827586207,
|
| 77 |
+
"grad_norm": 0.1990126520395279,
|
| 78 |
+
"learning_rate": 2.963525835866261e-05,
|
| 79 |
+
"loss": 0.0325,
|
| 80 |
+
"mean_token_accuracy": 0.9908363938331604,
|
| 81 |
+
"num_tokens": 3214234.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.04849137931034483,
|
| 86 |
+
"grad_norm": 0.1390412151813507,
|
| 87 |
+
"learning_rate": 3.343465045592705e-05,
|
| 88 |
+
"loss": 0.0239,
|
| 89 |
+
"mean_token_accuracy": 0.993123197555542,
|
| 90 |
+
"num_tokens": 3615581.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.05387931034482758,
|
| 95 |
+
"grad_norm": 0.05990126356482506,
|
| 96 |
+
"learning_rate": 3.5713945110618356e-05,
|
| 97 |
+
"loss": 0.0216,
|
| 98 |
+
"mean_token_accuracy": 0.9935235619544983,
|
| 99 |
+
"num_tokens": 4017171.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.059267241379310345,
|
| 104 |
+
"grad_norm": 0.05641232803463936,
|
| 105 |
+
"learning_rate": 3.5710113518316467e-05,
|
| 106 |
+
"loss": 0.0202,
|
| 107 |
+
"mean_token_accuracy": 0.993712043762207,
|
| 108 |
+
"num_tokens": 4419002.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.06465517241379311,
|
| 113 |
+
"grad_norm": 0.06281889975070953,
|
| 114 |
+
"learning_rate": 3.570202580121256e-05,
|
| 115 |
+
"loss": 0.0183,
|
| 116 |
+
"mean_token_accuracy": 0.9941544771194458,
|
| 117 |
+
"num_tokens": 4822332.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.07004310344827586,
|
| 122 |
+
"grad_norm": 0.05587254464626312,
|
| 123 |
+
"learning_rate": 3.568968453030844e-05,
|
| 124 |
+
"loss": 0.0194,
|
| 125 |
+
"mean_token_accuracy": 0.9937392830848694,
|
| 126 |
+
"num_tokens": 5223107.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.07543103448275862,
|
| 131 |
+
"grad_norm": 0.04280732572078705,
|
| 132 |
+
"learning_rate": 3.5673093628766804e-05,
|
| 133 |
+
"loss": 0.0171,
|
| 134 |
+
"mean_token_accuracy": 0.9943207740783692,
|
| 135 |
+
"num_tokens": 5625734.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.08081896551724138,
|
| 140 |
+
"grad_norm": 0.0779673308134079,
|
| 141 |
+
"learning_rate": 3.565225837066405e-05,
|
| 142 |
+
"loss": 0.0177,
|
| 143 |
+
"mean_token_accuracy": 0.9942807674407959,
|
| 144 |
+
"num_tokens": 6027742.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.08620689655172414,
|
| 149 |
+
"grad_norm": 0.057991866022348404,
|
| 150 |
+
"learning_rate": 3.562718537931378e-05,
|
| 151 |
+
"loss": 0.0187,
|
| 152 |
+
"mean_token_accuracy": 0.9939850211143494,
|
| 153 |
+
"num_tokens": 6428384.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.09159482758620689,
|
| 158 |
+
"grad_norm": 0.0478542186319828,
|
| 159 |
+
"learning_rate": 3.559788262516122e-05,
|
| 160 |
+
"loss": 0.018,
|
| 161 |
+
"mean_token_accuracy": 0.9940856099128723,
|
| 162 |
+
"num_tokens": 6829293.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.09698275862068965,
|
| 167 |
+
"grad_norm": 0.05062701553106308,
|
| 168 |
+
"learning_rate": 3.55643594232496e-05,
|
| 169 |
+
"loss": 0.0167,
|
| 170 |
+
"mean_token_accuracy": 0.9943302392959594,
|
| 171 |
+
"num_tokens": 7231379.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.10237068965517242,
|
| 176 |
+
"grad_norm": 0.06459315121173859,
|
| 177 |
+
"learning_rate": 3.5526626430258894e-05,
|
| 178 |
+
"loss": 0.0151,
|
| 179 |
+
"mean_token_accuracy": 0.9947145700454711,
|
| 180 |
+
"num_tokens": 7634176.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.10775862068965517,
|
| 185 |
+
"grad_norm": 0.25823408365249634,
|
| 186 |
+
"learning_rate": 3.5484695641118264e-05,
|
| 187 |
+
"loss": 0.016,
|
| 188 |
+
"mean_token_accuracy": 0.9943834066390991,
|
| 189 |
+
"num_tokens": 8034981.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.11314655172413793,
|
| 194 |
+
"grad_norm": 0.0566800981760025,
|
| 195 |
+
"learning_rate": 3.543858038519294e-05,
|
| 196 |
+
"loss": 0.0167,
|
| 197 |
+
"mean_token_accuracy": 0.9943542599678039,
|
| 198 |
+
"num_tokens": 8435719.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.11853448275862069,
|
| 203 |
+
"grad_norm": 0.0464828722178936,
|
| 204 |
+
"learning_rate": 3.538829532204697e-05,
|
| 205 |
+
"loss": 0.0164,
|
| 206 |
+
"mean_token_accuracy": 0.9941744804382324,
|
| 207 |
+
"num_tokens": 8836428.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.12392241379310345,
|
| 212 |
+
"grad_norm": 0.049051329493522644,
|
| 213 |
+
"learning_rate": 3.533385643678309e-05,
|
| 214 |
+
"loss": 0.0159,
|
| 215 |
+
"mean_token_accuracy": 0.9941733956336976,
|
| 216 |
+
"num_tokens": 9237421.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.12931034482758622,
|
| 221 |
+
"grad_norm": 0.06364122033119202,
|
| 222 |
+
"learning_rate": 3.527528103496123e-05,
|
| 223 |
+
"loss": 0.0152,
|
| 224 |
+
"mean_token_accuracy": 0.9945533514022827,
|
| 225 |
+
"num_tokens": 9639778.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.13469827586206898,
|
| 230 |
+
"grad_norm": 0.04338002949953079,
|
| 231 |
+
"learning_rate": 3.521258773709726e-05,
|
| 232 |
+
"loss": 0.0155,
|
| 233 |
+
"mean_token_accuracy": 0.9944260716438293,
|
| 234 |
+
"num_tokens": 10041852.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.1400862068965517,
|
| 239 |
+
"grad_norm": 0.04522588849067688,
|
| 240 |
+
"learning_rate": 3.514579647274372e-05,
|
| 241 |
+
"loss": 0.0155,
|
| 242 |
+
"mean_token_accuracy": 0.9944804668426513,
|
| 243 |
+
"num_tokens": 10444159.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.14547413793103448,
|
| 248 |
+
"grad_norm": 0.1478981226682663,
|
| 249 |
+
"learning_rate": 3.5074928474154395e-05,
|
| 250 |
+
"loss": 0.0149,
|
| 251 |
+
"mean_token_accuracy": 0.9946131467819214,
|
| 252 |
+
"num_tokens": 10845771.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.15086206896551724,
|
| 257 |
+
"grad_norm": 1.2337453365325928,
|
| 258 |
+
"learning_rate": 3.500000626953483e-05,
|
| 259 |
+
"loss": 0.0151,
|
| 260 |
+
"mean_token_accuracy": 0.994551134109497,
|
| 261 |
+
"num_tokens": 11247804.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.15625,
|
| 266 |
+
"grad_norm": 1.3259663581848145,
|
| 267 |
+
"learning_rate": 3.492105367588084e-05,
|
| 268 |
+
"loss": 0.0161,
|
| 269 |
+
"mean_token_accuracy": 0.9942270040512085,
|
| 270 |
+
"num_tokens": 11647222.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.16163793103448276,
|
| 275 |
+
"grad_norm": 0.11509668081998825,
|
| 276 |
+
"learning_rate": 3.4838095791407325e-05,
|
| 277 |
+
"loss": 0.0171,
|
| 278 |
+
"mean_token_accuracy": 0.9939950346946717,
|
| 279 |
+
"num_tokens": 12048813.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.16702586206896552,
|
| 284 |
+
"grad_norm": 0.049369506537914276,
|
| 285 |
+
"learning_rate": 3.4751158987569807e-05,
|
| 286 |
+
"loss": 0.0152,
|
| 287 |
+
"mean_token_accuracy": 0.9944715738296509,
|
| 288 |
+
"num_tokens": 12451442.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.1724137931034483,
|
| 293 |
+
"grad_norm": 0.08355387300252914,
|
| 294 |
+
"learning_rate": 3.4660270900681224e-05,
|
| 295 |
+
"loss": 0.0151,
|
| 296 |
+
"mean_token_accuracy": 0.9943839192390442,
|
| 297 |
+
"num_tokens": 12853398.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.17780172413793102,
|
| 302 |
+
"grad_norm": 0.062434665858745575,
|
| 303 |
+
"learning_rate": 3.456546042312664e-05,
|
| 304 |
+
"loss": 0.0147,
|
| 305 |
+
"mean_token_accuracy": 0.9945378303527832,
|
| 306 |
+
"num_tokens": 13256187.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.18318965517241378,
|
| 311 |
+
"grad_norm": 0.05102328583598137,
|
| 312 |
+
"learning_rate": 3.446675769417862e-05,
|
| 313 |
+
"loss": 0.0151,
|
| 314 |
+
"mean_token_accuracy": 0.9944287657737731,
|
| 315 |
+
"num_tokens": 13657420.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.18857758620689655,
|
| 320 |
+
"grad_norm": 0.044247303158044815,
|
| 321 |
+
"learning_rate": 3.4364194090416284e-05,
|
| 322 |
+
"loss": 0.0145,
|
| 323 |
+
"mean_token_accuracy": 0.9946641683578491,
|
| 324 |
+
"num_tokens": 14059932.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.1939655172413793,
|
| 329 |
+
"grad_norm": 0.046152565628290176,
|
| 330 |
+
"learning_rate": 3.425780221575104e-05,
|
| 331 |
+
"loss": 0.0148,
|
| 332 |
+
"mean_token_accuracy": 0.9944445013999939,
|
| 333 |
+
"num_tokens": 14460951.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.19935344827586207,
|
| 338 |
+
"grad_norm": 0.08260088413953781,
|
| 339 |
+
"learning_rate": 3.414761589106212e-05,
|
| 340 |
+
"loss": 0.0146,
|
| 341 |
+
"mean_token_accuracy": 0.9944788217544556,
|
| 342 |
+
"num_tokens": 14864383.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.20474137931034483,
|
| 347 |
+
"grad_norm": 0.058555666357278824,
|
| 348 |
+
"learning_rate": 3.403367014344524e-05,
|
| 349 |
+
"loss": 0.0145,
|
| 350 |
+
"mean_token_accuracy": 0.9944794178009033,
|
| 351 |
+
"num_tokens": 15266886.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.2101293103448276,
|
| 356 |
+
"grad_norm": 0.05130434036254883,
|
| 357 |
+
"learning_rate": 3.3916001195077896e-05,
|
| 358 |
+
"loss": 0.0144,
|
| 359 |
+
"mean_token_accuracy": 0.9946597218513489,
|
| 360 |
+
"num_tokens": 15669207.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.21551724137931033,
|
| 365 |
+
"grad_norm": 0.06096741557121277,
|
| 366 |
+
"learning_rate": 3.379464645170468e-05,
|
| 367 |
+
"loss": 0.0143,
|
| 368 |
+
"mean_token_accuracy": 0.994647204875946,
|
| 369 |
+
"num_tokens": 16071006.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.2209051724137931,
|
| 374 |
+
"grad_norm": 0.04882777854800224,
|
| 375 |
+
"learning_rate": 3.36696444907464e-05,
|
| 376 |
+
"loss": 0.0148,
|
| 377 |
+
"mean_token_accuracy": 0.9945741534233093,
|
| 378 |
+
"num_tokens": 16472933.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.22629310344827586,
|
| 383 |
+
"grad_norm": 0.039595477283000946,
|
| 384 |
+
"learning_rate": 3.3541035049036674e-05,
|
| 385 |
+
"loss": 0.0136,
|
| 386 |
+
"mean_token_accuracy": 0.9947598457336426,
|
| 387 |
+
"num_tokens": 16875395.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.23168103448275862,
|
| 392 |
+
"grad_norm": 0.04643889516592026,
|
| 393 |
+
"learning_rate": 3.340885901019005e-05,
|
| 394 |
+
"loss": 0.0142,
|
| 395 |
+
"mean_token_accuracy": 0.9945803761482239,
|
| 396 |
+
"num_tokens": 17277271.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.23706896551724138,
|
| 401 |
+
"grad_norm": 0.039959874004125595,
|
| 402 |
+
"learning_rate": 3.327315839160552e-05,
|
| 403 |
+
"loss": 0.0143,
|
| 404 |
+
"mean_token_accuracy": 0.9946106910705567,
|
| 405 |
+
"num_tokens": 17680114.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.24245689655172414,
|
| 410 |
+
"grad_norm": 0.031239081174135208,
|
| 411 |
+
"learning_rate": 3.3133976331109576e-05,
|
| 412 |
+
"loss": 0.0142,
|
| 413 |
+
"mean_token_accuracy": 0.9945644021034241,
|
| 414 |
+
"num_tokens": 18082245.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.2478448275862069,
|
| 419 |
+
"grad_norm": 0.04183759540319443,
|
| 420 |
+
"learning_rate": 3.299135707324319e-05,
|
| 421 |
+
"loss": 0.014,
|
| 422 |
+
"mean_token_accuracy": 0.9946491479873657,
|
| 423 |
+
"num_tokens": 18483821.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.25323275862068967,
|
| 428 |
+
"grad_norm": 0.0487377867102623,
|
| 429 |
+
"learning_rate": 3.2845345955196925e-05,
|
| 430 |
+
"loss": 0.0142,
|
| 431 |
+
"mean_token_accuracy": 0.9947177767753601,
|
| 432 |
+
"num_tokens": 18884746.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.25862068965517243,
|
| 437 |
+
"grad_norm": 0.030534762889146805,
|
| 438 |
+
"learning_rate": 3.2695989392398675e-05,
|
| 439 |
+
"loss": 0.0142,
|
| 440 |
+
"mean_token_accuracy": 0.9946200132369996,
|
| 441 |
+
"num_tokens": 19286927.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.2640086206896552,
|
| 446 |
+
"grad_norm": 0.04179931804537773,
|
| 447 |
+
"learning_rate": 3.254333486375871e-05,
|
| 448 |
+
"loss": 0.0141,
|
| 449 |
+
"mean_token_accuracy": 0.9946305751800537,
|
| 450 |
+
"num_tokens": 19688165.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.26939655172413796,
|
| 455 |
+
"grad_norm": 0.03564748913049698,
|
| 456 |
+
"learning_rate": 3.238743089657662e-05,
|
| 457 |
+
"loss": 0.0139,
|
| 458 |
+
"mean_token_accuracy": 0.9946931838989258,
|
| 459 |
+
"num_tokens": 20090262.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.27478448275862066,
|
| 464 |
+
"grad_norm": 0.03191967308521271,
|
| 465 |
+
"learning_rate": 3.222832705111498e-05,
|
| 466 |
+
"loss": 0.0141,
|
| 467 |
+
"mean_token_accuracy": 0.9946922659873962,
|
| 468 |
+
"num_tokens": 20492107.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.2801724137931034,
|
| 473 |
+
"grad_norm": 0.048875682055950165,
|
| 474 |
+
"learning_rate": 3.206607390484465e-05,
|
| 475 |
+
"loss": 0.0139,
|
| 476 |
+
"mean_token_accuracy": 0.9947479844093323,
|
| 477 |
+
"num_tokens": 20894248.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.2855603448275862,
|
| 482 |
+
"grad_norm": 0.05810167267918587,
|
| 483 |
+
"learning_rate": 3.190072303636671e-05,
|
| 484 |
+
"loss": 0.014,
|
| 485 |
+
"mean_token_accuracy": 0.9946684122085572,
|
| 486 |
+
"num_tokens": 21296720.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.29094827586206895,
|
| 491 |
+
"grad_norm": 0.035630956292152405,
|
| 492 |
+
"learning_rate": 3.1732327009016207e-05,
|
| 493 |
+
"loss": 0.0141,
|
| 494 |
+
"mean_token_accuracy": 0.9946584820747375,
|
| 495 |
+
"num_tokens": 21697077.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.2963362068965517,
|
| 500 |
+
"grad_norm": 0.036733414977788925,
|
| 501 |
+
"learning_rate": 3.1560939354152733e-05,
|
| 502 |
+
"loss": 0.0142,
|
| 503 |
+
"mean_token_accuracy": 0.9946447968482971,
|
| 504 |
+
"num_tokens": 22098063.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.3017241379310345,
|
| 509 |
+
"grad_norm": 0.052511196583509445,
|
| 510 |
+
"learning_rate": 3.138661455414342e-05,
|
| 511 |
+
"loss": 0.0139,
|
| 512 |
+
"mean_token_accuracy": 0.9946583271026611,
|
| 513 |
+
"num_tokens": 22499277.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.30711206896551724,
|
| 518 |
+
"grad_norm": 0.042709656059741974,
|
| 519 |
+
"learning_rate": 3.120940802504353e-05,
|
| 520 |
+
"loss": 0.0139,
|
| 521 |
+
"mean_token_accuracy": 0.9947189092636108,
|
| 522 |
+
"num_tokens": 22902818.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.3125,
|
| 527 |
+
"grad_norm": 0.04298898205161095,
|
| 528 |
+
"learning_rate": 3.102937609898027e-05,
|
| 529 |
+
"loss": 0.0141,
|
| 530 |
+
"mean_token_accuracy": 0.9947368025779724,
|
| 531 |
+
"num_tokens": 23304341.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.31788793103448276,
|
| 536 |
+
"grad_norm": 0.03954196348786354,
|
| 537 |
+
"learning_rate": 3.084657600624539e-05,
|
| 538 |
+
"loss": 0.0142,
|
| 539 |
+
"mean_token_accuracy": 0.9945488214492798,
|
| 540 |
+
"num_tokens": 23704925.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.3232758620689655,
|
| 545 |
+
"grad_norm": 0.03840317949652672,
|
| 546 |
+
"learning_rate": 3.066106585710227e-05,
|
| 547 |
+
"loss": 0.014,
|
| 548 |
+
"mean_token_accuracy": 0.994524884223938,
|
| 549 |
+
"num_tokens": 24106861.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.3286637931034483,
|
| 554 |
+
"grad_norm": 0.03564877063035965,
|
| 555 |
+
"learning_rate": 3.0472904623313255e-05,
|
| 556 |
+
"loss": 0.0141,
|
| 557 |
+
"mean_token_accuracy": 0.9945776104927063,
|
| 558 |
+
"num_tokens": 24507326.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.33405172413793105,
|
| 563 |
+
"grad_norm": 0.03882898762822151,
|
| 564 |
+
"learning_rate": 3.028215211939314e-05,
|
| 565 |
+
"loss": 0.0137,
|
| 566 |
+
"mean_token_accuracy": 0.9946590304374695,
|
| 567 |
+
"num_tokens": 24908336.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.3394396551724138,
|
| 572 |
+
"grad_norm": 0.06508338451385498,
|
| 573 |
+
"learning_rate": 3.0088868983594765e-05,
|
| 574 |
+
"loss": 0.0139,
|
| 575 |
+
"mean_token_accuracy": 0.9946718215942383,
|
| 576 |
+
"num_tokens": 25309863.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.3448275862068966,
|
| 581 |
+
"grad_norm": 0.05758961662650108,
|
| 582 |
+
"learning_rate": 2.9893116658632732e-05,
|
| 583 |
+
"loss": 0.0136,
|
| 584 |
+
"mean_token_accuracy": 0.9948211431503295,
|
| 585 |
+
"num_tokens": 25711787.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.35021551724137934,
|
| 590 |
+
"grad_norm": 0.054873988032341,
|
| 591 |
+
"learning_rate": 2.9694957372151408e-05,
|
| 592 |
+
"loss": 0.0139,
|
| 593 |
+
"mean_token_accuracy": 0.9945468068122864,
|
| 594 |
+
"num_tokens": 26113810.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.35560344827586204,
|
| 599 |
+
"grad_norm": 0.036844588816165924,
|
| 600 |
+
"learning_rate": 2.9494454116943372e-05,
|
| 601 |
+
"loss": 0.0139,
|
| 602 |
+
"mean_token_accuracy": 0.9945004224777222,
|
| 603 |
+
"num_tokens": 26515442.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.3609913793103448,
|
| 608 |
+
"grad_norm": 0.0447879433631897,
|
| 609 |
+
"learning_rate": 2.92916706309247e-05,
|
| 610 |
+
"loss": 0.0142,
|
| 611 |
+
"mean_token_accuracy": 0.9946565389633178,
|
| 612 |
+
"num_tokens": 26914834.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.36637931034482757,
|
| 617 |
+
"grad_norm": 0.05034846439957619,
|
| 618 |
+
"learning_rate": 2.9086671376873294e-05,
|
| 619 |
+
"loss": 0.014,
|
| 620 |
+
"mean_token_accuracy": 0.994661021232605,
|
| 621 |
+
"num_tokens": 27315857.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.37176724137931033,
|
| 626 |
+
"grad_norm": 0.04919150099158287,
|
| 627 |
+
"learning_rate": 2.887952152193688e-05,
|
| 628 |
+
"loss": 0.0136,
|
| 629 |
+
"mean_token_accuracy": 0.9948759317398072,
|
| 630 |
+
"num_tokens": 27717269.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.3771551724137931,
|
| 635 |
+
"grad_norm": 0.03395334631204605,
|
| 636 |
+
"learning_rate": 2.8670286916916988e-05,
|
| 637 |
+
"loss": 0.0139,
|
| 638 |
+
"mean_token_accuracy": 0.994801688194275,
|
| 639 |
+
"num_tokens": 28118459.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.38254310344827586,
|
| 644 |
+
"grad_norm": 0.05123238265514374,
|
| 645 |
+
"learning_rate": 2.84590340753357e-05,
|
| 646 |
+
"loss": 0.0137,
|
| 647 |
+
"mean_token_accuracy": 0.9947862744331359,
|
| 648 |
+
"num_tokens": 28518510.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.3879310344827586,
|
| 653 |
+
"grad_norm": 0.03627648577094078,
|
| 654 |
+
"learning_rate": 2.8245830152291688e-05,
|
| 655 |
+
"loss": 0.0139,
|
| 656 |
+
"mean_token_accuracy": 0.9946453213691712,
|
| 657 |
+
"num_tokens": 28921146.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.3933189655172414,
|
| 662 |
+
"grad_norm": 0.035906147211790085,
|
| 663 |
+
"learning_rate": 2.8030742923112265e-05,
|
| 664 |
+
"loss": 0.0136,
|
| 665 |
+
"mean_token_accuracy": 0.9947586536407471,
|
| 666 |
+
"num_tokens": 29323731.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.39870689655172414,
|
| 671 |
+
"grad_norm": 0.03345450013875961,
|
| 672 |
+
"learning_rate": 2.7813840761808355e-05,
|
| 673 |
+
"loss": 0.0134,
|
| 674 |
+
"mean_token_accuracy": 0.9948821663856506,
|
| 675 |
+
"num_tokens": 29725134.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.4040948275862069,
|
| 680 |
+
"grad_norm": 0.03122451901435852,
|
| 681 |
+
"learning_rate": 2.7595192619339067e-05,
|
| 682 |
+
"loss": 0.0134,
|
| 683 |
+
"mean_token_accuracy": 0.994830584526062,
|
| 684 |
+
"num_tokens": 30127021.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.40948275862068967,
|
| 689 |
+
"grad_norm": 0.04287945479154587,
|
| 690 |
+
"learning_rate": 2.7374868001692914e-05,
|
| 691 |
+
"loss": 0.0138,
|
| 692 |
+
"mean_token_accuracy": 0.994744873046875,
|
| 693 |
+
"num_tokens": 30528417.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.41487068965517243,
|
| 698 |
+
"grad_norm": 0.03291918337345123,
|
| 699 |
+
"learning_rate": 2.7152936947792565e-05,
|
| 700 |
+
"loss": 0.0133,
|
| 701 |
+
"mean_token_accuracy": 0.9948456525802613,
|
| 702 |
+
"num_tokens": 30931584.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.4202586206896552,
|
| 707 |
+
"grad_norm": 0.027440782636404037,
|
| 708 |
+
"learning_rate": 2.69294700072302e-05,
|
| 709 |
+
"loss": 0.0141,
|
| 710 |
+
"mean_token_accuracy": 0.994544506072998,
|
| 711 |
+
"num_tokens": 31333142.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.42564655172413796,
|
| 716 |
+
"grad_norm": 0.037700895220041275,
|
| 717 |
+
"learning_rate": 2.6704538217840525e-05,
|
| 718 |
+
"loss": 0.0137,
|
| 719 |
+
"mean_token_accuracy": 0.9947353482246399,
|
| 720 |
+
"num_tokens": 31734148.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.43103448275862066,
|
| 725 |
+
"grad_norm": 0.0358114056289196,
|
| 726 |
+
"learning_rate": 2.6478213083118573e-05,
|
| 727 |
+
"loss": 0.0132,
|
| 728 |
+
"mean_token_accuracy": 0.9948834419250489,
|
| 729 |
+
"num_tokens": 32137295.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.4364224137931034,
|
| 734 |
+
"grad_norm": 0.03803620487451553,
|
| 735 |
+
"learning_rate": 2.6250566549489473e-05,
|
| 736 |
+
"loss": 0.0137,
|
| 737 |
+
"mean_token_accuracy": 0.9947781920433044,
|
| 738 |
+
"num_tokens": 32538896.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.4418103448275862,
|
| 743 |
+
"grad_norm": 0.037323955446481705,
|
| 744 |
+
"learning_rate": 2.6021670983437456e-05,
|
| 745 |
+
"loss": 0.014,
|
| 746 |
+
"mean_token_accuracy": 0.9946366667747497,
|
| 747 |
+
"num_tokens": 32940068.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.44719827586206895,
|
| 752 |
+
"grad_norm": 0.030287249013781548,
|
| 753 |
+
"learning_rate": 2.5791599148501243e-05,
|
| 754 |
+
"loss": 0.0134,
|
| 755 |
+
"mean_token_accuracy": 0.9948618412017822,
|
| 756 |
+
"num_tokens": 33342556.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.4525862068965517,
|
| 761 |
+
"grad_norm": 0.026962261646986008,
|
| 762 |
+
"learning_rate": 2.5560424182143315e-05,
|
| 763 |
+
"loss": 0.0134,
|
| 764 |
+
"mean_token_accuracy": 0.9948041200637817,
|
| 765 |
+
"num_tokens": 33744513.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.4579741379310345,
|
| 770 |
+
"grad_norm": 0.03837694600224495,
|
| 771 |
+
"learning_rate": 2.5328219572500253e-05,
|
| 772 |
+
"loss": 0.0138,
|
| 773 |
+
"mean_token_accuracy": 0.9946581721305847,
|
| 774 |
+
"num_tokens": 34145891.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.46336206896551724,
|
| 779 |
+
"grad_norm": 0.057087261229753494,
|
| 780 |
+
"learning_rate": 2.5095059135021593e-05,
|
| 781 |
+
"loss": 0.014,
|
| 782 |
+
"mean_token_accuracy": 0.9946252107620239,
|
| 783 |
+
"num_tokens": 34548204.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.46875,
|
| 788 |
+
"grad_norm": 0.04009949788451195,
|
| 789 |
+
"learning_rate": 2.4861016989004707e-05,
|
| 790 |
+
"loss": 0.0133,
|
| 791 |
+
"mean_token_accuracy": 0.9949546933174134,
|
| 792 |
+
"num_tokens": 34951187.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.47413793103448276,
|
| 797 |
+
"grad_norm": 0.03429457172751427,
|
| 798 |
+
"learning_rate": 2.4626167534032994e-05,
|
| 799 |
+
"loss": 0.0136,
|
| 800 |
+
"mean_token_accuracy": 0.9947332978248596,
|
| 801 |
+
"num_tokens": 35354414.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.4795258620689655,
|
| 806 |
+
"grad_norm": 0.02866434119641781,
|
| 807 |
+
"learning_rate": 2.439058542632504e-05,
|
| 808 |
+
"loss": 0.0136,
|
| 809 |
+
"mean_token_accuracy": 0.9946959257125855,
|
| 810 |
+
"num_tokens": 35756305.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.4849137931034483,
|
| 815 |
+
"grad_norm": 0.04517655074596405,
|
| 816 |
+
"learning_rate": 2.415434555500219e-05,
|
| 817 |
+
"loss": 0.0133,
|
| 818 |
+
"mean_token_accuracy": 0.9948800444602967,
|
| 819 |
+
"num_tokens": 36158871.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.49030172413793105,
|
| 824 |
+
"grad_norm": 0.03420615196228027,
|
| 825 |
+
"learning_rate": 2.3917523018282043e-05,
|
| 826 |
+
"loss": 0.0137,
|
| 827 |
+
"mean_token_accuracy": 0.9947355508804321,
|
| 828 |
+
"num_tokens": 36560269.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.4956896551724138,
|
| 833 |
+
"grad_norm": 0.03990909829735756,
|
| 834 |
+
"learning_rate": 2.3680193099605526e-05,
|
| 835 |
+
"loss": 0.0133,
|
| 836 |
+
"mean_token_accuracy": 0.9948008775711059,
|
| 837 |
+
"num_tokens": 36962062.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.5010775862068966,
|
| 842 |
+
"grad_norm": 0.029747340828180313,
|
| 843 |
+
"learning_rate": 2.3442431243705042e-05,
|
| 844 |
+
"loss": 0.0133,
|
| 845 |
+
"mean_token_accuracy": 0.9948464274406433,
|
| 846 |
+
"num_tokens": 37362795.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.5064655172413793,
|
| 851 |
+
"grad_norm": 0.030703416094183922,
|
| 852 |
+
"learning_rate": 2.3204313032621397e-05,
|
| 853 |
+
"loss": 0.0135,
|
| 854 |
+
"mean_token_accuracy": 0.994754946231842,
|
| 855 |
+
"num_tokens": 37764363.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.5118534482758621,
|
| 860 |
+
"grad_norm": 0.028925905004143715,
|
| 861 |
+
"learning_rate": 2.2965914161677012e-05,
|
| 862 |
+
"loss": 0.0133,
|
| 863 |
+
"mean_token_accuracy": 0.9947946190834045,
|
| 864 |
+
"num_tokens": 38164542.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.5172413793103449,
|
| 869 |
+
"grad_norm": 0.03919248282909393,
|
| 870 |
+
"learning_rate": 2.2727310415413196e-05,
|
| 871 |
+
"loss": 0.0134,
|
| 872 |
+
"mean_token_accuracy": 0.9949039578437805,
|
| 873 |
+
"num_tokens": 38568071.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.5226293103448276,
|
| 878 |
+
"grad_norm": 0.04291438311338425,
|
| 879 |
+
"learning_rate": 2.2488577643499015e-05,
|
| 880 |
+
"loss": 0.0136,
|
| 881 |
+
"mean_token_accuracy": 0.99475177526474,
|
| 882 |
+
"num_tokens": 38968166.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.5280172413793104,
|
| 887 |
+
"grad_norm": 0.03157598897814751,
|
| 888 |
+
"learning_rate": 2.2249791736619445e-05,
|
| 889 |
+
"loss": 0.0135,
|
| 890 |
+
"mean_token_accuracy": 0.9948109865188599,
|
| 891 |
+
"num_tokens": 39368710.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.5334051724137931,
|
| 896 |
+
"grad_norm": 0.047276876866817474,
|
| 897 |
+
"learning_rate": 2.201102860235052e-05,
|
| 898 |
+
"loss": 0.0135,
|
| 899 |
+
"mean_token_accuracy": 0.9947322010993958,
|
| 900 |
+
"num_tokens": 39771110.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.5387931034482759,
|
| 905 |
+
"grad_norm": 0.02039233036339283,
|
| 906 |
+
"learning_rate": 2.17723641410291e-05,
|
| 907 |
+
"loss": 0.0136,
|
| 908 |
+
"mean_token_accuracy": 0.9948310494422913,
|
| 909 |
+
"num_tokens": 40172898.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.5441810344827587,
|
| 914 |
+
"grad_norm": 0.027669690549373627,
|
| 915 |
+
"learning_rate": 2.153387422162493e-05,
|
| 916 |
+
"loss": 0.0134,
|
| 917 |
+
"mean_token_accuracy": 0.9947868824005127,
|
| 918 |
+
"num_tokens": 40574281.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.5495689655172413,
|
| 923 |
+
"grad_norm": 0.030390165746212006,
|
| 924 |
+
"learning_rate": 2.1295634657622692e-05,
|
| 925 |
+
"loss": 0.0132,
|
| 926 |
+
"mean_token_accuracy": 0.9949378609657288,
|
| 927 |
+
"num_tokens": 40977292.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.5549568965517241,
|
| 932 |
+
"grad_norm": 0.03699078410863876,
|
| 933 |
+
"learning_rate": 2.1057721182921658e-05,
|
| 934 |
+
"loss": 0.0134,
|
| 935 |
+
"mean_token_accuracy": 0.9947897791862488,
|
| 936 |
+
"num_tokens": 41377321.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.5603448275862069,
|
| 941 |
+
"grad_norm": 0.02632001042366028,
|
| 942 |
+
"learning_rate": 2.0820209427760667e-05,
|
| 943 |
+
"loss": 0.0133,
|
| 944 |
+
"mean_token_accuracy": 0.9949733495712281,
|
| 945 |
+
"num_tokens": 41780166.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.5657327586206896,
|
| 950 |
+
"grad_norm": 0.04134310409426689,
|
| 951 |
+
"learning_rate": 2.058317489467608e-05,
|
| 952 |
+
"loss": 0.0136,
|
| 953 |
+
"mean_token_accuracy": 0.9947456240653991,
|
| 954 |
+
"num_tokens": 42182491.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.5711206896551724,
|
| 959 |
+
"grad_norm": 0.10398031771183014,
|
| 960 |
+
"learning_rate": 2.0346692934500267e-05,
|
| 961 |
+
"loss": 0.0136,
|
| 962 |
+
"mean_token_accuracy": 0.9948503613471985,
|
| 963 |
+
"num_tokens": 42583369.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.5765086206896551,
|
| 968 |
+
"grad_norm": 0.06951781362295151,
|
| 969 |
+
"learning_rate": 2.011083872240839e-05,
|
| 970 |
+
"loss": 0.0137,
|
| 971 |
+
"mean_token_accuracy": 0.9946800589561462,
|
| 972 |
+
"num_tokens": 42986169.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.5818965517241379,
|
| 977 |
+
"grad_norm": 0.0338253527879715,
|
| 978 |
+
"learning_rate": 1.987568723402096e-05,
|
| 979 |
+
"loss": 0.0135,
|
| 980 |
+
"mean_token_accuracy": 0.9947983860969544,
|
| 981 |
+
"num_tokens": 43388408.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.5872844827586207,
|
| 986 |
+
"grad_norm": 0.043899111449718475,
|
| 987 |
+
"learning_rate": 1.9641313221569873e-05,
|
| 988 |
+
"loss": 0.0137,
|
| 989 |
+
"mean_token_accuracy": 0.9946236848831177,
|
| 990 |
+
"num_tokens": 43789151.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.5926724137931034,
|
| 995 |
+
"grad_norm": 0.037070490419864655,
|
| 996 |
+
"learning_rate": 1.9407791190135443e-05,
|
| 997 |
+
"loss": 0.0134,
|
| 998 |
+
"mean_token_accuracy": 0.9947730422019958,
|
| 999 |
+
"num_tokens": 44190220.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.5980603448275862,
|
| 1004 |
+
"grad_norm": 0.0317143052816391,
|
| 1005 |
+
"learning_rate": 1.917519537396203e-05,
|
| 1006 |
+
"loss": 0.0135,
|
| 1007 |
+
"mean_token_accuracy": 0.994796097278595,
|
| 1008 |
+
"num_tokens": 44592857.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.603448275862069,
|
| 1013 |
+
"grad_norm": 0.03147880360484123,
|
| 1014 |
+
"learning_rate": 1.8943599712859686e-05,
|
| 1015 |
+
"loss": 0.0136,
|
| 1016 |
+
"mean_token_accuracy": 0.9947721242904664,
|
| 1017 |
+
"num_tokens": 44994800.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.6088362068965517,
|
| 1022 |
+
"grad_norm": 0.024809807538986206,
|
| 1023 |
+
"learning_rate": 1.8713077828699518e-05,
|
| 1024 |
+
"loss": 0.0133,
|
| 1025 |
+
"mean_token_accuracy": 0.994830334186554,
|
| 1026 |
+
"num_tokens": 45398025.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.6142241379310345,
|
| 1031 |
+
"grad_norm": 0.029903240501880646,
|
| 1032 |
+
"learning_rate": 1.8483703002009994e-05,
|
| 1033 |
+
"loss": 0.0134,
|
| 1034 |
+
"mean_token_accuracy": 0.9947473049163819,
|
| 1035 |
+
"num_tokens": 45799951.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.6196120689655172,
|
| 1040 |
+
"grad_norm": 0.02878548949956894,
|
| 1041 |
+
"learning_rate": 1.8255548148681885e-05,
|
| 1042 |
+
"loss": 0.0132,
|
| 1043 |
+
"mean_token_accuracy": 0.9948133111000061,
|
| 1044 |
+
"num_tokens": 46200476.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.625,
|
| 1049 |
+
"grad_norm": 0.03262052685022354,
|
| 1050 |
+
"learning_rate": 1.8028685796788967e-05,
|
| 1051 |
+
"loss": 0.0133,
|
| 1052 |
+
"mean_token_accuracy": 0.9948443055152894,
|
| 1053 |
+
"num_tokens": 46602865.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.6303879310344828,
|
| 1058 |
+
"grad_norm": 0.037397563457489014,
|
| 1059 |
+
"learning_rate": 1.7803188063532184e-05,
|
| 1060 |
+
"loss": 0.0131,
|
| 1061 |
+
"mean_token_accuracy": 0.9950237035751343,
|
| 1062 |
+
"num_tokens": 47004445.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.6357758620689655,
|
| 1067 |
+
"grad_norm": 0.02558806724846363,
|
| 1068 |
+
"learning_rate": 1.7579126632314283e-05,
|
| 1069 |
+
"loss": 0.0132,
|
| 1070 |
+
"mean_token_accuracy": 0.9947809338569641,
|
| 1071 |
+
"num_tokens": 47405509.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.6411637931034483,
|
| 1076 |
+
"grad_norm": 0.03402222320437431,
|
| 1077 |
+
"learning_rate": 1.7356572729952424e-05,
|
| 1078 |
+
"loss": 0.0134,
|
| 1079 |
+
"mean_token_accuracy": 0.994775903224945,
|
| 1080 |
+
"num_tokens": 47807070.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.646551724137931,
|
| 1085 |
+
"grad_norm": 0.041079867631196976,
|
| 1086 |
+
"learning_rate": 1.713559710403587e-05,
|
| 1087 |
+
"loss": 0.0135,
|
| 1088 |
+
"mean_token_accuracy": 0.9946501970291137,
|
| 1089 |
+
"num_tokens": 48208600.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.6519396551724138,
|
| 1094 |
+
"grad_norm": 0.034396298229694366,
|
| 1095 |
+
"learning_rate": 1.6916270000436114e-05,
|
| 1096 |
+
"loss": 0.0132,
|
| 1097 |
+
"mean_token_accuracy": 0.9948722124099731,
|
| 1098 |
+
"num_tokens": 48611166.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.6573275862068966,
|
| 1103 |
+
"grad_norm": 0.03436857834458351,
|
| 1104 |
+
"learning_rate": 1.6698661140976403e-05,
|
| 1105 |
+
"loss": 0.0132,
|
| 1106 |
+
"mean_token_accuracy": 0.9948982000350952,
|
| 1107 |
+
"num_tokens": 49013571.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.6627155172413793,
|
| 1112 |
+
"grad_norm": 0.03140538930892944,
|
| 1113 |
+
"learning_rate": 1.6482839701267902e-05,
|
| 1114 |
+
"loss": 0.0132,
|
| 1115 |
+
"mean_token_accuracy": 0.9947989225387573,
|
| 1116 |
+
"num_tokens": 49414184.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.6681034482758621,
|
| 1121 |
+
"grad_norm": 0.05165150761604309,
|
| 1122 |
+
"learning_rate": 1.626887428871947e-05,
|
| 1123 |
+
"loss": 0.0136,
|
| 1124 |
+
"mean_token_accuracy": 0.9947850465774536,
|
| 1125 |
+
"num_tokens": 49815792.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.6734913793103449,
|
| 1130 |
+
"grad_norm": 0.04548334330320358,
|
| 1131 |
+
"learning_rate": 1.6056832920728103e-05,
|
| 1132 |
+
"loss": 0.0131,
|
| 1133 |
+
"mean_token_accuracy": 0.9949025988578797,
|
| 1134 |
+
"num_tokens": 50218315.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.6788793103448276,
|
| 1139 |
+
"grad_norm": 0.033490464091300964,
|
| 1140 |
+
"learning_rate": 1.5846783003056866e-05,
|
| 1141 |
+
"loss": 0.0139,
|
| 1142 |
+
"mean_token_accuracy": 0.9946399450302124,
|
| 1143 |
+
"num_tokens": 50619471.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.6842672413793104,
|
| 1148 |
+
"grad_norm": 0.028969909995794296,
|
| 1149 |
+
"learning_rate": 1.5638791308407327e-05,
|
| 1150 |
+
"loss": 0.0134,
|
| 1151 |
+
"mean_token_accuracy": 0.9948153138160706,
|
| 1152 |
+
"num_tokens": 51020999.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.6896551724137931,
|
| 1157 |
+
"grad_norm": 0.027664504945278168,
|
| 1158 |
+
"learning_rate": 1.5432923955193175e-05,
|
| 1159 |
+
"loss": 0.0135,
|
| 1160 |
+
"mean_token_accuracy": 0.9948143601417542,
|
| 1161 |
+
"num_tokens": 51422802.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.6950431034482759,
|
| 1166 |
+
"grad_norm": 0.03504246845841408,
|
| 1167 |
+
"learning_rate": 1.5229246386521894e-05,
|
| 1168 |
+
"loss": 0.0132,
|
| 1169 |
+
"mean_token_accuracy": 0.9948045015335083,
|
| 1170 |
+
"num_tokens": 51824364.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.7004310344827587,
|
| 1175 |
+
"grad_norm": 0.050419677048921585,
|
| 1176 |
+
"learning_rate": 1.502782334939104e-05,
|
| 1177 |
+
"loss": 0.013,
|
| 1178 |
+
"mean_token_accuracy": 0.9949135184288025,
|
| 1179 |
+
"num_tokens": 52226195.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.7058189655172413,
|
| 1184 |
+
"grad_norm": 0.028731906786561012,
|
| 1185 |
+
"learning_rate": 1.4828718874105872e-05,
|
| 1186 |
+
"loss": 0.0134,
|
| 1187 |
+
"mean_token_accuracy": 0.9948068141937256,
|
| 1188 |
+
"num_tokens": 52627325.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.7112068965517241,
|
| 1193 |
+
"grad_norm": 0.04866371676325798,
|
| 1194 |
+
"learning_rate": 1.4631996253924749e-05,
|
| 1195 |
+
"loss": 0.0131,
|
| 1196 |
+
"mean_token_accuracy": 0.994967234134674,
|
| 1197 |
+
"num_tokens": 53029791.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.7165948275862069,
|
| 1202 |
+
"grad_norm": 0.031085016205906868,
|
| 1203 |
+
"learning_rate": 1.4437718024938859e-05,
|
| 1204 |
+
"loss": 0.0128,
|
| 1205 |
+
"mean_token_accuracy": 0.9950807452201843,
|
| 1206 |
+
"num_tokens": 53431762.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.7219827586206896,
|
| 1211 |
+
"grad_norm": 0.029772335663437843,
|
| 1212 |
+
"learning_rate": 1.4245945946192675e-05,
|
| 1213 |
+
"loss": 0.0135,
|
| 1214 |
+
"mean_token_accuracy": 0.9947867870330811,
|
| 1215 |
+
"num_tokens": 53834592.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.7273706896551724,
|
| 1220 |
+
"grad_norm": 0.042420390993356705,
|
| 1221 |
+
"learning_rate": 1.4056740980051348e-05,
|
| 1222 |
+
"loss": 0.0129,
|
| 1223 |
+
"mean_token_accuracy": 0.9948947906494141,
|
| 1224 |
+
"num_tokens": 54236113.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.7327586206896551,
|
| 1229 |
+
"grad_norm": 0.04056272655725479,
|
| 1230 |
+
"learning_rate": 1.3870163272821422e-05,
|
| 1231 |
+
"loss": 0.013,
|
| 1232 |
+
"mean_token_accuracy": 0.9950251102447509,
|
| 1233 |
+
"num_tokens": 54638773.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.7381465517241379,
|
| 1238 |
+
"grad_norm": 0.02548728883266449,
|
| 1239 |
+
"learning_rate": 1.3686272135630939e-05,
|
| 1240 |
+
"loss": 0.013,
|
| 1241 |
+
"mean_token_accuracy": 0.9949590563774109,
|
| 1242 |
+
"num_tokens": 55039287.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.7435344827586207,
|
| 1247 |
+
"grad_norm": 0.02634035237133503,
|
| 1248 |
+
"learning_rate": 1.3505126025575055e-05,
|
| 1249 |
+
"loss": 0.0133,
|
| 1250 |
+
"mean_token_accuracy": 0.9948865652084351,
|
| 1251 |
+
"num_tokens": 55440154.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.7489224137931034,
|
| 1256 |
+
"grad_norm": 0.035474665462970734,
|
| 1257 |
+
"learning_rate": 1.3326782527133116e-05,
|
| 1258 |
+
"loss": 0.0135,
|
| 1259 |
+
"mean_token_accuracy": 0.9947669029235839,
|
| 1260 |
+
"num_tokens": 55840791.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.7543103448275862,
|
| 1265 |
+
"grad_norm": 0.03327346593141556,
|
| 1266 |
+
"learning_rate": 1.3151298333863147e-05,
|
| 1267 |
+
"loss": 0.0135,
|
| 1268 |
+
"mean_token_accuracy": 0.9947926640510559,
|
| 1269 |
+
"num_tokens": 56242887.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.759698275862069,
|
| 1274 |
+
"grad_norm": 0.027285410091280937,
|
| 1275 |
+
"learning_rate": 1.2978729230379578e-05,
|
| 1276 |
+
"loss": 0.0129,
|
| 1277 |
+
"mean_token_accuracy": 0.9950402617454529,
|
| 1278 |
+
"num_tokens": 56645470.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.7650862068965517,
|
| 1283 |
+
"grad_norm": 0.025033418089151382,
|
| 1284 |
+
"learning_rate": 1.2809130074619848e-05,
|
| 1285 |
+
"loss": 0.0133,
|
| 1286 |
+
"mean_token_accuracy": 0.9947838306427002,
|
| 1287 |
+
"num_tokens": 57047650.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.7704741379310345,
|
| 1292 |
+
"grad_norm": 0.036593757569789886,
|
| 1293 |
+
"learning_rate": 1.2642554780405692e-05,
|
| 1294 |
+
"loss": 0.0129,
|
| 1295 |
+
"mean_token_accuracy": 0.9949217319488526,
|
| 1296 |
+
"num_tokens": 57448504.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.7758620689655172,
|
| 1301 |
+
"grad_norm": 0.05492115020751953,
|
| 1302 |
+
"learning_rate": 1.2479056300304417e-05,
|
| 1303 |
+
"loss": 0.0131,
|
| 1304 |
+
"mean_token_accuracy": 0.9948967695236206,
|
| 1305 |
+
"num_tokens": 57850023.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.78125,
|
| 1310 |
+
"grad_norm": 0.02926582470536232,
|
| 1311 |
+
"learning_rate": 1.2318686608795911e-05,
|
| 1312 |
+
"loss": 0.0133,
|
| 1313 |
+
"mean_token_accuracy": 0.9948256611824036,
|
| 1314 |
+
"num_tokens": 58252427.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.7866379310344828,
|
| 1319 |
+
"grad_norm": 0.0516173429787159,
|
| 1320 |
+
"learning_rate": 1.216149668575042e-05,
|
| 1321 |
+
"loss": 0.0133,
|
| 1322 |
+
"mean_token_accuracy": 0.9948697447776794,
|
| 1323 |
+
"num_tokens": 58654151.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.7920258620689655,
|
| 1328 |
+
"grad_norm": 0.031214216724038124,
|
| 1329 |
+
"learning_rate": 1.2007536500222625e-05,
|
| 1330 |
+
"loss": 0.0131,
|
| 1331 |
+
"mean_token_accuracy": 0.9948197126388549,
|
| 1332 |
+
"num_tokens": 59057239.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.7974137931034483,
|
| 1337 |
+
"grad_norm": 0.19109757244586945,
|
| 1338 |
+
"learning_rate": 1.1856854994566963e-05,
|
| 1339 |
+
"loss": 0.0133,
|
| 1340 |
+
"mean_token_accuracy": 0.9948896765708923,
|
| 1341 |
+
"num_tokens": 59457329.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.802801724137931,
|
| 1346 |
+
"grad_norm": 0.07098083943128586,
|
| 1347 |
+
"learning_rate": 1.170950006887937e-05,
|
| 1348 |
+
"loss": 0.0131,
|
| 1349 |
+
"mean_token_accuracy": 0.994968032836914,
|
| 1350 |
+
"num_tokens": 59858237.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.8081896551724138,
|
| 1355 |
+
"grad_norm": 0.029992876574397087,
|
| 1356 |
+
"learning_rate": 1.1565518565770333e-05,
|
| 1357 |
+
"loss": 0.0136,
|
| 1358 |
+
"mean_token_accuracy": 0.9947031497955322,
|
| 1359 |
+
"num_tokens": 60258966.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.8135775862068966,
|
| 1364 |
+
"grad_norm": 0.02831091545522213,
|
| 1365 |
+
"learning_rate": 1.1424956255474115e-05,
|
| 1366 |
+
"loss": 0.0131,
|
| 1367 |
+
"mean_token_accuracy": 0.9949681520462036,
|
| 1368 |
+
"num_tokens": 60660391.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.8189655172413793,
|
| 1373 |
+
"grad_norm": 0.03193649649620056,
|
| 1374 |
+
"learning_rate": 1.128785782129885e-05,
|
| 1375 |
+
"loss": 0.0131,
|
| 1376 |
+
"mean_token_accuracy": 0.9948087692260742,
|
| 1377 |
+
"num_tokens": 61063253.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"epoch": 0.8243534482758621,
|
| 1382 |
+
"grad_norm": 0.03372105956077576,
|
| 1383 |
+
"learning_rate": 1.1154266845422202e-05,
|
| 1384 |
+
"loss": 0.0131,
|
| 1385 |
+
"mean_token_accuracy": 0.9948907732963562,
|
| 1386 |
+
"num_tokens": 61464810.0,
|
| 1387 |
+
"step": 765
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"epoch": 0.8297413793103449,
|
| 1391 |
+
"grad_norm": 0.03639473393559456,
|
| 1392 |
+
"learning_rate": 1.1024225795037032e-05,
|
| 1393 |
+
"loss": 0.0133,
|
| 1394 |
+
"mean_token_accuracy": 0.9948284268379212,
|
| 1395 |
+
"num_tokens": 61866531.0,
|
| 1396 |
+
"step": 770
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"epoch": 0.8351293103448276,
|
| 1400 |
+
"grad_norm": 0.028340987861156464,
|
| 1401 |
+
"learning_rate": 1.089777600885151e-05,
|
| 1402 |
+
"loss": 0.0129,
|
| 1403 |
+
"mean_token_accuracy": 0.9949876070022583,
|
| 1404 |
+
"num_tokens": 62268172.0,
|
| 1405 |
+
"step": 775
|
| 1406 |
+
},
|
| 1407 |
+
{
|
| 1408 |
+
"epoch": 0.8405172413793104,
|
| 1409 |
+
"grad_norm": 0.027911396697163582,
|
| 1410 |
+
"learning_rate": 1.077495768394797e-05,
|
| 1411 |
+
"loss": 0.0129,
|
| 1412 |
+
"mean_token_accuracy": 0.9949463605880737,
|
| 1413 |
+
"num_tokens": 62669240.0,
|
| 1414 |
+
"step": 780
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"epoch": 0.8459051724137931,
|
| 1418 |
+
"grad_norm": 0.0304352268576622,
|
| 1419 |
+
"learning_rate": 1.065580986300468e-05,
|
| 1420 |
+
"loss": 0.0132,
|
| 1421 |
+
"mean_token_accuracy": 0.9947375655174255,
|
| 1422 |
+
"num_tokens": 63070830.0,
|
| 1423 |
+
"step": 785
|
| 1424 |
+
},
|
| 1425 |
+
{
|
| 1426 |
+
"epoch": 0.8512931034482759,
|
| 1427 |
+
"grad_norm": 0.03557021915912628,
|
| 1428 |
+
"learning_rate": 1.0540370421884568e-05,
|
| 1429 |
+
"loss": 0.0129,
|
| 1430 |
+
"mean_token_accuracy": 0.9949083209037781,
|
| 1431 |
+
"num_tokens": 63472170.0,
|
| 1432 |
+
"step": 790
|
| 1433 |
+
},
|
| 1434 |
+
{
|
| 1435 |
+
"epoch": 0.8566810344827587,
|
| 1436 |
+
"grad_norm": 0.04443613067269325,
|
| 1437 |
+
"learning_rate": 1.0428676057594878e-05,
|
| 1438 |
+
"loss": 0.0129,
|
| 1439 |
+
"mean_token_accuracy": 0.9950238466262817,
|
| 1440 |
+
"num_tokens": 63874037.0,
|
| 1441 |
+
"step": 795
|
| 1442 |
+
},
|
| 1443 |
+
{
|
| 1444 |
+
"epoch": 0.8620689655172413,
|
| 1445 |
+
"grad_norm": 0.024053096771240234,
|
| 1446 |
+
"learning_rate": 1.0320762276621562e-05,
|
| 1447 |
+
"loss": 0.0129,
|
| 1448 |
+
"mean_token_accuracy": 0.9949499011039734,
|
| 1449 |
+
"num_tokens": 64275344.0,
|
| 1450 |
+
"step": 800
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"epoch": 0.8674568965517241,
|
| 1454 |
+
"grad_norm": 0.03015071339905262,
|
| 1455 |
+
"learning_rate": 1.0216663383642168e-05,
|
| 1456 |
+
"loss": 0.0132,
|
| 1457 |
+
"mean_token_accuracy": 0.9948014855384827,
|
| 1458 |
+
"num_tokens": 64677126.0,
|
| 1459 |
+
"step": 805
|
| 1460 |
+
},
|
| 1461 |
+
{
|
| 1462 |
+
"epoch": 0.8728448275862069,
|
| 1463 |
+
"grad_norm": 0.031103769317269325,
|
| 1464 |
+
"learning_rate": 1.0116412470620679e-05,
|
| 1465 |
+
"loss": 0.0128,
|
| 1466 |
+
"mean_token_accuracy": 0.9950470447540283,
|
| 1467 |
+
"num_tokens": 65079920.0,
|
| 1468 |
+
"step": 810
|
| 1469 |
+
},
|
| 1470 |
+
{
|
| 1471 |
+
"epoch": 0.8782327586206896,
|
| 1472 |
+
"grad_norm": 0.03264924883842468,
|
| 1473 |
+
"learning_rate": 1.0020041406287986e-05,
|
| 1474 |
+
"loss": 0.0134,
|
| 1475 |
+
"mean_token_accuracy": 0.9948317050933838,
|
| 1476 |
+
"num_tokens": 65481506.0,
|
| 1477 |
+
"step": 815
|
| 1478 |
+
},
|
| 1479 |
+
{
|
| 1480 |
+
"epoch": 0.8836206896551724,
|
| 1481 |
+
"grad_norm": 0.02971888706088066,
|
| 1482 |
+
"learning_rate": 9.927580826011085e-06,
|
| 1483 |
+
"loss": 0.0128,
|
| 1484 |
+
"mean_token_accuracy": 0.9949733018875122,
|
| 1485 |
+
"num_tokens": 65884331.0,
|
| 1486 |
+
"step": 820
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"epoch": 0.8890086206896551,
|
| 1490 |
+
"grad_norm": 0.03420015424489975,
|
| 1491 |
+
"learning_rate": 9.839060122054454e-06,
|
| 1492 |
+
"loss": 0.0127,
|
| 1493 |
+
"mean_token_accuracy": 0.9949661493301392,
|
| 1494 |
+
"num_tokens": 66285759.0,
|
| 1495 |
+
"step": 825
|
| 1496 |
+
},
|
| 1497 |
+
{
|
| 1498 |
+
"epoch": 0.8943965517241379,
|
| 1499 |
+
"grad_norm": 0.045038193464279175,
|
| 1500 |
+
"learning_rate": 9.75450743423654e-06,
|
| 1501 |
+
"loss": 0.0132,
|
| 1502 |
+
"mean_token_accuracy": 0.9948656320571899,
|
| 1503 |
+
"num_tokens": 66685714.0,
|
| 1504 |
+
"step": 830
|
| 1505 |
+
},
|
| 1506 |
+
{
|
| 1507 |
+
"epoch": 0.8997844827586207,
|
| 1508 |
+
"grad_norm": 0.035762231796979904,
|
| 1509 |
+
"learning_rate": 9.673949640984395e-06,
|
| 1510 |
+
"loss": 0.013,
|
| 1511 |
+
"mean_token_accuracy": 0.9948834419250489,
|
| 1512 |
+
"num_tokens": 67086597.0,
|
| 1513 |
+
"step": 835
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"epoch": 0.9051724137931034,
|
| 1517 |
+
"grad_norm": 0.03386284038424492,
|
| 1518 |
+
"learning_rate": 9.597412350789308e-06,
|
| 1519 |
+
"loss": 0.0129,
|
| 1520 |
+
"mean_token_accuracy": 0.9949593067169189,
|
| 1521 |
+
"num_tokens": 67489472.0,
|
| 1522 |
+
"step": 840
|
| 1523 |
+
},
|
| 1524 |
+
{
|
| 1525 |
+
"epoch": 0.9105603448275862,
|
| 1526 |
+
"grad_norm": 0.02994493395090103,
|
| 1527 |
+
"learning_rate": 9.52491989406613e-06,
|
| 1528 |
+
"loss": 0.0128,
|
| 1529 |
+
"mean_token_accuracy": 0.9949299573898316,
|
| 1530 |
+
"num_tokens": 67890506.0,
|
| 1531 |
+
"step": 845
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"epoch": 0.915948275862069,
|
| 1535 |
+
"grad_norm": 0.030689487233757973,
|
| 1536 |
+
"learning_rate": 9.456495315418894e-06,
|
| 1537 |
+
"loss": 0.0126,
|
| 1538 |
+
"mean_token_accuracy": 0.9950518608093262,
|
| 1539 |
+
"num_tokens": 68291917.0,
|
| 1540 |
+
"step": 850
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"epoch": 0.9213362068965517,
|
| 1544 |
+
"grad_norm": 0.0423220731317997,
|
| 1545 |
+
"learning_rate": 9.392160366315146e-06,
|
| 1546 |
+
"loss": 0.0134,
|
| 1547 |
+
"mean_token_accuracy": 0.9946566700935364,
|
| 1548 |
+
"num_tokens": 68693565.0,
|
| 1549 |
+
"step": 855
|
| 1550 |
+
},
|
| 1551 |
+
{
|
| 1552 |
+
"epoch": 0.9267241379310345,
|
| 1553 |
+
"grad_norm": 0.0269051231443882,
|
| 1554 |
+
"learning_rate": 9.331935498171415e-06,
|
| 1555 |
+
"loss": 0.0126,
|
| 1556 |
+
"mean_token_accuracy": 0.9951117157936096,
|
| 1557 |
+
"num_tokens": 69094557.0,
|
| 1558 |
+
"step": 860
|
| 1559 |
+
},
|
| 1560 |
+
{
|
| 1561 |
+
"epoch": 0.9321120689655172,
|
| 1562 |
+
"grad_norm": 0.03736714646220207,
|
| 1563 |
+
"learning_rate": 9.275839855851889e-06,
|
| 1564 |
+
"loss": 0.0126,
|
| 1565 |
+
"mean_token_accuracy": 0.9950791954994201,
|
| 1566 |
+
"num_tokens": 69496215.0,
|
| 1567 |
+
"step": 865
|
| 1568 |
+
},
|
| 1569 |
+
{
|
| 1570 |
+
"epoch": 0.9375,
|
| 1571 |
+
"grad_norm": 0.038321010768413544,
|
| 1572 |
+
"learning_rate": 9.223891271582473e-06,
|
| 1573 |
+
"loss": 0.0127,
|
| 1574 |
+
"mean_token_accuracy": 0.9950317859649658,
|
| 1575 |
+
"num_tokens": 69897495.0,
|
| 1576 |
+
"step": 870
|
| 1577 |
+
},
|
| 1578 |
+
{
|
| 1579 |
+
"epoch": 0.9428879310344828,
|
| 1580 |
+
"grad_norm": 0.03330431133508682,
|
| 1581 |
+
"learning_rate": 9.176106259282111e-06,
|
| 1582 |
+
"loss": 0.013,
|
| 1583 |
+
"mean_token_accuracy": 0.9949549078941345,
|
| 1584 |
+
"num_tokens": 70298929.0,
|
| 1585 |
+
"step": 875
|
| 1586 |
+
},
|
| 1587 |
+
{
|
| 1588 |
+
"epoch": 0.9482758620689655,
|
| 1589 |
+
"grad_norm": 0.03637678548693657,
|
| 1590 |
+
"learning_rate": 9.132500009313176e-06,
|
| 1591 |
+
"loss": 0.0131,
|
| 1592 |
+
"mean_token_accuracy": 0.9949822068214417,
|
| 1593 |
+
"num_tokens": 70700320.0,
|
| 1594 |
+
"step": 880
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"epoch": 0.9536637931034483,
|
| 1598 |
+
"grad_norm": 0.02678218111395836,
|
| 1599 |
+
"learning_rate": 9.093086383652602e-06,
|
| 1600 |
+
"loss": 0.013,
|
| 1601 |
+
"mean_token_accuracy": 0.9948176503181457,
|
| 1602 |
+
"num_tokens": 71100703.0,
|
| 1603 |
+
"step": 885
|
| 1604 |
+
},
|
| 1605 |
+
{
|
| 1606 |
+
"epoch": 0.959051724137931,
|
| 1607 |
+
"grad_norm": 0.040675800293684006,
|
| 1608 |
+
"learning_rate": 9.057877911485328e-06,
|
| 1609 |
+
"loss": 0.0127,
|
| 1610 |
+
"mean_token_accuracy": 0.9950784921646119,
|
| 1611 |
+
"num_tokens": 71502763.0,
|
| 1612 |
+
"step": 890
|
| 1613 |
+
},
|
| 1614 |
+
{
|
| 1615 |
+
"epoch": 0.9644396551724138,
|
| 1616 |
+
"grad_norm": 0.03423236683011055,
|
| 1617 |
+
"learning_rate": 9.026885785221381e-06,
|
| 1618 |
+
"loss": 0.013,
|
| 1619 |
+
"mean_token_accuracy": 0.9948654890060424,
|
| 1620 |
+
"num_tokens": 71903543.0,
|
| 1621 |
+
"step": 895
|
| 1622 |
+
},
|
| 1623 |
+
{
|
| 1624 |
+
"epoch": 0.9698275862068966,
|
| 1625 |
+
"grad_norm": 0.04655428230762482,
|
| 1626 |
+
"learning_rate": 9.000119856937926e-06,
|
| 1627 |
+
"loss": 0.0128,
|
| 1628 |
+
"mean_token_accuracy": 0.9950368642807007,
|
| 1629 |
+
"num_tokens": 72304889.0,
|
| 1630 |
+
"step": 900
|
| 1631 |
+
},
|
| 1632 |
+
{
|
| 1633 |
+
"epoch": 0.9752155172413793,
|
| 1634 |
+
"grad_norm": 0.0383138544857502,
|
| 1635 |
+
"learning_rate": 8.977588635247394e-06,
|
| 1636 |
+
"loss": 0.0132,
|
| 1637 |
+
"mean_token_accuracy": 0.9947501182556152,
|
| 1638 |
+
"num_tokens": 72706282.0,
|
| 1639 |
+
"step": 905
|
| 1640 |
+
},
|
| 1641 |
+
{
|
| 1642 |
+
"epoch": 0.9806034482758621,
|
| 1643 |
+
"grad_norm": 0.03898213803768158,
|
| 1644 |
+
"learning_rate": 8.95929928259269e-06,
|
| 1645 |
+
"loss": 0.0129,
|
| 1646 |
+
"mean_token_accuracy": 0.9949674487113953,
|
| 1647 |
+
"num_tokens": 73109508.0,
|
| 1648 |
+
"step": 910
|
| 1649 |
+
},
|
| 1650 |
+
{
|
| 1651 |
+
"epoch": 0.9859913793103449,
|
| 1652 |
+
"grad_norm": 0.03106722980737686,
|
| 1653 |
+
"learning_rate": 8.945257612970317e-06,
|
| 1654 |
+
"loss": 0.0127,
|
| 1655 |
+
"mean_token_accuracy": 0.9950725197792053,
|
| 1656 |
+
"num_tokens": 73511750.0,
|
| 1657 |
+
"step": 915
|
| 1658 |
+
},
|
| 1659 |
+
{
|
| 1660 |
+
"epoch": 0.9913793103448276,
|
| 1661 |
+
"grad_norm": 0.03446138650178909,
|
| 1662 |
+
"learning_rate": 8.935468090082163e-06,
|
| 1663 |
+
"loss": 0.0128,
|
| 1664 |
+
"mean_token_accuracy": 0.9950355887413025,
|
| 1665 |
+
"num_tokens": 73912567.0,
|
| 1666 |
+
"step": 920
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"epoch": 0.9967672413793104,
|
| 1670 |
+
"grad_norm": 0.04413456842303276,
|
| 1671 |
+
"learning_rate": 8.929933825916554e-06,
|
| 1672 |
+
"loss": 0.0127,
|
| 1673 |
+
"mean_token_accuracy": 0.9949971795082092,
|
| 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:0772abe9029080643354dff6a5ca3fc9494d60ba351b840bfc518cd89fe774d1
|
| 3 |
+
size 6545
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|