Instructions to use Gege24/zeus-ld-intercode-test2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/zeus-ld-intercode-test2 with PEFT:
Base model is not found.
- Transformers
How to use Gege24/zeus-ld-intercode-test2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/zeus-ld-intercode-test2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Gege24/zeus-ld-intercode-test2", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/zeus-ld-intercode-test2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/zeus-ld-intercode-test2" # 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/zeus-ld-intercode-test2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/zeus-ld-intercode-test2
- SGLang
How to use Gege24/zeus-ld-intercode-test2 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/zeus-ld-intercode-test2" \ --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/zeus-ld-intercode-test2", "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/zeus-ld-intercode-test2" \ --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/zeus-ld-intercode-test2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/zeus-ld-intercode-test2 with Docker Model Runner:
docker model run hf.co/Gege24/zeus-ld-intercode-test2
Upload task output zeus-ld-intercode-1780902488
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 +1402 -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: None
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Jordansky--augmented-f560e4e6ee71e78d
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": null,
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 128,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"down_proj",
|
| 33 |
+
"up_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"o_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:ff70e1d9a8265b115e8032d2a8a6f417ebb39a6d538bc746ea39410afc4ab82f
|
| 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 |
+
761,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,1402 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.28164322723908214,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 761,
|
| 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.001850481125092524,
|
| 14 |
+
"grad_norm": 12.649392127990723,
|
| 15 |
+
"learning_rate": 6.325018450184502e-07,
|
| 16 |
+
"loss": 1.3603,
|
| 17 |
+
"mean_token_accuracy": 0.7554670929908752,
|
| 18 |
+
"num_tokens": 185821.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.003700962250185048,
|
| 23 |
+
"grad_norm": 9.217720985412598,
|
| 24 |
+
"learning_rate": 1.4231291512915131e-06,
|
| 25 |
+
"loss": 1.2892,
|
| 26 |
+
"mean_token_accuracy": 0.7647651076316834,
|
| 27 |
+
"num_tokens": 374500.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.0055514433752775726,
|
| 32 |
+
"grad_norm": 4.445683002471924,
|
| 33 |
+
"learning_rate": 2.2137564575645756e-06,
|
| 34 |
+
"loss": 1.1434,
|
| 35 |
+
"mean_token_accuracy": 0.7748205065727234,
|
| 36 |
+
"num_tokens": 563560.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.007401924500370096,
|
| 41 |
+
"grad_norm": 3.0582313537597656,
|
| 42 |
+
"learning_rate": 3.004383763837638e-06,
|
| 43 |
+
"loss": 0.9881,
|
| 44 |
+
"mean_token_accuracy": 0.7829701185226441,
|
| 45 |
+
"num_tokens": 746605.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.009252405625462621,
|
| 50 |
+
"grad_norm": 2.2693915367126465,
|
| 51 |
+
"learning_rate": 3.795011070110701e-06,
|
| 52 |
+
"loss": 0.8071,
|
| 53 |
+
"mean_token_accuracy": 0.8049428701400757,
|
| 54 |
+
"num_tokens": 932791.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.011102886750555145,
|
| 59 |
+
"grad_norm": 2.1072044372558594,
|
| 60 |
+
"learning_rate": 4.585638376383764e-06,
|
| 61 |
+
"loss": 0.6524,
|
| 62 |
+
"mean_token_accuracy": 0.8388792037963867,
|
| 63 |
+
"num_tokens": 1117440.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.012953367875647668,
|
| 68 |
+
"grad_norm": 1.808276891708374,
|
| 69 |
+
"learning_rate": 5.376265682656827e-06,
|
| 70 |
+
"loss": 0.4326,
|
| 71 |
+
"mean_token_accuracy": 0.8950777530670166,
|
| 72 |
+
"num_tokens": 1304726.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.014803849000740192,
|
| 77 |
+
"grad_norm": 1.2398462295532227,
|
| 78 |
+
"learning_rate": 6.1668929889298895e-06,
|
| 79 |
+
"loss": 0.2749,
|
| 80 |
+
"mean_token_accuracy": 0.9303830146789551,
|
| 81 |
+
"num_tokens": 1495300.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.016654330125832718,
|
| 86 |
+
"grad_norm": 0.8731722235679626,
|
| 87 |
+
"learning_rate": 6.957520295202952e-06,
|
| 88 |
+
"loss": 0.1441,
|
| 89 |
+
"mean_token_accuracy": 0.9656038403511047,
|
| 90 |
+
"num_tokens": 1685752.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.018504811250925242,
|
| 95 |
+
"grad_norm": 0.5143530964851379,
|
| 96 |
+
"learning_rate": 7.748147601476015e-06,
|
| 97 |
+
"loss": 0.1277,
|
| 98 |
+
"mean_token_accuracy": 0.966814661026001,
|
| 99 |
+
"num_tokens": 1868182.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.020355292376017766,
|
| 104 |
+
"grad_norm": 0.4487469792366028,
|
| 105 |
+
"learning_rate": 8.538774907749078e-06,
|
| 106 |
+
"loss": 0.0714,
|
| 107 |
+
"mean_token_accuracy": 0.9793548464775086,
|
| 108 |
+
"num_tokens": 2057318.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.02220577350111029,
|
| 113 |
+
"grad_norm": 0.35000377893447876,
|
| 114 |
+
"learning_rate": 9.32940221402214e-06,
|
| 115 |
+
"loss": 0.0824,
|
| 116 |
+
"mean_token_accuracy": 0.9777526021003723,
|
| 117 |
+
"num_tokens": 2245866.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.024056254626202814,
|
| 122 |
+
"grad_norm": 0.1533830463886261,
|
| 123 |
+
"learning_rate": 1.0120029520295203e-05,
|
| 124 |
+
"loss": 0.0538,
|
| 125 |
+
"mean_token_accuracy": 0.9833965539932251,
|
| 126 |
+
"num_tokens": 2433677.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.025906735751295335,
|
| 131 |
+
"grad_norm": 0.387611985206604,
|
| 132 |
+
"learning_rate": 1.0910656826568265e-05,
|
| 133 |
+
"loss": 0.044,
|
| 134 |
+
"mean_token_accuracy": 0.9864847898483277,
|
| 135 |
+
"num_tokens": 2623909.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.02775721687638786,
|
| 140 |
+
"grad_norm": 0.19073283672332764,
|
| 141 |
+
"learning_rate": 1.170128413284133e-05,
|
| 142 |
+
"loss": 0.0295,
|
| 143 |
+
"mean_token_accuracy": 0.9899263978004456,
|
| 144 |
+
"num_tokens": 2802983.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.029607698001480384,
|
| 149 |
+
"grad_norm": 0.7775747179985046,
|
| 150 |
+
"learning_rate": 1.2491911439114392e-05,
|
| 151 |
+
"loss": 0.0263,
|
| 152 |
+
"mean_token_accuracy": 0.9908901691436768,
|
| 153 |
+
"num_tokens": 2986382.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.03145817912657291,
|
| 158 |
+
"grad_norm": 0.4266139566898346,
|
| 159 |
+
"learning_rate": 1.3282538745387456e-05,
|
| 160 |
+
"loss": 0.0285,
|
| 161 |
+
"mean_token_accuracy": 0.9905906915664673,
|
| 162 |
+
"num_tokens": 3169983.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.033308660251665435,
|
| 167 |
+
"grad_norm": 0.10814467072486877,
|
| 168 |
+
"learning_rate": 1.4073166051660517e-05,
|
| 169 |
+
"loss": 0.0204,
|
| 170 |
+
"mean_token_accuracy": 0.9922121882438659,
|
| 171 |
+
"num_tokens": 3357363.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.035159141376757956,
|
| 176 |
+
"grad_norm": 0.354408323764801,
|
| 177 |
+
"learning_rate": 1.4863793357933581e-05,
|
| 178 |
+
"loss": 0.0223,
|
| 179 |
+
"mean_token_accuracy": 0.9915817618370056,
|
| 180 |
+
"num_tokens": 3546512.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.037009622501850484,
|
| 185 |
+
"grad_norm": 0.1480749547481537,
|
| 186 |
+
"learning_rate": 1.5654420664206644e-05,
|
| 187 |
+
"loss": 0.0185,
|
| 188 |
+
"mean_token_accuracy": 0.992724347114563,
|
| 189 |
+
"num_tokens": 3735563.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.038860103626943004,
|
| 194 |
+
"grad_norm": 0.1472485065460205,
|
| 195 |
+
"learning_rate": 1.6445047970479706e-05,
|
| 196 |
+
"loss": 0.0183,
|
| 197 |
+
"mean_token_accuracy": 0.992663311958313,
|
| 198 |
+
"num_tokens": 3922268.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.04071058475203553,
|
| 203 |
+
"grad_norm": 0.10689185559749603,
|
| 204 |
+
"learning_rate": 1.723567527675277e-05,
|
| 205 |
+
"loss": 0.0188,
|
| 206 |
+
"mean_token_accuracy": 0.9926952004432679,
|
| 207 |
+
"num_tokens": 4110402.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.04256106587712805,
|
| 212 |
+
"grad_norm": 0.1283423900604248,
|
| 213 |
+
"learning_rate": 1.802630258302583e-05,
|
| 214 |
+
"loss": 0.0154,
|
| 215 |
+
"mean_token_accuracy": 0.9934558510780335,
|
| 216 |
+
"num_tokens": 4301143.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.04441154700222058,
|
| 221 |
+
"grad_norm": 0.5970118641853333,
|
| 222 |
+
"learning_rate": 1.8816929889298894e-05,
|
| 223 |
+
"loss": 0.0169,
|
| 224 |
+
"mean_token_accuracy": 0.9931488752365112,
|
| 225 |
+
"num_tokens": 4485870.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.0462620281273131,
|
| 230 |
+
"grad_norm": 0.1334739327430725,
|
| 231 |
+
"learning_rate": 1.9607557195571956e-05,
|
| 232 |
+
"loss": 0.0158,
|
| 233 |
+
"mean_token_accuracy": 0.9934451222419739,
|
| 234 |
+
"num_tokens": 4671825.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.04811250925240563,
|
| 239 |
+
"grad_norm": 0.1656082421541214,
|
| 240 |
+
"learning_rate": 2.039818450184502e-05,
|
| 241 |
+
"loss": 0.0146,
|
| 242 |
+
"mean_token_accuracy": 0.9936710596084595,
|
| 243 |
+
"num_tokens": 4854954.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.04996299037749815,
|
| 248 |
+
"grad_norm": 0.10422646999359131,
|
| 249 |
+
"learning_rate": 2.1188811808118085e-05,
|
| 250 |
+
"loss": 0.0147,
|
| 251 |
+
"mean_token_accuracy": 0.9935644507408142,
|
| 252 |
+
"num_tokens": 5042206.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.05181347150259067,
|
| 257 |
+
"grad_norm": 0.1137189045548439,
|
| 258 |
+
"learning_rate": 2.1979439114391147e-05,
|
| 259 |
+
"loss": 0.0147,
|
| 260 |
+
"mean_token_accuracy": 0.9937207102775574,
|
| 261 |
+
"num_tokens": 5231792.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.0536639526276832,
|
| 266 |
+
"grad_norm": 0.1359642595052719,
|
| 267 |
+
"learning_rate": 2.277006642066421e-05,
|
| 268 |
+
"loss": 0.0142,
|
| 269 |
+
"mean_token_accuracy": 0.993699848651886,
|
| 270 |
+
"num_tokens": 5412297.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.05551443375277572,
|
| 275 |
+
"grad_norm": 0.17001201212406158,
|
| 276 |
+
"learning_rate": 2.356069372693727e-05,
|
| 277 |
+
"loss": 0.0138,
|
| 278 |
+
"mean_token_accuracy": 0.993944239616394,
|
| 279 |
+
"num_tokens": 5599717.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.057364914877868246,
|
| 284 |
+
"grad_norm": 0.11590602993965149,
|
| 285 |
+
"learning_rate": 2.435132103321033e-05,
|
| 286 |
+
"loss": 0.0136,
|
| 287 |
+
"mean_token_accuracy": 0.9938363671302796,
|
| 288 |
+
"num_tokens": 5786537.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.05921539600296077,
|
| 293 |
+
"grad_norm": 0.11727731674909592,
|
| 294 |
+
"learning_rate": 2.5141948339483397e-05,
|
| 295 |
+
"loss": 0.0143,
|
| 296 |
+
"mean_token_accuracy": 0.993740177154541,
|
| 297 |
+
"num_tokens": 5969585.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.061065877128053295,
|
| 302 |
+
"grad_norm": 0.08245962113142014,
|
| 303 |
+
"learning_rate": 2.593257564575646e-05,
|
| 304 |
+
"loss": 0.0141,
|
| 305 |
+
"mean_token_accuracy": 0.9940990090370179,
|
| 306 |
+
"num_tokens": 6156724.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.06291635825314582,
|
| 311 |
+
"grad_norm": 0.07970687001943588,
|
| 312 |
+
"learning_rate": 2.6723202952029522e-05,
|
| 313 |
+
"loss": 0.013,
|
| 314 |
+
"mean_token_accuracy": 0.9941760420799255,
|
| 315 |
+
"num_tokens": 6345575.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.06476683937823834,
|
| 320 |
+
"grad_norm": 0.20664170384407043,
|
| 321 |
+
"learning_rate": 2.751383025830258e-05,
|
| 322 |
+
"loss": 0.0128,
|
| 323 |
+
"mean_token_accuracy": 0.9942710280418396,
|
| 324 |
+
"num_tokens": 6531385.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.06661732050333087,
|
| 329 |
+
"grad_norm": 0.2238393872976303,
|
| 330 |
+
"learning_rate": 2.830445756457565e-05,
|
| 331 |
+
"loss": 0.0143,
|
| 332 |
+
"mean_token_accuracy": 0.9939396977424622,
|
| 333 |
+
"num_tokens": 6715295.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.06846780162842339,
|
| 338 |
+
"grad_norm": 0.16475221514701843,
|
| 339 |
+
"learning_rate": 2.909508487084871e-05,
|
| 340 |
+
"loss": 0.0139,
|
| 341 |
+
"mean_token_accuracy": 0.9937853693962098,
|
| 342 |
+
"num_tokens": 6901640.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.07031828275351591,
|
| 347 |
+
"grad_norm": 0.11899226903915405,
|
| 348 |
+
"learning_rate": 2.9885712177121772e-05,
|
| 349 |
+
"loss": 0.0139,
|
| 350 |
+
"mean_token_accuracy": 0.9938597559928894,
|
| 351 |
+
"num_tokens": 7088485.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.07216876387860843,
|
| 356 |
+
"grad_norm": 0.05497577413916588,
|
| 357 |
+
"learning_rate": 3.0676339483394835e-05,
|
| 358 |
+
"loss": 0.0127,
|
| 359 |
+
"mean_token_accuracy": 0.9940391182899475,
|
| 360 |
+
"num_tokens": 7275336.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.07401924500370097,
|
| 365 |
+
"grad_norm": 0.0667397677898407,
|
| 366 |
+
"learning_rate": 3.14669667896679e-05,
|
| 367 |
+
"loss": 0.0136,
|
| 368 |
+
"mean_token_accuracy": 0.994173550605774,
|
| 369 |
+
"num_tokens": 7462575.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.07586972612879349,
|
| 374 |
+
"grad_norm": 0.13350225985050201,
|
| 375 |
+
"learning_rate": 3.225759409594096e-05,
|
| 376 |
+
"loss": 0.0142,
|
| 377 |
+
"mean_token_accuracy": 0.9938544273376465,
|
| 378 |
+
"num_tokens": 7650192.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.07772020725388601,
|
| 383 |
+
"grad_norm": 0.12862999737262726,
|
| 384 |
+
"learning_rate": 3.3048221402214026e-05,
|
| 385 |
+
"loss": 0.0129,
|
| 386 |
+
"mean_token_accuracy": 0.9943220376968384,
|
| 387 |
+
"num_tokens": 7841316.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.07957068837897853,
|
| 392 |
+
"grad_norm": 0.08196930587291718,
|
| 393 |
+
"learning_rate": 3.3838848708487085e-05,
|
| 394 |
+
"loss": 0.0135,
|
| 395 |
+
"mean_token_accuracy": 0.9939719796180725,
|
| 396 |
+
"num_tokens": 8022577.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.08142116950407106,
|
| 401 |
+
"grad_norm": 0.11810460686683655,
|
| 402 |
+
"learning_rate": 3.462947601476015e-05,
|
| 403 |
+
"loss": 0.0123,
|
| 404 |
+
"mean_token_accuracy": 0.9945261120796204,
|
| 405 |
+
"num_tokens": 8211139.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.08327165062916358,
|
| 410 |
+
"grad_norm": 0.06291542947292328,
|
| 411 |
+
"learning_rate": 3.542010332103321e-05,
|
| 412 |
+
"loss": 0.0126,
|
| 413 |
+
"mean_token_accuracy": 0.9944621562957764,
|
| 414 |
+
"num_tokens": 8397245.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.0851221317542561,
|
| 419 |
+
"grad_norm": 0.06278537958860397,
|
| 420 |
+
"learning_rate": 3.6210730627306276e-05,
|
| 421 |
+
"loss": 0.014,
|
| 422 |
+
"mean_token_accuracy": 0.9939502358436585,
|
| 423 |
+
"num_tokens": 8580660.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.08697261287934863,
|
| 428 |
+
"grad_norm": 0.051632992923259735,
|
| 429 |
+
"learning_rate": 3.7001357933579335e-05,
|
| 430 |
+
"loss": 0.0122,
|
| 431 |
+
"mean_token_accuracy": 0.9946012616157531,
|
| 432 |
+
"num_tokens": 8768383.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.08882309400444116,
|
| 437 |
+
"grad_norm": 0.06995566934347153,
|
| 438 |
+
"learning_rate": 3.77919852398524e-05,
|
| 439 |
+
"loss": 0.0128,
|
| 440 |
+
"mean_token_accuracy": 0.9943013906478881,
|
| 441 |
+
"num_tokens": 8953368.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.09067357512953368,
|
| 446 |
+
"grad_norm": 0.1363731175661087,
|
| 447 |
+
"learning_rate": 3.858261254612547e-05,
|
| 448 |
+
"loss": 0.0125,
|
| 449 |
+
"mean_token_accuracy": 0.9944965839385986,
|
| 450 |
+
"num_tokens": 9138830.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.0925240562546262,
|
| 455 |
+
"grad_norm": 0.05171045660972595,
|
| 456 |
+
"learning_rate": 3.9373239852398526e-05,
|
| 457 |
+
"loss": 0.0118,
|
| 458 |
+
"mean_token_accuracy": 0.9946675181388855,
|
| 459 |
+
"num_tokens": 9328907.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.09437453737971872,
|
| 464 |
+
"grad_norm": 0.05888763815164566,
|
| 465 |
+
"learning_rate": 4.0163867158671585e-05,
|
| 466 |
+
"loss": 0.0124,
|
| 467 |
+
"mean_token_accuracy": 0.9943785905838013,
|
| 468 |
+
"num_tokens": 9514714.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.09622501850481126,
|
| 473 |
+
"grad_norm": 0.0596054270863533,
|
| 474 |
+
"learning_rate": 4.095449446494465e-05,
|
| 475 |
+
"loss": 0.0134,
|
| 476 |
+
"mean_token_accuracy": 0.9940859913825989,
|
| 477 |
+
"num_tokens": 9698135.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.09807549962990378,
|
| 482 |
+
"grad_norm": 0.08483681082725525,
|
| 483 |
+
"learning_rate": 4.174512177121772e-05,
|
| 484 |
+
"loss": 0.0125,
|
| 485 |
+
"mean_token_accuracy": 0.9941369533538819,
|
| 486 |
+
"num_tokens": 9882979.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.0999259807549963,
|
| 491 |
+
"grad_norm": 0.07195551693439484,
|
| 492 |
+
"learning_rate": 4.2535749077490776e-05,
|
| 493 |
+
"loss": 0.0121,
|
| 494 |
+
"mean_token_accuracy": 0.994370698928833,
|
| 495 |
+
"num_tokens": 10069134.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.10177646188008882,
|
| 500 |
+
"grad_norm": 0.040128063410520554,
|
| 501 |
+
"learning_rate": 4.285197291230987e-05,
|
| 502 |
+
"loss": 0.0127,
|
| 503 |
+
"mean_token_accuracy": 0.9942069530487061,
|
| 504 |
+
"num_tokens": 10257393.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.10362694300518134,
|
| 509 |
+
"grad_norm": 0.03847283869981766,
|
| 510 |
+
"learning_rate": 4.285180737675649e-05,
|
| 511 |
+
"loss": 0.0125,
|
| 512 |
+
"mean_token_accuracy": 0.9942315220832825,
|
| 513 |
+
"num_tokens": 10446564.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.10547742413027388,
|
| 518 |
+
"grad_norm": 0.052056606858968735,
|
| 519 |
+
"learning_rate": 4.285149135591477e-05,
|
| 520 |
+
"loss": 0.0128,
|
| 521 |
+
"mean_token_accuracy": 0.9941303849220275,
|
| 522 |
+
"num_tokens": 10635225.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.1073279052553664,
|
| 527 |
+
"grad_norm": 0.11386790126562119,
|
| 528 |
+
"learning_rate": 4.285102485274419e-05,
|
| 529 |
+
"loss": 0.0121,
|
| 530 |
+
"mean_token_accuracy": 0.9943561673164367,
|
| 531 |
+
"num_tokens": 10824251.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.10917838638045892,
|
| 536 |
+
"grad_norm": 0.08637174218893051,
|
| 537 |
+
"learning_rate": 4.285040787161343e-05,
|
| 538 |
+
"loss": 0.0122,
|
| 539 |
+
"mean_token_accuracy": 0.9942921042442322,
|
| 540 |
+
"num_tokens": 11007473.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.11102886750555144,
|
| 545 |
+
"grad_norm": 0.08053375780582428,
|
| 546 |
+
"learning_rate": 4.284964041830038e-05,
|
| 547 |
+
"loss": 0.0125,
|
| 548 |
+
"mean_token_accuracy": 0.9943666338920594,
|
| 549 |
+
"num_tokens": 11195505.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.11287934863064397,
|
| 554 |
+
"grad_norm": 0.053617142140865326,
|
| 555 |
+
"learning_rate": 4.284872249999205e-05,
|
| 556 |
+
"loss": 0.0122,
|
| 557 |
+
"mean_token_accuracy": 0.9943767070770264,
|
| 558 |
+
"num_tokens": 11383359.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.11472982975573649,
|
| 563 |
+
"grad_norm": 0.236342191696167,
|
| 564 |
+
"learning_rate": 4.284765412528454e-05,
|
| 565 |
+
"loss": 0.0125,
|
| 566 |
+
"mean_token_accuracy": 0.9943820238113403,
|
| 567 |
+
"num_tokens": 11570508.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.11658031088082901,
|
| 572 |
+
"grad_norm": 0.0628127008676529,
|
| 573 |
+
"learning_rate": 4.2846435304182934e-05,
|
| 574 |
+
"loss": 0.0118,
|
| 575 |
+
"mean_token_accuracy": 0.9945466637611389,
|
| 576 |
+
"num_tokens": 11760407.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.11843079200592153,
|
| 581 |
+
"grad_norm": 0.07259124517440796,
|
| 582 |
+
"learning_rate": 4.284506604810118e-05,
|
| 583 |
+
"loss": 0.0117,
|
| 584 |
+
"mean_token_accuracy": 0.994793963432312,
|
| 585 |
+
"num_tokens": 11946394.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.12028127313101407,
|
| 590 |
+
"grad_norm": 0.12081380188465118,
|
| 591 |
+
"learning_rate": 4.284354636986206e-05,
|
| 592 |
+
"loss": 0.0131,
|
| 593 |
+
"mean_token_accuracy": 0.9942123293876648,
|
| 594 |
+
"num_tokens": 12135829.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.12213175425610659,
|
| 599 |
+
"grad_norm": 0.032616619020700455,
|
| 600 |
+
"learning_rate": 4.284187628369701e-05,
|
| 601 |
+
"loss": 0.0123,
|
| 602 |
+
"mean_token_accuracy": 0.9943543672561646,
|
| 603 |
+
"num_tokens": 12326292.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.12398223538119911,
|
| 608 |
+
"grad_norm": 0.0659327581524849,
|
| 609 |
+
"learning_rate": 4.284005580524598e-05,
|
| 610 |
+
"loss": 0.0119,
|
| 611 |
+
"mean_token_accuracy": 0.9946148633956909,
|
| 612 |
+
"num_tokens": 12512244.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.12583271650629163,
|
| 617 |
+
"grad_norm": 0.0538957342505455,
|
| 618 |
+
"learning_rate": 4.283808495155733e-05,
|
| 619 |
+
"loss": 0.0125,
|
| 620 |
+
"mean_token_accuracy": 0.9943965435028076,
|
| 621 |
+
"num_tokens": 12698345.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.12768319763138417,
|
| 626 |
+
"grad_norm": 0.026756659150123596,
|
| 627 |
+
"learning_rate": 4.283596374108763e-05,
|
| 628 |
+
"loss": 0.0117,
|
| 629 |
+
"mean_token_accuracy": 0.9946674346923828,
|
| 630 |
+
"num_tokens": 12886124.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.12953367875647667,
|
| 635 |
+
"grad_norm": 0.03937589004635811,
|
| 636 |
+
"learning_rate": 4.2833692193701535e-05,
|
| 637 |
+
"loss": 0.0124,
|
| 638 |
+
"mean_token_accuracy": 0.9941404342651368,
|
| 639 |
+
"num_tokens": 13072522.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.1313841598815692,
|
| 644 |
+
"grad_norm": 0.11673159897327423,
|
| 645 |
+
"learning_rate": 4.283127033067154e-05,
|
| 646 |
+
"loss": 0.0121,
|
| 647 |
+
"mean_token_accuracy": 0.994466495513916,
|
| 648 |
+
"num_tokens": 13257550.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.13323464100666174,
|
| 653 |
+
"grad_norm": 0.04208122193813324,
|
| 654 |
+
"learning_rate": 4.282869817467783e-05,
|
| 655 |
+
"loss": 0.0127,
|
| 656 |
+
"mean_token_accuracy": 0.9941461205482482,
|
| 657 |
+
"num_tokens": 13443219.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.13508512213175425,
|
| 662 |
+
"grad_norm": 0.0433068685233593,
|
| 663 |
+
"learning_rate": 4.282597574980804e-05,
|
| 664 |
+
"loss": 0.0118,
|
| 665 |
+
"mean_token_accuracy": 0.9947281122207642,
|
| 666 |
+
"num_tokens": 13630868.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.13693560325684678,
|
| 671 |
+
"grad_norm": 0.11256636679172516,
|
| 672 |
+
"learning_rate": 4.2823103081557036e-05,
|
| 673 |
+
"loss": 0.0119,
|
| 674 |
+
"mean_token_accuracy": 0.994697916507721,
|
| 675 |
+
"num_tokens": 13819698.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.13878608438193932,
|
| 680 |
+
"grad_norm": 0.05056292563676834,
|
| 681 |
+
"learning_rate": 4.282008019682668e-05,
|
| 682 |
+
"loss": 0.0122,
|
| 683 |
+
"mean_token_accuracy": 0.9944531917572021,
|
| 684 |
+
"num_tokens": 14006605.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.14063656550703182,
|
| 689 |
+
"grad_norm": 0.04138778895139694,
|
| 690 |
+
"learning_rate": 4.2816907123925595e-05,
|
| 691 |
+
"loss": 0.0119,
|
| 692 |
+
"mean_token_accuracy": 0.9946407318115235,
|
| 693 |
+
"num_tokens": 14194590.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.14248704663212436,
|
| 698 |
+
"grad_norm": 0.04915003105998039,
|
| 699 |
+
"learning_rate": 4.2813583892568835e-05,
|
| 700 |
+
"loss": 0.0115,
|
| 701 |
+
"mean_token_accuracy": 0.9946125507354736,
|
| 702 |
+
"num_tokens": 14382780.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.14433752775721687,
|
| 707 |
+
"grad_norm": 0.0317862406373024,
|
| 708 |
+
"learning_rate": 4.28101105338777e-05,
|
| 709 |
+
"loss": 0.0127,
|
| 710 |
+
"mean_token_accuracy": 0.9941527843475342,
|
| 711 |
+
"num_tokens": 14570415.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.1461880088823094,
|
| 716 |
+
"grad_norm": 0.04320110008120537,
|
| 717 |
+
"learning_rate": 4.280648708037937e-05,
|
| 718 |
+
"loss": 0.0118,
|
| 719 |
+
"mean_token_accuracy": 0.9945583343505859,
|
| 720 |
+
"num_tokens": 14757326.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.14803849000740193,
|
| 725 |
+
"grad_norm": 0.0487859845161438,
|
| 726 |
+
"learning_rate": 4.280271356600664e-05,
|
| 727 |
+
"loss": 0.012,
|
| 728 |
+
"mean_token_accuracy": 0.9947203397750854,
|
| 729 |
+
"num_tokens": 14939541.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.14988897113249444,
|
| 734 |
+
"grad_norm": 0.019251326099038124,
|
| 735 |
+
"learning_rate": 4.2798790026097594e-05,
|
| 736 |
+
"loss": 0.0118,
|
| 737 |
+
"mean_token_accuracy": 0.994676387310028,
|
| 738 |
+
"num_tokens": 15126309.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.15173945225758698,
|
| 743 |
+
"grad_norm": 0.06465357542037964,
|
| 744 |
+
"learning_rate": 4.2794716497395245e-05,
|
| 745 |
+
"loss": 0.0129,
|
| 746 |
+
"mean_token_accuracy": 0.9943367958068847,
|
| 747 |
+
"num_tokens": 15310070.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.15358993338267948,
|
| 752 |
+
"grad_norm": 0.05526921898126602,
|
| 753 |
+
"learning_rate": 4.2790493018047233e-05,
|
| 754 |
+
"loss": 0.0122,
|
| 755 |
+
"mean_token_accuracy": 0.9944483518600464,
|
| 756 |
+
"num_tokens": 15495949.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.15544041450777202,
|
| 761 |
+
"grad_norm": 0.034128863364458084,
|
| 762 |
+
"learning_rate": 4.278611962760546e-05,
|
| 763 |
+
"loss": 0.0123,
|
| 764 |
+
"mean_token_accuracy": 0.9941602945327759,
|
| 765 |
+
"num_tokens": 15683861.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.15729089563286455,
|
| 770 |
+
"grad_norm": 0.040949802845716476,
|
| 771 |
+
"learning_rate": 4.2781596367025705e-05,
|
| 772 |
+
"loss": 0.0124,
|
| 773 |
+
"mean_token_accuracy": 0.9942546725273133,
|
| 774 |
+
"num_tokens": 15870718.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.15914137675795706,
|
| 779 |
+
"grad_norm": 0.035726647824048996,
|
| 780 |
+
"learning_rate": 4.277692327866723e-05,
|
| 781 |
+
"loss": 0.0125,
|
| 782 |
+
"mean_token_accuracy": 0.9944644689559936,
|
| 783 |
+
"num_tokens": 16061189.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.1609918578830496,
|
| 788 |
+
"grad_norm": 0.04440707713365555,
|
| 789 |
+
"learning_rate": 4.27721004062924e-05,
|
| 790 |
+
"loss": 0.0131,
|
| 791 |
+
"mean_token_accuracy": 0.9941565513610839,
|
| 792 |
+
"num_tokens": 16244331.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.16284233900814213,
|
| 797 |
+
"grad_norm": 0.04277065768837929,
|
| 798 |
+
"learning_rate": 4.27671277950663e-05,
|
| 799 |
+
"loss": 0.0128,
|
| 800 |
+
"mean_token_accuracy": 0.9941763043403625,
|
| 801 |
+
"num_tokens": 16428979.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.16469282013323464,
|
| 806 |
+
"grad_norm": 0.05249185860157013,
|
| 807 |
+
"learning_rate": 4.276200549155626e-05,
|
| 808 |
+
"loss": 0.012,
|
| 809 |
+
"mean_token_accuracy": 0.9945122838020325,
|
| 810 |
+
"num_tokens": 16616412.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.16654330125832717,
|
| 815 |
+
"grad_norm": 0.05636998265981674,
|
| 816 |
+
"learning_rate": 4.2756733543731456e-05,
|
| 817 |
+
"loss": 0.0119,
|
| 818 |
+
"mean_token_accuracy": 0.9945295214653015,
|
| 819 |
+
"num_tokens": 16803515.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.16839378238341968,
|
| 824 |
+
"grad_norm": 0.022253001108765602,
|
| 825 |
+
"learning_rate": 4.275131200096242e-05,
|
| 826 |
+
"loss": 0.012,
|
| 827 |
+
"mean_token_accuracy": 0.994416344165802,
|
| 828 |
+
"num_tokens": 16989032.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.1702442635085122,
|
| 833 |
+
"grad_norm": 0.032556477934122086,
|
| 834 |
+
"learning_rate": 4.2745740914020645e-05,
|
| 835 |
+
"loss": 0.0119,
|
| 836 |
+
"mean_token_accuracy": 0.9945114493370056,
|
| 837 |
+
"num_tokens": 17178481.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.17209474463360475,
|
| 842 |
+
"grad_norm": 0.057244472205638885,
|
| 843 |
+
"learning_rate": 4.2740020335078044e-05,
|
| 844 |
+
"loss": 0.0118,
|
| 845 |
+
"mean_token_accuracy": 0.9945224165916443,
|
| 846 |
+
"num_tokens": 17364736.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.17394522575869725,
|
| 851 |
+
"grad_norm": 0.052654314786195755,
|
| 852 |
+
"learning_rate": 4.27341503177065e-05,
|
| 853 |
+
"loss": 0.012,
|
| 854 |
+
"mean_token_accuracy": 0.9944727659225464,
|
| 855 |
+
"num_tokens": 17546812.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.1757957068837898,
|
| 860 |
+
"grad_norm": 0.06236141547560692,
|
| 861 |
+
"learning_rate": 4.2728130916877336e-05,
|
| 862 |
+
"loss": 0.012,
|
| 863 |
+
"mean_token_accuracy": 0.9944144725799561,
|
| 864 |
+
"num_tokens": 17732195.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.17764618800888232,
|
| 869 |
+
"grad_norm": 0.04595118761062622,
|
| 870 |
+
"learning_rate": 4.272196218896084e-05,
|
| 871 |
+
"loss": 0.0127,
|
| 872 |
+
"mean_token_accuracy": 0.9942219495773316,
|
| 873 |
+
"num_tokens": 17915325.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.17949666913397483,
|
| 878 |
+
"grad_norm": 0.023451240733265877,
|
| 879 |
+
"learning_rate": 4.2715644191725686e-05,
|
| 880 |
+
"loss": 0.0129,
|
| 881 |
+
"mean_token_accuracy": 0.9942497849464417,
|
| 882 |
+
"num_tokens": 18101917.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.18134715025906736,
|
| 887 |
+
"grad_norm": 0.06435070186853409,
|
| 888 |
+
"learning_rate": 4.270917698433845e-05,
|
| 889 |
+
"loss": 0.0123,
|
| 890 |
+
"mean_token_accuracy": 0.9943255424499512,
|
| 891 |
+
"num_tokens": 18286995.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.18319763138415987,
|
| 896 |
+
"grad_norm": 0.020520444959402084,
|
| 897 |
+
"learning_rate": 4.270256062736299e-05,
|
| 898 |
+
"loss": 0.0121,
|
| 899 |
+
"mean_token_accuracy": 0.994460117816925,
|
| 900 |
+
"num_tokens": 18473747.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.1850481125092524,
|
| 905 |
+
"grad_norm": 0.060110948979854584,
|
| 906 |
+
"learning_rate": 4.269579518275996e-05,
|
| 907 |
+
"loss": 0.0117,
|
| 908 |
+
"mean_token_accuracy": 0.9946680665016174,
|
| 909 |
+
"num_tokens": 18661411.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.18689859363434494,
|
| 914 |
+
"grad_norm": 0.025209549814462662,
|
| 915 |
+
"learning_rate": 4.268888071388614e-05,
|
| 916 |
+
"loss": 0.0117,
|
| 917 |
+
"mean_token_accuracy": 0.9945947647094726,
|
| 918 |
+
"num_tokens": 18850199.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.18874907475943745,
|
| 923 |
+
"grad_norm": 0.018915211781859398,
|
| 924 |
+
"learning_rate": 4.268181728549391e-05,
|
| 925 |
+
"loss": 0.0121,
|
| 926 |
+
"mean_token_accuracy": 0.9943953394889832,
|
| 927 |
+
"num_tokens": 19035469.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.19059955588452998,
|
| 932 |
+
"grad_norm": 0.02561143785715103,
|
| 933 |
+
"learning_rate": 4.267460496373061e-05,
|
| 934 |
+
"loss": 0.0121,
|
| 935 |
+
"mean_token_accuracy": 0.9942945837974548,
|
| 936 |
+
"num_tokens": 19217948.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"epoch": 0.19245003700962252,
|
| 941 |
+
"grad_norm": 0.0442853718996048,
|
| 942 |
+
"learning_rate": 4.266724381613796e-05,
|
| 943 |
+
"loss": 0.012,
|
| 944 |
+
"mean_token_accuracy": 0.9944578647613526,
|
| 945 |
+
"num_tokens": 19404069.0,
|
| 946 |
+
"step": 520
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 0.19430051813471502,
|
| 950 |
+
"grad_norm": 0.04662763699889183,
|
| 951 |
+
"learning_rate": 4.265973391165136e-05,
|
| 952 |
+
"loss": 0.0129,
|
| 953 |
+
"mean_token_accuracy": 0.9942412853240967,
|
| 954 |
+
"num_tokens": 19585254.0,
|
| 955 |
+
"step": 525
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.19615099925980756,
|
| 959 |
+
"grad_norm": 0.0530804768204689,
|
| 960 |
+
"learning_rate": 4.2652075320599303e-05,
|
| 961 |
+
"loss": 0.0117,
|
| 962 |
+
"mean_token_accuracy": 0.9946515679359436,
|
| 963 |
+
"num_tokens": 19775480.0,
|
| 964 |
+
"step": 530
|
| 965 |
+
},
|
| 966 |
+
{
|
| 967 |
+
"epoch": 0.19800148038490006,
|
| 968 |
+
"grad_norm": 0.03273262456059456,
|
| 969 |
+
"learning_rate": 4.264426811470271e-05,
|
| 970 |
+
"loss": 0.012,
|
| 971 |
+
"mean_token_accuracy": 0.9944777727127075,
|
| 972 |
+
"num_tokens": 19959932.0,
|
| 973 |
+
"step": 535
|
| 974 |
+
},
|
| 975 |
+
{
|
| 976 |
+
"epoch": 0.1998519615099926,
|
| 977 |
+
"grad_norm": 0.04370114952325821,
|
| 978 |
+
"learning_rate": 4.263631236707421e-05,
|
| 979 |
+
"loss": 0.0118,
|
| 980 |
+
"mean_token_accuracy": 0.9945811629295349,
|
| 981 |
+
"num_tokens": 20146524.0,
|
| 982 |
+
"step": 540
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"epoch": 0.20170244263508513,
|
| 986 |
+
"grad_norm": 0.023784466087818146,
|
| 987 |
+
"learning_rate": 4.262820815221752e-05,
|
| 988 |
+
"loss": 0.0123,
|
| 989 |
+
"mean_token_accuracy": 0.9943390250205993,
|
| 990 |
+
"num_tokens": 20332234.0,
|
| 991 |
+
"step": 545
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.20355292376017764,
|
| 995 |
+
"grad_norm": 0.8499415516853333,
|
| 996 |
+
"learning_rate": 4.261995554602671e-05,
|
| 997 |
+
"loss": 0.0353,
|
| 998 |
+
"mean_token_accuracy": 0.9902504801750183,
|
| 999 |
+
"num_tokens": 20514499.0,
|
| 1000 |
+
"step": 550
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"epoch": 0.20540340488527017,
|
| 1004 |
+
"grad_norm": 1.1610054969787598,
|
| 1005 |
+
"learning_rate": 4.261155462578549e-05,
|
| 1006 |
+
"loss": 0.0206,
|
| 1007 |
+
"mean_token_accuracy": 0.9920717954635621,
|
| 1008 |
+
"num_tokens": 20700594.0,
|
| 1009 |
+
"step": 555
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 0.20725388601036268,
|
| 1013 |
+
"grad_norm": 0.13676072657108307,
|
| 1014 |
+
"learning_rate": 4.260300547016651e-05,
|
| 1015 |
+
"loss": 0.0163,
|
| 1016 |
+
"mean_token_accuracy": 0.9935830473899842,
|
| 1017 |
+
"num_tokens": 20890167.0,
|
| 1018 |
+
"step": 560
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.20910436713545522,
|
| 1022 |
+
"grad_norm": 0.15704846382141113,
|
| 1023 |
+
"learning_rate": 4.259430815923061e-05,
|
| 1024 |
+
"loss": 0.0147,
|
| 1025 |
+
"mean_token_accuracy": 0.9940526485443115,
|
| 1026 |
+
"num_tokens": 21076844.0,
|
| 1027 |
+
"step": 565
|
| 1028 |
+
},
|
| 1029 |
+
{
|
| 1030 |
+
"epoch": 0.21095484826054775,
|
| 1031 |
+
"grad_norm": 0.11786659061908722,
|
| 1032 |
+
"learning_rate": 4.258546277442605e-05,
|
| 1033 |
+
"loss": 0.0125,
|
| 1034 |
+
"mean_token_accuracy": 0.9944088220596313,
|
| 1035 |
+
"num_tokens": 21262899.0,
|
| 1036 |
+
"step": 570
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"epoch": 0.21280532938564026,
|
| 1040 |
+
"grad_norm": 0.11840520799160004,
|
| 1041 |
+
"learning_rate": 4.2576469398587796e-05,
|
| 1042 |
+
"loss": 0.0144,
|
| 1043 |
+
"mean_token_accuracy": 0.9937516927719117,
|
| 1044 |
+
"num_tokens": 21448343.0,
|
| 1045 |
+
"step": 575
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"epoch": 0.2146558105107328,
|
| 1049 |
+
"grad_norm": 0.08956237137317657,
|
| 1050 |
+
"learning_rate": 4.2567328115936684e-05,
|
| 1051 |
+
"loss": 0.0136,
|
| 1052 |
+
"mean_token_accuracy": 0.9941320896148682,
|
| 1053 |
+
"num_tokens": 21634019.0,
|
| 1054 |
+
"step": 580
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 0.21650629163582533,
|
| 1058 |
+
"grad_norm": 0.02889622002840042,
|
| 1059 |
+
"learning_rate": 4.255803901207869e-05,
|
| 1060 |
+
"loss": 0.0139,
|
| 1061 |
+
"mean_token_accuracy": 0.9940349817276001,
|
| 1062 |
+
"num_tokens": 21816536.0,
|
| 1063 |
+
"step": 585
|
| 1064 |
+
},
|
| 1065 |
+
{
|
| 1066 |
+
"epoch": 0.21835677276091783,
|
| 1067 |
+
"grad_norm": 0.026375873014330864,
|
| 1068 |
+
"learning_rate": 4.254860217400409e-05,
|
| 1069 |
+
"loss": 0.0123,
|
| 1070 |
+
"mean_token_accuracy": 0.9942944407463074,
|
| 1071 |
+
"num_tokens": 22002114.0,
|
| 1072 |
+
"step": 590
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"epoch": 0.22020725388601037,
|
| 1076 |
+
"grad_norm": 0.023582832887768745,
|
| 1077 |
+
"learning_rate": 4.253901769008664e-05,
|
| 1078 |
+
"loss": 0.012,
|
| 1079 |
+
"mean_token_accuracy": 0.9944105982780457,
|
| 1080 |
+
"num_tokens": 22186004.0,
|
| 1081 |
+
"step": 595
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.22205773501110287,
|
| 1085 |
+
"grad_norm": 0.029931364580988884,
|
| 1086 |
+
"learning_rate": 4.25292856500828e-05,
|
| 1087 |
+
"loss": 0.0119,
|
| 1088 |
+
"mean_token_accuracy": 0.9946899533271789,
|
| 1089 |
+
"num_tokens": 22369126.0,
|
| 1090 |
+
"step": 600
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 0.2239082161361954,
|
| 1094 |
+
"grad_norm": 0.03375266492366791,
|
| 1095 |
+
"learning_rate": 4.251940614513083e-05,
|
| 1096 |
+
"loss": 0.0126,
|
| 1097 |
+
"mean_token_accuracy": 0.9943894147872925,
|
| 1098 |
+
"num_tokens": 22557508.0,
|
| 1099 |
+
"step": 605
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"epoch": 0.22575869726128794,
|
| 1103 |
+
"grad_norm": 0.037536900490522385,
|
| 1104 |
+
"learning_rate": 4.2509379267749967e-05,
|
| 1105 |
+
"loss": 0.0121,
|
| 1106 |
+
"mean_token_accuracy": 0.9944296598434448,
|
| 1107 |
+
"num_tokens": 22740164.0,
|
| 1108 |
+
"step": 610
|
| 1109 |
+
},
|
| 1110 |
+
{
|
| 1111 |
+
"epoch": 0.22760917838638045,
|
| 1112 |
+
"grad_norm": 0.02084357477724552,
|
| 1113 |
+
"learning_rate": 4.249920511183957e-05,
|
| 1114 |
+
"loss": 0.0119,
|
| 1115 |
+
"mean_token_accuracy": 0.994500744342804,
|
| 1116 |
+
"num_tokens": 22926105.0,
|
| 1117 |
+
"step": 615
|
| 1118 |
+
},
|
| 1119 |
+
{
|
| 1120 |
+
"epoch": 0.22945965951147299,
|
| 1121 |
+
"grad_norm": 0.018535546958446503,
|
| 1122 |
+
"learning_rate": 4.248888377267821e-05,
|
| 1123 |
+
"loss": 0.0122,
|
| 1124 |
+
"mean_token_accuracy": 0.9944629311561585,
|
| 1125 |
+
"num_tokens": 23109821.0,
|
| 1126 |
+
"step": 620
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 0.23131014063656552,
|
| 1130 |
+
"grad_norm": 0.03311913460493088,
|
| 1131 |
+
"learning_rate": 4.247841534692281e-05,
|
| 1132 |
+
"loss": 0.0126,
|
| 1133 |
+
"mean_token_accuracy": 0.9942508697509765,
|
| 1134 |
+
"num_tokens": 23298500.0,
|
| 1135 |
+
"step": 625
|
| 1136 |
+
},
|
| 1137 |
+
{
|
| 1138 |
+
"epoch": 0.23316062176165803,
|
| 1139 |
+
"grad_norm": 0.03697752580046654,
|
| 1140 |
+
"learning_rate": 4.246779993260773e-05,
|
| 1141 |
+
"loss": 0.0125,
|
| 1142 |
+
"mean_token_accuracy": 0.9944444537162781,
|
| 1143 |
+
"num_tokens": 23484827.0,
|
| 1144 |
+
"step": 630
|
| 1145 |
+
},
|
| 1146 |
+
{
|
| 1147 |
+
"epoch": 0.23501110288675056,
|
| 1148 |
+
"grad_norm": 0.04822184517979622,
|
| 1149 |
+
"learning_rate": 4.24570376291438e-05,
|
| 1150 |
+
"loss": 0.013,
|
| 1151 |
+
"mean_token_accuracy": 0.9942883372306823,
|
| 1152 |
+
"num_tokens": 23672624.0,
|
| 1153 |
+
"step": 635
|
| 1154 |
+
},
|
| 1155 |
+
{
|
| 1156 |
+
"epoch": 0.23686158401184307,
|
| 1157 |
+
"grad_norm": 0.015962179750204086,
|
| 1158 |
+
"learning_rate": 4.2446128537317495e-05,
|
| 1159 |
+
"loss": 0.0126,
|
| 1160 |
+
"mean_token_accuracy": 0.9940625190734863,
|
| 1161 |
+
"num_tokens": 23855305.0,
|
| 1162 |
+
"step": 640
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 0.2387120651369356,
|
| 1166 |
+
"grad_norm": 0.023596221581101418,
|
| 1167 |
+
"learning_rate": 4.243507275928988e-05,
|
| 1168 |
+
"loss": 0.0121,
|
| 1169 |
+
"mean_token_accuracy": 0.9944760918617248,
|
| 1170 |
+
"num_tokens": 24039098.0,
|
| 1171 |
+
"step": 645
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"epoch": 0.24056254626202814,
|
| 1175 |
+
"grad_norm": 0.04977529123425484,
|
| 1176 |
+
"learning_rate": 4.2423870398595724e-05,
|
| 1177 |
+
"loss": 0.0131,
|
| 1178 |
+
"mean_token_accuracy": 0.9939121842384339,
|
| 1179 |
+
"num_tokens": 24224255.0,
|
| 1180 |
+
"step": 650
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"epoch": 0.24241302738712064,
|
| 1184 |
+
"grad_norm": 0.02917158044874668,
|
| 1185 |
+
"learning_rate": 4.24125215601425e-05,
|
| 1186 |
+
"loss": 0.012,
|
| 1187 |
+
"mean_token_accuracy": 0.9942941784858703,
|
| 1188 |
+
"num_tokens": 24408183.0,
|
| 1189 |
+
"step": 655
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"epoch": 0.24426350851221318,
|
| 1193 |
+
"grad_norm": 0.023342030122876167,
|
| 1194 |
+
"learning_rate": 4.240102635020941e-05,
|
| 1195 |
+
"loss": 0.0115,
|
| 1196 |
+
"mean_token_accuracy": 0.9947278022766113,
|
| 1197 |
+
"num_tokens": 24596912.0,
|
| 1198 |
+
"step": 660
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"epoch": 0.24611398963730569,
|
| 1202 |
+
"grad_norm": 0.019149361178278923,
|
| 1203 |
+
"learning_rate": 4.238938487644642e-05,
|
| 1204 |
+
"loss": 0.0121,
|
| 1205 |
+
"mean_token_accuracy": 0.9943392276763916,
|
| 1206 |
+
"num_tokens": 24783474.0,
|
| 1207 |
+
"step": 665
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"epoch": 0.24796447076239822,
|
| 1211 |
+
"grad_norm": 0.0178193561732769,
|
| 1212 |
+
"learning_rate": 4.237759724787315e-05,
|
| 1213 |
+
"loss": 0.012,
|
| 1214 |
+
"mean_token_accuracy": 0.9944109082221985,
|
| 1215 |
+
"num_tokens": 24969623.0,
|
| 1216 |
+
"step": 670
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"epoch": 0.24981495188749075,
|
| 1220 |
+
"grad_norm": 0.05727710947394371,
|
| 1221 |
+
"learning_rate": 4.2365663574878014e-05,
|
| 1222 |
+
"loss": 0.012,
|
| 1223 |
+
"mean_token_accuracy": 0.9943978309631347,
|
| 1224 |
+
"num_tokens": 25158466.0,
|
| 1225 |
+
"step": 675
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"epoch": 0.25166543301258326,
|
| 1229 |
+
"grad_norm": 0.030884942039847374,
|
| 1230 |
+
"learning_rate": 4.235358396921704e-05,
|
| 1231 |
+
"loss": 0.0119,
|
| 1232 |
+
"mean_token_accuracy": 0.9944790363311767,
|
| 1233 |
+
"num_tokens": 25346048.0,
|
| 1234 |
+
"step": 680
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"epoch": 0.25351591413767577,
|
| 1238 |
+
"grad_norm": 0.026175323873758316,
|
| 1239 |
+
"learning_rate": 4.234135854401289e-05,
|
| 1240 |
+
"loss": 0.0119,
|
| 1241 |
+
"mean_token_accuracy": 0.9945067286491394,
|
| 1242 |
+
"num_tokens": 25532502.0,
|
| 1243 |
+
"step": 685
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"epoch": 0.25536639526276833,
|
| 1247 |
+
"grad_norm": 0.023625630885362625,
|
| 1248 |
+
"learning_rate": 4.232898741375382e-05,
|
| 1249 |
+
"loss": 0.0121,
|
| 1250 |
+
"mean_token_accuracy": 0.9944512009620666,
|
| 1251 |
+
"num_tokens": 25717818.0,
|
| 1252 |
+
"step": 690
|
| 1253 |
+
},
|
| 1254 |
+
{
|
| 1255 |
+
"epoch": 0.25721687638786084,
|
| 1256 |
+
"grad_norm": 0.023306002840399742,
|
| 1257 |
+
"learning_rate": 4.2316470694292536e-05,
|
| 1258 |
+
"loss": 0.0115,
|
| 1259 |
+
"mean_token_accuracy": 0.9947312355041504,
|
| 1260 |
+
"num_tokens": 25905758.0,
|
| 1261 |
+
"step": 695
|
| 1262 |
+
},
|
| 1263 |
+
{
|
| 1264 |
+
"epoch": 0.25906735751295334,
|
| 1265 |
+
"grad_norm": 0.04023386910557747,
|
| 1266 |
+
"learning_rate": 4.230380850284518e-05,
|
| 1267 |
+
"loss": 0.0116,
|
| 1268 |
+
"mean_token_accuracy": 0.9947368025779724,
|
| 1269 |
+
"num_tokens": 26096154.0,
|
| 1270 |
+
"step": 700
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"epoch": 0.2609178386380459,
|
| 1274 |
+
"grad_norm": 0.054880719631910324,
|
| 1275 |
+
"learning_rate": 4.229100095799022e-05,
|
| 1276 |
+
"loss": 0.0127,
|
| 1277 |
+
"mean_token_accuracy": 0.9944626927375794,
|
| 1278 |
+
"num_tokens": 26282576.0,
|
| 1279 |
+
"step": 705
|
| 1280 |
+
},
|
| 1281 |
+
{
|
| 1282 |
+
"epoch": 0.2627683197631384,
|
| 1283 |
+
"grad_norm": 0.05358368158340454,
|
| 1284 |
+
"learning_rate": 4.227804817966728e-05,
|
| 1285 |
+
"loss": 0.0118,
|
| 1286 |
+
"mean_token_accuracy": 0.994605278968811,
|
| 1287 |
+
"num_tokens": 26466539.0,
|
| 1288 |
+
"step": 710
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"epoch": 0.2646188008882309,
|
| 1292 |
+
"grad_norm": 0.049045782536268234,
|
| 1293 |
+
"learning_rate": 4.226495028917609e-05,
|
| 1294 |
+
"loss": 0.0128,
|
| 1295 |
+
"mean_token_accuracy": 0.9942863821983338,
|
| 1296 |
+
"num_tokens": 26656251.0,
|
| 1297 |
+
"step": 715
|
| 1298 |
+
},
|
| 1299 |
+
{
|
| 1300 |
+
"epoch": 0.2664692820133235,
|
| 1301 |
+
"grad_norm": 0.0411219596862793,
|
| 1302 |
+
"learning_rate": 4.225170740917533e-05,
|
| 1303 |
+
"loss": 0.0121,
|
| 1304 |
+
"mean_token_accuracy": 0.9943994283676147,
|
| 1305 |
+
"num_tokens": 26838459.0,
|
| 1306 |
+
"step": 720
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"epoch": 0.268319763138416,
|
| 1310 |
+
"grad_norm": 0.030834250152111053,
|
| 1311 |
+
"learning_rate": 4.223831966368145e-05,
|
| 1312 |
+
"loss": 0.0122,
|
| 1313 |
+
"mean_token_accuracy": 0.9942387580871582,
|
| 1314 |
+
"num_tokens": 27019549.0,
|
| 1315 |
+
"step": 725
|
| 1316 |
+
},
|
| 1317 |
+
{
|
| 1318 |
+
"epoch": 0.2701702442635085,
|
| 1319 |
+
"grad_norm": 0.07497315853834152,
|
| 1320 |
+
"learning_rate": 4.222478717806755e-05,
|
| 1321 |
+
"loss": 0.0127,
|
| 1322 |
+
"mean_token_accuracy": 0.9943762421607971,
|
| 1323 |
+
"num_tokens": 27205313.0,
|
| 1324 |
+
"step": 730
|
| 1325 |
+
},
|
| 1326 |
+
{
|
| 1327 |
+
"epoch": 0.27202072538860106,
|
| 1328 |
+
"grad_norm": 0.05946696922183037,
|
| 1329 |
+
"learning_rate": 4.2211110079062164e-05,
|
| 1330 |
+
"loss": 0.0127,
|
| 1331 |
+
"mean_token_accuracy": 0.9942971229553222,
|
| 1332 |
+
"num_tokens": 27391816.0,
|
| 1333 |
+
"step": 735
|
| 1334 |
+
},
|
| 1335 |
+
{
|
| 1336 |
+
"epoch": 0.27387120651369357,
|
| 1337 |
+
"grad_norm": 0.03350157290697098,
|
| 1338 |
+
"learning_rate": 4.219728849474812e-05,
|
| 1339 |
+
"loss": 0.0119,
|
| 1340 |
+
"mean_token_accuracy": 0.9944700241088867,
|
| 1341 |
+
"num_tokens": 27582143.0,
|
| 1342 |
+
"step": 740
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"epoch": 0.2757216876387861,
|
| 1346 |
+
"grad_norm": 0.034784168004989624,
|
| 1347 |
+
"learning_rate": 4.218332255456131e-05,
|
| 1348 |
+
"loss": 0.0128,
|
| 1349 |
+
"mean_token_accuracy": 0.994387972354889,
|
| 1350 |
+
"num_tokens": 27769962.0,
|
| 1351 |
+
"step": 745
|
| 1352 |
+
},
|
| 1353 |
+
{
|
| 1354 |
+
"epoch": 0.27757216876387864,
|
| 1355 |
+
"grad_norm": 0.02214915119111538,
|
| 1356 |
+
"learning_rate": 4.2169212389289474e-05,
|
| 1357 |
+
"loss": 0.0118,
|
| 1358 |
+
"mean_token_accuracy": 0.994516122341156,
|
| 1359 |
+
"num_tokens": 27954489.0,
|
| 1360 |
+
"step": 750
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"epoch": 0.27942264988897114,
|
| 1364 |
+
"grad_norm": 0.019403742626309395,
|
| 1365 |
+
"learning_rate": 4.215495813107101e-05,
|
| 1366 |
+
"loss": 0.0117,
|
| 1367 |
+
"mean_token_accuracy": 0.9947906136512756,
|
| 1368 |
+
"num_tokens": 28146292.0,
|
| 1369 |
+
"step": 755
|
| 1370 |
+
},
|
| 1371 |
+
{
|
| 1372 |
+
"epoch": 0.28127313101406365,
|
| 1373 |
+
"grad_norm": 0.02483655884861946,
|
| 1374 |
+
"learning_rate": 4.214055991339368e-05,
|
| 1375 |
+
"loss": 0.0122,
|
| 1376 |
+
"mean_token_accuracy": 0.9943630814552307,
|
| 1377 |
+
"num_tokens": 28330741.0,
|
| 1378 |
+
"step": 760
|
| 1379 |
+
}
|
| 1380 |
+
],
|
| 1381 |
+
"logging_steps": 5,
|
| 1382 |
+
"max_steps": 5404,
|
| 1383 |
+
"num_input_tokens_seen": 0,
|
| 1384 |
+
"num_train_epochs": 2,
|
| 1385 |
+
"save_steps": 500,
|
| 1386 |
+
"stateful_callbacks": {
|
| 1387 |
+
"TrainerControl": {
|
| 1388 |
+
"args": {
|
| 1389 |
+
"should_epoch_stop": false,
|
| 1390 |
+
"should_evaluate": false,
|
| 1391 |
+
"should_log": false,
|
| 1392 |
+
"should_save": true,
|
| 1393 |
+
"should_training_stop": false
|
| 1394 |
+
},
|
| 1395 |
+
"attributes": {}
|
| 1396 |
+
}
|
| 1397 |
+
},
|
| 1398 |
+
"total_flos": 6.634430263784899e+17,
|
| 1399 |
+
"train_batch_size": 20,
|
| 1400 |
+
"trial_name": null,
|
| 1401 |
+
"trial_params": null
|
| 1402 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:188c17dc9f2b68af9384dff66e29440c7c1a2b437c09900b469c6097b14a9fd8
|
| 3 |
+
size 6545
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|