Instructions to use Gege24/r2cont-6f1d-memwrite with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/r2cont-6f1d-memwrite with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Gege24/clobber-ic-9770-mcts-merged") model = PeftModel.from_pretrained(base_model, "Gege24/r2cont-6f1d-memwrite") - Transformers
How to use Gege24/r2cont-6f1d-memwrite with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/r2cont-6f1d-memwrite") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Gege24/r2cont-6f1d-memwrite", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/r2cont-6f1d-memwrite with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/r2cont-6f1d-memwrite" # 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/r2cont-6f1d-memwrite", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/r2cont-6f1d-memwrite
- SGLang
How to use Gege24/r2cont-6f1d-memwrite 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/r2cont-6f1d-memwrite" \ --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/r2cont-6f1d-memwrite", "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/r2cont-6f1d-memwrite" \ --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/r2cont-6f1d-memwrite", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/r2cont-6f1d-memwrite with Docker Model Runner:
docker model run hf.co/Gege24/r2cont-6f1d-memwrite
memory-write winner-recipe R2 adapter (517 steps)
Browse files- .gitattributes +1 -0
- README.md +209 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- chat_template.jinja +54 -0
- loss.txt +1 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +207 -0
- trainer_state.json +961 -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: Gege24/clobber-ic-9770-mcts-merged
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Gege24--clobber-ic-9770-mcts-merged
|
| 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": "Gege24/clobber-ic-9770-mcts-merged",
|
| 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 |
+
"k_proj",
|
| 34 |
+
"gate_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"up_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:7ebb3cf0e6df159ca1e6827a217d626b15e2df9ee1edf21e56501d9a2deeec35
|
| 3 |
+
size 1291899160
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
loss.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
517,no_eval
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 131072,
|
| 203 |
+
"pad_token": "<|endoftext|>",
|
| 204 |
+
"split_special_tokens": false,
|
| 205 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 206 |
+
"unk_token": null
|
| 207 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,961 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.25455440669620877,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 517,
|
| 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.002461841457410143,
|
| 14 |
+
"grad_norm": 4.969754695892334,
|
| 15 |
+
"learning_rate": 4.302e-06,
|
| 16 |
+
"loss": 1.1189,
|
| 17 |
+
"mean_token_accuracy": 0.8113007307052612,
|
| 18 |
+
"num_tokens": 320493.0,
|
| 19 |
+
"step": 5
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"epoch": 0.004923682914820286,
|
| 23 |
+
"grad_norm": 1.6874388456344604,
|
| 24 |
+
"learning_rate": 9.6795e-06,
|
| 25 |
+
"loss": 0.86,
|
| 26 |
+
"mean_token_accuracy": 0.8318304777145386,
|
| 27 |
+
"num_tokens": 641636.0,
|
| 28 |
+
"step": 10
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"epoch": 0.007385524372230428,
|
| 32 |
+
"grad_norm": 1.024154782295227,
|
| 33 |
+
"learning_rate": 1.5056999999999998e-05,
|
| 34 |
+
"loss": 0.5203,
|
| 35 |
+
"mean_token_accuracy": 0.8795766830444336,
|
| 36 |
+
"num_tokens": 964317.0,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.009847365829640572,
|
| 41 |
+
"grad_norm": 0.7188010811805725,
|
| 42 |
+
"learning_rate": 2.04345e-05,
|
| 43 |
+
"loss": 0.2224,
|
| 44 |
+
"mean_token_accuracy": 0.9444798469543457,
|
| 45 |
+
"num_tokens": 1284810.0,
|
| 46 |
+
"step": 20
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.012309207287050714,
|
| 50 |
+
"grad_norm": 0.44151246547698975,
|
| 51 |
+
"learning_rate": 2.1509842516210667e-05,
|
| 52 |
+
"loss": 0.085,
|
| 53 |
+
"mean_token_accuracy": 0.9784384965896606,
|
| 54 |
+
"num_tokens": 1605399.0,
|
| 55 |
+
"step": 25
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.014771048744460856,
|
| 59 |
+
"grad_norm": 0.5774744749069214,
|
| 60 |
+
"learning_rate": 2.1509202748855685e-05,
|
| 61 |
+
"loss": 0.0344,
|
| 62 |
+
"mean_token_accuracy": 0.9897613763809204,
|
| 63 |
+
"num_tokens": 1926494.0,
|
| 64 |
+
"step": 30
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"epoch": 0.017232890201871,
|
| 68 |
+
"grad_norm": 0.18032197654247284,
|
| 69 |
+
"learning_rate": 2.1508070894201505e-05,
|
| 70 |
+
"loss": 0.026,
|
| 71 |
+
"mean_token_accuracy": 0.9919694185256958,
|
| 72 |
+
"num_tokens": 2247464.0,
|
| 73 |
+
"step": 35
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.019694731659281144,
|
| 77 |
+
"grad_norm": 0.13021060824394226,
|
| 78 |
+
"learning_rate": 2.1506447021304556e-05,
|
| 79 |
+
"loss": 0.026,
|
| 80 |
+
"mean_token_accuracy": 0.9920557975769043,
|
| 81 |
+
"num_tokens": 2569609.0,
|
| 82 |
+
"step": 40
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.022156573116691284,
|
| 86 |
+
"grad_norm": 0.09289778023958206,
|
| 87 |
+
"learning_rate": 2.150433122924014e-05,
|
| 88 |
+
"loss": 0.0284,
|
| 89 |
+
"mean_token_accuracy": 0.9913681268692016,
|
| 90 |
+
"num_tokens": 2890136.0,
|
| 91 |
+
"step": 45
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.024618414574101428,
|
| 95 |
+
"grad_norm": 0.11910147964954376,
|
| 96 |
+
"learning_rate": 2.1501723647096418e-05,
|
| 97 |
+
"loss": 0.0199,
|
| 98 |
+
"mean_token_accuracy": 0.9929254293441773,
|
| 99 |
+
"num_tokens": 3212967.0,
|
| 100 |
+
"step": 50
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.02708025603151157,
|
| 104 |
+
"grad_norm": 0.06892787665128708,
|
| 105 |
+
"learning_rate": 2.149862443396651e-05,
|
| 106 |
+
"loss": 0.02,
|
| 107 |
+
"mean_token_accuracy": 0.9933408498764038,
|
| 108 |
+
"num_tokens": 3535443.0,
|
| 109 |
+
"step": 55
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.029542097488921712,
|
| 113 |
+
"grad_norm": 0.06759732216596603,
|
| 114 |
+
"learning_rate": 2.1495033778938793e-05,
|
| 115 |
+
"loss": 0.0202,
|
| 116 |
+
"mean_token_accuracy": 0.9929208397865296,
|
| 117 |
+
"num_tokens": 3856507.0,
|
| 118 |
+
"step": 60
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.032003938946331856,
|
| 122 |
+
"grad_norm": 0.07114335149526596,
|
| 123 |
+
"learning_rate": 2.149095190108538e-05,
|
| 124 |
+
"loss": 0.0214,
|
| 125 |
+
"mean_token_accuracy": 0.9924069523811341,
|
| 126 |
+
"num_tokens": 4176799.0,
|
| 127 |
+
"step": 65
|
| 128 |
+
},
|
| 129 |
+
{
|
| 130 |
+
"epoch": 0.034465780403742,
|
| 131 |
+
"grad_norm": 0.06943695992231369,
|
| 132 |
+
"learning_rate": 2.1486379049448737e-05,
|
| 133 |
+
"loss": 0.0169,
|
| 134 |
+
"mean_token_accuracy": 0.993648087978363,
|
| 135 |
+
"num_tokens": 4499735.0,
|
| 136 |
+
"step": 70
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.03692762186115214,
|
| 140 |
+
"grad_norm": 0.0616086907684803,
|
| 141 |
+
"learning_rate": 2.1481315503026496e-05,
|
| 142 |
+
"loss": 0.0193,
|
| 143 |
+
"mean_token_accuracy": 0.9931790113449097,
|
| 144 |
+
"num_tokens": 4820981.0,
|
| 145 |
+
"step": 75
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.03938946331856229,
|
| 149 |
+
"grad_norm": 0.0513451024889946,
|
| 150 |
+
"learning_rate": 2.1475761570754427e-05,
|
| 151 |
+
"loss": 0.0207,
|
| 152 |
+
"mean_token_accuracy": 0.9926488041877747,
|
| 153 |
+
"num_tokens": 5141030.0,
|
| 154 |
+
"step": 80
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"epoch": 0.041851304775972424,
|
| 158 |
+
"grad_norm": 0.056912314146757126,
|
| 159 |
+
"learning_rate": 2.1469717591487602e-05,
|
| 160 |
+
"loss": 0.0207,
|
| 161 |
+
"mean_token_accuracy": 0.9930928468704223,
|
| 162 |
+
"num_tokens": 5463284.0,
|
| 163 |
+
"step": 85
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.04431314623338257,
|
| 167 |
+
"grad_norm": 0.07296790182590485,
|
| 168 |
+
"learning_rate": 2.1463183933979705e-05,
|
| 169 |
+
"loss": 0.015,
|
| 170 |
+
"mean_token_accuracy": 0.9941470623016357,
|
| 171 |
+
"num_tokens": 5785382.0,
|
| 172 |
+
"step": 90
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.04677498769079271,
|
| 176 |
+
"grad_norm": 0.06787711381912231,
|
| 177 |
+
"learning_rate": 2.1456160996860543e-05,
|
| 178 |
+
"loss": 0.0179,
|
| 179 |
+
"mean_token_accuracy": 0.9935230731964111,
|
| 180 |
+
"num_tokens": 6106054.0,
|
| 181 |
+
"step": 95
|
| 182 |
+
},
|
| 183 |
+
{
|
| 184 |
+
"epoch": 0.049236829148202856,
|
| 185 |
+
"grad_norm": 0.06585029512643814,
|
| 186 |
+
"learning_rate": 2.144864920861172e-05,
|
| 187 |
+
"loss": 0.0186,
|
| 188 |
+
"mean_token_accuracy": 0.9933484435081482,
|
| 189 |
+
"num_tokens": 6428795.0,
|
| 190 |
+
"step": 100
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.051698670605613,
|
| 194 |
+
"grad_norm": 0.06587713956832886,
|
| 195 |
+
"learning_rate": 2.144064902754051e-05,
|
| 196 |
+
"loss": 0.0185,
|
| 197 |
+
"mean_token_accuracy": 0.9930931210517884,
|
| 198 |
+
"num_tokens": 6750701.0,
|
| 199 |
+
"step": 105
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.05416051206302314,
|
| 203 |
+
"grad_norm": 0.07679057866334915,
|
| 204 |
+
"learning_rate": 2.1432160941751866e-05,
|
| 205 |
+
"loss": 0.0202,
|
| 206 |
+
"mean_token_accuracy": 0.9929586410522461,
|
| 207 |
+
"num_tokens": 7071691.0,
|
| 208 |
+
"step": 110
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.05662235352043329,
|
| 212 |
+
"grad_norm": 0.04670145362615585,
|
| 213 |
+
"learning_rate": 2.142318546911867e-05,
|
| 214 |
+
"loss": 0.0189,
|
| 215 |
+
"mean_token_accuracy": 0.9934035181999207,
|
| 216 |
+
"num_tokens": 7393074.0,
|
| 217 |
+
"step": 115
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"epoch": 0.059084194977843424,
|
| 221 |
+
"grad_norm": 0.06476707011461258,
|
| 222 |
+
"learning_rate": 2.1413723157250112e-05,
|
| 223 |
+
"loss": 0.0164,
|
| 224 |
+
"mean_token_accuracy": 0.993677806854248,
|
| 225 |
+
"num_tokens": 7715147.0,
|
| 226 |
+
"step": 120
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.06154603643525357,
|
| 230 |
+
"grad_norm": 0.051915861666202545,
|
| 231 |
+
"learning_rate": 2.1403774583458295e-05,
|
| 232 |
+
"loss": 0.0157,
|
| 233 |
+
"mean_token_accuracy": 0.9937990188598633,
|
| 234 |
+
"num_tokens": 8036756.0,
|
| 235 |
+
"step": 125
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.06400787789266371,
|
| 239 |
+
"grad_norm": 0.06622428447008133,
|
| 240 |
+
"learning_rate": 2.1393340354723012e-05,
|
| 241 |
+
"loss": 0.0172,
|
| 242 |
+
"mean_token_accuracy": 0.9937798023223877,
|
| 243 |
+
"num_tokens": 8357904.0,
|
| 244 |
+
"step": 130
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.06646971935007386,
|
| 248 |
+
"grad_norm": 0.048398587852716446,
|
| 249 |
+
"learning_rate": 2.13824211076547e-05,
|
| 250 |
+
"loss": 0.0169,
|
| 251 |
+
"mean_token_accuracy": 0.9936380386352539,
|
| 252 |
+
"num_tokens": 8679562.0,
|
| 253 |
+
"step": 135
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.068931560807484,
|
| 257 |
+
"grad_norm": 0.0736224353313446,
|
| 258 |
+
"learning_rate": 2.1371017508455625e-05,
|
| 259 |
+
"loss": 0.0188,
|
| 260 |
+
"mean_token_accuracy": 0.9932926297187805,
|
| 261 |
+
"num_tokens": 9001387.0,
|
| 262 |
+
"step": 140
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.07139340226489414,
|
| 266 |
+
"grad_norm": 0.047113846987485886,
|
| 267 |
+
"learning_rate": 2.1359130252879188e-05,
|
| 268 |
+
"loss": 0.0157,
|
| 269 |
+
"mean_token_accuracy": 0.9938287138938904,
|
| 270 |
+
"num_tokens": 9323154.0,
|
| 271 |
+
"step": 145
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.07385524372230429,
|
| 275 |
+
"grad_norm": 0.06331256777048111,
|
| 276 |
+
"learning_rate": 2.1346760066187538e-05,
|
| 277 |
+
"loss": 0.0189,
|
| 278 |
+
"mean_token_accuracy": 0.9930492639541626,
|
| 279 |
+
"num_tokens": 9644568.0,
|
| 280 |
+
"step": 150
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.07631708517971443,
|
| 284 |
+
"grad_norm": 0.06080303713679314,
|
| 285 |
+
"learning_rate": 2.1333907703107276e-05,
|
| 286 |
+
"loss": 0.0225,
|
| 287 |
+
"mean_token_accuracy": 0.9922333717346191,
|
| 288 |
+
"num_tokens": 9964653.0,
|
| 289 |
+
"step": 155
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.07877892663712457,
|
| 293 |
+
"grad_norm": 0.07311772555112839,
|
| 294 |
+
"learning_rate": 2.1320573947783423e-05,
|
| 295 |
+
"loss": 0.0184,
|
| 296 |
+
"mean_token_accuracy": 0.9932848572731018,
|
| 297 |
+
"num_tokens": 10285925.0,
|
| 298 |
+
"step": 160
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"epoch": 0.08124076809453472,
|
| 302 |
+
"grad_norm": 0.1281968057155609,
|
| 303 |
+
"learning_rate": 2.1306759613731585e-05,
|
| 304 |
+
"loss": 0.0178,
|
| 305 |
+
"mean_token_accuracy": 0.9935338497161865,
|
| 306 |
+
"num_tokens": 10606433.0,
|
| 307 |
+
"step": 165
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.08370260955194485,
|
| 311 |
+
"grad_norm": 0.03950123116374016,
|
| 312 |
+
"learning_rate": 2.1292465543788306e-05,
|
| 313 |
+
"loss": 0.0165,
|
| 314 |
+
"mean_token_accuracy": 0.9936023473739624,
|
| 315 |
+
"num_tokens": 10926653.0,
|
| 316 |
+
"step": 170
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"epoch": 0.08616445100935499,
|
| 320 |
+
"grad_norm": 0.074995256960392,
|
| 321 |
+
"learning_rate": 2.127769261005965e-05,
|
| 322 |
+
"loss": 0.0197,
|
| 323 |
+
"mean_token_accuracy": 0.993098521232605,
|
| 324 |
+
"num_tokens": 11247504.0,
|
| 325 |
+
"step": 175
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.08862629246676514,
|
| 329 |
+
"grad_norm": 0.054995279759168625,
|
| 330 |
+
"learning_rate": 2.1262441713867998e-05,
|
| 331 |
+
"loss": 0.0169,
|
| 332 |
+
"mean_token_accuracy": 0.993760859966278,
|
| 333 |
+
"num_tokens": 11568063.0,
|
| 334 |
+
"step": 180
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.09108813392417528,
|
| 338 |
+
"grad_norm": 0.053398437798023224,
|
| 339 |
+
"learning_rate": 2.1246713785697052e-05,
|
| 340 |
+
"loss": 0.0169,
|
| 341 |
+
"mean_token_accuracy": 0.9934692978858948,
|
| 342 |
+
"num_tokens": 11888599.0,
|
| 343 |
+
"step": 185
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.09354997538158542,
|
| 347 |
+
"grad_norm": 0.07271428406238556,
|
| 348 |
+
"learning_rate": 2.1230509785135057e-05,
|
| 349 |
+
"loss": 0.0181,
|
| 350 |
+
"mean_token_accuracy": 0.9933955669403076,
|
| 351 |
+
"num_tokens": 12211086.0,
|
| 352 |
+
"step": 190
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.09601181683899557,
|
| 356 |
+
"grad_norm": 0.07579043507575989,
|
| 357 |
+
"learning_rate": 2.1213830700816276e-05,
|
| 358 |
+
"loss": 0.0196,
|
| 359 |
+
"mean_token_accuracy": 0.9933238983154297,
|
| 360 |
+
"num_tokens": 12532840.0,
|
| 361 |
+
"step": 195
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"epoch": 0.09847365829640571,
|
| 365 |
+
"grad_norm": 0.05194873362779617,
|
| 366 |
+
"learning_rate": 2.1196677550360644e-05,
|
| 367 |
+
"loss": 0.0172,
|
| 368 |
+
"mean_token_accuracy": 0.993663489818573,
|
| 369 |
+
"num_tokens": 12854971.0,
|
| 370 |
+
"step": 200
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 0.10093549975381585,
|
| 374 |
+
"grad_norm": 0.04237228259444237,
|
| 375 |
+
"learning_rate": 2.1179051380311706e-05,
|
| 376 |
+
"loss": 0.0185,
|
| 377 |
+
"mean_token_accuracy": 0.9933023810386657,
|
| 378 |
+
"num_tokens": 13176310.0,
|
| 379 |
+
"step": 205
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.103397341211226,
|
| 383 |
+
"grad_norm": 0.05479801818728447,
|
| 384 |
+
"learning_rate": 2.116095326607275e-05,
|
| 385 |
+
"loss": 0.019,
|
| 386 |
+
"mean_token_accuracy": 0.9933096051216126,
|
| 387 |
+
"num_tokens": 13497271.0,
|
| 388 |
+
"step": 210
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.10585918266863614,
|
| 392 |
+
"grad_norm": 0.050505638122558594,
|
| 393 |
+
"learning_rate": 2.11423843118412e-05,
|
| 394 |
+
"loss": 0.0193,
|
| 395 |
+
"mean_token_accuracy": 0.9930040121078492,
|
| 396 |
+
"num_tokens": 13818732.0,
|
| 397 |
+
"step": 215
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"epoch": 0.10832102412604629,
|
| 401 |
+
"grad_norm": 0.04875461012125015,
|
| 402 |
+
"learning_rate": 2.1123345650541254e-05,
|
| 403 |
+
"loss": 0.015,
|
| 404 |
+
"mean_token_accuracy": 0.9943194031715393,
|
| 405 |
+
"num_tokens": 14140155.0,
|
| 406 |
+
"step": 220
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"epoch": 0.11078286558345643,
|
| 410 |
+
"grad_norm": 0.04343048110604286,
|
| 411 |
+
"learning_rate": 2.110383844375474e-05,
|
| 412 |
+
"loss": 0.0173,
|
| 413 |
+
"mean_token_accuracy": 0.9935325264930726,
|
| 414 |
+
"num_tokens": 14461326.0,
|
| 415 |
+
"step": 225
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.11324470704086657,
|
| 419 |
+
"grad_norm": 0.05743631348013878,
|
| 420 |
+
"learning_rate": 2.1083863881650274e-05,
|
| 421 |
+
"loss": 0.017,
|
| 422 |
+
"mean_token_accuracy": 0.9938044786453247,
|
| 423 |
+
"num_tokens": 14781958.0,
|
| 424 |
+
"step": 230
|
| 425 |
+
},
|
| 426 |
+
{
|
| 427 |
+
"epoch": 0.11570654849827672,
|
| 428 |
+
"grad_norm": 0.06002819910645485,
|
| 429 |
+
"learning_rate": 2.1063423182910628e-05,
|
| 430 |
+
"loss": 0.0179,
|
| 431 |
+
"mean_token_accuracy": 0.9935547947883606,
|
| 432 |
+
"num_tokens": 15103260.0,
|
| 433 |
+
"step": 235
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"epoch": 0.11816838995568685,
|
| 437 |
+
"grad_norm": 0.04813234880566597,
|
| 438 |
+
"learning_rate": 2.1042517594658383e-05,
|
| 439 |
+
"loss": 0.0178,
|
| 440 |
+
"mean_token_accuracy": 0.9934481143951416,
|
| 441 |
+
"num_tokens": 15424845.0,
|
| 442 |
+
"step": 240
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.12063023141309699,
|
| 446 |
+
"grad_norm": 0.04317139834165573,
|
| 447 |
+
"learning_rate": 2.1021148392379833e-05,
|
| 448 |
+
"loss": 0.0167,
|
| 449 |
+
"mean_token_accuracy": 0.9936479210853577,
|
| 450 |
+
"num_tokens": 15745873.0,
|
| 451 |
+
"step": 245
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.12309207287050714,
|
| 455 |
+
"grad_norm": 0.04026172310113907,
|
| 456 |
+
"learning_rate": 2.0999316879847178e-05,
|
| 457 |
+
"loss": 0.0144,
|
| 458 |
+
"mean_token_accuracy": 0.9941782236099244,
|
| 459 |
+
"num_tokens": 16068592.0,
|
| 460 |
+
"step": 250
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 0.1255539143279173,
|
| 464 |
+
"grad_norm": 0.03913912549614906,
|
| 465 |
+
"learning_rate": 2.097702438903896e-05,
|
| 466 |
+
"loss": 0.0165,
|
| 467 |
+
"mean_token_accuracy": 0.9937353253364563,
|
| 468 |
+
"num_tokens": 16389359.0,
|
| 469 |
+
"step": 255
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"epoch": 0.12801575578532742,
|
| 473 |
+
"grad_norm": 0.04398415982723236,
|
| 474 |
+
"learning_rate": 2.095427228005882e-05,
|
| 475 |
+
"loss": 0.0141,
|
| 476 |
+
"mean_token_accuracy": 0.9943455338478089,
|
| 477 |
+
"num_tokens": 16712502.0,
|
| 478 |
+
"step": 260
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 0.13047759724273758,
|
| 482 |
+
"grad_norm": 0.03654300794005394,
|
| 483 |
+
"learning_rate": 2.093106194105249e-05,
|
| 484 |
+
"loss": 0.0155,
|
| 485 |
+
"mean_token_accuracy": 0.9941610932350159,
|
| 486 |
+
"num_tokens": 17032993.0,
|
| 487 |
+
"step": 265
|
| 488 |
+
},
|
| 489 |
+
{
|
| 490 |
+
"epoch": 0.1329394387001477,
|
| 491 |
+
"grad_norm": 0.04314443841576576,
|
| 492 |
+
"learning_rate": 2.090739478812312e-05,
|
| 493 |
+
"loss": 0.0209,
|
| 494 |
+
"mean_token_accuracy": 0.9925150752067566,
|
| 495 |
+
"num_tokens": 17354397.0,
|
| 496 |
+
"step": 270
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"epoch": 0.13540128015755784,
|
| 500 |
+
"grad_norm": 0.039179477840662,
|
| 501 |
+
"learning_rate": 2.0883272265244868e-05,
|
| 502 |
+
"loss": 0.0158,
|
| 503 |
+
"mean_token_accuracy": 0.993960165977478,
|
| 504 |
+
"num_tokens": 17676053.0,
|
| 505 |
+
"step": 275
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.137863121614968,
|
| 509 |
+
"grad_norm": 0.05969119071960449,
|
| 510 |
+
"learning_rate": 2.0858695844174815e-05,
|
| 511 |
+
"loss": 0.0156,
|
| 512 |
+
"mean_token_accuracy": 0.9940330982208252,
|
| 513 |
+
"num_tokens": 17997892.0,
|
| 514 |
+
"step": 280
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.14032496307237813,
|
| 518 |
+
"grad_norm": 0.034701548516750336,
|
| 519 |
+
"learning_rate": 2.083366702436315e-05,
|
| 520 |
+
"loss": 0.0162,
|
| 521 |
+
"mean_token_accuracy": 0.99384845495224,
|
| 522 |
+
"num_tokens": 18320416.0,
|
| 523 |
+
"step": 285
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"epoch": 0.14278680452978829,
|
| 527 |
+
"grad_norm": 0.03629715368151665,
|
| 528 |
+
"learning_rate": 2.080818733286169e-05,
|
| 529 |
+
"loss": 0.0136,
|
| 530 |
+
"mean_token_accuracy": 0.9944872379302978,
|
| 531 |
+
"num_tokens": 18641774.0,
|
| 532 |
+
"step": 290
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 0.14524864598719842,
|
| 536 |
+
"grad_norm": 0.03510307893157005,
|
| 537 |
+
"learning_rate": 2.078225832423074e-05,
|
| 538 |
+
"loss": 0.0137,
|
| 539 |
+
"mean_token_accuracy": 0.9944174408912658,
|
| 540 |
+
"num_tokens": 18963943.0,
|
| 541 |
+
"step": 295
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 0.14771048744460857,
|
| 545 |
+
"grad_norm": 0.05658989027142525,
|
| 546 |
+
"learning_rate": 2.07558815804442e-05,
|
| 547 |
+
"loss": 0.0156,
|
| 548 |
+
"mean_token_accuracy": 0.9939489245414734,
|
| 549 |
+
"num_tokens": 19284670.0,
|
| 550 |
+
"step": 300
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 0.1501723289020187,
|
| 554 |
+
"grad_norm": 0.052170414477586746,
|
| 555 |
+
"learning_rate": 2.072905871079309e-05,
|
| 556 |
+
"loss": 0.0146,
|
| 557 |
+
"mean_token_accuracy": 0.9942007660865784,
|
| 558 |
+
"num_tokens": 19605830.0,
|
| 559 |
+
"step": 305
|
| 560 |
+
},
|
| 561 |
+
{
|
| 562 |
+
"epoch": 0.15263417035942886,
|
| 563 |
+
"grad_norm": 0.04669521376490593,
|
| 564 |
+
"learning_rate": 2.0701791351787333e-05,
|
| 565 |
+
"loss": 0.0145,
|
| 566 |
+
"mean_token_accuracy": 0.9942674160003662,
|
| 567 |
+
"num_tokens": 19927683.0,
|
| 568 |
+
"step": 310
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 0.155096011816839,
|
| 572 |
+
"grad_norm": 0.045594099909067154,
|
| 573 |
+
"learning_rate": 2.0674081167055918e-05,
|
| 574 |
+
"loss": 0.022,
|
| 575 |
+
"mean_token_accuracy": 0.9924212217330932,
|
| 576 |
+
"num_tokens": 20249155.0,
|
| 577 |
+
"step": 315
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.15755785327424915,
|
| 581 |
+
"grad_norm": 0.042525216937065125,
|
| 582 |
+
"learning_rate": 2.064592984724541e-05,
|
| 583 |
+
"loss": 0.0141,
|
| 584 |
+
"mean_token_accuracy": 0.9942982792854309,
|
| 585 |
+
"num_tokens": 20570187.0,
|
| 586 |
+
"step": 320
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"epoch": 0.16001969473165928,
|
| 590 |
+
"grad_norm": 0.04177013039588928,
|
| 591 |
+
"learning_rate": 2.0617339109916796e-05,
|
| 592 |
+
"loss": 0.0158,
|
| 593 |
+
"mean_token_accuracy": 0.9939341902732849,
|
| 594 |
+
"num_tokens": 20890900.0,
|
| 595 |
+
"step": 325
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 0.16248153618906944,
|
| 599 |
+
"grad_norm": 0.043914180248975754,
|
| 600 |
+
"learning_rate": 2.058831069944068e-05,
|
| 601 |
+
"loss": 0.0159,
|
| 602 |
+
"mean_token_accuracy": 0.994042980670929,
|
| 603 |
+
"num_tokens": 21211005.0,
|
| 604 |
+
"step": 330
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 0.16494337764647957,
|
| 608 |
+
"grad_norm": 0.038002047687768936,
|
| 609 |
+
"learning_rate": 2.0558846386890867e-05,
|
| 610 |
+
"loss": 0.0146,
|
| 611 |
+
"mean_token_accuracy": 0.9943417191505433,
|
| 612 |
+
"num_tokens": 21532493.0,
|
| 613 |
+
"step": 335
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"epoch": 0.1674052191038897,
|
| 617 |
+
"grad_norm": 0.03630073741078377,
|
| 618 |
+
"learning_rate": 2.0528947969936308e-05,
|
| 619 |
+
"loss": 0.0141,
|
| 620 |
+
"mean_token_accuracy": 0.9944631576538085,
|
| 621 |
+
"num_tokens": 21854914.0,
|
| 622 |
+
"step": 340
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"epoch": 0.16986706056129985,
|
| 626 |
+
"grad_norm": 0.051170364022254944,
|
| 627 |
+
"learning_rate": 2.0498617272731426e-05,
|
| 628 |
+
"loss": 0.0168,
|
| 629 |
+
"mean_token_accuracy": 0.9939067363739014,
|
| 630 |
+
"num_tokens": 22176913.0,
|
| 631 |
+
"step": 345
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"epoch": 0.17232890201870998,
|
| 635 |
+
"grad_norm": 0.05258825421333313,
|
| 636 |
+
"learning_rate": 2.0467856145804803e-05,
|
| 637 |
+
"loss": 0.0173,
|
| 638 |
+
"mean_token_accuracy": 0.9933236837387085,
|
| 639 |
+
"num_tokens": 22497434.0,
|
| 640 |
+
"step": 350
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.17479074347612014,
|
| 644 |
+
"grad_norm": 0.06009254977107048,
|
| 645 |
+
"learning_rate": 2.0436666465946293e-05,
|
| 646 |
+
"loss": 0.0159,
|
| 647 |
+
"mean_token_accuracy": 0.9938840627670288,
|
| 648 |
+
"num_tokens": 22817721.0,
|
| 649 |
+
"step": 355
|
| 650 |
+
},
|
| 651 |
+
{
|
| 652 |
+
"epoch": 0.17725258493353027,
|
| 653 |
+
"grad_norm": 0.04241907596588135,
|
| 654 |
+
"learning_rate": 2.0405050136092498e-05,
|
| 655 |
+
"loss": 0.0143,
|
| 656 |
+
"mean_token_accuracy": 0.9944479584693908,
|
| 657 |
+
"num_tokens": 23139931.0,
|
| 658 |
+
"step": 360
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"epoch": 0.17971442639094043,
|
| 662 |
+
"grad_norm": 0.05310116335749626,
|
| 663 |
+
"learning_rate": 2.03730090852107e-05,
|
| 664 |
+
"loss": 0.0165,
|
| 665 |
+
"mean_token_accuracy": 0.9938408613204956,
|
| 666 |
+
"num_tokens": 23462350.0,
|
| 667 |
+
"step": 365
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 0.18217626784835056,
|
| 671 |
+
"grad_norm": 0.05389350652694702,
|
| 672 |
+
"learning_rate": 2.034054526818113e-05,
|
| 673 |
+
"loss": 0.0175,
|
| 674 |
+
"mean_token_accuracy": 0.9935489892959595,
|
| 675 |
+
"num_tokens": 23783401.0,
|
| 676 |
+
"step": 370
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 0.18463810930576072,
|
| 680 |
+
"grad_norm": 0.054103367030620575,
|
| 681 |
+
"learning_rate": 2.0307660665677727e-05,
|
| 682 |
+
"loss": 0.0158,
|
| 683 |
+
"mean_token_accuracy": 0.9939422011375427,
|
| 684 |
+
"num_tokens": 24104565.0,
|
| 685 |
+
"step": 375
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 0.18709995076317085,
|
| 689 |
+
"grad_norm": 0.04009604454040527,
|
| 690 |
+
"learning_rate": 2.027435728404728e-05,
|
| 691 |
+
"loss": 0.0156,
|
| 692 |
+
"mean_token_accuracy": 0.9941097736358643,
|
| 693 |
+
"num_tokens": 24425664.0,
|
| 694 |
+
"step": 380
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"epoch": 0.189561792220581,
|
| 698 |
+
"grad_norm": 0.04380296170711517,
|
| 699 |
+
"learning_rate": 2.0240637155187022e-05,
|
| 700 |
+
"loss": 0.0152,
|
| 701 |
+
"mean_token_accuracy": 0.9941174745559692,
|
| 702 |
+
"num_tokens": 24748557.0,
|
| 703 |
+
"step": 385
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.19202363367799113,
|
| 707 |
+
"grad_norm": 0.032586026936769485,
|
| 708 |
+
"learning_rate": 2.0206502336420666e-05,
|
| 709 |
+
"loss": 0.0135,
|
| 710 |
+
"mean_token_accuracy": 0.9946724891662597,
|
| 711 |
+
"num_tokens": 25069808.0,
|
| 712 |
+
"step": 390
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 0.1944854751354013,
|
| 716 |
+
"grad_norm": 0.06130707263946533,
|
| 717 |
+
"learning_rate": 2.0171954910372855e-05,
|
| 718 |
+
"loss": 0.0197,
|
| 719 |
+
"mean_token_accuracy": 0.9931009531021118,
|
| 720 |
+
"num_tokens": 25390913.0,
|
| 721 |
+
"step": 395
|
| 722 |
+
},
|
| 723 |
+
{
|
| 724 |
+
"epoch": 0.19694731659281142,
|
| 725 |
+
"grad_norm": 0.044839657843112946,
|
| 726 |
+
"learning_rate": 2.0136996984842144e-05,
|
| 727 |
+
"loss": 0.0156,
|
| 728 |
+
"mean_token_accuracy": 0.9942690134048462,
|
| 729 |
+
"num_tokens": 25711590.0,
|
| 730 |
+
"step": 400
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 0.19940915805022155,
|
| 734 |
+
"grad_norm": 0.03433138132095337,
|
| 735 |
+
"learning_rate": 2.0101630692672366e-05,
|
| 736 |
+
"loss": 0.0134,
|
| 737 |
+
"mean_token_accuracy": 0.9945015668869018,
|
| 738 |
+
"num_tokens": 26033049.0,
|
| 739 |
+
"step": 405
|
| 740 |
+
},
|
| 741 |
+
{
|
| 742 |
+
"epoch": 0.2018709995076317,
|
| 743 |
+
"grad_norm": 0.06145159527659416,
|
| 744 |
+
"learning_rate": 2.006585819162251e-05,
|
| 745 |
+
"loss": 0.0161,
|
| 746 |
+
"mean_token_accuracy": 0.9938944458961487,
|
| 747 |
+
"num_tokens": 26355422.0,
|
| 748 |
+
"step": 410
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"epoch": 0.20433284096504184,
|
| 752 |
+
"grad_norm": 0.046625472605228424,
|
| 753 |
+
"learning_rate": 2.002968166423509e-05,
|
| 754 |
+
"loss": 0.0145,
|
| 755 |
+
"mean_token_accuracy": 0.9942839503288269,
|
| 756 |
+
"num_tokens": 26676082.0,
|
| 757 |
+
"step": 415
|
| 758 |
+
},
|
| 759 |
+
{
|
| 760 |
+
"epoch": 0.206794682422452,
|
| 761 |
+
"grad_norm": 0.03417025879025459,
|
| 762 |
+
"learning_rate": 1.999310331770294e-05,
|
| 763 |
+
"loss": 0.0138,
|
| 764 |
+
"mean_token_accuracy": 0.9944490194320679,
|
| 765 |
+
"num_tokens": 26997020.0,
|
| 766 |
+
"step": 420
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.20925652387986213,
|
| 770 |
+
"grad_norm": 0.04904766008257866,
|
| 771 |
+
"learning_rate": 1.9956125383734614e-05,
|
| 772 |
+
"loss": 0.017,
|
| 773 |
+
"mean_token_accuracy": 0.9935599088668823,
|
| 774 |
+
"num_tokens": 27317984.0,
|
| 775 |
+
"step": 425
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 0.21171836533727229,
|
| 779 |
+
"grad_norm": 0.03379844129085541,
|
| 780 |
+
"learning_rate": 1.9918750118418164e-05,
|
| 781 |
+
"loss": 0.0149,
|
| 782 |
+
"mean_token_accuracy": 0.9941614151000977,
|
| 783 |
+
"num_tokens": 27638796.0,
|
| 784 |
+
"step": 430
|
| 785 |
+
},
|
| 786 |
+
{
|
| 787 |
+
"epoch": 0.21418020679468242,
|
| 788 |
+
"grad_norm": 0.03055359609425068,
|
| 789 |
+
"learning_rate": 1.988097980208353e-05,
|
| 790 |
+
"loss": 0.0147,
|
| 791 |
+
"mean_token_accuracy": 0.9942783713340759,
|
| 792 |
+
"num_tokens": 27960939.0,
|
| 793 |
+
"step": 435
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 0.21664204825209257,
|
| 797 |
+
"grad_norm": 0.03959130495786667,
|
| 798 |
+
"learning_rate": 1.98428167391634e-05,
|
| 799 |
+
"loss": 0.0139,
|
| 800 |
+
"mean_token_accuracy": 0.9945441961288453,
|
| 801 |
+
"num_tokens": 28281371.0,
|
| 802 |
+
"step": 440
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"epoch": 0.2191038897095027,
|
| 806 |
+
"grad_norm": 0.034778300672769547,
|
| 807 |
+
"learning_rate": 1.980426325805261e-05,
|
| 808 |
+
"loss": 0.0173,
|
| 809 |
+
"mean_token_accuracy": 0.9936829090118409,
|
| 810 |
+
"num_tokens": 28602755.0,
|
| 811 |
+
"step": 445
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 0.22156573116691286,
|
| 815 |
+
"grad_norm": 0.054818179458379745,
|
| 816 |
+
"learning_rate": 1.97653217109661e-05,
|
| 817 |
+
"loss": 0.0158,
|
| 818 |
+
"mean_token_accuracy": 0.9938953042030334,
|
| 819 |
+
"num_tokens": 28924168.0,
|
| 820 |
+
"step": 450
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"epoch": 0.224027572624323,
|
| 824 |
+
"grad_norm": 0.030057087540626526,
|
| 825 |
+
"learning_rate": 1.9725994473795378e-05,
|
| 826 |
+
"loss": 0.0148,
|
| 827 |
+
"mean_token_accuracy": 0.9941797971725463,
|
| 828 |
+
"num_tokens": 29246171.0,
|
| 829 |
+
"step": 455
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.22648941408173315,
|
| 833 |
+
"grad_norm": 0.05861424282193184,
|
| 834 |
+
"learning_rate": 1.968628394596358e-05,
|
| 835 |
+
"loss": 0.0144,
|
| 836 |
+
"mean_token_accuracy": 0.9942707657814026,
|
| 837 |
+
"num_tokens": 29569027.0,
|
| 838 |
+
"step": 460
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"epoch": 0.22895125553914328,
|
| 842 |
+
"grad_norm": 0.03463579714298248,
|
| 843 |
+
"learning_rate": 1.9646192550279074e-05,
|
| 844 |
+
"loss": 0.0148,
|
| 845 |
+
"mean_token_accuracy": 0.9943474292755127,
|
| 846 |
+
"num_tokens": 29890638.0,
|
| 847 |
+
"step": 465
|
| 848 |
+
},
|
| 849 |
+
{
|
| 850 |
+
"epoch": 0.23141309699655344,
|
| 851 |
+
"grad_norm": 0.03462537005543709,
|
| 852 |
+
"learning_rate": 1.9605722732787628e-05,
|
| 853 |
+
"loss": 0.014,
|
| 854 |
+
"mean_token_accuracy": 0.9945291399955749,
|
| 855 |
+
"num_tokens": 30212106.0,
|
| 856 |
+
"step": 470
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"epoch": 0.23387493845396357,
|
| 860 |
+
"grad_norm": 0.03469887748360634,
|
| 861 |
+
"learning_rate": 1.9564876962623197e-05,
|
| 862 |
+
"loss": 0.0167,
|
| 863 |
+
"mean_token_accuracy": 0.9939306259155274,
|
| 864 |
+
"num_tokens": 30534173.0,
|
| 865 |
+
"step": 475
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 0.2363367799113737,
|
| 869 |
+
"grad_norm": 0.03356148675084114,
|
| 870 |
+
"learning_rate": 1.952365773185726e-05,
|
| 871 |
+
"loss": 0.0179,
|
| 872 |
+
"mean_token_accuracy": 0.9932782292366028,
|
| 873 |
+
"num_tokens": 30855988.0,
|
| 874 |
+
"step": 480
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"epoch": 0.23879862136878385,
|
| 878 |
+
"grad_norm": 0.05688195675611496,
|
| 879 |
+
"learning_rate": 1.9482067555346758e-05,
|
| 880 |
+
"loss": 0.0164,
|
| 881 |
+
"mean_token_accuracy": 0.9938588380813599,
|
| 882 |
+
"num_tokens": 31176045.0,
|
| 883 |
+
"step": 485
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"epoch": 0.24126046282619398,
|
| 887 |
+
"grad_norm": 0.03223969042301178,
|
| 888 |
+
"learning_rate": 1.94401089705807e-05,
|
| 889 |
+
"loss": 0.0172,
|
| 890 |
+
"mean_token_accuracy": 0.9935418725013733,
|
| 891 |
+
"num_tokens": 31497673.0,
|
| 892 |
+
"step": 490
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.24372230428360414,
|
| 896 |
+
"grad_norm": 0.027766678482294083,
|
| 897 |
+
"learning_rate": 1.9397784537525315e-05,
|
| 898 |
+
"loss": 0.0153,
|
| 899 |
+
"mean_token_accuracy": 0.9940999031066895,
|
| 900 |
+
"num_tokens": 31818418.0,
|
| 901 |
+
"step": 495
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 0.24618414574101427,
|
| 905 |
+
"grad_norm": 0.03331609442830086,
|
| 906 |
+
"learning_rate": 1.935509683846787e-05,
|
| 907 |
+
"loss": 0.0143,
|
| 908 |
+
"mean_token_accuracy": 0.9943779587745667,
|
| 909 |
+
"num_tokens": 32140371.0,
|
| 910 |
+
"step": 500
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 0.24864598719842443,
|
| 914 |
+
"grad_norm": 0.052040133625268936,
|
| 915 |
+
"learning_rate": 1.9312048477859128e-05,
|
| 916 |
+
"loss": 0.0159,
|
| 917 |
+
"mean_token_accuracy": 0.9938185095787049,
|
| 918 |
+
"num_tokens": 32462318.0,
|
| 919 |
+
"step": 505
|
| 920 |
+
},
|
| 921 |
+
{
|
| 922 |
+
"epoch": 0.2511078286558346,
|
| 923 |
+
"grad_norm": 0.029004910960793495,
|
| 924 |
+
"learning_rate": 1.9268642082154432e-05,
|
| 925 |
+
"loss": 0.0145,
|
| 926 |
+
"mean_token_accuracy": 0.9943286895751953,
|
| 927 |
+
"num_tokens": 32783640.0,
|
| 928 |
+
"step": 510
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"epoch": 0.2535696701132447,
|
| 932 |
+
"grad_norm": 0.03675747662782669,
|
| 933 |
+
"learning_rate": 1.9224880299653475e-05,
|
| 934 |
+
"loss": 0.0161,
|
| 935 |
+
"mean_token_accuracy": 0.9940426826477051,
|
| 936 |
+
"num_tokens": 33104542.0,
|
| 937 |
+
"step": 515
|
| 938 |
+
}
|
| 939 |
+
],
|
| 940 |
+
"logging_steps": 5,
|
| 941 |
+
"max_steps": 2031,
|
| 942 |
+
"num_input_tokens_seen": 0,
|
| 943 |
+
"num_train_epochs": 1,
|
| 944 |
+
"save_steps": 500,
|
| 945 |
+
"stateful_callbacks": {
|
| 946 |
+
"TrainerControl": {
|
| 947 |
+
"args": {
|
| 948 |
+
"should_epoch_stop": false,
|
| 949 |
+
"should_evaluate": false,
|
| 950 |
+
"should_log": false,
|
| 951 |
+
"should_save": true,
|
| 952 |
+
"should_training_stop": false
|
| 953 |
+
},
|
| 954 |
+
"attributes": {}
|
| 955 |
+
}
|
| 956 |
+
},
|
| 957 |
+
"total_flos": 1.4742460103760282e+18,
|
| 958 |
+
"train_batch_size": 16,
|
| 959 |
+
"trial_name": null,
|
| 960 |
+
"trial_params": null
|
| 961 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b656f14e8ef686a1b60adc4e8dfe10523fb124598535fbcba18f0e39082203a
|
| 3 |
+
size 6609
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|