Instructions to use Jordansky/dethrone-r2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Jordansky/dethrone-r2 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Jordansky/dethrone-r1") model = PeftModel.from_pretrained(base_model, "Jordansky/dethrone-r2") - Transformers
How to use Jordansky/dethrone-r2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Jordansky/dethrone-r2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Jordansky/dethrone-r2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jordansky/dethrone-r2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jordansky/dethrone-r2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jordansky/dethrone-r2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jordansky/dethrone-r2
- SGLang
How to use Jordansky/dethrone-r2 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 "Jordansky/dethrone-r2" \ --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": "Jordansky/dethrone-r2", "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 "Jordansky/dethrone-r2" \ --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": "Jordansky/dethrone-r2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Jordansky/dethrone-r2 with Docker Model Runner:
docker model run hf.co/Jordansky/dethrone-r2
Upload task output dethrone-r2
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 +16 -0
- tokenizer.json +3 -0
- tokenizer_config.json +194 -0
- trainer_state.json +934 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Jordansky/dethrone-r1
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/cache/models/Jordansky--dethrone-r1
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Jordansky/dethrone-r1",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 512,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.1,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 128,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"up_proj",
|
| 34 |
+
"q_proj",
|
| 35 |
+
"k_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"o_proj",
|
| 38 |
+
"gate_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:d8985cb2f09b19ba370a8708c2cc48c73329e2ffea594aaec049aafc157ef1f3
|
| 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 |
+
900,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,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"eos_token": {
|
| 3 |
+
"content": "<|im_end|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"pad_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
}
|
| 16 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,194 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"151643": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"151644": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"151645": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"151646": {
|
| 29 |
+
"content": "<|object_ref_start|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"151647": {
|
| 37 |
+
"content": "<|object_ref_end|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"151648": {
|
| 45 |
+
"content": "<|box_start|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"151649": {
|
| 53 |
+
"content": "<|box_end|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"151650": {
|
| 61 |
+
"content": "<|quad_start|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"151651": {
|
| 69 |
+
"content": "<|quad_end|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"151652": {
|
| 77 |
+
"content": "<|vision_start|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"151653": {
|
| 85 |
+
"content": "<|vision_end|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"151654": {
|
| 93 |
+
"content": "<|vision_pad|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"151655": {
|
| 101 |
+
"content": "<|image_pad|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"151656": {
|
| 109 |
+
"content": "<|video_pad|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"151657": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"151658": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"151659": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"151660": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"151661": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"151662": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"151663": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"151664": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
"backend": "tokenizers",
|
| 182 |
+
"bos_token": null,
|
| 183 |
+
"clean_up_tokenization_spaces": false,
|
| 184 |
+
"eos_token": "<|im_end|>",
|
| 185 |
+
"errors": "replace",
|
| 186 |
+
"extra_special_tokens": {},
|
| 187 |
+
"is_local": true,
|
| 188 |
+
"local_files_only": false,
|
| 189 |
+
"model_max_length": 131072,
|
| 190 |
+
"pad_token": "<|endoftext|>",
|
| 191 |
+
"split_special_tokens": false,
|
| 192 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 193 |
+
"unk_token": null
|
| 194 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,934 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.435754189944134,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 900,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 0.7872453421354294,
|
| 14 |
+
"epoch": 0.01596169193934557,
|
| 15 |
+
"grad_norm": 3.080909252166748,
|
| 16 |
+
"learning_rate": 1.1062285714285713e-05,
|
| 17 |
+
"loss": 0.4824,
|
| 18 |
+
"mean_token_accuracy": 0.8958534836769104,
|
| 19 |
+
"num_tokens": 622336.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.9108860075473786,
|
| 24 |
+
"epoch": 0.03192338387869114,
|
| 25 |
+
"grad_norm": 1.1728941202163696,
|
| 26 |
+
"learning_rate": 2.3353714285714284e-05,
|
| 27 |
+
"loss": 0.324,
|
| 28 |
+
"mean_token_accuracy": 0.9094921946525574,
|
| 29 |
+
"num_tokens": 1237848.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.955551016330719,
|
| 34 |
+
"epoch": 0.047885075818036714,
|
| 35 |
+
"grad_norm": 1.079156517982483,
|
| 36 |
+
"learning_rate": 3.564514285714286e-05,
|
| 37 |
+
"loss": 0.309,
|
| 38 |
+
"mean_token_accuracy": 0.9126040428876877,
|
| 39 |
+
"num_tokens": 1863643.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.8611825913190841,
|
| 44 |
+
"epoch": 0.06384676775738228,
|
| 45 |
+
"grad_norm": 0.7616499066352844,
|
| 46 |
+
"learning_rate": 4.3019142803974194e-05,
|
| 47 |
+
"loss": 0.1433,
|
| 48 |
+
"mean_token_accuracy": 0.9484753370285034,
|
| 49 |
+
"num_tokens": 2469341.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.8195502609014511,
|
| 54 |
+
"epoch": 0.07980845969672785,
|
| 55 |
+
"grad_norm": 0.5501054525375366,
|
| 56 |
+
"learning_rate": 4.3009500394808225e-05,
|
| 57 |
+
"loss": 0.1646,
|
| 58 |
+
"mean_token_accuracy": 0.94924955368042,
|
| 59 |
+
"num_tokens": 3094629.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.8249957531690597,
|
| 64 |
+
"epoch": 0.09577015163607343,
|
| 65 |
+
"grad_norm": 0.6578405499458313,
|
| 66 |
+
"learning_rate": 4.2989150506831564e-05,
|
| 67 |
+
"loss": 0.1438,
|
| 68 |
+
"mean_token_accuracy": 0.9527049332857132,
|
| 69 |
+
"num_tokens": 3692600.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.8487251400947571,
|
| 74 |
+
"epoch": 0.11173184357541899,
|
| 75 |
+
"grad_norm": 0.7742117047309875,
|
| 76 |
+
"learning_rate": 4.2958106655488265e-05,
|
| 77 |
+
"loss": 0.1157,
|
| 78 |
+
"mean_token_accuracy": 0.9633159458637237,
|
| 79 |
+
"num_tokens": 4305846.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.8406275361776352,
|
| 84 |
+
"epoch": 0.12769353551476456,
|
| 85 |
+
"grad_norm": 0.6870937347412109,
|
| 86 |
+
"learning_rate": 4.291638945865279e-05,
|
| 87 |
+
"loss": 0.0891,
|
| 88 |
+
"mean_token_accuracy": 0.9654581695795059,
|
| 89 |
+
"num_tokens": 4913310.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.8179305374622345,
|
| 94 |
+
"epoch": 0.14365522745411013,
|
| 95 |
+
"grad_norm": 0.7981634736061096,
|
| 96 |
+
"learning_rate": 4.286402662293663e-05,
|
| 97 |
+
"loss": 0.133,
|
| 98 |
+
"mean_token_accuracy": 0.9567308723926544,
|
| 99 |
+
"num_tokens": 5533837.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.7972609519958496,
|
| 104 |
+
"epoch": 0.1596169193934557,
|
| 105 |
+
"grad_norm": 0.7271296977996826,
|
| 106 |
+
"learning_rate": 4.280105292528682e-05,
|
| 107 |
+
"loss": 0.0748,
|
| 108 |
+
"mean_token_accuracy": 0.9692588925361634,
|
| 109 |
+
"num_tokens": 6139238.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.7826209843158722,
|
| 114 |
+
"epoch": 0.17557861133280128,
|
| 115 |
+
"grad_norm": 0.9311319589614868,
|
| 116 |
+
"learning_rate": 4.2727510189888735e-05,
|
| 117 |
+
"loss": 0.0948,
|
| 118 |
+
"mean_token_accuracy": 0.9660487741231918,
|
| 119 |
+
"num_tokens": 6750942.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.792391562461853,
|
| 124 |
+
"epoch": 0.19154030327214686,
|
| 125 |
+
"grad_norm": 1.1329065561294556,
|
| 126 |
+
"learning_rate": 4.264344726038844e-05,
|
| 127 |
+
"loss": 0.1215,
|
| 128 |
+
"mean_token_accuracy": 0.9598832100629806,
|
| 129 |
+
"num_tokens": 7354162.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.7968044668436051,
|
| 134 |
+
"epoch": 0.20750199521149243,
|
| 135 |
+
"grad_norm": 0.7501869797706604,
|
| 136 |
+
"learning_rate": 4.2548919967452986e-05,
|
| 137 |
+
"loss": 0.0926,
|
| 138 |
+
"mean_token_accuracy": 0.9672768324613571,
|
| 139 |
+
"num_tokens": 7972424.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.7914539545774459,
|
| 144 |
+
"epoch": 0.22346368715083798,
|
| 145 |
+
"grad_norm": 0.4441527724266052,
|
| 146 |
+
"learning_rate": 4.2443991091690325e-05,
|
| 147 |
+
"loss": 0.0764,
|
| 148 |
+
"mean_token_accuracy": 0.9698785275220871,
|
| 149 |
+
"num_tokens": 8585919.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.7819067716598511,
|
| 154 |
+
"epoch": 0.23942537909018355,
|
| 155 |
+
"grad_norm": 0.3861187994480133,
|
| 156 |
+
"learning_rate": 4.232873032195334e-05,
|
| 157 |
+
"loss": 0.0846,
|
| 158 |
+
"mean_token_accuracy": 0.9694553077220917,
|
| 159 |
+
"num_tokens": 9187518.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.7868628352880478,
|
| 164 |
+
"epoch": 0.2553870710295291,
|
| 165 |
+
"grad_norm": 0.7797110676765442,
|
| 166 |
+
"learning_rate": 4.2203214209055817e-05,
|
| 167 |
+
"loss": 0.1039,
|
| 168 |
+
"mean_token_accuracy": 0.9645863115787506,
|
| 169 |
+
"num_tokens": 9797114.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.7686551660299301,
|
| 174 |
+
"epoch": 0.2713487629688747,
|
| 175 |
+
"grad_norm": 0.4940663278102875,
|
| 176 |
+
"learning_rate": 4.2067526114930886e-05,
|
| 177 |
+
"loss": 0.0712,
|
| 178 |
+
"mean_token_accuracy": 0.972442090511322,
|
| 179 |
+
"num_tokens": 10405377.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.7765703171491622,
|
| 184 |
+
"epoch": 0.28731045490822027,
|
| 185 |
+
"grad_norm": 0.23396383225917816,
|
| 186 |
+
"learning_rate": 4.192175615726602e-05,
|
| 187 |
+
"loss": 0.0852,
|
| 188 |
+
"mean_token_accuracy": 0.9674565583467484,
|
| 189 |
+
"num_tokens": 11004149.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.7805891185998917,
|
| 194 |
+
"epoch": 0.3032721468475658,
|
| 195 |
+
"grad_norm": 0.4413723349571228,
|
| 196 |
+
"learning_rate": 4.1766001149651005e-05,
|
| 197 |
+
"loss": 0.0708,
|
| 198 |
+
"mean_token_accuracy": 0.9729034811258316,
|
| 199 |
+
"num_tokens": 11614790.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.7965189158916474,
|
| 204 |
+
"epoch": 0.3192338387869114,
|
| 205 |
+
"grad_norm": 0.19197236001491547,
|
| 206 |
+
"learning_rate": 4.160036453727891e-05,
|
| 207 |
+
"loss": 0.1092,
|
| 208 |
+
"mean_token_accuracy": 0.9651999145746231,
|
| 209 |
+
"num_tokens": 12226653.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.824384006857872,
|
| 214 |
+
"epoch": 0.33519553072625696,
|
| 215 |
+
"grad_norm": 0.7662508487701416,
|
| 216 |
+
"learning_rate": 4.142495632824267e-05,
|
| 217 |
+
"loss": 0.0961,
|
| 218 |
+
"mean_token_accuracy": 0.9674228817224503,
|
| 219 |
+
"num_tokens": 12862678.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.8039055347442627,
|
| 224 |
+
"epoch": 0.35115722266560256,
|
| 225 |
+
"grad_norm": 0.9724727272987366,
|
| 226 |
+
"learning_rate": 4.123989302047276e-05,
|
| 227 |
+
"loss": 0.0934,
|
| 228 |
+
"mean_token_accuracy": 0.9662326157093049,
|
| 229 |
+
"num_tokens": 13478526.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.775772100687027,
|
| 234 |
+
"epoch": 0.3671189146049481,
|
| 235 |
+
"grad_norm": 0.25729894638061523,
|
| 236 |
+
"learning_rate": 4.1045297524364796e-05,
|
| 237 |
+
"loss": 0.0843,
|
| 238 |
+
"mean_token_accuracy": 0.9702257007360459,
|
| 239 |
+
"num_tokens": 14092792.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.7595041334629059,
|
| 244 |
+
"epoch": 0.3830806065442937,
|
| 245 |
+
"grad_norm": 0.1401986926794052,
|
| 246 |
+
"learning_rate": 4.084129908114817e-05,
|
| 247 |
+
"loss": 0.1248,
|
| 248 |
+
"mean_token_accuracy": 0.9598525494337082,
|
| 249 |
+
"num_tokens": 14717341.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.786889699101448,
|
| 254 |
+
"epoch": 0.39904229848363926,
|
| 255 |
+
"grad_norm": 0.27574002742767334,
|
| 256 |
+
"learning_rate": 4.0628033177050074e-05,
|
| 257 |
+
"loss": 0.0745,
|
| 258 |
+
"mean_token_accuracy": 0.9735713273286819,
|
| 259 |
+
"num_tokens": 15340078.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.7923183053731918,
|
| 264 |
+
"epoch": 0.41500399042298486,
|
| 265 |
+
"grad_norm": 0.47537916898727417,
|
| 266 |
+
"learning_rate": 4.040564145331186e-05,
|
| 267 |
+
"loss": 0.0717,
|
| 268 |
+
"mean_token_accuracy": 0.9725858896970749,
|
| 269 |
+
"num_tokens": 15960679.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.773842254281044,
|
| 274 |
+
"epoch": 0.4309656823623304,
|
| 275 |
+
"grad_norm": 0.2411717027425766,
|
| 276 |
+
"learning_rate": 4.0174271612117575e-05,
|
| 277 |
+
"loss": 0.0916,
|
| 278 |
+
"mean_token_accuracy": 0.9678393840789795,
|
| 279 |
+
"num_tokens": 16580367.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.7822292029857636,
|
| 284 |
+
"epoch": 0.44692737430167595,
|
| 285 |
+
"grad_norm": 0.6152486205101013,
|
| 286 |
+
"learning_rate": 3.9934077318497085e-05,
|
| 287 |
+
"loss": 0.1304,
|
| 288 |
+
"mean_token_accuracy": 0.9576453745365143,
|
| 289 |
+
"num_tokens": 17188540.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.763131606578827,
|
| 294 |
+
"epoch": 0.46288906624102155,
|
| 295 |
+
"grad_norm": 0.8452078700065613,
|
| 296 |
+
"learning_rate": 3.968521809826893e-05,
|
| 297 |
+
"loss": 0.1053,
|
| 298 |
+
"mean_token_accuracy": 0.9649925410747529,
|
| 299 |
+
"num_tokens": 17805354.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.7586877375841141,
|
| 304 |
+
"epoch": 0.4788507581803671,
|
| 305 |
+
"grad_norm": 0.7443876266479492,
|
| 306 |
+
"learning_rate": 3.942785923209072e-05,
|
| 307 |
+
"loss": 0.0856,
|
| 308 |
+
"mean_token_accuracy": 0.9694090068340302,
|
| 309 |
+
"num_tokens": 18406366.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.7440236926078796,
|
| 314 |
+
"epoch": 0.4948124501197127,
|
| 315 |
+
"grad_norm": 0.15965542197227478,
|
| 316 |
+
"learning_rate": 3.9162171645687486e-05,
|
| 317 |
+
"loss": 0.0667,
|
| 318 |
+
"mean_token_accuracy": 0.973630714416504,
|
| 319 |
+
"num_tokens": 19006152.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.7528551459312439,
|
| 324 |
+
"epoch": 0.5107741420590582,
|
| 325 |
+
"grad_norm": 0.24820564687252045,
|
| 326 |
+
"learning_rate": 3.8888331796330785e-05,
|
| 327 |
+
"loss": 0.0634,
|
| 328 |
+
"mean_token_accuracy": 0.9752680540084839,
|
| 329 |
+
"num_tokens": 19625815.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.758511808514595,
|
| 334 |
+
"epoch": 0.5267358339984038,
|
| 335 |
+
"grad_norm": 0.1678536832332611,
|
| 336 |
+
"learning_rate": 3.8606521555644026e-05,
|
| 337 |
+
"loss": 0.0765,
|
| 338 |
+
"mean_token_accuracy": 0.9737292170524597,
|
| 339 |
+
"num_tokens": 20251706.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.8099140286445617,
|
| 344 |
+
"epoch": 0.5426975259377494,
|
| 345 |
+
"grad_norm": 0.12425480037927628,
|
| 346 |
+
"learning_rate": 3.831692808881186e-05,
|
| 347 |
+
"loss": 0.08,
|
| 348 |
+
"mean_token_accuracy": 0.9717760980129242,
|
| 349 |
+
"num_tokens": 20869928.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.8449289321899414,
|
| 354 |
+
"epoch": 0.5586592178770949,
|
| 355 |
+
"grad_norm": 0.3884945213794708,
|
| 356 |
+
"learning_rate": 3.801974373027381e-05,
|
| 357 |
+
"loss": 0.0655,
|
| 358 |
+
"mean_token_accuracy": 0.9746631622314453,
|
| 359 |
+
"num_tokens": 21487674.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.8119749128818512,
|
| 364 |
+
"epoch": 0.5746209098164405,
|
| 365 |
+
"grad_norm": 0.5517822504043579,
|
| 366 |
+
"learning_rate": 3.7715165855984715e-05,
|
| 367 |
+
"loss": 0.0889,
|
| 368 |
+
"mean_token_accuracy": 0.9673811107873916,
|
| 369 |
+
"num_tokens": 22101768.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.8082006275653839,
|
| 374 |
+
"epoch": 0.5905826017557861,
|
| 375 |
+
"grad_norm": 0.12656064331531525,
|
| 376 |
+
"learning_rate": 3.740339675232686e-05,
|
| 377 |
+
"loss": 0.1114,
|
| 378 |
+
"mean_token_accuracy": 0.9613101214170456,
|
| 379 |
+
"num_tokens": 22714228.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.7816001594066619,
|
| 384 |
+
"epoch": 0.6065442936951316,
|
| 385 |
+
"grad_norm": 0.18565888702869415,
|
| 386 |
+
"learning_rate": 3.7084643481760836e-05,
|
| 387 |
+
"loss": 0.0822,
|
| 388 |
+
"mean_token_accuracy": 0.9714775443077087,
|
| 389 |
+
"num_tokens": 23316960.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.7636521548032761,
|
| 394 |
+
"epoch": 0.6225059856344772,
|
| 395 |
+
"grad_norm": 0.13019737601280212,
|
| 396 |
+
"learning_rate": 3.67591177453043e-05,
|
| 397 |
+
"loss": 0.0896,
|
| 398 |
+
"mean_token_accuracy": 0.9703256696462631,
|
| 399 |
+
"num_tokens": 23923546.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.7770091861486434,
|
| 404 |
+
"epoch": 0.6384676775738228,
|
| 405 |
+
"grad_norm": 0.16999919712543488,
|
| 406 |
+
"learning_rate": 3.642703574193011e-05,
|
| 407 |
+
"loss": 0.0594,
|
| 408 |
+
"mean_token_accuracy": 0.9768979340791702,
|
| 409 |
+
"num_tokens": 24535110.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.7821112215518952,
|
| 414 |
+
"epoch": 0.6544293695131684,
|
| 415 |
+
"grad_norm": 0.16182664036750793,
|
| 416 |
+
"learning_rate": 3.6088618024977e-05,
|
| 417 |
+
"loss": 0.1196,
|
| 418 |
+
"mean_token_accuracy": 0.962785828113556,
|
| 419 |
+
"num_tokens": 25136436.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.784448316693306,
|
| 424 |
+
"epoch": 0.6703910614525139,
|
| 425 |
+
"grad_norm": 0.6256292462348938,
|
| 426 |
+
"learning_rate": 3.574408935566845e-05,
|
| 427 |
+
"loss": 0.1308,
|
| 428 |
+
"mean_token_accuracy": 0.9604980528354645,
|
| 429 |
+
"num_tokens": 25760373.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.7595613598823547,
|
| 434 |
+
"epoch": 0.6863527533918595,
|
| 435 |
+
"grad_norm": 0.11680064350366592,
|
| 436 |
+
"learning_rate": 3.539367855383673e-05,
|
| 437 |
+
"loss": 0.1065,
|
| 438 |
+
"mean_token_accuracy": 0.965737396478653,
|
| 439 |
+
"num_tokens": 26370923.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.785027676820755,
|
| 444 |
+
"epoch": 0.7023144453312051,
|
| 445 |
+
"grad_norm": 0.13679790496826172,
|
| 446 |
+
"learning_rate": 3.503761834595149e-05,
|
| 447 |
+
"loss": 0.0659,
|
| 448 |
+
"mean_token_accuracy": 0.9742470771074295,
|
| 449 |
+
"num_tokens": 26984485.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.7741981953382492,
|
| 454 |
+
"epoch": 0.7182761372705507,
|
| 455 |
+
"grad_norm": 0.13371747732162476,
|
| 456 |
+
"learning_rate": 3.4676145210553744e-05,
|
| 457 |
+
"loss": 0.1137,
|
| 458 |
+
"mean_token_accuracy": 0.9615134477615357,
|
| 459 |
+
"num_tokens": 27602613.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.7374123007059097,
|
| 464 |
+
"epoch": 0.7342378292098962,
|
| 465 |
+
"grad_norm": 0.4468773901462555,
|
| 466 |
+
"learning_rate": 3.4309499221197814e-05,
|
| 467 |
+
"loss": 0.0647,
|
| 468 |
+
"mean_token_accuracy": 0.9737134844064712,
|
| 469 |
+
"num_tokens": 28213445.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.7456966727972031,
|
| 474 |
+
"epoch": 0.7501995211492418,
|
| 475 |
+
"grad_norm": 0.12663891911506653,
|
| 476 |
+
"learning_rate": 3.3937923887005776e-05,
|
| 477 |
+
"loss": 0.0902,
|
| 478 |
+
"mean_token_accuracy": 0.9683217167854309,
|
| 479 |
+
"num_tokens": 28829251.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.759719917178154,
|
| 484 |
+
"epoch": 0.7661612130885874,
|
| 485 |
+
"grad_norm": 0.1270993947982788,
|
| 486 |
+
"learning_rate": 3.356166599094002e-05,
|
| 487 |
+
"loss": 0.064,
|
| 488 |
+
"mean_token_accuracy": 0.9761691361665725,
|
| 489 |
+
"num_tokens": 29447464.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.7696426391601563,
|
| 494 |
+
"epoch": 0.7821229050279329,
|
| 495 |
+
"grad_norm": 0.1482442021369934,
|
| 496 |
+
"learning_rate": 3.3180975425901635e-05,
|
| 497 |
+
"loss": 0.0936,
|
| 498 |
+
"mean_token_accuracy": 0.9671059608459472,
|
| 499 |
+
"num_tokens": 30059263.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.7510176807641983,
|
| 504 |
+
"epoch": 0.7980845969672785,
|
| 505 |
+
"grad_norm": 0.6420421004295349,
|
| 506 |
+
"learning_rate": 3.279610502876312e-05,
|
| 507 |
+
"loss": 0.0855,
|
| 508 |
+
"mean_token_accuracy": 0.9702295064926147,
|
| 509 |
+
"num_tokens": 30679582.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.7388219237327576,
|
| 514 |
+
"epoch": 0.8140462889066241,
|
| 515 |
+
"grad_norm": 0.1534568965435028,
|
| 516 |
+
"learning_rate": 3.2407310412446035e-05,
|
| 517 |
+
"loss": 0.0701,
|
| 518 |
+
"mean_token_accuracy": 0.9742257595062256,
|
| 519 |
+
"num_tokens": 31294619.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.7282670885324478,
|
| 524 |
+
"epoch": 0.8300079808459697,
|
| 525 |
+
"grad_norm": 0.5732345581054688,
|
| 526 |
+
"learning_rate": 3.201484979615482e-05,
|
| 527 |
+
"loss": 0.0936,
|
| 528 |
+
"mean_token_accuracy": 0.9658971399068832,
|
| 529 |
+
"num_tokens": 31910482.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.7382837921380997,
|
| 534 |
+
"epoch": 0.8459696727853152,
|
| 535 |
+
"grad_norm": 0.1135987788438797,
|
| 536 |
+
"learning_rate": 3.1618983833879674e-05,
|
| 537 |
+
"loss": 0.112,
|
| 538 |
+
"mean_token_accuracy": 0.9637796878814697,
|
| 539 |
+
"num_tokens": 32519113.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.7493024051189423,
|
| 544 |
+
"epoch": 0.8619313647246608,
|
| 545 |
+
"grad_norm": 0.13224604725837708,
|
| 546 |
+
"learning_rate": 3.121997544128238e-05,
|
| 547 |
+
"loss": 0.0822,
|
| 548 |
+
"mean_token_accuracy": 0.9707857817411423,
|
| 549 |
+
"num_tokens": 33129187.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.7391972035169602,
|
| 554 |
+
"epoch": 0.8778930566640064,
|
| 555 |
+
"grad_norm": 0.33319348096847534,
|
| 556 |
+
"learning_rate": 3.081808962107999e-05,
|
| 557 |
+
"loss": 0.0819,
|
| 558 |
+
"mean_token_accuracy": 0.9717306554317474,
|
| 559 |
+
"num_tokens": 33743757.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.7449708580970764,
|
| 564 |
+
"epoch": 0.8938547486033519,
|
| 565 |
+
"grad_norm": 0.13626126945018768,
|
| 566 |
+
"learning_rate": 3.0413593287042427e-05,
|
| 567 |
+
"loss": 0.0975,
|
| 568 |
+
"mean_token_accuracy": 0.9667524933815003,
|
| 569 |
+
"num_tokens": 34356378.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.7597370415925979,
|
| 574 |
+
"epoch": 0.9098164405426975,
|
| 575 |
+
"grad_norm": 0.14178575575351715,
|
| 576 |
+
"learning_rate": 3.0006755086720845e-05,
|
| 577 |
+
"loss": 0.0712,
|
| 578 |
+
"mean_token_accuracy": 0.9726598799228668,
|
| 579 |
+
"num_tokens": 34963300.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.746942538022995,
|
| 584 |
+
"epoch": 0.9257781324820431,
|
| 585 |
+
"grad_norm": 0.17223705351352692,
|
| 586 |
+
"learning_rate": 2.9597845223024483e-05,
|
| 587 |
+
"loss": 0.0768,
|
| 588 |
+
"mean_token_accuracy": 0.9728372275829316,
|
| 589 |
+
"num_tokens": 35570505.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.7469703108072281,
|
| 594 |
+
"epoch": 0.9417398244213887,
|
| 595 |
+
"grad_norm": 0.1207246407866478,
|
| 596 |
+
"learning_rate": 2.9187135274764504e-05,
|
| 597 |
+
"loss": 0.0801,
|
| 598 |
+
"mean_token_accuracy": 0.9725636392831802,
|
| 599 |
+
"num_tokens": 36186885.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.7389861464500427,
|
| 604 |
+
"epoch": 0.9577015163607342,
|
| 605 |
+
"grad_norm": 0.37582626938819885,
|
| 606 |
+
"learning_rate": 2.87748980162841e-05,
|
| 607 |
+
"loss": 0.0685,
|
| 608 |
+
"mean_token_accuracy": 0.9724197059869766,
|
| 609 |
+
"num_tokens": 36802324.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.7571559935808182,
|
| 614 |
+
"epoch": 0.9736632083000798,
|
| 615 |
+
"grad_norm": 0.10633117705583572,
|
| 616 |
+
"learning_rate": 2.836140723629446e-05,
|
| 617 |
+
"loss": 0.092,
|
| 618 |
+
"mean_token_accuracy": 0.9680209428071975,
|
| 619 |
+
"num_tokens": 37403435.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.7509357005357742,
|
| 624 |
+
"epoch": 0.9896249002394254,
|
| 625 |
+
"grad_norm": 0.4718145728111267,
|
| 626 |
+
"learning_rate": 2.7946937556037163e-05,
|
| 627 |
+
"loss": 0.1033,
|
| 628 |
+
"mean_token_accuracy": 0.9662729442119599,
|
| 629 |
+
"num_tokens": 38010569.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.7574707489264639,
|
| 634 |
+
"epoch": 1.0047885075818037,
|
| 635 |
+
"grad_norm": 0.11187744140625,
|
| 636 |
+
"learning_rate": 2.7531764246893585e-05,
|
| 637 |
+
"loss": 0.0671,
|
| 638 |
+
"mean_token_accuracy": 0.9744049498909398,
|
| 639 |
+
"num_tokens": 38577624.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.7245491325855256,
|
| 644 |
+
"epoch": 1.0207501995211492,
|
| 645 |
+
"grad_norm": 0.12900446355342865,
|
| 646 |
+
"learning_rate": 2.7116163047562487e-05,
|
| 647 |
+
"loss": 0.0545,
|
| 648 |
+
"mean_token_accuracy": 0.9777880311012268,
|
| 649 |
+
"num_tokens": 39188484.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.6937095284461975,
|
| 654 |
+
"epoch": 1.036711891460495,
|
| 655 |
+
"grad_norm": 0.589491605758667,
|
| 656 |
+
"learning_rate": 2.6700409980927298e-05,
|
| 657 |
+
"loss": 0.0619,
|
| 658 |
+
"mean_token_accuracy": 0.9753036707639694,
|
| 659 |
+
"num_tokens": 39782239.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.6824752867221833,
|
| 664 |
+
"epoch": 1.0526735833998404,
|
| 665 |
+
"grad_norm": 0.13635259866714478,
|
| 666 |
+
"learning_rate": 2.62847811707346e-05,
|
| 667 |
+
"loss": 0.053,
|
| 668 |
+
"mean_token_accuracy": 0.9780564397573471,
|
| 669 |
+
"num_tokens": 40398532.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.6895065426826477,
|
| 674 |
+
"epoch": 1.068635275339186,
|
| 675 |
+
"grad_norm": 0.18689432740211487,
|
| 676 |
+
"learning_rate": 2.586955265820566e-05,
|
| 677 |
+
"loss": 0.0561,
|
| 678 |
+
"mean_token_accuracy": 0.9772377789020539,
|
| 679 |
+
"num_tokens": 41009440.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.6825103610754013,
|
| 684 |
+
"epoch": 1.0845969672785316,
|
| 685 |
+
"grad_norm": 0.15807431936264038,
|
| 686 |
+
"learning_rate": 2.5455000218702754e-05,
|
| 687 |
+
"loss": 0.0579,
|
| 688 |
+
"mean_token_accuracy": 0.976485601067543,
|
| 689 |
+
"num_tokens": 41612304.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.6815812021493912,
|
| 694 |
+
"epoch": 1.100558659217877,
|
| 695 |
+
"grad_norm": 0.34784135222435,
|
| 696 |
+
"learning_rate": 2.5041399178572077e-05,
|
| 697 |
+
"loss": 0.0544,
|
| 698 |
+
"mean_token_accuracy": 0.9776277542114258,
|
| 699 |
+
"num_tokens": 42222964.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.6782410234212876,
|
| 704 |
+
"epoch": 1.1165203511572226,
|
| 705 |
+
"grad_norm": 0.48382070660591125,
|
| 706 |
+
"learning_rate": 2.4629024232284813e-05,
|
| 707 |
+
"loss": 0.0636,
|
| 708 |
+
"mean_token_accuracy": 0.975392273068428,
|
| 709 |
+
"num_tokens": 42842402.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.6576968163251877,
|
| 714 |
+
"epoch": 1.1324820430965683,
|
| 715 |
+
"grad_norm": 0.1805514246225357,
|
| 716 |
+
"learning_rate": 2.4218149259998005e-05,
|
| 717 |
+
"loss": 0.0732,
|
| 718 |
+
"mean_token_accuracy": 0.9726167500019074,
|
| 719 |
+
"num_tokens": 43440453.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.6495650440454483,
|
| 724 |
+
"epoch": 1.1484437350359138,
|
| 725 |
+
"grad_norm": 0.5852122902870178,
|
| 726 |
+
"learning_rate": 2.380904714565604e-05,
|
| 727 |
+
"loss": 0.049,
|
| 728 |
+
"mean_token_accuracy": 0.9791654586791992,
|
| 729 |
+
"num_tokens": 44062800.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.6422303318977356,
|
| 734 |
+
"epoch": 1.1644054269752593,
|
| 735 |
+
"grad_norm": 0.17376938462257385,
|
| 736 |
+
"learning_rate": 2.3401989595754004e-05,
|
| 737 |
+
"loss": 0.0687,
|
| 738 |
+
"mean_token_accuracy": 0.973504614830017,
|
| 739 |
+
"num_tokens": 44687102.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.665783628821373,
|
| 744 |
+
"epoch": 1.180367118914605,
|
| 745 |
+
"grad_norm": 0.1703038364648819,
|
| 746 |
+
"learning_rate": 2.2997246958882838e-05,
|
| 747 |
+
"loss": 0.0567,
|
| 748 |
+
"mean_token_accuracy": 0.9763033747673034,
|
| 749 |
+
"num_tokens": 45284640.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.6595148354768753,
|
| 754 |
+
"epoch": 1.1963288108539505,
|
| 755 |
+
"grad_norm": 0.5793496370315552,
|
| 756 |
+
"learning_rate": 2.2595088046176557e-05,
|
| 757 |
+
"loss": 0.0676,
|
| 758 |
+
"mean_token_accuracy": 0.972760459780693,
|
| 759 |
+
"num_tokens": 45898740.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.6939929097890853,
|
| 764 |
+
"epoch": 1.2122905027932962,
|
| 765 |
+
"grad_norm": 0.5360252857208252,
|
| 766 |
+
"learning_rate": 2.219577995278033e-05,
|
| 767 |
+
"loss": 0.0579,
|
| 768 |
+
"mean_token_accuracy": 0.9773185312747955,
|
| 769 |
+
"num_tokens": 46510438.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.6901521146297455,
|
| 774 |
+
"epoch": 1.2282521947326417,
|
| 775 |
+
"grad_norm": 0.4658600389957428,
|
| 776 |
+
"learning_rate": 2.179958788045847e-05,
|
| 777 |
+
"loss": 0.0658,
|
| 778 |
+
"mean_token_accuracy": 0.9745920717716217,
|
| 779 |
+
"num_tokens": 47127246.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.6779890835285187,
|
| 784 |
+
"epoch": 1.2442138866719872,
|
| 785 |
+
"grad_norm": 0.44346046447753906,
|
| 786 |
+
"learning_rate": 2.1406774961459813e-05,
|
| 787 |
+
"loss": 0.0656,
|
| 788 |
+
"mean_token_accuracy": 0.9746302455663681,
|
| 789 |
+
"num_tokens": 47747789.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.6651463955640793,
|
| 794 |
+
"epoch": 1.260175578611333,
|
| 795 |
+
"grad_norm": 0.9126094579696655,
|
| 796 |
+
"learning_rate": 2.1017602083757534e-05,
|
| 797 |
+
"loss": 0.0819,
|
| 798 |
+
"mean_token_accuracy": 0.9712705045938492,
|
| 799 |
+
"num_tokens": 48352629.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.6546548277139663,
|
| 804 |
+
"epoch": 1.2761372705506784,
|
| 805 |
+
"grad_norm": 0.5616291761398315,
|
| 806 |
+
"learning_rate": 2.0632327717779602e-05,
|
| 807 |
+
"loss": 0.083,
|
| 808 |
+
"mean_token_accuracy": 0.9693287074565887,
|
| 809 |
+
"num_tokens": 48980214.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.6701517790555954,
|
| 814 |
+
"epoch": 1.2920989624900239,
|
| 815 |
+
"grad_norm": 0.11611852794885635,
|
| 816 |
+
"learning_rate": 2.0251207744744794e-05,
|
| 817 |
+
"loss": 0.0692,
|
| 818 |
+
"mean_token_accuracy": 0.9744849443435669,
|
| 819 |
+
"num_tokens": 49598634.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.6785144120454788,
|
| 824 |
+
"epoch": 1.3080606544293696,
|
| 825 |
+
"grad_norm": 0.49090075492858887,
|
| 826 |
+
"learning_rate": 1.9874495286718322e-05,
|
| 827 |
+
"loss": 0.0703,
|
| 828 |
+
"mean_token_accuracy": 0.9746557891368866,
|
| 829 |
+
"num_tokens": 50207920.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.67068150639534,
|
| 834 |
+
"epoch": 1.324022346368715,
|
| 835 |
+
"grad_norm": 0.194056898355484,
|
| 836 |
+
"learning_rate": 1.950244053850007e-05,
|
| 837 |
+
"loss": 0.075,
|
| 838 |
+
"mean_token_accuracy": 0.9720426052808762,
|
| 839 |
+
"num_tokens": 50819553.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.675808984041214,
|
| 844 |
+
"epoch": 1.3399840383080606,
|
| 845 |
+
"grad_norm": 0.20785000920295715,
|
| 846 |
+
"learning_rate": 1.9135290601456797e-05,
|
| 847 |
+
"loss": 0.0749,
|
| 848 |
+
"mean_token_accuracy": 0.971061834692955,
|
| 849 |
+
"num_tokens": 51438532.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.6731903970241546,
|
| 854 |
+
"epoch": 1.3559457302474063,
|
| 855 |
+
"grad_norm": 0.19757410883903503,
|
| 856 |
+
"learning_rate": 1.8773289319409076e-05,
|
| 857 |
+
"loss": 0.0783,
|
| 858 |
+
"mean_token_accuracy": 0.9707212895154953,
|
| 859 |
+
"num_tokens": 52041716.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.6670376569032669,
|
| 864 |
+
"epoch": 1.3719074221867518,
|
| 865 |
+
"grad_norm": 0.4560127258300781,
|
| 866 |
+
"learning_rate": 1.841667711668156e-05,
|
| 867 |
+
"loss": 0.0668,
|
| 868 |
+
"mean_token_accuracy": 0.9737331926822662,
|
| 869 |
+
"num_tokens": 52650555.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.6547212153673172,
|
| 874 |
+
"epoch": 1.3878691141260973,
|
| 875 |
+
"grad_norm": 0.13788355886936188,
|
| 876 |
+
"learning_rate": 1.8065690838424397e-05,
|
| 877 |
+
"loss": 0.0519,
|
| 878 |
+
"mean_token_accuracy": 0.9778258532285691,
|
| 879 |
+
"num_tokens": 53275669.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.6567257404327392,
|
| 884 |
+
"epoch": 1.403830806065443,
|
| 885 |
+
"grad_norm": 0.5234628319740295,
|
| 886 |
+
"learning_rate": 1.7720563593311783e-05,
|
| 887 |
+
"loss": 0.0509,
|
| 888 |
+
"mean_token_accuracy": 0.979963681101799,
|
| 889 |
+
"num_tokens": 53889427.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.6597132682800293,
|
| 894 |
+
"epoch": 1.4197924980047885,
|
| 895 |
+
"grad_norm": 0.1748003363609314,
|
| 896 |
+
"learning_rate": 1.7381524598722046e-05,
|
| 897 |
+
"loss": 0.0668,
|
| 898 |
+
"mean_token_accuracy": 0.9738949596881866,
|
| 899 |
+
"num_tokens": 54498203.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.6624057710170745,
|
| 904 |
+
"epoch": 1.435754189944134,
|
| 905 |
+
"grad_norm": 0.145976260304451,
|
| 906 |
+
"learning_rate": 1.704879902850221e-05,
|
| 907 |
+
"loss": 0.0743,
|
| 908 |
+
"mean_token_accuracy": 0.972572660446167,
|
| 909 |
+
"num_tokens": 55107757.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
}
|
| 912 |
+
],
|
| 913 |
+
"logging_steps": 10,
|
| 914 |
+
"max_steps": 1254,
|
| 915 |
+
"num_input_tokens_seen": 0,
|
| 916 |
+
"num_train_epochs": 2,
|
| 917 |
+
"save_steps": 500,
|
| 918 |
+
"stateful_callbacks": {
|
| 919 |
+
"TrainerControl": {
|
| 920 |
+
"args": {
|
| 921 |
+
"should_epoch_stop": false,
|
| 922 |
+
"should_evaluate": false,
|
| 923 |
+
"should_log": false,
|
| 924 |
+
"should_save": true,
|
| 925 |
+
"should_training_stop": false
|
| 926 |
+
},
|
| 927 |
+
"attributes": {}
|
| 928 |
+
}
|
| 929 |
+
},
|
| 930 |
+
"total_flos": 3.310366809558876e+18,
|
| 931 |
+
"train_batch_size": 6,
|
| 932 |
+
"trial_name": null,
|
| 933 |
+
"trial_params": null
|
| 934 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e45de59e2bcc13dc4ad1bea90754ca347de02feeb7531ab7889d28bf9ec42b6d
|
| 3 |
+
size 6353
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|