Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +62 -0
- adapter_config.json +41 -0
- adapter_model.safetensors +3 -0
- checkpoint-1066/README.md +209 -0
- checkpoint-1066/adapter_config.json +41 -0
- checkpoint-1066/adapter_model.safetensors +3 -0
- checkpoint-1066/chat_template.jinja +109 -0
- checkpoint-1066/optimizer.pt +3 -0
- checkpoint-1066/rng_state.pth +3 -0
- checkpoint-1066/scheduler.pt +3 -0
- checkpoint-1066/special_tokens_map.json +16 -0
- checkpoint-1066/tokenizer.json +3 -0
- checkpoint-1066/tokenizer_config.json +2062 -0
- checkpoint-1066/trainer_state.json +1094 -0
- checkpoint-1066/training_args.bin +3 -0
- checkpoint-2132/README.md +209 -0
- checkpoint-2132/adapter_config.json +41 -0
- checkpoint-2132/adapter_model.safetensors +3 -0
- checkpoint-2132/chat_template.jinja +109 -0
- checkpoint-2132/optimizer.pt +3 -0
- checkpoint-2132/rng_state.pth +3 -0
- checkpoint-2132/scheduler.pt +3 -0
- checkpoint-2132/special_tokens_map.json +16 -0
- checkpoint-2132/tokenizer.json +3 -0
- checkpoint-2132/tokenizer_config.json +2062 -0
- checkpoint-2132/trainer_state.json +2164 -0
- checkpoint-2132/training_args.bin +3 -0
- checkpoint-3198/README.md +209 -0
- checkpoint-3198/adapter_config.json +41 -0
- checkpoint-3198/adapter_model.safetensors +3 -0
- checkpoint-3198/chat_template.jinja +109 -0
- checkpoint-3198/optimizer.pt +3 -0
- checkpoint-3198/rng_state.pth +3 -0
- checkpoint-3198/scheduler.pt +3 -0
- checkpoint-3198/special_tokens_map.json +16 -0
- checkpoint-3198/tokenizer.json +3 -0
- checkpoint-3198/tokenizer_config.json +2062 -0
- checkpoint-3198/trainer_state.json +3224 -0
- checkpoint-3198/training_args.bin +3 -0
- runs/Dec16_19-13-33_c97b5462718c/events.out.tfevents.1765912482.c97b5462718c.242.0 +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ 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 |
+
checkpoint-1066/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-2132/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
checkpoint-3198/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: llama3_cot_finetuned
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Model Card for llama3_cot_finetuned
|
| 16 |
+
|
| 17 |
+
This model is a fine-tuned version of [meta-llama/Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct).
|
| 18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 19 |
+
|
| 20 |
+
## Quick start
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 26 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 28 |
+
print(output["generated_text"])
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training procedure
|
| 32 |
+
|
| 33 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/gsr2149-columbia-university/huggingface/runs/diyvruw0)
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
This model was trained with SFT.
|
| 37 |
+
|
| 38 |
+
### Framework versions
|
| 39 |
+
|
| 40 |
+
- PEFT 0.18.0
|
| 41 |
+
- TRL: 0.26.1
|
| 42 |
+
- Transformers: 4.57.3
|
| 43 |
+
- Pytorch: 2.9.0+cu126
|
| 44 |
+
- Datasets: 4.0.0
|
| 45 |
+
- Tokenizers: 0.22.1
|
| 46 |
+
|
| 47 |
+
## Citations
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
Cite TRL as:
|
| 52 |
+
|
| 53 |
+
```bibtex
|
| 54 |
+
@misc{vonwerra2022trl,
|
| 55 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 56 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 57 |
+
year = 2020,
|
| 58 |
+
journal = {GitHub repository},
|
| 59 |
+
publisher = {GitHub},
|
| 60 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 61 |
+
}
|
| 62 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 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": 24,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"q_proj"
|
| 34 |
+
],
|
| 35 |
+
"target_parameters": null,
|
| 36 |
+
"task_type": "CAUSAL_LM",
|
| 37 |
+
"trainable_token_indices": null,
|
| 38 |
+
"use_dora": false,
|
| 39 |
+
"use_qalora": false,
|
| 40 |
+
"use_rslora": false
|
| 41 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b54df820ee065f28e73fabdacb2f36346384e74c2d4d07dc646ffcea458bb34
|
| 3 |
+
size 27280280
|
checkpoint-1066/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 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.0
|
checkpoint-1066/adapter_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 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": 24,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"q_proj"
|
| 34 |
+
],
|
| 35 |
+
"target_parameters": null,
|
| 36 |
+
"task_type": "CAUSAL_LM",
|
| 37 |
+
"trainable_token_indices": null,
|
| 38 |
+
"use_dora": false,
|
| 39 |
+
"use_qalora": false,
|
| 40 |
+
"use_rslora": false
|
| 41 |
+
}
|
checkpoint-1066/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:939db3bc4ece8b0661cc6e662740d7b75613903f196f73893e489f803469ffaf
|
| 3 |
+
size 27280280
|
checkpoint-1066/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
checkpoint-1066/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4b2da333c6c4855cb495276d14df5e48cf17100e5bd1cebde54edcc73b9503a
|
| 3 |
+
size 27843851
|
checkpoint-1066/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57a925e8810ae926276a372728592c0bc0defa4e14f0235e76c5be8b66d29cc1
|
| 3 |
+
size 14645
|
checkpoint-1066/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d3f8ce642f5027ab2da19fb0cc23dba3718691d985c50f8bc0731463a1a52b3
|
| 3 |
+
size 1465
|
checkpoint-1066/special_tokens_map.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|eot_id|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
}
|
| 16 |
+
}
|
checkpoint-1066/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
checkpoint-1066/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2062 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"128000": {
|
| 4 |
+
"content": "<|begin_of_text|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"128001": {
|
| 12 |
+
"content": "<|end_of_text|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"128002": {
|
| 20 |
+
"content": "<|reserved_special_token_0|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"128003": {
|
| 28 |
+
"content": "<|reserved_special_token_1|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"128004": {
|
| 36 |
+
"content": "<|finetune_right_pad_id|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"128005": {
|
| 44 |
+
"content": "<|reserved_special_token_2|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"128006": {
|
| 52 |
+
"content": "<|start_header_id|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"128007": {
|
| 60 |
+
"content": "<|end_header_id|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"128008": {
|
| 68 |
+
"content": "<|eom_id|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"128009": {
|
| 76 |
+
"content": "<|eot_id|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"128010": {
|
| 84 |
+
"content": "<|python_tag|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"128011": {
|
| 92 |
+
"content": "<|reserved_special_token_3|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"128012": {
|
| 100 |
+
"content": "<|reserved_special_token_4|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"128013": {
|
| 108 |
+
"content": "<|reserved_special_token_5|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"128014": {
|
| 116 |
+
"content": "<|reserved_special_token_6|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"128015": {
|
| 124 |
+
"content": "<|reserved_special_token_7|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"128016": {
|
| 132 |
+
"content": "<|reserved_special_token_8|>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"128017": {
|
| 140 |
+
"content": "<|reserved_special_token_9|>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"128018": {
|
| 148 |
+
"content": "<|reserved_special_token_10|>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"128019": {
|
| 156 |
+
"content": "<|reserved_special_token_11|>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"128020": {
|
| 164 |
+
"content": "<|reserved_special_token_12|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"128021": {
|
| 172 |
+
"content": "<|reserved_special_token_13|>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"128022": {
|
| 180 |
+
"content": "<|reserved_special_token_14|>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"128023": {
|
| 188 |
+
"content": "<|reserved_special_token_15|>",
|
| 189 |
+
"lstrip": false,
|
| 190 |
+
"normalized": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"single_word": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"128024": {
|
| 196 |
+
"content": "<|reserved_special_token_16|>",
|
| 197 |
+
"lstrip": false,
|
| 198 |
+
"normalized": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"single_word": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"128025": {
|
| 204 |
+
"content": "<|reserved_special_token_17|>",
|
| 205 |
+
"lstrip": false,
|
| 206 |
+
"normalized": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"single_word": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"128026": {
|
| 212 |
+
"content": "<|reserved_special_token_18|>",
|
| 213 |
+
"lstrip": false,
|
| 214 |
+
"normalized": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"128027": {
|
| 220 |
+
"content": "<|reserved_special_token_19|>",
|
| 221 |
+
"lstrip": false,
|
| 222 |
+
"normalized": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"single_word": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"128028": {
|
| 228 |
+
"content": "<|reserved_special_token_20|>",
|
| 229 |
+
"lstrip": false,
|
| 230 |
+
"normalized": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"single_word": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"128029": {
|
| 236 |
+
"content": "<|reserved_special_token_21|>",
|
| 237 |
+
"lstrip": false,
|
| 238 |
+
"normalized": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"single_word": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"128030": {
|
| 244 |
+
"content": "<|reserved_special_token_22|>",
|
| 245 |
+
"lstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"single_word": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"128031": {
|
| 252 |
+
"content": "<|reserved_special_token_23|>",
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"normalized": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"single_word": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"128032": {
|
| 260 |
+
"content": "<|reserved_special_token_24|>",
|
| 261 |
+
"lstrip": false,
|
| 262 |
+
"normalized": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"single_word": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"128033": {
|
| 268 |
+
"content": "<|reserved_special_token_25|>",
|
| 269 |
+
"lstrip": false,
|
| 270 |
+
"normalized": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"single_word": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"128034": {
|
| 276 |
+
"content": "<|reserved_special_token_26|>",
|
| 277 |
+
"lstrip": false,
|
| 278 |
+
"normalized": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"single_word": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"128035": {
|
| 284 |
+
"content": "<|reserved_special_token_27|>",
|
| 285 |
+
"lstrip": false,
|
| 286 |
+
"normalized": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"128036": {
|
| 292 |
+
"content": "<|reserved_special_token_28|>",
|
| 293 |
+
"lstrip": false,
|
| 294 |
+
"normalized": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"single_word": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"128037": {
|
| 300 |
+
"content": "<|reserved_special_token_29|>",
|
| 301 |
+
"lstrip": false,
|
| 302 |
+
"normalized": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"single_word": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"128038": {
|
| 308 |
+
"content": "<|reserved_special_token_30|>",
|
| 309 |
+
"lstrip": false,
|
| 310 |
+
"normalized": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"single_word": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"128039": {
|
| 316 |
+
"content": "<|reserved_special_token_31|>",
|
| 317 |
+
"lstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"single_word": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"128040": {
|
| 324 |
+
"content": "<|reserved_special_token_32|>",
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"normalized": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"single_word": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"128041": {
|
| 332 |
+
"content": "<|reserved_special_token_33|>",
|
| 333 |
+
"lstrip": false,
|
| 334 |
+
"normalized": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"single_word": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"128042": {
|
| 340 |
+
"content": "<|reserved_special_token_34|>",
|
| 341 |
+
"lstrip": false,
|
| 342 |
+
"normalized": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"single_word": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"128043": {
|
| 348 |
+
"content": "<|reserved_special_token_35|>",
|
| 349 |
+
"lstrip": false,
|
| 350 |
+
"normalized": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"single_word": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"128044": {
|
| 356 |
+
"content": "<|reserved_special_token_36|>",
|
| 357 |
+
"lstrip": false,
|
| 358 |
+
"normalized": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"128045": {
|
| 364 |
+
"content": "<|reserved_special_token_37|>",
|
| 365 |
+
"lstrip": false,
|
| 366 |
+
"normalized": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"single_word": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"128046": {
|
| 372 |
+
"content": "<|reserved_special_token_38|>",
|
| 373 |
+
"lstrip": false,
|
| 374 |
+
"normalized": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"single_word": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"128047": {
|
| 380 |
+
"content": "<|reserved_special_token_39|>",
|
| 381 |
+
"lstrip": false,
|
| 382 |
+
"normalized": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"single_word": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"128048": {
|
| 388 |
+
"content": "<|reserved_special_token_40|>",
|
| 389 |
+
"lstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"single_word": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"128049": {
|
| 396 |
+
"content": "<|reserved_special_token_41|>",
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"normalized": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"single_word": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"128050": {
|
| 404 |
+
"content": "<|reserved_special_token_42|>",
|
| 405 |
+
"lstrip": false,
|
| 406 |
+
"normalized": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"single_word": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"128051": {
|
| 412 |
+
"content": "<|reserved_special_token_43|>",
|
| 413 |
+
"lstrip": false,
|
| 414 |
+
"normalized": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"single_word": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"128052": {
|
| 420 |
+
"content": "<|reserved_special_token_44|>",
|
| 421 |
+
"lstrip": false,
|
| 422 |
+
"normalized": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"single_word": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"128053": {
|
| 428 |
+
"content": "<|reserved_special_token_45|>",
|
| 429 |
+
"lstrip": false,
|
| 430 |
+
"normalized": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"128054": {
|
| 436 |
+
"content": "<|reserved_special_token_46|>",
|
| 437 |
+
"lstrip": false,
|
| 438 |
+
"normalized": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"single_word": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"128055": {
|
| 444 |
+
"content": "<|reserved_special_token_47|>",
|
| 445 |
+
"lstrip": false,
|
| 446 |
+
"normalized": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"single_word": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"128056": {
|
| 452 |
+
"content": "<|reserved_special_token_48|>",
|
| 453 |
+
"lstrip": false,
|
| 454 |
+
"normalized": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"single_word": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"128057": {
|
| 460 |
+
"content": "<|reserved_special_token_49|>",
|
| 461 |
+
"lstrip": false,
|
| 462 |
+
"normalized": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"single_word": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"128058": {
|
| 468 |
+
"content": "<|reserved_special_token_50|>",
|
| 469 |
+
"lstrip": false,
|
| 470 |
+
"normalized": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"single_word": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"128059": {
|
| 476 |
+
"content": "<|reserved_special_token_51|>",
|
| 477 |
+
"lstrip": false,
|
| 478 |
+
"normalized": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"single_word": false,
|
| 481 |
+
"special": true
|
| 482 |
+
},
|
| 483 |
+
"128060": {
|
| 484 |
+
"content": "<|reserved_special_token_52|>",
|
| 485 |
+
"lstrip": false,
|
| 486 |
+
"normalized": false,
|
| 487 |
+
"rstrip": false,
|
| 488 |
+
"single_word": false,
|
| 489 |
+
"special": true
|
| 490 |
+
},
|
| 491 |
+
"128061": {
|
| 492 |
+
"content": "<|reserved_special_token_53|>",
|
| 493 |
+
"lstrip": false,
|
| 494 |
+
"normalized": false,
|
| 495 |
+
"rstrip": false,
|
| 496 |
+
"single_word": false,
|
| 497 |
+
"special": true
|
| 498 |
+
},
|
| 499 |
+
"128062": {
|
| 500 |
+
"content": "<|reserved_special_token_54|>",
|
| 501 |
+
"lstrip": false,
|
| 502 |
+
"normalized": false,
|
| 503 |
+
"rstrip": false,
|
| 504 |
+
"single_word": false,
|
| 505 |
+
"special": true
|
| 506 |
+
},
|
| 507 |
+
"128063": {
|
| 508 |
+
"content": "<|reserved_special_token_55|>",
|
| 509 |
+
"lstrip": false,
|
| 510 |
+
"normalized": false,
|
| 511 |
+
"rstrip": false,
|
| 512 |
+
"single_word": false,
|
| 513 |
+
"special": true
|
| 514 |
+
},
|
| 515 |
+
"128064": {
|
| 516 |
+
"content": "<|reserved_special_token_56|>",
|
| 517 |
+
"lstrip": false,
|
| 518 |
+
"normalized": false,
|
| 519 |
+
"rstrip": false,
|
| 520 |
+
"single_word": false,
|
| 521 |
+
"special": true
|
| 522 |
+
},
|
| 523 |
+
"128065": {
|
| 524 |
+
"content": "<|reserved_special_token_57|>",
|
| 525 |
+
"lstrip": false,
|
| 526 |
+
"normalized": false,
|
| 527 |
+
"rstrip": false,
|
| 528 |
+
"single_word": false,
|
| 529 |
+
"special": true
|
| 530 |
+
},
|
| 531 |
+
"128066": {
|
| 532 |
+
"content": "<|reserved_special_token_58|>",
|
| 533 |
+
"lstrip": false,
|
| 534 |
+
"normalized": false,
|
| 535 |
+
"rstrip": false,
|
| 536 |
+
"single_word": false,
|
| 537 |
+
"special": true
|
| 538 |
+
},
|
| 539 |
+
"128067": {
|
| 540 |
+
"content": "<|reserved_special_token_59|>",
|
| 541 |
+
"lstrip": false,
|
| 542 |
+
"normalized": false,
|
| 543 |
+
"rstrip": false,
|
| 544 |
+
"single_word": false,
|
| 545 |
+
"special": true
|
| 546 |
+
},
|
| 547 |
+
"128068": {
|
| 548 |
+
"content": "<|reserved_special_token_60|>",
|
| 549 |
+
"lstrip": false,
|
| 550 |
+
"normalized": false,
|
| 551 |
+
"rstrip": false,
|
| 552 |
+
"single_word": false,
|
| 553 |
+
"special": true
|
| 554 |
+
},
|
| 555 |
+
"128069": {
|
| 556 |
+
"content": "<|reserved_special_token_61|>",
|
| 557 |
+
"lstrip": false,
|
| 558 |
+
"normalized": false,
|
| 559 |
+
"rstrip": false,
|
| 560 |
+
"single_word": false,
|
| 561 |
+
"special": true
|
| 562 |
+
},
|
| 563 |
+
"128070": {
|
| 564 |
+
"content": "<|reserved_special_token_62|>",
|
| 565 |
+
"lstrip": false,
|
| 566 |
+
"normalized": false,
|
| 567 |
+
"rstrip": false,
|
| 568 |
+
"single_word": false,
|
| 569 |
+
"special": true
|
| 570 |
+
},
|
| 571 |
+
"128071": {
|
| 572 |
+
"content": "<|reserved_special_token_63|>",
|
| 573 |
+
"lstrip": false,
|
| 574 |
+
"normalized": false,
|
| 575 |
+
"rstrip": false,
|
| 576 |
+
"single_word": false,
|
| 577 |
+
"special": true
|
| 578 |
+
},
|
| 579 |
+
"128072": {
|
| 580 |
+
"content": "<|reserved_special_token_64|>",
|
| 581 |
+
"lstrip": false,
|
| 582 |
+
"normalized": false,
|
| 583 |
+
"rstrip": false,
|
| 584 |
+
"single_word": false,
|
| 585 |
+
"special": true
|
| 586 |
+
},
|
| 587 |
+
"128073": {
|
| 588 |
+
"content": "<|reserved_special_token_65|>",
|
| 589 |
+
"lstrip": false,
|
| 590 |
+
"normalized": false,
|
| 591 |
+
"rstrip": false,
|
| 592 |
+
"single_word": false,
|
| 593 |
+
"special": true
|
| 594 |
+
},
|
| 595 |
+
"128074": {
|
| 596 |
+
"content": "<|reserved_special_token_66|>",
|
| 597 |
+
"lstrip": false,
|
| 598 |
+
"normalized": false,
|
| 599 |
+
"rstrip": false,
|
| 600 |
+
"single_word": false,
|
| 601 |
+
"special": true
|
| 602 |
+
},
|
| 603 |
+
"128075": {
|
| 604 |
+
"content": "<|reserved_special_token_67|>",
|
| 605 |
+
"lstrip": false,
|
| 606 |
+
"normalized": false,
|
| 607 |
+
"rstrip": false,
|
| 608 |
+
"single_word": false,
|
| 609 |
+
"special": true
|
| 610 |
+
},
|
| 611 |
+
"128076": {
|
| 612 |
+
"content": "<|reserved_special_token_68|>",
|
| 613 |
+
"lstrip": false,
|
| 614 |
+
"normalized": false,
|
| 615 |
+
"rstrip": false,
|
| 616 |
+
"single_word": false,
|
| 617 |
+
"special": true
|
| 618 |
+
},
|
| 619 |
+
"128077": {
|
| 620 |
+
"content": "<|reserved_special_token_69|>",
|
| 621 |
+
"lstrip": false,
|
| 622 |
+
"normalized": false,
|
| 623 |
+
"rstrip": false,
|
| 624 |
+
"single_word": false,
|
| 625 |
+
"special": true
|
| 626 |
+
},
|
| 627 |
+
"128078": {
|
| 628 |
+
"content": "<|reserved_special_token_70|>",
|
| 629 |
+
"lstrip": false,
|
| 630 |
+
"normalized": false,
|
| 631 |
+
"rstrip": false,
|
| 632 |
+
"single_word": false,
|
| 633 |
+
"special": true
|
| 634 |
+
},
|
| 635 |
+
"128079": {
|
| 636 |
+
"content": "<|reserved_special_token_71|>",
|
| 637 |
+
"lstrip": false,
|
| 638 |
+
"normalized": false,
|
| 639 |
+
"rstrip": false,
|
| 640 |
+
"single_word": false,
|
| 641 |
+
"special": true
|
| 642 |
+
},
|
| 643 |
+
"128080": {
|
| 644 |
+
"content": "<|reserved_special_token_72|>",
|
| 645 |
+
"lstrip": false,
|
| 646 |
+
"normalized": false,
|
| 647 |
+
"rstrip": false,
|
| 648 |
+
"single_word": false,
|
| 649 |
+
"special": true
|
| 650 |
+
},
|
| 651 |
+
"128081": {
|
| 652 |
+
"content": "<|reserved_special_token_73|>",
|
| 653 |
+
"lstrip": false,
|
| 654 |
+
"normalized": false,
|
| 655 |
+
"rstrip": false,
|
| 656 |
+
"single_word": false,
|
| 657 |
+
"special": true
|
| 658 |
+
},
|
| 659 |
+
"128082": {
|
| 660 |
+
"content": "<|reserved_special_token_74|>",
|
| 661 |
+
"lstrip": false,
|
| 662 |
+
"normalized": false,
|
| 663 |
+
"rstrip": false,
|
| 664 |
+
"single_word": false,
|
| 665 |
+
"special": true
|
| 666 |
+
},
|
| 667 |
+
"128083": {
|
| 668 |
+
"content": "<|reserved_special_token_75|>",
|
| 669 |
+
"lstrip": false,
|
| 670 |
+
"normalized": false,
|
| 671 |
+
"rstrip": false,
|
| 672 |
+
"single_word": false,
|
| 673 |
+
"special": true
|
| 674 |
+
},
|
| 675 |
+
"128084": {
|
| 676 |
+
"content": "<|reserved_special_token_76|>",
|
| 677 |
+
"lstrip": false,
|
| 678 |
+
"normalized": false,
|
| 679 |
+
"rstrip": false,
|
| 680 |
+
"single_word": false,
|
| 681 |
+
"special": true
|
| 682 |
+
},
|
| 683 |
+
"128085": {
|
| 684 |
+
"content": "<|reserved_special_token_77|>",
|
| 685 |
+
"lstrip": false,
|
| 686 |
+
"normalized": false,
|
| 687 |
+
"rstrip": false,
|
| 688 |
+
"single_word": false,
|
| 689 |
+
"special": true
|
| 690 |
+
},
|
| 691 |
+
"128086": {
|
| 692 |
+
"content": "<|reserved_special_token_78|>",
|
| 693 |
+
"lstrip": false,
|
| 694 |
+
"normalized": false,
|
| 695 |
+
"rstrip": false,
|
| 696 |
+
"single_word": false,
|
| 697 |
+
"special": true
|
| 698 |
+
},
|
| 699 |
+
"128087": {
|
| 700 |
+
"content": "<|reserved_special_token_79|>",
|
| 701 |
+
"lstrip": false,
|
| 702 |
+
"normalized": false,
|
| 703 |
+
"rstrip": false,
|
| 704 |
+
"single_word": false,
|
| 705 |
+
"special": true
|
| 706 |
+
},
|
| 707 |
+
"128088": {
|
| 708 |
+
"content": "<|reserved_special_token_80|>",
|
| 709 |
+
"lstrip": false,
|
| 710 |
+
"normalized": false,
|
| 711 |
+
"rstrip": false,
|
| 712 |
+
"single_word": false,
|
| 713 |
+
"special": true
|
| 714 |
+
},
|
| 715 |
+
"128089": {
|
| 716 |
+
"content": "<|reserved_special_token_81|>",
|
| 717 |
+
"lstrip": false,
|
| 718 |
+
"normalized": false,
|
| 719 |
+
"rstrip": false,
|
| 720 |
+
"single_word": false,
|
| 721 |
+
"special": true
|
| 722 |
+
},
|
| 723 |
+
"128090": {
|
| 724 |
+
"content": "<|reserved_special_token_82|>",
|
| 725 |
+
"lstrip": false,
|
| 726 |
+
"normalized": false,
|
| 727 |
+
"rstrip": false,
|
| 728 |
+
"single_word": false,
|
| 729 |
+
"special": true
|
| 730 |
+
},
|
| 731 |
+
"128091": {
|
| 732 |
+
"content": "<|reserved_special_token_83|>",
|
| 733 |
+
"lstrip": false,
|
| 734 |
+
"normalized": false,
|
| 735 |
+
"rstrip": false,
|
| 736 |
+
"single_word": false,
|
| 737 |
+
"special": true
|
| 738 |
+
},
|
| 739 |
+
"128092": {
|
| 740 |
+
"content": "<|reserved_special_token_84|>",
|
| 741 |
+
"lstrip": false,
|
| 742 |
+
"normalized": false,
|
| 743 |
+
"rstrip": false,
|
| 744 |
+
"single_word": false,
|
| 745 |
+
"special": true
|
| 746 |
+
},
|
| 747 |
+
"128093": {
|
| 748 |
+
"content": "<|reserved_special_token_85|>",
|
| 749 |
+
"lstrip": false,
|
| 750 |
+
"normalized": false,
|
| 751 |
+
"rstrip": false,
|
| 752 |
+
"single_word": false,
|
| 753 |
+
"special": true
|
| 754 |
+
},
|
| 755 |
+
"128094": {
|
| 756 |
+
"content": "<|reserved_special_token_86|>",
|
| 757 |
+
"lstrip": false,
|
| 758 |
+
"normalized": false,
|
| 759 |
+
"rstrip": false,
|
| 760 |
+
"single_word": false,
|
| 761 |
+
"special": true
|
| 762 |
+
},
|
| 763 |
+
"128095": {
|
| 764 |
+
"content": "<|reserved_special_token_87|>",
|
| 765 |
+
"lstrip": false,
|
| 766 |
+
"normalized": false,
|
| 767 |
+
"rstrip": false,
|
| 768 |
+
"single_word": false,
|
| 769 |
+
"special": true
|
| 770 |
+
},
|
| 771 |
+
"128096": {
|
| 772 |
+
"content": "<|reserved_special_token_88|>",
|
| 773 |
+
"lstrip": false,
|
| 774 |
+
"normalized": false,
|
| 775 |
+
"rstrip": false,
|
| 776 |
+
"single_word": false,
|
| 777 |
+
"special": true
|
| 778 |
+
},
|
| 779 |
+
"128097": {
|
| 780 |
+
"content": "<|reserved_special_token_89|>",
|
| 781 |
+
"lstrip": false,
|
| 782 |
+
"normalized": false,
|
| 783 |
+
"rstrip": false,
|
| 784 |
+
"single_word": false,
|
| 785 |
+
"special": true
|
| 786 |
+
},
|
| 787 |
+
"128098": {
|
| 788 |
+
"content": "<|reserved_special_token_90|>",
|
| 789 |
+
"lstrip": false,
|
| 790 |
+
"normalized": false,
|
| 791 |
+
"rstrip": false,
|
| 792 |
+
"single_word": false,
|
| 793 |
+
"special": true
|
| 794 |
+
},
|
| 795 |
+
"128099": {
|
| 796 |
+
"content": "<|reserved_special_token_91|>",
|
| 797 |
+
"lstrip": false,
|
| 798 |
+
"normalized": false,
|
| 799 |
+
"rstrip": false,
|
| 800 |
+
"single_word": false,
|
| 801 |
+
"special": true
|
| 802 |
+
},
|
| 803 |
+
"128100": {
|
| 804 |
+
"content": "<|reserved_special_token_92|>",
|
| 805 |
+
"lstrip": false,
|
| 806 |
+
"normalized": false,
|
| 807 |
+
"rstrip": false,
|
| 808 |
+
"single_word": false,
|
| 809 |
+
"special": true
|
| 810 |
+
},
|
| 811 |
+
"128101": {
|
| 812 |
+
"content": "<|reserved_special_token_93|>",
|
| 813 |
+
"lstrip": false,
|
| 814 |
+
"normalized": false,
|
| 815 |
+
"rstrip": false,
|
| 816 |
+
"single_word": false,
|
| 817 |
+
"special": true
|
| 818 |
+
},
|
| 819 |
+
"128102": {
|
| 820 |
+
"content": "<|reserved_special_token_94|>",
|
| 821 |
+
"lstrip": false,
|
| 822 |
+
"normalized": false,
|
| 823 |
+
"rstrip": false,
|
| 824 |
+
"single_word": false,
|
| 825 |
+
"special": true
|
| 826 |
+
},
|
| 827 |
+
"128103": {
|
| 828 |
+
"content": "<|reserved_special_token_95|>",
|
| 829 |
+
"lstrip": false,
|
| 830 |
+
"normalized": false,
|
| 831 |
+
"rstrip": false,
|
| 832 |
+
"single_word": false,
|
| 833 |
+
"special": true
|
| 834 |
+
},
|
| 835 |
+
"128104": {
|
| 836 |
+
"content": "<|reserved_special_token_96|>",
|
| 837 |
+
"lstrip": false,
|
| 838 |
+
"normalized": false,
|
| 839 |
+
"rstrip": false,
|
| 840 |
+
"single_word": false,
|
| 841 |
+
"special": true
|
| 842 |
+
},
|
| 843 |
+
"128105": {
|
| 844 |
+
"content": "<|reserved_special_token_97|>",
|
| 845 |
+
"lstrip": false,
|
| 846 |
+
"normalized": false,
|
| 847 |
+
"rstrip": false,
|
| 848 |
+
"single_word": false,
|
| 849 |
+
"special": true
|
| 850 |
+
},
|
| 851 |
+
"128106": {
|
| 852 |
+
"content": "<|reserved_special_token_98|>",
|
| 853 |
+
"lstrip": false,
|
| 854 |
+
"normalized": false,
|
| 855 |
+
"rstrip": false,
|
| 856 |
+
"single_word": false,
|
| 857 |
+
"special": true
|
| 858 |
+
},
|
| 859 |
+
"128107": {
|
| 860 |
+
"content": "<|reserved_special_token_99|>",
|
| 861 |
+
"lstrip": false,
|
| 862 |
+
"normalized": false,
|
| 863 |
+
"rstrip": false,
|
| 864 |
+
"single_word": false,
|
| 865 |
+
"special": true
|
| 866 |
+
},
|
| 867 |
+
"128108": {
|
| 868 |
+
"content": "<|reserved_special_token_100|>",
|
| 869 |
+
"lstrip": false,
|
| 870 |
+
"normalized": false,
|
| 871 |
+
"rstrip": false,
|
| 872 |
+
"single_word": false,
|
| 873 |
+
"special": true
|
| 874 |
+
},
|
| 875 |
+
"128109": {
|
| 876 |
+
"content": "<|reserved_special_token_101|>",
|
| 877 |
+
"lstrip": false,
|
| 878 |
+
"normalized": false,
|
| 879 |
+
"rstrip": false,
|
| 880 |
+
"single_word": false,
|
| 881 |
+
"special": true
|
| 882 |
+
},
|
| 883 |
+
"128110": {
|
| 884 |
+
"content": "<|reserved_special_token_102|>",
|
| 885 |
+
"lstrip": false,
|
| 886 |
+
"normalized": false,
|
| 887 |
+
"rstrip": false,
|
| 888 |
+
"single_word": false,
|
| 889 |
+
"special": true
|
| 890 |
+
},
|
| 891 |
+
"128111": {
|
| 892 |
+
"content": "<|reserved_special_token_103|>",
|
| 893 |
+
"lstrip": false,
|
| 894 |
+
"normalized": false,
|
| 895 |
+
"rstrip": false,
|
| 896 |
+
"single_word": false,
|
| 897 |
+
"special": true
|
| 898 |
+
},
|
| 899 |
+
"128112": {
|
| 900 |
+
"content": "<|reserved_special_token_104|>",
|
| 901 |
+
"lstrip": false,
|
| 902 |
+
"normalized": false,
|
| 903 |
+
"rstrip": false,
|
| 904 |
+
"single_word": false,
|
| 905 |
+
"special": true
|
| 906 |
+
},
|
| 907 |
+
"128113": {
|
| 908 |
+
"content": "<|reserved_special_token_105|>",
|
| 909 |
+
"lstrip": false,
|
| 910 |
+
"normalized": false,
|
| 911 |
+
"rstrip": false,
|
| 912 |
+
"single_word": false,
|
| 913 |
+
"special": true
|
| 914 |
+
},
|
| 915 |
+
"128114": {
|
| 916 |
+
"content": "<|reserved_special_token_106|>",
|
| 917 |
+
"lstrip": false,
|
| 918 |
+
"normalized": false,
|
| 919 |
+
"rstrip": false,
|
| 920 |
+
"single_word": false,
|
| 921 |
+
"special": true
|
| 922 |
+
},
|
| 923 |
+
"128115": {
|
| 924 |
+
"content": "<|reserved_special_token_107|>",
|
| 925 |
+
"lstrip": false,
|
| 926 |
+
"normalized": false,
|
| 927 |
+
"rstrip": false,
|
| 928 |
+
"single_word": false,
|
| 929 |
+
"special": true
|
| 930 |
+
},
|
| 931 |
+
"128116": {
|
| 932 |
+
"content": "<|reserved_special_token_108|>",
|
| 933 |
+
"lstrip": false,
|
| 934 |
+
"normalized": false,
|
| 935 |
+
"rstrip": false,
|
| 936 |
+
"single_word": false,
|
| 937 |
+
"special": true
|
| 938 |
+
},
|
| 939 |
+
"128117": {
|
| 940 |
+
"content": "<|reserved_special_token_109|>",
|
| 941 |
+
"lstrip": false,
|
| 942 |
+
"normalized": false,
|
| 943 |
+
"rstrip": false,
|
| 944 |
+
"single_word": false,
|
| 945 |
+
"special": true
|
| 946 |
+
},
|
| 947 |
+
"128118": {
|
| 948 |
+
"content": "<|reserved_special_token_110|>",
|
| 949 |
+
"lstrip": false,
|
| 950 |
+
"normalized": false,
|
| 951 |
+
"rstrip": false,
|
| 952 |
+
"single_word": false,
|
| 953 |
+
"special": true
|
| 954 |
+
},
|
| 955 |
+
"128119": {
|
| 956 |
+
"content": "<|reserved_special_token_111|>",
|
| 957 |
+
"lstrip": false,
|
| 958 |
+
"normalized": false,
|
| 959 |
+
"rstrip": false,
|
| 960 |
+
"single_word": false,
|
| 961 |
+
"special": true
|
| 962 |
+
},
|
| 963 |
+
"128120": {
|
| 964 |
+
"content": "<|reserved_special_token_112|>",
|
| 965 |
+
"lstrip": false,
|
| 966 |
+
"normalized": false,
|
| 967 |
+
"rstrip": false,
|
| 968 |
+
"single_word": false,
|
| 969 |
+
"special": true
|
| 970 |
+
},
|
| 971 |
+
"128121": {
|
| 972 |
+
"content": "<|reserved_special_token_113|>",
|
| 973 |
+
"lstrip": false,
|
| 974 |
+
"normalized": false,
|
| 975 |
+
"rstrip": false,
|
| 976 |
+
"single_word": false,
|
| 977 |
+
"special": true
|
| 978 |
+
},
|
| 979 |
+
"128122": {
|
| 980 |
+
"content": "<|reserved_special_token_114|>",
|
| 981 |
+
"lstrip": false,
|
| 982 |
+
"normalized": false,
|
| 983 |
+
"rstrip": false,
|
| 984 |
+
"single_word": false,
|
| 985 |
+
"special": true
|
| 986 |
+
},
|
| 987 |
+
"128123": {
|
| 988 |
+
"content": "<|reserved_special_token_115|>",
|
| 989 |
+
"lstrip": false,
|
| 990 |
+
"normalized": false,
|
| 991 |
+
"rstrip": false,
|
| 992 |
+
"single_word": false,
|
| 993 |
+
"special": true
|
| 994 |
+
},
|
| 995 |
+
"128124": {
|
| 996 |
+
"content": "<|reserved_special_token_116|>",
|
| 997 |
+
"lstrip": false,
|
| 998 |
+
"normalized": false,
|
| 999 |
+
"rstrip": false,
|
| 1000 |
+
"single_word": false,
|
| 1001 |
+
"special": true
|
| 1002 |
+
},
|
| 1003 |
+
"128125": {
|
| 1004 |
+
"content": "<|reserved_special_token_117|>",
|
| 1005 |
+
"lstrip": false,
|
| 1006 |
+
"normalized": false,
|
| 1007 |
+
"rstrip": false,
|
| 1008 |
+
"single_word": false,
|
| 1009 |
+
"special": true
|
| 1010 |
+
},
|
| 1011 |
+
"128126": {
|
| 1012 |
+
"content": "<|reserved_special_token_118|>",
|
| 1013 |
+
"lstrip": false,
|
| 1014 |
+
"normalized": false,
|
| 1015 |
+
"rstrip": false,
|
| 1016 |
+
"single_word": false,
|
| 1017 |
+
"special": true
|
| 1018 |
+
},
|
| 1019 |
+
"128127": {
|
| 1020 |
+
"content": "<|reserved_special_token_119|>",
|
| 1021 |
+
"lstrip": false,
|
| 1022 |
+
"normalized": false,
|
| 1023 |
+
"rstrip": false,
|
| 1024 |
+
"single_word": false,
|
| 1025 |
+
"special": true
|
| 1026 |
+
},
|
| 1027 |
+
"128128": {
|
| 1028 |
+
"content": "<|reserved_special_token_120|>",
|
| 1029 |
+
"lstrip": false,
|
| 1030 |
+
"normalized": false,
|
| 1031 |
+
"rstrip": false,
|
| 1032 |
+
"single_word": false,
|
| 1033 |
+
"special": true
|
| 1034 |
+
},
|
| 1035 |
+
"128129": {
|
| 1036 |
+
"content": "<|reserved_special_token_121|>",
|
| 1037 |
+
"lstrip": false,
|
| 1038 |
+
"normalized": false,
|
| 1039 |
+
"rstrip": false,
|
| 1040 |
+
"single_word": false,
|
| 1041 |
+
"special": true
|
| 1042 |
+
},
|
| 1043 |
+
"128130": {
|
| 1044 |
+
"content": "<|reserved_special_token_122|>",
|
| 1045 |
+
"lstrip": false,
|
| 1046 |
+
"normalized": false,
|
| 1047 |
+
"rstrip": false,
|
| 1048 |
+
"single_word": false,
|
| 1049 |
+
"special": true
|
| 1050 |
+
},
|
| 1051 |
+
"128131": {
|
| 1052 |
+
"content": "<|reserved_special_token_123|>",
|
| 1053 |
+
"lstrip": false,
|
| 1054 |
+
"normalized": false,
|
| 1055 |
+
"rstrip": false,
|
| 1056 |
+
"single_word": false,
|
| 1057 |
+
"special": true
|
| 1058 |
+
},
|
| 1059 |
+
"128132": {
|
| 1060 |
+
"content": "<|reserved_special_token_124|>",
|
| 1061 |
+
"lstrip": false,
|
| 1062 |
+
"normalized": false,
|
| 1063 |
+
"rstrip": false,
|
| 1064 |
+
"single_word": false,
|
| 1065 |
+
"special": true
|
| 1066 |
+
},
|
| 1067 |
+
"128133": {
|
| 1068 |
+
"content": "<|reserved_special_token_125|>",
|
| 1069 |
+
"lstrip": false,
|
| 1070 |
+
"normalized": false,
|
| 1071 |
+
"rstrip": false,
|
| 1072 |
+
"single_word": false,
|
| 1073 |
+
"special": true
|
| 1074 |
+
},
|
| 1075 |
+
"128134": {
|
| 1076 |
+
"content": "<|reserved_special_token_126|>",
|
| 1077 |
+
"lstrip": false,
|
| 1078 |
+
"normalized": false,
|
| 1079 |
+
"rstrip": false,
|
| 1080 |
+
"single_word": false,
|
| 1081 |
+
"special": true
|
| 1082 |
+
},
|
| 1083 |
+
"128135": {
|
| 1084 |
+
"content": "<|reserved_special_token_127|>",
|
| 1085 |
+
"lstrip": false,
|
| 1086 |
+
"normalized": false,
|
| 1087 |
+
"rstrip": false,
|
| 1088 |
+
"single_word": false,
|
| 1089 |
+
"special": true
|
| 1090 |
+
},
|
| 1091 |
+
"128136": {
|
| 1092 |
+
"content": "<|reserved_special_token_128|>",
|
| 1093 |
+
"lstrip": false,
|
| 1094 |
+
"normalized": false,
|
| 1095 |
+
"rstrip": false,
|
| 1096 |
+
"single_word": false,
|
| 1097 |
+
"special": true
|
| 1098 |
+
},
|
| 1099 |
+
"128137": {
|
| 1100 |
+
"content": "<|reserved_special_token_129|>",
|
| 1101 |
+
"lstrip": false,
|
| 1102 |
+
"normalized": false,
|
| 1103 |
+
"rstrip": false,
|
| 1104 |
+
"single_word": false,
|
| 1105 |
+
"special": true
|
| 1106 |
+
},
|
| 1107 |
+
"128138": {
|
| 1108 |
+
"content": "<|reserved_special_token_130|>",
|
| 1109 |
+
"lstrip": false,
|
| 1110 |
+
"normalized": false,
|
| 1111 |
+
"rstrip": false,
|
| 1112 |
+
"single_word": false,
|
| 1113 |
+
"special": true
|
| 1114 |
+
},
|
| 1115 |
+
"128139": {
|
| 1116 |
+
"content": "<|reserved_special_token_131|>",
|
| 1117 |
+
"lstrip": false,
|
| 1118 |
+
"normalized": false,
|
| 1119 |
+
"rstrip": false,
|
| 1120 |
+
"single_word": false,
|
| 1121 |
+
"special": true
|
| 1122 |
+
},
|
| 1123 |
+
"128140": {
|
| 1124 |
+
"content": "<|reserved_special_token_132|>",
|
| 1125 |
+
"lstrip": false,
|
| 1126 |
+
"normalized": false,
|
| 1127 |
+
"rstrip": false,
|
| 1128 |
+
"single_word": false,
|
| 1129 |
+
"special": true
|
| 1130 |
+
},
|
| 1131 |
+
"128141": {
|
| 1132 |
+
"content": "<|reserved_special_token_133|>",
|
| 1133 |
+
"lstrip": false,
|
| 1134 |
+
"normalized": false,
|
| 1135 |
+
"rstrip": false,
|
| 1136 |
+
"single_word": false,
|
| 1137 |
+
"special": true
|
| 1138 |
+
},
|
| 1139 |
+
"128142": {
|
| 1140 |
+
"content": "<|reserved_special_token_134|>",
|
| 1141 |
+
"lstrip": false,
|
| 1142 |
+
"normalized": false,
|
| 1143 |
+
"rstrip": false,
|
| 1144 |
+
"single_word": false,
|
| 1145 |
+
"special": true
|
| 1146 |
+
},
|
| 1147 |
+
"128143": {
|
| 1148 |
+
"content": "<|reserved_special_token_135|>",
|
| 1149 |
+
"lstrip": false,
|
| 1150 |
+
"normalized": false,
|
| 1151 |
+
"rstrip": false,
|
| 1152 |
+
"single_word": false,
|
| 1153 |
+
"special": true
|
| 1154 |
+
},
|
| 1155 |
+
"128144": {
|
| 1156 |
+
"content": "<|reserved_special_token_136|>",
|
| 1157 |
+
"lstrip": false,
|
| 1158 |
+
"normalized": false,
|
| 1159 |
+
"rstrip": false,
|
| 1160 |
+
"single_word": false,
|
| 1161 |
+
"special": true
|
| 1162 |
+
},
|
| 1163 |
+
"128145": {
|
| 1164 |
+
"content": "<|reserved_special_token_137|>",
|
| 1165 |
+
"lstrip": false,
|
| 1166 |
+
"normalized": false,
|
| 1167 |
+
"rstrip": false,
|
| 1168 |
+
"single_word": false,
|
| 1169 |
+
"special": true
|
| 1170 |
+
},
|
| 1171 |
+
"128146": {
|
| 1172 |
+
"content": "<|reserved_special_token_138|>",
|
| 1173 |
+
"lstrip": false,
|
| 1174 |
+
"normalized": false,
|
| 1175 |
+
"rstrip": false,
|
| 1176 |
+
"single_word": false,
|
| 1177 |
+
"special": true
|
| 1178 |
+
},
|
| 1179 |
+
"128147": {
|
| 1180 |
+
"content": "<|reserved_special_token_139|>",
|
| 1181 |
+
"lstrip": false,
|
| 1182 |
+
"normalized": false,
|
| 1183 |
+
"rstrip": false,
|
| 1184 |
+
"single_word": false,
|
| 1185 |
+
"special": true
|
| 1186 |
+
},
|
| 1187 |
+
"128148": {
|
| 1188 |
+
"content": "<|reserved_special_token_140|>",
|
| 1189 |
+
"lstrip": false,
|
| 1190 |
+
"normalized": false,
|
| 1191 |
+
"rstrip": false,
|
| 1192 |
+
"single_word": false,
|
| 1193 |
+
"special": true
|
| 1194 |
+
},
|
| 1195 |
+
"128149": {
|
| 1196 |
+
"content": "<|reserved_special_token_141|>",
|
| 1197 |
+
"lstrip": false,
|
| 1198 |
+
"normalized": false,
|
| 1199 |
+
"rstrip": false,
|
| 1200 |
+
"single_word": false,
|
| 1201 |
+
"special": true
|
| 1202 |
+
},
|
| 1203 |
+
"128150": {
|
| 1204 |
+
"content": "<|reserved_special_token_142|>",
|
| 1205 |
+
"lstrip": false,
|
| 1206 |
+
"normalized": false,
|
| 1207 |
+
"rstrip": false,
|
| 1208 |
+
"single_word": false,
|
| 1209 |
+
"special": true
|
| 1210 |
+
},
|
| 1211 |
+
"128151": {
|
| 1212 |
+
"content": "<|reserved_special_token_143|>",
|
| 1213 |
+
"lstrip": false,
|
| 1214 |
+
"normalized": false,
|
| 1215 |
+
"rstrip": false,
|
| 1216 |
+
"single_word": false,
|
| 1217 |
+
"special": true
|
| 1218 |
+
},
|
| 1219 |
+
"128152": {
|
| 1220 |
+
"content": "<|reserved_special_token_144|>",
|
| 1221 |
+
"lstrip": false,
|
| 1222 |
+
"normalized": false,
|
| 1223 |
+
"rstrip": false,
|
| 1224 |
+
"single_word": false,
|
| 1225 |
+
"special": true
|
| 1226 |
+
},
|
| 1227 |
+
"128153": {
|
| 1228 |
+
"content": "<|reserved_special_token_145|>",
|
| 1229 |
+
"lstrip": false,
|
| 1230 |
+
"normalized": false,
|
| 1231 |
+
"rstrip": false,
|
| 1232 |
+
"single_word": false,
|
| 1233 |
+
"special": true
|
| 1234 |
+
},
|
| 1235 |
+
"128154": {
|
| 1236 |
+
"content": "<|reserved_special_token_146|>",
|
| 1237 |
+
"lstrip": false,
|
| 1238 |
+
"normalized": false,
|
| 1239 |
+
"rstrip": false,
|
| 1240 |
+
"single_word": false,
|
| 1241 |
+
"special": true
|
| 1242 |
+
},
|
| 1243 |
+
"128155": {
|
| 1244 |
+
"content": "<|reserved_special_token_147|>",
|
| 1245 |
+
"lstrip": false,
|
| 1246 |
+
"normalized": false,
|
| 1247 |
+
"rstrip": false,
|
| 1248 |
+
"single_word": false,
|
| 1249 |
+
"special": true
|
| 1250 |
+
},
|
| 1251 |
+
"128156": {
|
| 1252 |
+
"content": "<|reserved_special_token_148|>",
|
| 1253 |
+
"lstrip": false,
|
| 1254 |
+
"normalized": false,
|
| 1255 |
+
"rstrip": false,
|
| 1256 |
+
"single_word": false,
|
| 1257 |
+
"special": true
|
| 1258 |
+
},
|
| 1259 |
+
"128157": {
|
| 1260 |
+
"content": "<|reserved_special_token_149|>",
|
| 1261 |
+
"lstrip": false,
|
| 1262 |
+
"normalized": false,
|
| 1263 |
+
"rstrip": false,
|
| 1264 |
+
"single_word": false,
|
| 1265 |
+
"special": true
|
| 1266 |
+
},
|
| 1267 |
+
"128158": {
|
| 1268 |
+
"content": "<|reserved_special_token_150|>",
|
| 1269 |
+
"lstrip": false,
|
| 1270 |
+
"normalized": false,
|
| 1271 |
+
"rstrip": false,
|
| 1272 |
+
"single_word": false,
|
| 1273 |
+
"special": true
|
| 1274 |
+
},
|
| 1275 |
+
"128159": {
|
| 1276 |
+
"content": "<|reserved_special_token_151|>",
|
| 1277 |
+
"lstrip": false,
|
| 1278 |
+
"normalized": false,
|
| 1279 |
+
"rstrip": false,
|
| 1280 |
+
"single_word": false,
|
| 1281 |
+
"special": true
|
| 1282 |
+
},
|
| 1283 |
+
"128160": {
|
| 1284 |
+
"content": "<|reserved_special_token_152|>",
|
| 1285 |
+
"lstrip": false,
|
| 1286 |
+
"normalized": false,
|
| 1287 |
+
"rstrip": false,
|
| 1288 |
+
"single_word": false,
|
| 1289 |
+
"special": true
|
| 1290 |
+
},
|
| 1291 |
+
"128161": {
|
| 1292 |
+
"content": "<|reserved_special_token_153|>",
|
| 1293 |
+
"lstrip": false,
|
| 1294 |
+
"normalized": false,
|
| 1295 |
+
"rstrip": false,
|
| 1296 |
+
"single_word": false,
|
| 1297 |
+
"special": true
|
| 1298 |
+
},
|
| 1299 |
+
"128162": {
|
| 1300 |
+
"content": "<|reserved_special_token_154|>",
|
| 1301 |
+
"lstrip": false,
|
| 1302 |
+
"normalized": false,
|
| 1303 |
+
"rstrip": false,
|
| 1304 |
+
"single_word": false,
|
| 1305 |
+
"special": true
|
| 1306 |
+
},
|
| 1307 |
+
"128163": {
|
| 1308 |
+
"content": "<|reserved_special_token_155|>",
|
| 1309 |
+
"lstrip": false,
|
| 1310 |
+
"normalized": false,
|
| 1311 |
+
"rstrip": false,
|
| 1312 |
+
"single_word": false,
|
| 1313 |
+
"special": true
|
| 1314 |
+
},
|
| 1315 |
+
"128164": {
|
| 1316 |
+
"content": "<|reserved_special_token_156|>",
|
| 1317 |
+
"lstrip": false,
|
| 1318 |
+
"normalized": false,
|
| 1319 |
+
"rstrip": false,
|
| 1320 |
+
"single_word": false,
|
| 1321 |
+
"special": true
|
| 1322 |
+
},
|
| 1323 |
+
"128165": {
|
| 1324 |
+
"content": "<|reserved_special_token_157|>",
|
| 1325 |
+
"lstrip": false,
|
| 1326 |
+
"normalized": false,
|
| 1327 |
+
"rstrip": false,
|
| 1328 |
+
"single_word": false,
|
| 1329 |
+
"special": true
|
| 1330 |
+
},
|
| 1331 |
+
"128166": {
|
| 1332 |
+
"content": "<|reserved_special_token_158|>",
|
| 1333 |
+
"lstrip": false,
|
| 1334 |
+
"normalized": false,
|
| 1335 |
+
"rstrip": false,
|
| 1336 |
+
"single_word": false,
|
| 1337 |
+
"special": true
|
| 1338 |
+
},
|
| 1339 |
+
"128167": {
|
| 1340 |
+
"content": "<|reserved_special_token_159|>",
|
| 1341 |
+
"lstrip": false,
|
| 1342 |
+
"normalized": false,
|
| 1343 |
+
"rstrip": false,
|
| 1344 |
+
"single_word": false,
|
| 1345 |
+
"special": true
|
| 1346 |
+
},
|
| 1347 |
+
"128168": {
|
| 1348 |
+
"content": "<|reserved_special_token_160|>",
|
| 1349 |
+
"lstrip": false,
|
| 1350 |
+
"normalized": false,
|
| 1351 |
+
"rstrip": false,
|
| 1352 |
+
"single_word": false,
|
| 1353 |
+
"special": true
|
| 1354 |
+
},
|
| 1355 |
+
"128169": {
|
| 1356 |
+
"content": "<|reserved_special_token_161|>",
|
| 1357 |
+
"lstrip": false,
|
| 1358 |
+
"normalized": false,
|
| 1359 |
+
"rstrip": false,
|
| 1360 |
+
"single_word": false,
|
| 1361 |
+
"special": true
|
| 1362 |
+
},
|
| 1363 |
+
"128170": {
|
| 1364 |
+
"content": "<|reserved_special_token_162|>",
|
| 1365 |
+
"lstrip": false,
|
| 1366 |
+
"normalized": false,
|
| 1367 |
+
"rstrip": false,
|
| 1368 |
+
"single_word": false,
|
| 1369 |
+
"special": true
|
| 1370 |
+
},
|
| 1371 |
+
"128171": {
|
| 1372 |
+
"content": "<|reserved_special_token_163|>",
|
| 1373 |
+
"lstrip": false,
|
| 1374 |
+
"normalized": false,
|
| 1375 |
+
"rstrip": false,
|
| 1376 |
+
"single_word": false,
|
| 1377 |
+
"special": true
|
| 1378 |
+
},
|
| 1379 |
+
"128172": {
|
| 1380 |
+
"content": "<|reserved_special_token_164|>",
|
| 1381 |
+
"lstrip": false,
|
| 1382 |
+
"normalized": false,
|
| 1383 |
+
"rstrip": false,
|
| 1384 |
+
"single_word": false,
|
| 1385 |
+
"special": true
|
| 1386 |
+
},
|
| 1387 |
+
"128173": {
|
| 1388 |
+
"content": "<|reserved_special_token_165|>",
|
| 1389 |
+
"lstrip": false,
|
| 1390 |
+
"normalized": false,
|
| 1391 |
+
"rstrip": false,
|
| 1392 |
+
"single_word": false,
|
| 1393 |
+
"special": true
|
| 1394 |
+
},
|
| 1395 |
+
"128174": {
|
| 1396 |
+
"content": "<|reserved_special_token_166|>",
|
| 1397 |
+
"lstrip": false,
|
| 1398 |
+
"normalized": false,
|
| 1399 |
+
"rstrip": false,
|
| 1400 |
+
"single_word": false,
|
| 1401 |
+
"special": true
|
| 1402 |
+
},
|
| 1403 |
+
"128175": {
|
| 1404 |
+
"content": "<|reserved_special_token_167|>",
|
| 1405 |
+
"lstrip": false,
|
| 1406 |
+
"normalized": false,
|
| 1407 |
+
"rstrip": false,
|
| 1408 |
+
"single_word": false,
|
| 1409 |
+
"special": true
|
| 1410 |
+
},
|
| 1411 |
+
"128176": {
|
| 1412 |
+
"content": "<|reserved_special_token_168|>",
|
| 1413 |
+
"lstrip": false,
|
| 1414 |
+
"normalized": false,
|
| 1415 |
+
"rstrip": false,
|
| 1416 |
+
"single_word": false,
|
| 1417 |
+
"special": true
|
| 1418 |
+
},
|
| 1419 |
+
"128177": {
|
| 1420 |
+
"content": "<|reserved_special_token_169|>",
|
| 1421 |
+
"lstrip": false,
|
| 1422 |
+
"normalized": false,
|
| 1423 |
+
"rstrip": false,
|
| 1424 |
+
"single_word": false,
|
| 1425 |
+
"special": true
|
| 1426 |
+
},
|
| 1427 |
+
"128178": {
|
| 1428 |
+
"content": "<|reserved_special_token_170|>",
|
| 1429 |
+
"lstrip": false,
|
| 1430 |
+
"normalized": false,
|
| 1431 |
+
"rstrip": false,
|
| 1432 |
+
"single_word": false,
|
| 1433 |
+
"special": true
|
| 1434 |
+
},
|
| 1435 |
+
"128179": {
|
| 1436 |
+
"content": "<|reserved_special_token_171|>",
|
| 1437 |
+
"lstrip": false,
|
| 1438 |
+
"normalized": false,
|
| 1439 |
+
"rstrip": false,
|
| 1440 |
+
"single_word": false,
|
| 1441 |
+
"special": true
|
| 1442 |
+
},
|
| 1443 |
+
"128180": {
|
| 1444 |
+
"content": "<|reserved_special_token_172|>",
|
| 1445 |
+
"lstrip": false,
|
| 1446 |
+
"normalized": false,
|
| 1447 |
+
"rstrip": false,
|
| 1448 |
+
"single_word": false,
|
| 1449 |
+
"special": true
|
| 1450 |
+
},
|
| 1451 |
+
"128181": {
|
| 1452 |
+
"content": "<|reserved_special_token_173|>",
|
| 1453 |
+
"lstrip": false,
|
| 1454 |
+
"normalized": false,
|
| 1455 |
+
"rstrip": false,
|
| 1456 |
+
"single_word": false,
|
| 1457 |
+
"special": true
|
| 1458 |
+
},
|
| 1459 |
+
"128182": {
|
| 1460 |
+
"content": "<|reserved_special_token_174|>",
|
| 1461 |
+
"lstrip": false,
|
| 1462 |
+
"normalized": false,
|
| 1463 |
+
"rstrip": false,
|
| 1464 |
+
"single_word": false,
|
| 1465 |
+
"special": true
|
| 1466 |
+
},
|
| 1467 |
+
"128183": {
|
| 1468 |
+
"content": "<|reserved_special_token_175|>",
|
| 1469 |
+
"lstrip": false,
|
| 1470 |
+
"normalized": false,
|
| 1471 |
+
"rstrip": false,
|
| 1472 |
+
"single_word": false,
|
| 1473 |
+
"special": true
|
| 1474 |
+
},
|
| 1475 |
+
"128184": {
|
| 1476 |
+
"content": "<|reserved_special_token_176|>",
|
| 1477 |
+
"lstrip": false,
|
| 1478 |
+
"normalized": false,
|
| 1479 |
+
"rstrip": false,
|
| 1480 |
+
"single_word": false,
|
| 1481 |
+
"special": true
|
| 1482 |
+
},
|
| 1483 |
+
"128185": {
|
| 1484 |
+
"content": "<|reserved_special_token_177|>",
|
| 1485 |
+
"lstrip": false,
|
| 1486 |
+
"normalized": false,
|
| 1487 |
+
"rstrip": false,
|
| 1488 |
+
"single_word": false,
|
| 1489 |
+
"special": true
|
| 1490 |
+
},
|
| 1491 |
+
"128186": {
|
| 1492 |
+
"content": "<|reserved_special_token_178|>",
|
| 1493 |
+
"lstrip": false,
|
| 1494 |
+
"normalized": false,
|
| 1495 |
+
"rstrip": false,
|
| 1496 |
+
"single_word": false,
|
| 1497 |
+
"special": true
|
| 1498 |
+
},
|
| 1499 |
+
"128187": {
|
| 1500 |
+
"content": "<|reserved_special_token_179|>",
|
| 1501 |
+
"lstrip": false,
|
| 1502 |
+
"normalized": false,
|
| 1503 |
+
"rstrip": false,
|
| 1504 |
+
"single_word": false,
|
| 1505 |
+
"special": true
|
| 1506 |
+
},
|
| 1507 |
+
"128188": {
|
| 1508 |
+
"content": "<|reserved_special_token_180|>",
|
| 1509 |
+
"lstrip": false,
|
| 1510 |
+
"normalized": false,
|
| 1511 |
+
"rstrip": false,
|
| 1512 |
+
"single_word": false,
|
| 1513 |
+
"special": true
|
| 1514 |
+
},
|
| 1515 |
+
"128189": {
|
| 1516 |
+
"content": "<|reserved_special_token_181|>",
|
| 1517 |
+
"lstrip": false,
|
| 1518 |
+
"normalized": false,
|
| 1519 |
+
"rstrip": false,
|
| 1520 |
+
"single_word": false,
|
| 1521 |
+
"special": true
|
| 1522 |
+
},
|
| 1523 |
+
"128190": {
|
| 1524 |
+
"content": "<|reserved_special_token_182|>",
|
| 1525 |
+
"lstrip": false,
|
| 1526 |
+
"normalized": false,
|
| 1527 |
+
"rstrip": false,
|
| 1528 |
+
"single_word": false,
|
| 1529 |
+
"special": true
|
| 1530 |
+
},
|
| 1531 |
+
"128191": {
|
| 1532 |
+
"content": "<|reserved_special_token_183|>",
|
| 1533 |
+
"lstrip": false,
|
| 1534 |
+
"normalized": false,
|
| 1535 |
+
"rstrip": false,
|
| 1536 |
+
"single_word": false,
|
| 1537 |
+
"special": true
|
| 1538 |
+
},
|
| 1539 |
+
"128192": {
|
| 1540 |
+
"content": "<|reserved_special_token_184|>",
|
| 1541 |
+
"lstrip": false,
|
| 1542 |
+
"normalized": false,
|
| 1543 |
+
"rstrip": false,
|
| 1544 |
+
"single_word": false,
|
| 1545 |
+
"special": true
|
| 1546 |
+
},
|
| 1547 |
+
"128193": {
|
| 1548 |
+
"content": "<|reserved_special_token_185|>",
|
| 1549 |
+
"lstrip": false,
|
| 1550 |
+
"normalized": false,
|
| 1551 |
+
"rstrip": false,
|
| 1552 |
+
"single_word": false,
|
| 1553 |
+
"special": true
|
| 1554 |
+
},
|
| 1555 |
+
"128194": {
|
| 1556 |
+
"content": "<|reserved_special_token_186|>",
|
| 1557 |
+
"lstrip": false,
|
| 1558 |
+
"normalized": false,
|
| 1559 |
+
"rstrip": false,
|
| 1560 |
+
"single_word": false,
|
| 1561 |
+
"special": true
|
| 1562 |
+
},
|
| 1563 |
+
"128195": {
|
| 1564 |
+
"content": "<|reserved_special_token_187|>",
|
| 1565 |
+
"lstrip": false,
|
| 1566 |
+
"normalized": false,
|
| 1567 |
+
"rstrip": false,
|
| 1568 |
+
"single_word": false,
|
| 1569 |
+
"special": true
|
| 1570 |
+
},
|
| 1571 |
+
"128196": {
|
| 1572 |
+
"content": "<|reserved_special_token_188|>",
|
| 1573 |
+
"lstrip": false,
|
| 1574 |
+
"normalized": false,
|
| 1575 |
+
"rstrip": false,
|
| 1576 |
+
"single_word": false,
|
| 1577 |
+
"special": true
|
| 1578 |
+
},
|
| 1579 |
+
"128197": {
|
| 1580 |
+
"content": "<|reserved_special_token_189|>",
|
| 1581 |
+
"lstrip": false,
|
| 1582 |
+
"normalized": false,
|
| 1583 |
+
"rstrip": false,
|
| 1584 |
+
"single_word": false,
|
| 1585 |
+
"special": true
|
| 1586 |
+
},
|
| 1587 |
+
"128198": {
|
| 1588 |
+
"content": "<|reserved_special_token_190|>",
|
| 1589 |
+
"lstrip": false,
|
| 1590 |
+
"normalized": false,
|
| 1591 |
+
"rstrip": false,
|
| 1592 |
+
"single_word": false,
|
| 1593 |
+
"special": true
|
| 1594 |
+
},
|
| 1595 |
+
"128199": {
|
| 1596 |
+
"content": "<|reserved_special_token_191|>",
|
| 1597 |
+
"lstrip": false,
|
| 1598 |
+
"normalized": false,
|
| 1599 |
+
"rstrip": false,
|
| 1600 |
+
"single_word": false,
|
| 1601 |
+
"special": true
|
| 1602 |
+
},
|
| 1603 |
+
"128200": {
|
| 1604 |
+
"content": "<|reserved_special_token_192|>",
|
| 1605 |
+
"lstrip": false,
|
| 1606 |
+
"normalized": false,
|
| 1607 |
+
"rstrip": false,
|
| 1608 |
+
"single_word": false,
|
| 1609 |
+
"special": true
|
| 1610 |
+
},
|
| 1611 |
+
"128201": {
|
| 1612 |
+
"content": "<|reserved_special_token_193|>",
|
| 1613 |
+
"lstrip": false,
|
| 1614 |
+
"normalized": false,
|
| 1615 |
+
"rstrip": false,
|
| 1616 |
+
"single_word": false,
|
| 1617 |
+
"special": true
|
| 1618 |
+
},
|
| 1619 |
+
"128202": {
|
| 1620 |
+
"content": "<|reserved_special_token_194|>",
|
| 1621 |
+
"lstrip": false,
|
| 1622 |
+
"normalized": false,
|
| 1623 |
+
"rstrip": false,
|
| 1624 |
+
"single_word": false,
|
| 1625 |
+
"special": true
|
| 1626 |
+
},
|
| 1627 |
+
"128203": {
|
| 1628 |
+
"content": "<|reserved_special_token_195|>",
|
| 1629 |
+
"lstrip": false,
|
| 1630 |
+
"normalized": false,
|
| 1631 |
+
"rstrip": false,
|
| 1632 |
+
"single_word": false,
|
| 1633 |
+
"special": true
|
| 1634 |
+
},
|
| 1635 |
+
"128204": {
|
| 1636 |
+
"content": "<|reserved_special_token_196|>",
|
| 1637 |
+
"lstrip": false,
|
| 1638 |
+
"normalized": false,
|
| 1639 |
+
"rstrip": false,
|
| 1640 |
+
"single_word": false,
|
| 1641 |
+
"special": true
|
| 1642 |
+
},
|
| 1643 |
+
"128205": {
|
| 1644 |
+
"content": "<|reserved_special_token_197|>",
|
| 1645 |
+
"lstrip": false,
|
| 1646 |
+
"normalized": false,
|
| 1647 |
+
"rstrip": false,
|
| 1648 |
+
"single_word": false,
|
| 1649 |
+
"special": true
|
| 1650 |
+
},
|
| 1651 |
+
"128206": {
|
| 1652 |
+
"content": "<|reserved_special_token_198|>",
|
| 1653 |
+
"lstrip": false,
|
| 1654 |
+
"normalized": false,
|
| 1655 |
+
"rstrip": false,
|
| 1656 |
+
"single_word": false,
|
| 1657 |
+
"special": true
|
| 1658 |
+
},
|
| 1659 |
+
"128207": {
|
| 1660 |
+
"content": "<|reserved_special_token_199|>",
|
| 1661 |
+
"lstrip": false,
|
| 1662 |
+
"normalized": false,
|
| 1663 |
+
"rstrip": false,
|
| 1664 |
+
"single_word": false,
|
| 1665 |
+
"special": true
|
| 1666 |
+
},
|
| 1667 |
+
"128208": {
|
| 1668 |
+
"content": "<|reserved_special_token_200|>",
|
| 1669 |
+
"lstrip": false,
|
| 1670 |
+
"normalized": false,
|
| 1671 |
+
"rstrip": false,
|
| 1672 |
+
"single_word": false,
|
| 1673 |
+
"special": true
|
| 1674 |
+
},
|
| 1675 |
+
"128209": {
|
| 1676 |
+
"content": "<|reserved_special_token_201|>",
|
| 1677 |
+
"lstrip": false,
|
| 1678 |
+
"normalized": false,
|
| 1679 |
+
"rstrip": false,
|
| 1680 |
+
"single_word": false,
|
| 1681 |
+
"special": true
|
| 1682 |
+
},
|
| 1683 |
+
"128210": {
|
| 1684 |
+
"content": "<|reserved_special_token_202|>",
|
| 1685 |
+
"lstrip": false,
|
| 1686 |
+
"normalized": false,
|
| 1687 |
+
"rstrip": false,
|
| 1688 |
+
"single_word": false,
|
| 1689 |
+
"special": true
|
| 1690 |
+
},
|
| 1691 |
+
"128211": {
|
| 1692 |
+
"content": "<|reserved_special_token_203|>",
|
| 1693 |
+
"lstrip": false,
|
| 1694 |
+
"normalized": false,
|
| 1695 |
+
"rstrip": false,
|
| 1696 |
+
"single_word": false,
|
| 1697 |
+
"special": true
|
| 1698 |
+
},
|
| 1699 |
+
"128212": {
|
| 1700 |
+
"content": "<|reserved_special_token_204|>",
|
| 1701 |
+
"lstrip": false,
|
| 1702 |
+
"normalized": false,
|
| 1703 |
+
"rstrip": false,
|
| 1704 |
+
"single_word": false,
|
| 1705 |
+
"special": true
|
| 1706 |
+
},
|
| 1707 |
+
"128213": {
|
| 1708 |
+
"content": "<|reserved_special_token_205|>",
|
| 1709 |
+
"lstrip": false,
|
| 1710 |
+
"normalized": false,
|
| 1711 |
+
"rstrip": false,
|
| 1712 |
+
"single_word": false,
|
| 1713 |
+
"special": true
|
| 1714 |
+
},
|
| 1715 |
+
"128214": {
|
| 1716 |
+
"content": "<|reserved_special_token_206|>",
|
| 1717 |
+
"lstrip": false,
|
| 1718 |
+
"normalized": false,
|
| 1719 |
+
"rstrip": false,
|
| 1720 |
+
"single_word": false,
|
| 1721 |
+
"special": true
|
| 1722 |
+
},
|
| 1723 |
+
"128215": {
|
| 1724 |
+
"content": "<|reserved_special_token_207|>",
|
| 1725 |
+
"lstrip": false,
|
| 1726 |
+
"normalized": false,
|
| 1727 |
+
"rstrip": false,
|
| 1728 |
+
"single_word": false,
|
| 1729 |
+
"special": true
|
| 1730 |
+
},
|
| 1731 |
+
"128216": {
|
| 1732 |
+
"content": "<|reserved_special_token_208|>",
|
| 1733 |
+
"lstrip": false,
|
| 1734 |
+
"normalized": false,
|
| 1735 |
+
"rstrip": false,
|
| 1736 |
+
"single_word": false,
|
| 1737 |
+
"special": true
|
| 1738 |
+
},
|
| 1739 |
+
"128217": {
|
| 1740 |
+
"content": "<|reserved_special_token_209|>",
|
| 1741 |
+
"lstrip": false,
|
| 1742 |
+
"normalized": false,
|
| 1743 |
+
"rstrip": false,
|
| 1744 |
+
"single_word": false,
|
| 1745 |
+
"special": true
|
| 1746 |
+
},
|
| 1747 |
+
"128218": {
|
| 1748 |
+
"content": "<|reserved_special_token_210|>",
|
| 1749 |
+
"lstrip": false,
|
| 1750 |
+
"normalized": false,
|
| 1751 |
+
"rstrip": false,
|
| 1752 |
+
"single_word": false,
|
| 1753 |
+
"special": true
|
| 1754 |
+
},
|
| 1755 |
+
"128219": {
|
| 1756 |
+
"content": "<|reserved_special_token_211|>",
|
| 1757 |
+
"lstrip": false,
|
| 1758 |
+
"normalized": false,
|
| 1759 |
+
"rstrip": false,
|
| 1760 |
+
"single_word": false,
|
| 1761 |
+
"special": true
|
| 1762 |
+
},
|
| 1763 |
+
"128220": {
|
| 1764 |
+
"content": "<|reserved_special_token_212|>",
|
| 1765 |
+
"lstrip": false,
|
| 1766 |
+
"normalized": false,
|
| 1767 |
+
"rstrip": false,
|
| 1768 |
+
"single_word": false,
|
| 1769 |
+
"special": true
|
| 1770 |
+
},
|
| 1771 |
+
"128221": {
|
| 1772 |
+
"content": "<|reserved_special_token_213|>",
|
| 1773 |
+
"lstrip": false,
|
| 1774 |
+
"normalized": false,
|
| 1775 |
+
"rstrip": false,
|
| 1776 |
+
"single_word": false,
|
| 1777 |
+
"special": true
|
| 1778 |
+
},
|
| 1779 |
+
"128222": {
|
| 1780 |
+
"content": "<|reserved_special_token_214|>",
|
| 1781 |
+
"lstrip": false,
|
| 1782 |
+
"normalized": false,
|
| 1783 |
+
"rstrip": false,
|
| 1784 |
+
"single_word": false,
|
| 1785 |
+
"special": true
|
| 1786 |
+
},
|
| 1787 |
+
"128223": {
|
| 1788 |
+
"content": "<|reserved_special_token_215|>",
|
| 1789 |
+
"lstrip": false,
|
| 1790 |
+
"normalized": false,
|
| 1791 |
+
"rstrip": false,
|
| 1792 |
+
"single_word": false,
|
| 1793 |
+
"special": true
|
| 1794 |
+
},
|
| 1795 |
+
"128224": {
|
| 1796 |
+
"content": "<|reserved_special_token_216|>",
|
| 1797 |
+
"lstrip": false,
|
| 1798 |
+
"normalized": false,
|
| 1799 |
+
"rstrip": false,
|
| 1800 |
+
"single_word": false,
|
| 1801 |
+
"special": true
|
| 1802 |
+
},
|
| 1803 |
+
"128225": {
|
| 1804 |
+
"content": "<|reserved_special_token_217|>",
|
| 1805 |
+
"lstrip": false,
|
| 1806 |
+
"normalized": false,
|
| 1807 |
+
"rstrip": false,
|
| 1808 |
+
"single_word": false,
|
| 1809 |
+
"special": true
|
| 1810 |
+
},
|
| 1811 |
+
"128226": {
|
| 1812 |
+
"content": "<|reserved_special_token_218|>",
|
| 1813 |
+
"lstrip": false,
|
| 1814 |
+
"normalized": false,
|
| 1815 |
+
"rstrip": false,
|
| 1816 |
+
"single_word": false,
|
| 1817 |
+
"special": true
|
| 1818 |
+
},
|
| 1819 |
+
"128227": {
|
| 1820 |
+
"content": "<|reserved_special_token_219|>",
|
| 1821 |
+
"lstrip": false,
|
| 1822 |
+
"normalized": false,
|
| 1823 |
+
"rstrip": false,
|
| 1824 |
+
"single_word": false,
|
| 1825 |
+
"special": true
|
| 1826 |
+
},
|
| 1827 |
+
"128228": {
|
| 1828 |
+
"content": "<|reserved_special_token_220|>",
|
| 1829 |
+
"lstrip": false,
|
| 1830 |
+
"normalized": false,
|
| 1831 |
+
"rstrip": false,
|
| 1832 |
+
"single_word": false,
|
| 1833 |
+
"special": true
|
| 1834 |
+
},
|
| 1835 |
+
"128229": {
|
| 1836 |
+
"content": "<|reserved_special_token_221|>",
|
| 1837 |
+
"lstrip": false,
|
| 1838 |
+
"normalized": false,
|
| 1839 |
+
"rstrip": false,
|
| 1840 |
+
"single_word": false,
|
| 1841 |
+
"special": true
|
| 1842 |
+
},
|
| 1843 |
+
"128230": {
|
| 1844 |
+
"content": "<|reserved_special_token_222|>",
|
| 1845 |
+
"lstrip": false,
|
| 1846 |
+
"normalized": false,
|
| 1847 |
+
"rstrip": false,
|
| 1848 |
+
"single_word": false,
|
| 1849 |
+
"special": true
|
| 1850 |
+
},
|
| 1851 |
+
"128231": {
|
| 1852 |
+
"content": "<|reserved_special_token_223|>",
|
| 1853 |
+
"lstrip": false,
|
| 1854 |
+
"normalized": false,
|
| 1855 |
+
"rstrip": false,
|
| 1856 |
+
"single_word": false,
|
| 1857 |
+
"special": true
|
| 1858 |
+
},
|
| 1859 |
+
"128232": {
|
| 1860 |
+
"content": "<|reserved_special_token_224|>",
|
| 1861 |
+
"lstrip": false,
|
| 1862 |
+
"normalized": false,
|
| 1863 |
+
"rstrip": false,
|
| 1864 |
+
"single_word": false,
|
| 1865 |
+
"special": true
|
| 1866 |
+
},
|
| 1867 |
+
"128233": {
|
| 1868 |
+
"content": "<|reserved_special_token_225|>",
|
| 1869 |
+
"lstrip": false,
|
| 1870 |
+
"normalized": false,
|
| 1871 |
+
"rstrip": false,
|
| 1872 |
+
"single_word": false,
|
| 1873 |
+
"special": true
|
| 1874 |
+
},
|
| 1875 |
+
"128234": {
|
| 1876 |
+
"content": "<|reserved_special_token_226|>",
|
| 1877 |
+
"lstrip": false,
|
| 1878 |
+
"normalized": false,
|
| 1879 |
+
"rstrip": false,
|
| 1880 |
+
"single_word": false,
|
| 1881 |
+
"special": true
|
| 1882 |
+
},
|
| 1883 |
+
"128235": {
|
| 1884 |
+
"content": "<|reserved_special_token_227|>",
|
| 1885 |
+
"lstrip": false,
|
| 1886 |
+
"normalized": false,
|
| 1887 |
+
"rstrip": false,
|
| 1888 |
+
"single_word": false,
|
| 1889 |
+
"special": true
|
| 1890 |
+
},
|
| 1891 |
+
"128236": {
|
| 1892 |
+
"content": "<|reserved_special_token_228|>",
|
| 1893 |
+
"lstrip": false,
|
| 1894 |
+
"normalized": false,
|
| 1895 |
+
"rstrip": false,
|
| 1896 |
+
"single_word": false,
|
| 1897 |
+
"special": true
|
| 1898 |
+
},
|
| 1899 |
+
"128237": {
|
| 1900 |
+
"content": "<|reserved_special_token_229|>",
|
| 1901 |
+
"lstrip": false,
|
| 1902 |
+
"normalized": false,
|
| 1903 |
+
"rstrip": false,
|
| 1904 |
+
"single_word": false,
|
| 1905 |
+
"special": true
|
| 1906 |
+
},
|
| 1907 |
+
"128238": {
|
| 1908 |
+
"content": "<|reserved_special_token_230|>",
|
| 1909 |
+
"lstrip": false,
|
| 1910 |
+
"normalized": false,
|
| 1911 |
+
"rstrip": false,
|
| 1912 |
+
"single_word": false,
|
| 1913 |
+
"special": true
|
| 1914 |
+
},
|
| 1915 |
+
"128239": {
|
| 1916 |
+
"content": "<|reserved_special_token_231|>",
|
| 1917 |
+
"lstrip": false,
|
| 1918 |
+
"normalized": false,
|
| 1919 |
+
"rstrip": false,
|
| 1920 |
+
"single_word": false,
|
| 1921 |
+
"special": true
|
| 1922 |
+
},
|
| 1923 |
+
"128240": {
|
| 1924 |
+
"content": "<|reserved_special_token_232|>",
|
| 1925 |
+
"lstrip": false,
|
| 1926 |
+
"normalized": false,
|
| 1927 |
+
"rstrip": false,
|
| 1928 |
+
"single_word": false,
|
| 1929 |
+
"special": true
|
| 1930 |
+
},
|
| 1931 |
+
"128241": {
|
| 1932 |
+
"content": "<|reserved_special_token_233|>",
|
| 1933 |
+
"lstrip": false,
|
| 1934 |
+
"normalized": false,
|
| 1935 |
+
"rstrip": false,
|
| 1936 |
+
"single_word": false,
|
| 1937 |
+
"special": true
|
| 1938 |
+
},
|
| 1939 |
+
"128242": {
|
| 1940 |
+
"content": "<|reserved_special_token_234|>",
|
| 1941 |
+
"lstrip": false,
|
| 1942 |
+
"normalized": false,
|
| 1943 |
+
"rstrip": false,
|
| 1944 |
+
"single_word": false,
|
| 1945 |
+
"special": true
|
| 1946 |
+
},
|
| 1947 |
+
"128243": {
|
| 1948 |
+
"content": "<|reserved_special_token_235|>",
|
| 1949 |
+
"lstrip": false,
|
| 1950 |
+
"normalized": false,
|
| 1951 |
+
"rstrip": false,
|
| 1952 |
+
"single_word": false,
|
| 1953 |
+
"special": true
|
| 1954 |
+
},
|
| 1955 |
+
"128244": {
|
| 1956 |
+
"content": "<|reserved_special_token_236|>",
|
| 1957 |
+
"lstrip": false,
|
| 1958 |
+
"normalized": false,
|
| 1959 |
+
"rstrip": false,
|
| 1960 |
+
"single_word": false,
|
| 1961 |
+
"special": true
|
| 1962 |
+
},
|
| 1963 |
+
"128245": {
|
| 1964 |
+
"content": "<|reserved_special_token_237|>",
|
| 1965 |
+
"lstrip": false,
|
| 1966 |
+
"normalized": false,
|
| 1967 |
+
"rstrip": false,
|
| 1968 |
+
"single_word": false,
|
| 1969 |
+
"special": true
|
| 1970 |
+
},
|
| 1971 |
+
"128246": {
|
| 1972 |
+
"content": "<|reserved_special_token_238|>",
|
| 1973 |
+
"lstrip": false,
|
| 1974 |
+
"normalized": false,
|
| 1975 |
+
"rstrip": false,
|
| 1976 |
+
"single_word": false,
|
| 1977 |
+
"special": true
|
| 1978 |
+
},
|
| 1979 |
+
"128247": {
|
| 1980 |
+
"content": "<|reserved_special_token_239|>",
|
| 1981 |
+
"lstrip": false,
|
| 1982 |
+
"normalized": false,
|
| 1983 |
+
"rstrip": false,
|
| 1984 |
+
"single_word": false,
|
| 1985 |
+
"special": true
|
| 1986 |
+
},
|
| 1987 |
+
"128248": {
|
| 1988 |
+
"content": "<|reserved_special_token_240|>",
|
| 1989 |
+
"lstrip": false,
|
| 1990 |
+
"normalized": false,
|
| 1991 |
+
"rstrip": false,
|
| 1992 |
+
"single_word": false,
|
| 1993 |
+
"special": true
|
| 1994 |
+
},
|
| 1995 |
+
"128249": {
|
| 1996 |
+
"content": "<|reserved_special_token_241|>",
|
| 1997 |
+
"lstrip": false,
|
| 1998 |
+
"normalized": false,
|
| 1999 |
+
"rstrip": false,
|
| 2000 |
+
"single_word": false,
|
| 2001 |
+
"special": true
|
| 2002 |
+
},
|
| 2003 |
+
"128250": {
|
| 2004 |
+
"content": "<|reserved_special_token_242|>",
|
| 2005 |
+
"lstrip": false,
|
| 2006 |
+
"normalized": false,
|
| 2007 |
+
"rstrip": false,
|
| 2008 |
+
"single_word": false,
|
| 2009 |
+
"special": true
|
| 2010 |
+
},
|
| 2011 |
+
"128251": {
|
| 2012 |
+
"content": "<|reserved_special_token_243|>",
|
| 2013 |
+
"lstrip": false,
|
| 2014 |
+
"normalized": false,
|
| 2015 |
+
"rstrip": false,
|
| 2016 |
+
"single_word": false,
|
| 2017 |
+
"special": true
|
| 2018 |
+
},
|
| 2019 |
+
"128252": {
|
| 2020 |
+
"content": "<|reserved_special_token_244|>",
|
| 2021 |
+
"lstrip": false,
|
| 2022 |
+
"normalized": false,
|
| 2023 |
+
"rstrip": false,
|
| 2024 |
+
"single_word": false,
|
| 2025 |
+
"special": true
|
| 2026 |
+
},
|
| 2027 |
+
"128253": {
|
| 2028 |
+
"content": "<|reserved_special_token_245|>",
|
| 2029 |
+
"lstrip": false,
|
| 2030 |
+
"normalized": false,
|
| 2031 |
+
"rstrip": false,
|
| 2032 |
+
"single_word": false,
|
| 2033 |
+
"special": true
|
| 2034 |
+
},
|
| 2035 |
+
"128254": {
|
| 2036 |
+
"content": "<|reserved_special_token_246|>",
|
| 2037 |
+
"lstrip": false,
|
| 2038 |
+
"normalized": false,
|
| 2039 |
+
"rstrip": false,
|
| 2040 |
+
"single_word": false,
|
| 2041 |
+
"special": true
|
| 2042 |
+
},
|
| 2043 |
+
"128255": {
|
| 2044 |
+
"content": "<|reserved_special_token_247|>",
|
| 2045 |
+
"lstrip": false,
|
| 2046 |
+
"normalized": false,
|
| 2047 |
+
"rstrip": false,
|
| 2048 |
+
"single_word": false,
|
| 2049 |
+
"special": true
|
| 2050 |
+
}
|
| 2051 |
+
},
|
| 2052 |
+
"bos_token": "<|begin_of_text|>",
|
| 2053 |
+
"clean_up_tokenization_spaces": true,
|
| 2054 |
+
"eos_token": "<|eot_id|>",
|
| 2055 |
+
"extra_special_tokens": {},
|
| 2056 |
+
"model_input_names": [
|
| 2057 |
+
"input_ids",
|
| 2058 |
+
"attention_mask"
|
| 2059 |
+
],
|
| 2060 |
+
"model_max_length": 131072,
|
| 2061 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 2062 |
+
}
|
checkpoint-1066/trainer_state.json
ADDED
|
@@ -0,0 +1,1094 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1066,
|
| 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.7799350878223776,
|
| 14 |
+
"epoch": 0.009382513340761156,
|
| 15 |
+
"grad_norm": 0.251953125,
|
| 16 |
+
"learning_rate": 0.00019943714821763604,
|
| 17 |
+
"loss": 0.8229,
|
| 18 |
+
"mean_token_accuracy": 0.8214783387258648,
|
| 19 |
+
"num_tokens": 162309.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.6856271875090897,
|
| 24 |
+
"epoch": 0.01876502668152231,
|
| 25 |
+
"grad_norm": 0.2041015625,
|
| 26 |
+
"learning_rate": 0.00019881175734834272,
|
| 27 |
+
"loss": 0.6706,
|
| 28 |
+
"mean_token_accuracy": 0.8432094575837255,
|
| 29 |
+
"num_tokens": 325111.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.5147169048897922,
|
| 34 |
+
"epoch": 0.02814754002228347,
|
| 35 |
+
"grad_norm": 0.1689453125,
|
| 36 |
+
"learning_rate": 0.00019818636647904943,
|
| 37 |
+
"loss": 0.5152,
|
| 38 |
+
"mean_token_accuracy": 0.8709522735327482,
|
| 39 |
+
"num_tokens": 488159.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.48951989263296125,
|
| 44 |
+
"epoch": 0.03753005336304462,
|
| 45 |
+
"grad_norm": 0.1552734375,
|
| 46 |
+
"learning_rate": 0.0001975609756097561,
|
| 47 |
+
"loss": 0.4875,
|
| 48 |
+
"mean_token_accuracy": 0.8770332466810942,
|
| 49 |
+
"num_tokens": 650647.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.4960091439075768,
|
| 54 |
+
"epoch": 0.04691256670380578,
|
| 55 |
+
"grad_norm": 0.16796875,
|
| 56 |
+
"learning_rate": 0.0001969355847404628,
|
| 57 |
+
"loss": 0.492,
|
| 58 |
+
"mean_token_accuracy": 0.8768141727894545,
|
| 59 |
+
"num_tokens": 813419.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.4708784816786647,
|
| 64 |
+
"epoch": 0.05629508004456694,
|
| 65 |
+
"grad_norm": 0.197265625,
|
| 66 |
+
"learning_rate": 0.0001963101938711695,
|
| 67 |
+
"loss": 0.4648,
|
| 68 |
+
"mean_token_accuracy": 0.8837848342955112,
|
| 69 |
+
"num_tokens": 976458.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.546927246497944,
|
| 74 |
+
"epoch": 0.0656775933853281,
|
| 75 |
+
"grad_norm": 0.1669921875,
|
| 76 |
+
"learning_rate": 0.00019568480300187618,
|
| 77 |
+
"loss": 0.5415,
|
| 78 |
+
"mean_token_accuracy": 0.8723422776907682,
|
| 79 |
+
"num_tokens": 1138794.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.47402509227395057,
|
| 84 |
+
"epoch": 0.07506010672608925,
|
| 85 |
+
"grad_norm": 0.1533203125,
|
| 86 |
+
"learning_rate": 0.00019505941213258287,
|
| 87 |
+
"loss": 0.4702,
|
| 88 |
+
"mean_token_accuracy": 0.885954425111413,
|
| 89 |
+
"num_tokens": 1301483.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.4972494073677808,
|
| 94 |
+
"epoch": 0.08444262006685041,
|
| 95 |
+
"grad_norm": 0.1708984375,
|
| 96 |
+
"learning_rate": 0.00019443402126328955,
|
| 97 |
+
"loss": 0.4901,
|
| 98 |
+
"mean_token_accuracy": 0.8839348161593079,
|
| 99 |
+
"num_tokens": 1464240.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.49195765373297035,
|
| 104 |
+
"epoch": 0.09382513340761156,
|
| 105 |
+
"grad_norm": 0.1669921875,
|
| 106 |
+
"learning_rate": 0.00019380863039399627,
|
| 107 |
+
"loss": 0.4848,
|
| 108 |
+
"mean_token_accuracy": 0.886236279271543,
|
| 109 |
+
"num_tokens": 1627457.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.5126075576525182,
|
| 114 |
+
"epoch": 0.10320764674837273,
|
| 115 |
+
"grad_norm": 0.1787109375,
|
| 116 |
+
"learning_rate": 0.00019318323952470295,
|
| 117 |
+
"loss": 0.5104,
|
| 118 |
+
"mean_token_accuracy": 0.8793701384216547,
|
| 119 |
+
"num_tokens": 1790547.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.4117678565904498,
|
| 124 |
+
"epoch": 0.11259016008913388,
|
| 125 |
+
"grad_norm": 0.1650390625,
|
| 126 |
+
"learning_rate": 0.00019255784865540964,
|
| 127 |
+
"loss": 0.4114,
|
| 128 |
+
"mean_token_accuracy": 0.8950984058901668,
|
| 129 |
+
"num_tokens": 1953536.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.4656925258226693,
|
| 134 |
+
"epoch": 0.12197267342989504,
|
| 135 |
+
"grad_norm": 0.1875,
|
| 136 |
+
"learning_rate": 0.00019193245778611632,
|
| 137 |
+
"loss": 0.4634,
|
| 138 |
+
"mean_token_accuracy": 0.8897427920252085,
|
| 139 |
+
"num_tokens": 2115476.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.43195099574513734,
|
| 144 |
+
"epoch": 0.1313551867706562,
|
| 145 |
+
"grad_norm": 0.1630859375,
|
| 146 |
+
"learning_rate": 0.00019130706691682304,
|
| 147 |
+
"loss": 0.4246,
|
| 148 |
+
"mean_token_accuracy": 0.8946435421705246,
|
| 149 |
+
"num_tokens": 2277936.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.4823188486509025,
|
| 154 |
+
"epoch": 0.14073770011141734,
|
| 155 |
+
"grad_norm": 0.20703125,
|
| 156 |
+
"learning_rate": 0.00019068167604752972,
|
| 157 |
+
"loss": 0.4796,
|
| 158 |
+
"mean_token_accuracy": 0.8873342543840408,
|
| 159 |
+
"num_tokens": 2440643.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.40974695349577817,
|
| 164 |
+
"epoch": 0.1501202134521785,
|
| 165 |
+
"grad_norm": 0.1982421875,
|
| 166 |
+
"learning_rate": 0.0001900562851782364,
|
| 167 |
+
"loss": 0.4,
|
| 168 |
+
"mean_token_accuracy": 0.8974028028547764,
|
| 169 |
+
"num_tokens": 2603401.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.41737876399420204,
|
| 174 |
+
"epoch": 0.15950272679293967,
|
| 175 |
+
"grad_norm": 0.177734375,
|
| 176 |
+
"learning_rate": 0.0001894308943089431,
|
| 177 |
+
"loss": 0.4136,
|
| 178 |
+
"mean_token_accuracy": 0.8985418293625116,
|
| 179 |
+
"num_tokens": 2765836.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.4317509519169107,
|
| 184 |
+
"epoch": 0.16888524013370082,
|
| 185 |
+
"grad_norm": 0.1630859375,
|
| 186 |
+
"learning_rate": 0.0001888055034396498,
|
| 187 |
+
"loss": 0.4276,
|
| 188 |
+
"mean_token_accuracy": 0.8956017823889851,
|
| 189 |
+
"num_tokens": 2928637.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.39300057776272296,
|
| 194 |
+
"epoch": 0.17826775347446197,
|
| 195 |
+
"grad_norm": 0.177734375,
|
| 196 |
+
"learning_rate": 0.00018818011257035647,
|
| 197 |
+
"loss": 0.3853,
|
| 198 |
+
"mean_token_accuracy": 0.903920691087842,
|
| 199 |
+
"num_tokens": 3090979.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.43899501564446836,
|
| 204 |
+
"epoch": 0.18765026681522312,
|
| 205 |
+
"grad_norm": 0.16796875,
|
| 206 |
+
"learning_rate": 0.00018755472170106316,
|
| 207 |
+
"loss": 0.4302,
|
| 208 |
+
"mean_token_accuracy": 0.894548149779439,
|
| 209 |
+
"num_tokens": 3253538.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.3904935538303107,
|
| 214 |
+
"epoch": 0.19703278015598427,
|
| 215 |
+
"grad_norm": 0.1708984375,
|
| 216 |
+
"learning_rate": 0.00018692933083176987,
|
| 217 |
+
"loss": 0.3829,
|
| 218 |
+
"mean_token_accuracy": 0.9031265545636415,
|
| 219 |
+
"num_tokens": 3415948.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.39792181542143223,
|
| 224 |
+
"epoch": 0.20641529349674545,
|
| 225 |
+
"grad_norm": 0.1572265625,
|
| 226 |
+
"learning_rate": 0.00018630393996247656,
|
| 227 |
+
"loss": 0.3862,
|
| 228 |
+
"mean_token_accuracy": 0.9033814109861851,
|
| 229 |
+
"num_tokens": 3579298.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.38712316513992845,
|
| 234 |
+
"epoch": 0.2157978068375066,
|
| 235 |
+
"grad_norm": 0.1630859375,
|
| 236 |
+
"learning_rate": 0.00018567854909318324,
|
| 237 |
+
"loss": 0.3871,
|
| 238 |
+
"mean_token_accuracy": 0.9008511133491993,
|
| 239 |
+
"num_tokens": 3742007.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.3974394467426464,
|
| 244 |
+
"epoch": 0.22518032017826775,
|
| 245 |
+
"grad_norm": 0.1640625,
|
| 246 |
+
"learning_rate": 0.00018505315822388993,
|
| 247 |
+
"loss": 0.39,
|
| 248 |
+
"mean_token_accuracy": 0.9035492207854986,
|
| 249 |
+
"num_tokens": 3904988.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.42329446180956437,
|
| 254 |
+
"epoch": 0.2345628335190289,
|
| 255 |
+
"grad_norm": 0.19140625,
|
| 256 |
+
"learning_rate": 0.00018442776735459664,
|
| 257 |
+
"loss": 0.4136,
|
| 258 |
+
"mean_token_accuracy": 0.9000132424756885,
|
| 259 |
+
"num_tokens": 4067806.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.400798928248696,
|
| 264 |
+
"epoch": 0.24394534685979008,
|
| 265 |
+
"grad_norm": 0.1953125,
|
| 266 |
+
"learning_rate": 0.00018380237648530333,
|
| 267 |
+
"loss": 0.3889,
|
| 268 |
+
"mean_token_accuracy": 0.8984681818634271,
|
| 269 |
+
"num_tokens": 4229588.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.3440579119604081,
|
| 274 |
+
"epoch": 0.2533278602005512,
|
| 275 |
+
"grad_norm": 0.1748046875,
|
| 276 |
+
"learning_rate": 0.00018317698561601001,
|
| 277 |
+
"loss": 0.3355,
|
| 278 |
+
"mean_token_accuracy": 0.9099012993276119,
|
| 279 |
+
"num_tokens": 4391775.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.4088153497781605,
|
| 284 |
+
"epoch": 0.2627103735413124,
|
| 285 |
+
"grad_norm": 0.2060546875,
|
| 286 |
+
"learning_rate": 0.0001825515947467167,
|
| 287 |
+
"loss": 0.3988,
|
| 288 |
+
"mean_token_accuracy": 0.9000191796571017,
|
| 289 |
+
"num_tokens": 4554006.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.49478547936305406,
|
| 294 |
+
"epoch": 0.27209288688207356,
|
| 295 |
+
"grad_norm": 0.1630859375,
|
| 296 |
+
"learning_rate": 0.0001819262038774234,
|
| 297 |
+
"loss": 0.4851,
|
| 298 |
+
"mean_token_accuracy": 0.8896255612373352,
|
| 299 |
+
"num_tokens": 4716601.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.3874137854669243,
|
| 304 |
+
"epoch": 0.2814754002228347,
|
| 305 |
+
"grad_norm": 0.1708984375,
|
| 306 |
+
"learning_rate": 0.0001813008130081301,
|
| 307 |
+
"loss": 0.3811,
|
| 308 |
+
"mean_token_accuracy": 0.9031782140955329,
|
| 309 |
+
"num_tokens": 4879465.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.39499278874136506,
|
| 314 |
+
"epoch": 0.29085791356359586,
|
| 315 |
+
"grad_norm": 0.1796875,
|
| 316 |
+
"learning_rate": 0.00018067542213883679,
|
| 317 |
+
"loss": 0.3859,
|
| 318 |
+
"mean_token_accuracy": 0.9037530291825533,
|
| 319 |
+
"num_tokens": 5041857.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.3148498781956732,
|
| 324 |
+
"epoch": 0.300240426904357,
|
| 325 |
+
"grad_norm": 0.146484375,
|
| 326 |
+
"learning_rate": 0.00018005003126954347,
|
| 327 |
+
"loss": 0.3105,
|
| 328 |
+
"mean_token_accuracy": 0.9153206121176481,
|
| 329 |
+
"num_tokens": 5204416.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.45533317684894425,
|
| 334 |
+
"epoch": 0.30962294024511816,
|
| 335 |
+
"grad_norm": 0.1630859375,
|
| 336 |
+
"learning_rate": 0.00017942464040025016,
|
| 337 |
+
"loss": 0.4477,
|
| 338 |
+
"mean_token_accuracy": 0.8917344063520432,
|
| 339 |
+
"num_tokens": 5366029.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.4512431137613021,
|
| 344 |
+
"epoch": 0.31900545358587934,
|
| 345 |
+
"grad_norm": 0.1787109375,
|
| 346 |
+
"learning_rate": 0.00017879924953095687,
|
| 347 |
+
"loss": 0.4435,
|
| 348 |
+
"mean_token_accuracy": 0.8979733150452376,
|
| 349 |
+
"num_tokens": 5528662.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.43219919862458483,
|
| 354 |
+
"epoch": 0.32838796692664046,
|
| 355 |
+
"grad_norm": 0.1875,
|
| 356 |
+
"learning_rate": 0.00017817385866166353,
|
| 357 |
+
"loss": 0.4255,
|
| 358 |
+
"mean_token_accuracy": 0.8939095275476575,
|
| 359 |
+
"num_tokens": 5691088.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.39246358472155407,
|
| 364 |
+
"epoch": 0.33777048026740164,
|
| 365 |
+
"grad_norm": 0.2060546875,
|
| 366 |
+
"learning_rate": 0.00017754846779237024,
|
| 367 |
+
"loss": 0.3792,
|
| 368 |
+
"mean_token_accuracy": 0.9027158614248038,
|
| 369 |
+
"num_tokens": 5853586.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.38228728668764234,
|
| 374 |
+
"epoch": 0.34715299360816276,
|
| 375 |
+
"grad_norm": 0.158203125,
|
| 376 |
+
"learning_rate": 0.00017692307692307693,
|
| 377 |
+
"loss": 0.3814,
|
| 378 |
+
"mean_token_accuracy": 0.9076376244425773,
|
| 379 |
+
"num_tokens": 6016273.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.34766899450914934,
|
| 384 |
+
"epoch": 0.35653550694892394,
|
| 385 |
+
"grad_norm": 0.16796875,
|
| 386 |
+
"learning_rate": 0.00017629768605378362,
|
| 387 |
+
"loss": 0.339,
|
| 388 |
+
"mean_token_accuracy": 0.9132196143269539,
|
| 389 |
+
"num_tokens": 6179608.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.419576386269182,
|
| 394 |
+
"epoch": 0.3659180202896851,
|
| 395 |
+
"grad_norm": 0.150390625,
|
| 396 |
+
"learning_rate": 0.0001756722951844903,
|
| 397 |
+
"loss": 0.4081,
|
| 398 |
+
"mean_token_accuracy": 0.902265278249979,
|
| 399 |
+
"num_tokens": 6342688.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.34522315053036434,
|
| 404 |
+
"epoch": 0.37530053363044624,
|
| 405 |
+
"grad_norm": 0.16796875,
|
| 406 |
+
"learning_rate": 0.00017504690431519702,
|
| 407 |
+
"loss": 0.3398,
|
| 408 |
+
"mean_token_accuracy": 0.9103329949080944,
|
| 409 |
+
"num_tokens": 6505076.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.3350997743313201,
|
| 414 |
+
"epoch": 0.3846830469712074,
|
| 415 |
+
"grad_norm": 0.1611328125,
|
| 416 |
+
"learning_rate": 0.0001744215134459037,
|
| 417 |
+
"loss": 0.3287,
|
| 418 |
+
"mean_token_accuracy": 0.9135664030909538,
|
| 419 |
+
"num_tokens": 6667428.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.35369435520842674,
|
| 424 |
+
"epoch": 0.39406556031196854,
|
| 425 |
+
"grad_norm": 0.16796875,
|
| 426 |
+
"learning_rate": 0.0001737961225766104,
|
| 427 |
+
"loss": 0.3445,
|
| 428 |
+
"mean_token_accuracy": 0.9136763598769904,
|
| 429 |
+
"num_tokens": 6829952.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.3438279568566941,
|
| 434 |
+
"epoch": 0.4034480736527297,
|
| 435 |
+
"grad_norm": 0.2109375,
|
| 436 |
+
"learning_rate": 0.00017317073170731708,
|
| 437 |
+
"loss": 0.3347,
|
| 438 |
+
"mean_token_accuracy": 0.915488549694419,
|
| 439 |
+
"num_tokens": 6992752.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.36355263493023815,
|
| 444 |
+
"epoch": 0.4128305869934909,
|
| 445 |
+
"grad_norm": 0.134765625,
|
| 446 |
+
"learning_rate": 0.0001725453408380238,
|
| 447 |
+
"loss": 0.3514,
|
| 448 |
+
"mean_token_accuracy": 0.9081276219338179,
|
| 449 |
+
"num_tokens": 7155395.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.4320855587720871,
|
| 454 |
+
"epoch": 0.422213100334252,
|
| 455 |
+
"grad_norm": 0.1787109375,
|
| 456 |
+
"learning_rate": 0.00017191994996873047,
|
| 457 |
+
"loss": 0.4275,
|
| 458 |
+
"mean_token_accuracy": 0.8996547561138868,
|
| 459 |
+
"num_tokens": 7317871.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.35265264644986016,
|
| 464 |
+
"epoch": 0.4315956136750132,
|
| 465 |
+
"grad_norm": 0.1767578125,
|
| 466 |
+
"learning_rate": 0.00017129455909943713,
|
| 467 |
+
"loss": 0.346,
|
| 468 |
+
"mean_token_accuracy": 0.911245071515441,
|
| 469 |
+
"num_tokens": 7480566.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.38030760866822677,
|
| 474 |
+
"epoch": 0.4409781270157743,
|
| 475 |
+
"grad_norm": 0.17578125,
|
| 476 |
+
"learning_rate": 0.00017066916823014385,
|
| 477 |
+
"loss": 0.3737,
|
| 478 |
+
"mean_token_accuracy": 0.9052736137062312,
|
| 479 |
+
"num_tokens": 7642808.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.37449472132138906,
|
| 484 |
+
"epoch": 0.4503606403565355,
|
| 485 |
+
"grad_norm": 0.1923828125,
|
| 486 |
+
"learning_rate": 0.00017004377736085053,
|
| 487 |
+
"loss": 0.3668,
|
| 488 |
+
"mean_token_accuracy": 0.9072099477052689,
|
| 489 |
+
"num_tokens": 7806054.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.38983453994151207,
|
| 494 |
+
"epoch": 0.4597431536972967,
|
| 495 |
+
"grad_norm": 0.1533203125,
|
| 496 |
+
"learning_rate": 0.00016941838649155725,
|
| 497 |
+
"loss": 0.3804,
|
| 498 |
+
"mean_token_accuracy": 0.9052108563482761,
|
| 499 |
+
"num_tokens": 7968208.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.3876548252766952,
|
| 504 |
+
"epoch": 0.4691256670380578,
|
| 505 |
+
"grad_norm": 0.1953125,
|
| 506 |
+
"learning_rate": 0.0001687929956222639,
|
| 507 |
+
"loss": 0.3825,
|
| 508 |
+
"mean_token_accuracy": 0.9071293246001005,
|
| 509 |
+
"num_tokens": 8130444.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.35602071137400343,
|
| 514 |
+
"epoch": 0.478508180378819,
|
| 515 |
+
"grad_norm": 0.1748046875,
|
| 516 |
+
"learning_rate": 0.00016816760475297062,
|
| 517 |
+
"loss": 0.3484,
|
| 518 |
+
"mean_token_accuracy": 0.9137960843741894,
|
| 519 |
+
"num_tokens": 8292618.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.4106741435127333,
|
| 524 |
+
"epoch": 0.48789069371958016,
|
| 525 |
+
"grad_norm": 0.181640625,
|
| 526 |
+
"learning_rate": 0.0001675422138836773,
|
| 527 |
+
"loss": 0.3968,
|
| 528 |
+
"mean_token_accuracy": 0.9058029960840941,
|
| 529 |
+
"num_tokens": 8455547.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.35365958177717405,
|
| 534 |
+
"epoch": 0.4972732070603413,
|
| 535 |
+
"grad_norm": 0.171875,
|
| 536 |
+
"learning_rate": 0.000166916823014384,
|
| 537 |
+
"loss": 0.349,
|
| 538 |
+
"mean_token_accuracy": 0.9107609067112208,
|
| 539 |
+
"num_tokens": 8617389.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.3634562706924044,
|
| 544 |
+
"epoch": 0.5066557204011024,
|
| 545 |
+
"grad_norm": 0.1494140625,
|
| 546 |
+
"learning_rate": 0.00016629143214509068,
|
| 547 |
+
"loss": 0.3559,
|
| 548 |
+
"mean_token_accuracy": 0.9100410873070359,
|
| 549 |
+
"num_tokens": 8779770.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.32272221232997256,
|
| 554 |
+
"epoch": 0.5160382337418636,
|
| 555 |
+
"grad_norm": 0.1767578125,
|
| 556 |
+
"learning_rate": 0.0001656660412757974,
|
| 557 |
+
"loss": 0.3192,
|
| 558 |
+
"mean_token_accuracy": 0.9185531191527844,
|
| 559 |
+
"num_tokens": 8942167.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.3944925616728142,
|
| 564 |
+
"epoch": 0.5254207470826248,
|
| 565 |
+
"grad_norm": 0.189453125,
|
| 566 |
+
"learning_rate": 0.00016504065040650408,
|
| 567 |
+
"loss": 0.3822,
|
| 568 |
+
"mean_token_accuracy": 0.9070056907832622,
|
| 569 |
+
"num_tokens": 9104106.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.34754261119524016,
|
| 574 |
+
"epoch": 0.5348032604233859,
|
| 575 |
+
"grad_norm": 0.1923828125,
|
| 576 |
+
"learning_rate": 0.00016441525953721076,
|
| 577 |
+
"loss": 0.341,
|
| 578 |
+
"mean_token_accuracy": 0.9133739612996579,
|
| 579 |
+
"num_tokens": 9266326.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.36407561659580095,
|
| 584 |
+
"epoch": 0.5441857737641471,
|
| 585 |
+
"grad_norm": 0.146484375,
|
| 586 |
+
"learning_rate": 0.00016378986866791745,
|
| 587 |
+
"loss": 0.355,
|
| 588 |
+
"mean_token_accuracy": 0.9110283955931664,
|
| 589 |
+
"num_tokens": 9428809.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.36490103751420977,
|
| 594 |
+
"epoch": 0.5535682871049082,
|
| 595 |
+
"grad_norm": 0.14453125,
|
| 596 |
+
"learning_rate": 0.00016316447779862414,
|
| 597 |
+
"loss": 0.3606,
|
| 598 |
+
"mean_token_accuracy": 0.9129387583583594,
|
| 599 |
+
"num_tokens": 9591549.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.4403200134751387,
|
| 604 |
+
"epoch": 0.5629508004456694,
|
| 605 |
+
"grad_norm": 0.1630859375,
|
| 606 |
+
"learning_rate": 0.00016253908692933085,
|
| 607 |
+
"loss": 0.4352,
|
| 608 |
+
"mean_token_accuracy": 0.9009242281317711,
|
| 609 |
+
"num_tokens": 9754490.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.3376986944698729,
|
| 614 |
+
"epoch": 0.5723333137864305,
|
| 615 |
+
"grad_norm": 0.2099609375,
|
| 616 |
+
"learning_rate": 0.00016191369606003754,
|
| 617 |
+
"loss": 0.3271,
|
| 618 |
+
"mean_token_accuracy": 0.9162716951221228,
|
| 619 |
+
"num_tokens": 9917345.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.30342430413002147,
|
| 624 |
+
"epoch": 0.5817158271271917,
|
| 625 |
+
"grad_norm": 0.2041015625,
|
| 626 |
+
"learning_rate": 0.00016128830519074422,
|
| 627 |
+
"loss": 0.2956,
|
| 628 |
+
"mean_token_accuracy": 0.9222736719995737,
|
| 629 |
+
"num_tokens": 10079523.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.39200085022021086,
|
| 634 |
+
"epoch": 0.5910983404679528,
|
| 635 |
+
"grad_norm": 0.1806640625,
|
| 636 |
+
"learning_rate": 0.0001606629143214509,
|
| 637 |
+
"loss": 0.3825,
|
| 638 |
+
"mean_token_accuracy": 0.9086053863167762,
|
| 639 |
+
"num_tokens": 10241691.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.3571344430092722,
|
| 644 |
+
"epoch": 0.600480853808714,
|
| 645 |
+
"grad_norm": 0.17578125,
|
| 646 |
+
"learning_rate": 0.00016003752345215762,
|
| 647 |
+
"loss": 0.3541,
|
| 648 |
+
"mean_token_accuracy": 0.9139539418742061,
|
| 649 |
+
"num_tokens": 10404189.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.34833492621546613,
|
| 654 |
+
"epoch": 0.6098633671494752,
|
| 655 |
+
"grad_norm": 0.1533203125,
|
| 656 |
+
"learning_rate": 0.00015941213258286428,
|
| 657 |
+
"loss": 0.3376,
|
| 658 |
+
"mean_token_accuracy": 0.9150689322501421,
|
| 659 |
+
"num_tokens": 10566544.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.3005343694472685,
|
| 664 |
+
"epoch": 0.6192458804902363,
|
| 665 |
+
"grad_norm": 0.158203125,
|
| 666 |
+
"learning_rate": 0.000158786741713571,
|
| 667 |
+
"loss": 0.2928,
|
| 668 |
+
"mean_token_accuracy": 0.9205218695104123,
|
| 669 |
+
"num_tokens": 10728072.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.28468642103252934,
|
| 674 |
+
"epoch": 0.6286283938309974,
|
| 675 |
+
"grad_norm": 0.1572265625,
|
| 676 |
+
"learning_rate": 0.00015816135084427768,
|
| 677 |
+
"loss": 0.2813,
|
| 678 |
+
"mean_token_accuracy": 0.9226693190634251,
|
| 679 |
+
"num_tokens": 10890089.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.3512667278526351,
|
| 684 |
+
"epoch": 0.6380109071717587,
|
| 685 |
+
"grad_norm": 0.15625,
|
| 686 |
+
"learning_rate": 0.0001575359599749844,
|
| 687 |
+
"loss": 0.3421,
|
| 688 |
+
"mean_token_accuracy": 0.9135142650455237,
|
| 689 |
+
"num_tokens": 11052295.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.38745955675840377,
|
| 694 |
+
"epoch": 0.6473934205125198,
|
| 695 |
+
"grad_norm": 0.16015625,
|
| 696 |
+
"learning_rate": 0.00015691056910569105,
|
| 697 |
+
"loss": 0.3774,
|
| 698 |
+
"mean_token_accuracy": 0.9076902076601983,
|
| 699 |
+
"num_tokens": 11214249.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.3123638934805058,
|
| 704 |
+
"epoch": 0.6567759338532809,
|
| 705 |
+
"grad_norm": 0.1669921875,
|
| 706 |
+
"learning_rate": 0.00015628517823639777,
|
| 707 |
+
"loss": 0.3099,
|
| 708 |
+
"mean_token_accuracy": 0.9233202930539847,
|
| 709 |
+
"num_tokens": 11377548.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.36946490925038233,
|
| 714 |
+
"epoch": 0.6661584471940422,
|
| 715 |
+
"grad_norm": 0.1572265625,
|
| 716 |
+
"learning_rate": 0.00015565978736710445,
|
| 717 |
+
"loss": 0.3584,
|
| 718 |
+
"mean_token_accuracy": 0.9100467972457409,
|
| 719 |
+
"num_tokens": 11539730.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.44331123513402415,
|
| 724 |
+
"epoch": 0.6755409605348033,
|
| 725 |
+
"grad_norm": 0.185546875,
|
| 726 |
+
"learning_rate": 0.00015503439649781114,
|
| 727 |
+
"loss": 0.4357,
|
| 728 |
+
"mean_token_accuracy": 0.9018381554633379,
|
| 729 |
+
"num_tokens": 11702656.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.35576051749521864,
|
| 734 |
+
"epoch": 0.6849234738755644,
|
| 735 |
+
"grad_norm": 0.1396484375,
|
| 736 |
+
"learning_rate": 0.00015440900562851783,
|
| 737 |
+
"loss": 0.3529,
|
| 738 |
+
"mean_token_accuracy": 0.9145626701414585,
|
| 739 |
+
"num_tokens": 11866221.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.3530123558419291,
|
| 744 |
+
"epoch": 0.6943059872163255,
|
| 745 |
+
"grad_norm": 0.1982421875,
|
| 746 |
+
"learning_rate": 0.0001537836147592245,
|
| 747 |
+
"loss": 0.3413,
|
| 748 |
+
"mean_token_accuracy": 0.9174593914300203,
|
| 749 |
+
"num_tokens": 12028438.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.3903426473028958,
|
| 754 |
+
"epoch": 0.7036885005570868,
|
| 755 |
+
"grad_norm": 0.1953125,
|
| 756 |
+
"learning_rate": 0.00015315822388993123,
|
| 757 |
+
"loss": 0.385,
|
| 758 |
+
"mean_token_accuracy": 0.9088658891618252,
|
| 759 |
+
"num_tokens": 12190615.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.3577064266020898,
|
| 764 |
+
"epoch": 0.7130710138978479,
|
| 765 |
+
"grad_norm": 0.154296875,
|
| 766 |
+
"learning_rate": 0.0001525328330206379,
|
| 767 |
+
"loss": 0.3477,
|
| 768 |
+
"mean_token_accuracy": 0.9163919541984796,
|
| 769 |
+
"num_tokens": 12353059.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.29131998592056335,
|
| 774 |
+
"epoch": 0.722453527238609,
|
| 775 |
+
"grad_norm": 0.1689453125,
|
| 776 |
+
"learning_rate": 0.0001519074421513446,
|
| 777 |
+
"loss": 0.2891,
|
| 778 |
+
"mean_token_accuracy": 0.9242078192532063,
|
| 779 |
+
"num_tokens": 12515436.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.3846006996463984,
|
| 784 |
+
"epoch": 0.7318360405793702,
|
| 785 |
+
"grad_norm": 0.193359375,
|
| 786 |
+
"learning_rate": 0.00015128205128205128,
|
| 787 |
+
"loss": 0.3775,
|
| 788 |
+
"mean_token_accuracy": 0.9100886223837733,
|
| 789 |
+
"num_tokens": 12677546.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.34870610454818235,
|
| 794 |
+
"epoch": 0.7412185539201314,
|
| 795 |
+
"grad_norm": 0.1728515625,
|
| 796 |
+
"learning_rate": 0.000150656660412758,
|
| 797 |
+
"loss": 0.3401,
|
| 798 |
+
"mean_token_accuracy": 0.9157310061156749,
|
| 799 |
+
"num_tokens": 12840366.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.33407560451305474,
|
| 804 |
+
"epoch": 0.7506010672608925,
|
| 805 |
+
"grad_norm": 0.169921875,
|
| 806 |
+
"learning_rate": 0.00015003126954346466,
|
| 807 |
+
"loss": 0.3285,
|
| 808 |
+
"mean_token_accuracy": 0.9150595877319574,
|
| 809 |
+
"num_tokens": 13002637.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.33455972147057766,
|
| 814 |
+
"epoch": 0.7599835806016537,
|
| 815 |
+
"grad_norm": 0.173828125,
|
| 816 |
+
"learning_rate": 0.00014940587867417137,
|
| 817 |
+
"loss": 0.3268,
|
| 818 |
+
"mean_token_accuracy": 0.9206027369946241,
|
| 819 |
+
"num_tokens": 13165555.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.3760374941455666,
|
| 824 |
+
"epoch": 0.7693660939424148,
|
| 825 |
+
"grad_norm": 0.212890625,
|
| 826 |
+
"learning_rate": 0.00014878048780487806,
|
| 827 |
+
"loss": 0.3689,
|
| 828 |
+
"mean_token_accuracy": 0.9126812819391489,
|
| 829 |
+
"num_tokens": 13328334.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.4276343748439103,
|
| 834 |
+
"epoch": 0.778748607283176,
|
| 835 |
+
"grad_norm": 0.16015625,
|
| 836 |
+
"learning_rate": 0.00014815509693558477,
|
| 837 |
+
"loss": 0.4228,
|
| 838 |
+
"mean_token_accuracy": 0.9042647287249566,
|
| 839 |
+
"num_tokens": 13490265.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.35269592416007073,
|
| 844 |
+
"epoch": 0.7881311206239371,
|
| 845 |
+
"grad_norm": 0.1416015625,
|
| 846 |
+
"learning_rate": 0.00014752970606629143,
|
| 847 |
+
"loss": 0.3436,
|
| 848 |
+
"mean_token_accuracy": 0.9150325283408165,
|
| 849 |
+
"num_tokens": 13652700.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.3484025130281225,
|
| 854 |
+
"epoch": 0.7975136339646983,
|
| 855 |
+
"grad_norm": 0.1650390625,
|
| 856 |
+
"learning_rate": 0.00014690431519699812,
|
| 857 |
+
"loss": 0.3433,
|
| 858 |
+
"mean_token_accuracy": 0.9187351956963539,
|
| 859 |
+
"num_tokens": 13814997.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.34064410558785313,
|
| 864 |
+
"epoch": 0.8068961473054594,
|
| 865 |
+
"grad_norm": 0.169921875,
|
| 866 |
+
"learning_rate": 0.00014627892432770483,
|
| 867 |
+
"loss": 0.3319,
|
| 868 |
+
"mean_token_accuracy": 0.917700307443738,
|
| 869 |
+
"num_tokens": 13977550.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.3676424361299723,
|
| 874 |
+
"epoch": 0.8162786606462206,
|
| 875 |
+
"grad_norm": 0.1474609375,
|
| 876 |
+
"learning_rate": 0.00014565353345841151,
|
| 877 |
+
"loss": 0.3611,
|
| 878 |
+
"mean_token_accuracy": 0.9167136520147323,
|
| 879 |
+
"num_tokens": 14140493.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.3216154734662268,
|
| 884 |
+
"epoch": 0.8256611739869818,
|
| 885 |
+
"grad_norm": 0.1767578125,
|
| 886 |
+
"learning_rate": 0.0001450281425891182,
|
| 887 |
+
"loss": 0.3133,
|
| 888 |
+
"mean_token_accuracy": 0.920833321288228,
|
| 889 |
+
"num_tokens": 14302638.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.3731617649958935,
|
| 894 |
+
"epoch": 0.8350436873277429,
|
| 895 |
+
"grad_norm": 0.1640625,
|
| 896 |
+
"learning_rate": 0.0001444027517198249,
|
| 897 |
+
"loss": 0.3708,
|
| 898 |
+
"mean_token_accuracy": 0.9144421305507422,
|
| 899 |
+
"num_tokens": 14465632.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.3741735242540017,
|
| 904 |
+
"epoch": 0.844426200668504,
|
| 905 |
+
"grad_norm": 0.1474609375,
|
| 906 |
+
"learning_rate": 0.0001437773608505316,
|
| 907 |
+
"loss": 0.3628,
|
| 908 |
+
"mean_token_accuracy": 0.9130110245198011,
|
| 909 |
+
"num_tokens": 14627986.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 0.363976987201022,
|
| 914 |
+
"epoch": 0.8538087140092653,
|
| 915 |
+
"grad_norm": 0.1611328125,
|
| 916 |
+
"learning_rate": 0.0001431519699812383,
|
| 917 |
+
"loss": 0.3585,
|
| 918 |
+
"mean_token_accuracy": 0.9120528548955917,
|
| 919 |
+
"num_tokens": 14790551.0,
|
| 920 |
+
"step": 910
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.3448503586114384,
|
| 924 |
+
"epoch": 0.8631912273500264,
|
| 925 |
+
"grad_norm": 0.1533203125,
|
| 926 |
+
"learning_rate": 0.00014252657911194497,
|
| 927 |
+
"loss": 0.3421,
|
| 928 |
+
"mean_token_accuracy": 0.9182739958167077,
|
| 929 |
+
"num_tokens": 14952661.0,
|
| 930 |
+
"step": 920
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 0.27787273108260707,
|
| 934 |
+
"epoch": 0.8725737406907875,
|
| 935 |
+
"grad_norm": 0.150390625,
|
| 936 |
+
"learning_rate": 0.00014190118824265166,
|
| 937 |
+
"loss": 0.2687,
|
| 938 |
+
"mean_token_accuracy": 0.92897635884583,
|
| 939 |
+
"num_tokens": 15115022.0,
|
| 940 |
+
"step": 930
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.36200930876657367,
|
| 944 |
+
"epoch": 0.8819562540315486,
|
| 945 |
+
"grad_norm": 0.150390625,
|
| 946 |
+
"learning_rate": 0.00014127579737335837,
|
| 947 |
+
"loss": 0.3497,
|
| 948 |
+
"mean_token_accuracy": 0.9132607497274876,
|
| 949 |
+
"num_tokens": 15277207.0,
|
| 950 |
+
"step": 940
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.2834262179443613,
|
| 954 |
+
"epoch": 0.8913387673723099,
|
| 955 |
+
"grad_norm": 0.1494140625,
|
| 956 |
+
"learning_rate": 0.00014065040650406506,
|
| 957 |
+
"loss": 0.2814,
|
| 958 |
+
"mean_token_accuracy": 0.9268792189657689,
|
| 959 |
+
"num_tokens": 15440092.0,
|
| 960 |
+
"step": 950
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.3499863417411689,
|
| 964 |
+
"epoch": 0.900721280713071,
|
| 965 |
+
"grad_norm": 0.1484375,
|
| 966 |
+
"learning_rate": 0.00014002501563477175,
|
| 967 |
+
"loss": 0.3417,
|
| 968 |
+
"mean_token_accuracy": 0.9159077113494277,
|
| 969 |
+
"num_tokens": 15603417.0,
|
| 970 |
+
"step": 960
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 0.2800866418518126,
|
| 974 |
+
"epoch": 0.9101037940538321,
|
| 975 |
+
"grad_norm": 0.1826171875,
|
| 976 |
+
"learning_rate": 0.00013939962476547843,
|
| 977 |
+
"loss": 0.27,
|
| 978 |
+
"mean_token_accuracy": 0.9285330750048161,
|
| 979 |
+
"num_tokens": 15765520.0,
|
| 980 |
+
"step": 970
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.3038740568445064,
|
| 984 |
+
"epoch": 0.9194863073945934,
|
| 985 |
+
"grad_norm": 0.1669921875,
|
| 986 |
+
"learning_rate": 0.00013877423389618512,
|
| 987 |
+
"loss": 0.2992,
|
| 988 |
+
"mean_token_accuracy": 0.9227856550365686,
|
| 989 |
+
"num_tokens": 15928370.0,
|
| 990 |
+
"step": 980
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.39133549834950826,
|
| 994 |
+
"epoch": 0.9288688207353545,
|
| 995 |
+
"grad_norm": 0.19921875,
|
| 996 |
+
"learning_rate": 0.0001381488430268918,
|
| 997 |
+
"loss": 0.3845,
|
| 998 |
+
"mean_token_accuracy": 0.9107819177210331,
|
| 999 |
+
"num_tokens": 16090841.0,
|
| 1000 |
+
"step": 990
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 0.368834131793119,
|
| 1004 |
+
"epoch": 0.9382513340761156,
|
| 1005 |
+
"grad_norm": 0.16796875,
|
| 1006 |
+
"learning_rate": 0.0001375234521575985,
|
| 1007 |
+
"loss": 0.3592,
|
| 1008 |
+
"mean_token_accuracy": 0.9155494935810566,
|
| 1009 |
+
"num_tokens": 16253510.0,
|
| 1010 |
+
"step": 1000
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 0.3432939130580053,
|
| 1014 |
+
"epoch": 0.9476338474168768,
|
| 1015 |
+
"grad_norm": 0.181640625,
|
| 1016 |
+
"learning_rate": 0.0001368980612883052,
|
| 1017 |
+
"loss": 0.3434,
|
| 1018 |
+
"mean_token_accuracy": 0.9178479440510273,
|
| 1019 |
+
"num_tokens": 16416142.0,
|
| 1020 |
+
"step": 1010
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 0.3263048173219431,
|
| 1024 |
+
"epoch": 0.957016360757638,
|
| 1025 |
+
"grad_norm": 0.158203125,
|
| 1026 |
+
"learning_rate": 0.0001362726704190119,
|
| 1027 |
+
"loss": 0.3157,
|
| 1028 |
+
"mean_token_accuracy": 0.919898977316916,
|
| 1029 |
+
"num_tokens": 16578145.0,
|
| 1030 |
+
"step": 1020
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 0.30497189780580813,
|
| 1034 |
+
"epoch": 0.9663988740983991,
|
| 1035 |
+
"grad_norm": 0.162109375,
|
| 1036 |
+
"learning_rate": 0.00013564727954971858,
|
| 1037 |
+
"loss": 0.2985,
|
| 1038 |
+
"mean_token_accuracy": 0.922874777764082,
|
| 1039 |
+
"num_tokens": 16741103.0,
|
| 1040 |
+
"step": 1030
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 0.2940454826748464,
|
| 1044 |
+
"epoch": 0.9757813874391603,
|
| 1045 |
+
"grad_norm": 0.1689453125,
|
| 1046 |
+
"learning_rate": 0.00013502188868042526,
|
| 1047 |
+
"loss": 0.2874,
|
| 1048 |
+
"mean_token_accuracy": 0.9239259999245405,
|
| 1049 |
+
"num_tokens": 16903947.0,
|
| 1050 |
+
"step": 1040
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"entropy": 0.367372212279588,
|
| 1054 |
+
"epoch": 0.9851639007799214,
|
| 1055 |
+
"grad_norm": 0.1748046875,
|
| 1056 |
+
"learning_rate": 0.00013439649781113198,
|
| 1057 |
+
"loss": 0.3601,
|
| 1058 |
+
"mean_token_accuracy": 0.9152833472937345,
|
| 1059 |
+
"num_tokens": 17065800.0,
|
| 1060 |
+
"step": 1050
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"entropy": 0.34914421315770594,
|
| 1064 |
+
"epoch": 0.9945464141206826,
|
| 1065 |
+
"grad_norm": 0.1826171875,
|
| 1066 |
+
"learning_rate": 0.00013377110694183866,
|
| 1067 |
+
"loss": 0.3425,
|
| 1068 |
+
"mean_token_accuracy": 0.9175648283213377,
|
| 1069 |
+
"num_tokens": 17228736.0,
|
| 1070 |
+
"step": 1060
|
| 1071 |
+
}
|
| 1072 |
+
],
|
| 1073 |
+
"logging_steps": 10,
|
| 1074 |
+
"max_steps": 3198,
|
| 1075 |
+
"num_input_tokens_seen": 0,
|
| 1076 |
+
"num_train_epochs": 3,
|
| 1077 |
+
"save_steps": 500,
|
| 1078 |
+
"stateful_callbacks": {
|
| 1079 |
+
"TrainerControl": {
|
| 1080 |
+
"args": {
|
| 1081 |
+
"should_epoch_stop": false,
|
| 1082 |
+
"should_evaluate": false,
|
| 1083 |
+
"should_log": false,
|
| 1084 |
+
"should_save": true,
|
| 1085 |
+
"should_training_stop": false
|
| 1086 |
+
},
|
| 1087 |
+
"attributes": {}
|
| 1088 |
+
}
|
| 1089 |
+
},
|
| 1090 |
+
"total_flos": 7.814835842576794e+17,
|
| 1091 |
+
"train_batch_size": 1,
|
| 1092 |
+
"trial_name": null,
|
| 1093 |
+
"trial_params": null
|
| 1094 |
+
}
|
checkpoint-1066/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db83ac20cd1ea46a30b9db82ee3c07152c60e62ceb73c1d01e3725eeebe949ed
|
| 3 |
+
size 6289
|
checkpoint-2132/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 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.0
|
checkpoint-2132/adapter_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 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": 24,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"q_proj"
|
| 34 |
+
],
|
| 35 |
+
"target_parameters": null,
|
| 36 |
+
"task_type": "CAUSAL_LM",
|
| 37 |
+
"trainable_token_indices": null,
|
| 38 |
+
"use_dora": false,
|
| 39 |
+
"use_qalora": false,
|
| 40 |
+
"use_rslora": false
|
| 41 |
+
}
|
checkpoint-2132/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:763724c4fdc269f123767099353d736454e2a50a10fd23abdb439d247f4c2670
|
| 3 |
+
size 27280280
|
checkpoint-2132/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
checkpoint-2132/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48f195f6b6079460747c78513c74755ca071ac5895619aa98b2c0f74adefa102
|
| 3 |
+
size 27843851
|
checkpoint-2132/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f812ed3d34392df14ad31ce3caefce0af4e7edbb6c3ac2e45e11c68314a7872
|
| 3 |
+
size 14645
|
checkpoint-2132/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3a5930b268616eb65112dc31be9eb4769cd9ebb68b8a649be3f808253344d22
|
| 3 |
+
size 1465
|
checkpoint-2132/special_tokens_map.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|eot_id|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
}
|
| 16 |
+
}
|
checkpoint-2132/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
checkpoint-2132/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2062 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"128000": {
|
| 4 |
+
"content": "<|begin_of_text|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"128001": {
|
| 12 |
+
"content": "<|end_of_text|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"128002": {
|
| 20 |
+
"content": "<|reserved_special_token_0|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"128003": {
|
| 28 |
+
"content": "<|reserved_special_token_1|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"128004": {
|
| 36 |
+
"content": "<|finetune_right_pad_id|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"128005": {
|
| 44 |
+
"content": "<|reserved_special_token_2|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"128006": {
|
| 52 |
+
"content": "<|start_header_id|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"128007": {
|
| 60 |
+
"content": "<|end_header_id|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"128008": {
|
| 68 |
+
"content": "<|eom_id|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"128009": {
|
| 76 |
+
"content": "<|eot_id|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"128010": {
|
| 84 |
+
"content": "<|python_tag|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"128011": {
|
| 92 |
+
"content": "<|reserved_special_token_3|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"128012": {
|
| 100 |
+
"content": "<|reserved_special_token_4|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"128013": {
|
| 108 |
+
"content": "<|reserved_special_token_5|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"128014": {
|
| 116 |
+
"content": "<|reserved_special_token_6|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"128015": {
|
| 124 |
+
"content": "<|reserved_special_token_7|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"128016": {
|
| 132 |
+
"content": "<|reserved_special_token_8|>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"128017": {
|
| 140 |
+
"content": "<|reserved_special_token_9|>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"128018": {
|
| 148 |
+
"content": "<|reserved_special_token_10|>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"128019": {
|
| 156 |
+
"content": "<|reserved_special_token_11|>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"128020": {
|
| 164 |
+
"content": "<|reserved_special_token_12|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"128021": {
|
| 172 |
+
"content": "<|reserved_special_token_13|>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"128022": {
|
| 180 |
+
"content": "<|reserved_special_token_14|>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"128023": {
|
| 188 |
+
"content": "<|reserved_special_token_15|>",
|
| 189 |
+
"lstrip": false,
|
| 190 |
+
"normalized": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"single_word": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"128024": {
|
| 196 |
+
"content": "<|reserved_special_token_16|>",
|
| 197 |
+
"lstrip": false,
|
| 198 |
+
"normalized": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"single_word": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"128025": {
|
| 204 |
+
"content": "<|reserved_special_token_17|>",
|
| 205 |
+
"lstrip": false,
|
| 206 |
+
"normalized": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"single_word": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"128026": {
|
| 212 |
+
"content": "<|reserved_special_token_18|>",
|
| 213 |
+
"lstrip": false,
|
| 214 |
+
"normalized": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"128027": {
|
| 220 |
+
"content": "<|reserved_special_token_19|>",
|
| 221 |
+
"lstrip": false,
|
| 222 |
+
"normalized": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"single_word": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"128028": {
|
| 228 |
+
"content": "<|reserved_special_token_20|>",
|
| 229 |
+
"lstrip": false,
|
| 230 |
+
"normalized": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"single_word": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"128029": {
|
| 236 |
+
"content": "<|reserved_special_token_21|>",
|
| 237 |
+
"lstrip": false,
|
| 238 |
+
"normalized": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"single_word": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"128030": {
|
| 244 |
+
"content": "<|reserved_special_token_22|>",
|
| 245 |
+
"lstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"single_word": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"128031": {
|
| 252 |
+
"content": "<|reserved_special_token_23|>",
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"normalized": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"single_word": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"128032": {
|
| 260 |
+
"content": "<|reserved_special_token_24|>",
|
| 261 |
+
"lstrip": false,
|
| 262 |
+
"normalized": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"single_word": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"128033": {
|
| 268 |
+
"content": "<|reserved_special_token_25|>",
|
| 269 |
+
"lstrip": false,
|
| 270 |
+
"normalized": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"single_word": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"128034": {
|
| 276 |
+
"content": "<|reserved_special_token_26|>",
|
| 277 |
+
"lstrip": false,
|
| 278 |
+
"normalized": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"single_word": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"128035": {
|
| 284 |
+
"content": "<|reserved_special_token_27|>",
|
| 285 |
+
"lstrip": false,
|
| 286 |
+
"normalized": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"128036": {
|
| 292 |
+
"content": "<|reserved_special_token_28|>",
|
| 293 |
+
"lstrip": false,
|
| 294 |
+
"normalized": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"single_word": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"128037": {
|
| 300 |
+
"content": "<|reserved_special_token_29|>",
|
| 301 |
+
"lstrip": false,
|
| 302 |
+
"normalized": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"single_word": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"128038": {
|
| 308 |
+
"content": "<|reserved_special_token_30|>",
|
| 309 |
+
"lstrip": false,
|
| 310 |
+
"normalized": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"single_word": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"128039": {
|
| 316 |
+
"content": "<|reserved_special_token_31|>",
|
| 317 |
+
"lstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"single_word": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"128040": {
|
| 324 |
+
"content": "<|reserved_special_token_32|>",
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"normalized": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"single_word": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"128041": {
|
| 332 |
+
"content": "<|reserved_special_token_33|>",
|
| 333 |
+
"lstrip": false,
|
| 334 |
+
"normalized": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"single_word": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"128042": {
|
| 340 |
+
"content": "<|reserved_special_token_34|>",
|
| 341 |
+
"lstrip": false,
|
| 342 |
+
"normalized": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"single_word": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"128043": {
|
| 348 |
+
"content": "<|reserved_special_token_35|>",
|
| 349 |
+
"lstrip": false,
|
| 350 |
+
"normalized": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"single_word": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"128044": {
|
| 356 |
+
"content": "<|reserved_special_token_36|>",
|
| 357 |
+
"lstrip": false,
|
| 358 |
+
"normalized": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"128045": {
|
| 364 |
+
"content": "<|reserved_special_token_37|>",
|
| 365 |
+
"lstrip": false,
|
| 366 |
+
"normalized": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"single_word": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"128046": {
|
| 372 |
+
"content": "<|reserved_special_token_38|>",
|
| 373 |
+
"lstrip": false,
|
| 374 |
+
"normalized": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"single_word": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"128047": {
|
| 380 |
+
"content": "<|reserved_special_token_39|>",
|
| 381 |
+
"lstrip": false,
|
| 382 |
+
"normalized": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"single_word": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"128048": {
|
| 388 |
+
"content": "<|reserved_special_token_40|>",
|
| 389 |
+
"lstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"single_word": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"128049": {
|
| 396 |
+
"content": "<|reserved_special_token_41|>",
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"normalized": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"single_word": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"128050": {
|
| 404 |
+
"content": "<|reserved_special_token_42|>",
|
| 405 |
+
"lstrip": false,
|
| 406 |
+
"normalized": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"single_word": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"128051": {
|
| 412 |
+
"content": "<|reserved_special_token_43|>",
|
| 413 |
+
"lstrip": false,
|
| 414 |
+
"normalized": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"single_word": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"128052": {
|
| 420 |
+
"content": "<|reserved_special_token_44|>",
|
| 421 |
+
"lstrip": false,
|
| 422 |
+
"normalized": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"single_word": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"128053": {
|
| 428 |
+
"content": "<|reserved_special_token_45|>",
|
| 429 |
+
"lstrip": false,
|
| 430 |
+
"normalized": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"128054": {
|
| 436 |
+
"content": "<|reserved_special_token_46|>",
|
| 437 |
+
"lstrip": false,
|
| 438 |
+
"normalized": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"single_word": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"128055": {
|
| 444 |
+
"content": "<|reserved_special_token_47|>",
|
| 445 |
+
"lstrip": false,
|
| 446 |
+
"normalized": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"single_word": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"128056": {
|
| 452 |
+
"content": "<|reserved_special_token_48|>",
|
| 453 |
+
"lstrip": false,
|
| 454 |
+
"normalized": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"single_word": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"128057": {
|
| 460 |
+
"content": "<|reserved_special_token_49|>",
|
| 461 |
+
"lstrip": false,
|
| 462 |
+
"normalized": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"single_word": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"128058": {
|
| 468 |
+
"content": "<|reserved_special_token_50|>",
|
| 469 |
+
"lstrip": false,
|
| 470 |
+
"normalized": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"single_word": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"128059": {
|
| 476 |
+
"content": "<|reserved_special_token_51|>",
|
| 477 |
+
"lstrip": false,
|
| 478 |
+
"normalized": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"single_word": false,
|
| 481 |
+
"special": true
|
| 482 |
+
},
|
| 483 |
+
"128060": {
|
| 484 |
+
"content": "<|reserved_special_token_52|>",
|
| 485 |
+
"lstrip": false,
|
| 486 |
+
"normalized": false,
|
| 487 |
+
"rstrip": false,
|
| 488 |
+
"single_word": false,
|
| 489 |
+
"special": true
|
| 490 |
+
},
|
| 491 |
+
"128061": {
|
| 492 |
+
"content": "<|reserved_special_token_53|>",
|
| 493 |
+
"lstrip": false,
|
| 494 |
+
"normalized": false,
|
| 495 |
+
"rstrip": false,
|
| 496 |
+
"single_word": false,
|
| 497 |
+
"special": true
|
| 498 |
+
},
|
| 499 |
+
"128062": {
|
| 500 |
+
"content": "<|reserved_special_token_54|>",
|
| 501 |
+
"lstrip": false,
|
| 502 |
+
"normalized": false,
|
| 503 |
+
"rstrip": false,
|
| 504 |
+
"single_word": false,
|
| 505 |
+
"special": true
|
| 506 |
+
},
|
| 507 |
+
"128063": {
|
| 508 |
+
"content": "<|reserved_special_token_55|>",
|
| 509 |
+
"lstrip": false,
|
| 510 |
+
"normalized": false,
|
| 511 |
+
"rstrip": false,
|
| 512 |
+
"single_word": false,
|
| 513 |
+
"special": true
|
| 514 |
+
},
|
| 515 |
+
"128064": {
|
| 516 |
+
"content": "<|reserved_special_token_56|>",
|
| 517 |
+
"lstrip": false,
|
| 518 |
+
"normalized": false,
|
| 519 |
+
"rstrip": false,
|
| 520 |
+
"single_word": false,
|
| 521 |
+
"special": true
|
| 522 |
+
},
|
| 523 |
+
"128065": {
|
| 524 |
+
"content": "<|reserved_special_token_57|>",
|
| 525 |
+
"lstrip": false,
|
| 526 |
+
"normalized": false,
|
| 527 |
+
"rstrip": false,
|
| 528 |
+
"single_word": false,
|
| 529 |
+
"special": true
|
| 530 |
+
},
|
| 531 |
+
"128066": {
|
| 532 |
+
"content": "<|reserved_special_token_58|>",
|
| 533 |
+
"lstrip": false,
|
| 534 |
+
"normalized": false,
|
| 535 |
+
"rstrip": false,
|
| 536 |
+
"single_word": false,
|
| 537 |
+
"special": true
|
| 538 |
+
},
|
| 539 |
+
"128067": {
|
| 540 |
+
"content": "<|reserved_special_token_59|>",
|
| 541 |
+
"lstrip": false,
|
| 542 |
+
"normalized": false,
|
| 543 |
+
"rstrip": false,
|
| 544 |
+
"single_word": false,
|
| 545 |
+
"special": true
|
| 546 |
+
},
|
| 547 |
+
"128068": {
|
| 548 |
+
"content": "<|reserved_special_token_60|>",
|
| 549 |
+
"lstrip": false,
|
| 550 |
+
"normalized": false,
|
| 551 |
+
"rstrip": false,
|
| 552 |
+
"single_word": false,
|
| 553 |
+
"special": true
|
| 554 |
+
},
|
| 555 |
+
"128069": {
|
| 556 |
+
"content": "<|reserved_special_token_61|>",
|
| 557 |
+
"lstrip": false,
|
| 558 |
+
"normalized": false,
|
| 559 |
+
"rstrip": false,
|
| 560 |
+
"single_word": false,
|
| 561 |
+
"special": true
|
| 562 |
+
},
|
| 563 |
+
"128070": {
|
| 564 |
+
"content": "<|reserved_special_token_62|>",
|
| 565 |
+
"lstrip": false,
|
| 566 |
+
"normalized": false,
|
| 567 |
+
"rstrip": false,
|
| 568 |
+
"single_word": false,
|
| 569 |
+
"special": true
|
| 570 |
+
},
|
| 571 |
+
"128071": {
|
| 572 |
+
"content": "<|reserved_special_token_63|>",
|
| 573 |
+
"lstrip": false,
|
| 574 |
+
"normalized": false,
|
| 575 |
+
"rstrip": false,
|
| 576 |
+
"single_word": false,
|
| 577 |
+
"special": true
|
| 578 |
+
},
|
| 579 |
+
"128072": {
|
| 580 |
+
"content": "<|reserved_special_token_64|>",
|
| 581 |
+
"lstrip": false,
|
| 582 |
+
"normalized": false,
|
| 583 |
+
"rstrip": false,
|
| 584 |
+
"single_word": false,
|
| 585 |
+
"special": true
|
| 586 |
+
},
|
| 587 |
+
"128073": {
|
| 588 |
+
"content": "<|reserved_special_token_65|>",
|
| 589 |
+
"lstrip": false,
|
| 590 |
+
"normalized": false,
|
| 591 |
+
"rstrip": false,
|
| 592 |
+
"single_word": false,
|
| 593 |
+
"special": true
|
| 594 |
+
},
|
| 595 |
+
"128074": {
|
| 596 |
+
"content": "<|reserved_special_token_66|>",
|
| 597 |
+
"lstrip": false,
|
| 598 |
+
"normalized": false,
|
| 599 |
+
"rstrip": false,
|
| 600 |
+
"single_word": false,
|
| 601 |
+
"special": true
|
| 602 |
+
},
|
| 603 |
+
"128075": {
|
| 604 |
+
"content": "<|reserved_special_token_67|>",
|
| 605 |
+
"lstrip": false,
|
| 606 |
+
"normalized": false,
|
| 607 |
+
"rstrip": false,
|
| 608 |
+
"single_word": false,
|
| 609 |
+
"special": true
|
| 610 |
+
},
|
| 611 |
+
"128076": {
|
| 612 |
+
"content": "<|reserved_special_token_68|>",
|
| 613 |
+
"lstrip": false,
|
| 614 |
+
"normalized": false,
|
| 615 |
+
"rstrip": false,
|
| 616 |
+
"single_word": false,
|
| 617 |
+
"special": true
|
| 618 |
+
},
|
| 619 |
+
"128077": {
|
| 620 |
+
"content": "<|reserved_special_token_69|>",
|
| 621 |
+
"lstrip": false,
|
| 622 |
+
"normalized": false,
|
| 623 |
+
"rstrip": false,
|
| 624 |
+
"single_word": false,
|
| 625 |
+
"special": true
|
| 626 |
+
},
|
| 627 |
+
"128078": {
|
| 628 |
+
"content": "<|reserved_special_token_70|>",
|
| 629 |
+
"lstrip": false,
|
| 630 |
+
"normalized": false,
|
| 631 |
+
"rstrip": false,
|
| 632 |
+
"single_word": false,
|
| 633 |
+
"special": true
|
| 634 |
+
},
|
| 635 |
+
"128079": {
|
| 636 |
+
"content": "<|reserved_special_token_71|>",
|
| 637 |
+
"lstrip": false,
|
| 638 |
+
"normalized": false,
|
| 639 |
+
"rstrip": false,
|
| 640 |
+
"single_word": false,
|
| 641 |
+
"special": true
|
| 642 |
+
},
|
| 643 |
+
"128080": {
|
| 644 |
+
"content": "<|reserved_special_token_72|>",
|
| 645 |
+
"lstrip": false,
|
| 646 |
+
"normalized": false,
|
| 647 |
+
"rstrip": false,
|
| 648 |
+
"single_word": false,
|
| 649 |
+
"special": true
|
| 650 |
+
},
|
| 651 |
+
"128081": {
|
| 652 |
+
"content": "<|reserved_special_token_73|>",
|
| 653 |
+
"lstrip": false,
|
| 654 |
+
"normalized": false,
|
| 655 |
+
"rstrip": false,
|
| 656 |
+
"single_word": false,
|
| 657 |
+
"special": true
|
| 658 |
+
},
|
| 659 |
+
"128082": {
|
| 660 |
+
"content": "<|reserved_special_token_74|>",
|
| 661 |
+
"lstrip": false,
|
| 662 |
+
"normalized": false,
|
| 663 |
+
"rstrip": false,
|
| 664 |
+
"single_word": false,
|
| 665 |
+
"special": true
|
| 666 |
+
},
|
| 667 |
+
"128083": {
|
| 668 |
+
"content": "<|reserved_special_token_75|>",
|
| 669 |
+
"lstrip": false,
|
| 670 |
+
"normalized": false,
|
| 671 |
+
"rstrip": false,
|
| 672 |
+
"single_word": false,
|
| 673 |
+
"special": true
|
| 674 |
+
},
|
| 675 |
+
"128084": {
|
| 676 |
+
"content": "<|reserved_special_token_76|>",
|
| 677 |
+
"lstrip": false,
|
| 678 |
+
"normalized": false,
|
| 679 |
+
"rstrip": false,
|
| 680 |
+
"single_word": false,
|
| 681 |
+
"special": true
|
| 682 |
+
},
|
| 683 |
+
"128085": {
|
| 684 |
+
"content": "<|reserved_special_token_77|>",
|
| 685 |
+
"lstrip": false,
|
| 686 |
+
"normalized": false,
|
| 687 |
+
"rstrip": false,
|
| 688 |
+
"single_word": false,
|
| 689 |
+
"special": true
|
| 690 |
+
},
|
| 691 |
+
"128086": {
|
| 692 |
+
"content": "<|reserved_special_token_78|>",
|
| 693 |
+
"lstrip": false,
|
| 694 |
+
"normalized": false,
|
| 695 |
+
"rstrip": false,
|
| 696 |
+
"single_word": false,
|
| 697 |
+
"special": true
|
| 698 |
+
},
|
| 699 |
+
"128087": {
|
| 700 |
+
"content": "<|reserved_special_token_79|>",
|
| 701 |
+
"lstrip": false,
|
| 702 |
+
"normalized": false,
|
| 703 |
+
"rstrip": false,
|
| 704 |
+
"single_word": false,
|
| 705 |
+
"special": true
|
| 706 |
+
},
|
| 707 |
+
"128088": {
|
| 708 |
+
"content": "<|reserved_special_token_80|>",
|
| 709 |
+
"lstrip": false,
|
| 710 |
+
"normalized": false,
|
| 711 |
+
"rstrip": false,
|
| 712 |
+
"single_word": false,
|
| 713 |
+
"special": true
|
| 714 |
+
},
|
| 715 |
+
"128089": {
|
| 716 |
+
"content": "<|reserved_special_token_81|>",
|
| 717 |
+
"lstrip": false,
|
| 718 |
+
"normalized": false,
|
| 719 |
+
"rstrip": false,
|
| 720 |
+
"single_word": false,
|
| 721 |
+
"special": true
|
| 722 |
+
},
|
| 723 |
+
"128090": {
|
| 724 |
+
"content": "<|reserved_special_token_82|>",
|
| 725 |
+
"lstrip": false,
|
| 726 |
+
"normalized": false,
|
| 727 |
+
"rstrip": false,
|
| 728 |
+
"single_word": false,
|
| 729 |
+
"special": true
|
| 730 |
+
},
|
| 731 |
+
"128091": {
|
| 732 |
+
"content": "<|reserved_special_token_83|>",
|
| 733 |
+
"lstrip": false,
|
| 734 |
+
"normalized": false,
|
| 735 |
+
"rstrip": false,
|
| 736 |
+
"single_word": false,
|
| 737 |
+
"special": true
|
| 738 |
+
},
|
| 739 |
+
"128092": {
|
| 740 |
+
"content": "<|reserved_special_token_84|>",
|
| 741 |
+
"lstrip": false,
|
| 742 |
+
"normalized": false,
|
| 743 |
+
"rstrip": false,
|
| 744 |
+
"single_word": false,
|
| 745 |
+
"special": true
|
| 746 |
+
},
|
| 747 |
+
"128093": {
|
| 748 |
+
"content": "<|reserved_special_token_85|>",
|
| 749 |
+
"lstrip": false,
|
| 750 |
+
"normalized": false,
|
| 751 |
+
"rstrip": false,
|
| 752 |
+
"single_word": false,
|
| 753 |
+
"special": true
|
| 754 |
+
},
|
| 755 |
+
"128094": {
|
| 756 |
+
"content": "<|reserved_special_token_86|>",
|
| 757 |
+
"lstrip": false,
|
| 758 |
+
"normalized": false,
|
| 759 |
+
"rstrip": false,
|
| 760 |
+
"single_word": false,
|
| 761 |
+
"special": true
|
| 762 |
+
},
|
| 763 |
+
"128095": {
|
| 764 |
+
"content": "<|reserved_special_token_87|>",
|
| 765 |
+
"lstrip": false,
|
| 766 |
+
"normalized": false,
|
| 767 |
+
"rstrip": false,
|
| 768 |
+
"single_word": false,
|
| 769 |
+
"special": true
|
| 770 |
+
},
|
| 771 |
+
"128096": {
|
| 772 |
+
"content": "<|reserved_special_token_88|>",
|
| 773 |
+
"lstrip": false,
|
| 774 |
+
"normalized": false,
|
| 775 |
+
"rstrip": false,
|
| 776 |
+
"single_word": false,
|
| 777 |
+
"special": true
|
| 778 |
+
},
|
| 779 |
+
"128097": {
|
| 780 |
+
"content": "<|reserved_special_token_89|>",
|
| 781 |
+
"lstrip": false,
|
| 782 |
+
"normalized": false,
|
| 783 |
+
"rstrip": false,
|
| 784 |
+
"single_word": false,
|
| 785 |
+
"special": true
|
| 786 |
+
},
|
| 787 |
+
"128098": {
|
| 788 |
+
"content": "<|reserved_special_token_90|>",
|
| 789 |
+
"lstrip": false,
|
| 790 |
+
"normalized": false,
|
| 791 |
+
"rstrip": false,
|
| 792 |
+
"single_word": false,
|
| 793 |
+
"special": true
|
| 794 |
+
},
|
| 795 |
+
"128099": {
|
| 796 |
+
"content": "<|reserved_special_token_91|>",
|
| 797 |
+
"lstrip": false,
|
| 798 |
+
"normalized": false,
|
| 799 |
+
"rstrip": false,
|
| 800 |
+
"single_word": false,
|
| 801 |
+
"special": true
|
| 802 |
+
},
|
| 803 |
+
"128100": {
|
| 804 |
+
"content": "<|reserved_special_token_92|>",
|
| 805 |
+
"lstrip": false,
|
| 806 |
+
"normalized": false,
|
| 807 |
+
"rstrip": false,
|
| 808 |
+
"single_word": false,
|
| 809 |
+
"special": true
|
| 810 |
+
},
|
| 811 |
+
"128101": {
|
| 812 |
+
"content": "<|reserved_special_token_93|>",
|
| 813 |
+
"lstrip": false,
|
| 814 |
+
"normalized": false,
|
| 815 |
+
"rstrip": false,
|
| 816 |
+
"single_word": false,
|
| 817 |
+
"special": true
|
| 818 |
+
},
|
| 819 |
+
"128102": {
|
| 820 |
+
"content": "<|reserved_special_token_94|>",
|
| 821 |
+
"lstrip": false,
|
| 822 |
+
"normalized": false,
|
| 823 |
+
"rstrip": false,
|
| 824 |
+
"single_word": false,
|
| 825 |
+
"special": true
|
| 826 |
+
},
|
| 827 |
+
"128103": {
|
| 828 |
+
"content": "<|reserved_special_token_95|>",
|
| 829 |
+
"lstrip": false,
|
| 830 |
+
"normalized": false,
|
| 831 |
+
"rstrip": false,
|
| 832 |
+
"single_word": false,
|
| 833 |
+
"special": true
|
| 834 |
+
},
|
| 835 |
+
"128104": {
|
| 836 |
+
"content": "<|reserved_special_token_96|>",
|
| 837 |
+
"lstrip": false,
|
| 838 |
+
"normalized": false,
|
| 839 |
+
"rstrip": false,
|
| 840 |
+
"single_word": false,
|
| 841 |
+
"special": true
|
| 842 |
+
},
|
| 843 |
+
"128105": {
|
| 844 |
+
"content": "<|reserved_special_token_97|>",
|
| 845 |
+
"lstrip": false,
|
| 846 |
+
"normalized": false,
|
| 847 |
+
"rstrip": false,
|
| 848 |
+
"single_word": false,
|
| 849 |
+
"special": true
|
| 850 |
+
},
|
| 851 |
+
"128106": {
|
| 852 |
+
"content": "<|reserved_special_token_98|>",
|
| 853 |
+
"lstrip": false,
|
| 854 |
+
"normalized": false,
|
| 855 |
+
"rstrip": false,
|
| 856 |
+
"single_word": false,
|
| 857 |
+
"special": true
|
| 858 |
+
},
|
| 859 |
+
"128107": {
|
| 860 |
+
"content": "<|reserved_special_token_99|>",
|
| 861 |
+
"lstrip": false,
|
| 862 |
+
"normalized": false,
|
| 863 |
+
"rstrip": false,
|
| 864 |
+
"single_word": false,
|
| 865 |
+
"special": true
|
| 866 |
+
},
|
| 867 |
+
"128108": {
|
| 868 |
+
"content": "<|reserved_special_token_100|>",
|
| 869 |
+
"lstrip": false,
|
| 870 |
+
"normalized": false,
|
| 871 |
+
"rstrip": false,
|
| 872 |
+
"single_word": false,
|
| 873 |
+
"special": true
|
| 874 |
+
},
|
| 875 |
+
"128109": {
|
| 876 |
+
"content": "<|reserved_special_token_101|>",
|
| 877 |
+
"lstrip": false,
|
| 878 |
+
"normalized": false,
|
| 879 |
+
"rstrip": false,
|
| 880 |
+
"single_word": false,
|
| 881 |
+
"special": true
|
| 882 |
+
},
|
| 883 |
+
"128110": {
|
| 884 |
+
"content": "<|reserved_special_token_102|>",
|
| 885 |
+
"lstrip": false,
|
| 886 |
+
"normalized": false,
|
| 887 |
+
"rstrip": false,
|
| 888 |
+
"single_word": false,
|
| 889 |
+
"special": true
|
| 890 |
+
},
|
| 891 |
+
"128111": {
|
| 892 |
+
"content": "<|reserved_special_token_103|>",
|
| 893 |
+
"lstrip": false,
|
| 894 |
+
"normalized": false,
|
| 895 |
+
"rstrip": false,
|
| 896 |
+
"single_word": false,
|
| 897 |
+
"special": true
|
| 898 |
+
},
|
| 899 |
+
"128112": {
|
| 900 |
+
"content": "<|reserved_special_token_104|>",
|
| 901 |
+
"lstrip": false,
|
| 902 |
+
"normalized": false,
|
| 903 |
+
"rstrip": false,
|
| 904 |
+
"single_word": false,
|
| 905 |
+
"special": true
|
| 906 |
+
},
|
| 907 |
+
"128113": {
|
| 908 |
+
"content": "<|reserved_special_token_105|>",
|
| 909 |
+
"lstrip": false,
|
| 910 |
+
"normalized": false,
|
| 911 |
+
"rstrip": false,
|
| 912 |
+
"single_word": false,
|
| 913 |
+
"special": true
|
| 914 |
+
},
|
| 915 |
+
"128114": {
|
| 916 |
+
"content": "<|reserved_special_token_106|>",
|
| 917 |
+
"lstrip": false,
|
| 918 |
+
"normalized": false,
|
| 919 |
+
"rstrip": false,
|
| 920 |
+
"single_word": false,
|
| 921 |
+
"special": true
|
| 922 |
+
},
|
| 923 |
+
"128115": {
|
| 924 |
+
"content": "<|reserved_special_token_107|>",
|
| 925 |
+
"lstrip": false,
|
| 926 |
+
"normalized": false,
|
| 927 |
+
"rstrip": false,
|
| 928 |
+
"single_word": false,
|
| 929 |
+
"special": true
|
| 930 |
+
},
|
| 931 |
+
"128116": {
|
| 932 |
+
"content": "<|reserved_special_token_108|>",
|
| 933 |
+
"lstrip": false,
|
| 934 |
+
"normalized": false,
|
| 935 |
+
"rstrip": false,
|
| 936 |
+
"single_word": false,
|
| 937 |
+
"special": true
|
| 938 |
+
},
|
| 939 |
+
"128117": {
|
| 940 |
+
"content": "<|reserved_special_token_109|>",
|
| 941 |
+
"lstrip": false,
|
| 942 |
+
"normalized": false,
|
| 943 |
+
"rstrip": false,
|
| 944 |
+
"single_word": false,
|
| 945 |
+
"special": true
|
| 946 |
+
},
|
| 947 |
+
"128118": {
|
| 948 |
+
"content": "<|reserved_special_token_110|>",
|
| 949 |
+
"lstrip": false,
|
| 950 |
+
"normalized": false,
|
| 951 |
+
"rstrip": false,
|
| 952 |
+
"single_word": false,
|
| 953 |
+
"special": true
|
| 954 |
+
},
|
| 955 |
+
"128119": {
|
| 956 |
+
"content": "<|reserved_special_token_111|>",
|
| 957 |
+
"lstrip": false,
|
| 958 |
+
"normalized": false,
|
| 959 |
+
"rstrip": false,
|
| 960 |
+
"single_word": false,
|
| 961 |
+
"special": true
|
| 962 |
+
},
|
| 963 |
+
"128120": {
|
| 964 |
+
"content": "<|reserved_special_token_112|>",
|
| 965 |
+
"lstrip": false,
|
| 966 |
+
"normalized": false,
|
| 967 |
+
"rstrip": false,
|
| 968 |
+
"single_word": false,
|
| 969 |
+
"special": true
|
| 970 |
+
},
|
| 971 |
+
"128121": {
|
| 972 |
+
"content": "<|reserved_special_token_113|>",
|
| 973 |
+
"lstrip": false,
|
| 974 |
+
"normalized": false,
|
| 975 |
+
"rstrip": false,
|
| 976 |
+
"single_word": false,
|
| 977 |
+
"special": true
|
| 978 |
+
},
|
| 979 |
+
"128122": {
|
| 980 |
+
"content": "<|reserved_special_token_114|>",
|
| 981 |
+
"lstrip": false,
|
| 982 |
+
"normalized": false,
|
| 983 |
+
"rstrip": false,
|
| 984 |
+
"single_word": false,
|
| 985 |
+
"special": true
|
| 986 |
+
},
|
| 987 |
+
"128123": {
|
| 988 |
+
"content": "<|reserved_special_token_115|>",
|
| 989 |
+
"lstrip": false,
|
| 990 |
+
"normalized": false,
|
| 991 |
+
"rstrip": false,
|
| 992 |
+
"single_word": false,
|
| 993 |
+
"special": true
|
| 994 |
+
},
|
| 995 |
+
"128124": {
|
| 996 |
+
"content": "<|reserved_special_token_116|>",
|
| 997 |
+
"lstrip": false,
|
| 998 |
+
"normalized": false,
|
| 999 |
+
"rstrip": false,
|
| 1000 |
+
"single_word": false,
|
| 1001 |
+
"special": true
|
| 1002 |
+
},
|
| 1003 |
+
"128125": {
|
| 1004 |
+
"content": "<|reserved_special_token_117|>",
|
| 1005 |
+
"lstrip": false,
|
| 1006 |
+
"normalized": false,
|
| 1007 |
+
"rstrip": false,
|
| 1008 |
+
"single_word": false,
|
| 1009 |
+
"special": true
|
| 1010 |
+
},
|
| 1011 |
+
"128126": {
|
| 1012 |
+
"content": "<|reserved_special_token_118|>",
|
| 1013 |
+
"lstrip": false,
|
| 1014 |
+
"normalized": false,
|
| 1015 |
+
"rstrip": false,
|
| 1016 |
+
"single_word": false,
|
| 1017 |
+
"special": true
|
| 1018 |
+
},
|
| 1019 |
+
"128127": {
|
| 1020 |
+
"content": "<|reserved_special_token_119|>",
|
| 1021 |
+
"lstrip": false,
|
| 1022 |
+
"normalized": false,
|
| 1023 |
+
"rstrip": false,
|
| 1024 |
+
"single_word": false,
|
| 1025 |
+
"special": true
|
| 1026 |
+
},
|
| 1027 |
+
"128128": {
|
| 1028 |
+
"content": "<|reserved_special_token_120|>",
|
| 1029 |
+
"lstrip": false,
|
| 1030 |
+
"normalized": false,
|
| 1031 |
+
"rstrip": false,
|
| 1032 |
+
"single_word": false,
|
| 1033 |
+
"special": true
|
| 1034 |
+
},
|
| 1035 |
+
"128129": {
|
| 1036 |
+
"content": "<|reserved_special_token_121|>",
|
| 1037 |
+
"lstrip": false,
|
| 1038 |
+
"normalized": false,
|
| 1039 |
+
"rstrip": false,
|
| 1040 |
+
"single_word": false,
|
| 1041 |
+
"special": true
|
| 1042 |
+
},
|
| 1043 |
+
"128130": {
|
| 1044 |
+
"content": "<|reserved_special_token_122|>",
|
| 1045 |
+
"lstrip": false,
|
| 1046 |
+
"normalized": false,
|
| 1047 |
+
"rstrip": false,
|
| 1048 |
+
"single_word": false,
|
| 1049 |
+
"special": true
|
| 1050 |
+
},
|
| 1051 |
+
"128131": {
|
| 1052 |
+
"content": "<|reserved_special_token_123|>",
|
| 1053 |
+
"lstrip": false,
|
| 1054 |
+
"normalized": false,
|
| 1055 |
+
"rstrip": false,
|
| 1056 |
+
"single_word": false,
|
| 1057 |
+
"special": true
|
| 1058 |
+
},
|
| 1059 |
+
"128132": {
|
| 1060 |
+
"content": "<|reserved_special_token_124|>",
|
| 1061 |
+
"lstrip": false,
|
| 1062 |
+
"normalized": false,
|
| 1063 |
+
"rstrip": false,
|
| 1064 |
+
"single_word": false,
|
| 1065 |
+
"special": true
|
| 1066 |
+
},
|
| 1067 |
+
"128133": {
|
| 1068 |
+
"content": "<|reserved_special_token_125|>",
|
| 1069 |
+
"lstrip": false,
|
| 1070 |
+
"normalized": false,
|
| 1071 |
+
"rstrip": false,
|
| 1072 |
+
"single_word": false,
|
| 1073 |
+
"special": true
|
| 1074 |
+
},
|
| 1075 |
+
"128134": {
|
| 1076 |
+
"content": "<|reserved_special_token_126|>",
|
| 1077 |
+
"lstrip": false,
|
| 1078 |
+
"normalized": false,
|
| 1079 |
+
"rstrip": false,
|
| 1080 |
+
"single_word": false,
|
| 1081 |
+
"special": true
|
| 1082 |
+
},
|
| 1083 |
+
"128135": {
|
| 1084 |
+
"content": "<|reserved_special_token_127|>",
|
| 1085 |
+
"lstrip": false,
|
| 1086 |
+
"normalized": false,
|
| 1087 |
+
"rstrip": false,
|
| 1088 |
+
"single_word": false,
|
| 1089 |
+
"special": true
|
| 1090 |
+
},
|
| 1091 |
+
"128136": {
|
| 1092 |
+
"content": "<|reserved_special_token_128|>",
|
| 1093 |
+
"lstrip": false,
|
| 1094 |
+
"normalized": false,
|
| 1095 |
+
"rstrip": false,
|
| 1096 |
+
"single_word": false,
|
| 1097 |
+
"special": true
|
| 1098 |
+
},
|
| 1099 |
+
"128137": {
|
| 1100 |
+
"content": "<|reserved_special_token_129|>",
|
| 1101 |
+
"lstrip": false,
|
| 1102 |
+
"normalized": false,
|
| 1103 |
+
"rstrip": false,
|
| 1104 |
+
"single_word": false,
|
| 1105 |
+
"special": true
|
| 1106 |
+
},
|
| 1107 |
+
"128138": {
|
| 1108 |
+
"content": "<|reserved_special_token_130|>",
|
| 1109 |
+
"lstrip": false,
|
| 1110 |
+
"normalized": false,
|
| 1111 |
+
"rstrip": false,
|
| 1112 |
+
"single_word": false,
|
| 1113 |
+
"special": true
|
| 1114 |
+
},
|
| 1115 |
+
"128139": {
|
| 1116 |
+
"content": "<|reserved_special_token_131|>",
|
| 1117 |
+
"lstrip": false,
|
| 1118 |
+
"normalized": false,
|
| 1119 |
+
"rstrip": false,
|
| 1120 |
+
"single_word": false,
|
| 1121 |
+
"special": true
|
| 1122 |
+
},
|
| 1123 |
+
"128140": {
|
| 1124 |
+
"content": "<|reserved_special_token_132|>",
|
| 1125 |
+
"lstrip": false,
|
| 1126 |
+
"normalized": false,
|
| 1127 |
+
"rstrip": false,
|
| 1128 |
+
"single_word": false,
|
| 1129 |
+
"special": true
|
| 1130 |
+
},
|
| 1131 |
+
"128141": {
|
| 1132 |
+
"content": "<|reserved_special_token_133|>",
|
| 1133 |
+
"lstrip": false,
|
| 1134 |
+
"normalized": false,
|
| 1135 |
+
"rstrip": false,
|
| 1136 |
+
"single_word": false,
|
| 1137 |
+
"special": true
|
| 1138 |
+
},
|
| 1139 |
+
"128142": {
|
| 1140 |
+
"content": "<|reserved_special_token_134|>",
|
| 1141 |
+
"lstrip": false,
|
| 1142 |
+
"normalized": false,
|
| 1143 |
+
"rstrip": false,
|
| 1144 |
+
"single_word": false,
|
| 1145 |
+
"special": true
|
| 1146 |
+
},
|
| 1147 |
+
"128143": {
|
| 1148 |
+
"content": "<|reserved_special_token_135|>",
|
| 1149 |
+
"lstrip": false,
|
| 1150 |
+
"normalized": false,
|
| 1151 |
+
"rstrip": false,
|
| 1152 |
+
"single_word": false,
|
| 1153 |
+
"special": true
|
| 1154 |
+
},
|
| 1155 |
+
"128144": {
|
| 1156 |
+
"content": "<|reserved_special_token_136|>",
|
| 1157 |
+
"lstrip": false,
|
| 1158 |
+
"normalized": false,
|
| 1159 |
+
"rstrip": false,
|
| 1160 |
+
"single_word": false,
|
| 1161 |
+
"special": true
|
| 1162 |
+
},
|
| 1163 |
+
"128145": {
|
| 1164 |
+
"content": "<|reserved_special_token_137|>",
|
| 1165 |
+
"lstrip": false,
|
| 1166 |
+
"normalized": false,
|
| 1167 |
+
"rstrip": false,
|
| 1168 |
+
"single_word": false,
|
| 1169 |
+
"special": true
|
| 1170 |
+
},
|
| 1171 |
+
"128146": {
|
| 1172 |
+
"content": "<|reserved_special_token_138|>",
|
| 1173 |
+
"lstrip": false,
|
| 1174 |
+
"normalized": false,
|
| 1175 |
+
"rstrip": false,
|
| 1176 |
+
"single_word": false,
|
| 1177 |
+
"special": true
|
| 1178 |
+
},
|
| 1179 |
+
"128147": {
|
| 1180 |
+
"content": "<|reserved_special_token_139|>",
|
| 1181 |
+
"lstrip": false,
|
| 1182 |
+
"normalized": false,
|
| 1183 |
+
"rstrip": false,
|
| 1184 |
+
"single_word": false,
|
| 1185 |
+
"special": true
|
| 1186 |
+
},
|
| 1187 |
+
"128148": {
|
| 1188 |
+
"content": "<|reserved_special_token_140|>",
|
| 1189 |
+
"lstrip": false,
|
| 1190 |
+
"normalized": false,
|
| 1191 |
+
"rstrip": false,
|
| 1192 |
+
"single_word": false,
|
| 1193 |
+
"special": true
|
| 1194 |
+
},
|
| 1195 |
+
"128149": {
|
| 1196 |
+
"content": "<|reserved_special_token_141|>",
|
| 1197 |
+
"lstrip": false,
|
| 1198 |
+
"normalized": false,
|
| 1199 |
+
"rstrip": false,
|
| 1200 |
+
"single_word": false,
|
| 1201 |
+
"special": true
|
| 1202 |
+
},
|
| 1203 |
+
"128150": {
|
| 1204 |
+
"content": "<|reserved_special_token_142|>",
|
| 1205 |
+
"lstrip": false,
|
| 1206 |
+
"normalized": false,
|
| 1207 |
+
"rstrip": false,
|
| 1208 |
+
"single_word": false,
|
| 1209 |
+
"special": true
|
| 1210 |
+
},
|
| 1211 |
+
"128151": {
|
| 1212 |
+
"content": "<|reserved_special_token_143|>",
|
| 1213 |
+
"lstrip": false,
|
| 1214 |
+
"normalized": false,
|
| 1215 |
+
"rstrip": false,
|
| 1216 |
+
"single_word": false,
|
| 1217 |
+
"special": true
|
| 1218 |
+
},
|
| 1219 |
+
"128152": {
|
| 1220 |
+
"content": "<|reserved_special_token_144|>",
|
| 1221 |
+
"lstrip": false,
|
| 1222 |
+
"normalized": false,
|
| 1223 |
+
"rstrip": false,
|
| 1224 |
+
"single_word": false,
|
| 1225 |
+
"special": true
|
| 1226 |
+
},
|
| 1227 |
+
"128153": {
|
| 1228 |
+
"content": "<|reserved_special_token_145|>",
|
| 1229 |
+
"lstrip": false,
|
| 1230 |
+
"normalized": false,
|
| 1231 |
+
"rstrip": false,
|
| 1232 |
+
"single_word": false,
|
| 1233 |
+
"special": true
|
| 1234 |
+
},
|
| 1235 |
+
"128154": {
|
| 1236 |
+
"content": "<|reserved_special_token_146|>",
|
| 1237 |
+
"lstrip": false,
|
| 1238 |
+
"normalized": false,
|
| 1239 |
+
"rstrip": false,
|
| 1240 |
+
"single_word": false,
|
| 1241 |
+
"special": true
|
| 1242 |
+
},
|
| 1243 |
+
"128155": {
|
| 1244 |
+
"content": "<|reserved_special_token_147|>",
|
| 1245 |
+
"lstrip": false,
|
| 1246 |
+
"normalized": false,
|
| 1247 |
+
"rstrip": false,
|
| 1248 |
+
"single_word": false,
|
| 1249 |
+
"special": true
|
| 1250 |
+
},
|
| 1251 |
+
"128156": {
|
| 1252 |
+
"content": "<|reserved_special_token_148|>",
|
| 1253 |
+
"lstrip": false,
|
| 1254 |
+
"normalized": false,
|
| 1255 |
+
"rstrip": false,
|
| 1256 |
+
"single_word": false,
|
| 1257 |
+
"special": true
|
| 1258 |
+
},
|
| 1259 |
+
"128157": {
|
| 1260 |
+
"content": "<|reserved_special_token_149|>",
|
| 1261 |
+
"lstrip": false,
|
| 1262 |
+
"normalized": false,
|
| 1263 |
+
"rstrip": false,
|
| 1264 |
+
"single_word": false,
|
| 1265 |
+
"special": true
|
| 1266 |
+
},
|
| 1267 |
+
"128158": {
|
| 1268 |
+
"content": "<|reserved_special_token_150|>",
|
| 1269 |
+
"lstrip": false,
|
| 1270 |
+
"normalized": false,
|
| 1271 |
+
"rstrip": false,
|
| 1272 |
+
"single_word": false,
|
| 1273 |
+
"special": true
|
| 1274 |
+
},
|
| 1275 |
+
"128159": {
|
| 1276 |
+
"content": "<|reserved_special_token_151|>",
|
| 1277 |
+
"lstrip": false,
|
| 1278 |
+
"normalized": false,
|
| 1279 |
+
"rstrip": false,
|
| 1280 |
+
"single_word": false,
|
| 1281 |
+
"special": true
|
| 1282 |
+
},
|
| 1283 |
+
"128160": {
|
| 1284 |
+
"content": "<|reserved_special_token_152|>",
|
| 1285 |
+
"lstrip": false,
|
| 1286 |
+
"normalized": false,
|
| 1287 |
+
"rstrip": false,
|
| 1288 |
+
"single_word": false,
|
| 1289 |
+
"special": true
|
| 1290 |
+
},
|
| 1291 |
+
"128161": {
|
| 1292 |
+
"content": "<|reserved_special_token_153|>",
|
| 1293 |
+
"lstrip": false,
|
| 1294 |
+
"normalized": false,
|
| 1295 |
+
"rstrip": false,
|
| 1296 |
+
"single_word": false,
|
| 1297 |
+
"special": true
|
| 1298 |
+
},
|
| 1299 |
+
"128162": {
|
| 1300 |
+
"content": "<|reserved_special_token_154|>",
|
| 1301 |
+
"lstrip": false,
|
| 1302 |
+
"normalized": false,
|
| 1303 |
+
"rstrip": false,
|
| 1304 |
+
"single_word": false,
|
| 1305 |
+
"special": true
|
| 1306 |
+
},
|
| 1307 |
+
"128163": {
|
| 1308 |
+
"content": "<|reserved_special_token_155|>",
|
| 1309 |
+
"lstrip": false,
|
| 1310 |
+
"normalized": false,
|
| 1311 |
+
"rstrip": false,
|
| 1312 |
+
"single_word": false,
|
| 1313 |
+
"special": true
|
| 1314 |
+
},
|
| 1315 |
+
"128164": {
|
| 1316 |
+
"content": "<|reserved_special_token_156|>",
|
| 1317 |
+
"lstrip": false,
|
| 1318 |
+
"normalized": false,
|
| 1319 |
+
"rstrip": false,
|
| 1320 |
+
"single_word": false,
|
| 1321 |
+
"special": true
|
| 1322 |
+
},
|
| 1323 |
+
"128165": {
|
| 1324 |
+
"content": "<|reserved_special_token_157|>",
|
| 1325 |
+
"lstrip": false,
|
| 1326 |
+
"normalized": false,
|
| 1327 |
+
"rstrip": false,
|
| 1328 |
+
"single_word": false,
|
| 1329 |
+
"special": true
|
| 1330 |
+
},
|
| 1331 |
+
"128166": {
|
| 1332 |
+
"content": "<|reserved_special_token_158|>",
|
| 1333 |
+
"lstrip": false,
|
| 1334 |
+
"normalized": false,
|
| 1335 |
+
"rstrip": false,
|
| 1336 |
+
"single_word": false,
|
| 1337 |
+
"special": true
|
| 1338 |
+
},
|
| 1339 |
+
"128167": {
|
| 1340 |
+
"content": "<|reserved_special_token_159|>",
|
| 1341 |
+
"lstrip": false,
|
| 1342 |
+
"normalized": false,
|
| 1343 |
+
"rstrip": false,
|
| 1344 |
+
"single_word": false,
|
| 1345 |
+
"special": true
|
| 1346 |
+
},
|
| 1347 |
+
"128168": {
|
| 1348 |
+
"content": "<|reserved_special_token_160|>",
|
| 1349 |
+
"lstrip": false,
|
| 1350 |
+
"normalized": false,
|
| 1351 |
+
"rstrip": false,
|
| 1352 |
+
"single_word": false,
|
| 1353 |
+
"special": true
|
| 1354 |
+
},
|
| 1355 |
+
"128169": {
|
| 1356 |
+
"content": "<|reserved_special_token_161|>",
|
| 1357 |
+
"lstrip": false,
|
| 1358 |
+
"normalized": false,
|
| 1359 |
+
"rstrip": false,
|
| 1360 |
+
"single_word": false,
|
| 1361 |
+
"special": true
|
| 1362 |
+
},
|
| 1363 |
+
"128170": {
|
| 1364 |
+
"content": "<|reserved_special_token_162|>",
|
| 1365 |
+
"lstrip": false,
|
| 1366 |
+
"normalized": false,
|
| 1367 |
+
"rstrip": false,
|
| 1368 |
+
"single_word": false,
|
| 1369 |
+
"special": true
|
| 1370 |
+
},
|
| 1371 |
+
"128171": {
|
| 1372 |
+
"content": "<|reserved_special_token_163|>",
|
| 1373 |
+
"lstrip": false,
|
| 1374 |
+
"normalized": false,
|
| 1375 |
+
"rstrip": false,
|
| 1376 |
+
"single_word": false,
|
| 1377 |
+
"special": true
|
| 1378 |
+
},
|
| 1379 |
+
"128172": {
|
| 1380 |
+
"content": "<|reserved_special_token_164|>",
|
| 1381 |
+
"lstrip": false,
|
| 1382 |
+
"normalized": false,
|
| 1383 |
+
"rstrip": false,
|
| 1384 |
+
"single_word": false,
|
| 1385 |
+
"special": true
|
| 1386 |
+
},
|
| 1387 |
+
"128173": {
|
| 1388 |
+
"content": "<|reserved_special_token_165|>",
|
| 1389 |
+
"lstrip": false,
|
| 1390 |
+
"normalized": false,
|
| 1391 |
+
"rstrip": false,
|
| 1392 |
+
"single_word": false,
|
| 1393 |
+
"special": true
|
| 1394 |
+
},
|
| 1395 |
+
"128174": {
|
| 1396 |
+
"content": "<|reserved_special_token_166|>",
|
| 1397 |
+
"lstrip": false,
|
| 1398 |
+
"normalized": false,
|
| 1399 |
+
"rstrip": false,
|
| 1400 |
+
"single_word": false,
|
| 1401 |
+
"special": true
|
| 1402 |
+
},
|
| 1403 |
+
"128175": {
|
| 1404 |
+
"content": "<|reserved_special_token_167|>",
|
| 1405 |
+
"lstrip": false,
|
| 1406 |
+
"normalized": false,
|
| 1407 |
+
"rstrip": false,
|
| 1408 |
+
"single_word": false,
|
| 1409 |
+
"special": true
|
| 1410 |
+
},
|
| 1411 |
+
"128176": {
|
| 1412 |
+
"content": "<|reserved_special_token_168|>",
|
| 1413 |
+
"lstrip": false,
|
| 1414 |
+
"normalized": false,
|
| 1415 |
+
"rstrip": false,
|
| 1416 |
+
"single_word": false,
|
| 1417 |
+
"special": true
|
| 1418 |
+
},
|
| 1419 |
+
"128177": {
|
| 1420 |
+
"content": "<|reserved_special_token_169|>",
|
| 1421 |
+
"lstrip": false,
|
| 1422 |
+
"normalized": false,
|
| 1423 |
+
"rstrip": false,
|
| 1424 |
+
"single_word": false,
|
| 1425 |
+
"special": true
|
| 1426 |
+
},
|
| 1427 |
+
"128178": {
|
| 1428 |
+
"content": "<|reserved_special_token_170|>",
|
| 1429 |
+
"lstrip": false,
|
| 1430 |
+
"normalized": false,
|
| 1431 |
+
"rstrip": false,
|
| 1432 |
+
"single_word": false,
|
| 1433 |
+
"special": true
|
| 1434 |
+
},
|
| 1435 |
+
"128179": {
|
| 1436 |
+
"content": "<|reserved_special_token_171|>",
|
| 1437 |
+
"lstrip": false,
|
| 1438 |
+
"normalized": false,
|
| 1439 |
+
"rstrip": false,
|
| 1440 |
+
"single_word": false,
|
| 1441 |
+
"special": true
|
| 1442 |
+
},
|
| 1443 |
+
"128180": {
|
| 1444 |
+
"content": "<|reserved_special_token_172|>",
|
| 1445 |
+
"lstrip": false,
|
| 1446 |
+
"normalized": false,
|
| 1447 |
+
"rstrip": false,
|
| 1448 |
+
"single_word": false,
|
| 1449 |
+
"special": true
|
| 1450 |
+
},
|
| 1451 |
+
"128181": {
|
| 1452 |
+
"content": "<|reserved_special_token_173|>",
|
| 1453 |
+
"lstrip": false,
|
| 1454 |
+
"normalized": false,
|
| 1455 |
+
"rstrip": false,
|
| 1456 |
+
"single_word": false,
|
| 1457 |
+
"special": true
|
| 1458 |
+
},
|
| 1459 |
+
"128182": {
|
| 1460 |
+
"content": "<|reserved_special_token_174|>",
|
| 1461 |
+
"lstrip": false,
|
| 1462 |
+
"normalized": false,
|
| 1463 |
+
"rstrip": false,
|
| 1464 |
+
"single_word": false,
|
| 1465 |
+
"special": true
|
| 1466 |
+
},
|
| 1467 |
+
"128183": {
|
| 1468 |
+
"content": "<|reserved_special_token_175|>",
|
| 1469 |
+
"lstrip": false,
|
| 1470 |
+
"normalized": false,
|
| 1471 |
+
"rstrip": false,
|
| 1472 |
+
"single_word": false,
|
| 1473 |
+
"special": true
|
| 1474 |
+
},
|
| 1475 |
+
"128184": {
|
| 1476 |
+
"content": "<|reserved_special_token_176|>",
|
| 1477 |
+
"lstrip": false,
|
| 1478 |
+
"normalized": false,
|
| 1479 |
+
"rstrip": false,
|
| 1480 |
+
"single_word": false,
|
| 1481 |
+
"special": true
|
| 1482 |
+
},
|
| 1483 |
+
"128185": {
|
| 1484 |
+
"content": "<|reserved_special_token_177|>",
|
| 1485 |
+
"lstrip": false,
|
| 1486 |
+
"normalized": false,
|
| 1487 |
+
"rstrip": false,
|
| 1488 |
+
"single_word": false,
|
| 1489 |
+
"special": true
|
| 1490 |
+
},
|
| 1491 |
+
"128186": {
|
| 1492 |
+
"content": "<|reserved_special_token_178|>",
|
| 1493 |
+
"lstrip": false,
|
| 1494 |
+
"normalized": false,
|
| 1495 |
+
"rstrip": false,
|
| 1496 |
+
"single_word": false,
|
| 1497 |
+
"special": true
|
| 1498 |
+
},
|
| 1499 |
+
"128187": {
|
| 1500 |
+
"content": "<|reserved_special_token_179|>",
|
| 1501 |
+
"lstrip": false,
|
| 1502 |
+
"normalized": false,
|
| 1503 |
+
"rstrip": false,
|
| 1504 |
+
"single_word": false,
|
| 1505 |
+
"special": true
|
| 1506 |
+
},
|
| 1507 |
+
"128188": {
|
| 1508 |
+
"content": "<|reserved_special_token_180|>",
|
| 1509 |
+
"lstrip": false,
|
| 1510 |
+
"normalized": false,
|
| 1511 |
+
"rstrip": false,
|
| 1512 |
+
"single_word": false,
|
| 1513 |
+
"special": true
|
| 1514 |
+
},
|
| 1515 |
+
"128189": {
|
| 1516 |
+
"content": "<|reserved_special_token_181|>",
|
| 1517 |
+
"lstrip": false,
|
| 1518 |
+
"normalized": false,
|
| 1519 |
+
"rstrip": false,
|
| 1520 |
+
"single_word": false,
|
| 1521 |
+
"special": true
|
| 1522 |
+
},
|
| 1523 |
+
"128190": {
|
| 1524 |
+
"content": "<|reserved_special_token_182|>",
|
| 1525 |
+
"lstrip": false,
|
| 1526 |
+
"normalized": false,
|
| 1527 |
+
"rstrip": false,
|
| 1528 |
+
"single_word": false,
|
| 1529 |
+
"special": true
|
| 1530 |
+
},
|
| 1531 |
+
"128191": {
|
| 1532 |
+
"content": "<|reserved_special_token_183|>",
|
| 1533 |
+
"lstrip": false,
|
| 1534 |
+
"normalized": false,
|
| 1535 |
+
"rstrip": false,
|
| 1536 |
+
"single_word": false,
|
| 1537 |
+
"special": true
|
| 1538 |
+
},
|
| 1539 |
+
"128192": {
|
| 1540 |
+
"content": "<|reserved_special_token_184|>",
|
| 1541 |
+
"lstrip": false,
|
| 1542 |
+
"normalized": false,
|
| 1543 |
+
"rstrip": false,
|
| 1544 |
+
"single_word": false,
|
| 1545 |
+
"special": true
|
| 1546 |
+
},
|
| 1547 |
+
"128193": {
|
| 1548 |
+
"content": "<|reserved_special_token_185|>",
|
| 1549 |
+
"lstrip": false,
|
| 1550 |
+
"normalized": false,
|
| 1551 |
+
"rstrip": false,
|
| 1552 |
+
"single_word": false,
|
| 1553 |
+
"special": true
|
| 1554 |
+
},
|
| 1555 |
+
"128194": {
|
| 1556 |
+
"content": "<|reserved_special_token_186|>",
|
| 1557 |
+
"lstrip": false,
|
| 1558 |
+
"normalized": false,
|
| 1559 |
+
"rstrip": false,
|
| 1560 |
+
"single_word": false,
|
| 1561 |
+
"special": true
|
| 1562 |
+
},
|
| 1563 |
+
"128195": {
|
| 1564 |
+
"content": "<|reserved_special_token_187|>",
|
| 1565 |
+
"lstrip": false,
|
| 1566 |
+
"normalized": false,
|
| 1567 |
+
"rstrip": false,
|
| 1568 |
+
"single_word": false,
|
| 1569 |
+
"special": true
|
| 1570 |
+
},
|
| 1571 |
+
"128196": {
|
| 1572 |
+
"content": "<|reserved_special_token_188|>",
|
| 1573 |
+
"lstrip": false,
|
| 1574 |
+
"normalized": false,
|
| 1575 |
+
"rstrip": false,
|
| 1576 |
+
"single_word": false,
|
| 1577 |
+
"special": true
|
| 1578 |
+
},
|
| 1579 |
+
"128197": {
|
| 1580 |
+
"content": "<|reserved_special_token_189|>",
|
| 1581 |
+
"lstrip": false,
|
| 1582 |
+
"normalized": false,
|
| 1583 |
+
"rstrip": false,
|
| 1584 |
+
"single_word": false,
|
| 1585 |
+
"special": true
|
| 1586 |
+
},
|
| 1587 |
+
"128198": {
|
| 1588 |
+
"content": "<|reserved_special_token_190|>",
|
| 1589 |
+
"lstrip": false,
|
| 1590 |
+
"normalized": false,
|
| 1591 |
+
"rstrip": false,
|
| 1592 |
+
"single_word": false,
|
| 1593 |
+
"special": true
|
| 1594 |
+
},
|
| 1595 |
+
"128199": {
|
| 1596 |
+
"content": "<|reserved_special_token_191|>",
|
| 1597 |
+
"lstrip": false,
|
| 1598 |
+
"normalized": false,
|
| 1599 |
+
"rstrip": false,
|
| 1600 |
+
"single_word": false,
|
| 1601 |
+
"special": true
|
| 1602 |
+
},
|
| 1603 |
+
"128200": {
|
| 1604 |
+
"content": "<|reserved_special_token_192|>",
|
| 1605 |
+
"lstrip": false,
|
| 1606 |
+
"normalized": false,
|
| 1607 |
+
"rstrip": false,
|
| 1608 |
+
"single_word": false,
|
| 1609 |
+
"special": true
|
| 1610 |
+
},
|
| 1611 |
+
"128201": {
|
| 1612 |
+
"content": "<|reserved_special_token_193|>",
|
| 1613 |
+
"lstrip": false,
|
| 1614 |
+
"normalized": false,
|
| 1615 |
+
"rstrip": false,
|
| 1616 |
+
"single_word": false,
|
| 1617 |
+
"special": true
|
| 1618 |
+
},
|
| 1619 |
+
"128202": {
|
| 1620 |
+
"content": "<|reserved_special_token_194|>",
|
| 1621 |
+
"lstrip": false,
|
| 1622 |
+
"normalized": false,
|
| 1623 |
+
"rstrip": false,
|
| 1624 |
+
"single_word": false,
|
| 1625 |
+
"special": true
|
| 1626 |
+
},
|
| 1627 |
+
"128203": {
|
| 1628 |
+
"content": "<|reserved_special_token_195|>",
|
| 1629 |
+
"lstrip": false,
|
| 1630 |
+
"normalized": false,
|
| 1631 |
+
"rstrip": false,
|
| 1632 |
+
"single_word": false,
|
| 1633 |
+
"special": true
|
| 1634 |
+
},
|
| 1635 |
+
"128204": {
|
| 1636 |
+
"content": "<|reserved_special_token_196|>",
|
| 1637 |
+
"lstrip": false,
|
| 1638 |
+
"normalized": false,
|
| 1639 |
+
"rstrip": false,
|
| 1640 |
+
"single_word": false,
|
| 1641 |
+
"special": true
|
| 1642 |
+
},
|
| 1643 |
+
"128205": {
|
| 1644 |
+
"content": "<|reserved_special_token_197|>",
|
| 1645 |
+
"lstrip": false,
|
| 1646 |
+
"normalized": false,
|
| 1647 |
+
"rstrip": false,
|
| 1648 |
+
"single_word": false,
|
| 1649 |
+
"special": true
|
| 1650 |
+
},
|
| 1651 |
+
"128206": {
|
| 1652 |
+
"content": "<|reserved_special_token_198|>",
|
| 1653 |
+
"lstrip": false,
|
| 1654 |
+
"normalized": false,
|
| 1655 |
+
"rstrip": false,
|
| 1656 |
+
"single_word": false,
|
| 1657 |
+
"special": true
|
| 1658 |
+
},
|
| 1659 |
+
"128207": {
|
| 1660 |
+
"content": "<|reserved_special_token_199|>",
|
| 1661 |
+
"lstrip": false,
|
| 1662 |
+
"normalized": false,
|
| 1663 |
+
"rstrip": false,
|
| 1664 |
+
"single_word": false,
|
| 1665 |
+
"special": true
|
| 1666 |
+
},
|
| 1667 |
+
"128208": {
|
| 1668 |
+
"content": "<|reserved_special_token_200|>",
|
| 1669 |
+
"lstrip": false,
|
| 1670 |
+
"normalized": false,
|
| 1671 |
+
"rstrip": false,
|
| 1672 |
+
"single_word": false,
|
| 1673 |
+
"special": true
|
| 1674 |
+
},
|
| 1675 |
+
"128209": {
|
| 1676 |
+
"content": "<|reserved_special_token_201|>",
|
| 1677 |
+
"lstrip": false,
|
| 1678 |
+
"normalized": false,
|
| 1679 |
+
"rstrip": false,
|
| 1680 |
+
"single_word": false,
|
| 1681 |
+
"special": true
|
| 1682 |
+
},
|
| 1683 |
+
"128210": {
|
| 1684 |
+
"content": "<|reserved_special_token_202|>",
|
| 1685 |
+
"lstrip": false,
|
| 1686 |
+
"normalized": false,
|
| 1687 |
+
"rstrip": false,
|
| 1688 |
+
"single_word": false,
|
| 1689 |
+
"special": true
|
| 1690 |
+
},
|
| 1691 |
+
"128211": {
|
| 1692 |
+
"content": "<|reserved_special_token_203|>",
|
| 1693 |
+
"lstrip": false,
|
| 1694 |
+
"normalized": false,
|
| 1695 |
+
"rstrip": false,
|
| 1696 |
+
"single_word": false,
|
| 1697 |
+
"special": true
|
| 1698 |
+
},
|
| 1699 |
+
"128212": {
|
| 1700 |
+
"content": "<|reserved_special_token_204|>",
|
| 1701 |
+
"lstrip": false,
|
| 1702 |
+
"normalized": false,
|
| 1703 |
+
"rstrip": false,
|
| 1704 |
+
"single_word": false,
|
| 1705 |
+
"special": true
|
| 1706 |
+
},
|
| 1707 |
+
"128213": {
|
| 1708 |
+
"content": "<|reserved_special_token_205|>",
|
| 1709 |
+
"lstrip": false,
|
| 1710 |
+
"normalized": false,
|
| 1711 |
+
"rstrip": false,
|
| 1712 |
+
"single_word": false,
|
| 1713 |
+
"special": true
|
| 1714 |
+
},
|
| 1715 |
+
"128214": {
|
| 1716 |
+
"content": "<|reserved_special_token_206|>",
|
| 1717 |
+
"lstrip": false,
|
| 1718 |
+
"normalized": false,
|
| 1719 |
+
"rstrip": false,
|
| 1720 |
+
"single_word": false,
|
| 1721 |
+
"special": true
|
| 1722 |
+
},
|
| 1723 |
+
"128215": {
|
| 1724 |
+
"content": "<|reserved_special_token_207|>",
|
| 1725 |
+
"lstrip": false,
|
| 1726 |
+
"normalized": false,
|
| 1727 |
+
"rstrip": false,
|
| 1728 |
+
"single_word": false,
|
| 1729 |
+
"special": true
|
| 1730 |
+
},
|
| 1731 |
+
"128216": {
|
| 1732 |
+
"content": "<|reserved_special_token_208|>",
|
| 1733 |
+
"lstrip": false,
|
| 1734 |
+
"normalized": false,
|
| 1735 |
+
"rstrip": false,
|
| 1736 |
+
"single_word": false,
|
| 1737 |
+
"special": true
|
| 1738 |
+
},
|
| 1739 |
+
"128217": {
|
| 1740 |
+
"content": "<|reserved_special_token_209|>",
|
| 1741 |
+
"lstrip": false,
|
| 1742 |
+
"normalized": false,
|
| 1743 |
+
"rstrip": false,
|
| 1744 |
+
"single_word": false,
|
| 1745 |
+
"special": true
|
| 1746 |
+
},
|
| 1747 |
+
"128218": {
|
| 1748 |
+
"content": "<|reserved_special_token_210|>",
|
| 1749 |
+
"lstrip": false,
|
| 1750 |
+
"normalized": false,
|
| 1751 |
+
"rstrip": false,
|
| 1752 |
+
"single_word": false,
|
| 1753 |
+
"special": true
|
| 1754 |
+
},
|
| 1755 |
+
"128219": {
|
| 1756 |
+
"content": "<|reserved_special_token_211|>",
|
| 1757 |
+
"lstrip": false,
|
| 1758 |
+
"normalized": false,
|
| 1759 |
+
"rstrip": false,
|
| 1760 |
+
"single_word": false,
|
| 1761 |
+
"special": true
|
| 1762 |
+
},
|
| 1763 |
+
"128220": {
|
| 1764 |
+
"content": "<|reserved_special_token_212|>",
|
| 1765 |
+
"lstrip": false,
|
| 1766 |
+
"normalized": false,
|
| 1767 |
+
"rstrip": false,
|
| 1768 |
+
"single_word": false,
|
| 1769 |
+
"special": true
|
| 1770 |
+
},
|
| 1771 |
+
"128221": {
|
| 1772 |
+
"content": "<|reserved_special_token_213|>",
|
| 1773 |
+
"lstrip": false,
|
| 1774 |
+
"normalized": false,
|
| 1775 |
+
"rstrip": false,
|
| 1776 |
+
"single_word": false,
|
| 1777 |
+
"special": true
|
| 1778 |
+
},
|
| 1779 |
+
"128222": {
|
| 1780 |
+
"content": "<|reserved_special_token_214|>",
|
| 1781 |
+
"lstrip": false,
|
| 1782 |
+
"normalized": false,
|
| 1783 |
+
"rstrip": false,
|
| 1784 |
+
"single_word": false,
|
| 1785 |
+
"special": true
|
| 1786 |
+
},
|
| 1787 |
+
"128223": {
|
| 1788 |
+
"content": "<|reserved_special_token_215|>",
|
| 1789 |
+
"lstrip": false,
|
| 1790 |
+
"normalized": false,
|
| 1791 |
+
"rstrip": false,
|
| 1792 |
+
"single_word": false,
|
| 1793 |
+
"special": true
|
| 1794 |
+
},
|
| 1795 |
+
"128224": {
|
| 1796 |
+
"content": "<|reserved_special_token_216|>",
|
| 1797 |
+
"lstrip": false,
|
| 1798 |
+
"normalized": false,
|
| 1799 |
+
"rstrip": false,
|
| 1800 |
+
"single_word": false,
|
| 1801 |
+
"special": true
|
| 1802 |
+
},
|
| 1803 |
+
"128225": {
|
| 1804 |
+
"content": "<|reserved_special_token_217|>",
|
| 1805 |
+
"lstrip": false,
|
| 1806 |
+
"normalized": false,
|
| 1807 |
+
"rstrip": false,
|
| 1808 |
+
"single_word": false,
|
| 1809 |
+
"special": true
|
| 1810 |
+
},
|
| 1811 |
+
"128226": {
|
| 1812 |
+
"content": "<|reserved_special_token_218|>",
|
| 1813 |
+
"lstrip": false,
|
| 1814 |
+
"normalized": false,
|
| 1815 |
+
"rstrip": false,
|
| 1816 |
+
"single_word": false,
|
| 1817 |
+
"special": true
|
| 1818 |
+
},
|
| 1819 |
+
"128227": {
|
| 1820 |
+
"content": "<|reserved_special_token_219|>",
|
| 1821 |
+
"lstrip": false,
|
| 1822 |
+
"normalized": false,
|
| 1823 |
+
"rstrip": false,
|
| 1824 |
+
"single_word": false,
|
| 1825 |
+
"special": true
|
| 1826 |
+
},
|
| 1827 |
+
"128228": {
|
| 1828 |
+
"content": "<|reserved_special_token_220|>",
|
| 1829 |
+
"lstrip": false,
|
| 1830 |
+
"normalized": false,
|
| 1831 |
+
"rstrip": false,
|
| 1832 |
+
"single_word": false,
|
| 1833 |
+
"special": true
|
| 1834 |
+
},
|
| 1835 |
+
"128229": {
|
| 1836 |
+
"content": "<|reserved_special_token_221|>",
|
| 1837 |
+
"lstrip": false,
|
| 1838 |
+
"normalized": false,
|
| 1839 |
+
"rstrip": false,
|
| 1840 |
+
"single_word": false,
|
| 1841 |
+
"special": true
|
| 1842 |
+
},
|
| 1843 |
+
"128230": {
|
| 1844 |
+
"content": "<|reserved_special_token_222|>",
|
| 1845 |
+
"lstrip": false,
|
| 1846 |
+
"normalized": false,
|
| 1847 |
+
"rstrip": false,
|
| 1848 |
+
"single_word": false,
|
| 1849 |
+
"special": true
|
| 1850 |
+
},
|
| 1851 |
+
"128231": {
|
| 1852 |
+
"content": "<|reserved_special_token_223|>",
|
| 1853 |
+
"lstrip": false,
|
| 1854 |
+
"normalized": false,
|
| 1855 |
+
"rstrip": false,
|
| 1856 |
+
"single_word": false,
|
| 1857 |
+
"special": true
|
| 1858 |
+
},
|
| 1859 |
+
"128232": {
|
| 1860 |
+
"content": "<|reserved_special_token_224|>",
|
| 1861 |
+
"lstrip": false,
|
| 1862 |
+
"normalized": false,
|
| 1863 |
+
"rstrip": false,
|
| 1864 |
+
"single_word": false,
|
| 1865 |
+
"special": true
|
| 1866 |
+
},
|
| 1867 |
+
"128233": {
|
| 1868 |
+
"content": "<|reserved_special_token_225|>",
|
| 1869 |
+
"lstrip": false,
|
| 1870 |
+
"normalized": false,
|
| 1871 |
+
"rstrip": false,
|
| 1872 |
+
"single_word": false,
|
| 1873 |
+
"special": true
|
| 1874 |
+
},
|
| 1875 |
+
"128234": {
|
| 1876 |
+
"content": "<|reserved_special_token_226|>",
|
| 1877 |
+
"lstrip": false,
|
| 1878 |
+
"normalized": false,
|
| 1879 |
+
"rstrip": false,
|
| 1880 |
+
"single_word": false,
|
| 1881 |
+
"special": true
|
| 1882 |
+
},
|
| 1883 |
+
"128235": {
|
| 1884 |
+
"content": "<|reserved_special_token_227|>",
|
| 1885 |
+
"lstrip": false,
|
| 1886 |
+
"normalized": false,
|
| 1887 |
+
"rstrip": false,
|
| 1888 |
+
"single_word": false,
|
| 1889 |
+
"special": true
|
| 1890 |
+
},
|
| 1891 |
+
"128236": {
|
| 1892 |
+
"content": "<|reserved_special_token_228|>",
|
| 1893 |
+
"lstrip": false,
|
| 1894 |
+
"normalized": false,
|
| 1895 |
+
"rstrip": false,
|
| 1896 |
+
"single_word": false,
|
| 1897 |
+
"special": true
|
| 1898 |
+
},
|
| 1899 |
+
"128237": {
|
| 1900 |
+
"content": "<|reserved_special_token_229|>",
|
| 1901 |
+
"lstrip": false,
|
| 1902 |
+
"normalized": false,
|
| 1903 |
+
"rstrip": false,
|
| 1904 |
+
"single_word": false,
|
| 1905 |
+
"special": true
|
| 1906 |
+
},
|
| 1907 |
+
"128238": {
|
| 1908 |
+
"content": "<|reserved_special_token_230|>",
|
| 1909 |
+
"lstrip": false,
|
| 1910 |
+
"normalized": false,
|
| 1911 |
+
"rstrip": false,
|
| 1912 |
+
"single_word": false,
|
| 1913 |
+
"special": true
|
| 1914 |
+
},
|
| 1915 |
+
"128239": {
|
| 1916 |
+
"content": "<|reserved_special_token_231|>",
|
| 1917 |
+
"lstrip": false,
|
| 1918 |
+
"normalized": false,
|
| 1919 |
+
"rstrip": false,
|
| 1920 |
+
"single_word": false,
|
| 1921 |
+
"special": true
|
| 1922 |
+
},
|
| 1923 |
+
"128240": {
|
| 1924 |
+
"content": "<|reserved_special_token_232|>",
|
| 1925 |
+
"lstrip": false,
|
| 1926 |
+
"normalized": false,
|
| 1927 |
+
"rstrip": false,
|
| 1928 |
+
"single_word": false,
|
| 1929 |
+
"special": true
|
| 1930 |
+
},
|
| 1931 |
+
"128241": {
|
| 1932 |
+
"content": "<|reserved_special_token_233|>",
|
| 1933 |
+
"lstrip": false,
|
| 1934 |
+
"normalized": false,
|
| 1935 |
+
"rstrip": false,
|
| 1936 |
+
"single_word": false,
|
| 1937 |
+
"special": true
|
| 1938 |
+
},
|
| 1939 |
+
"128242": {
|
| 1940 |
+
"content": "<|reserved_special_token_234|>",
|
| 1941 |
+
"lstrip": false,
|
| 1942 |
+
"normalized": false,
|
| 1943 |
+
"rstrip": false,
|
| 1944 |
+
"single_word": false,
|
| 1945 |
+
"special": true
|
| 1946 |
+
},
|
| 1947 |
+
"128243": {
|
| 1948 |
+
"content": "<|reserved_special_token_235|>",
|
| 1949 |
+
"lstrip": false,
|
| 1950 |
+
"normalized": false,
|
| 1951 |
+
"rstrip": false,
|
| 1952 |
+
"single_word": false,
|
| 1953 |
+
"special": true
|
| 1954 |
+
},
|
| 1955 |
+
"128244": {
|
| 1956 |
+
"content": "<|reserved_special_token_236|>",
|
| 1957 |
+
"lstrip": false,
|
| 1958 |
+
"normalized": false,
|
| 1959 |
+
"rstrip": false,
|
| 1960 |
+
"single_word": false,
|
| 1961 |
+
"special": true
|
| 1962 |
+
},
|
| 1963 |
+
"128245": {
|
| 1964 |
+
"content": "<|reserved_special_token_237|>",
|
| 1965 |
+
"lstrip": false,
|
| 1966 |
+
"normalized": false,
|
| 1967 |
+
"rstrip": false,
|
| 1968 |
+
"single_word": false,
|
| 1969 |
+
"special": true
|
| 1970 |
+
},
|
| 1971 |
+
"128246": {
|
| 1972 |
+
"content": "<|reserved_special_token_238|>",
|
| 1973 |
+
"lstrip": false,
|
| 1974 |
+
"normalized": false,
|
| 1975 |
+
"rstrip": false,
|
| 1976 |
+
"single_word": false,
|
| 1977 |
+
"special": true
|
| 1978 |
+
},
|
| 1979 |
+
"128247": {
|
| 1980 |
+
"content": "<|reserved_special_token_239|>",
|
| 1981 |
+
"lstrip": false,
|
| 1982 |
+
"normalized": false,
|
| 1983 |
+
"rstrip": false,
|
| 1984 |
+
"single_word": false,
|
| 1985 |
+
"special": true
|
| 1986 |
+
},
|
| 1987 |
+
"128248": {
|
| 1988 |
+
"content": "<|reserved_special_token_240|>",
|
| 1989 |
+
"lstrip": false,
|
| 1990 |
+
"normalized": false,
|
| 1991 |
+
"rstrip": false,
|
| 1992 |
+
"single_word": false,
|
| 1993 |
+
"special": true
|
| 1994 |
+
},
|
| 1995 |
+
"128249": {
|
| 1996 |
+
"content": "<|reserved_special_token_241|>",
|
| 1997 |
+
"lstrip": false,
|
| 1998 |
+
"normalized": false,
|
| 1999 |
+
"rstrip": false,
|
| 2000 |
+
"single_word": false,
|
| 2001 |
+
"special": true
|
| 2002 |
+
},
|
| 2003 |
+
"128250": {
|
| 2004 |
+
"content": "<|reserved_special_token_242|>",
|
| 2005 |
+
"lstrip": false,
|
| 2006 |
+
"normalized": false,
|
| 2007 |
+
"rstrip": false,
|
| 2008 |
+
"single_word": false,
|
| 2009 |
+
"special": true
|
| 2010 |
+
},
|
| 2011 |
+
"128251": {
|
| 2012 |
+
"content": "<|reserved_special_token_243|>",
|
| 2013 |
+
"lstrip": false,
|
| 2014 |
+
"normalized": false,
|
| 2015 |
+
"rstrip": false,
|
| 2016 |
+
"single_word": false,
|
| 2017 |
+
"special": true
|
| 2018 |
+
},
|
| 2019 |
+
"128252": {
|
| 2020 |
+
"content": "<|reserved_special_token_244|>",
|
| 2021 |
+
"lstrip": false,
|
| 2022 |
+
"normalized": false,
|
| 2023 |
+
"rstrip": false,
|
| 2024 |
+
"single_word": false,
|
| 2025 |
+
"special": true
|
| 2026 |
+
},
|
| 2027 |
+
"128253": {
|
| 2028 |
+
"content": "<|reserved_special_token_245|>",
|
| 2029 |
+
"lstrip": false,
|
| 2030 |
+
"normalized": false,
|
| 2031 |
+
"rstrip": false,
|
| 2032 |
+
"single_word": false,
|
| 2033 |
+
"special": true
|
| 2034 |
+
},
|
| 2035 |
+
"128254": {
|
| 2036 |
+
"content": "<|reserved_special_token_246|>",
|
| 2037 |
+
"lstrip": false,
|
| 2038 |
+
"normalized": false,
|
| 2039 |
+
"rstrip": false,
|
| 2040 |
+
"single_word": false,
|
| 2041 |
+
"special": true
|
| 2042 |
+
},
|
| 2043 |
+
"128255": {
|
| 2044 |
+
"content": "<|reserved_special_token_247|>",
|
| 2045 |
+
"lstrip": false,
|
| 2046 |
+
"normalized": false,
|
| 2047 |
+
"rstrip": false,
|
| 2048 |
+
"single_word": false,
|
| 2049 |
+
"special": true
|
| 2050 |
+
}
|
| 2051 |
+
},
|
| 2052 |
+
"bos_token": "<|begin_of_text|>",
|
| 2053 |
+
"clean_up_tokenization_spaces": true,
|
| 2054 |
+
"eos_token": "<|eot_id|>",
|
| 2055 |
+
"extra_special_tokens": {},
|
| 2056 |
+
"model_input_names": [
|
| 2057 |
+
"input_ids",
|
| 2058 |
+
"attention_mask"
|
| 2059 |
+
],
|
| 2060 |
+
"model_max_length": 131072,
|
| 2061 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 2062 |
+
}
|
checkpoint-2132/trainer_state.json
ADDED
|
@@ -0,0 +1,2164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 2132,
|
| 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.7799350878223776,
|
| 14 |
+
"epoch": 0.009382513340761156,
|
| 15 |
+
"grad_norm": 0.251953125,
|
| 16 |
+
"learning_rate": 0.00019943714821763604,
|
| 17 |
+
"loss": 0.8229,
|
| 18 |
+
"mean_token_accuracy": 0.8214783387258648,
|
| 19 |
+
"num_tokens": 162309.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.6856271875090897,
|
| 24 |
+
"epoch": 0.01876502668152231,
|
| 25 |
+
"grad_norm": 0.2041015625,
|
| 26 |
+
"learning_rate": 0.00019881175734834272,
|
| 27 |
+
"loss": 0.6706,
|
| 28 |
+
"mean_token_accuracy": 0.8432094575837255,
|
| 29 |
+
"num_tokens": 325111.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.5147169048897922,
|
| 34 |
+
"epoch": 0.02814754002228347,
|
| 35 |
+
"grad_norm": 0.1689453125,
|
| 36 |
+
"learning_rate": 0.00019818636647904943,
|
| 37 |
+
"loss": 0.5152,
|
| 38 |
+
"mean_token_accuracy": 0.8709522735327482,
|
| 39 |
+
"num_tokens": 488159.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.48951989263296125,
|
| 44 |
+
"epoch": 0.03753005336304462,
|
| 45 |
+
"grad_norm": 0.1552734375,
|
| 46 |
+
"learning_rate": 0.0001975609756097561,
|
| 47 |
+
"loss": 0.4875,
|
| 48 |
+
"mean_token_accuracy": 0.8770332466810942,
|
| 49 |
+
"num_tokens": 650647.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.4960091439075768,
|
| 54 |
+
"epoch": 0.04691256670380578,
|
| 55 |
+
"grad_norm": 0.16796875,
|
| 56 |
+
"learning_rate": 0.0001969355847404628,
|
| 57 |
+
"loss": 0.492,
|
| 58 |
+
"mean_token_accuracy": 0.8768141727894545,
|
| 59 |
+
"num_tokens": 813419.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.4708784816786647,
|
| 64 |
+
"epoch": 0.05629508004456694,
|
| 65 |
+
"grad_norm": 0.197265625,
|
| 66 |
+
"learning_rate": 0.0001963101938711695,
|
| 67 |
+
"loss": 0.4648,
|
| 68 |
+
"mean_token_accuracy": 0.8837848342955112,
|
| 69 |
+
"num_tokens": 976458.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.546927246497944,
|
| 74 |
+
"epoch": 0.0656775933853281,
|
| 75 |
+
"grad_norm": 0.1669921875,
|
| 76 |
+
"learning_rate": 0.00019568480300187618,
|
| 77 |
+
"loss": 0.5415,
|
| 78 |
+
"mean_token_accuracy": 0.8723422776907682,
|
| 79 |
+
"num_tokens": 1138794.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.47402509227395057,
|
| 84 |
+
"epoch": 0.07506010672608925,
|
| 85 |
+
"grad_norm": 0.1533203125,
|
| 86 |
+
"learning_rate": 0.00019505941213258287,
|
| 87 |
+
"loss": 0.4702,
|
| 88 |
+
"mean_token_accuracy": 0.885954425111413,
|
| 89 |
+
"num_tokens": 1301483.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.4972494073677808,
|
| 94 |
+
"epoch": 0.08444262006685041,
|
| 95 |
+
"grad_norm": 0.1708984375,
|
| 96 |
+
"learning_rate": 0.00019443402126328955,
|
| 97 |
+
"loss": 0.4901,
|
| 98 |
+
"mean_token_accuracy": 0.8839348161593079,
|
| 99 |
+
"num_tokens": 1464240.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.49195765373297035,
|
| 104 |
+
"epoch": 0.09382513340761156,
|
| 105 |
+
"grad_norm": 0.1669921875,
|
| 106 |
+
"learning_rate": 0.00019380863039399627,
|
| 107 |
+
"loss": 0.4848,
|
| 108 |
+
"mean_token_accuracy": 0.886236279271543,
|
| 109 |
+
"num_tokens": 1627457.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.5126075576525182,
|
| 114 |
+
"epoch": 0.10320764674837273,
|
| 115 |
+
"grad_norm": 0.1787109375,
|
| 116 |
+
"learning_rate": 0.00019318323952470295,
|
| 117 |
+
"loss": 0.5104,
|
| 118 |
+
"mean_token_accuracy": 0.8793701384216547,
|
| 119 |
+
"num_tokens": 1790547.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.4117678565904498,
|
| 124 |
+
"epoch": 0.11259016008913388,
|
| 125 |
+
"grad_norm": 0.1650390625,
|
| 126 |
+
"learning_rate": 0.00019255784865540964,
|
| 127 |
+
"loss": 0.4114,
|
| 128 |
+
"mean_token_accuracy": 0.8950984058901668,
|
| 129 |
+
"num_tokens": 1953536.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.4656925258226693,
|
| 134 |
+
"epoch": 0.12197267342989504,
|
| 135 |
+
"grad_norm": 0.1875,
|
| 136 |
+
"learning_rate": 0.00019193245778611632,
|
| 137 |
+
"loss": 0.4634,
|
| 138 |
+
"mean_token_accuracy": 0.8897427920252085,
|
| 139 |
+
"num_tokens": 2115476.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.43195099574513734,
|
| 144 |
+
"epoch": 0.1313551867706562,
|
| 145 |
+
"grad_norm": 0.1630859375,
|
| 146 |
+
"learning_rate": 0.00019130706691682304,
|
| 147 |
+
"loss": 0.4246,
|
| 148 |
+
"mean_token_accuracy": 0.8946435421705246,
|
| 149 |
+
"num_tokens": 2277936.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.4823188486509025,
|
| 154 |
+
"epoch": 0.14073770011141734,
|
| 155 |
+
"grad_norm": 0.20703125,
|
| 156 |
+
"learning_rate": 0.00019068167604752972,
|
| 157 |
+
"loss": 0.4796,
|
| 158 |
+
"mean_token_accuracy": 0.8873342543840408,
|
| 159 |
+
"num_tokens": 2440643.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.40974695349577817,
|
| 164 |
+
"epoch": 0.1501202134521785,
|
| 165 |
+
"grad_norm": 0.1982421875,
|
| 166 |
+
"learning_rate": 0.0001900562851782364,
|
| 167 |
+
"loss": 0.4,
|
| 168 |
+
"mean_token_accuracy": 0.8974028028547764,
|
| 169 |
+
"num_tokens": 2603401.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.41737876399420204,
|
| 174 |
+
"epoch": 0.15950272679293967,
|
| 175 |
+
"grad_norm": 0.177734375,
|
| 176 |
+
"learning_rate": 0.0001894308943089431,
|
| 177 |
+
"loss": 0.4136,
|
| 178 |
+
"mean_token_accuracy": 0.8985418293625116,
|
| 179 |
+
"num_tokens": 2765836.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.4317509519169107,
|
| 184 |
+
"epoch": 0.16888524013370082,
|
| 185 |
+
"grad_norm": 0.1630859375,
|
| 186 |
+
"learning_rate": 0.0001888055034396498,
|
| 187 |
+
"loss": 0.4276,
|
| 188 |
+
"mean_token_accuracy": 0.8956017823889851,
|
| 189 |
+
"num_tokens": 2928637.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.39300057776272296,
|
| 194 |
+
"epoch": 0.17826775347446197,
|
| 195 |
+
"grad_norm": 0.177734375,
|
| 196 |
+
"learning_rate": 0.00018818011257035647,
|
| 197 |
+
"loss": 0.3853,
|
| 198 |
+
"mean_token_accuracy": 0.903920691087842,
|
| 199 |
+
"num_tokens": 3090979.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.43899501564446836,
|
| 204 |
+
"epoch": 0.18765026681522312,
|
| 205 |
+
"grad_norm": 0.16796875,
|
| 206 |
+
"learning_rate": 0.00018755472170106316,
|
| 207 |
+
"loss": 0.4302,
|
| 208 |
+
"mean_token_accuracy": 0.894548149779439,
|
| 209 |
+
"num_tokens": 3253538.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.3904935538303107,
|
| 214 |
+
"epoch": 0.19703278015598427,
|
| 215 |
+
"grad_norm": 0.1708984375,
|
| 216 |
+
"learning_rate": 0.00018692933083176987,
|
| 217 |
+
"loss": 0.3829,
|
| 218 |
+
"mean_token_accuracy": 0.9031265545636415,
|
| 219 |
+
"num_tokens": 3415948.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.39792181542143223,
|
| 224 |
+
"epoch": 0.20641529349674545,
|
| 225 |
+
"grad_norm": 0.1572265625,
|
| 226 |
+
"learning_rate": 0.00018630393996247656,
|
| 227 |
+
"loss": 0.3862,
|
| 228 |
+
"mean_token_accuracy": 0.9033814109861851,
|
| 229 |
+
"num_tokens": 3579298.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.38712316513992845,
|
| 234 |
+
"epoch": 0.2157978068375066,
|
| 235 |
+
"grad_norm": 0.1630859375,
|
| 236 |
+
"learning_rate": 0.00018567854909318324,
|
| 237 |
+
"loss": 0.3871,
|
| 238 |
+
"mean_token_accuracy": 0.9008511133491993,
|
| 239 |
+
"num_tokens": 3742007.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.3974394467426464,
|
| 244 |
+
"epoch": 0.22518032017826775,
|
| 245 |
+
"grad_norm": 0.1640625,
|
| 246 |
+
"learning_rate": 0.00018505315822388993,
|
| 247 |
+
"loss": 0.39,
|
| 248 |
+
"mean_token_accuracy": 0.9035492207854986,
|
| 249 |
+
"num_tokens": 3904988.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.42329446180956437,
|
| 254 |
+
"epoch": 0.2345628335190289,
|
| 255 |
+
"grad_norm": 0.19140625,
|
| 256 |
+
"learning_rate": 0.00018442776735459664,
|
| 257 |
+
"loss": 0.4136,
|
| 258 |
+
"mean_token_accuracy": 0.9000132424756885,
|
| 259 |
+
"num_tokens": 4067806.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.400798928248696,
|
| 264 |
+
"epoch": 0.24394534685979008,
|
| 265 |
+
"grad_norm": 0.1953125,
|
| 266 |
+
"learning_rate": 0.00018380237648530333,
|
| 267 |
+
"loss": 0.3889,
|
| 268 |
+
"mean_token_accuracy": 0.8984681818634271,
|
| 269 |
+
"num_tokens": 4229588.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.3440579119604081,
|
| 274 |
+
"epoch": 0.2533278602005512,
|
| 275 |
+
"grad_norm": 0.1748046875,
|
| 276 |
+
"learning_rate": 0.00018317698561601001,
|
| 277 |
+
"loss": 0.3355,
|
| 278 |
+
"mean_token_accuracy": 0.9099012993276119,
|
| 279 |
+
"num_tokens": 4391775.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.4088153497781605,
|
| 284 |
+
"epoch": 0.2627103735413124,
|
| 285 |
+
"grad_norm": 0.2060546875,
|
| 286 |
+
"learning_rate": 0.0001825515947467167,
|
| 287 |
+
"loss": 0.3988,
|
| 288 |
+
"mean_token_accuracy": 0.9000191796571017,
|
| 289 |
+
"num_tokens": 4554006.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.49478547936305406,
|
| 294 |
+
"epoch": 0.27209288688207356,
|
| 295 |
+
"grad_norm": 0.1630859375,
|
| 296 |
+
"learning_rate": 0.0001819262038774234,
|
| 297 |
+
"loss": 0.4851,
|
| 298 |
+
"mean_token_accuracy": 0.8896255612373352,
|
| 299 |
+
"num_tokens": 4716601.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.3874137854669243,
|
| 304 |
+
"epoch": 0.2814754002228347,
|
| 305 |
+
"grad_norm": 0.1708984375,
|
| 306 |
+
"learning_rate": 0.0001813008130081301,
|
| 307 |
+
"loss": 0.3811,
|
| 308 |
+
"mean_token_accuracy": 0.9031782140955329,
|
| 309 |
+
"num_tokens": 4879465.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.39499278874136506,
|
| 314 |
+
"epoch": 0.29085791356359586,
|
| 315 |
+
"grad_norm": 0.1796875,
|
| 316 |
+
"learning_rate": 0.00018067542213883679,
|
| 317 |
+
"loss": 0.3859,
|
| 318 |
+
"mean_token_accuracy": 0.9037530291825533,
|
| 319 |
+
"num_tokens": 5041857.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.3148498781956732,
|
| 324 |
+
"epoch": 0.300240426904357,
|
| 325 |
+
"grad_norm": 0.146484375,
|
| 326 |
+
"learning_rate": 0.00018005003126954347,
|
| 327 |
+
"loss": 0.3105,
|
| 328 |
+
"mean_token_accuracy": 0.9153206121176481,
|
| 329 |
+
"num_tokens": 5204416.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.45533317684894425,
|
| 334 |
+
"epoch": 0.30962294024511816,
|
| 335 |
+
"grad_norm": 0.1630859375,
|
| 336 |
+
"learning_rate": 0.00017942464040025016,
|
| 337 |
+
"loss": 0.4477,
|
| 338 |
+
"mean_token_accuracy": 0.8917344063520432,
|
| 339 |
+
"num_tokens": 5366029.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.4512431137613021,
|
| 344 |
+
"epoch": 0.31900545358587934,
|
| 345 |
+
"grad_norm": 0.1787109375,
|
| 346 |
+
"learning_rate": 0.00017879924953095687,
|
| 347 |
+
"loss": 0.4435,
|
| 348 |
+
"mean_token_accuracy": 0.8979733150452376,
|
| 349 |
+
"num_tokens": 5528662.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.43219919862458483,
|
| 354 |
+
"epoch": 0.32838796692664046,
|
| 355 |
+
"grad_norm": 0.1875,
|
| 356 |
+
"learning_rate": 0.00017817385866166353,
|
| 357 |
+
"loss": 0.4255,
|
| 358 |
+
"mean_token_accuracy": 0.8939095275476575,
|
| 359 |
+
"num_tokens": 5691088.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.39246358472155407,
|
| 364 |
+
"epoch": 0.33777048026740164,
|
| 365 |
+
"grad_norm": 0.2060546875,
|
| 366 |
+
"learning_rate": 0.00017754846779237024,
|
| 367 |
+
"loss": 0.3792,
|
| 368 |
+
"mean_token_accuracy": 0.9027158614248038,
|
| 369 |
+
"num_tokens": 5853586.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.38228728668764234,
|
| 374 |
+
"epoch": 0.34715299360816276,
|
| 375 |
+
"grad_norm": 0.158203125,
|
| 376 |
+
"learning_rate": 0.00017692307692307693,
|
| 377 |
+
"loss": 0.3814,
|
| 378 |
+
"mean_token_accuracy": 0.9076376244425773,
|
| 379 |
+
"num_tokens": 6016273.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.34766899450914934,
|
| 384 |
+
"epoch": 0.35653550694892394,
|
| 385 |
+
"grad_norm": 0.16796875,
|
| 386 |
+
"learning_rate": 0.00017629768605378362,
|
| 387 |
+
"loss": 0.339,
|
| 388 |
+
"mean_token_accuracy": 0.9132196143269539,
|
| 389 |
+
"num_tokens": 6179608.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.419576386269182,
|
| 394 |
+
"epoch": 0.3659180202896851,
|
| 395 |
+
"grad_norm": 0.150390625,
|
| 396 |
+
"learning_rate": 0.0001756722951844903,
|
| 397 |
+
"loss": 0.4081,
|
| 398 |
+
"mean_token_accuracy": 0.902265278249979,
|
| 399 |
+
"num_tokens": 6342688.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.34522315053036434,
|
| 404 |
+
"epoch": 0.37530053363044624,
|
| 405 |
+
"grad_norm": 0.16796875,
|
| 406 |
+
"learning_rate": 0.00017504690431519702,
|
| 407 |
+
"loss": 0.3398,
|
| 408 |
+
"mean_token_accuracy": 0.9103329949080944,
|
| 409 |
+
"num_tokens": 6505076.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.3350997743313201,
|
| 414 |
+
"epoch": 0.3846830469712074,
|
| 415 |
+
"grad_norm": 0.1611328125,
|
| 416 |
+
"learning_rate": 0.0001744215134459037,
|
| 417 |
+
"loss": 0.3287,
|
| 418 |
+
"mean_token_accuracy": 0.9135664030909538,
|
| 419 |
+
"num_tokens": 6667428.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.35369435520842674,
|
| 424 |
+
"epoch": 0.39406556031196854,
|
| 425 |
+
"grad_norm": 0.16796875,
|
| 426 |
+
"learning_rate": 0.0001737961225766104,
|
| 427 |
+
"loss": 0.3445,
|
| 428 |
+
"mean_token_accuracy": 0.9136763598769904,
|
| 429 |
+
"num_tokens": 6829952.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.3438279568566941,
|
| 434 |
+
"epoch": 0.4034480736527297,
|
| 435 |
+
"grad_norm": 0.2109375,
|
| 436 |
+
"learning_rate": 0.00017317073170731708,
|
| 437 |
+
"loss": 0.3347,
|
| 438 |
+
"mean_token_accuracy": 0.915488549694419,
|
| 439 |
+
"num_tokens": 6992752.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.36355263493023815,
|
| 444 |
+
"epoch": 0.4128305869934909,
|
| 445 |
+
"grad_norm": 0.134765625,
|
| 446 |
+
"learning_rate": 0.0001725453408380238,
|
| 447 |
+
"loss": 0.3514,
|
| 448 |
+
"mean_token_accuracy": 0.9081276219338179,
|
| 449 |
+
"num_tokens": 7155395.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.4320855587720871,
|
| 454 |
+
"epoch": 0.422213100334252,
|
| 455 |
+
"grad_norm": 0.1787109375,
|
| 456 |
+
"learning_rate": 0.00017191994996873047,
|
| 457 |
+
"loss": 0.4275,
|
| 458 |
+
"mean_token_accuracy": 0.8996547561138868,
|
| 459 |
+
"num_tokens": 7317871.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.35265264644986016,
|
| 464 |
+
"epoch": 0.4315956136750132,
|
| 465 |
+
"grad_norm": 0.1767578125,
|
| 466 |
+
"learning_rate": 0.00017129455909943713,
|
| 467 |
+
"loss": 0.346,
|
| 468 |
+
"mean_token_accuracy": 0.911245071515441,
|
| 469 |
+
"num_tokens": 7480566.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.38030760866822677,
|
| 474 |
+
"epoch": 0.4409781270157743,
|
| 475 |
+
"grad_norm": 0.17578125,
|
| 476 |
+
"learning_rate": 0.00017066916823014385,
|
| 477 |
+
"loss": 0.3737,
|
| 478 |
+
"mean_token_accuracy": 0.9052736137062312,
|
| 479 |
+
"num_tokens": 7642808.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.37449472132138906,
|
| 484 |
+
"epoch": 0.4503606403565355,
|
| 485 |
+
"grad_norm": 0.1923828125,
|
| 486 |
+
"learning_rate": 0.00017004377736085053,
|
| 487 |
+
"loss": 0.3668,
|
| 488 |
+
"mean_token_accuracy": 0.9072099477052689,
|
| 489 |
+
"num_tokens": 7806054.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.38983453994151207,
|
| 494 |
+
"epoch": 0.4597431536972967,
|
| 495 |
+
"grad_norm": 0.1533203125,
|
| 496 |
+
"learning_rate": 0.00016941838649155725,
|
| 497 |
+
"loss": 0.3804,
|
| 498 |
+
"mean_token_accuracy": 0.9052108563482761,
|
| 499 |
+
"num_tokens": 7968208.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.3876548252766952,
|
| 504 |
+
"epoch": 0.4691256670380578,
|
| 505 |
+
"grad_norm": 0.1953125,
|
| 506 |
+
"learning_rate": 0.0001687929956222639,
|
| 507 |
+
"loss": 0.3825,
|
| 508 |
+
"mean_token_accuracy": 0.9071293246001005,
|
| 509 |
+
"num_tokens": 8130444.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.35602071137400343,
|
| 514 |
+
"epoch": 0.478508180378819,
|
| 515 |
+
"grad_norm": 0.1748046875,
|
| 516 |
+
"learning_rate": 0.00016816760475297062,
|
| 517 |
+
"loss": 0.3484,
|
| 518 |
+
"mean_token_accuracy": 0.9137960843741894,
|
| 519 |
+
"num_tokens": 8292618.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.4106741435127333,
|
| 524 |
+
"epoch": 0.48789069371958016,
|
| 525 |
+
"grad_norm": 0.181640625,
|
| 526 |
+
"learning_rate": 0.0001675422138836773,
|
| 527 |
+
"loss": 0.3968,
|
| 528 |
+
"mean_token_accuracy": 0.9058029960840941,
|
| 529 |
+
"num_tokens": 8455547.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.35365958177717405,
|
| 534 |
+
"epoch": 0.4972732070603413,
|
| 535 |
+
"grad_norm": 0.171875,
|
| 536 |
+
"learning_rate": 0.000166916823014384,
|
| 537 |
+
"loss": 0.349,
|
| 538 |
+
"mean_token_accuracy": 0.9107609067112208,
|
| 539 |
+
"num_tokens": 8617389.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.3634562706924044,
|
| 544 |
+
"epoch": 0.5066557204011024,
|
| 545 |
+
"grad_norm": 0.1494140625,
|
| 546 |
+
"learning_rate": 0.00016629143214509068,
|
| 547 |
+
"loss": 0.3559,
|
| 548 |
+
"mean_token_accuracy": 0.9100410873070359,
|
| 549 |
+
"num_tokens": 8779770.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.32272221232997256,
|
| 554 |
+
"epoch": 0.5160382337418636,
|
| 555 |
+
"grad_norm": 0.1767578125,
|
| 556 |
+
"learning_rate": 0.0001656660412757974,
|
| 557 |
+
"loss": 0.3192,
|
| 558 |
+
"mean_token_accuracy": 0.9185531191527844,
|
| 559 |
+
"num_tokens": 8942167.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.3944925616728142,
|
| 564 |
+
"epoch": 0.5254207470826248,
|
| 565 |
+
"grad_norm": 0.189453125,
|
| 566 |
+
"learning_rate": 0.00016504065040650408,
|
| 567 |
+
"loss": 0.3822,
|
| 568 |
+
"mean_token_accuracy": 0.9070056907832622,
|
| 569 |
+
"num_tokens": 9104106.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.34754261119524016,
|
| 574 |
+
"epoch": 0.5348032604233859,
|
| 575 |
+
"grad_norm": 0.1923828125,
|
| 576 |
+
"learning_rate": 0.00016441525953721076,
|
| 577 |
+
"loss": 0.341,
|
| 578 |
+
"mean_token_accuracy": 0.9133739612996579,
|
| 579 |
+
"num_tokens": 9266326.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.36407561659580095,
|
| 584 |
+
"epoch": 0.5441857737641471,
|
| 585 |
+
"grad_norm": 0.146484375,
|
| 586 |
+
"learning_rate": 0.00016378986866791745,
|
| 587 |
+
"loss": 0.355,
|
| 588 |
+
"mean_token_accuracy": 0.9110283955931664,
|
| 589 |
+
"num_tokens": 9428809.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.36490103751420977,
|
| 594 |
+
"epoch": 0.5535682871049082,
|
| 595 |
+
"grad_norm": 0.14453125,
|
| 596 |
+
"learning_rate": 0.00016316447779862414,
|
| 597 |
+
"loss": 0.3606,
|
| 598 |
+
"mean_token_accuracy": 0.9129387583583594,
|
| 599 |
+
"num_tokens": 9591549.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.4403200134751387,
|
| 604 |
+
"epoch": 0.5629508004456694,
|
| 605 |
+
"grad_norm": 0.1630859375,
|
| 606 |
+
"learning_rate": 0.00016253908692933085,
|
| 607 |
+
"loss": 0.4352,
|
| 608 |
+
"mean_token_accuracy": 0.9009242281317711,
|
| 609 |
+
"num_tokens": 9754490.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.3376986944698729,
|
| 614 |
+
"epoch": 0.5723333137864305,
|
| 615 |
+
"grad_norm": 0.2099609375,
|
| 616 |
+
"learning_rate": 0.00016191369606003754,
|
| 617 |
+
"loss": 0.3271,
|
| 618 |
+
"mean_token_accuracy": 0.9162716951221228,
|
| 619 |
+
"num_tokens": 9917345.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.30342430413002147,
|
| 624 |
+
"epoch": 0.5817158271271917,
|
| 625 |
+
"grad_norm": 0.2041015625,
|
| 626 |
+
"learning_rate": 0.00016128830519074422,
|
| 627 |
+
"loss": 0.2956,
|
| 628 |
+
"mean_token_accuracy": 0.9222736719995737,
|
| 629 |
+
"num_tokens": 10079523.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.39200085022021086,
|
| 634 |
+
"epoch": 0.5910983404679528,
|
| 635 |
+
"grad_norm": 0.1806640625,
|
| 636 |
+
"learning_rate": 0.0001606629143214509,
|
| 637 |
+
"loss": 0.3825,
|
| 638 |
+
"mean_token_accuracy": 0.9086053863167762,
|
| 639 |
+
"num_tokens": 10241691.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.3571344430092722,
|
| 644 |
+
"epoch": 0.600480853808714,
|
| 645 |
+
"grad_norm": 0.17578125,
|
| 646 |
+
"learning_rate": 0.00016003752345215762,
|
| 647 |
+
"loss": 0.3541,
|
| 648 |
+
"mean_token_accuracy": 0.9139539418742061,
|
| 649 |
+
"num_tokens": 10404189.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.34833492621546613,
|
| 654 |
+
"epoch": 0.6098633671494752,
|
| 655 |
+
"grad_norm": 0.1533203125,
|
| 656 |
+
"learning_rate": 0.00015941213258286428,
|
| 657 |
+
"loss": 0.3376,
|
| 658 |
+
"mean_token_accuracy": 0.9150689322501421,
|
| 659 |
+
"num_tokens": 10566544.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.3005343694472685,
|
| 664 |
+
"epoch": 0.6192458804902363,
|
| 665 |
+
"grad_norm": 0.158203125,
|
| 666 |
+
"learning_rate": 0.000158786741713571,
|
| 667 |
+
"loss": 0.2928,
|
| 668 |
+
"mean_token_accuracy": 0.9205218695104123,
|
| 669 |
+
"num_tokens": 10728072.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.28468642103252934,
|
| 674 |
+
"epoch": 0.6286283938309974,
|
| 675 |
+
"grad_norm": 0.1572265625,
|
| 676 |
+
"learning_rate": 0.00015816135084427768,
|
| 677 |
+
"loss": 0.2813,
|
| 678 |
+
"mean_token_accuracy": 0.9226693190634251,
|
| 679 |
+
"num_tokens": 10890089.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.3512667278526351,
|
| 684 |
+
"epoch": 0.6380109071717587,
|
| 685 |
+
"grad_norm": 0.15625,
|
| 686 |
+
"learning_rate": 0.0001575359599749844,
|
| 687 |
+
"loss": 0.3421,
|
| 688 |
+
"mean_token_accuracy": 0.9135142650455237,
|
| 689 |
+
"num_tokens": 11052295.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.38745955675840377,
|
| 694 |
+
"epoch": 0.6473934205125198,
|
| 695 |
+
"grad_norm": 0.16015625,
|
| 696 |
+
"learning_rate": 0.00015691056910569105,
|
| 697 |
+
"loss": 0.3774,
|
| 698 |
+
"mean_token_accuracy": 0.9076902076601983,
|
| 699 |
+
"num_tokens": 11214249.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.3123638934805058,
|
| 704 |
+
"epoch": 0.6567759338532809,
|
| 705 |
+
"grad_norm": 0.1669921875,
|
| 706 |
+
"learning_rate": 0.00015628517823639777,
|
| 707 |
+
"loss": 0.3099,
|
| 708 |
+
"mean_token_accuracy": 0.9233202930539847,
|
| 709 |
+
"num_tokens": 11377548.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.36946490925038233,
|
| 714 |
+
"epoch": 0.6661584471940422,
|
| 715 |
+
"grad_norm": 0.1572265625,
|
| 716 |
+
"learning_rate": 0.00015565978736710445,
|
| 717 |
+
"loss": 0.3584,
|
| 718 |
+
"mean_token_accuracy": 0.9100467972457409,
|
| 719 |
+
"num_tokens": 11539730.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.44331123513402415,
|
| 724 |
+
"epoch": 0.6755409605348033,
|
| 725 |
+
"grad_norm": 0.185546875,
|
| 726 |
+
"learning_rate": 0.00015503439649781114,
|
| 727 |
+
"loss": 0.4357,
|
| 728 |
+
"mean_token_accuracy": 0.9018381554633379,
|
| 729 |
+
"num_tokens": 11702656.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.35576051749521864,
|
| 734 |
+
"epoch": 0.6849234738755644,
|
| 735 |
+
"grad_norm": 0.1396484375,
|
| 736 |
+
"learning_rate": 0.00015440900562851783,
|
| 737 |
+
"loss": 0.3529,
|
| 738 |
+
"mean_token_accuracy": 0.9145626701414585,
|
| 739 |
+
"num_tokens": 11866221.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.3530123558419291,
|
| 744 |
+
"epoch": 0.6943059872163255,
|
| 745 |
+
"grad_norm": 0.1982421875,
|
| 746 |
+
"learning_rate": 0.0001537836147592245,
|
| 747 |
+
"loss": 0.3413,
|
| 748 |
+
"mean_token_accuracy": 0.9174593914300203,
|
| 749 |
+
"num_tokens": 12028438.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.3903426473028958,
|
| 754 |
+
"epoch": 0.7036885005570868,
|
| 755 |
+
"grad_norm": 0.1953125,
|
| 756 |
+
"learning_rate": 0.00015315822388993123,
|
| 757 |
+
"loss": 0.385,
|
| 758 |
+
"mean_token_accuracy": 0.9088658891618252,
|
| 759 |
+
"num_tokens": 12190615.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.3577064266020898,
|
| 764 |
+
"epoch": 0.7130710138978479,
|
| 765 |
+
"grad_norm": 0.154296875,
|
| 766 |
+
"learning_rate": 0.0001525328330206379,
|
| 767 |
+
"loss": 0.3477,
|
| 768 |
+
"mean_token_accuracy": 0.9163919541984796,
|
| 769 |
+
"num_tokens": 12353059.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.29131998592056335,
|
| 774 |
+
"epoch": 0.722453527238609,
|
| 775 |
+
"grad_norm": 0.1689453125,
|
| 776 |
+
"learning_rate": 0.0001519074421513446,
|
| 777 |
+
"loss": 0.2891,
|
| 778 |
+
"mean_token_accuracy": 0.9242078192532063,
|
| 779 |
+
"num_tokens": 12515436.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.3846006996463984,
|
| 784 |
+
"epoch": 0.7318360405793702,
|
| 785 |
+
"grad_norm": 0.193359375,
|
| 786 |
+
"learning_rate": 0.00015128205128205128,
|
| 787 |
+
"loss": 0.3775,
|
| 788 |
+
"mean_token_accuracy": 0.9100886223837733,
|
| 789 |
+
"num_tokens": 12677546.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.34870610454818235,
|
| 794 |
+
"epoch": 0.7412185539201314,
|
| 795 |
+
"grad_norm": 0.1728515625,
|
| 796 |
+
"learning_rate": 0.000150656660412758,
|
| 797 |
+
"loss": 0.3401,
|
| 798 |
+
"mean_token_accuracy": 0.9157310061156749,
|
| 799 |
+
"num_tokens": 12840366.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.33407560451305474,
|
| 804 |
+
"epoch": 0.7506010672608925,
|
| 805 |
+
"grad_norm": 0.169921875,
|
| 806 |
+
"learning_rate": 0.00015003126954346466,
|
| 807 |
+
"loss": 0.3285,
|
| 808 |
+
"mean_token_accuracy": 0.9150595877319574,
|
| 809 |
+
"num_tokens": 13002637.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.33455972147057766,
|
| 814 |
+
"epoch": 0.7599835806016537,
|
| 815 |
+
"grad_norm": 0.173828125,
|
| 816 |
+
"learning_rate": 0.00014940587867417137,
|
| 817 |
+
"loss": 0.3268,
|
| 818 |
+
"mean_token_accuracy": 0.9206027369946241,
|
| 819 |
+
"num_tokens": 13165555.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.3760374941455666,
|
| 824 |
+
"epoch": 0.7693660939424148,
|
| 825 |
+
"grad_norm": 0.212890625,
|
| 826 |
+
"learning_rate": 0.00014878048780487806,
|
| 827 |
+
"loss": 0.3689,
|
| 828 |
+
"mean_token_accuracy": 0.9126812819391489,
|
| 829 |
+
"num_tokens": 13328334.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.4276343748439103,
|
| 834 |
+
"epoch": 0.778748607283176,
|
| 835 |
+
"grad_norm": 0.16015625,
|
| 836 |
+
"learning_rate": 0.00014815509693558477,
|
| 837 |
+
"loss": 0.4228,
|
| 838 |
+
"mean_token_accuracy": 0.9042647287249566,
|
| 839 |
+
"num_tokens": 13490265.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.35269592416007073,
|
| 844 |
+
"epoch": 0.7881311206239371,
|
| 845 |
+
"grad_norm": 0.1416015625,
|
| 846 |
+
"learning_rate": 0.00014752970606629143,
|
| 847 |
+
"loss": 0.3436,
|
| 848 |
+
"mean_token_accuracy": 0.9150325283408165,
|
| 849 |
+
"num_tokens": 13652700.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.3484025130281225,
|
| 854 |
+
"epoch": 0.7975136339646983,
|
| 855 |
+
"grad_norm": 0.1650390625,
|
| 856 |
+
"learning_rate": 0.00014690431519699812,
|
| 857 |
+
"loss": 0.3433,
|
| 858 |
+
"mean_token_accuracy": 0.9187351956963539,
|
| 859 |
+
"num_tokens": 13814997.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.34064410558785313,
|
| 864 |
+
"epoch": 0.8068961473054594,
|
| 865 |
+
"grad_norm": 0.169921875,
|
| 866 |
+
"learning_rate": 0.00014627892432770483,
|
| 867 |
+
"loss": 0.3319,
|
| 868 |
+
"mean_token_accuracy": 0.917700307443738,
|
| 869 |
+
"num_tokens": 13977550.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.3676424361299723,
|
| 874 |
+
"epoch": 0.8162786606462206,
|
| 875 |
+
"grad_norm": 0.1474609375,
|
| 876 |
+
"learning_rate": 0.00014565353345841151,
|
| 877 |
+
"loss": 0.3611,
|
| 878 |
+
"mean_token_accuracy": 0.9167136520147323,
|
| 879 |
+
"num_tokens": 14140493.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.3216154734662268,
|
| 884 |
+
"epoch": 0.8256611739869818,
|
| 885 |
+
"grad_norm": 0.1767578125,
|
| 886 |
+
"learning_rate": 0.0001450281425891182,
|
| 887 |
+
"loss": 0.3133,
|
| 888 |
+
"mean_token_accuracy": 0.920833321288228,
|
| 889 |
+
"num_tokens": 14302638.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.3731617649958935,
|
| 894 |
+
"epoch": 0.8350436873277429,
|
| 895 |
+
"grad_norm": 0.1640625,
|
| 896 |
+
"learning_rate": 0.0001444027517198249,
|
| 897 |
+
"loss": 0.3708,
|
| 898 |
+
"mean_token_accuracy": 0.9144421305507422,
|
| 899 |
+
"num_tokens": 14465632.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.3741735242540017,
|
| 904 |
+
"epoch": 0.844426200668504,
|
| 905 |
+
"grad_norm": 0.1474609375,
|
| 906 |
+
"learning_rate": 0.0001437773608505316,
|
| 907 |
+
"loss": 0.3628,
|
| 908 |
+
"mean_token_accuracy": 0.9130110245198011,
|
| 909 |
+
"num_tokens": 14627986.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 0.363976987201022,
|
| 914 |
+
"epoch": 0.8538087140092653,
|
| 915 |
+
"grad_norm": 0.1611328125,
|
| 916 |
+
"learning_rate": 0.0001431519699812383,
|
| 917 |
+
"loss": 0.3585,
|
| 918 |
+
"mean_token_accuracy": 0.9120528548955917,
|
| 919 |
+
"num_tokens": 14790551.0,
|
| 920 |
+
"step": 910
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.3448503586114384,
|
| 924 |
+
"epoch": 0.8631912273500264,
|
| 925 |
+
"grad_norm": 0.1533203125,
|
| 926 |
+
"learning_rate": 0.00014252657911194497,
|
| 927 |
+
"loss": 0.3421,
|
| 928 |
+
"mean_token_accuracy": 0.9182739958167077,
|
| 929 |
+
"num_tokens": 14952661.0,
|
| 930 |
+
"step": 920
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 0.27787273108260707,
|
| 934 |
+
"epoch": 0.8725737406907875,
|
| 935 |
+
"grad_norm": 0.150390625,
|
| 936 |
+
"learning_rate": 0.00014190118824265166,
|
| 937 |
+
"loss": 0.2687,
|
| 938 |
+
"mean_token_accuracy": 0.92897635884583,
|
| 939 |
+
"num_tokens": 15115022.0,
|
| 940 |
+
"step": 930
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.36200930876657367,
|
| 944 |
+
"epoch": 0.8819562540315486,
|
| 945 |
+
"grad_norm": 0.150390625,
|
| 946 |
+
"learning_rate": 0.00014127579737335837,
|
| 947 |
+
"loss": 0.3497,
|
| 948 |
+
"mean_token_accuracy": 0.9132607497274876,
|
| 949 |
+
"num_tokens": 15277207.0,
|
| 950 |
+
"step": 940
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.2834262179443613,
|
| 954 |
+
"epoch": 0.8913387673723099,
|
| 955 |
+
"grad_norm": 0.1494140625,
|
| 956 |
+
"learning_rate": 0.00014065040650406506,
|
| 957 |
+
"loss": 0.2814,
|
| 958 |
+
"mean_token_accuracy": 0.9268792189657689,
|
| 959 |
+
"num_tokens": 15440092.0,
|
| 960 |
+
"step": 950
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.3499863417411689,
|
| 964 |
+
"epoch": 0.900721280713071,
|
| 965 |
+
"grad_norm": 0.1484375,
|
| 966 |
+
"learning_rate": 0.00014002501563477175,
|
| 967 |
+
"loss": 0.3417,
|
| 968 |
+
"mean_token_accuracy": 0.9159077113494277,
|
| 969 |
+
"num_tokens": 15603417.0,
|
| 970 |
+
"step": 960
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 0.2800866418518126,
|
| 974 |
+
"epoch": 0.9101037940538321,
|
| 975 |
+
"grad_norm": 0.1826171875,
|
| 976 |
+
"learning_rate": 0.00013939962476547843,
|
| 977 |
+
"loss": 0.27,
|
| 978 |
+
"mean_token_accuracy": 0.9285330750048161,
|
| 979 |
+
"num_tokens": 15765520.0,
|
| 980 |
+
"step": 970
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.3038740568445064,
|
| 984 |
+
"epoch": 0.9194863073945934,
|
| 985 |
+
"grad_norm": 0.1669921875,
|
| 986 |
+
"learning_rate": 0.00013877423389618512,
|
| 987 |
+
"loss": 0.2992,
|
| 988 |
+
"mean_token_accuracy": 0.9227856550365686,
|
| 989 |
+
"num_tokens": 15928370.0,
|
| 990 |
+
"step": 980
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.39133549834950826,
|
| 994 |
+
"epoch": 0.9288688207353545,
|
| 995 |
+
"grad_norm": 0.19921875,
|
| 996 |
+
"learning_rate": 0.0001381488430268918,
|
| 997 |
+
"loss": 0.3845,
|
| 998 |
+
"mean_token_accuracy": 0.9107819177210331,
|
| 999 |
+
"num_tokens": 16090841.0,
|
| 1000 |
+
"step": 990
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 0.368834131793119,
|
| 1004 |
+
"epoch": 0.9382513340761156,
|
| 1005 |
+
"grad_norm": 0.16796875,
|
| 1006 |
+
"learning_rate": 0.0001375234521575985,
|
| 1007 |
+
"loss": 0.3592,
|
| 1008 |
+
"mean_token_accuracy": 0.9155494935810566,
|
| 1009 |
+
"num_tokens": 16253510.0,
|
| 1010 |
+
"step": 1000
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 0.3432939130580053,
|
| 1014 |
+
"epoch": 0.9476338474168768,
|
| 1015 |
+
"grad_norm": 0.181640625,
|
| 1016 |
+
"learning_rate": 0.0001368980612883052,
|
| 1017 |
+
"loss": 0.3434,
|
| 1018 |
+
"mean_token_accuracy": 0.9178479440510273,
|
| 1019 |
+
"num_tokens": 16416142.0,
|
| 1020 |
+
"step": 1010
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 0.3263048173219431,
|
| 1024 |
+
"epoch": 0.957016360757638,
|
| 1025 |
+
"grad_norm": 0.158203125,
|
| 1026 |
+
"learning_rate": 0.0001362726704190119,
|
| 1027 |
+
"loss": 0.3157,
|
| 1028 |
+
"mean_token_accuracy": 0.919898977316916,
|
| 1029 |
+
"num_tokens": 16578145.0,
|
| 1030 |
+
"step": 1020
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 0.30497189780580813,
|
| 1034 |
+
"epoch": 0.9663988740983991,
|
| 1035 |
+
"grad_norm": 0.162109375,
|
| 1036 |
+
"learning_rate": 0.00013564727954971858,
|
| 1037 |
+
"loss": 0.2985,
|
| 1038 |
+
"mean_token_accuracy": 0.922874777764082,
|
| 1039 |
+
"num_tokens": 16741103.0,
|
| 1040 |
+
"step": 1030
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 0.2940454826748464,
|
| 1044 |
+
"epoch": 0.9757813874391603,
|
| 1045 |
+
"grad_norm": 0.1689453125,
|
| 1046 |
+
"learning_rate": 0.00013502188868042526,
|
| 1047 |
+
"loss": 0.2874,
|
| 1048 |
+
"mean_token_accuracy": 0.9239259999245405,
|
| 1049 |
+
"num_tokens": 16903947.0,
|
| 1050 |
+
"step": 1040
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"entropy": 0.367372212279588,
|
| 1054 |
+
"epoch": 0.9851639007799214,
|
| 1055 |
+
"grad_norm": 0.1748046875,
|
| 1056 |
+
"learning_rate": 0.00013439649781113198,
|
| 1057 |
+
"loss": 0.3601,
|
| 1058 |
+
"mean_token_accuracy": 0.9152833472937345,
|
| 1059 |
+
"num_tokens": 17065800.0,
|
| 1060 |
+
"step": 1050
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"entropy": 0.34914421315770594,
|
| 1064 |
+
"epoch": 0.9945464141206826,
|
| 1065 |
+
"grad_norm": 0.1826171875,
|
| 1066 |
+
"learning_rate": 0.00013377110694183866,
|
| 1067 |
+
"loss": 0.3425,
|
| 1068 |
+
"mean_token_accuracy": 0.9175648283213377,
|
| 1069 |
+
"num_tokens": 17228736.0,
|
| 1070 |
+
"step": 1060
|
| 1071 |
+
},
|
| 1072 |
+
{
|
| 1073 |
+
"entropy": 0.2900184833320083,
|
| 1074 |
+
"epoch": 1.0037530053363044,
|
| 1075 |
+
"grad_norm": 0.13671875,
|
| 1076 |
+
"learning_rate": 0.00013314571607254535,
|
| 1077 |
+
"loss": 0.2782,
|
| 1078 |
+
"mean_token_accuracy": 0.9317144804699405,
|
| 1079 |
+
"num_tokens": 17388924.0,
|
| 1080 |
+
"step": 1070
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"entropy": 0.2829561754653696,
|
| 1084 |
+
"epoch": 1.0131355186770656,
|
| 1085 |
+
"grad_norm": 0.1259765625,
|
| 1086 |
+
"learning_rate": 0.00013252032520325203,
|
| 1087 |
+
"loss": 0.2765,
|
| 1088 |
+
"mean_token_accuracy": 0.9315391689538955,
|
| 1089 |
+
"num_tokens": 17550836.0,
|
| 1090 |
+
"step": 1080
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"entropy": 0.3159750218328554,
|
| 1094 |
+
"epoch": 1.0225180320178269,
|
| 1095 |
+
"grad_norm": 0.154296875,
|
| 1096 |
+
"learning_rate": 0.00013189493433395872,
|
| 1097 |
+
"loss": 0.3097,
|
| 1098 |
+
"mean_token_accuracy": 0.924969544634223,
|
| 1099 |
+
"num_tokens": 17713453.0,
|
| 1100 |
+
"step": 1090
|
| 1101 |
+
},
|
| 1102 |
+
{
|
| 1103 |
+
"entropy": 0.3149459302192554,
|
| 1104 |
+
"epoch": 1.0319005453585879,
|
| 1105 |
+
"grad_norm": 0.181640625,
|
| 1106 |
+
"learning_rate": 0.00013126954346466543,
|
| 1107 |
+
"loss": 0.307,
|
| 1108 |
+
"mean_token_accuracy": 0.9239892680197954,
|
| 1109 |
+
"num_tokens": 17875306.0,
|
| 1110 |
+
"step": 1100
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"entropy": 0.3264659658656456,
|
| 1114 |
+
"epoch": 1.0412830586993491,
|
| 1115 |
+
"grad_norm": 0.140625,
|
| 1116 |
+
"learning_rate": 0.0001306441525953721,
|
| 1117 |
+
"loss": 0.3177,
|
| 1118 |
+
"mean_token_accuracy": 0.9219260595738887,
|
| 1119 |
+
"num_tokens": 18037829.0,
|
| 1120 |
+
"step": 1110
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"entropy": 0.3119678142364137,
|
| 1124 |
+
"epoch": 1.0506655720401104,
|
| 1125 |
+
"grad_norm": 0.1376953125,
|
| 1126 |
+
"learning_rate": 0.0001300187617260788,
|
| 1127 |
+
"loss": 0.3047,
|
| 1128 |
+
"mean_token_accuracy": 0.9250960987061262,
|
| 1129 |
+
"num_tokens": 18201027.0,
|
| 1130 |
+
"step": 1120
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"entropy": 0.3200692283746321,
|
| 1134 |
+
"epoch": 1.0600480853808714,
|
| 1135 |
+
"grad_norm": 0.115234375,
|
| 1136 |
+
"learning_rate": 0.0001293933708567855,
|
| 1137 |
+
"loss": 0.3129,
|
| 1138 |
+
"mean_token_accuracy": 0.9225547250360251,
|
| 1139 |
+
"num_tokens": 18364107.0,
|
| 1140 |
+
"step": 1130
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"entropy": 0.2799913567607291,
|
| 1144 |
+
"epoch": 1.0694305987216326,
|
| 1145 |
+
"grad_norm": 0.1865234375,
|
| 1146 |
+
"learning_rate": 0.0001287679799874922,
|
| 1147 |
+
"loss": 0.2668,
|
| 1148 |
+
"mean_token_accuracy": 0.9307141672819853,
|
| 1149 |
+
"num_tokens": 18526662.0,
|
| 1150 |
+
"step": 1140
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"entropy": 0.3025812109815888,
|
| 1154 |
+
"epoch": 1.0788131120623938,
|
| 1155 |
+
"grad_norm": 0.1728515625,
|
| 1156 |
+
"learning_rate": 0.00012814258911819887,
|
| 1157 |
+
"loss": 0.3015,
|
| 1158 |
+
"mean_token_accuracy": 0.9235180430114269,
|
| 1159 |
+
"num_tokens": 18689065.0,
|
| 1160 |
+
"step": 1150
|
| 1161 |
+
},
|
| 1162 |
+
{
|
| 1163 |
+
"entropy": 0.2885304512223229,
|
| 1164 |
+
"epoch": 1.0881956254031548,
|
| 1165 |
+
"grad_norm": 0.263671875,
|
| 1166 |
+
"learning_rate": 0.00012751719824890558,
|
| 1167 |
+
"loss": 0.2786,
|
| 1168 |
+
"mean_token_accuracy": 0.9279053185135127,
|
| 1169 |
+
"num_tokens": 18851798.0,
|
| 1170 |
+
"step": 1160
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"entropy": 0.33722220184863544,
|
| 1174 |
+
"epoch": 1.097578138743916,
|
| 1175 |
+
"grad_norm": 0.1962890625,
|
| 1176 |
+
"learning_rate": 0.00012689180737961227,
|
| 1177 |
+
"loss": 0.3301,
|
| 1178 |
+
"mean_token_accuracy": 0.9198755659162998,
|
| 1179 |
+
"num_tokens": 19013951.0,
|
| 1180 |
+
"step": 1170
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"entropy": 0.35752617044490764,
|
| 1184 |
+
"epoch": 1.106960652084677,
|
| 1185 |
+
"grad_norm": 0.1826171875,
|
| 1186 |
+
"learning_rate": 0.00012626641651031895,
|
| 1187 |
+
"loss": 0.3525,
|
| 1188 |
+
"mean_token_accuracy": 0.9136955734342337,
|
| 1189 |
+
"num_tokens": 19176391.0,
|
| 1190 |
+
"step": 1180
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"entropy": 0.3285738020436838,
|
| 1194 |
+
"epoch": 1.1163431654254383,
|
| 1195 |
+
"grad_norm": 0.169921875,
|
| 1196 |
+
"learning_rate": 0.00012564102564102564,
|
| 1197 |
+
"loss": 0.3174,
|
| 1198 |
+
"mean_token_accuracy": 0.923049738816917,
|
| 1199 |
+
"num_tokens": 19338315.0,
|
| 1200 |
+
"step": 1190
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"entropy": 0.33181785854394547,
|
| 1204 |
+
"epoch": 1.1257256787661996,
|
| 1205 |
+
"grad_norm": 0.154296875,
|
| 1206 |
+
"learning_rate": 0.00012501563477173235,
|
| 1207 |
+
"loss": 0.3252,
|
| 1208 |
+
"mean_token_accuracy": 0.9195261619985103,
|
| 1209 |
+
"num_tokens": 19501276.0,
|
| 1210 |
+
"step": 1200
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"entropy": 0.33468560994951985,
|
| 1214 |
+
"epoch": 1.1351081921069606,
|
| 1215 |
+
"grad_norm": 0.1630859375,
|
| 1216 |
+
"learning_rate": 0.00012439024390243904,
|
| 1217 |
+
"loss": 0.3297,
|
| 1218 |
+
"mean_token_accuracy": 0.9180046692490578,
|
| 1219 |
+
"num_tokens": 19663199.0,
|
| 1220 |
+
"step": 1210
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"entropy": 0.35496956037823113,
|
| 1224 |
+
"epoch": 1.1444907054477218,
|
| 1225 |
+
"grad_norm": 0.14453125,
|
| 1226 |
+
"learning_rate": 0.00012376485303314572,
|
| 1227 |
+
"loss": 0.3452,
|
| 1228 |
+
"mean_token_accuracy": 0.9190296337008477,
|
| 1229 |
+
"num_tokens": 19825833.0,
|
| 1230 |
+
"step": 1220
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"entropy": 0.3228163967374712,
|
| 1234 |
+
"epoch": 1.153873218788483,
|
| 1235 |
+
"grad_norm": 0.173828125,
|
| 1236 |
+
"learning_rate": 0.0001231394621638524,
|
| 1237 |
+
"loss": 0.3184,
|
| 1238 |
+
"mean_token_accuracy": 0.9187171328812838,
|
| 1239 |
+
"num_tokens": 19988129.0,
|
| 1240 |
+
"step": 1230
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"entropy": 0.36049368806998244,
|
| 1244 |
+
"epoch": 1.163255732129244,
|
| 1245 |
+
"grad_norm": 0.177734375,
|
| 1246 |
+
"learning_rate": 0.0001225140712945591,
|
| 1247 |
+
"loss": 0.3561,
|
| 1248 |
+
"mean_token_accuracy": 0.9135892525315285,
|
| 1249 |
+
"num_tokens": 20149704.0,
|
| 1250 |
+
"step": 1240
|
| 1251 |
+
},
|
| 1252 |
+
{
|
| 1253 |
+
"entropy": 0.29329942048643715,
|
| 1254 |
+
"epoch": 1.1726382454700053,
|
| 1255 |
+
"grad_norm": 0.1982421875,
|
| 1256 |
+
"learning_rate": 0.0001218886804252658,
|
| 1257 |
+
"loss": 0.2808,
|
| 1258 |
+
"mean_token_accuracy": 0.9278272874653339,
|
| 1259 |
+
"num_tokens": 20312458.0,
|
| 1260 |
+
"step": 1250
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"entropy": 0.3245240814285353,
|
| 1264 |
+
"epoch": 1.1820207588107665,
|
| 1265 |
+
"grad_norm": 0.1328125,
|
| 1266 |
+
"learning_rate": 0.00012126328955597248,
|
| 1267 |
+
"loss": 0.3206,
|
| 1268 |
+
"mean_token_accuracy": 0.9241520136594772,
|
| 1269 |
+
"num_tokens": 20474875.0,
|
| 1270 |
+
"step": 1260
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"entropy": 0.31488763078814375,
|
| 1274 |
+
"epoch": 1.1914032721515275,
|
| 1275 |
+
"grad_norm": 0.134765625,
|
| 1276 |
+
"learning_rate": 0.00012063789868667918,
|
| 1277 |
+
"loss": 0.3092,
|
| 1278 |
+
"mean_token_accuracy": 0.9249691208824515,
|
| 1279 |
+
"num_tokens": 20636775.0,
|
| 1280 |
+
"step": 1270
|
| 1281 |
+
},
|
| 1282 |
+
{
|
| 1283 |
+
"entropy": 0.32809503517928534,
|
| 1284 |
+
"epoch": 1.2007857854922888,
|
| 1285 |
+
"grad_norm": 0.1748046875,
|
| 1286 |
+
"learning_rate": 0.00012001250781738587,
|
| 1287 |
+
"loss": 0.3175,
|
| 1288 |
+
"mean_token_accuracy": 0.9244366209954024,
|
| 1289 |
+
"num_tokens": 20799311.0,
|
| 1290 |
+
"step": 1280
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"entropy": 0.3452982397924643,
|
| 1294 |
+
"epoch": 1.21016829883305,
|
| 1295 |
+
"grad_norm": 0.1337890625,
|
| 1296 |
+
"learning_rate": 0.00011938711694809257,
|
| 1297 |
+
"loss": 0.3417,
|
| 1298 |
+
"mean_token_accuracy": 0.9209324043244124,
|
| 1299 |
+
"num_tokens": 20961671.0,
|
| 1300 |
+
"step": 1290
|
| 1301 |
+
},
|
| 1302 |
+
{
|
| 1303 |
+
"entropy": 0.33462724700802937,
|
| 1304 |
+
"epoch": 1.219550812173811,
|
| 1305 |
+
"grad_norm": 0.1728515625,
|
| 1306 |
+
"learning_rate": 0.00011876172607879925,
|
| 1307 |
+
"loss": 0.3274,
|
| 1308 |
+
"mean_token_accuracy": 0.9196479767560959,
|
| 1309 |
+
"num_tokens": 21124643.0,
|
| 1310 |
+
"step": 1300
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"entropy": 0.32381630715099163,
|
| 1314 |
+
"epoch": 1.2289333255145722,
|
| 1315 |
+
"grad_norm": 0.1376953125,
|
| 1316 |
+
"learning_rate": 0.00011813633520950595,
|
| 1317 |
+
"loss": 0.3161,
|
| 1318 |
+
"mean_token_accuracy": 0.9226799987256527,
|
| 1319 |
+
"num_tokens": 21286738.0,
|
| 1320 |
+
"step": 1310
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"entropy": 0.3411265324510168,
|
| 1324 |
+
"epoch": 1.2383158388553333,
|
| 1325 |
+
"grad_norm": 0.1533203125,
|
| 1326 |
+
"learning_rate": 0.00011751094434021264,
|
| 1327 |
+
"loss": 0.3347,
|
| 1328 |
+
"mean_token_accuracy": 0.9211051788181066,
|
| 1329 |
+
"num_tokens": 21448827.0,
|
| 1330 |
+
"step": 1320
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"entropy": 0.32648798704030924,
|
| 1334 |
+
"epoch": 1.2476983521960945,
|
| 1335 |
+
"grad_norm": 0.1669921875,
|
| 1336 |
+
"learning_rate": 0.00011688555347091934,
|
| 1337 |
+
"loss": 0.3159,
|
| 1338 |
+
"mean_token_accuracy": 0.922034990042448,
|
| 1339 |
+
"num_tokens": 21610617.0,
|
| 1340 |
+
"step": 1330
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"entropy": 0.3225275243108626,
|
| 1344 |
+
"epoch": 1.2570808655368557,
|
| 1345 |
+
"grad_norm": 0.1337890625,
|
| 1346 |
+
"learning_rate": 0.00011626016260162603,
|
| 1347 |
+
"loss": 0.3217,
|
| 1348 |
+
"mean_token_accuracy": 0.924454814940691,
|
| 1349 |
+
"num_tokens": 21773343.0,
|
| 1350 |
+
"step": 1340
|
| 1351 |
+
},
|
| 1352 |
+
{
|
| 1353 |
+
"entropy": 0.31472907413262874,
|
| 1354 |
+
"epoch": 1.2664633788776167,
|
| 1355 |
+
"grad_norm": 0.158203125,
|
| 1356 |
+
"learning_rate": 0.0001156347717323327,
|
| 1357 |
+
"loss": 0.3056,
|
| 1358 |
+
"mean_token_accuracy": 0.9251250382512808,
|
| 1359 |
+
"num_tokens": 21936161.0,
|
| 1360 |
+
"step": 1350
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"entropy": 0.34041504978667947,
|
| 1364 |
+
"epoch": 1.275845892218378,
|
| 1365 |
+
"grad_norm": 0.15625,
|
| 1366 |
+
"learning_rate": 0.00011500938086303941,
|
| 1367 |
+
"loss": 0.3337,
|
| 1368 |
+
"mean_token_accuracy": 0.9195377014577388,
|
| 1369 |
+
"num_tokens": 22099004.0,
|
| 1370 |
+
"step": 1360
|
| 1371 |
+
},
|
| 1372 |
+
{
|
| 1373 |
+
"entropy": 0.32660515860188755,
|
| 1374 |
+
"epoch": 1.2852284055591392,
|
| 1375 |
+
"grad_norm": 0.1513671875,
|
| 1376 |
+
"learning_rate": 0.00011438398999374609,
|
| 1377 |
+
"loss": 0.3177,
|
| 1378 |
+
"mean_token_accuracy": 0.9214879527688027,
|
| 1379 |
+
"num_tokens": 22261465.0,
|
| 1380 |
+
"step": 1370
|
| 1381 |
+
},
|
| 1382 |
+
{
|
| 1383 |
+
"entropy": 0.27577626157435586,
|
| 1384 |
+
"epoch": 1.2946109188999002,
|
| 1385 |
+
"grad_norm": 0.171875,
|
| 1386 |
+
"learning_rate": 0.00011375859912445279,
|
| 1387 |
+
"loss": 0.2718,
|
| 1388 |
+
"mean_token_accuracy": 0.9287902843207121,
|
| 1389 |
+
"num_tokens": 22424003.0,
|
| 1390 |
+
"step": 1380
|
| 1391 |
+
},
|
| 1392 |
+
{
|
| 1393 |
+
"entropy": 0.3049365603888873,
|
| 1394 |
+
"epoch": 1.3039934322406614,
|
| 1395 |
+
"grad_norm": 0.150390625,
|
| 1396 |
+
"learning_rate": 0.00011313320825515947,
|
| 1397 |
+
"loss": 0.296,
|
| 1398 |
+
"mean_token_accuracy": 0.9254100024700165,
|
| 1399 |
+
"num_tokens": 22586414.0,
|
| 1400 |
+
"step": 1390
|
| 1401 |
+
},
|
| 1402 |
+
{
|
| 1403 |
+
"entropy": 0.3391640084271785,
|
| 1404 |
+
"epoch": 1.3133759455814227,
|
| 1405 |
+
"grad_norm": 0.158203125,
|
| 1406 |
+
"learning_rate": 0.00011250781738586617,
|
| 1407 |
+
"loss": 0.3316,
|
| 1408 |
+
"mean_token_accuracy": 0.9204599536955357,
|
| 1409 |
+
"num_tokens": 22748801.0,
|
| 1410 |
+
"step": 1400
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"entropy": 0.29096004691673444,
|
| 1414 |
+
"epoch": 1.3227584589221837,
|
| 1415 |
+
"grad_norm": 0.1513671875,
|
| 1416 |
+
"learning_rate": 0.00011188242651657286,
|
| 1417 |
+
"loss": 0.2829,
|
| 1418 |
+
"mean_token_accuracy": 0.926516629010439,
|
| 1419 |
+
"num_tokens": 22911078.0,
|
| 1420 |
+
"step": 1410
|
| 1421 |
+
},
|
| 1422 |
+
{
|
| 1423 |
+
"entropy": 0.30442387533839793,
|
| 1424 |
+
"epoch": 1.332140972262945,
|
| 1425 |
+
"grad_norm": 0.1435546875,
|
| 1426 |
+
"learning_rate": 0.00011125703564727956,
|
| 1427 |
+
"loss": 0.2997,
|
| 1428 |
+
"mean_token_accuracy": 0.928035743534565,
|
| 1429 |
+
"num_tokens": 23073932.0,
|
| 1430 |
+
"step": 1420
|
| 1431 |
+
},
|
| 1432 |
+
{
|
| 1433 |
+
"entropy": 0.2672559514408931,
|
| 1434 |
+
"epoch": 1.3415234856037062,
|
| 1435 |
+
"grad_norm": 0.1669921875,
|
| 1436 |
+
"learning_rate": 0.00011063164477798624,
|
| 1437 |
+
"loss": 0.2567,
|
| 1438 |
+
"mean_token_accuracy": 0.934470995515585,
|
| 1439 |
+
"num_tokens": 23234861.0,
|
| 1440 |
+
"step": 1430
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"entropy": 0.28968692439375443,
|
| 1444 |
+
"epoch": 1.3509059989444672,
|
| 1445 |
+
"grad_norm": 0.189453125,
|
| 1446 |
+
"learning_rate": 0.00011000625390869294,
|
| 1447 |
+
"loss": 0.2833,
|
| 1448 |
+
"mean_token_accuracy": 0.9286899168044329,
|
| 1449 |
+
"num_tokens": 23397575.0,
|
| 1450 |
+
"step": 1440
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"entropy": 0.3179404502676334,
|
| 1454 |
+
"epoch": 1.3602885122852284,
|
| 1455 |
+
"grad_norm": 0.154296875,
|
| 1456 |
+
"learning_rate": 0.00010938086303939963,
|
| 1457 |
+
"loss": 0.3106,
|
| 1458 |
+
"mean_token_accuracy": 0.9237559959292412,
|
| 1459 |
+
"num_tokens": 23560621.0,
|
| 1460 |
+
"step": 1450
|
| 1461 |
+
},
|
| 1462 |
+
{
|
| 1463 |
+
"entropy": 0.3825915275025181,
|
| 1464 |
+
"epoch": 1.3696710256259896,
|
| 1465 |
+
"grad_norm": 0.1796875,
|
| 1466 |
+
"learning_rate": 0.00010875547217010633,
|
| 1467 |
+
"loss": 0.3812,
|
| 1468 |
+
"mean_token_accuracy": 0.9096528366208076,
|
| 1469 |
+
"num_tokens": 23723326.0,
|
| 1470 |
+
"step": 1460
|
| 1471 |
+
},
|
| 1472 |
+
{
|
| 1473 |
+
"entropy": 0.352222545677796,
|
| 1474 |
+
"epoch": 1.3790535389667506,
|
| 1475 |
+
"grad_norm": 0.1611328125,
|
| 1476 |
+
"learning_rate": 0.00010813008130081302,
|
| 1477 |
+
"loss": 0.3445,
|
| 1478 |
+
"mean_token_accuracy": 0.9214517448097468,
|
| 1479 |
+
"num_tokens": 23885973.0,
|
| 1480 |
+
"step": 1470
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"entropy": 0.3833993759646546,
|
| 1484 |
+
"epoch": 1.3884360523075119,
|
| 1485 |
+
"grad_norm": 0.1591796875,
|
| 1486 |
+
"learning_rate": 0.00010750469043151969,
|
| 1487 |
+
"loss": 0.3772,
|
| 1488 |
+
"mean_token_accuracy": 0.9148985600098968,
|
| 1489 |
+
"num_tokens": 24049379.0,
|
| 1490 |
+
"step": 1480
|
| 1491 |
+
},
|
| 1492 |
+
{
|
| 1493 |
+
"entropy": 0.3407844117609784,
|
| 1494 |
+
"epoch": 1.3978185656482731,
|
| 1495 |
+
"grad_norm": 0.15625,
|
| 1496 |
+
"learning_rate": 0.0001068792995622264,
|
| 1497 |
+
"loss": 0.3332,
|
| 1498 |
+
"mean_token_accuracy": 0.9178143370896578,
|
| 1499 |
+
"num_tokens": 24211771.0,
|
| 1500 |
+
"step": 1490
|
| 1501 |
+
},
|
| 1502 |
+
{
|
| 1503 |
+
"entropy": 0.3129306449787691,
|
| 1504 |
+
"epoch": 1.4072010789890341,
|
| 1505 |
+
"grad_norm": 0.166015625,
|
| 1506 |
+
"learning_rate": 0.00010625390869293307,
|
| 1507 |
+
"loss": 0.3105,
|
| 1508 |
+
"mean_token_accuracy": 0.9243231456726789,
|
| 1509 |
+
"num_tokens": 24374782.0,
|
| 1510 |
+
"step": 1500
|
| 1511 |
+
},
|
| 1512 |
+
{
|
| 1513 |
+
"entropy": 0.2853265376936179,
|
| 1514 |
+
"epoch": 1.4165835923297954,
|
| 1515 |
+
"grad_norm": 0.14453125,
|
| 1516 |
+
"learning_rate": 0.00010562851782363979,
|
| 1517 |
+
"loss": 0.272,
|
| 1518 |
+
"mean_token_accuracy": 0.9318001717329025,
|
| 1519 |
+
"num_tokens": 24537798.0,
|
| 1520 |
+
"step": 1510
|
| 1521 |
+
},
|
| 1522 |
+
{
|
| 1523 |
+
"entropy": 0.32060901625081895,
|
| 1524 |
+
"epoch": 1.4259661056705566,
|
| 1525 |
+
"grad_norm": 0.169921875,
|
| 1526 |
+
"learning_rate": 0.00010500312695434646,
|
| 1527 |
+
"loss": 0.3189,
|
| 1528 |
+
"mean_token_accuracy": 0.923735149204731,
|
| 1529 |
+
"num_tokens": 24700222.0,
|
| 1530 |
+
"step": 1520
|
| 1531 |
+
},
|
| 1532 |
+
{
|
| 1533 |
+
"entropy": 0.28523959064041265,
|
| 1534 |
+
"epoch": 1.4353486190113176,
|
| 1535 |
+
"grad_norm": 0.138671875,
|
| 1536 |
+
"learning_rate": 0.00010437773608505317,
|
| 1537 |
+
"loss": 0.2765,
|
| 1538 |
+
"mean_token_accuracy": 0.9289753165096044,
|
| 1539 |
+
"num_tokens": 24862698.0,
|
| 1540 |
+
"step": 1530
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"entropy": 0.28084768254193476,
|
| 1544 |
+
"epoch": 1.4447311323520788,
|
| 1545 |
+
"grad_norm": 0.1435546875,
|
| 1546 |
+
"learning_rate": 0.00010375234521575985,
|
| 1547 |
+
"loss": 0.2735,
|
| 1548 |
+
"mean_token_accuracy": 0.9312996946275234,
|
| 1549 |
+
"num_tokens": 25025816.0,
|
| 1550 |
+
"step": 1540
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"entropy": 0.3017741791787557,
|
| 1554 |
+
"epoch": 1.45411364569284,
|
| 1555 |
+
"grad_norm": 0.15625,
|
| 1556 |
+
"learning_rate": 0.00010312695434646656,
|
| 1557 |
+
"loss": 0.2951,
|
| 1558 |
+
"mean_token_accuracy": 0.9261103741824627,
|
| 1559 |
+
"num_tokens": 25189369.0,
|
| 1560 |
+
"step": 1550
|
| 1561 |
+
},
|
| 1562 |
+
{
|
| 1563 |
+
"entropy": 0.3212110122665763,
|
| 1564 |
+
"epoch": 1.463496159033601,
|
| 1565 |
+
"grad_norm": 0.181640625,
|
| 1566 |
+
"learning_rate": 0.00010250156347717323,
|
| 1567 |
+
"loss": 0.3141,
|
| 1568 |
+
"mean_token_accuracy": 0.9228064101189375,
|
| 1569 |
+
"num_tokens": 25351206.0,
|
| 1570 |
+
"step": 1560
|
| 1571 |
+
},
|
| 1572 |
+
{
|
| 1573 |
+
"entropy": 0.3111924729484599,
|
| 1574 |
+
"epoch": 1.4728786723743623,
|
| 1575 |
+
"grad_norm": 0.1591796875,
|
| 1576 |
+
"learning_rate": 0.00010187617260787993,
|
| 1577 |
+
"loss": 0.3073,
|
| 1578 |
+
"mean_token_accuracy": 0.9231358967721462,
|
| 1579 |
+
"num_tokens": 25514005.0,
|
| 1580 |
+
"step": 1570
|
| 1581 |
+
},
|
| 1582 |
+
{
|
| 1583 |
+
"entropy": 0.35193296511424704,
|
| 1584 |
+
"epoch": 1.4822611857151236,
|
| 1585 |
+
"grad_norm": 0.1748046875,
|
| 1586 |
+
"learning_rate": 0.00010125078173858662,
|
| 1587 |
+
"loss": 0.3426,
|
| 1588 |
+
"mean_token_accuracy": 0.9204717528074979,
|
| 1589 |
+
"num_tokens": 25676907.0,
|
| 1590 |
+
"step": 1580
|
| 1591 |
+
},
|
| 1592 |
+
{
|
| 1593 |
+
"entropy": 0.33642219280591235,
|
| 1594 |
+
"epoch": 1.4916436990558846,
|
| 1595 |
+
"grad_norm": 0.1611328125,
|
| 1596 |
+
"learning_rate": 0.00010062539086929332,
|
| 1597 |
+
"loss": 0.3297,
|
| 1598 |
+
"mean_token_accuracy": 0.9194286223500967,
|
| 1599 |
+
"num_tokens": 25839935.0,
|
| 1600 |
+
"step": 1590
|
| 1601 |
+
},
|
| 1602 |
+
{
|
| 1603 |
+
"entropy": 0.26263106021797283,
|
| 1604 |
+
"epoch": 1.5010262123966458,
|
| 1605 |
+
"grad_norm": 0.142578125,
|
| 1606 |
+
"learning_rate": 0.0001,
|
| 1607 |
+
"loss": 0.2573,
|
| 1608 |
+
"mean_token_accuracy": 0.935544315353036,
|
| 1609 |
+
"num_tokens": 26003218.0,
|
| 1610 |
+
"step": 1600
|
| 1611 |
+
},
|
| 1612 |
+
{
|
| 1613 |
+
"entropy": 0.3122893640131224,
|
| 1614 |
+
"epoch": 1.510408725737407,
|
| 1615 |
+
"grad_norm": 0.1513671875,
|
| 1616 |
+
"learning_rate": 9.937460913070669e-05,
|
| 1617 |
+
"loss": 0.3049,
|
| 1618 |
+
"mean_token_accuracy": 0.9271042123436928,
|
| 1619 |
+
"num_tokens": 26165724.0,
|
| 1620 |
+
"step": 1610
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"entropy": 0.29348382144235075,
|
| 1624 |
+
"epoch": 1.519791239078168,
|
| 1625 |
+
"grad_norm": 0.1640625,
|
| 1626 |
+
"learning_rate": 9.874921826141339e-05,
|
| 1627 |
+
"loss": 0.2887,
|
| 1628 |
+
"mean_token_accuracy": 0.9292786654084921,
|
| 1629 |
+
"num_tokens": 26328312.0,
|
| 1630 |
+
"step": 1620
|
| 1631 |
+
},
|
| 1632 |
+
{
|
| 1633 |
+
"entropy": 0.34205422176164574,
|
| 1634 |
+
"epoch": 1.529173752418929,
|
| 1635 |
+
"grad_norm": 0.1484375,
|
| 1636 |
+
"learning_rate": 9.812382739212008e-05,
|
| 1637 |
+
"loss": 0.3353,
|
| 1638 |
+
"mean_token_accuracy": 0.9192357573658227,
|
| 1639 |
+
"num_tokens": 26490508.0,
|
| 1640 |
+
"step": 1630
|
| 1641 |
+
},
|
| 1642 |
+
{
|
| 1643 |
+
"entropy": 0.3207799144263845,
|
| 1644 |
+
"epoch": 1.5385562657596905,
|
| 1645 |
+
"grad_norm": 0.1591796875,
|
| 1646 |
+
"learning_rate": 9.749843652282678e-05,
|
| 1647 |
+
"loss": 0.3142,
|
| 1648 |
+
"mean_token_accuracy": 0.9239265900105238,
|
| 1649 |
+
"num_tokens": 26652241.0,
|
| 1650 |
+
"step": 1640
|
| 1651 |
+
},
|
| 1652 |
+
{
|
| 1653 |
+
"entropy": 0.3212417629547417,
|
| 1654 |
+
"epoch": 1.5479387791004515,
|
| 1655 |
+
"grad_norm": 0.12890625,
|
| 1656 |
+
"learning_rate": 9.687304565353346e-05,
|
| 1657 |
+
"loss": 0.3105,
|
| 1658 |
+
"mean_token_accuracy": 0.9247593119740486,
|
| 1659 |
+
"num_tokens": 26815313.0,
|
| 1660 |
+
"step": 1650
|
| 1661 |
+
},
|
| 1662 |
+
{
|
| 1663 |
+
"entropy": 0.2918511720839888,
|
| 1664 |
+
"epoch": 1.5573212924412125,
|
| 1665 |
+
"grad_norm": 0.1533203125,
|
| 1666 |
+
"learning_rate": 9.624765478424016e-05,
|
| 1667 |
+
"loss": 0.2874,
|
| 1668 |
+
"mean_token_accuracy": 0.9265463493764401,
|
| 1669 |
+
"num_tokens": 26978291.0,
|
| 1670 |
+
"step": 1660
|
| 1671 |
+
},
|
| 1672 |
+
{
|
| 1673 |
+
"entropy": 0.3887786120234523,
|
| 1674 |
+
"epoch": 1.566703805781974,
|
| 1675 |
+
"grad_norm": 0.177734375,
|
| 1676 |
+
"learning_rate": 9.562226391494684e-05,
|
| 1677 |
+
"loss": 0.3832,
|
| 1678 |
+
"mean_token_accuracy": 0.9116566512733698,
|
| 1679 |
+
"num_tokens": 27140951.0,
|
| 1680 |
+
"step": 1670
|
| 1681 |
+
},
|
| 1682 |
+
{
|
| 1683 |
+
"entropy": 0.3554312888765708,
|
| 1684 |
+
"epoch": 1.576086319122735,
|
| 1685 |
+
"grad_norm": 0.2080078125,
|
| 1686 |
+
"learning_rate": 9.499687304565354e-05,
|
| 1687 |
+
"loss": 0.3498,
|
| 1688 |
+
"mean_token_accuracy": 0.9205850351601839,
|
| 1689 |
+
"num_tokens": 27303423.0,
|
| 1690 |
+
"step": 1680
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"entropy": 0.3036960868688766,
|
| 1694 |
+
"epoch": 1.585468832463496,
|
| 1695 |
+
"grad_norm": 0.1455078125,
|
| 1696 |
+
"learning_rate": 9.437148217636022e-05,
|
| 1697 |
+
"loss": 0.2982,
|
| 1698 |
+
"mean_token_accuracy": 0.9223078574985266,
|
| 1699 |
+
"num_tokens": 27465935.0,
|
| 1700 |
+
"step": 1690
|
| 1701 |
+
},
|
| 1702 |
+
{
|
| 1703 |
+
"entropy": 0.34383984084706753,
|
| 1704 |
+
"epoch": 1.5948513458042575,
|
| 1705 |
+
"grad_norm": 0.1533203125,
|
| 1706 |
+
"learning_rate": 9.374609130706692e-05,
|
| 1707 |
+
"loss": 0.3352,
|
| 1708 |
+
"mean_token_accuracy": 0.9215784965083003,
|
| 1709 |
+
"num_tokens": 27628448.0,
|
| 1710 |
+
"step": 1700
|
| 1711 |
+
},
|
| 1712 |
+
{
|
| 1713 |
+
"entropy": 0.3477696883957833,
|
| 1714 |
+
"epoch": 1.6042338591450185,
|
| 1715 |
+
"grad_norm": 0.15234375,
|
| 1716 |
+
"learning_rate": 9.312070043777361e-05,
|
| 1717 |
+
"loss": 0.345,
|
| 1718 |
+
"mean_token_accuracy": 0.9204984463751316,
|
| 1719 |
+
"num_tokens": 27790993.0,
|
| 1720 |
+
"step": 1710
|
| 1721 |
+
},
|
| 1722 |
+
{
|
| 1723 |
+
"entropy": 0.4038438654737547,
|
| 1724 |
+
"epoch": 1.6136163724857795,
|
| 1725 |
+
"grad_norm": 0.1455078125,
|
| 1726 |
+
"learning_rate": 9.249530956848031e-05,
|
| 1727 |
+
"loss": 0.3942,
|
| 1728 |
+
"mean_token_accuracy": 0.9117133766412735,
|
| 1729 |
+
"num_tokens": 27953367.0,
|
| 1730 |
+
"step": 1720
|
| 1731 |
+
},
|
| 1732 |
+
{
|
| 1733 |
+
"entropy": 0.35322881376487203,
|
| 1734 |
+
"epoch": 1.622998885826541,
|
| 1735 |
+
"grad_norm": 0.2255859375,
|
| 1736 |
+
"learning_rate": 9.1869918699187e-05,
|
| 1737 |
+
"loss": 0.3508,
|
| 1738 |
+
"mean_token_accuracy": 0.9202003927901388,
|
| 1739 |
+
"num_tokens": 28115525.0,
|
| 1740 |
+
"step": 1730
|
| 1741 |
+
},
|
| 1742 |
+
{
|
| 1743 |
+
"entropy": 0.3633168841304723,
|
| 1744 |
+
"epoch": 1.632381399167302,
|
| 1745 |
+
"grad_norm": 0.1376953125,
|
| 1746 |
+
"learning_rate": 9.12445278298937e-05,
|
| 1747 |
+
"loss": 0.3537,
|
| 1748 |
+
"mean_token_accuracy": 0.9178501278162002,
|
| 1749 |
+
"num_tokens": 28278195.0,
|
| 1750 |
+
"step": 1740
|
| 1751 |
+
},
|
| 1752 |
+
{
|
| 1753 |
+
"entropy": 0.29921169562148864,
|
| 1754 |
+
"epoch": 1.641763912508063,
|
| 1755 |
+
"grad_norm": 0.169921875,
|
| 1756 |
+
"learning_rate": 9.061913696060038e-05,
|
| 1757 |
+
"loss": 0.2928,
|
| 1758 |
+
"mean_token_accuracy": 0.929632369056344,
|
| 1759 |
+
"num_tokens": 28441365.0,
|
| 1760 |
+
"step": 1750
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"entropy": 0.343074598867679,
|
| 1764 |
+
"epoch": 1.6511464258488242,
|
| 1765 |
+
"grad_norm": 0.1826171875,
|
| 1766 |
+
"learning_rate": 8.999374609130708e-05,
|
| 1767 |
+
"loss": 0.3418,
|
| 1768 |
+
"mean_token_accuracy": 0.9203568341210484,
|
| 1769 |
+
"num_tokens": 28604025.0,
|
| 1770 |
+
"step": 1760
|
| 1771 |
+
},
|
| 1772 |
+
{
|
| 1773 |
+
"entropy": 0.3354411284439266,
|
| 1774 |
+
"epoch": 1.6605289391895854,
|
| 1775 |
+
"grad_norm": 0.19921875,
|
| 1776 |
+
"learning_rate": 8.936835522201377e-05,
|
| 1777 |
+
"loss": 0.3247,
|
| 1778 |
+
"mean_token_accuracy": 0.9247291401028633,
|
| 1779 |
+
"num_tokens": 28766627.0,
|
| 1780 |
+
"step": 1770
|
| 1781 |
+
},
|
| 1782 |
+
{
|
| 1783 |
+
"entropy": 0.29062830022885466,
|
| 1784 |
+
"epoch": 1.6699114525303465,
|
| 1785 |
+
"grad_norm": 0.1572265625,
|
| 1786 |
+
"learning_rate": 8.874296435272045e-05,
|
| 1787 |
+
"loss": 0.2871,
|
| 1788 |
+
"mean_token_accuracy": 0.9279629901051522,
|
| 1789 |
+
"num_tokens": 28928424.0,
|
| 1790 |
+
"step": 1780
|
| 1791 |
+
},
|
| 1792 |
+
{
|
| 1793 |
+
"entropy": 0.3109960203932133,
|
| 1794 |
+
"epoch": 1.6792939658711077,
|
| 1795 |
+
"grad_norm": 0.158203125,
|
| 1796 |
+
"learning_rate": 8.811757348342715e-05,
|
| 1797 |
+
"loss": 0.3046,
|
| 1798 |
+
"mean_token_accuracy": 0.925516726821661,
|
| 1799 |
+
"num_tokens": 29090881.0,
|
| 1800 |
+
"step": 1790
|
| 1801 |
+
},
|
| 1802 |
+
{
|
| 1803 |
+
"entropy": 0.29157741767703554,
|
| 1804 |
+
"epoch": 1.688676479211869,
|
| 1805 |
+
"grad_norm": 0.1474609375,
|
| 1806 |
+
"learning_rate": 8.749218261413384e-05,
|
| 1807 |
+
"loss": 0.2872,
|
| 1808 |
+
"mean_token_accuracy": 0.9311040572822094,
|
| 1809 |
+
"num_tokens": 29253614.0,
|
| 1810 |
+
"step": 1800
|
| 1811 |
+
},
|
| 1812 |
+
{
|
| 1813 |
+
"entropy": 0.2842859643569682,
|
| 1814 |
+
"epoch": 1.69805899255263,
|
| 1815 |
+
"grad_norm": 0.19921875,
|
| 1816 |
+
"learning_rate": 8.686679174484052e-05,
|
| 1817 |
+
"loss": 0.2787,
|
| 1818 |
+
"mean_token_accuracy": 0.930610903352499,
|
| 1819 |
+
"num_tokens": 29415480.0,
|
| 1820 |
+
"step": 1810
|
| 1821 |
+
},
|
| 1822 |
+
{
|
| 1823 |
+
"entropy": 0.2779356167244259,
|
| 1824 |
+
"epoch": 1.7074415058933912,
|
| 1825 |
+
"grad_norm": 0.1865234375,
|
| 1826 |
+
"learning_rate": 8.624140087554722e-05,
|
| 1827 |
+
"loss": 0.2712,
|
| 1828 |
+
"mean_token_accuracy": 0.9308344077318906,
|
| 1829 |
+
"num_tokens": 29578036.0,
|
| 1830 |
+
"step": 1820
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"entropy": 0.318134157784516,
|
| 1834 |
+
"epoch": 1.7168240192341524,
|
| 1835 |
+
"grad_norm": 0.130859375,
|
| 1836 |
+
"learning_rate": 8.561601000625391e-05,
|
| 1837 |
+
"loss": 0.311,
|
| 1838 |
+
"mean_token_accuracy": 0.9251023806631565,
|
| 1839 |
+
"num_tokens": 29740251.0,
|
| 1840 |
+
"step": 1830
|
| 1841 |
+
},
|
| 1842 |
+
{
|
| 1843 |
+
"entropy": 0.30244565989705735,
|
| 1844 |
+
"epoch": 1.7262065325749134,
|
| 1845 |
+
"grad_norm": 0.2451171875,
|
| 1846 |
+
"learning_rate": 8.49906191369606e-05,
|
| 1847 |
+
"loss": 0.2985,
|
| 1848 |
+
"mean_token_accuracy": 0.925722798705101,
|
| 1849 |
+
"num_tokens": 29902140.0,
|
| 1850 |
+
"step": 1840
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"entropy": 0.32010520926560276,
|
| 1854 |
+
"epoch": 1.7355890459156746,
|
| 1855 |
+
"grad_norm": 0.125,
|
| 1856 |
+
"learning_rate": 8.43652282676673e-05,
|
| 1857 |
+
"loss": 0.3077,
|
| 1858 |
+
"mean_token_accuracy": 0.9267256014049053,
|
| 1859 |
+
"num_tokens": 30064277.0,
|
| 1860 |
+
"step": 1850
|
| 1861 |
+
},
|
| 1862 |
+
{
|
| 1863 |
+
"entropy": 0.2397772744880058,
|
| 1864 |
+
"epoch": 1.7449715592564359,
|
| 1865 |
+
"grad_norm": 0.123046875,
|
| 1866 |
+
"learning_rate": 8.373983739837398e-05,
|
| 1867 |
+
"loss": 0.2367,
|
| 1868 |
+
"mean_token_accuracy": 0.9358306158334017,
|
| 1869 |
+
"num_tokens": 30227035.0,
|
| 1870 |
+
"step": 1860
|
| 1871 |
+
},
|
| 1872 |
+
{
|
| 1873 |
+
"entropy": 0.2846862503385637,
|
| 1874 |
+
"epoch": 1.754354072597197,
|
| 1875 |
+
"grad_norm": 0.1630859375,
|
| 1876 |
+
"learning_rate": 8.311444652908068e-05,
|
| 1877 |
+
"loss": 0.2791,
|
| 1878 |
+
"mean_token_accuracy": 0.9296355988830328,
|
| 1879 |
+
"num_tokens": 30389480.0,
|
| 1880 |
+
"step": 1870
|
| 1881 |
+
},
|
| 1882 |
+
{
|
| 1883 |
+
"entropy": 0.3066696587542538,
|
| 1884 |
+
"epoch": 1.7637365859379581,
|
| 1885 |
+
"grad_norm": 0.2021484375,
|
| 1886 |
+
"learning_rate": 8.248905565978737e-05,
|
| 1887 |
+
"loss": 0.3006,
|
| 1888 |
+
"mean_token_accuracy": 0.9251831691712141,
|
| 1889 |
+
"num_tokens": 30552091.0,
|
| 1890 |
+
"step": 1880
|
| 1891 |
+
},
|
| 1892 |
+
{
|
| 1893 |
+
"entropy": 0.31332365355920044,
|
| 1894 |
+
"epoch": 1.7731190992787194,
|
| 1895 |
+
"grad_norm": 0.1552734375,
|
| 1896 |
+
"learning_rate": 8.186366479049407e-05,
|
| 1897 |
+
"loss": 0.3065,
|
| 1898 |
+
"mean_token_accuracy": 0.9259384579956531,
|
| 1899 |
+
"num_tokens": 30714856.0,
|
| 1900 |
+
"step": 1890
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"entropy": 0.26562274275929665,
|
| 1904 |
+
"epoch": 1.7825016126194804,
|
| 1905 |
+
"grad_norm": 0.1201171875,
|
| 1906 |
+
"learning_rate": 8.123827392120076e-05,
|
| 1907 |
+
"loss": 0.2575,
|
| 1908 |
+
"mean_token_accuracy": 0.9345466572791338,
|
| 1909 |
+
"num_tokens": 30877977.0,
|
| 1910 |
+
"step": 1900
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"entropy": 0.26213877720292655,
|
| 1914 |
+
"epoch": 1.7918841259602416,
|
| 1915 |
+
"grad_norm": 0.1396484375,
|
| 1916 |
+
"learning_rate": 8.061288305190746e-05,
|
| 1917 |
+
"loss": 0.2569,
|
| 1918 |
+
"mean_token_accuracy": 0.9343690615147352,
|
| 1919 |
+
"num_tokens": 31040248.0,
|
| 1920 |
+
"step": 1910
|
| 1921 |
+
},
|
| 1922 |
+
{
|
| 1923 |
+
"entropy": 0.31369023660663514,
|
| 1924 |
+
"epoch": 1.8012666393010028,
|
| 1925 |
+
"grad_norm": 0.1533203125,
|
| 1926 |
+
"learning_rate": 7.998749218261413e-05,
|
| 1927 |
+
"loss": 0.3079,
|
| 1928 |
+
"mean_token_accuracy": 0.9239290647208691,
|
| 1929 |
+
"num_tokens": 31202363.0,
|
| 1930 |
+
"step": 1920
|
| 1931 |
+
},
|
| 1932 |
+
{
|
| 1933 |
+
"entropy": 0.2883313969883602,
|
| 1934 |
+
"epoch": 1.8106491526417638,
|
| 1935 |
+
"grad_norm": 0.162109375,
|
| 1936 |
+
"learning_rate": 7.936210131332083e-05,
|
| 1937 |
+
"loss": 0.2846,
|
| 1938 |
+
"mean_token_accuracy": 0.9300382232293487,
|
| 1939 |
+
"num_tokens": 31365512.0,
|
| 1940 |
+
"step": 1930
|
| 1941 |
+
},
|
| 1942 |
+
{
|
| 1943 |
+
"entropy": 0.2506348692520987,
|
| 1944 |
+
"epoch": 1.820031665982525,
|
| 1945 |
+
"grad_norm": 0.171875,
|
| 1946 |
+
"learning_rate": 7.873671044402751e-05,
|
| 1947 |
+
"loss": 0.2448,
|
| 1948 |
+
"mean_token_accuracy": 0.9374226000159979,
|
| 1949 |
+
"num_tokens": 31527448.0,
|
| 1950 |
+
"step": 1940
|
| 1951 |
+
},
|
| 1952 |
+
{
|
| 1953 |
+
"entropy": 0.37234054349246437,
|
| 1954 |
+
"epoch": 1.8294141793232863,
|
| 1955 |
+
"grad_norm": 0.1572265625,
|
| 1956 |
+
"learning_rate": 7.811131957473421e-05,
|
| 1957 |
+
"loss": 0.3625,
|
| 1958 |
+
"mean_token_accuracy": 0.9161295138299466,
|
| 1959 |
+
"num_tokens": 31690266.0,
|
| 1960 |
+
"step": 1950
|
| 1961 |
+
},
|
| 1962 |
+
{
|
| 1963 |
+
"entropy": 0.30422380041563885,
|
| 1964 |
+
"epoch": 1.8387966926640473,
|
| 1965 |
+
"grad_norm": 0.193359375,
|
| 1966 |
+
"learning_rate": 7.74859287054409e-05,
|
| 1967 |
+
"loss": 0.3022,
|
| 1968 |
+
"mean_token_accuracy": 0.9249883979558945,
|
| 1969 |
+
"num_tokens": 31852062.0,
|
| 1970 |
+
"step": 1960
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"entropy": 0.28159310154733247,
|
| 1974 |
+
"epoch": 1.8481792060048086,
|
| 1975 |
+
"grad_norm": 0.12890625,
|
| 1976 |
+
"learning_rate": 7.68605378361476e-05,
|
| 1977 |
+
"loss": 0.2734,
|
| 1978 |
+
"mean_token_accuracy": 0.9310276363044977,
|
| 1979 |
+
"num_tokens": 32015366.0,
|
| 1980 |
+
"step": 1970
|
| 1981 |
+
},
|
| 1982 |
+
{
|
| 1983 |
+
"entropy": 0.34929422264685855,
|
| 1984 |
+
"epoch": 1.8575617193455698,
|
| 1985 |
+
"grad_norm": 0.134765625,
|
| 1986 |
+
"learning_rate": 7.623514696685429e-05,
|
| 1987 |
+
"loss": 0.3437,
|
| 1988 |
+
"mean_token_accuracy": 0.9215225942432881,
|
| 1989 |
+
"num_tokens": 32178520.0,
|
| 1990 |
+
"step": 1980
|
| 1991 |
+
},
|
| 1992 |
+
{
|
| 1993 |
+
"entropy": 0.3168531317904126,
|
| 1994 |
+
"epoch": 1.8669442326863308,
|
| 1995 |
+
"grad_norm": 0.1787109375,
|
| 1996 |
+
"learning_rate": 7.560975609756099e-05,
|
| 1997 |
+
"loss": 0.311,
|
| 1998 |
+
"mean_token_accuracy": 0.9265505827963352,
|
| 1999 |
+
"num_tokens": 32341136.0,
|
| 2000 |
+
"step": 1990
|
| 2001 |
+
},
|
| 2002 |
+
{
|
| 2003 |
+
"entropy": 0.34503675387823024,
|
| 2004 |
+
"epoch": 1.876326746027092,
|
| 2005 |
+
"grad_norm": 0.1337890625,
|
| 2006 |
+
"learning_rate": 7.498436522826767e-05,
|
| 2007 |
+
"loss": 0.3371,
|
| 2008 |
+
"mean_token_accuracy": 0.9186861624941229,
|
| 2009 |
+
"num_tokens": 32503824.0,
|
| 2010 |
+
"step": 2000
|
| 2011 |
+
},
|
| 2012 |
+
{
|
| 2013 |
+
"entropy": 0.3137181800149847,
|
| 2014 |
+
"epoch": 1.8857092593678533,
|
| 2015 |
+
"grad_norm": 0.12890625,
|
| 2016 |
+
"learning_rate": 7.435897435897436e-05,
|
| 2017 |
+
"loss": 0.3072,
|
| 2018 |
+
"mean_token_accuracy": 0.9252266064286232,
|
| 2019 |
+
"num_tokens": 32665961.0,
|
| 2020 |
+
"step": 2010
|
| 2021 |
+
},
|
| 2022 |
+
{
|
| 2023 |
+
"entropy": 0.3118691684619989,
|
| 2024 |
+
"epoch": 1.8950917727086143,
|
| 2025 |
+
"grad_norm": 0.1259765625,
|
| 2026 |
+
"learning_rate": 7.373358348968106e-05,
|
| 2027 |
+
"loss": 0.3092,
|
| 2028 |
+
"mean_token_accuracy": 0.9266283692792058,
|
| 2029 |
+
"num_tokens": 32828930.0,
|
| 2030 |
+
"step": 2020
|
| 2031 |
+
},
|
| 2032 |
+
{
|
| 2033 |
+
"entropy": 0.36025177109404466,
|
| 2034 |
+
"epoch": 1.9044742860493755,
|
| 2035 |
+
"grad_norm": 0.1337890625,
|
| 2036 |
+
"learning_rate": 7.310819262038774e-05,
|
| 2037 |
+
"loss": 0.3483,
|
| 2038 |
+
"mean_token_accuracy": 0.919862699508667,
|
| 2039 |
+
"num_tokens": 32991199.0,
|
| 2040 |
+
"step": 2030
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"entropy": 0.2960929194523487,
|
| 2044 |
+
"epoch": 1.9138567993901368,
|
| 2045 |
+
"grad_norm": 0.1689453125,
|
| 2046 |
+
"learning_rate": 7.248280175109444e-05,
|
| 2047 |
+
"loss": 0.2911,
|
| 2048 |
+
"mean_token_accuracy": 0.9277313150465488,
|
| 2049 |
+
"num_tokens": 33153591.0,
|
| 2050 |
+
"step": 2040
|
| 2051 |
+
},
|
| 2052 |
+
{
|
| 2053 |
+
"entropy": 0.3087802886031568,
|
| 2054 |
+
"epoch": 1.9232393127308978,
|
| 2055 |
+
"grad_norm": 0.1318359375,
|
| 2056 |
+
"learning_rate": 7.185741088180113e-05,
|
| 2057 |
+
"loss": 0.3034,
|
| 2058 |
+
"mean_token_accuracy": 0.9258704790845513,
|
| 2059 |
+
"num_tokens": 33316611.0,
|
| 2060 |
+
"step": 2050
|
| 2061 |
+
},
|
| 2062 |
+
{
|
| 2063 |
+
"entropy": 0.3371582037769258,
|
| 2064 |
+
"epoch": 1.932621826071659,
|
| 2065 |
+
"grad_norm": 0.1484375,
|
| 2066 |
+
"learning_rate": 7.123202001250782e-05,
|
| 2067 |
+
"loss": 0.3246,
|
| 2068 |
+
"mean_token_accuracy": 0.9226027946919203,
|
| 2069 |
+
"num_tokens": 33479599.0,
|
| 2070 |
+
"step": 2060
|
| 2071 |
+
},
|
| 2072 |
+
{
|
| 2073 |
+
"entropy": 0.3058539542311337,
|
| 2074 |
+
"epoch": 1.9420043394124202,
|
| 2075 |
+
"grad_norm": 0.19140625,
|
| 2076 |
+
"learning_rate": 7.06066291432145e-05,
|
| 2077 |
+
"loss": 0.3052,
|
| 2078 |
+
"mean_token_accuracy": 0.926361970603466,
|
| 2079 |
+
"num_tokens": 33642025.0,
|
| 2080 |
+
"step": 2070
|
| 2081 |
+
},
|
| 2082 |
+
{
|
| 2083 |
+
"entropy": 0.30661272021825425,
|
| 2084 |
+
"epoch": 1.9513868527531812,
|
| 2085 |
+
"grad_norm": 0.142578125,
|
| 2086 |
+
"learning_rate": 6.99812382739212e-05,
|
| 2087 |
+
"loss": 0.3019,
|
| 2088 |
+
"mean_token_accuracy": 0.9264740001410245,
|
| 2089 |
+
"num_tokens": 33804960.0,
|
| 2090 |
+
"step": 2080
|
| 2091 |
+
},
|
| 2092 |
+
{
|
| 2093 |
+
"entropy": 0.3367635572212748,
|
| 2094 |
+
"epoch": 1.9607693660939423,
|
| 2095 |
+
"grad_norm": 0.140625,
|
| 2096 |
+
"learning_rate": 6.935584740462789e-05,
|
| 2097 |
+
"loss": 0.3255,
|
| 2098 |
+
"mean_token_accuracy": 0.9226295977830887,
|
| 2099 |
+
"num_tokens": 33967617.0,
|
| 2100 |
+
"step": 2090
|
| 2101 |
+
},
|
| 2102 |
+
{
|
| 2103 |
+
"entropy": 0.30951609945041125,
|
| 2104 |
+
"epoch": 1.9701518794347037,
|
| 2105 |
+
"grad_norm": 0.1455078125,
|
| 2106 |
+
"learning_rate": 6.873045653533459e-05,
|
| 2107 |
+
"loss": 0.3099,
|
| 2108 |
+
"mean_token_accuracy": 0.9269402369856834,
|
| 2109 |
+
"num_tokens": 34130354.0,
|
| 2110 |
+
"step": 2100
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"entropy": 0.27725380276096984,
|
| 2114 |
+
"epoch": 1.9795343927754647,
|
| 2115 |
+
"grad_norm": 0.138671875,
|
| 2116 |
+
"learning_rate": 6.810506566604128e-05,
|
| 2117 |
+
"loss": 0.2718,
|
| 2118 |
+
"mean_token_accuracy": 0.9319463197141886,
|
| 2119 |
+
"num_tokens": 34292449.0,
|
| 2120 |
+
"step": 2110
|
| 2121 |
+
},
|
| 2122 |
+
{
|
| 2123 |
+
"entropy": 0.3474087182315998,
|
| 2124 |
+
"epoch": 1.9889169061162257,
|
| 2125 |
+
"grad_norm": 0.158203125,
|
| 2126 |
+
"learning_rate": 6.747967479674798e-05,
|
| 2127 |
+
"loss": 0.3388,
|
| 2128 |
+
"mean_token_accuracy": 0.918656725436449,
|
| 2129 |
+
"num_tokens": 34454991.0,
|
| 2130 |
+
"step": 2120
|
| 2131 |
+
},
|
| 2132 |
+
{
|
| 2133 |
+
"entropy": 0.3628831981972326,
|
| 2134 |
+
"epoch": 1.9982994194569872,
|
| 2135 |
+
"grad_norm": 0.1220703125,
|
| 2136 |
+
"learning_rate": 6.685428392745466e-05,
|
| 2137 |
+
"loss": 0.3612,
|
| 2138 |
+
"mean_token_accuracy": 0.9168768994510174,
|
| 2139 |
+
"num_tokens": 34617319.0,
|
| 2140 |
+
"step": 2130
|
| 2141 |
+
}
|
| 2142 |
+
],
|
| 2143 |
+
"logging_steps": 10,
|
| 2144 |
+
"max_steps": 3198,
|
| 2145 |
+
"num_input_tokens_seen": 0,
|
| 2146 |
+
"num_train_epochs": 3,
|
| 2147 |
+
"save_steps": 500,
|
| 2148 |
+
"stateful_callbacks": {
|
| 2149 |
+
"TrainerControl": {
|
| 2150 |
+
"args": {
|
| 2151 |
+
"should_epoch_stop": false,
|
| 2152 |
+
"should_evaluate": false,
|
| 2153 |
+
"should_log": false,
|
| 2154 |
+
"should_save": true,
|
| 2155 |
+
"should_training_stop": false
|
| 2156 |
+
},
|
| 2157 |
+
"attributes": {}
|
| 2158 |
+
}
|
| 2159 |
+
},
|
| 2160 |
+
"total_flos": 1.5629671685153587e+18,
|
| 2161 |
+
"train_batch_size": 1,
|
| 2162 |
+
"trial_name": null,
|
| 2163 |
+
"trial_params": null
|
| 2164 |
+
}
|
checkpoint-2132/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db83ac20cd1ea46a30b9db82ee3c07152c60e62ceb73c1d01e3725eeebe949ed
|
| 3 |
+
size 6289
|
checkpoint-3198/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: meta-llama/Llama-3.1-8B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:meta-llama/Llama-3.1-8B-Instruct
|
| 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.0
|
checkpoint-3198/adapter_config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "meta-llama/Llama-3.1-8B-Instruct",
|
| 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": 24,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"v_proj",
|
| 33 |
+
"q_proj"
|
| 34 |
+
],
|
| 35 |
+
"target_parameters": null,
|
| 36 |
+
"task_type": "CAUSAL_LM",
|
| 37 |
+
"trainable_token_indices": null,
|
| 38 |
+
"use_dora": false,
|
| 39 |
+
"use_qalora": false,
|
| 40 |
+
"use_rslora": false
|
| 41 |
+
}
|
checkpoint-3198/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b54df820ee065f28e73fabdacb2f36346384e74c2d4d07dc646ffcea458bb34
|
| 3 |
+
size 27280280
|
checkpoint-3198/chat_template.jinja
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- bos_token }}
|
| 2 |
+
{%- if custom_tools is defined %}
|
| 3 |
+
{%- set tools = custom_tools %}
|
| 4 |
+
{%- endif %}
|
| 5 |
+
{%- if not tools_in_user_message is defined %}
|
| 6 |
+
{%- set tools_in_user_message = true %}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{%- if not date_string is defined %}
|
| 9 |
+
{%- set date_string = "26 Jul 2024" %}
|
| 10 |
+
{%- endif %}
|
| 11 |
+
{%- if not tools is defined %}
|
| 12 |
+
{%- set tools = none %}
|
| 13 |
+
{%- endif %}
|
| 14 |
+
|
| 15 |
+
{#- This block extracts the system message, so we can slot it into the right place. #}
|
| 16 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 17 |
+
{%- set system_message = messages[0]['content']|trim %}
|
| 18 |
+
{%- set messages = messages[1:] %}
|
| 19 |
+
{%- else %}
|
| 20 |
+
{%- set system_message = "" %}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
|
| 23 |
+
{#- System message + builtin tools #}
|
| 24 |
+
{{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
|
| 25 |
+
{%- if builtin_tools is defined or tools is not none %}
|
| 26 |
+
{{- "Environment: ipython\n" }}
|
| 27 |
+
{%- endif %}
|
| 28 |
+
{%- if builtin_tools is defined %}
|
| 29 |
+
{{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{{- "Cutting Knowledge Date: December 2023\n" }}
|
| 32 |
+
{{- "Today Date: " + date_string + "\n\n" }}
|
| 33 |
+
{%- if tools is not none and not tools_in_user_message %}
|
| 34 |
+
{{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
|
| 35 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 36 |
+
{{- "Do not use variables.\n\n" }}
|
| 37 |
+
{%- for t in tools %}
|
| 38 |
+
{{- t | tojson(indent=4) }}
|
| 39 |
+
{{- "\n\n" }}
|
| 40 |
+
{%- endfor %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{{- system_message }}
|
| 43 |
+
{{- "<|eot_id|>" }}
|
| 44 |
+
|
| 45 |
+
{#- Custom tools are passed in a user message with some extra guidance #}
|
| 46 |
+
{%- if tools_in_user_message and not tools is none %}
|
| 47 |
+
{#- Extract the first user message so we can plug it in here #}
|
| 48 |
+
{%- if messages | length != 0 %}
|
| 49 |
+
{%- set first_user_message = messages[0]['content']|trim %}
|
| 50 |
+
{%- set messages = messages[1:] %}
|
| 51 |
+
{%- else %}
|
| 52 |
+
{{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
|
| 53 |
+
{%- endif %}
|
| 54 |
+
{{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
|
| 55 |
+
{{- "Given the following functions, please respond with a JSON for a function call " }}
|
| 56 |
+
{{- "with its proper arguments that best answers the given prompt.\n\n" }}
|
| 57 |
+
{{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
|
| 58 |
+
{{- "Do not use variables.\n\n" }}
|
| 59 |
+
{%- for t in tools %}
|
| 60 |
+
{{- t | tojson(indent=4) }}
|
| 61 |
+
{{- "\n\n" }}
|
| 62 |
+
{%- endfor %}
|
| 63 |
+
{{- first_user_message + "<|eot_id|>"}}
|
| 64 |
+
{%- endif %}
|
| 65 |
+
|
| 66 |
+
{%- for message in messages %}
|
| 67 |
+
{%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
|
| 68 |
+
{{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
|
| 69 |
+
{%- elif 'tool_calls' in message %}
|
| 70 |
+
{%- if not message.tool_calls|length == 1 %}
|
| 71 |
+
{{- raise_exception("This model only supports single tool-calls at once!") }}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{%- set tool_call = message.tool_calls[0].function %}
|
| 74 |
+
{%- if builtin_tools is defined and tool_call.name in builtin_tools %}
|
| 75 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 76 |
+
{{- "<|python_tag|>" + tool_call.name + ".call(" }}
|
| 77 |
+
{%- for arg_name, arg_val in tool_call.arguments | items %}
|
| 78 |
+
{{- arg_name + '="' + arg_val + '"' }}
|
| 79 |
+
{%- if not loop.last %}
|
| 80 |
+
{{- ", " }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endfor %}
|
| 83 |
+
{{- ")" }}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
|
| 86 |
+
{{- '{"name": "' + tool_call.name + '", ' }}
|
| 87 |
+
{{- '"parameters": ' }}
|
| 88 |
+
{{- tool_call.arguments | tojson }}
|
| 89 |
+
{{- "}" }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- if builtin_tools is defined %}
|
| 92 |
+
{#- This means we're in ipython mode #}
|
| 93 |
+
{{- "<|eom_id|>" }}
|
| 94 |
+
{%- else %}
|
| 95 |
+
{{- "<|eot_id|>" }}
|
| 96 |
+
{%- endif %}
|
| 97 |
+
{%- elif message.role == "tool" or message.role == "ipython" %}
|
| 98 |
+
{{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
|
| 99 |
+
{%- if message.content is mapping or message.content is iterable %}
|
| 100 |
+
{{- message.content | tojson }}
|
| 101 |
+
{%- else %}
|
| 102 |
+
{{- message.content }}
|
| 103 |
+
{%- endif %}
|
| 104 |
+
{{- "<|eot_id|>" }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- endfor %}
|
| 107 |
+
{%- if add_generation_prompt %}
|
| 108 |
+
{{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
|
| 109 |
+
{%- endif %}
|
checkpoint-3198/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d05a7b7fe3eb272321eac6c556d9740f72b1cf4175e604e2eab986ac48f3209
|
| 3 |
+
size 27843851
|
checkpoint-3198/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b39b2b652316a4c251bf2db9a2ea5b6349c912b5ec7083e58d3608b50dafeffe
|
| 3 |
+
size 14645
|
checkpoint-3198/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:598d66ec6c532715d17084f9d482bc685671827aa24d0b943b6aa04cee8d2c54
|
| 3 |
+
size 1465
|
checkpoint-3198/special_tokens_map.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|begin_of_text|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|eot_id|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
}
|
| 16 |
+
}
|
checkpoint-3198/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
checkpoint-3198/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2062 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"128000": {
|
| 4 |
+
"content": "<|begin_of_text|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"128001": {
|
| 12 |
+
"content": "<|end_of_text|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"128002": {
|
| 20 |
+
"content": "<|reserved_special_token_0|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"128003": {
|
| 28 |
+
"content": "<|reserved_special_token_1|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"128004": {
|
| 36 |
+
"content": "<|finetune_right_pad_id|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"128005": {
|
| 44 |
+
"content": "<|reserved_special_token_2|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"128006": {
|
| 52 |
+
"content": "<|start_header_id|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"128007": {
|
| 60 |
+
"content": "<|end_header_id|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"128008": {
|
| 68 |
+
"content": "<|eom_id|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"128009": {
|
| 76 |
+
"content": "<|eot_id|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"128010": {
|
| 84 |
+
"content": "<|python_tag|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"128011": {
|
| 92 |
+
"content": "<|reserved_special_token_3|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"128012": {
|
| 100 |
+
"content": "<|reserved_special_token_4|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"128013": {
|
| 108 |
+
"content": "<|reserved_special_token_5|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"128014": {
|
| 116 |
+
"content": "<|reserved_special_token_6|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"128015": {
|
| 124 |
+
"content": "<|reserved_special_token_7|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"128016": {
|
| 132 |
+
"content": "<|reserved_special_token_8|>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"128017": {
|
| 140 |
+
"content": "<|reserved_special_token_9|>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"128018": {
|
| 148 |
+
"content": "<|reserved_special_token_10|>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"128019": {
|
| 156 |
+
"content": "<|reserved_special_token_11|>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"128020": {
|
| 164 |
+
"content": "<|reserved_special_token_12|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"128021": {
|
| 172 |
+
"content": "<|reserved_special_token_13|>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"128022": {
|
| 180 |
+
"content": "<|reserved_special_token_14|>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"128023": {
|
| 188 |
+
"content": "<|reserved_special_token_15|>",
|
| 189 |
+
"lstrip": false,
|
| 190 |
+
"normalized": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"single_word": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"128024": {
|
| 196 |
+
"content": "<|reserved_special_token_16|>",
|
| 197 |
+
"lstrip": false,
|
| 198 |
+
"normalized": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"single_word": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"128025": {
|
| 204 |
+
"content": "<|reserved_special_token_17|>",
|
| 205 |
+
"lstrip": false,
|
| 206 |
+
"normalized": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"single_word": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"128026": {
|
| 212 |
+
"content": "<|reserved_special_token_18|>",
|
| 213 |
+
"lstrip": false,
|
| 214 |
+
"normalized": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"128027": {
|
| 220 |
+
"content": "<|reserved_special_token_19|>",
|
| 221 |
+
"lstrip": false,
|
| 222 |
+
"normalized": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"single_word": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"128028": {
|
| 228 |
+
"content": "<|reserved_special_token_20|>",
|
| 229 |
+
"lstrip": false,
|
| 230 |
+
"normalized": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"single_word": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"128029": {
|
| 236 |
+
"content": "<|reserved_special_token_21|>",
|
| 237 |
+
"lstrip": false,
|
| 238 |
+
"normalized": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"single_word": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"128030": {
|
| 244 |
+
"content": "<|reserved_special_token_22|>",
|
| 245 |
+
"lstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"single_word": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"128031": {
|
| 252 |
+
"content": "<|reserved_special_token_23|>",
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"normalized": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"single_word": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"128032": {
|
| 260 |
+
"content": "<|reserved_special_token_24|>",
|
| 261 |
+
"lstrip": false,
|
| 262 |
+
"normalized": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"single_word": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"128033": {
|
| 268 |
+
"content": "<|reserved_special_token_25|>",
|
| 269 |
+
"lstrip": false,
|
| 270 |
+
"normalized": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"single_word": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"128034": {
|
| 276 |
+
"content": "<|reserved_special_token_26|>",
|
| 277 |
+
"lstrip": false,
|
| 278 |
+
"normalized": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"single_word": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"128035": {
|
| 284 |
+
"content": "<|reserved_special_token_27|>",
|
| 285 |
+
"lstrip": false,
|
| 286 |
+
"normalized": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"128036": {
|
| 292 |
+
"content": "<|reserved_special_token_28|>",
|
| 293 |
+
"lstrip": false,
|
| 294 |
+
"normalized": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"single_word": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"128037": {
|
| 300 |
+
"content": "<|reserved_special_token_29|>",
|
| 301 |
+
"lstrip": false,
|
| 302 |
+
"normalized": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"single_word": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"128038": {
|
| 308 |
+
"content": "<|reserved_special_token_30|>",
|
| 309 |
+
"lstrip": false,
|
| 310 |
+
"normalized": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"single_word": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"128039": {
|
| 316 |
+
"content": "<|reserved_special_token_31|>",
|
| 317 |
+
"lstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"single_word": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"128040": {
|
| 324 |
+
"content": "<|reserved_special_token_32|>",
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"normalized": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"single_word": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"128041": {
|
| 332 |
+
"content": "<|reserved_special_token_33|>",
|
| 333 |
+
"lstrip": false,
|
| 334 |
+
"normalized": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"single_word": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"128042": {
|
| 340 |
+
"content": "<|reserved_special_token_34|>",
|
| 341 |
+
"lstrip": false,
|
| 342 |
+
"normalized": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"single_word": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"128043": {
|
| 348 |
+
"content": "<|reserved_special_token_35|>",
|
| 349 |
+
"lstrip": false,
|
| 350 |
+
"normalized": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"single_word": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"128044": {
|
| 356 |
+
"content": "<|reserved_special_token_36|>",
|
| 357 |
+
"lstrip": false,
|
| 358 |
+
"normalized": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"128045": {
|
| 364 |
+
"content": "<|reserved_special_token_37|>",
|
| 365 |
+
"lstrip": false,
|
| 366 |
+
"normalized": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"single_word": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"128046": {
|
| 372 |
+
"content": "<|reserved_special_token_38|>",
|
| 373 |
+
"lstrip": false,
|
| 374 |
+
"normalized": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"single_word": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"128047": {
|
| 380 |
+
"content": "<|reserved_special_token_39|>",
|
| 381 |
+
"lstrip": false,
|
| 382 |
+
"normalized": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"single_word": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"128048": {
|
| 388 |
+
"content": "<|reserved_special_token_40|>",
|
| 389 |
+
"lstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"single_word": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"128049": {
|
| 396 |
+
"content": "<|reserved_special_token_41|>",
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"normalized": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"single_word": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"128050": {
|
| 404 |
+
"content": "<|reserved_special_token_42|>",
|
| 405 |
+
"lstrip": false,
|
| 406 |
+
"normalized": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"single_word": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"128051": {
|
| 412 |
+
"content": "<|reserved_special_token_43|>",
|
| 413 |
+
"lstrip": false,
|
| 414 |
+
"normalized": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"single_word": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"128052": {
|
| 420 |
+
"content": "<|reserved_special_token_44|>",
|
| 421 |
+
"lstrip": false,
|
| 422 |
+
"normalized": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"single_word": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"128053": {
|
| 428 |
+
"content": "<|reserved_special_token_45|>",
|
| 429 |
+
"lstrip": false,
|
| 430 |
+
"normalized": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"128054": {
|
| 436 |
+
"content": "<|reserved_special_token_46|>",
|
| 437 |
+
"lstrip": false,
|
| 438 |
+
"normalized": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"single_word": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"128055": {
|
| 444 |
+
"content": "<|reserved_special_token_47|>",
|
| 445 |
+
"lstrip": false,
|
| 446 |
+
"normalized": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"single_word": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"128056": {
|
| 452 |
+
"content": "<|reserved_special_token_48|>",
|
| 453 |
+
"lstrip": false,
|
| 454 |
+
"normalized": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"single_word": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"128057": {
|
| 460 |
+
"content": "<|reserved_special_token_49|>",
|
| 461 |
+
"lstrip": false,
|
| 462 |
+
"normalized": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"single_word": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"128058": {
|
| 468 |
+
"content": "<|reserved_special_token_50|>",
|
| 469 |
+
"lstrip": false,
|
| 470 |
+
"normalized": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"single_word": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"128059": {
|
| 476 |
+
"content": "<|reserved_special_token_51|>",
|
| 477 |
+
"lstrip": false,
|
| 478 |
+
"normalized": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"single_word": false,
|
| 481 |
+
"special": true
|
| 482 |
+
},
|
| 483 |
+
"128060": {
|
| 484 |
+
"content": "<|reserved_special_token_52|>",
|
| 485 |
+
"lstrip": false,
|
| 486 |
+
"normalized": false,
|
| 487 |
+
"rstrip": false,
|
| 488 |
+
"single_word": false,
|
| 489 |
+
"special": true
|
| 490 |
+
},
|
| 491 |
+
"128061": {
|
| 492 |
+
"content": "<|reserved_special_token_53|>",
|
| 493 |
+
"lstrip": false,
|
| 494 |
+
"normalized": false,
|
| 495 |
+
"rstrip": false,
|
| 496 |
+
"single_word": false,
|
| 497 |
+
"special": true
|
| 498 |
+
},
|
| 499 |
+
"128062": {
|
| 500 |
+
"content": "<|reserved_special_token_54|>",
|
| 501 |
+
"lstrip": false,
|
| 502 |
+
"normalized": false,
|
| 503 |
+
"rstrip": false,
|
| 504 |
+
"single_word": false,
|
| 505 |
+
"special": true
|
| 506 |
+
},
|
| 507 |
+
"128063": {
|
| 508 |
+
"content": "<|reserved_special_token_55|>",
|
| 509 |
+
"lstrip": false,
|
| 510 |
+
"normalized": false,
|
| 511 |
+
"rstrip": false,
|
| 512 |
+
"single_word": false,
|
| 513 |
+
"special": true
|
| 514 |
+
},
|
| 515 |
+
"128064": {
|
| 516 |
+
"content": "<|reserved_special_token_56|>",
|
| 517 |
+
"lstrip": false,
|
| 518 |
+
"normalized": false,
|
| 519 |
+
"rstrip": false,
|
| 520 |
+
"single_word": false,
|
| 521 |
+
"special": true
|
| 522 |
+
},
|
| 523 |
+
"128065": {
|
| 524 |
+
"content": "<|reserved_special_token_57|>",
|
| 525 |
+
"lstrip": false,
|
| 526 |
+
"normalized": false,
|
| 527 |
+
"rstrip": false,
|
| 528 |
+
"single_word": false,
|
| 529 |
+
"special": true
|
| 530 |
+
},
|
| 531 |
+
"128066": {
|
| 532 |
+
"content": "<|reserved_special_token_58|>",
|
| 533 |
+
"lstrip": false,
|
| 534 |
+
"normalized": false,
|
| 535 |
+
"rstrip": false,
|
| 536 |
+
"single_word": false,
|
| 537 |
+
"special": true
|
| 538 |
+
},
|
| 539 |
+
"128067": {
|
| 540 |
+
"content": "<|reserved_special_token_59|>",
|
| 541 |
+
"lstrip": false,
|
| 542 |
+
"normalized": false,
|
| 543 |
+
"rstrip": false,
|
| 544 |
+
"single_word": false,
|
| 545 |
+
"special": true
|
| 546 |
+
},
|
| 547 |
+
"128068": {
|
| 548 |
+
"content": "<|reserved_special_token_60|>",
|
| 549 |
+
"lstrip": false,
|
| 550 |
+
"normalized": false,
|
| 551 |
+
"rstrip": false,
|
| 552 |
+
"single_word": false,
|
| 553 |
+
"special": true
|
| 554 |
+
},
|
| 555 |
+
"128069": {
|
| 556 |
+
"content": "<|reserved_special_token_61|>",
|
| 557 |
+
"lstrip": false,
|
| 558 |
+
"normalized": false,
|
| 559 |
+
"rstrip": false,
|
| 560 |
+
"single_word": false,
|
| 561 |
+
"special": true
|
| 562 |
+
},
|
| 563 |
+
"128070": {
|
| 564 |
+
"content": "<|reserved_special_token_62|>",
|
| 565 |
+
"lstrip": false,
|
| 566 |
+
"normalized": false,
|
| 567 |
+
"rstrip": false,
|
| 568 |
+
"single_word": false,
|
| 569 |
+
"special": true
|
| 570 |
+
},
|
| 571 |
+
"128071": {
|
| 572 |
+
"content": "<|reserved_special_token_63|>",
|
| 573 |
+
"lstrip": false,
|
| 574 |
+
"normalized": false,
|
| 575 |
+
"rstrip": false,
|
| 576 |
+
"single_word": false,
|
| 577 |
+
"special": true
|
| 578 |
+
},
|
| 579 |
+
"128072": {
|
| 580 |
+
"content": "<|reserved_special_token_64|>",
|
| 581 |
+
"lstrip": false,
|
| 582 |
+
"normalized": false,
|
| 583 |
+
"rstrip": false,
|
| 584 |
+
"single_word": false,
|
| 585 |
+
"special": true
|
| 586 |
+
},
|
| 587 |
+
"128073": {
|
| 588 |
+
"content": "<|reserved_special_token_65|>",
|
| 589 |
+
"lstrip": false,
|
| 590 |
+
"normalized": false,
|
| 591 |
+
"rstrip": false,
|
| 592 |
+
"single_word": false,
|
| 593 |
+
"special": true
|
| 594 |
+
},
|
| 595 |
+
"128074": {
|
| 596 |
+
"content": "<|reserved_special_token_66|>",
|
| 597 |
+
"lstrip": false,
|
| 598 |
+
"normalized": false,
|
| 599 |
+
"rstrip": false,
|
| 600 |
+
"single_word": false,
|
| 601 |
+
"special": true
|
| 602 |
+
},
|
| 603 |
+
"128075": {
|
| 604 |
+
"content": "<|reserved_special_token_67|>",
|
| 605 |
+
"lstrip": false,
|
| 606 |
+
"normalized": false,
|
| 607 |
+
"rstrip": false,
|
| 608 |
+
"single_word": false,
|
| 609 |
+
"special": true
|
| 610 |
+
},
|
| 611 |
+
"128076": {
|
| 612 |
+
"content": "<|reserved_special_token_68|>",
|
| 613 |
+
"lstrip": false,
|
| 614 |
+
"normalized": false,
|
| 615 |
+
"rstrip": false,
|
| 616 |
+
"single_word": false,
|
| 617 |
+
"special": true
|
| 618 |
+
},
|
| 619 |
+
"128077": {
|
| 620 |
+
"content": "<|reserved_special_token_69|>",
|
| 621 |
+
"lstrip": false,
|
| 622 |
+
"normalized": false,
|
| 623 |
+
"rstrip": false,
|
| 624 |
+
"single_word": false,
|
| 625 |
+
"special": true
|
| 626 |
+
},
|
| 627 |
+
"128078": {
|
| 628 |
+
"content": "<|reserved_special_token_70|>",
|
| 629 |
+
"lstrip": false,
|
| 630 |
+
"normalized": false,
|
| 631 |
+
"rstrip": false,
|
| 632 |
+
"single_word": false,
|
| 633 |
+
"special": true
|
| 634 |
+
},
|
| 635 |
+
"128079": {
|
| 636 |
+
"content": "<|reserved_special_token_71|>",
|
| 637 |
+
"lstrip": false,
|
| 638 |
+
"normalized": false,
|
| 639 |
+
"rstrip": false,
|
| 640 |
+
"single_word": false,
|
| 641 |
+
"special": true
|
| 642 |
+
},
|
| 643 |
+
"128080": {
|
| 644 |
+
"content": "<|reserved_special_token_72|>",
|
| 645 |
+
"lstrip": false,
|
| 646 |
+
"normalized": false,
|
| 647 |
+
"rstrip": false,
|
| 648 |
+
"single_word": false,
|
| 649 |
+
"special": true
|
| 650 |
+
},
|
| 651 |
+
"128081": {
|
| 652 |
+
"content": "<|reserved_special_token_73|>",
|
| 653 |
+
"lstrip": false,
|
| 654 |
+
"normalized": false,
|
| 655 |
+
"rstrip": false,
|
| 656 |
+
"single_word": false,
|
| 657 |
+
"special": true
|
| 658 |
+
},
|
| 659 |
+
"128082": {
|
| 660 |
+
"content": "<|reserved_special_token_74|>",
|
| 661 |
+
"lstrip": false,
|
| 662 |
+
"normalized": false,
|
| 663 |
+
"rstrip": false,
|
| 664 |
+
"single_word": false,
|
| 665 |
+
"special": true
|
| 666 |
+
},
|
| 667 |
+
"128083": {
|
| 668 |
+
"content": "<|reserved_special_token_75|>",
|
| 669 |
+
"lstrip": false,
|
| 670 |
+
"normalized": false,
|
| 671 |
+
"rstrip": false,
|
| 672 |
+
"single_word": false,
|
| 673 |
+
"special": true
|
| 674 |
+
},
|
| 675 |
+
"128084": {
|
| 676 |
+
"content": "<|reserved_special_token_76|>",
|
| 677 |
+
"lstrip": false,
|
| 678 |
+
"normalized": false,
|
| 679 |
+
"rstrip": false,
|
| 680 |
+
"single_word": false,
|
| 681 |
+
"special": true
|
| 682 |
+
},
|
| 683 |
+
"128085": {
|
| 684 |
+
"content": "<|reserved_special_token_77|>",
|
| 685 |
+
"lstrip": false,
|
| 686 |
+
"normalized": false,
|
| 687 |
+
"rstrip": false,
|
| 688 |
+
"single_word": false,
|
| 689 |
+
"special": true
|
| 690 |
+
},
|
| 691 |
+
"128086": {
|
| 692 |
+
"content": "<|reserved_special_token_78|>",
|
| 693 |
+
"lstrip": false,
|
| 694 |
+
"normalized": false,
|
| 695 |
+
"rstrip": false,
|
| 696 |
+
"single_word": false,
|
| 697 |
+
"special": true
|
| 698 |
+
},
|
| 699 |
+
"128087": {
|
| 700 |
+
"content": "<|reserved_special_token_79|>",
|
| 701 |
+
"lstrip": false,
|
| 702 |
+
"normalized": false,
|
| 703 |
+
"rstrip": false,
|
| 704 |
+
"single_word": false,
|
| 705 |
+
"special": true
|
| 706 |
+
},
|
| 707 |
+
"128088": {
|
| 708 |
+
"content": "<|reserved_special_token_80|>",
|
| 709 |
+
"lstrip": false,
|
| 710 |
+
"normalized": false,
|
| 711 |
+
"rstrip": false,
|
| 712 |
+
"single_word": false,
|
| 713 |
+
"special": true
|
| 714 |
+
},
|
| 715 |
+
"128089": {
|
| 716 |
+
"content": "<|reserved_special_token_81|>",
|
| 717 |
+
"lstrip": false,
|
| 718 |
+
"normalized": false,
|
| 719 |
+
"rstrip": false,
|
| 720 |
+
"single_word": false,
|
| 721 |
+
"special": true
|
| 722 |
+
},
|
| 723 |
+
"128090": {
|
| 724 |
+
"content": "<|reserved_special_token_82|>",
|
| 725 |
+
"lstrip": false,
|
| 726 |
+
"normalized": false,
|
| 727 |
+
"rstrip": false,
|
| 728 |
+
"single_word": false,
|
| 729 |
+
"special": true
|
| 730 |
+
},
|
| 731 |
+
"128091": {
|
| 732 |
+
"content": "<|reserved_special_token_83|>",
|
| 733 |
+
"lstrip": false,
|
| 734 |
+
"normalized": false,
|
| 735 |
+
"rstrip": false,
|
| 736 |
+
"single_word": false,
|
| 737 |
+
"special": true
|
| 738 |
+
},
|
| 739 |
+
"128092": {
|
| 740 |
+
"content": "<|reserved_special_token_84|>",
|
| 741 |
+
"lstrip": false,
|
| 742 |
+
"normalized": false,
|
| 743 |
+
"rstrip": false,
|
| 744 |
+
"single_word": false,
|
| 745 |
+
"special": true
|
| 746 |
+
},
|
| 747 |
+
"128093": {
|
| 748 |
+
"content": "<|reserved_special_token_85|>",
|
| 749 |
+
"lstrip": false,
|
| 750 |
+
"normalized": false,
|
| 751 |
+
"rstrip": false,
|
| 752 |
+
"single_word": false,
|
| 753 |
+
"special": true
|
| 754 |
+
},
|
| 755 |
+
"128094": {
|
| 756 |
+
"content": "<|reserved_special_token_86|>",
|
| 757 |
+
"lstrip": false,
|
| 758 |
+
"normalized": false,
|
| 759 |
+
"rstrip": false,
|
| 760 |
+
"single_word": false,
|
| 761 |
+
"special": true
|
| 762 |
+
},
|
| 763 |
+
"128095": {
|
| 764 |
+
"content": "<|reserved_special_token_87|>",
|
| 765 |
+
"lstrip": false,
|
| 766 |
+
"normalized": false,
|
| 767 |
+
"rstrip": false,
|
| 768 |
+
"single_word": false,
|
| 769 |
+
"special": true
|
| 770 |
+
},
|
| 771 |
+
"128096": {
|
| 772 |
+
"content": "<|reserved_special_token_88|>",
|
| 773 |
+
"lstrip": false,
|
| 774 |
+
"normalized": false,
|
| 775 |
+
"rstrip": false,
|
| 776 |
+
"single_word": false,
|
| 777 |
+
"special": true
|
| 778 |
+
},
|
| 779 |
+
"128097": {
|
| 780 |
+
"content": "<|reserved_special_token_89|>",
|
| 781 |
+
"lstrip": false,
|
| 782 |
+
"normalized": false,
|
| 783 |
+
"rstrip": false,
|
| 784 |
+
"single_word": false,
|
| 785 |
+
"special": true
|
| 786 |
+
},
|
| 787 |
+
"128098": {
|
| 788 |
+
"content": "<|reserved_special_token_90|>",
|
| 789 |
+
"lstrip": false,
|
| 790 |
+
"normalized": false,
|
| 791 |
+
"rstrip": false,
|
| 792 |
+
"single_word": false,
|
| 793 |
+
"special": true
|
| 794 |
+
},
|
| 795 |
+
"128099": {
|
| 796 |
+
"content": "<|reserved_special_token_91|>",
|
| 797 |
+
"lstrip": false,
|
| 798 |
+
"normalized": false,
|
| 799 |
+
"rstrip": false,
|
| 800 |
+
"single_word": false,
|
| 801 |
+
"special": true
|
| 802 |
+
},
|
| 803 |
+
"128100": {
|
| 804 |
+
"content": "<|reserved_special_token_92|>",
|
| 805 |
+
"lstrip": false,
|
| 806 |
+
"normalized": false,
|
| 807 |
+
"rstrip": false,
|
| 808 |
+
"single_word": false,
|
| 809 |
+
"special": true
|
| 810 |
+
},
|
| 811 |
+
"128101": {
|
| 812 |
+
"content": "<|reserved_special_token_93|>",
|
| 813 |
+
"lstrip": false,
|
| 814 |
+
"normalized": false,
|
| 815 |
+
"rstrip": false,
|
| 816 |
+
"single_word": false,
|
| 817 |
+
"special": true
|
| 818 |
+
},
|
| 819 |
+
"128102": {
|
| 820 |
+
"content": "<|reserved_special_token_94|>",
|
| 821 |
+
"lstrip": false,
|
| 822 |
+
"normalized": false,
|
| 823 |
+
"rstrip": false,
|
| 824 |
+
"single_word": false,
|
| 825 |
+
"special": true
|
| 826 |
+
},
|
| 827 |
+
"128103": {
|
| 828 |
+
"content": "<|reserved_special_token_95|>",
|
| 829 |
+
"lstrip": false,
|
| 830 |
+
"normalized": false,
|
| 831 |
+
"rstrip": false,
|
| 832 |
+
"single_word": false,
|
| 833 |
+
"special": true
|
| 834 |
+
},
|
| 835 |
+
"128104": {
|
| 836 |
+
"content": "<|reserved_special_token_96|>",
|
| 837 |
+
"lstrip": false,
|
| 838 |
+
"normalized": false,
|
| 839 |
+
"rstrip": false,
|
| 840 |
+
"single_word": false,
|
| 841 |
+
"special": true
|
| 842 |
+
},
|
| 843 |
+
"128105": {
|
| 844 |
+
"content": "<|reserved_special_token_97|>",
|
| 845 |
+
"lstrip": false,
|
| 846 |
+
"normalized": false,
|
| 847 |
+
"rstrip": false,
|
| 848 |
+
"single_word": false,
|
| 849 |
+
"special": true
|
| 850 |
+
},
|
| 851 |
+
"128106": {
|
| 852 |
+
"content": "<|reserved_special_token_98|>",
|
| 853 |
+
"lstrip": false,
|
| 854 |
+
"normalized": false,
|
| 855 |
+
"rstrip": false,
|
| 856 |
+
"single_word": false,
|
| 857 |
+
"special": true
|
| 858 |
+
},
|
| 859 |
+
"128107": {
|
| 860 |
+
"content": "<|reserved_special_token_99|>",
|
| 861 |
+
"lstrip": false,
|
| 862 |
+
"normalized": false,
|
| 863 |
+
"rstrip": false,
|
| 864 |
+
"single_word": false,
|
| 865 |
+
"special": true
|
| 866 |
+
},
|
| 867 |
+
"128108": {
|
| 868 |
+
"content": "<|reserved_special_token_100|>",
|
| 869 |
+
"lstrip": false,
|
| 870 |
+
"normalized": false,
|
| 871 |
+
"rstrip": false,
|
| 872 |
+
"single_word": false,
|
| 873 |
+
"special": true
|
| 874 |
+
},
|
| 875 |
+
"128109": {
|
| 876 |
+
"content": "<|reserved_special_token_101|>",
|
| 877 |
+
"lstrip": false,
|
| 878 |
+
"normalized": false,
|
| 879 |
+
"rstrip": false,
|
| 880 |
+
"single_word": false,
|
| 881 |
+
"special": true
|
| 882 |
+
},
|
| 883 |
+
"128110": {
|
| 884 |
+
"content": "<|reserved_special_token_102|>",
|
| 885 |
+
"lstrip": false,
|
| 886 |
+
"normalized": false,
|
| 887 |
+
"rstrip": false,
|
| 888 |
+
"single_word": false,
|
| 889 |
+
"special": true
|
| 890 |
+
},
|
| 891 |
+
"128111": {
|
| 892 |
+
"content": "<|reserved_special_token_103|>",
|
| 893 |
+
"lstrip": false,
|
| 894 |
+
"normalized": false,
|
| 895 |
+
"rstrip": false,
|
| 896 |
+
"single_word": false,
|
| 897 |
+
"special": true
|
| 898 |
+
},
|
| 899 |
+
"128112": {
|
| 900 |
+
"content": "<|reserved_special_token_104|>",
|
| 901 |
+
"lstrip": false,
|
| 902 |
+
"normalized": false,
|
| 903 |
+
"rstrip": false,
|
| 904 |
+
"single_word": false,
|
| 905 |
+
"special": true
|
| 906 |
+
},
|
| 907 |
+
"128113": {
|
| 908 |
+
"content": "<|reserved_special_token_105|>",
|
| 909 |
+
"lstrip": false,
|
| 910 |
+
"normalized": false,
|
| 911 |
+
"rstrip": false,
|
| 912 |
+
"single_word": false,
|
| 913 |
+
"special": true
|
| 914 |
+
},
|
| 915 |
+
"128114": {
|
| 916 |
+
"content": "<|reserved_special_token_106|>",
|
| 917 |
+
"lstrip": false,
|
| 918 |
+
"normalized": false,
|
| 919 |
+
"rstrip": false,
|
| 920 |
+
"single_word": false,
|
| 921 |
+
"special": true
|
| 922 |
+
},
|
| 923 |
+
"128115": {
|
| 924 |
+
"content": "<|reserved_special_token_107|>",
|
| 925 |
+
"lstrip": false,
|
| 926 |
+
"normalized": false,
|
| 927 |
+
"rstrip": false,
|
| 928 |
+
"single_word": false,
|
| 929 |
+
"special": true
|
| 930 |
+
},
|
| 931 |
+
"128116": {
|
| 932 |
+
"content": "<|reserved_special_token_108|>",
|
| 933 |
+
"lstrip": false,
|
| 934 |
+
"normalized": false,
|
| 935 |
+
"rstrip": false,
|
| 936 |
+
"single_word": false,
|
| 937 |
+
"special": true
|
| 938 |
+
},
|
| 939 |
+
"128117": {
|
| 940 |
+
"content": "<|reserved_special_token_109|>",
|
| 941 |
+
"lstrip": false,
|
| 942 |
+
"normalized": false,
|
| 943 |
+
"rstrip": false,
|
| 944 |
+
"single_word": false,
|
| 945 |
+
"special": true
|
| 946 |
+
},
|
| 947 |
+
"128118": {
|
| 948 |
+
"content": "<|reserved_special_token_110|>",
|
| 949 |
+
"lstrip": false,
|
| 950 |
+
"normalized": false,
|
| 951 |
+
"rstrip": false,
|
| 952 |
+
"single_word": false,
|
| 953 |
+
"special": true
|
| 954 |
+
},
|
| 955 |
+
"128119": {
|
| 956 |
+
"content": "<|reserved_special_token_111|>",
|
| 957 |
+
"lstrip": false,
|
| 958 |
+
"normalized": false,
|
| 959 |
+
"rstrip": false,
|
| 960 |
+
"single_word": false,
|
| 961 |
+
"special": true
|
| 962 |
+
},
|
| 963 |
+
"128120": {
|
| 964 |
+
"content": "<|reserved_special_token_112|>",
|
| 965 |
+
"lstrip": false,
|
| 966 |
+
"normalized": false,
|
| 967 |
+
"rstrip": false,
|
| 968 |
+
"single_word": false,
|
| 969 |
+
"special": true
|
| 970 |
+
},
|
| 971 |
+
"128121": {
|
| 972 |
+
"content": "<|reserved_special_token_113|>",
|
| 973 |
+
"lstrip": false,
|
| 974 |
+
"normalized": false,
|
| 975 |
+
"rstrip": false,
|
| 976 |
+
"single_word": false,
|
| 977 |
+
"special": true
|
| 978 |
+
},
|
| 979 |
+
"128122": {
|
| 980 |
+
"content": "<|reserved_special_token_114|>",
|
| 981 |
+
"lstrip": false,
|
| 982 |
+
"normalized": false,
|
| 983 |
+
"rstrip": false,
|
| 984 |
+
"single_word": false,
|
| 985 |
+
"special": true
|
| 986 |
+
},
|
| 987 |
+
"128123": {
|
| 988 |
+
"content": "<|reserved_special_token_115|>",
|
| 989 |
+
"lstrip": false,
|
| 990 |
+
"normalized": false,
|
| 991 |
+
"rstrip": false,
|
| 992 |
+
"single_word": false,
|
| 993 |
+
"special": true
|
| 994 |
+
},
|
| 995 |
+
"128124": {
|
| 996 |
+
"content": "<|reserved_special_token_116|>",
|
| 997 |
+
"lstrip": false,
|
| 998 |
+
"normalized": false,
|
| 999 |
+
"rstrip": false,
|
| 1000 |
+
"single_word": false,
|
| 1001 |
+
"special": true
|
| 1002 |
+
},
|
| 1003 |
+
"128125": {
|
| 1004 |
+
"content": "<|reserved_special_token_117|>",
|
| 1005 |
+
"lstrip": false,
|
| 1006 |
+
"normalized": false,
|
| 1007 |
+
"rstrip": false,
|
| 1008 |
+
"single_word": false,
|
| 1009 |
+
"special": true
|
| 1010 |
+
},
|
| 1011 |
+
"128126": {
|
| 1012 |
+
"content": "<|reserved_special_token_118|>",
|
| 1013 |
+
"lstrip": false,
|
| 1014 |
+
"normalized": false,
|
| 1015 |
+
"rstrip": false,
|
| 1016 |
+
"single_word": false,
|
| 1017 |
+
"special": true
|
| 1018 |
+
},
|
| 1019 |
+
"128127": {
|
| 1020 |
+
"content": "<|reserved_special_token_119|>",
|
| 1021 |
+
"lstrip": false,
|
| 1022 |
+
"normalized": false,
|
| 1023 |
+
"rstrip": false,
|
| 1024 |
+
"single_word": false,
|
| 1025 |
+
"special": true
|
| 1026 |
+
},
|
| 1027 |
+
"128128": {
|
| 1028 |
+
"content": "<|reserved_special_token_120|>",
|
| 1029 |
+
"lstrip": false,
|
| 1030 |
+
"normalized": false,
|
| 1031 |
+
"rstrip": false,
|
| 1032 |
+
"single_word": false,
|
| 1033 |
+
"special": true
|
| 1034 |
+
},
|
| 1035 |
+
"128129": {
|
| 1036 |
+
"content": "<|reserved_special_token_121|>",
|
| 1037 |
+
"lstrip": false,
|
| 1038 |
+
"normalized": false,
|
| 1039 |
+
"rstrip": false,
|
| 1040 |
+
"single_word": false,
|
| 1041 |
+
"special": true
|
| 1042 |
+
},
|
| 1043 |
+
"128130": {
|
| 1044 |
+
"content": "<|reserved_special_token_122|>",
|
| 1045 |
+
"lstrip": false,
|
| 1046 |
+
"normalized": false,
|
| 1047 |
+
"rstrip": false,
|
| 1048 |
+
"single_word": false,
|
| 1049 |
+
"special": true
|
| 1050 |
+
},
|
| 1051 |
+
"128131": {
|
| 1052 |
+
"content": "<|reserved_special_token_123|>",
|
| 1053 |
+
"lstrip": false,
|
| 1054 |
+
"normalized": false,
|
| 1055 |
+
"rstrip": false,
|
| 1056 |
+
"single_word": false,
|
| 1057 |
+
"special": true
|
| 1058 |
+
},
|
| 1059 |
+
"128132": {
|
| 1060 |
+
"content": "<|reserved_special_token_124|>",
|
| 1061 |
+
"lstrip": false,
|
| 1062 |
+
"normalized": false,
|
| 1063 |
+
"rstrip": false,
|
| 1064 |
+
"single_word": false,
|
| 1065 |
+
"special": true
|
| 1066 |
+
},
|
| 1067 |
+
"128133": {
|
| 1068 |
+
"content": "<|reserved_special_token_125|>",
|
| 1069 |
+
"lstrip": false,
|
| 1070 |
+
"normalized": false,
|
| 1071 |
+
"rstrip": false,
|
| 1072 |
+
"single_word": false,
|
| 1073 |
+
"special": true
|
| 1074 |
+
},
|
| 1075 |
+
"128134": {
|
| 1076 |
+
"content": "<|reserved_special_token_126|>",
|
| 1077 |
+
"lstrip": false,
|
| 1078 |
+
"normalized": false,
|
| 1079 |
+
"rstrip": false,
|
| 1080 |
+
"single_word": false,
|
| 1081 |
+
"special": true
|
| 1082 |
+
},
|
| 1083 |
+
"128135": {
|
| 1084 |
+
"content": "<|reserved_special_token_127|>",
|
| 1085 |
+
"lstrip": false,
|
| 1086 |
+
"normalized": false,
|
| 1087 |
+
"rstrip": false,
|
| 1088 |
+
"single_word": false,
|
| 1089 |
+
"special": true
|
| 1090 |
+
},
|
| 1091 |
+
"128136": {
|
| 1092 |
+
"content": "<|reserved_special_token_128|>",
|
| 1093 |
+
"lstrip": false,
|
| 1094 |
+
"normalized": false,
|
| 1095 |
+
"rstrip": false,
|
| 1096 |
+
"single_word": false,
|
| 1097 |
+
"special": true
|
| 1098 |
+
},
|
| 1099 |
+
"128137": {
|
| 1100 |
+
"content": "<|reserved_special_token_129|>",
|
| 1101 |
+
"lstrip": false,
|
| 1102 |
+
"normalized": false,
|
| 1103 |
+
"rstrip": false,
|
| 1104 |
+
"single_word": false,
|
| 1105 |
+
"special": true
|
| 1106 |
+
},
|
| 1107 |
+
"128138": {
|
| 1108 |
+
"content": "<|reserved_special_token_130|>",
|
| 1109 |
+
"lstrip": false,
|
| 1110 |
+
"normalized": false,
|
| 1111 |
+
"rstrip": false,
|
| 1112 |
+
"single_word": false,
|
| 1113 |
+
"special": true
|
| 1114 |
+
},
|
| 1115 |
+
"128139": {
|
| 1116 |
+
"content": "<|reserved_special_token_131|>",
|
| 1117 |
+
"lstrip": false,
|
| 1118 |
+
"normalized": false,
|
| 1119 |
+
"rstrip": false,
|
| 1120 |
+
"single_word": false,
|
| 1121 |
+
"special": true
|
| 1122 |
+
},
|
| 1123 |
+
"128140": {
|
| 1124 |
+
"content": "<|reserved_special_token_132|>",
|
| 1125 |
+
"lstrip": false,
|
| 1126 |
+
"normalized": false,
|
| 1127 |
+
"rstrip": false,
|
| 1128 |
+
"single_word": false,
|
| 1129 |
+
"special": true
|
| 1130 |
+
},
|
| 1131 |
+
"128141": {
|
| 1132 |
+
"content": "<|reserved_special_token_133|>",
|
| 1133 |
+
"lstrip": false,
|
| 1134 |
+
"normalized": false,
|
| 1135 |
+
"rstrip": false,
|
| 1136 |
+
"single_word": false,
|
| 1137 |
+
"special": true
|
| 1138 |
+
},
|
| 1139 |
+
"128142": {
|
| 1140 |
+
"content": "<|reserved_special_token_134|>",
|
| 1141 |
+
"lstrip": false,
|
| 1142 |
+
"normalized": false,
|
| 1143 |
+
"rstrip": false,
|
| 1144 |
+
"single_word": false,
|
| 1145 |
+
"special": true
|
| 1146 |
+
},
|
| 1147 |
+
"128143": {
|
| 1148 |
+
"content": "<|reserved_special_token_135|>",
|
| 1149 |
+
"lstrip": false,
|
| 1150 |
+
"normalized": false,
|
| 1151 |
+
"rstrip": false,
|
| 1152 |
+
"single_word": false,
|
| 1153 |
+
"special": true
|
| 1154 |
+
},
|
| 1155 |
+
"128144": {
|
| 1156 |
+
"content": "<|reserved_special_token_136|>",
|
| 1157 |
+
"lstrip": false,
|
| 1158 |
+
"normalized": false,
|
| 1159 |
+
"rstrip": false,
|
| 1160 |
+
"single_word": false,
|
| 1161 |
+
"special": true
|
| 1162 |
+
},
|
| 1163 |
+
"128145": {
|
| 1164 |
+
"content": "<|reserved_special_token_137|>",
|
| 1165 |
+
"lstrip": false,
|
| 1166 |
+
"normalized": false,
|
| 1167 |
+
"rstrip": false,
|
| 1168 |
+
"single_word": false,
|
| 1169 |
+
"special": true
|
| 1170 |
+
},
|
| 1171 |
+
"128146": {
|
| 1172 |
+
"content": "<|reserved_special_token_138|>",
|
| 1173 |
+
"lstrip": false,
|
| 1174 |
+
"normalized": false,
|
| 1175 |
+
"rstrip": false,
|
| 1176 |
+
"single_word": false,
|
| 1177 |
+
"special": true
|
| 1178 |
+
},
|
| 1179 |
+
"128147": {
|
| 1180 |
+
"content": "<|reserved_special_token_139|>",
|
| 1181 |
+
"lstrip": false,
|
| 1182 |
+
"normalized": false,
|
| 1183 |
+
"rstrip": false,
|
| 1184 |
+
"single_word": false,
|
| 1185 |
+
"special": true
|
| 1186 |
+
},
|
| 1187 |
+
"128148": {
|
| 1188 |
+
"content": "<|reserved_special_token_140|>",
|
| 1189 |
+
"lstrip": false,
|
| 1190 |
+
"normalized": false,
|
| 1191 |
+
"rstrip": false,
|
| 1192 |
+
"single_word": false,
|
| 1193 |
+
"special": true
|
| 1194 |
+
},
|
| 1195 |
+
"128149": {
|
| 1196 |
+
"content": "<|reserved_special_token_141|>",
|
| 1197 |
+
"lstrip": false,
|
| 1198 |
+
"normalized": false,
|
| 1199 |
+
"rstrip": false,
|
| 1200 |
+
"single_word": false,
|
| 1201 |
+
"special": true
|
| 1202 |
+
},
|
| 1203 |
+
"128150": {
|
| 1204 |
+
"content": "<|reserved_special_token_142|>",
|
| 1205 |
+
"lstrip": false,
|
| 1206 |
+
"normalized": false,
|
| 1207 |
+
"rstrip": false,
|
| 1208 |
+
"single_word": false,
|
| 1209 |
+
"special": true
|
| 1210 |
+
},
|
| 1211 |
+
"128151": {
|
| 1212 |
+
"content": "<|reserved_special_token_143|>",
|
| 1213 |
+
"lstrip": false,
|
| 1214 |
+
"normalized": false,
|
| 1215 |
+
"rstrip": false,
|
| 1216 |
+
"single_word": false,
|
| 1217 |
+
"special": true
|
| 1218 |
+
},
|
| 1219 |
+
"128152": {
|
| 1220 |
+
"content": "<|reserved_special_token_144|>",
|
| 1221 |
+
"lstrip": false,
|
| 1222 |
+
"normalized": false,
|
| 1223 |
+
"rstrip": false,
|
| 1224 |
+
"single_word": false,
|
| 1225 |
+
"special": true
|
| 1226 |
+
},
|
| 1227 |
+
"128153": {
|
| 1228 |
+
"content": "<|reserved_special_token_145|>",
|
| 1229 |
+
"lstrip": false,
|
| 1230 |
+
"normalized": false,
|
| 1231 |
+
"rstrip": false,
|
| 1232 |
+
"single_word": false,
|
| 1233 |
+
"special": true
|
| 1234 |
+
},
|
| 1235 |
+
"128154": {
|
| 1236 |
+
"content": "<|reserved_special_token_146|>",
|
| 1237 |
+
"lstrip": false,
|
| 1238 |
+
"normalized": false,
|
| 1239 |
+
"rstrip": false,
|
| 1240 |
+
"single_word": false,
|
| 1241 |
+
"special": true
|
| 1242 |
+
},
|
| 1243 |
+
"128155": {
|
| 1244 |
+
"content": "<|reserved_special_token_147|>",
|
| 1245 |
+
"lstrip": false,
|
| 1246 |
+
"normalized": false,
|
| 1247 |
+
"rstrip": false,
|
| 1248 |
+
"single_word": false,
|
| 1249 |
+
"special": true
|
| 1250 |
+
},
|
| 1251 |
+
"128156": {
|
| 1252 |
+
"content": "<|reserved_special_token_148|>",
|
| 1253 |
+
"lstrip": false,
|
| 1254 |
+
"normalized": false,
|
| 1255 |
+
"rstrip": false,
|
| 1256 |
+
"single_word": false,
|
| 1257 |
+
"special": true
|
| 1258 |
+
},
|
| 1259 |
+
"128157": {
|
| 1260 |
+
"content": "<|reserved_special_token_149|>",
|
| 1261 |
+
"lstrip": false,
|
| 1262 |
+
"normalized": false,
|
| 1263 |
+
"rstrip": false,
|
| 1264 |
+
"single_word": false,
|
| 1265 |
+
"special": true
|
| 1266 |
+
},
|
| 1267 |
+
"128158": {
|
| 1268 |
+
"content": "<|reserved_special_token_150|>",
|
| 1269 |
+
"lstrip": false,
|
| 1270 |
+
"normalized": false,
|
| 1271 |
+
"rstrip": false,
|
| 1272 |
+
"single_word": false,
|
| 1273 |
+
"special": true
|
| 1274 |
+
},
|
| 1275 |
+
"128159": {
|
| 1276 |
+
"content": "<|reserved_special_token_151|>",
|
| 1277 |
+
"lstrip": false,
|
| 1278 |
+
"normalized": false,
|
| 1279 |
+
"rstrip": false,
|
| 1280 |
+
"single_word": false,
|
| 1281 |
+
"special": true
|
| 1282 |
+
},
|
| 1283 |
+
"128160": {
|
| 1284 |
+
"content": "<|reserved_special_token_152|>",
|
| 1285 |
+
"lstrip": false,
|
| 1286 |
+
"normalized": false,
|
| 1287 |
+
"rstrip": false,
|
| 1288 |
+
"single_word": false,
|
| 1289 |
+
"special": true
|
| 1290 |
+
},
|
| 1291 |
+
"128161": {
|
| 1292 |
+
"content": "<|reserved_special_token_153|>",
|
| 1293 |
+
"lstrip": false,
|
| 1294 |
+
"normalized": false,
|
| 1295 |
+
"rstrip": false,
|
| 1296 |
+
"single_word": false,
|
| 1297 |
+
"special": true
|
| 1298 |
+
},
|
| 1299 |
+
"128162": {
|
| 1300 |
+
"content": "<|reserved_special_token_154|>",
|
| 1301 |
+
"lstrip": false,
|
| 1302 |
+
"normalized": false,
|
| 1303 |
+
"rstrip": false,
|
| 1304 |
+
"single_word": false,
|
| 1305 |
+
"special": true
|
| 1306 |
+
},
|
| 1307 |
+
"128163": {
|
| 1308 |
+
"content": "<|reserved_special_token_155|>",
|
| 1309 |
+
"lstrip": false,
|
| 1310 |
+
"normalized": false,
|
| 1311 |
+
"rstrip": false,
|
| 1312 |
+
"single_word": false,
|
| 1313 |
+
"special": true
|
| 1314 |
+
},
|
| 1315 |
+
"128164": {
|
| 1316 |
+
"content": "<|reserved_special_token_156|>",
|
| 1317 |
+
"lstrip": false,
|
| 1318 |
+
"normalized": false,
|
| 1319 |
+
"rstrip": false,
|
| 1320 |
+
"single_word": false,
|
| 1321 |
+
"special": true
|
| 1322 |
+
},
|
| 1323 |
+
"128165": {
|
| 1324 |
+
"content": "<|reserved_special_token_157|>",
|
| 1325 |
+
"lstrip": false,
|
| 1326 |
+
"normalized": false,
|
| 1327 |
+
"rstrip": false,
|
| 1328 |
+
"single_word": false,
|
| 1329 |
+
"special": true
|
| 1330 |
+
},
|
| 1331 |
+
"128166": {
|
| 1332 |
+
"content": "<|reserved_special_token_158|>",
|
| 1333 |
+
"lstrip": false,
|
| 1334 |
+
"normalized": false,
|
| 1335 |
+
"rstrip": false,
|
| 1336 |
+
"single_word": false,
|
| 1337 |
+
"special": true
|
| 1338 |
+
},
|
| 1339 |
+
"128167": {
|
| 1340 |
+
"content": "<|reserved_special_token_159|>",
|
| 1341 |
+
"lstrip": false,
|
| 1342 |
+
"normalized": false,
|
| 1343 |
+
"rstrip": false,
|
| 1344 |
+
"single_word": false,
|
| 1345 |
+
"special": true
|
| 1346 |
+
},
|
| 1347 |
+
"128168": {
|
| 1348 |
+
"content": "<|reserved_special_token_160|>",
|
| 1349 |
+
"lstrip": false,
|
| 1350 |
+
"normalized": false,
|
| 1351 |
+
"rstrip": false,
|
| 1352 |
+
"single_word": false,
|
| 1353 |
+
"special": true
|
| 1354 |
+
},
|
| 1355 |
+
"128169": {
|
| 1356 |
+
"content": "<|reserved_special_token_161|>",
|
| 1357 |
+
"lstrip": false,
|
| 1358 |
+
"normalized": false,
|
| 1359 |
+
"rstrip": false,
|
| 1360 |
+
"single_word": false,
|
| 1361 |
+
"special": true
|
| 1362 |
+
},
|
| 1363 |
+
"128170": {
|
| 1364 |
+
"content": "<|reserved_special_token_162|>",
|
| 1365 |
+
"lstrip": false,
|
| 1366 |
+
"normalized": false,
|
| 1367 |
+
"rstrip": false,
|
| 1368 |
+
"single_word": false,
|
| 1369 |
+
"special": true
|
| 1370 |
+
},
|
| 1371 |
+
"128171": {
|
| 1372 |
+
"content": "<|reserved_special_token_163|>",
|
| 1373 |
+
"lstrip": false,
|
| 1374 |
+
"normalized": false,
|
| 1375 |
+
"rstrip": false,
|
| 1376 |
+
"single_word": false,
|
| 1377 |
+
"special": true
|
| 1378 |
+
},
|
| 1379 |
+
"128172": {
|
| 1380 |
+
"content": "<|reserved_special_token_164|>",
|
| 1381 |
+
"lstrip": false,
|
| 1382 |
+
"normalized": false,
|
| 1383 |
+
"rstrip": false,
|
| 1384 |
+
"single_word": false,
|
| 1385 |
+
"special": true
|
| 1386 |
+
},
|
| 1387 |
+
"128173": {
|
| 1388 |
+
"content": "<|reserved_special_token_165|>",
|
| 1389 |
+
"lstrip": false,
|
| 1390 |
+
"normalized": false,
|
| 1391 |
+
"rstrip": false,
|
| 1392 |
+
"single_word": false,
|
| 1393 |
+
"special": true
|
| 1394 |
+
},
|
| 1395 |
+
"128174": {
|
| 1396 |
+
"content": "<|reserved_special_token_166|>",
|
| 1397 |
+
"lstrip": false,
|
| 1398 |
+
"normalized": false,
|
| 1399 |
+
"rstrip": false,
|
| 1400 |
+
"single_word": false,
|
| 1401 |
+
"special": true
|
| 1402 |
+
},
|
| 1403 |
+
"128175": {
|
| 1404 |
+
"content": "<|reserved_special_token_167|>",
|
| 1405 |
+
"lstrip": false,
|
| 1406 |
+
"normalized": false,
|
| 1407 |
+
"rstrip": false,
|
| 1408 |
+
"single_word": false,
|
| 1409 |
+
"special": true
|
| 1410 |
+
},
|
| 1411 |
+
"128176": {
|
| 1412 |
+
"content": "<|reserved_special_token_168|>",
|
| 1413 |
+
"lstrip": false,
|
| 1414 |
+
"normalized": false,
|
| 1415 |
+
"rstrip": false,
|
| 1416 |
+
"single_word": false,
|
| 1417 |
+
"special": true
|
| 1418 |
+
},
|
| 1419 |
+
"128177": {
|
| 1420 |
+
"content": "<|reserved_special_token_169|>",
|
| 1421 |
+
"lstrip": false,
|
| 1422 |
+
"normalized": false,
|
| 1423 |
+
"rstrip": false,
|
| 1424 |
+
"single_word": false,
|
| 1425 |
+
"special": true
|
| 1426 |
+
},
|
| 1427 |
+
"128178": {
|
| 1428 |
+
"content": "<|reserved_special_token_170|>",
|
| 1429 |
+
"lstrip": false,
|
| 1430 |
+
"normalized": false,
|
| 1431 |
+
"rstrip": false,
|
| 1432 |
+
"single_word": false,
|
| 1433 |
+
"special": true
|
| 1434 |
+
},
|
| 1435 |
+
"128179": {
|
| 1436 |
+
"content": "<|reserved_special_token_171|>",
|
| 1437 |
+
"lstrip": false,
|
| 1438 |
+
"normalized": false,
|
| 1439 |
+
"rstrip": false,
|
| 1440 |
+
"single_word": false,
|
| 1441 |
+
"special": true
|
| 1442 |
+
},
|
| 1443 |
+
"128180": {
|
| 1444 |
+
"content": "<|reserved_special_token_172|>",
|
| 1445 |
+
"lstrip": false,
|
| 1446 |
+
"normalized": false,
|
| 1447 |
+
"rstrip": false,
|
| 1448 |
+
"single_word": false,
|
| 1449 |
+
"special": true
|
| 1450 |
+
},
|
| 1451 |
+
"128181": {
|
| 1452 |
+
"content": "<|reserved_special_token_173|>",
|
| 1453 |
+
"lstrip": false,
|
| 1454 |
+
"normalized": false,
|
| 1455 |
+
"rstrip": false,
|
| 1456 |
+
"single_word": false,
|
| 1457 |
+
"special": true
|
| 1458 |
+
},
|
| 1459 |
+
"128182": {
|
| 1460 |
+
"content": "<|reserved_special_token_174|>",
|
| 1461 |
+
"lstrip": false,
|
| 1462 |
+
"normalized": false,
|
| 1463 |
+
"rstrip": false,
|
| 1464 |
+
"single_word": false,
|
| 1465 |
+
"special": true
|
| 1466 |
+
},
|
| 1467 |
+
"128183": {
|
| 1468 |
+
"content": "<|reserved_special_token_175|>",
|
| 1469 |
+
"lstrip": false,
|
| 1470 |
+
"normalized": false,
|
| 1471 |
+
"rstrip": false,
|
| 1472 |
+
"single_word": false,
|
| 1473 |
+
"special": true
|
| 1474 |
+
},
|
| 1475 |
+
"128184": {
|
| 1476 |
+
"content": "<|reserved_special_token_176|>",
|
| 1477 |
+
"lstrip": false,
|
| 1478 |
+
"normalized": false,
|
| 1479 |
+
"rstrip": false,
|
| 1480 |
+
"single_word": false,
|
| 1481 |
+
"special": true
|
| 1482 |
+
},
|
| 1483 |
+
"128185": {
|
| 1484 |
+
"content": "<|reserved_special_token_177|>",
|
| 1485 |
+
"lstrip": false,
|
| 1486 |
+
"normalized": false,
|
| 1487 |
+
"rstrip": false,
|
| 1488 |
+
"single_word": false,
|
| 1489 |
+
"special": true
|
| 1490 |
+
},
|
| 1491 |
+
"128186": {
|
| 1492 |
+
"content": "<|reserved_special_token_178|>",
|
| 1493 |
+
"lstrip": false,
|
| 1494 |
+
"normalized": false,
|
| 1495 |
+
"rstrip": false,
|
| 1496 |
+
"single_word": false,
|
| 1497 |
+
"special": true
|
| 1498 |
+
},
|
| 1499 |
+
"128187": {
|
| 1500 |
+
"content": "<|reserved_special_token_179|>",
|
| 1501 |
+
"lstrip": false,
|
| 1502 |
+
"normalized": false,
|
| 1503 |
+
"rstrip": false,
|
| 1504 |
+
"single_word": false,
|
| 1505 |
+
"special": true
|
| 1506 |
+
},
|
| 1507 |
+
"128188": {
|
| 1508 |
+
"content": "<|reserved_special_token_180|>",
|
| 1509 |
+
"lstrip": false,
|
| 1510 |
+
"normalized": false,
|
| 1511 |
+
"rstrip": false,
|
| 1512 |
+
"single_word": false,
|
| 1513 |
+
"special": true
|
| 1514 |
+
},
|
| 1515 |
+
"128189": {
|
| 1516 |
+
"content": "<|reserved_special_token_181|>",
|
| 1517 |
+
"lstrip": false,
|
| 1518 |
+
"normalized": false,
|
| 1519 |
+
"rstrip": false,
|
| 1520 |
+
"single_word": false,
|
| 1521 |
+
"special": true
|
| 1522 |
+
},
|
| 1523 |
+
"128190": {
|
| 1524 |
+
"content": "<|reserved_special_token_182|>",
|
| 1525 |
+
"lstrip": false,
|
| 1526 |
+
"normalized": false,
|
| 1527 |
+
"rstrip": false,
|
| 1528 |
+
"single_word": false,
|
| 1529 |
+
"special": true
|
| 1530 |
+
},
|
| 1531 |
+
"128191": {
|
| 1532 |
+
"content": "<|reserved_special_token_183|>",
|
| 1533 |
+
"lstrip": false,
|
| 1534 |
+
"normalized": false,
|
| 1535 |
+
"rstrip": false,
|
| 1536 |
+
"single_word": false,
|
| 1537 |
+
"special": true
|
| 1538 |
+
},
|
| 1539 |
+
"128192": {
|
| 1540 |
+
"content": "<|reserved_special_token_184|>",
|
| 1541 |
+
"lstrip": false,
|
| 1542 |
+
"normalized": false,
|
| 1543 |
+
"rstrip": false,
|
| 1544 |
+
"single_word": false,
|
| 1545 |
+
"special": true
|
| 1546 |
+
},
|
| 1547 |
+
"128193": {
|
| 1548 |
+
"content": "<|reserved_special_token_185|>",
|
| 1549 |
+
"lstrip": false,
|
| 1550 |
+
"normalized": false,
|
| 1551 |
+
"rstrip": false,
|
| 1552 |
+
"single_word": false,
|
| 1553 |
+
"special": true
|
| 1554 |
+
},
|
| 1555 |
+
"128194": {
|
| 1556 |
+
"content": "<|reserved_special_token_186|>",
|
| 1557 |
+
"lstrip": false,
|
| 1558 |
+
"normalized": false,
|
| 1559 |
+
"rstrip": false,
|
| 1560 |
+
"single_word": false,
|
| 1561 |
+
"special": true
|
| 1562 |
+
},
|
| 1563 |
+
"128195": {
|
| 1564 |
+
"content": "<|reserved_special_token_187|>",
|
| 1565 |
+
"lstrip": false,
|
| 1566 |
+
"normalized": false,
|
| 1567 |
+
"rstrip": false,
|
| 1568 |
+
"single_word": false,
|
| 1569 |
+
"special": true
|
| 1570 |
+
},
|
| 1571 |
+
"128196": {
|
| 1572 |
+
"content": "<|reserved_special_token_188|>",
|
| 1573 |
+
"lstrip": false,
|
| 1574 |
+
"normalized": false,
|
| 1575 |
+
"rstrip": false,
|
| 1576 |
+
"single_word": false,
|
| 1577 |
+
"special": true
|
| 1578 |
+
},
|
| 1579 |
+
"128197": {
|
| 1580 |
+
"content": "<|reserved_special_token_189|>",
|
| 1581 |
+
"lstrip": false,
|
| 1582 |
+
"normalized": false,
|
| 1583 |
+
"rstrip": false,
|
| 1584 |
+
"single_word": false,
|
| 1585 |
+
"special": true
|
| 1586 |
+
},
|
| 1587 |
+
"128198": {
|
| 1588 |
+
"content": "<|reserved_special_token_190|>",
|
| 1589 |
+
"lstrip": false,
|
| 1590 |
+
"normalized": false,
|
| 1591 |
+
"rstrip": false,
|
| 1592 |
+
"single_word": false,
|
| 1593 |
+
"special": true
|
| 1594 |
+
},
|
| 1595 |
+
"128199": {
|
| 1596 |
+
"content": "<|reserved_special_token_191|>",
|
| 1597 |
+
"lstrip": false,
|
| 1598 |
+
"normalized": false,
|
| 1599 |
+
"rstrip": false,
|
| 1600 |
+
"single_word": false,
|
| 1601 |
+
"special": true
|
| 1602 |
+
},
|
| 1603 |
+
"128200": {
|
| 1604 |
+
"content": "<|reserved_special_token_192|>",
|
| 1605 |
+
"lstrip": false,
|
| 1606 |
+
"normalized": false,
|
| 1607 |
+
"rstrip": false,
|
| 1608 |
+
"single_word": false,
|
| 1609 |
+
"special": true
|
| 1610 |
+
},
|
| 1611 |
+
"128201": {
|
| 1612 |
+
"content": "<|reserved_special_token_193|>",
|
| 1613 |
+
"lstrip": false,
|
| 1614 |
+
"normalized": false,
|
| 1615 |
+
"rstrip": false,
|
| 1616 |
+
"single_word": false,
|
| 1617 |
+
"special": true
|
| 1618 |
+
},
|
| 1619 |
+
"128202": {
|
| 1620 |
+
"content": "<|reserved_special_token_194|>",
|
| 1621 |
+
"lstrip": false,
|
| 1622 |
+
"normalized": false,
|
| 1623 |
+
"rstrip": false,
|
| 1624 |
+
"single_word": false,
|
| 1625 |
+
"special": true
|
| 1626 |
+
},
|
| 1627 |
+
"128203": {
|
| 1628 |
+
"content": "<|reserved_special_token_195|>",
|
| 1629 |
+
"lstrip": false,
|
| 1630 |
+
"normalized": false,
|
| 1631 |
+
"rstrip": false,
|
| 1632 |
+
"single_word": false,
|
| 1633 |
+
"special": true
|
| 1634 |
+
},
|
| 1635 |
+
"128204": {
|
| 1636 |
+
"content": "<|reserved_special_token_196|>",
|
| 1637 |
+
"lstrip": false,
|
| 1638 |
+
"normalized": false,
|
| 1639 |
+
"rstrip": false,
|
| 1640 |
+
"single_word": false,
|
| 1641 |
+
"special": true
|
| 1642 |
+
},
|
| 1643 |
+
"128205": {
|
| 1644 |
+
"content": "<|reserved_special_token_197|>",
|
| 1645 |
+
"lstrip": false,
|
| 1646 |
+
"normalized": false,
|
| 1647 |
+
"rstrip": false,
|
| 1648 |
+
"single_word": false,
|
| 1649 |
+
"special": true
|
| 1650 |
+
},
|
| 1651 |
+
"128206": {
|
| 1652 |
+
"content": "<|reserved_special_token_198|>",
|
| 1653 |
+
"lstrip": false,
|
| 1654 |
+
"normalized": false,
|
| 1655 |
+
"rstrip": false,
|
| 1656 |
+
"single_word": false,
|
| 1657 |
+
"special": true
|
| 1658 |
+
},
|
| 1659 |
+
"128207": {
|
| 1660 |
+
"content": "<|reserved_special_token_199|>",
|
| 1661 |
+
"lstrip": false,
|
| 1662 |
+
"normalized": false,
|
| 1663 |
+
"rstrip": false,
|
| 1664 |
+
"single_word": false,
|
| 1665 |
+
"special": true
|
| 1666 |
+
},
|
| 1667 |
+
"128208": {
|
| 1668 |
+
"content": "<|reserved_special_token_200|>",
|
| 1669 |
+
"lstrip": false,
|
| 1670 |
+
"normalized": false,
|
| 1671 |
+
"rstrip": false,
|
| 1672 |
+
"single_word": false,
|
| 1673 |
+
"special": true
|
| 1674 |
+
},
|
| 1675 |
+
"128209": {
|
| 1676 |
+
"content": "<|reserved_special_token_201|>",
|
| 1677 |
+
"lstrip": false,
|
| 1678 |
+
"normalized": false,
|
| 1679 |
+
"rstrip": false,
|
| 1680 |
+
"single_word": false,
|
| 1681 |
+
"special": true
|
| 1682 |
+
},
|
| 1683 |
+
"128210": {
|
| 1684 |
+
"content": "<|reserved_special_token_202|>",
|
| 1685 |
+
"lstrip": false,
|
| 1686 |
+
"normalized": false,
|
| 1687 |
+
"rstrip": false,
|
| 1688 |
+
"single_word": false,
|
| 1689 |
+
"special": true
|
| 1690 |
+
},
|
| 1691 |
+
"128211": {
|
| 1692 |
+
"content": "<|reserved_special_token_203|>",
|
| 1693 |
+
"lstrip": false,
|
| 1694 |
+
"normalized": false,
|
| 1695 |
+
"rstrip": false,
|
| 1696 |
+
"single_word": false,
|
| 1697 |
+
"special": true
|
| 1698 |
+
},
|
| 1699 |
+
"128212": {
|
| 1700 |
+
"content": "<|reserved_special_token_204|>",
|
| 1701 |
+
"lstrip": false,
|
| 1702 |
+
"normalized": false,
|
| 1703 |
+
"rstrip": false,
|
| 1704 |
+
"single_word": false,
|
| 1705 |
+
"special": true
|
| 1706 |
+
},
|
| 1707 |
+
"128213": {
|
| 1708 |
+
"content": "<|reserved_special_token_205|>",
|
| 1709 |
+
"lstrip": false,
|
| 1710 |
+
"normalized": false,
|
| 1711 |
+
"rstrip": false,
|
| 1712 |
+
"single_word": false,
|
| 1713 |
+
"special": true
|
| 1714 |
+
},
|
| 1715 |
+
"128214": {
|
| 1716 |
+
"content": "<|reserved_special_token_206|>",
|
| 1717 |
+
"lstrip": false,
|
| 1718 |
+
"normalized": false,
|
| 1719 |
+
"rstrip": false,
|
| 1720 |
+
"single_word": false,
|
| 1721 |
+
"special": true
|
| 1722 |
+
},
|
| 1723 |
+
"128215": {
|
| 1724 |
+
"content": "<|reserved_special_token_207|>",
|
| 1725 |
+
"lstrip": false,
|
| 1726 |
+
"normalized": false,
|
| 1727 |
+
"rstrip": false,
|
| 1728 |
+
"single_word": false,
|
| 1729 |
+
"special": true
|
| 1730 |
+
},
|
| 1731 |
+
"128216": {
|
| 1732 |
+
"content": "<|reserved_special_token_208|>",
|
| 1733 |
+
"lstrip": false,
|
| 1734 |
+
"normalized": false,
|
| 1735 |
+
"rstrip": false,
|
| 1736 |
+
"single_word": false,
|
| 1737 |
+
"special": true
|
| 1738 |
+
},
|
| 1739 |
+
"128217": {
|
| 1740 |
+
"content": "<|reserved_special_token_209|>",
|
| 1741 |
+
"lstrip": false,
|
| 1742 |
+
"normalized": false,
|
| 1743 |
+
"rstrip": false,
|
| 1744 |
+
"single_word": false,
|
| 1745 |
+
"special": true
|
| 1746 |
+
},
|
| 1747 |
+
"128218": {
|
| 1748 |
+
"content": "<|reserved_special_token_210|>",
|
| 1749 |
+
"lstrip": false,
|
| 1750 |
+
"normalized": false,
|
| 1751 |
+
"rstrip": false,
|
| 1752 |
+
"single_word": false,
|
| 1753 |
+
"special": true
|
| 1754 |
+
},
|
| 1755 |
+
"128219": {
|
| 1756 |
+
"content": "<|reserved_special_token_211|>",
|
| 1757 |
+
"lstrip": false,
|
| 1758 |
+
"normalized": false,
|
| 1759 |
+
"rstrip": false,
|
| 1760 |
+
"single_word": false,
|
| 1761 |
+
"special": true
|
| 1762 |
+
},
|
| 1763 |
+
"128220": {
|
| 1764 |
+
"content": "<|reserved_special_token_212|>",
|
| 1765 |
+
"lstrip": false,
|
| 1766 |
+
"normalized": false,
|
| 1767 |
+
"rstrip": false,
|
| 1768 |
+
"single_word": false,
|
| 1769 |
+
"special": true
|
| 1770 |
+
},
|
| 1771 |
+
"128221": {
|
| 1772 |
+
"content": "<|reserved_special_token_213|>",
|
| 1773 |
+
"lstrip": false,
|
| 1774 |
+
"normalized": false,
|
| 1775 |
+
"rstrip": false,
|
| 1776 |
+
"single_word": false,
|
| 1777 |
+
"special": true
|
| 1778 |
+
},
|
| 1779 |
+
"128222": {
|
| 1780 |
+
"content": "<|reserved_special_token_214|>",
|
| 1781 |
+
"lstrip": false,
|
| 1782 |
+
"normalized": false,
|
| 1783 |
+
"rstrip": false,
|
| 1784 |
+
"single_word": false,
|
| 1785 |
+
"special": true
|
| 1786 |
+
},
|
| 1787 |
+
"128223": {
|
| 1788 |
+
"content": "<|reserved_special_token_215|>",
|
| 1789 |
+
"lstrip": false,
|
| 1790 |
+
"normalized": false,
|
| 1791 |
+
"rstrip": false,
|
| 1792 |
+
"single_word": false,
|
| 1793 |
+
"special": true
|
| 1794 |
+
},
|
| 1795 |
+
"128224": {
|
| 1796 |
+
"content": "<|reserved_special_token_216|>",
|
| 1797 |
+
"lstrip": false,
|
| 1798 |
+
"normalized": false,
|
| 1799 |
+
"rstrip": false,
|
| 1800 |
+
"single_word": false,
|
| 1801 |
+
"special": true
|
| 1802 |
+
},
|
| 1803 |
+
"128225": {
|
| 1804 |
+
"content": "<|reserved_special_token_217|>",
|
| 1805 |
+
"lstrip": false,
|
| 1806 |
+
"normalized": false,
|
| 1807 |
+
"rstrip": false,
|
| 1808 |
+
"single_word": false,
|
| 1809 |
+
"special": true
|
| 1810 |
+
},
|
| 1811 |
+
"128226": {
|
| 1812 |
+
"content": "<|reserved_special_token_218|>",
|
| 1813 |
+
"lstrip": false,
|
| 1814 |
+
"normalized": false,
|
| 1815 |
+
"rstrip": false,
|
| 1816 |
+
"single_word": false,
|
| 1817 |
+
"special": true
|
| 1818 |
+
},
|
| 1819 |
+
"128227": {
|
| 1820 |
+
"content": "<|reserved_special_token_219|>",
|
| 1821 |
+
"lstrip": false,
|
| 1822 |
+
"normalized": false,
|
| 1823 |
+
"rstrip": false,
|
| 1824 |
+
"single_word": false,
|
| 1825 |
+
"special": true
|
| 1826 |
+
},
|
| 1827 |
+
"128228": {
|
| 1828 |
+
"content": "<|reserved_special_token_220|>",
|
| 1829 |
+
"lstrip": false,
|
| 1830 |
+
"normalized": false,
|
| 1831 |
+
"rstrip": false,
|
| 1832 |
+
"single_word": false,
|
| 1833 |
+
"special": true
|
| 1834 |
+
},
|
| 1835 |
+
"128229": {
|
| 1836 |
+
"content": "<|reserved_special_token_221|>",
|
| 1837 |
+
"lstrip": false,
|
| 1838 |
+
"normalized": false,
|
| 1839 |
+
"rstrip": false,
|
| 1840 |
+
"single_word": false,
|
| 1841 |
+
"special": true
|
| 1842 |
+
},
|
| 1843 |
+
"128230": {
|
| 1844 |
+
"content": "<|reserved_special_token_222|>",
|
| 1845 |
+
"lstrip": false,
|
| 1846 |
+
"normalized": false,
|
| 1847 |
+
"rstrip": false,
|
| 1848 |
+
"single_word": false,
|
| 1849 |
+
"special": true
|
| 1850 |
+
},
|
| 1851 |
+
"128231": {
|
| 1852 |
+
"content": "<|reserved_special_token_223|>",
|
| 1853 |
+
"lstrip": false,
|
| 1854 |
+
"normalized": false,
|
| 1855 |
+
"rstrip": false,
|
| 1856 |
+
"single_word": false,
|
| 1857 |
+
"special": true
|
| 1858 |
+
},
|
| 1859 |
+
"128232": {
|
| 1860 |
+
"content": "<|reserved_special_token_224|>",
|
| 1861 |
+
"lstrip": false,
|
| 1862 |
+
"normalized": false,
|
| 1863 |
+
"rstrip": false,
|
| 1864 |
+
"single_word": false,
|
| 1865 |
+
"special": true
|
| 1866 |
+
},
|
| 1867 |
+
"128233": {
|
| 1868 |
+
"content": "<|reserved_special_token_225|>",
|
| 1869 |
+
"lstrip": false,
|
| 1870 |
+
"normalized": false,
|
| 1871 |
+
"rstrip": false,
|
| 1872 |
+
"single_word": false,
|
| 1873 |
+
"special": true
|
| 1874 |
+
},
|
| 1875 |
+
"128234": {
|
| 1876 |
+
"content": "<|reserved_special_token_226|>",
|
| 1877 |
+
"lstrip": false,
|
| 1878 |
+
"normalized": false,
|
| 1879 |
+
"rstrip": false,
|
| 1880 |
+
"single_word": false,
|
| 1881 |
+
"special": true
|
| 1882 |
+
},
|
| 1883 |
+
"128235": {
|
| 1884 |
+
"content": "<|reserved_special_token_227|>",
|
| 1885 |
+
"lstrip": false,
|
| 1886 |
+
"normalized": false,
|
| 1887 |
+
"rstrip": false,
|
| 1888 |
+
"single_word": false,
|
| 1889 |
+
"special": true
|
| 1890 |
+
},
|
| 1891 |
+
"128236": {
|
| 1892 |
+
"content": "<|reserved_special_token_228|>",
|
| 1893 |
+
"lstrip": false,
|
| 1894 |
+
"normalized": false,
|
| 1895 |
+
"rstrip": false,
|
| 1896 |
+
"single_word": false,
|
| 1897 |
+
"special": true
|
| 1898 |
+
},
|
| 1899 |
+
"128237": {
|
| 1900 |
+
"content": "<|reserved_special_token_229|>",
|
| 1901 |
+
"lstrip": false,
|
| 1902 |
+
"normalized": false,
|
| 1903 |
+
"rstrip": false,
|
| 1904 |
+
"single_word": false,
|
| 1905 |
+
"special": true
|
| 1906 |
+
},
|
| 1907 |
+
"128238": {
|
| 1908 |
+
"content": "<|reserved_special_token_230|>",
|
| 1909 |
+
"lstrip": false,
|
| 1910 |
+
"normalized": false,
|
| 1911 |
+
"rstrip": false,
|
| 1912 |
+
"single_word": false,
|
| 1913 |
+
"special": true
|
| 1914 |
+
},
|
| 1915 |
+
"128239": {
|
| 1916 |
+
"content": "<|reserved_special_token_231|>",
|
| 1917 |
+
"lstrip": false,
|
| 1918 |
+
"normalized": false,
|
| 1919 |
+
"rstrip": false,
|
| 1920 |
+
"single_word": false,
|
| 1921 |
+
"special": true
|
| 1922 |
+
},
|
| 1923 |
+
"128240": {
|
| 1924 |
+
"content": "<|reserved_special_token_232|>",
|
| 1925 |
+
"lstrip": false,
|
| 1926 |
+
"normalized": false,
|
| 1927 |
+
"rstrip": false,
|
| 1928 |
+
"single_word": false,
|
| 1929 |
+
"special": true
|
| 1930 |
+
},
|
| 1931 |
+
"128241": {
|
| 1932 |
+
"content": "<|reserved_special_token_233|>",
|
| 1933 |
+
"lstrip": false,
|
| 1934 |
+
"normalized": false,
|
| 1935 |
+
"rstrip": false,
|
| 1936 |
+
"single_word": false,
|
| 1937 |
+
"special": true
|
| 1938 |
+
},
|
| 1939 |
+
"128242": {
|
| 1940 |
+
"content": "<|reserved_special_token_234|>",
|
| 1941 |
+
"lstrip": false,
|
| 1942 |
+
"normalized": false,
|
| 1943 |
+
"rstrip": false,
|
| 1944 |
+
"single_word": false,
|
| 1945 |
+
"special": true
|
| 1946 |
+
},
|
| 1947 |
+
"128243": {
|
| 1948 |
+
"content": "<|reserved_special_token_235|>",
|
| 1949 |
+
"lstrip": false,
|
| 1950 |
+
"normalized": false,
|
| 1951 |
+
"rstrip": false,
|
| 1952 |
+
"single_word": false,
|
| 1953 |
+
"special": true
|
| 1954 |
+
},
|
| 1955 |
+
"128244": {
|
| 1956 |
+
"content": "<|reserved_special_token_236|>",
|
| 1957 |
+
"lstrip": false,
|
| 1958 |
+
"normalized": false,
|
| 1959 |
+
"rstrip": false,
|
| 1960 |
+
"single_word": false,
|
| 1961 |
+
"special": true
|
| 1962 |
+
},
|
| 1963 |
+
"128245": {
|
| 1964 |
+
"content": "<|reserved_special_token_237|>",
|
| 1965 |
+
"lstrip": false,
|
| 1966 |
+
"normalized": false,
|
| 1967 |
+
"rstrip": false,
|
| 1968 |
+
"single_word": false,
|
| 1969 |
+
"special": true
|
| 1970 |
+
},
|
| 1971 |
+
"128246": {
|
| 1972 |
+
"content": "<|reserved_special_token_238|>",
|
| 1973 |
+
"lstrip": false,
|
| 1974 |
+
"normalized": false,
|
| 1975 |
+
"rstrip": false,
|
| 1976 |
+
"single_word": false,
|
| 1977 |
+
"special": true
|
| 1978 |
+
},
|
| 1979 |
+
"128247": {
|
| 1980 |
+
"content": "<|reserved_special_token_239|>",
|
| 1981 |
+
"lstrip": false,
|
| 1982 |
+
"normalized": false,
|
| 1983 |
+
"rstrip": false,
|
| 1984 |
+
"single_word": false,
|
| 1985 |
+
"special": true
|
| 1986 |
+
},
|
| 1987 |
+
"128248": {
|
| 1988 |
+
"content": "<|reserved_special_token_240|>",
|
| 1989 |
+
"lstrip": false,
|
| 1990 |
+
"normalized": false,
|
| 1991 |
+
"rstrip": false,
|
| 1992 |
+
"single_word": false,
|
| 1993 |
+
"special": true
|
| 1994 |
+
},
|
| 1995 |
+
"128249": {
|
| 1996 |
+
"content": "<|reserved_special_token_241|>",
|
| 1997 |
+
"lstrip": false,
|
| 1998 |
+
"normalized": false,
|
| 1999 |
+
"rstrip": false,
|
| 2000 |
+
"single_word": false,
|
| 2001 |
+
"special": true
|
| 2002 |
+
},
|
| 2003 |
+
"128250": {
|
| 2004 |
+
"content": "<|reserved_special_token_242|>",
|
| 2005 |
+
"lstrip": false,
|
| 2006 |
+
"normalized": false,
|
| 2007 |
+
"rstrip": false,
|
| 2008 |
+
"single_word": false,
|
| 2009 |
+
"special": true
|
| 2010 |
+
},
|
| 2011 |
+
"128251": {
|
| 2012 |
+
"content": "<|reserved_special_token_243|>",
|
| 2013 |
+
"lstrip": false,
|
| 2014 |
+
"normalized": false,
|
| 2015 |
+
"rstrip": false,
|
| 2016 |
+
"single_word": false,
|
| 2017 |
+
"special": true
|
| 2018 |
+
},
|
| 2019 |
+
"128252": {
|
| 2020 |
+
"content": "<|reserved_special_token_244|>",
|
| 2021 |
+
"lstrip": false,
|
| 2022 |
+
"normalized": false,
|
| 2023 |
+
"rstrip": false,
|
| 2024 |
+
"single_word": false,
|
| 2025 |
+
"special": true
|
| 2026 |
+
},
|
| 2027 |
+
"128253": {
|
| 2028 |
+
"content": "<|reserved_special_token_245|>",
|
| 2029 |
+
"lstrip": false,
|
| 2030 |
+
"normalized": false,
|
| 2031 |
+
"rstrip": false,
|
| 2032 |
+
"single_word": false,
|
| 2033 |
+
"special": true
|
| 2034 |
+
},
|
| 2035 |
+
"128254": {
|
| 2036 |
+
"content": "<|reserved_special_token_246|>",
|
| 2037 |
+
"lstrip": false,
|
| 2038 |
+
"normalized": false,
|
| 2039 |
+
"rstrip": false,
|
| 2040 |
+
"single_word": false,
|
| 2041 |
+
"special": true
|
| 2042 |
+
},
|
| 2043 |
+
"128255": {
|
| 2044 |
+
"content": "<|reserved_special_token_247|>",
|
| 2045 |
+
"lstrip": false,
|
| 2046 |
+
"normalized": false,
|
| 2047 |
+
"rstrip": false,
|
| 2048 |
+
"single_word": false,
|
| 2049 |
+
"special": true
|
| 2050 |
+
}
|
| 2051 |
+
},
|
| 2052 |
+
"bos_token": "<|begin_of_text|>",
|
| 2053 |
+
"clean_up_tokenization_spaces": true,
|
| 2054 |
+
"eos_token": "<|eot_id|>",
|
| 2055 |
+
"extra_special_tokens": {},
|
| 2056 |
+
"model_input_names": [
|
| 2057 |
+
"input_ids",
|
| 2058 |
+
"attention_mask"
|
| 2059 |
+
],
|
| 2060 |
+
"model_max_length": 131072,
|
| 2061 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
| 2062 |
+
}
|
checkpoint-3198/trainer_state.json
ADDED
|
@@ -0,0 +1,3224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 3198,
|
| 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.7799350878223776,
|
| 14 |
+
"epoch": 0.009382513340761156,
|
| 15 |
+
"grad_norm": 0.251953125,
|
| 16 |
+
"learning_rate": 0.00019943714821763604,
|
| 17 |
+
"loss": 0.8229,
|
| 18 |
+
"mean_token_accuracy": 0.8214783387258648,
|
| 19 |
+
"num_tokens": 162309.0,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 0.6856271875090897,
|
| 24 |
+
"epoch": 0.01876502668152231,
|
| 25 |
+
"grad_norm": 0.2041015625,
|
| 26 |
+
"learning_rate": 0.00019881175734834272,
|
| 27 |
+
"loss": 0.6706,
|
| 28 |
+
"mean_token_accuracy": 0.8432094575837255,
|
| 29 |
+
"num_tokens": 325111.0,
|
| 30 |
+
"step": 20
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 0.5147169048897922,
|
| 34 |
+
"epoch": 0.02814754002228347,
|
| 35 |
+
"grad_norm": 0.1689453125,
|
| 36 |
+
"learning_rate": 0.00019818636647904943,
|
| 37 |
+
"loss": 0.5152,
|
| 38 |
+
"mean_token_accuracy": 0.8709522735327482,
|
| 39 |
+
"num_tokens": 488159.0,
|
| 40 |
+
"step": 30
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 0.48951989263296125,
|
| 44 |
+
"epoch": 0.03753005336304462,
|
| 45 |
+
"grad_norm": 0.1552734375,
|
| 46 |
+
"learning_rate": 0.0001975609756097561,
|
| 47 |
+
"loss": 0.4875,
|
| 48 |
+
"mean_token_accuracy": 0.8770332466810942,
|
| 49 |
+
"num_tokens": 650647.0,
|
| 50 |
+
"step": 40
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 0.4960091439075768,
|
| 54 |
+
"epoch": 0.04691256670380578,
|
| 55 |
+
"grad_norm": 0.16796875,
|
| 56 |
+
"learning_rate": 0.0001969355847404628,
|
| 57 |
+
"loss": 0.492,
|
| 58 |
+
"mean_token_accuracy": 0.8768141727894545,
|
| 59 |
+
"num_tokens": 813419.0,
|
| 60 |
+
"step": 50
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 0.4708784816786647,
|
| 64 |
+
"epoch": 0.05629508004456694,
|
| 65 |
+
"grad_norm": 0.197265625,
|
| 66 |
+
"learning_rate": 0.0001963101938711695,
|
| 67 |
+
"loss": 0.4648,
|
| 68 |
+
"mean_token_accuracy": 0.8837848342955112,
|
| 69 |
+
"num_tokens": 976458.0,
|
| 70 |
+
"step": 60
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 0.546927246497944,
|
| 74 |
+
"epoch": 0.0656775933853281,
|
| 75 |
+
"grad_norm": 0.1669921875,
|
| 76 |
+
"learning_rate": 0.00019568480300187618,
|
| 77 |
+
"loss": 0.5415,
|
| 78 |
+
"mean_token_accuracy": 0.8723422776907682,
|
| 79 |
+
"num_tokens": 1138794.0,
|
| 80 |
+
"step": 70
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 0.47402509227395057,
|
| 84 |
+
"epoch": 0.07506010672608925,
|
| 85 |
+
"grad_norm": 0.1533203125,
|
| 86 |
+
"learning_rate": 0.00019505941213258287,
|
| 87 |
+
"loss": 0.4702,
|
| 88 |
+
"mean_token_accuracy": 0.885954425111413,
|
| 89 |
+
"num_tokens": 1301483.0,
|
| 90 |
+
"step": 80
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 0.4972494073677808,
|
| 94 |
+
"epoch": 0.08444262006685041,
|
| 95 |
+
"grad_norm": 0.1708984375,
|
| 96 |
+
"learning_rate": 0.00019443402126328955,
|
| 97 |
+
"loss": 0.4901,
|
| 98 |
+
"mean_token_accuracy": 0.8839348161593079,
|
| 99 |
+
"num_tokens": 1464240.0,
|
| 100 |
+
"step": 90
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 0.49195765373297035,
|
| 104 |
+
"epoch": 0.09382513340761156,
|
| 105 |
+
"grad_norm": 0.1669921875,
|
| 106 |
+
"learning_rate": 0.00019380863039399627,
|
| 107 |
+
"loss": 0.4848,
|
| 108 |
+
"mean_token_accuracy": 0.886236279271543,
|
| 109 |
+
"num_tokens": 1627457.0,
|
| 110 |
+
"step": 100
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 0.5126075576525182,
|
| 114 |
+
"epoch": 0.10320764674837273,
|
| 115 |
+
"grad_norm": 0.1787109375,
|
| 116 |
+
"learning_rate": 0.00019318323952470295,
|
| 117 |
+
"loss": 0.5104,
|
| 118 |
+
"mean_token_accuracy": 0.8793701384216547,
|
| 119 |
+
"num_tokens": 1790547.0,
|
| 120 |
+
"step": 110
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 0.4117678565904498,
|
| 124 |
+
"epoch": 0.11259016008913388,
|
| 125 |
+
"grad_norm": 0.1650390625,
|
| 126 |
+
"learning_rate": 0.00019255784865540964,
|
| 127 |
+
"loss": 0.4114,
|
| 128 |
+
"mean_token_accuracy": 0.8950984058901668,
|
| 129 |
+
"num_tokens": 1953536.0,
|
| 130 |
+
"step": 120
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 0.4656925258226693,
|
| 134 |
+
"epoch": 0.12197267342989504,
|
| 135 |
+
"grad_norm": 0.1875,
|
| 136 |
+
"learning_rate": 0.00019193245778611632,
|
| 137 |
+
"loss": 0.4634,
|
| 138 |
+
"mean_token_accuracy": 0.8897427920252085,
|
| 139 |
+
"num_tokens": 2115476.0,
|
| 140 |
+
"step": 130
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 0.43195099574513734,
|
| 144 |
+
"epoch": 0.1313551867706562,
|
| 145 |
+
"grad_norm": 0.1630859375,
|
| 146 |
+
"learning_rate": 0.00019130706691682304,
|
| 147 |
+
"loss": 0.4246,
|
| 148 |
+
"mean_token_accuracy": 0.8946435421705246,
|
| 149 |
+
"num_tokens": 2277936.0,
|
| 150 |
+
"step": 140
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 0.4823188486509025,
|
| 154 |
+
"epoch": 0.14073770011141734,
|
| 155 |
+
"grad_norm": 0.20703125,
|
| 156 |
+
"learning_rate": 0.00019068167604752972,
|
| 157 |
+
"loss": 0.4796,
|
| 158 |
+
"mean_token_accuracy": 0.8873342543840408,
|
| 159 |
+
"num_tokens": 2440643.0,
|
| 160 |
+
"step": 150
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 0.40974695349577817,
|
| 164 |
+
"epoch": 0.1501202134521785,
|
| 165 |
+
"grad_norm": 0.1982421875,
|
| 166 |
+
"learning_rate": 0.0001900562851782364,
|
| 167 |
+
"loss": 0.4,
|
| 168 |
+
"mean_token_accuracy": 0.8974028028547764,
|
| 169 |
+
"num_tokens": 2603401.0,
|
| 170 |
+
"step": 160
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 0.41737876399420204,
|
| 174 |
+
"epoch": 0.15950272679293967,
|
| 175 |
+
"grad_norm": 0.177734375,
|
| 176 |
+
"learning_rate": 0.0001894308943089431,
|
| 177 |
+
"loss": 0.4136,
|
| 178 |
+
"mean_token_accuracy": 0.8985418293625116,
|
| 179 |
+
"num_tokens": 2765836.0,
|
| 180 |
+
"step": 170
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 0.4317509519169107,
|
| 184 |
+
"epoch": 0.16888524013370082,
|
| 185 |
+
"grad_norm": 0.1630859375,
|
| 186 |
+
"learning_rate": 0.0001888055034396498,
|
| 187 |
+
"loss": 0.4276,
|
| 188 |
+
"mean_token_accuracy": 0.8956017823889851,
|
| 189 |
+
"num_tokens": 2928637.0,
|
| 190 |
+
"step": 180
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 0.39300057776272296,
|
| 194 |
+
"epoch": 0.17826775347446197,
|
| 195 |
+
"grad_norm": 0.177734375,
|
| 196 |
+
"learning_rate": 0.00018818011257035647,
|
| 197 |
+
"loss": 0.3853,
|
| 198 |
+
"mean_token_accuracy": 0.903920691087842,
|
| 199 |
+
"num_tokens": 3090979.0,
|
| 200 |
+
"step": 190
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 0.43899501564446836,
|
| 204 |
+
"epoch": 0.18765026681522312,
|
| 205 |
+
"grad_norm": 0.16796875,
|
| 206 |
+
"learning_rate": 0.00018755472170106316,
|
| 207 |
+
"loss": 0.4302,
|
| 208 |
+
"mean_token_accuracy": 0.894548149779439,
|
| 209 |
+
"num_tokens": 3253538.0,
|
| 210 |
+
"step": 200
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 0.3904935538303107,
|
| 214 |
+
"epoch": 0.19703278015598427,
|
| 215 |
+
"grad_norm": 0.1708984375,
|
| 216 |
+
"learning_rate": 0.00018692933083176987,
|
| 217 |
+
"loss": 0.3829,
|
| 218 |
+
"mean_token_accuracy": 0.9031265545636415,
|
| 219 |
+
"num_tokens": 3415948.0,
|
| 220 |
+
"step": 210
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 0.39792181542143223,
|
| 224 |
+
"epoch": 0.20641529349674545,
|
| 225 |
+
"grad_norm": 0.1572265625,
|
| 226 |
+
"learning_rate": 0.00018630393996247656,
|
| 227 |
+
"loss": 0.3862,
|
| 228 |
+
"mean_token_accuracy": 0.9033814109861851,
|
| 229 |
+
"num_tokens": 3579298.0,
|
| 230 |
+
"step": 220
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 0.38712316513992845,
|
| 234 |
+
"epoch": 0.2157978068375066,
|
| 235 |
+
"grad_norm": 0.1630859375,
|
| 236 |
+
"learning_rate": 0.00018567854909318324,
|
| 237 |
+
"loss": 0.3871,
|
| 238 |
+
"mean_token_accuracy": 0.9008511133491993,
|
| 239 |
+
"num_tokens": 3742007.0,
|
| 240 |
+
"step": 230
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 0.3974394467426464,
|
| 244 |
+
"epoch": 0.22518032017826775,
|
| 245 |
+
"grad_norm": 0.1640625,
|
| 246 |
+
"learning_rate": 0.00018505315822388993,
|
| 247 |
+
"loss": 0.39,
|
| 248 |
+
"mean_token_accuracy": 0.9035492207854986,
|
| 249 |
+
"num_tokens": 3904988.0,
|
| 250 |
+
"step": 240
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 0.42329446180956437,
|
| 254 |
+
"epoch": 0.2345628335190289,
|
| 255 |
+
"grad_norm": 0.19140625,
|
| 256 |
+
"learning_rate": 0.00018442776735459664,
|
| 257 |
+
"loss": 0.4136,
|
| 258 |
+
"mean_token_accuracy": 0.9000132424756885,
|
| 259 |
+
"num_tokens": 4067806.0,
|
| 260 |
+
"step": 250
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 0.400798928248696,
|
| 264 |
+
"epoch": 0.24394534685979008,
|
| 265 |
+
"grad_norm": 0.1953125,
|
| 266 |
+
"learning_rate": 0.00018380237648530333,
|
| 267 |
+
"loss": 0.3889,
|
| 268 |
+
"mean_token_accuracy": 0.8984681818634271,
|
| 269 |
+
"num_tokens": 4229588.0,
|
| 270 |
+
"step": 260
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 0.3440579119604081,
|
| 274 |
+
"epoch": 0.2533278602005512,
|
| 275 |
+
"grad_norm": 0.1748046875,
|
| 276 |
+
"learning_rate": 0.00018317698561601001,
|
| 277 |
+
"loss": 0.3355,
|
| 278 |
+
"mean_token_accuracy": 0.9099012993276119,
|
| 279 |
+
"num_tokens": 4391775.0,
|
| 280 |
+
"step": 270
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 0.4088153497781605,
|
| 284 |
+
"epoch": 0.2627103735413124,
|
| 285 |
+
"grad_norm": 0.2060546875,
|
| 286 |
+
"learning_rate": 0.0001825515947467167,
|
| 287 |
+
"loss": 0.3988,
|
| 288 |
+
"mean_token_accuracy": 0.9000191796571017,
|
| 289 |
+
"num_tokens": 4554006.0,
|
| 290 |
+
"step": 280
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 0.49478547936305406,
|
| 294 |
+
"epoch": 0.27209288688207356,
|
| 295 |
+
"grad_norm": 0.1630859375,
|
| 296 |
+
"learning_rate": 0.0001819262038774234,
|
| 297 |
+
"loss": 0.4851,
|
| 298 |
+
"mean_token_accuracy": 0.8896255612373352,
|
| 299 |
+
"num_tokens": 4716601.0,
|
| 300 |
+
"step": 290
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 0.3874137854669243,
|
| 304 |
+
"epoch": 0.2814754002228347,
|
| 305 |
+
"grad_norm": 0.1708984375,
|
| 306 |
+
"learning_rate": 0.0001813008130081301,
|
| 307 |
+
"loss": 0.3811,
|
| 308 |
+
"mean_token_accuracy": 0.9031782140955329,
|
| 309 |
+
"num_tokens": 4879465.0,
|
| 310 |
+
"step": 300
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 0.39499278874136506,
|
| 314 |
+
"epoch": 0.29085791356359586,
|
| 315 |
+
"grad_norm": 0.1796875,
|
| 316 |
+
"learning_rate": 0.00018067542213883679,
|
| 317 |
+
"loss": 0.3859,
|
| 318 |
+
"mean_token_accuracy": 0.9037530291825533,
|
| 319 |
+
"num_tokens": 5041857.0,
|
| 320 |
+
"step": 310
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 0.3148498781956732,
|
| 324 |
+
"epoch": 0.300240426904357,
|
| 325 |
+
"grad_norm": 0.146484375,
|
| 326 |
+
"learning_rate": 0.00018005003126954347,
|
| 327 |
+
"loss": 0.3105,
|
| 328 |
+
"mean_token_accuracy": 0.9153206121176481,
|
| 329 |
+
"num_tokens": 5204416.0,
|
| 330 |
+
"step": 320
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 0.45533317684894425,
|
| 334 |
+
"epoch": 0.30962294024511816,
|
| 335 |
+
"grad_norm": 0.1630859375,
|
| 336 |
+
"learning_rate": 0.00017942464040025016,
|
| 337 |
+
"loss": 0.4477,
|
| 338 |
+
"mean_token_accuracy": 0.8917344063520432,
|
| 339 |
+
"num_tokens": 5366029.0,
|
| 340 |
+
"step": 330
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 0.4512431137613021,
|
| 344 |
+
"epoch": 0.31900545358587934,
|
| 345 |
+
"grad_norm": 0.1787109375,
|
| 346 |
+
"learning_rate": 0.00017879924953095687,
|
| 347 |
+
"loss": 0.4435,
|
| 348 |
+
"mean_token_accuracy": 0.8979733150452376,
|
| 349 |
+
"num_tokens": 5528662.0,
|
| 350 |
+
"step": 340
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 0.43219919862458483,
|
| 354 |
+
"epoch": 0.32838796692664046,
|
| 355 |
+
"grad_norm": 0.1875,
|
| 356 |
+
"learning_rate": 0.00017817385866166353,
|
| 357 |
+
"loss": 0.4255,
|
| 358 |
+
"mean_token_accuracy": 0.8939095275476575,
|
| 359 |
+
"num_tokens": 5691088.0,
|
| 360 |
+
"step": 350
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 0.39246358472155407,
|
| 364 |
+
"epoch": 0.33777048026740164,
|
| 365 |
+
"grad_norm": 0.2060546875,
|
| 366 |
+
"learning_rate": 0.00017754846779237024,
|
| 367 |
+
"loss": 0.3792,
|
| 368 |
+
"mean_token_accuracy": 0.9027158614248038,
|
| 369 |
+
"num_tokens": 5853586.0,
|
| 370 |
+
"step": 360
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 0.38228728668764234,
|
| 374 |
+
"epoch": 0.34715299360816276,
|
| 375 |
+
"grad_norm": 0.158203125,
|
| 376 |
+
"learning_rate": 0.00017692307692307693,
|
| 377 |
+
"loss": 0.3814,
|
| 378 |
+
"mean_token_accuracy": 0.9076376244425773,
|
| 379 |
+
"num_tokens": 6016273.0,
|
| 380 |
+
"step": 370
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 0.34766899450914934,
|
| 384 |
+
"epoch": 0.35653550694892394,
|
| 385 |
+
"grad_norm": 0.16796875,
|
| 386 |
+
"learning_rate": 0.00017629768605378362,
|
| 387 |
+
"loss": 0.339,
|
| 388 |
+
"mean_token_accuracy": 0.9132196143269539,
|
| 389 |
+
"num_tokens": 6179608.0,
|
| 390 |
+
"step": 380
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 0.419576386269182,
|
| 394 |
+
"epoch": 0.3659180202896851,
|
| 395 |
+
"grad_norm": 0.150390625,
|
| 396 |
+
"learning_rate": 0.0001756722951844903,
|
| 397 |
+
"loss": 0.4081,
|
| 398 |
+
"mean_token_accuracy": 0.902265278249979,
|
| 399 |
+
"num_tokens": 6342688.0,
|
| 400 |
+
"step": 390
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 0.34522315053036434,
|
| 404 |
+
"epoch": 0.37530053363044624,
|
| 405 |
+
"grad_norm": 0.16796875,
|
| 406 |
+
"learning_rate": 0.00017504690431519702,
|
| 407 |
+
"loss": 0.3398,
|
| 408 |
+
"mean_token_accuracy": 0.9103329949080944,
|
| 409 |
+
"num_tokens": 6505076.0,
|
| 410 |
+
"step": 400
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 0.3350997743313201,
|
| 414 |
+
"epoch": 0.3846830469712074,
|
| 415 |
+
"grad_norm": 0.1611328125,
|
| 416 |
+
"learning_rate": 0.0001744215134459037,
|
| 417 |
+
"loss": 0.3287,
|
| 418 |
+
"mean_token_accuracy": 0.9135664030909538,
|
| 419 |
+
"num_tokens": 6667428.0,
|
| 420 |
+
"step": 410
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 0.35369435520842674,
|
| 424 |
+
"epoch": 0.39406556031196854,
|
| 425 |
+
"grad_norm": 0.16796875,
|
| 426 |
+
"learning_rate": 0.0001737961225766104,
|
| 427 |
+
"loss": 0.3445,
|
| 428 |
+
"mean_token_accuracy": 0.9136763598769904,
|
| 429 |
+
"num_tokens": 6829952.0,
|
| 430 |
+
"step": 420
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 0.3438279568566941,
|
| 434 |
+
"epoch": 0.4034480736527297,
|
| 435 |
+
"grad_norm": 0.2109375,
|
| 436 |
+
"learning_rate": 0.00017317073170731708,
|
| 437 |
+
"loss": 0.3347,
|
| 438 |
+
"mean_token_accuracy": 0.915488549694419,
|
| 439 |
+
"num_tokens": 6992752.0,
|
| 440 |
+
"step": 430
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 0.36355263493023815,
|
| 444 |
+
"epoch": 0.4128305869934909,
|
| 445 |
+
"grad_norm": 0.134765625,
|
| 446 |
+
"learning_rate": 0.0001725453408380238,
|
| 447 |
+
"loss": 0.3514,
|
| 448 |
+
"mean_token_accuracy": 0.9081276219338179,
|
| 449 |
+
"num_tokens": 7155395.0,
|
| 450 |
+
"step": 440
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 0.4320855587720871,
|
| 454 |
+
"epoch": 0.422213100334252,
|
| 455 |
+
"grad_norm": 0.1787109375,
|
| 456 |
+
"learning_rate": 0.00017191994996873047,
|
| 457 |
+
"loss": 0.4275,
|
| 458 |
+
"mean_token_accuracy": 0.8996547561138868,
|
| 459 |
+
"num_tokens": 7317871.0,
|
| 460 |
+
"step": 450
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 0.35265264644986016,
|
| 464 |
+
"epoch": 0.4315956136750132,
|
| 465 |
+
"grad_norm": 0.1767578125,
|
| 466 |
+
"learning_rate": 0.00017129455909943713,
|
| 467 |
+
"loss": 0.346,
|
| 468 |
+
"mean_token_accuracy": 0.911245071515441,
|
| 469 |
+
"num_tokens": 7480566.0,
|
| 470 |
+
"step": 460
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 0.38030760866822677,
|
| 474 |
+
"epoch": 0.4409781270157743,
|
| 475 |
+
"grad_norm": 0.17578125,
|
| 476 |
+
"learning_rate": 0.00017066916823014385,
|
| 477 |
+
"loss": 0.3737,
|
| 478 |
+
"mean_token_accuracy": 0.9052736137062312,
|
| 479 |
+
"num_tokens": 7642808.0,
|
| 480 |
+
"step": 470
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 0.37449472132138906,
|
| 484 |
+
"epoch": 0.4503606403565355,
|
| 485 |
+
"grad_norm": 0.1923828125,
|
| 486 |
+
"learning_rate": 0.00017004377736085053,
|
| 487 |
+
"loss": 0.3668,
|
| 488 |
+
"mean_token_accuracy": 0.9072099477052689,
|
| 489 |
+
"num_tokens": 7806054.0,
|
| 490 |
+
"step": 480
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 0.38983453994151207,
|
| 494 |
+
"epoch": 0.4597431536972967,
|
| 495 |
+
"grad_norm": 0.1533203125,
|
| 496 |
+
"learning_rate": 0.00016941838649155725,
|
| 497 |
+
"loss": 0.3804,
|
| 498 |
+
"mean_token_accuracy": 0.9052108563482761,
|
| 499 |
+
"num_tokens": 7968208.0,
|
| 500 |
+
"step": 490
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 0.3876548252766952,
|
| 504 |
+
"epoch": 0.4691256670380578,
|
| 505 |
+
"grad_norm": 0.1953125,
|
| 506 |
+
"learning_rate": 0.0001687929956222639,
|
| 507 |
+
"loss": 0.3825,
|
| 508 |
+
"mean_token_accuracy": 0.9071293246001005,
|
| 509 |
+
"num_tokens": 8130444.0,
|
| 510 |
+
"step": 500
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"entropy": 0.35602071137400343,
|
| 514 |
+
"epoch": 0.478508180378819,
|
| 515 |
+
"grad_norm": 0.1748046875,
|
| 516 |
+
"learning_rate": 0.00016816760475297062,
|
| 517 |
+
"loss": 0.3484,
|
| 518 |
+
"mean_token_accuracy": 0.9137960843741894,
|
| 519 |
+
"num_tokens": 8292618.0,
|
| 520 |
+
"step": 510
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"entropy": 0.4106741435127333,
|
| 524 |
+
"epoch": 0.48789069371958016,
|
| 525 |
+
"grad_norm": 0.181640625,
|
| 526 |
+
"learning_rate": 0.0001675422138836773,
|
| 527 |
+
"loss": 0.3968,
|
| 528 |
+
"mean_token_accuracy": 0.9058029960840941,
|
| 529 |
+
"num_tokens": 8455547.0,
|
| 530 |
+
"step": 520
|
| 531 |
+
},
|
| 532 |
+
{
|
| 533 |
+
"entropy": 0.35365958177717405,
|
| 534 |
+
"epoch": 0.4972732070603413,
|
| 535 |
+
"grad_norm": 0.171875,
|
| 536 |
+
"learning_rate": 0.000166916823014384,
|
| 537 |
+
"loss": 0.349,
|
| 538 |
+
"mean_token_accuracy": 0.9107609067112208,
|
| 539 |
+
"num_tokens": 8617389.0,
|
| 540 |
+
"step": 530
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"entropy": 0.3634562706924044,
|
| 544 |
+
"epoch": 0.5066557204011024,
|
| 545 |
+
"grad_norm": 0.1494140625,
|
| 546 |
+
"learning_rate": 0.00016629143214509068,
|
| 547 |
+
"loss": 0.3559,
|
| 548 |
+
"mean_token_accuracy": 0.9100410873070359,
|
| 549 |
+
"num_tokens": 8779770.0,
|
| 550 |
+
"step": 540
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"entropy": 0.32272221232997256,
|
| 554 |
+
"epoch": 0.5160382337418636,
|
| 555 |
+
"grad_norm": 0.1767578125,
|
| 556 |
+
"learning_rate": 0.0001656660412757974,
|
| 557 |
+
"loss": 0.3192,
|
| 558 |
+
"mean_token_accuracy": 0.9185531191527844,
|
| 559 |
+
"num_tokens": 8942167.0,
|
| 560 |
+
"step": 550
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"entropy": 0.3944925616728142,
|
| 564 |
+
"epoch": 0.5254207470826248,
|
| 565 |
+
"grad_norm": 0.189453125,
|
| 566 |
+
"learning_rate": 0.00016504065040650408,
|
| 567 |
+
"loss": 0.3822,
|
| 568 |
+
"mean_token_accuracy": 0.9070056907832622,
|
| 569 |
+
"num_tokens": 9104106.0,
|
| 570 |
+
"step": 560
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"entropy": 0.34754261119524016,
|
| 574 |
+
"epoch": 0.5348032604233859,
|
| 575 |
+
"grad_norm": 0.1923828125,
|
| 576 |
+
"learning_rate": 0.00016441525953721076,
|
| 577 |
+
"loss": 0.341,
|
| 578 |
+
"mean_token_accuracy": 0.9133739612996579,
|
| 579 |
+
"num_tokens": 9266326.0,
|
| 580 |
+
"step": 570
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"entropy": 0.36407561659580095,
|
| 584 |
+
"epoch": 0.5441857737641471,
|
| 585 |
+
"grad_norm": 0.146484375,
|
| 586 |
+
"learning_rate": 0.00016378986866791745,
|
| 587 |
+
"loss": 0.355,
|
| 588 |
+
"mean_token_accuracy": 0.9110283955931664,
|
| 589 |
+
"num_tokens": 9428809.0,
|
| 590 |
+
"step": 580
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"entropy": 0.36490103751420977,
|
| 594 |
+
"epoch": 0.5535682871049082,
|
| 595 |
+
"grad_norm": 0.14453125,
|
| 596 |
+
"learning_rate": 0.00016316447779862414,
|
| 597 |
+
"loss": 0.3606,
|
| 598 |
+
"mean_token_accuracy": 0.9129387583583594,
|
| 599 |
+
"num_tokens": 9591549.0,
|
| 600 |
+
"step": 590
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"entropy": 0.4403200134751387,
|
| 604 |
+
"epoch": 0.5629508004456694,
|
| 605 |
+
"grad_norm": 0.1630859375,
|
| 606 |
+
"learning_rate": 0.00016253908692933085,
|
| 607 |
+
"loss": 0.4352,
|
| 608 |
+
"mean_token_accuracy": 0.9009242281317711,
|
| 609 |
+
"num_tokens": 9754490.0,
|
| 610 |
+
"step": 600
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"entropy": 0.3376986944698729,
|
| 614 |
+
"epoch": 0.5723333137864305,
|
| 615 |
+
"grad_norm": 0.2099609375,
|
| 616 |
+
"learning_rate": 0.00016191369606003754,
|
| 617 |
+
"loss": 0.3271,
|
| 618 |
+
"mean_token_accuracy": 0.9162716951221228,
|
| 619 |
+
"num_tokens": 9917345.0,
|
| 620 |
+
"step": 610
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"entropy": 0.30342430413002147,
|
| 624 |
+
"epoch": 0.5817158271271917,
|
| 625 |
+
"grad_norm": 0.2041015625,
|
| 626 |
+
"learning_rate": 0.00016128830519074422,
|
| 627 |
+
"loss": 0.2956,
|
| 628 |
+
"mean_token_accuracy": 0.9222736719995737,
|
| 629 |
+
"num_tokens": 10079523.0,
|
| 630 |
+
"step": 620
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"entropy": 0.39200085022021086,
|
| 634 |
+
"epoch": 0.5910983404679528,
|
| 635 |
+
"grad_norm": 0.1806640625,
|
| 636 |
+
"learning_rate": 0.0001606629143214509,
|
| 637 |
+
"loss": 0.3825,
|
| 638 |
+
"mean_token_accuracy": 0.9086053863167762,
|
| 639 |
+
"num_tokens": 10241691.0,
|
| 640 |
+
"step": 630
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"entropy": 0.3571344430092722,
|
| 644 |
+
"epoch": 0.600480853808714,
|
| 645 |
+
"grad_norm": 0.17578125,
|
| 646 |
+
"learning_rate": 0.00016003752345215762,
|
| 647 |
+
"loss": 0.3541,
|
| 648 |
+
"mean_token_accuracy": 0.9139539418742061,
|
| 649 |
+
"num_tokens": 10404189.0,
|
| 650 |
+
"step": 640
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"entropy": 0.34833492621546613,
|
| 654 |
+
"epoch": 0.6098633671494752,
|
| 655 |
+
"grad_norm": 0.1533203125,
|
| 656 |
+
"learning_rate": 0.00015941213258286428,
|
| 657 |
+
"loss": 0.3376,
|
| 658 |
+
"mean_token_accuracy": 0.9150689322501421,
|
| 659 |
+
"num_tokens": 10566544.0,
|
| 660 |
+
"step": 650
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"entropy": 0.3005343694472685,
|
| 664 |
+
"epoch": 0.6192458804902363,
|
| 665 |
+
"grad_norm": 0.158203125,
|
| 666 |
+
"learning_rate": 0.000158786741713571,
|
| 667 |
+
"loss": 0.2928,
|
| 668 |
+
"mean_token_accuracy": 0.9205218695104123,
|
| 669 |
+
"num_tokens": 10728072.0,
|
| 670 |
+
"step": 660
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"entropy": 0.28468642103252934,
|
| 674 |
+
"epoch": 0.6286283938309974,
|
| 675 |
+
"grad_norm": 0.1572265625,
|
| 676 |
+
"learning_rate": 0.00015816135084427768,
|
| 677 |
+
"loss": 0.2813,
|
| 678 |
+
"mean_token_accuracy": 0.9226693190634251,
|
| 679 |
+
"num_tokens": 10890089.0,
|
| 680 |
+
"step": 670
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"entropy": 0.3512667278526351,
|
| 684 |
+
"epoch": 0.6380109071717587,
|
| 685 |
+
"grad_norm": 0.15625,
|
| 686 |
+
"learning_rate": 0.0001575359599749844,
|
| 687 |
+
"loss": 0.3421,
|
| 688 |
+
"mean_token_accuracy": 0.9135142650455237,
|
| 689 |
+
"num_tokens": 11052295.0,
|
| 690 |
+
"step": 680
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"entropy": 0.38745955675840377,
|
| 694 |
+
"epoch": 0.6473934205125198,
|
| 695 |
+
"grad_norm": 0.16015625,
|
| 696 |
+
"learning_rate": 0.00015691056910569105,
|
| 697 |
+
"loss": 0.3774,
|
| 698 |
+
"mean_token_accuracy": 0.9076902076601983,
|
| 699 |
+
"num_tokens": 11214249.0,
|
| 700 |
+
"step": 690
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"entropy": 0.3123638934805058,
|
| 704 |
+
"epoch": 0.6567759338532809,
|
| 705 |
+
"grad_norm": 0.1669921875,
|
| 706 |
+
"learning_rate": 0.00015628517823639777,
|
| 707 |
+
"loss": 0.3099,
|
| 708 |
+
"mean_token_accuracy": 0.9233202930539847,
|
| 709 |
+
"num_tokens": 11377548.0,
|
| 710 |
+
"step": 700
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"entropy": 0.36946490925038233,
|
| 714 |
+
"epoch": 0.6661584471940422,
|
| 715 |
+
"grad_norm": 0.1572265625,
|
| 716 |
+
"learning_rate": 0.00015565978736710445,
|
| 717 |
+
"loss": 0.3584,
|
| 718 |
+
"mean_token_accuracy": 0.9100467972457409,
|
| 719 |
+
"num_tokens": 11539730.0,
|
| 720 |
+
"step": 710
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"entropy": 0.44331123513402415,
|
| 724 |
+
"epoch": 0.6755409605348033,
|
| 725 |
+
"grad_norm": 0.185546875,
|
| 726 |
+
"learning_rate": 0.00015503439649781114,
|
| 727 |
+
"loss": 0.4357,
|
| 728 |
+
"mean_token_accuracy": 0.9018381554633379,
|
| 729 |
+
"num_tokens": 11702656.0,
|
| 730 |
+
"step": 720
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"entropy": 0.35576051749521864,
|
| 734 |
+
"epoch": 0.6849234738755644,
|
| 735 |
+
"grad_norm": 0.1396484375,
|
| 736 |
+
"learning_rate": 0.00015440900562851783,
|
| 737 |
+
"loss": 0.3529,
|
| 738 |
+
"mean_token_accuracy": 0.9145626701414585,
|
| 739 |
+
"num_tokens": 11866221.0,
|
| 740 |
+
"step": 730
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"entropy": 0.3530123558419291,
|
| 744 |
+
"epoch": 0.6943059872163255,
|
| 745 |
+
"grad_norm": 0.1982421875,
|
| 746 |
+
"learning_rate": 0.0001537836147592245,
|
| 747 |
+
"loss": 0.3413,
|
| 748 |
+
"mean_token_accuracy": 0.9174593914300203,
|
| 749 |
+
"num_tokens": 12028438.0,
|
| 750 |
+
"step": 740
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"entropy": 0.3903426473028958,
|
| 754 |
+
"epoch": 0.7036885005570868,
|
| 755 |
+
"grad_norm": 0.1953125,
|
| 756 |
+
"learning_rate": 0.00015315822388993123,
|
| 757 |
+
"loss": 0.385,
|
| 758 |
+
"mean_token_accuracy": 0.9088658891618252,
|
| 759 |
+
"num_tokens": 12190615.0,
|
| 760 |
+
"step": 750
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"entropy": 0.3577064266020898,
|
| 764 |
+
"epoch": 0.7130710138978479,
|
| 765 |
+
"grad_norm": 0.154296875,
|
| 766 |
+
"learning_rate": 0.0001525328330206379,
|
| 767 |
+
"loss": 0.3477,
|
| 768 |
+
"mean_token_accuracy": 0.9163919541984796,
|
| 769 |
+
"num_tokens": 12353059.0,
|
| 770 |
+
"step": 760
|
| 771 |
+
},
|
| 772 |
+
{
|
| 773 |
+
"entropy": 0.29131998592056335,
|
| 774 |
+
"epoch": 0.722453527238609,
|
| 775 |
+
"grad_norm": 0.1689453125,
|
| 776 |
+
"learning_rate": 0.0001519074421513446,
|
| 777 |
+
"loss": 0.2891,
|
| 778 |
+
"mean_token_accuracy": 0.9242078192532063,
|
| 779 |
+
"num_tokens": 12515436.0,
|
| 780 |
+
"step": 770
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"entropy": 0.3846006996463984,
|
| 784 |
+
"epoch": 0.7318360405793702,
|
| 785 |
+
"grad_norm": 0.193359375,
|
| 786 |
+
"learning_rate": 0.00015128205128205128,
|
| 787 |
+
"loss": 0.3775,
|
| 788 |
+
"mean_token_accuracy": 0.9100886223837733,
|
| 789 |
+
"num_tokens": 12677546.0,
|
| 790 |
+
"step": 780
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"entropy": 0.34870610454818235,
|
| 794 |
+
"epoch": 0.7412185539201314,
|
| 795 |
+
"grad_norm": 0.1728515625,
|
| 796 |
+
"learning_rate": 0.000150656660412758,
|
| 797 |
+
"loss": 0.3401,
|
| 798 |
+
"mean_token_accuracy": 0.9157310061156749,
|
| 799 |
+
"num_tokens": 12840366.0,
|
| 800 |
+
"step": 790
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"entropy": 0.33407560451305474,
|
| 804 |
+
"epoch": 0.7506010672608925,
|
| 805 |
+
"grad_norm": 0.169921875,
|
| 806 |
+
"learning_rate": 0.00015003126954346466,
|
| 807 |
+
"loss": 0.3285,
|
| 808 |
+
"mean_token_accuracy": 0.9150595877319574,
|
| 809 |
+
"num_tokens": 13002637.0,
|
| 810 |
+
"step": 800
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"entropy": 0.33455972147057766,
|
| 814 |
+
"epoch": 0.7599835806016537,
|
| 815 |
+
"grad_norm": 0.173828125,
|
| 816 |
+
"learning_rate": 0.00014940587867417137,
|
| 817 |
+
"loss": 0.3268,
|
| 818 |
+
"mean_token_accuracy": 0.9206027369946241,
|
| 819 |
+
"num_tokens": 13165555.0,
|
| 820 |
+
"step": 810
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"entropy": 0.3760374941455666,
|
| 824 |
+
"epoch": 0.7693660939424148,
|
| 825 |
+
"grad_norm": 0.212890625,
|
| 826 |
+
"learning_rate": 0.00014878048780487806,
|
| 827 |
+
"loss": 0.3689,
|
| 828 |
+
"mean_token_accuracy": 0.9126812819391489,
|
| 829 |
+
"num_tokens": 13328334.0,
|
| 830 |
+
"step": 820
|
| 831 |
+
},
|
| 832 |
+
{
|
| 833 |
+
"entropy": 0.4276343748439103,
|
| 834 |
+
"epoch": 0.778748607283176,
|
| 835 |
+
"grad_norm": 0.16015625,
|
| 836 |
+
"learning_rate": 0.00014815509693558477,
|
| 837 |
+
"loss": 0.4228,
|
| 838 |
+
"mean_token_accuracy": 0.9042647287249566,
|
| 839 |
+
"num_tokens": 13490265.0,
|
| 840 |
+
"step": 830
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"entropy": 0.35269592416007073,
|
| 844 |
+
"epoch": 0.7881311206239371,
|
| 845 |
+
"grad_norm": 0.1416015625,
|
| 846 |
+
"learning_rate": 0.00014752970606629143,
|
| 847 |
+
"loss": 0.3436,
|
| 848 |
+
"mean_token_accuracy": 0.9150325283408165,
|
| 849 |
+
"num_tokens": 13652700.0,
|
| 850 |
+
"step": 840
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"entropy": 0.3484025130281225,
|
| 854 |
+
"epoch": 0.7975136339646983,
|
| 855 |
+
"grad_norm": 0.1650390625,
|
| 856 |
+
"learning_rate": 0.00014690431519699812,
|
| 857 |
+
"loss": 0.3433,
|
| 858 |
+
"mean_token_accuracy": 0.9187351956963539,
|
| 859 |
+
"num_tokens": 13814997.0,
|
| 860 |
+
"step": 850
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"entropy": 0.34064410558785313,
|
| 864 |
+
"epoch": 0.8068961473054594,
|
| 865 |
+
"grad_norm": 0.169921875,
|
| 866 |
+
"learning_rate": 0.00014627892432770483,
|
| 867 |
+
"loss": 0.3319,
|
| 868 |
+
"mean_token_accuracy": 0.917700307443738,
|
| 869 |
+
"num_tokens": 13977550.0,
|
| 870 |
+
"step": 860
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"entropy": 0.3676424361299723,
|
| 874 |
+
"epoch": 0.8162786606462206,
|
| 875 |
+
"grad_norm": 0.1474609375,
|
| 876 |
+
"learning_rate": 0.00014565353345841151,
|
| 877 |
+
"loss": 0.3611,
|
| 878 |
+
"mean_token_accuracy": 0.9167136520147323,
|
| 879 |
+
"num_tokens": 14140493.0,
|
| 880 |
+
"step": 870
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"entropy": 0.3216154734662268,
|
| 884 |
+
"epoch": 0.8256611739869818,
|
| 885 |
+
"grad_norm": 0.1767578125,
|
| 886 |
+
"learning_rate": 0.0001450281425891182,
|
| 887 |
+
"loss": 0.3133,
|
| 888 |
+
"mean_token_accuracy": 0.920833321288228,
|
| 889 |
+
"num_tokens": 14302638.0,
|
| 890 |
+
"step": 880
|
| 891 |
+
},
|
| 892 |
+
{
|
| 893 |
+
"entropy": 0.3731617649958935,
|
| 894 |
+
"epoch": 0.8350436873277429,
|
| 895 |
+
"grad_norm": 0.1640625,
|
| 896 |
+
"learning_rate": 0.0001444027517198249,
|
| 897 |
+
"loss": 0.3708,
|
| 898 |
+
"mean_token_accuracy": 0.9144421305507422,
|
| 899 |
+
"num_tokens": 14465632.0,
|
| 900 |
+
"step": 890
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"entropy": 0.3741735242540017,
|
| 904 |
+
"epoch": 0.844426200668504,
|
| 905 |
+
"grad_norm": 0.1474609375,
|
| 906 |
+
"learning_rate": 0.0001437773608505316,
|
| 907 |
+
"loss": 0.3628,
|
| 908 |
+
"mean_token_accuracy": 0.9130110245198011,
|
| 909 |
+
"num_tokens": 14627986.0,
|
| 910 |
+
"step": 900
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"entropy": 0.363976987201022,
|
| 914 |
+
"epoch": 0.8538087140092653,
|
| 915 |
+
"grad_norm": 0.1611328125,
|
| 916 |
+
"learning_rate": 0.0001431519699812383,
|
| 917 |
+
"loss": 0.3585,
|
| 918 |
+
"mean_token_accuracy": 0.9120528548955917,
|
| 919 |
+
"num_tokens": 14790551.0,
|
| 920 |
+
"step": 910
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"entropy": 0.3448503586114384,
|
| 924 |
+
"epoch": 0.8631912273500264,
|
| 925 |
+
"grad_norm": 0.1533203125,
|
| 926 |
+
"learning_rate": 0.00014252657911194497,
|
| 927 |
+
"loss": 0.3421,
|
| 928 |
+
"mean_token_accuracy": 0.9182739958167077,
|
| 929 |
+
"num_tokens": 14952661.0,
|
| 930 |
+
"step": 920
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"entropy": 0.27787273108260707,
|
| 934 |
+
"epoch": 0.8725737406907875,
|
| 935 |
+
"grad_norm": 0.150390625,
|
| 936 |
+
"learning_rate": 0.00014190118824265166,
|
| 937 |
+
"loss": 0.2687,
|
| 938 |
+
"mean_token_accuracy": 0.92897635884583,
|
| 939 |
+
"num_tokens": 15115022.0,
|
| 940 |
+
"step": 930
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"entropy": 0.36200930876657367,
|
| 944 |
+
"epoch": 0.8819562540315486,
|
| 945 |
+
"grad_norm": 0.150390625,
|
| 946 |
+
"learning_rate": 0.00014127579737335837,
|
| 947 |
+
"loss": 0.3497,
|
| 948 |
+
"mean_token_accuracy": 0.9132607497274876,
|
| 949 |
+
"num_tokens": 15277207.0,
|
| 950 |
+
"step": 940
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"entropy": 0.2834262179443613,
|
| 954 |
+
"epoch": 0.8913387673723099,
|
| 955 |
+
"grad_norm": 0.1494140625,
|
| 956 |
+
"learning_rate": 0.00014065040650406506,
|
| 957 |
+
"loss": 0.2814,
|
| 958 |
+
"mean_token_accuracy": 0.9268792189657689,
|
| 959 |
+
"num_tokens": 15440092.0,
|
| 960 |
+
"step": 950
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"entropy": 0.3499863417411689,
|
| 964 |
+
"epoch": 0.900721280713071,
|
| 965 |
+
"grad_norm": 0.1484375,
|
| 966 |
+
"learning_rate": 0.00014002501563477175,
|
| 967 |
+
"loss": 0.3417,
|
| 968 |
+
"mean_token_accuracy": 0.9159077113494277,
|
| 969 |
+
"num_tokens": 15603417.0,
|
| 970 |
+
"step": 960
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"entropy": 0.2800866418518126,
|
| 974 |
+
"epoch": 0.9101037940538321,
|
| 975 |
+
"grad_norm": 0.1826171875,
|
| 976 |
+
"learning_rate": 0.00013939962476547843,
|
| 977 |
+
"loss": 0.27,
|
| 978 |
+
"mean_token_accuracy": 0.9285330750048161,
|
| 979 |
+
"num_tokens": 15765520.0,
|
| 980 |
+
"step": 970
|
| 981 |
+
},
|
| 982 |
+
{
|
| 983 |
+
"entropy": 0.3038740568445064,
|
| 984 |
+
"epoch": 0.9194863073945934,
|
| 985 |
+
"grad_norm": 0.1669921875,
|
| 986 |
+
"learning_rate": 0.00013877423389618512,
|
| 987 |
+
"loss": 0.2992,
|
| 988 |
+
"mean_token_accuracy": 0.9227856550365686,
|
| 989 |
+
"num_tokens": 15928370.0,
|
| 990 |
+
"step": 980
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"entropy": 0.39133549834950826,
|
| 994 |
+
"epoch": 0.9288688207353545,
|
| 995 |
+
"grad_norm": 0.19921875,
|
| 996 |
+
"learning_rate": 0.0001381488430268918,
|
| 997 |
+
"loss": 0.3845,
|
| 998 |
+
"mean_token_accuracy": 0.9107819177210331,
|
| 999 |
+
"num_tokens": 16090841.0,
|
| 1000 |
+
"step": 990
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"entropy": 0.368834131793119,
|
| 1004 |
+
"epoch": 0.9382513340761156,
|
| 1005 |
+
"grad_norm": 0.16796875,
|
| 1006 |
+
"learning_rate": 0.0001375234521575985,
|
| 1007 |
+
"loss": 0.3592,
|
| 1008 |
+
"mean_token_accuracy": 0.9155494935810566,
|
| 1009 |
+
"num_tokens": 16253510.0,
|
| 1010 |
+
"step": 1000
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"entropy": 0.3432939130580053,
|
| 1014 |
+
"epoch": 0.9476338474168768,
|
| 1015 |
+
"grad_norm": 0.181640625,
|
| 1016 |
+
"learning_rate": 0.0001368980612883052,
|
| 1017 |
+
"loss": 0.3434,
|
| 1018 |
+
"mean_token_accuracy": 0.9178479440510273,
|
| 1019 |
+
"num_tokens": 16416142.0,
|
| 1020 |
+
"step": 1010
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"entropy": 0.3263048173219431,
|
| 1024 |
+
"epoch": 0.957016360757638,
|
| 1025 |
+
"grad_norm": 0.158203125,
|
| 1026 |
+
"learning_rate": 0.0001362726704190119,
|
| 1027 |
+
"loss": 0.3157,
|
| 1028 |
+
"mean_token_accuracy": 0.919898977316916,
|
| 1029 |
+
"num_tokens": 16578145.0,
|
| 1030 |
+
"step": 1020
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"entropy": 0.30497189780580813,
|
| 1034 |
+
"epoch": 0.9663988740983991,
|
| 1035 |
+
"grad_norm": 0.162109375,
|
| 1036 |
+
"learning_rate": 0.00013564727954971858,
|
| 1037 |
+
"loss": 0.2985,
|
| 1038 |
+
"mean_token_accuracy": 0.922874777764082,
|
| 1039 |
+
"num_tokens": 16741103.0,
|
| 1040 |
+
"step": 1030
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"entropy": 0.2940454826748464,
|
| 1044 |
+
"epoch": 0.9757813874391603,
|
| 1045 |
+
"grad_norm": 0.1689453125,
|
| 1046 |
+
"learning_rate": 0.00013502188868042526,
|
| 1047 |
+
"loss": 0.2874,
|
| 1048 |
+
"mean_token_accuracy": 0.9239259999245405,
|
| 1049 |
+
"num_tokens": 16903947.0,
|
| 1050 |
+
"step": 1040
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"entropy": 0.367372212279588,
|
| 1054 |
+
"epoch": 0.9851639007799214,
|
| 1055 |
+
"grad_norm": 0.1748046875,
|
| 1056 |
+
"learning_rate": 0.00013439649781113198,
|
| 1057 |
+
"loss": 0.3601,
|
| 1058 |
+
"mean_token_accuracy": 0.9152833472937345,
|
| 1059 |
+
"num_tokens": 17065800.0,
|
| 1060 |
+
"step": 1050
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"entropy": 0.34914421315770594,
|
| 1064 |
+
"epoch": 0.9945464141206826,
|
| 1065 |
+
"grad_norm": 0.1826171875,
|
| 1066 |
+
"learning_rate": 0.00013377110694183866,
|
| 1067 |
+
"loss": 0.3425,
|
| 1068 |
+
"mean_token_accuracy": 0.9175648283213377,
|
| 1069 |
+
"num_tokens": 17228736.0,
|
| 1070 |
+
"step": 1060
|
| 1071 |
+
},
|
| 1072 |
+
{
|
| 1073 |
+
"entropy": 0.2900184833320083,
|
| 1074 |
+
"epoch": 1.0037530053363044,
|
| 1075 |
+
"grad_norm": 0.13671875,
|
| 1076 |
+
"learning_rate": 0.00013314571607254535,
|
| 1077 |
+
"loss": 0.2782,
|
| 1078 |
+
"mean_token_accuracy": 0.9317144804699405,
|
| 1079 |
+
"num_tokens": 17388924.0,
|
| 1080 |
+
"step": 1070
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"entropy": 0.2829561754653696,
|
| 1084 |
+
"epoch": 1.0131355186770656,
|
| 1085 |
+
"grad_norm": 0.1259765625,
|
| 1086 |
+
"learning_rate": 0.00013252032520325203,
|
| 1087 |
+
"loss": 0.2765,
|
| 1088 |
+
"mean_token_accuracy": 0.9315391689538955,
|
| 1089 |
+
"num_tokens": 17550836.0,
|
| 1090 |
+
"step": 1080
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"entropy": 0.3159750218328554,
|
| 1094 |
+
"epoch": 1.0225180320178269,
|
| 1095 |
+
"grad_norm": 0.154296875,
|
| 1096 |
+
"learning_rate": 0.00013189493433395872,
|
| 1097 |
+
"loss": 0.3097,
|
| 1098 |
+
"mean_token_accuracy": 0.924969544634223,
|
| 1099 |
+
"num_tokens": 17713453.0,
|
| 1100 |
+
"step": 1090
|
| 1101 |
+
},
|
| 1102 |
+
{
|
| 1103 |
+
"entropy": 0.3149459302192554,
|
| 1104 |
+
"epoch": 1.0319005453585879,
|
| 1105 |
+
"grad_norm": 0.181640625,
|
| 1106 |
+
"learning_rate": 0.00013126954346466543,
|
| 1107 |
+
"loss": 0.307,
|
| 1108 |
+
"mean_token_accuracy": 0.9239892680197954,
|
| 1109 |
+
"num_tokens": 17875306.0,
|
| 1110 |
+
"step": 1100
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"entropy": 0.3264659658656456,
|
| 1114 |
+
"epoch": 1.0412830586993491,
|
| 1115 |
+
"grad_norm": 0.140625,
|
| 1116 |
+
"learning_rate": 0.0001306441525953721,
|
| 1117 |
+
"loss": 0.3177,
|
| 1118 |
+
"mean_token_accuracy": 0.9219260595738887,
|
| 1119 |
+
"num_tokens": 18037829.0,
|
| 1120 |
+
"step": 1110
|
| 1121 |
+
},
|
| 1122 |
+
{
|
| 1123 |
+
"entropy": 0.3119678142364137,
|
| 1124 |
+
"epoch": 1.0506655720401104,
|
| 1125 |
+
"grad_norm": 0.1376953125,
|
| 1126 |
+
"learning_rate": 0.0001300187617260788,
|
| 1127 |
+
"loss": 0.3047,
|
| 1128 |
+
"mean_token_accuracy": 0.9250960987061262,
|
| 1129 |
+
"num_tokens": 18201027.0,
|
| 1130 |
+
"step": 1120
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"entropy": 0.3200692283746321,
|
| 1134 |
+
"epoch": 1.0600480853808714,
|
| 1135 |
+
"grad_norm": 0.115234375,
|
| 1136 |
+
"learning_rate": 0.0001293933708567855,
|
| 1137 |
+
"loss": 0.3129,
|
| 1138 |
+
"mean_token_accuracy": 0.9225547250360251,
|
| 1139 |
+
"num_tokens": 18364107.0,
|
| 1140 |
+
"step": 1130
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"entropy": 0.2799913567607291,
|
| 1144 |
+
"epoch": 1.0694305987216326,
|
| 1145 |
+
"grad_norm": 0.1865234375,
|
| 1146 |
+
"learning_rate": 0.0001287679799874922,
|
| 1147 |
+
"loss": 0.2668,
|
| 1148 |
+
"mean_token_accuracy": 0.9307141672819853,
|
| 1149 |
+
"num_tokens": 18526662.0,
|
| 1150 |
+
"step": 1140
|
| 1151 |
+
},
|
| 1152 |
+
{
|
| 1153 |
+
"entropy": 0.3025812109815888,
|
| 1154 |
+
"epoch": 1.0788131120623938,
|
| 1155 |
+
"grad_norm": 0.1728515625,
|
| 1156 |
+
"learning_rate": 0.00012814258911819887,
|
| 1157 |
+
"loss": 0.3015,
|
| 1158 |
+
"mean_token_accuracy": 0.9235180430114269,
|
| 1159 |
+
"num_tokens": 18689065.0,
|
| 1160 |
+
"step": 1150
|
| 1161 |
+
},
|
| 1162 |
+
{
|
| 1163 |
+
"entropy": 0.2885304512223229,
|
| 1164 |
+
"epoch": 1.0881956254031548,
|
| 1165 |
+
"grad_norm": 0.263671875,
|
| 1166 |
+
"learning_rate": 0.00012751719824890558,
|
| 1167 |
+
"loss": 0.2786,
|
| 1168 |
+
"mean_token_accuracy": 0.9279053185135127,
|
| 1169 |
+
"num_tokens": 18851798.0,
|
| 1170 |
+
"step": 1160
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"entropy": 0.33722220184863544,
|
| 1174 |
+
"epoch": 1.097578138743916,
|
| 1175 |
+
"grad_norm": 0.1962890625,
|
| 1176 |
+
"learning_rate": 0.00012689180737961227,
|
| 1177 |
+
"loss": 0.3301,
|
| 1178 |
+
"mean_token_accuracy": 0.9198755659162998,
|
| 1179 |
+
"num_tokens": 19013951.0,
|
| 1180 |
+
"step": 1170
|
| 1181 |
+
},
|
| 1182 |
+
{
|
| 1183 |
+
"entropy": 0.35752617044490764,
|
| 1184 |
+
"epoch": 1.106960652084677,
|
| 1185 |
+
"grad_norm": 0.1826171875,
|
| 1186 |
+
"learning_rate": 0.00012626641651031895,
|
| 1187 |
+
"loss": 0.3525,
|
| 1188 |
+
"mean_token_accuracy": 0.9136955734342337,
|
| 1189 |
+
"num_tokens": 19176391.0,
|
| 1190 |
+
"step": 1180
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"entropy": 0.3285738020436838,
|
| 1194 |
+
"epoch": 1.1163431654254383,
|
| 1195 |
+
"grad_norm": 0.169921875,
|
| 1196 |
+
"learning_rate": 0.00012564102564102564,
|
| 1197 |
+
"loss": 0.3174,
|
| 1198 |
+
"mean_token_accuracy": 0.923049738816917,
|
| 1199 |
+
"num_tokens": 19338315.0,
|
| 1200 |
+
"step": 1190
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"entropy": 0.33181785854394547,
|
| 1204 |
+
"epoch": 1.1257256787661996,
|
| 1205 |
+
"grad_norm": 0.154296875,
|
| 1206 |
+
"learning_rate": 0.00012501563477173235,
|
| 1207 |
+
"loss": 0.3252,
|
| 1208 |
+
"mean_token_accuracy": 0.9195261619985103,
|
| 1209 |
+
"num_tokens": 19501276.0,
|
| 1210 |
+
"step": 1200
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"entropy": 0.33468560994951985,
|
| 1214 |
+
"epoch": 1.1351081921069606,
|
| 1215 |
+
"grad_norm": 0.1630859375,
|
| 1216 |
+
"learning_rate": 0.00012439024390243904,
|
| 1217 |
+
"loss": 0.3297,
|
| 1218 |
+
"mean_token_accuracy": 0.9180046692490578,
|
| 1219 |
+
"num_tokens": 19663199.0,
|
| 1220 |
+
"step": 1210
|
| 1221 |
+
},
|
| 1222 |
+
{
|
| 1223 |
+
"entropy": 0.35496956037823113,
|
| 1224 |
+
"epoch": 1.1444907054477218,
|
| 1225 |
+
"grad_norm": 0.14453125,
|
| 1226 |
+
"learning_rate": 0.00012376485303314572,
|
| 1227 |
+
"loss": 0.3452,
|
| 1228 |
+
"mean_token_accuracy": 0.9190296337008477,
|
| 1229 |
+
"num_tokens": 19825833.0,
|
| 1230 |
+
"step": 1220
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"entropy": 0.3228163967374712,
|
| 1234 |
+
"epoch": 1.153873218788483,
|
| 1235 |
+
"grad_norm": 0.173828125,
|
| 1236 |
+
"learning_rate": 0.0001231394621638524,
|
| 1237 |
+
"loss": 0.3184,
|
| 1238 |
+
"mean_token_accuracy": 0.9187171328812838,
|
| 1239 |
+
"num_tokens": 19988129.0,
|
| 1240 |
+
"step": 1230
|
| 1241 |
+
},
|
| 1242 |
+
{
|
| 1243 |
+
"entropy": 0.36049368806998244,
|
| 1244 |
+
"epoch": 1.163255732129244,
|
| 1245 |
+
"grad_norm": 0.177734375,
|
| 1246 |
+
"learning_rate": 0.0001225140712945591,
|
| 1247 |
+
"loss": 0.3561,
|
| 1248 |
+
"mean_token_accuracy": 0.9135892525315285,
|
| 1249 |
+
"num_tokens": 20149704.0,
|
| 1250 |
+
"step": 1240
|
| 1251 |
+
},
|
| 1252 |
+
{
|
| 1253 |
+
"entropy": 0.29329942048643715,
|
| 1254 |
+
"epoch": 1.1726382454700053,
|
| 1255 |
+
"grad_norm": 0.1982421875,
|
| 1256 |
+
"learning_rate": 0.0001218886804252658,
|
| 1257 |
+
"loss": 0.2808,
|
| 1258 |
+
"mean_token_accuracy": 0.9278272874653339,
|
| 1259 |
+
"num_tokens": 20312458.0,
|
| 1260 |
+
"step": 1250
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"entropy": 0.3245240814285353,
|
| 1264 |
+
"epoch": 1.1820207588107665,
|
| 1265 |
+
"grad_norm": 0.1328125,
|
| 1266 |
+
"learning_rate": 0.00012126328955597248,
|
| 1267 |
+
"loss": 0.3206,
|
| 1268 |
+
"mean_token_accuracy": 0.9241520136594772,
|
| 1269 |
+
"num_tokens": 20474875.0,
|
| 1270 |
+
"step": 1260
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"entropy": 0.31488763078814375,
|
| 1274 |
+
"epoch": 1.1914032721515275,
|
| 1275 |
+
"grad_norm": 0.134765625,
|
| 1276 |
+
"learning_rate": 0.00012063789868667918,
|
| 1277 |
+
"loss": 0.3092,
|
| 1278 |
+
"mean_token_accuracy": 0.9249691208824515,
|
| 1279 |
+
"num_tokens": 20636775.0,
|
| 1280 |
+
"step": 1270
|
| 1281 |
+
},
|
| 1282 |
+
{
|
| 1283 |
+
"entropy": 0.32809503517928534,
|
| 1284 |
+
"epoch": 1.2007857854922888,
|
| 1285 |
+
"grad_norm": 0.1748046875,
|
| 1286 |
+
"learning_rate": 0.00012001250781738587,
|
| 1287 |
+
"loss": 0.3175,
|
| 1288 |
+
"mean_token_accuracy": 0.9244366209954024,
|
| 1289 |
+
"num_tokens": 20799311.0,
|
| 1290 |
+
"step": 1280
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"entropy": 0.3452982397924643,
|
| 1294 |
+
"epoch": 1.21016829883305,
|
| 1295 |
+
"grad_norm": 0.1337890625,
|
| 1296 |
+
"learning_rate": 0.00011938711694809257,
|
| 1297 |
+
"loss": 0.3417,
|
| 1298 |
+
"mean_token_accuracy": 0.9209324043244124,
|
| 1299 |
+
"num_tokens": 20961671.0,
|
| 1300 |
+
"step": 1290
|
| 1301 |
+
},
|
| 1302 |
+
{
|
| 1303 |
+
"entropy": 0.33462724700802937,
|
| 1304 |
+
"epoch": 1.219550812173811,
|
| 1305 |
+
"grad_norm": 0.1728515625,
|
| 1306 |
+
"learning_rate": 0.00011876172607879925,
|
| 1307 |
+
"loss": 0.3274,
|
| 1308 |
+
"mean_token_accuracy": 0.9196479767560959,
|
| 1309 |
+
"num_tokens": 21124643.0,
|
| 1310 |
+
"step": 1300
|
| 1311 |
+
},
|
| 1312 |
+
{
|
| 1313 |
+
"entropy": 0.32381630715099163,
|
| 1314 |
+
"epoch": 1.2289333255145722,
|
| 1315 |
+
"grad_norm": 0.1376953125,
|
| 1316 |
+
"learning_rate": 0.00011813633520950595,
|
| 1317 |
+
"loss": 0.3161,
|
| 1318 |
+
"mean_token_accuracy": 0.9226799987256527,
|
| 1319 |
+
"num_tokens": 21286738.0,
|
| 1320 |
+
"step": 1310
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"entropy": 0.3411265324510168,
|
| 1324 |
+
"epoch": 1.2383158388553333,
|
| 1325 |
+
"grad_norm": 0.1533203125,
|
| 1326 |
+
"learning_rate": 0.00011751094434021264,
|
| 1327 |
+
"loss": 0.3347,
|
| 1328 |
+
"mean_token_accuracy": 0.9211051788181066,
|
| 1329 |
+
"num_tokens": 21448827.0,
|
| 1330 |
+
"step": 1320
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"entropy": 0.32648798704030924,
|
| 1334 |
+
"epoch": 1.2476983521960945,
|
| 1335 |
+
"grad_norm": 0.1669921875,
|
| 1336 |
+
"learning_rate": 0.00011688555347091934,
|
| 1337 |
+
"loss": 0.3159,
|
| 1338 |
+
"mean_token_accuracy": 0.922034990042448,
|
| 1339 |
+
"num_tokens": 21610617.0,
|
| 1340 |
+
"step": 1330
|
| 1341 |
+
},
|
| 1342 |
+
{
|
| 1343 |
+
"entropy": 0.3225275243108626,
|
| 1344 |
+
"epoch": 1.2570808655368557,
|
| 1345 |
+
"grad_norm": 0.1337890625,
|
| 1346 |
+
"learning_rate": 0.00011626016260162603,
|
| 1347 |
+
"loss": 0.3217,
|
| 1348 |
+
"mean_token_accuracy": 0.924454814940691,
|
| 1349 |
+
"num_tokens": 21773343.0,
|
| 1350 |
+
"step": 1340
|
| 1351 |
+
},
|
| 1352 |
+
{
|
| 1353 |
+
"entropy": 0.31472907413262874,
|
| 1354 |
+
"epoch": 1.2664633788776167,
|
| 1355 |
+
"grad_norm": 0.158203125,
|
| 1356 |
+
"learning_rate": 0.0001156347717323327,
|
| 1357 |
+
"loss": 0.3056,
|
| 1358 |
+
"mean_token_accuracy": 0.9251250382512808,
|
| 1359 |
+
"num_tokens": 21936161.0,
|
| 1360 |
+
"step": 1350
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"entropy": 0.34041504978667947,
|
| 1364 |
+
"epoch": 1.275845892218378,
|
| 1365 |
+
"grad_norm": 0.15625,
|
| 1366 |
+
"learning_rate": 0.00011500938086303941,
|
| 1367 |
+
"loss": 0.3337,
|
| 1368 |
+
"mean_token_accuracy": 0.9195377014577388,
|
| 1369 |
+
"num_tokens": 22099004.0,
|
| 1370 |
+
"step": 1360
|
| 1371 |
+
},
|
| 1372 |
+
{
|
| 1373 |
+
"entropy": 0.32660515860188755,
|
| 1374 |
+
"epoch": 1.2852284055591392,
|
| 1375 |
+
"grad_norm": 0.1513671875,
|
| 1376 |
+
"learning_rate": 0.00011438398999374609,
|
| 1377 |
+
"loss": 0.3177,
|
| 1378 |
+
"mean_token_accuracy": 0.9214879527688027,
|
| 1379 |
+
"num_tokens": 22261465.0,
|
| 1380 |
+
"step": 1370
|
| 1381 |
+
},
|
| 1382 |
+
{
|
| 1383 |
+
"entropy": 0.27577626157435586,
|
| 1384 |
+
"epoch": 1.2946109188999002,
|
| 1385 |
+
"grad_norm": 0.171875,
|
| 1386 |
+
"learning_rate": 0.00011375859912445279,
|
| 1387 |
+
"loss": 0.2718,
|
| 1388 |
+
"mean_token_accuracy": 0.9287902843207121,
|
| 1389 |
+
"num_tokens": 22424003.0,
|
| 1390 |
+
"step": 1380
|
| 1391 |
+
},
|
| 1392 |
+
{
|
| 1393 |
+
"entropy": 0.3049365603888873,
|
| 1394 |
+
"epoch": 1.3039934322406614,
|
| 1395 |
+
"grad_norm": 0.150390625,
|
| 1396 |
+
"learning_rate": 0.00011313320825515947,
|
| 1397 |
+
"loss": 0.296,
|
| 1398 |
+
"mean_token_accuracy": 0.9254100024700165,
|
| 1399 |
+
"num_tokens": 22586414.0,
|
| 1400 |
+
"step": 1390
|
| 1401 |
+
},
|
| 1402 |
+
{
|
| 1403 |
+
"entropy": 0.3391640084271785,
|
| 1404 |
+
"epoch": 1.3133759455814227,
|
| 1405 |
+
"grad_norm": 0.158203125,
|
| 1406 |
+
"learning_rate": 0.00011250781738586617,
|
| 1407 |
+
"loss": 0.3316,
|
| 1408 |
+
"mean_token_accuracy": 0.9204599536955357,
|
| 1409 |
+
"num_tokens": 22748801.0,
|
| 1410 |
+
"step": 1400
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"entropy": 0.29096004691673444,
|
| 1414 |
+
"epoch": 1.3227584589221837,
|
| 1415 |
+
"grad_norm": 0.1513671875,
|
| 1416 |
+
"learning_rate": 0.00011188242651657286,
|
| 1417 |
+
"loss": 0.2829,
|
| 1418 |
+
"mean_token_accuracy": 0.926516629010439,
|
| 1419 |
+
"num_tokens": 22911078.0,
|
| 1420 |
+
"step": 1410
|
| 1421 |
+
},
|
| 1422 |
+
{
|
| 1423 |
+
"entropy": 0.30442387533839793,
|
| 1424 |
+
"epoch": 1.332140972262945,
|
| 1425 |
+
"grad_norm": 0.1435546875,
|
| 1426 |
+
"learning_rate": 0.00011125703564727956,
|
| 1427 |
+
"loss": 0.2997,
|
| 1428 |
+
"mean_token_accuracy": 0.928035743534565,
|
| 1429 |
+
"num_tokens": 23073932.0,
|
| 1430 |
+
"step": 1420
|
| 1431 |
+
},
|
| 1432 |
+
{
|
| 1433 |
+
"entropy": 0.2672559514408931,
|
| 1434 |
+
"epoch": 1.3415234856037062,
|
| 1435 |
+
"grad_norm": 0.1669921875,
|
| 1436 |
+
"learning_rate": 0.00011063164477798624,
|
| 1437 |
+
"loss": 0.2567,
|
| 1438 |
+
"mean_token_accuracy": 0.934470995515585,
|
| 1439 |
+
"num_tokens": 23234861.0,
|
| 1440 |
+
"step": 1430
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"entropy": 0.28968692439375443,
|
| 1444 |
+
"epoch": 1.3509059989444672,
|
| 1445 |
+
"grad_norm": 0.189453125,
|
| 1446 |
+
"learning_rate": 0.00011000625390869294,
|
| 1447 |
+
"loss": 0.2833,
|
| 1448 |
+
"mean_token_accuracy": 0.9286899168044329,
|
| 1449 |
+
"num_tokens": 23397575.0,
|
| 1450 |
+
"step": 1440
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"entropy": 0.3179404502676334,
|
| 1454 |
+
"epoch": 1.3602885122852284,
|
| 1455 |
+
"grad_norm": 0.154296875,
|
| 1456 |
+
"learning_rate": 0.00010938086303939963,
|
| 1457 |
+
"loss": 0.3106,
|
| 1458 |
+
"mean_token_accuracy": 0.9237559959292412,
|
| 1459 |
+
"num_tokens": 23560621.0,
|
| 1460 |
+
"step": 1450
|
| 1461 |
+
},
|
| 1462 |
+
{
|
| 1463 |
+
"entropy": 0.3825915275025181,
|
| 1464 |
+
"epoch": 1.3696710256259896,
|
| 1465 |
+
"grad_norm": 0.1796875,
|
| 1466 |
+
"learning_rate": 0.00010875547217010633,
|
| 1467 |
+
"loss": 0.3812,
|
| 1468 |
+
"mean_token_accuracy": 0.9096528366208076,
|
| 1469 |
+
"num_tokens": 23723326.0,
|
| 1470 |
+
"step": 1460
|
| 1471 |
+
},
|
| 1472 |
+
{
|
| 1473 |
+
"entropy": 0.352222545677796,
|
| 1474 |
+
"epoch": 1.3790535389667506,
|
| 1475 |
+
"grad_norm": 0.1611328125,
|
| 1476 |
+
"learning_rate": 0.00010813008130081302,
|
| 1477 |
+
"loss": 0.3445,
|
| 1478 |
+
"mean_token_accuracy": 0.9214517448097468,
|
| 1479 |
+
"num_tokens": 23885973.0,
|
| 1480 |
+
"step": 1470
|
| 1481 |
+
},
|
| 1482 |
+
{
|
| 1483 |
+
"entropy": 0.3833993759646546,
|
| 1484 |
+
"epoch": 1.3884360523075119,
|
| 1485 |
+
"grad_norm": 0.1591796875,
|
| 1486 |
+
"learning_rate": 0.00010750469043151969,
|
| 1487 |
+
"loss": 0.3772,
|
| 1488 |
+
"mean_token_accuracy": 0.9148985600098968,
|
| 1489 |
+
"num_tokens": 24049379.0,
|
| 1490 |
+
"step": 1480
|
| 1491 |
+
},
|
| 1492 |
+
{
|
| 1493 |
+
"entropy": 0.3407844117609784,
|
| 1494 |
+
"epoch": 1.3978185656482731,
|
| 1495 |
+
"grad_norm": 0.15625,
|
| 1496 |
+
"learning_rate": 0.0001068792995622264,
|
| 1497 |
+
"loss": 0.3332,
|
| 1498 |
+
"mean_token_accuracy": 0.9178143370896578,
|
| 1499 |
+
"num_tokens": 24211771.0,
|
| 1500 |
+
"step": 1490
|
| 1501 |
+
},
|
| 1502 |
+
{
|
| 1503 |
+
"entropy": 0.3129306449787691,
|
| 1504 |
+
"epoch": 1.4072010789890341,
|
| 1505 |
+
"grad_norm": 0.166015625,
|
| 1506 |
+
"learning_rate": 0.00010625390869293307,
|
| 1507 |
+
"loss": 0.3105,
|
| 1508 |
+
"mean_token_accuracy": 0.9243231456726789,
|
| 1509 |
+
"num_tokens": 24374782.0,
|
| 1510 |
+
"step": 1500
|
| 1511 |
+
},
|
| 1512 |
+
{
|
| 1513 |
+
"entropy": 0.2853265376936179,
|
| 1514 |
+
"epoch": 1.4165835923297954,
|
| 1515 |
+
"grad_norm": 0.14453125,
|
| 1516 |
+
"learning_rate": 0.00010562851782363979,
|
| 1517 |
+
"loss": 0.272,
|
| 1518 |
+
"mean_token_accuracy": 0.9318001717329025,
|
| 1519 |
+
"num_tokens": 24537798.0,
|
| 1520 |
+
"step": 1510
|
| 1521 |
+
},
|
| 1522 |
+
{
|
| 1523 |
+
"entropy": 0.32060901625081895,
|
| 1524 |
+
"epoch": 1.4259661056705566,
|
| 1525 |
+
"grad_norm": 0.169921875,
|
| 1526 |
+
"learning_rate": 0.00010500312695434646,
|
| 1527 |
+
"loss": 0.3189,
|
| 1528 |
+
"mean_token_accuracy": 0.923735149204731,
|
| 1529 |
+
"num_tokens": 24700222.0,
|
| 1530 |
+
"step": 1520
|
| 1531 |
+
},
|
| 1532 |
+
{
|
| 1533 |
+
"entropy": 0.28523959064041265,
|
| 1534 |
+
"epoch": 1.4353486190113176,
|
| 1535 |
+
"grad_norm": 0.138671875,
|
| 1536 |
+
"learning_rate": 0.00010437773608505317,
|
| 1537 |
+
"loss": 0.2765,
|
| 1538 |
+
"mean_token_accuracy": 0.9289753165096044,
|
| 1539 |
+
"num_tokens": 24862698.0,
|
| 1540 |
+
"step": 1530
|
| 1541 |
+
},
|
| 1542 |
+
{
|
| 1543 |
+
"entropy": 0.28084768254193476,
|
| 1544 |
+
"epoch": 1.4447311323520788,
|
| 1545 |
+
"grad_norm": 0.1435546875,
|
| 1546 |
+
"learning_rate": 0.00010375234521575985,
|
| 1547 |
+
"loss": 0.2735,
|
| 1548 |
+
"mean_token_accuracy": 0.9312996946275234,
|
| 1549 |
+
"num_tokens": 25025816.0,
|
| 1550 |
+
"step": 1540
|
| 1551 |
+
},
|
| 1552 |
+
{
|
| 1553 |
+
"entropy": 0.3017741791787557,
|
| 1554 |
+
"epoch": 1.45411364569284,
|
| 1555 |
+
"grad_norm": 0.15625,
|
| 1556 |
+
"learning_rate": 0.00010312695434646656,
|
| 1557 |
+
"loss": 0.2951,
|
| 1558 |
+
"mean_token_accuracy": 0.9261103741824627,
|
| 1559 |
+
"num_tokens": 25189369.0,
|
| 1560 |
+
"step": 1550
|
| 1561 |
+
},
|
| 1562 |
+
{
|
| 1563 |
+
"entropy": 0.3212110122665763,
|
| 1564 |
+
"epoch": 1.463496159033601,
|
| 1565 |
+
"grad_norm": 0.181640625,
|
| 1566 |
+
"learning_rate": 0.00010250156347717323,
|
| 1567 |
+
"loss": 0.3141,
|
| 1568 |
+
"mean_token_accuracy": 0.9228064101189375,
|
| 1569 |
+
"num_tokens": 25351206.0,
|
| 1570 |
+
"step": 1560
|
| 1571 |
+
},
|
| 1572 |
+
{
|
| 1573 |
+
"entropy": 0.3111924729484599,
|
| 1574 |
+
"epoch": 1.4728786723743623,
|
| 1575 |
+
"grad_norm": 0.1591796875,
|
| 1576 |
+
"learning_rate": 0.00010187617260787993,
|
| 1577 |
+
"loss": 0.3073,
|
| 1578 |
+
"mean_token_accuracy": 0.9231358967721462,
|
| 1579 |
+
"num_tokens": 25514005.0,
|
| 1580 |
+
"step": 1570
|
| 1581 |
+
},
|
| 1582 |
+
{
|
| 1583 |
+
"entropy": 0.35193296511424704,
|
| 1584 |
+
"epoch": 1.4822611857151236,
|
| 1585 |
+
"grad_norm": 0.1748046875,
|
| 1586 |
+
"learning_rate": 0.00010125078173858662,
|
| 1587 |
+
"loss": 0.3426,
|
| 1588 |
+
"mean_token_accuracy": 0.9204717528074979,
|
| 1589 |
+
"num_tokens": 25676907.0,
|
| 1590 |
+
"step": 1580
|
| 1591 |
+
},
|
| 1592 |
+
{
|
| 1593 |
+
"entropy": 0.33642219280591235,
|
| 1594 |
+
"epoch": 1.4916436990558846,
|
| 1595 |
+
"grad_norm": 0.1611328125,
|
| 1596 |
+
"learning_rate": 0.00010062539086929332,
|
| 1597 |
+
"loss": 0.3297,
|
| 1598 |
+
"mean_token_accuracy": 0.9194286223500967,
|
| 1599 |
+
"num_tokens": 25839935.0,
|
| 1600 |
+
"step": 1590
|
| 1601 |
+
},
|
| 1602 |
+
{
|
| 1603 |
+
"entropy": 0.26263106021797283,
|
| 1604 |
+
"epoch": 1.5010262123966458,
|
| 1605 |
+
"grad_norm": 0.142578125,
|
| 1606 |
+
"learning_rate": 0.0001,
|
| 1607 |
+
"loss": 0.2573,
|
| 1608 |
+
"mean_token_accuracy": 0.935544315353036,
|
| 1609 |
+
"num_tokens": 26003218.0,
|
| 1610 |
+
"step": 1600
|
| 1611 |
+
},
|
| 1612 |
+
{
|
| 1613 |
+
"entropy": 0.3122893640131224,
|
| 1614 |
+
"epoch": 1.510408725737407,
|
| 1615 |
+
"grad_norm": 0.1513671875,
|
| 1616 |
+
"learning_rate": 9.937460913070669e-05,
|
| 1617 |
+
"loss": 0.3049,
|
| 1618 |
+
"mean_token_accuracy": 0.9271042123436928,
|
| 1619 |
+
"num_tokens": 26165724.0,
|
| 1620 |
+
"step": 1610
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"entropy": 0.29348382144235075,
|
| 1624 |
+
"epoch": 1.519791239078168,
|
| 1625 |
+
"grad_norm": 0.1640625,
|
| 1626 |
+
"learning_rate": 9.874921826141339e-05,
|
| 1627 |
+
"loss": 0.2887,
|
| 1628 |
+
"mean_token_accuracy": 0.9292786654084921,
|
| 1629 |
+
"num_tokens": 26328312.0,
|
| 1630 |
+
"step": 1620
|
| 1631 |
+
},
|
| 1632 |
+
{
|
| 1633 |
+
"entropy": 0.34205422176164574,
|
| 1634 |
+
"epoch": 1.529173752418929,
|
| 1635 |
+
"grad_norm": 0.1484375,
|
| 1636 |
+
"learning_rate": 9.812382739212008e-05,
|
| 1637 |
+
"loss": 0.3353,
|
| 1638 |
+
"mean_token_accuracy": 0.9192357573658227,
|
| 1639 |
+
"num_tokens": 26490508.0,
|
| 1640 |
+
"step": 1630
|
| 1641 |
+
},
|
| 1642 |
+
{
|
| 1643 |
+
"entropy": 0.3207799144263845,
|
| 1644 |
+
"epoch": 1.5385562657596905,
|
| 1645 |
+
"grad_norm": 0.1591796875,
|
| 1646 |
+
"learning_rate": 9.749843652282678e-05,
|
| 1647 |
+
"loss": 0.3142,
|
| 1648 |
+
"mean_token_accuracy": 0.9239265900105238,
|
| 1649 |
+
"num_tokens": 26652241.0,
|
| 1650 |
+
"step": 1640
|
| 1651 |
+
},
|
| 1652 |
+
{
|
| 1653 |
+
"entropy": 0.3212417629547417,
|
| 1654 |
+
"epoch": 1.5479387791004515,
|
| 1655 |
+
"grad_norm": 0.12890625,
|
| 1656 |
+
"learning_rate": 9.687304565353346e-05,
|
| 1657 |
+
"loss": 0.3105,
|
| 1658 |
+
"mean_token_accuracy": 0.9247593119740486,
|
| 1659 |
+
"num_tokens": 26815313.0,
|
| 1660 |
+
"step": 1650
|
| 1661 |
+
},
|
| 1662 |
+
{
|
| 1663 |
+
"entropy": 0.2918511720839888,
|
| 1664 |
+
"epoch": 1.5573212924412125,
|
| 1665 |
+
"grad_norm": 0.1533203125,
|
| 1666 |
+
"learning_rate": 9.624765478424016e-05,
|
| 1667 |
+
"loss": 0.2874,
|
| 1668 |
+
"mean_token_accuracy": 0.9265463493764401,
|
| 1669 |
+
"num_tokens": 26978291.0,
|
| 1670 |
+
"step": 1660
|
| 1671 |
+
},
|
| 1672 |
+
{
|
| 1673 |
+
"entropy": 0.3887786120234523,
|
| 1674 |
+
"epoch": 1.566703805781974,
|
| 1675 |
+
"grad_norm": 0.177734375,
|
| 1676 |
+
"learning_rate": 9.562226391494684e-05,
|
| 1677 |
+
"loss": 0.3832,
|
| 1678 |
+
"mean_token_accuracy": 0.9116566512733698,
|
| 1679 |
+
"num_tokens": 27140951.0,
|
| 1680 |
+
"step": 1670
|
| 1681 |
+
},
|
| 1682 |
+
{
|
| 1683 |
+
"entropy": 0.3554312888765708,
|
| 1684 |
+
"epoch": 1.576086319122735,
|
| 1685 |
+
"grad_norm": 0.2080078125,
|
| 1686 |
+
"learning_rate": 9.499687304565354e-05,
|
| 1687 |
+
"loss": 0.3498,
|
| 1688 |
+
"mean_token_accuracy": 0.9205850351601839,
|
| 1689 |
+
"num_tokens": 27303423.0,
|
| 1690 |
+
"step": 1680
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"entropy": 0.3036960868688766,
|
| 1694 |
+
"epoch": 1.585468832463496,
|
| 1695 |
+
"grad_norm": 0.1455078125,
|
| 1696 |
+
"learning_rate": 9.437148217636022e-05,
|
| 1697 |
+
"loss": 0.2982,
|
| 1698 |
+
"mean_token_accuracy": 0.9223078574985266,
|
| 1699 |
+
"num_tokens": 27465935.0,
|
| 1700 |
+
"step": 1690
|
| 1701 |
+
},
|
| 1702 |
+
{
|
| 1703 |
+
"entropy": 0.34383984084706753,
|
| 1704 |
+
"epoch": 1.5948513458042575,
|
| 1705 |
+
"grad_norm": 0.1533203125,
|
| 1706 |
+
"learning_rate": 9.374609130706692e-05,
|
| 1707 |
+
"loss": 0.3352,
|
| 1708 |
+
"mean_token_accuracy": 0.9215784965083003,
|
| 1709 |
+
"num_tokens": 27628448.0,
|
| 1710 |
+
"step": 1700
|
| 1711 |
+
},
|
| 1712 |
+
{
|
| 1713 |
+
"entropy": 0.3477696883957833,
|
| 1714 |
+
"epoch": 1.6042338591450185,
|
| 1715 |
+
"grad_norm": 0.15234375,
|
| 1716 |
+
"learning_rate": 9.312070043777361e-05,
|
| 1717 |
+
"loss": 0.345,
|
| 1718 |
+
"mean_token_accuracy": 0.9204984463751316,
|
| 1719 |
+
"num_tokens": 27790993.0,
|
| 1720 |
+
"step": 1710
|
| 1721 |
+
},
|
| 1722 |
+
{
|
| 1723 |
+
"entropy": 0.4038438654737547,
|
| 1724 |
+
"epoch": 1.6136163724857795,
|
| 1725 |
+
"grad_norm": 0.1455078125,
|
| 1726 |
+
"learning_rate": 9.249530956848031e-05,
|
| 1727 |
+
"loss": 0.3942,
|
| 1728 |
+
"mean_token_accuracy": 0.9117133766412735,
|
| 1729 |
+
"num_tokens": 27953367.0,
|
| 1730 |
+
"step": 1720
|
| 1731 |
+
},
|
| 1732 |
+
{
|
| 1733 |
+
"entropy": 0.35322881376487203,
|
| 1734 |
+
"epoch": 1.622998885826541,
|
| 1735 |
+
"grad_norm": 0.2255859375,
|
| 1736 |
+
"learning_rate": 9.1869918699187e-05,
|
| 1737 |
+
"loss": 0.3508,
|
| 1738 |
+
"mean_token_accuracy": 0.9202003927901388,
|
| 1739 |
+
"num_tokens": 28115525.0,
|
| 1740 |
+
"step": 1730
|
| 1741 |
+
},
|
| 1742 |
+
{
|
| 1743 |
+
"entropy": 0.3633168841304723,
|
| 1744 |
+
"epoch": 1.632381399167302,
|
| 1745 |
+
"grad_norm": 0.1376953125,
|
| 1746 |
+
"learning_rate": 9.12445278298937e-05,
|
| 1747 |
+
"loss": 0.3537,
|
| 1748 |
+
"mean_token_accuracy": 0.9178501278162002,
|
| 1749 |
+
"num_tokens": 28278195.0,
|
| 1750 |
+
"step": 1740
|
| 1751 |
+
},
|
| 1752 |
+
{
|
| 1753 |
+
"entropy": 0.29921169562148864,
|
| 1754 |
+
"epoch": 1.641763912508063,
|
| 1755 |
+
"grad_norm": 0.169921875,
|
| 1756 |
+
"learning_rate": 9.061913696060038e-05,
|
| 1757 |
+
"loss": 0.2928,
|
| 1758 |
+
"mean_token_accuracy": 0.929632369056344,
|
| 1759 |
+
"num_tokens": 28441365.0,
|
| 1760 |
+
"step": 1750
|
| 1761 |
+
},
|
| 1762 |
+
{
|
| 1763 |
+
"entropy": 0.343074598867679,
|
| 1764 |
+
"epoch": 1.6511464258488242,
|
| 1765 |
+
"grad_norm": 0.1826171875,
|
| 1766 |
+
"learning_rate": 8.999374609130708e-05,
|
| 1767 |
+
"loss": 0.3418,
|
| 1768 |
+
"mean_token_accuracy": 0.9203568341210484,
|
| 1769 |
+
"num_tokens": 28604025.0,
|
| 1770 |
+
"step": 1760
|
| 1771 |
+
},
|
| 1772 |
+
{
|
| 1773 |
+
"entropy": 0.3354411284439266,
|
| 1774 |
+
"epoch": 1.6605289391895854,
|
| 1775 |
+
"grad_norm": 0.19921875,
|
| 1776 |
+
"learning_rate": 8.936835522201377e-05,
|
| 1777 |
+
"loss": 0.3247,
|
| 1778 |
+
"mean_token_accuracy": 0.9247291401028633,
|
| 1779 |
+
"num_tokens": 28766627.0,
|
| 1780 |
+
"step": 1770
|
| 1781 |
+
},
|
| 1782 |
+
{
|
| 1783 |
+
"entropy": 0.29062830022885466,
|
| 1784 |
+
"epoch": 1.6699114525303465,
|
| 1785 |
+
"grad_norm": 0.1572265625,
|
| 1786 |
+
"learning_rate": 8.874296435272045e-05,
|
| 1787 |
+
"loss": 0.2871,
|
| 1788 |
+
"mean_token_accuracy": 0.9279629901051522,
|
| 1789 |
+
"num_tokens": 28928424.0,
|
| 1790 |
+
"step": 1780
|
| 1791 |
+
},
|
| 1792 |
+
{
|
| 1793 |
+
"entropy": 0.3109960203932133,
|
| 1794 |
+
"epoch": 1.6792939658711077,
|
| 1795 |
+
"grad_norm": 0.158203125,
|
| 1796 |
+
"learning_rate": 8.811757348342715e-05,
|
| 1797 |
+
"loss": 0.3046,
|
| 1798 |
+
"mean_token_accuracy": 0.925516726821661,
|
| 1799 |
+
"num_tokens": 29090881.0,
|
| 1800 |
+
"step": 1790
|
| 1801 |
+
},
|
| 1802 |
+
{
|
| 1803 |
+
"entropy": 0.29157741767703554,
|
| 1804 |
+
"epoch": 1.688676479211869,
|
| 1805 |
+
"grad_norm": 0.1474609375,
|
| 1806 |
+
"learning_rate": 8.749218261413384e-05,
|
| 1807 |
+
"loss": 0.2872,
|
| 1808 |
+
"mean_token_accuracy": 0.9311040572822094,
|
| 1809 |
+
"num_tokens": 29253614.0,
|
| 1810 |
+
"step": 1800
|
| 1811 |
+
},
|
| 1812 |
+
{
|
| 1813 |
+
"entropy": 0.2842859643569682,
|
| 1814 |
+
"epoch": 1.69805899255263,
|
| 1815 |
+
"grad_norm": 0.19921875,
|
| 1816 |
+
"learning_rate": 8.686679174484052e-05,
|
| 1817 |
+
"loss": 0.2787,
|
| 1818 |
+
"mean_token_accuracy": 0.930610903352499,
|
| 1819 |
+
"num_tokens": 29415480.0,
|
| 1820 |
+
"step": 1810
|
| 1821 |
+
},
|
| 1822 |
+
{
|
| 1823 |
+
"entropy": 0.2779356167244259,
|
| 1824 |
+
"epoch": 1.7074415058933912,
|
| 1825 |
+
"grad_norm": 0.1865234375,
|
| 1826 |
+
"learning_rate": 8.624140087554722e-05,
|
| 1827 |
+
"loss": 0.2712,
|
| 1828 |
+
"mean_token_accuracy": 0.9308344077318906,
|
| 1829 |
+
"num_tokens": 29578036.0,
|
| 1830 |
+
"step": 1820
|
| 1831 |
+
},
|
| 1832 |
+
{
|
| 1833 |
+
"entropy": 0.318134157784516,
|
| 1834 |
+
"epoch": 1.7168240192341524,
|
| 1835 |
+
"grad_norm": 0.130859375,
|
| 1836 |
+
"learning_rate": 8.561601000625391e-05,
|
| 1837 |
+
"loss": 0.311,
|
| 1838 |
+
"mean_token_accuracy": 0.9251023806631565,
|
| 1839 |
+
"num_tokens": 29740251.0,
|
| 1840 |
+
"step": 1830
|
| 1841 |
+
},
|
| 1842 |
+
{
|
| 1843 |
+
"entropy": 0.30244565989705735,
|
| 1844 |
+
"epoch": 1.7262065325749134,
|
| 1845 |
+
"grad_norm": 0.2451171875,
|
| 1846 |
+
"learning_rate": 8.49906191369606e-05,
|
| 1847 |
+
"loss": 0.2985,
|
| 1848 |
+
"mean_token_accuracy": 0.925722798705101,
|
| 1849 |
+
"num_tokens": 29902140.0,
|
| 1850 |
+
"step": 1840
|
| 1851 |
+
},
|
| 1852 |
+
{
|
| 1853 |
+
"entropy": 0.32010520926560276,
|
| 1854 |
+
"epoch": 1.7355890459156746,
|
| 1855 |
+
"grad_norm": 0.125,
|
| 1856 |
+
"learning_rate": 8.43652282676673e-05,
|
| 1857 |
+
"loss": 0.3077,
|
| 1858 |
+
"mean_token_accuracy": 0.9267256014049053,
|
| 1859 |
+
"num_tokens": 30064277.0,
|
| 1860 |
+
"step": 1850
|
| 1861 |
+
},
|
| 1862 |
+
{
|
| 1863 |
+
"entropy": 0.2397772744880058,
|
| 1864 |
+
"epoch": 1.7449715592564359,
|
| 1865 |
+
"grad_norm": 0.123046875,
|
| 1866 |
+
"learning_rate": 8.373983739837398e-05,
|
| 1867 |
+
"loss": 0.2367,
|
| 1868 |
+
"mean_token_accuracy": 0.9358306158334017,
|
| 1869 |
+
"num_tokens": 30227035.0,
|
| 1870 |
+
"step": 1860
|
| 1871 |
+
},
|
| 1872 |
+
{
|
| 1873 |
+
"entropy": 0.2846862503385637,
|
| 1874 |
+
"epoch": 1.754354072597197,
|
| 1875 |
+
"grad_norm": 0.1630859375,
|
| 1876 |
+
"learning_rate": 8.311444652908068e-05,
|
| 1877 |
+
"loss": 0.2791,
|
| 1878 |
+
"mean_token_accuracy": 0.9296355988830328,
|
| 1879 |
+
"num_tokens": 30389480.0,
|
| 1880 |
+
"step": 1870
|
| 1881 |
+
},
|
| 1882 |
+
{
|
| 1883 |
+
"entropy": 0.3066696587542538,
|
| 1884 |
+
"epoch": 1.7637365859379581,
|
| 1885 |
+
"grad_norm": 0.2021484375,
|
| 1886 |
+
"learning_rate": 8.248905565978737e-05,
|
| 1887 |
+
"loss": 0.3006,
|
| 1888 |
+
"mean_token_accuracy": 0.9251831691712141,
|
| 1889 |
+
"num_tokens": 30552091.0,
|
| 1890 |
+
"step": 1880
|
| 1891 |
+
},
|
| 1892 |
+
{
|
| 1893 |
+
"entropy": 0.31332365355920044,
|
| 1894 |
+
"epoch": 1.7731190992787194,
|
| 1895 |
+
"grad_norm": 0.1552734375,
|
| 1896 |
+
"learning_rate": 8.186366479049407e-05,
|
| 1897 |
+
"loss": 0.3065,
|
| 1898 |
+
"mean_token_accuracy": 0.9259384579956531,
|
| 1899 |
+
"num_tokens": 30714856.0,
|
| 1900 |
+
"step": 1890
|
| 1901 |
+
},
|
| 1902 |
+
{
|
| 1903 |
+
"entropy": 0.26562274275929665,
|
| 1904 |
+
"epoch": 1.7825016126194804,
|
| 1905 |
+
"grad_norm": 0.1201171875,
|
| 1906 |
+
"learning_rate": 8.123827392120076e-05,
|
| 1907 |
+
"loss": 0.2575,
|
| 1908 |
+
"mean_token_accuracy": 0.9345466572791338,
|
| 1909 |
+
"num_tokens": 30877977.0,
|
| 1910 |
+
"step": 1900
|
| 1911 |
+
},
|
| 1912 |
+
{
|
| 1913 |
+
"entropy": 0.26213877720292655,
|
| 1914 |
+
"epoch": 1.7918841259602416,
|
| 1915 |
+
"grad_norm": 0.1396484375,
|
| 1916 |
+
"learning_rate": 8.061288305190746e-05,
|
| 1917 |
+
"loss": 0.2569,
|
| 1918 |
+
"mean_token_accuracy": 0.9343690615147352,
|
| 1919 |
+
"num_tokens": 31040248.0,
|
| 1920 |
+
"step": 1910
|
| 1921 |
+
},
|
| 1922 |
+
{
|
| 1923 |
+
"entropy": 0.31369023660663514,
|
| 1924 |
+
"epoch": 1.8012666393010028,
|
| 1925 |
+
"grad_norm": 0.1533203125,
|
| 1926 |
+
"learning_rate": 7.998749218261413e-05,
|
| 1927 |
+
"loss": 0.3079,
|
| 1928 |
+
"mean_token_accuracy": 0.9239290647208691,
|
| 1929 |
+
"num_tokens": 31202363.0,
|
| 1930 |
+
"step": 1920
|
| 1931 |
+
},
|
| 1932 |
+
{
|
| 1933 |
+
"entropy": 0.2883313969883602,
|
| 1934 |
+
"epoch": 1.8106491526417638,
|
| 1935 |
+
"grad_norm": 0.162109375,
|
| 1936 |
+
"learning_rate": 7.936210131332083e-05,
|
| 1937 |
+
"loss": 0.2846,
|
| 1938 |
+
"mean_token_accuracy": 0.9300382232293487,
|
| 1939 |
+
"num_tokens": 31365512.0,
|
| 1940 |
+
"step": 1930
|
| 1941 |
+
},
|
| 1942 |
+
{
|
| 1943 |
+
"entropy": 0.2506348692520987,
|
| 1944 |
+
"epoch": 1.820031665982525,
|
| 1945 |
+
"grad_norm": 0.171875,
|
| 1946 |
+
"learning_rate": 7.873671044402751e-05,
|
| 1947 |
+
"loss": 0.2448,
|
| 1948 |
+
"mean_token_accuracy": 0.9374226000159979,
|
| 1949 |
+
"num_tokens": 31527448.0,
|
| 1950 |
+
"step": 1940
|
| 1951 |
+
},
|
| 1952 |
+
{
|
| 1953 |
+
"entropy": 0.37234054349246437,
|
| 1954 |
+
"epoch": 1.8294141793232863,
|
| 1955 |
+
"grad_norm": 0.1572265625,
|
| 1956 |
+
"learning_rate": 7.811131957473421e-05,
|
| 1957 |
+
"loss": 0.3625,
|
| 1958 |
+
"mean_token_accuracy": 0.9161295138299466,
|
| 1959 |
+
"num_tokens": 31690266.0,
|
| 1960 |
+
"step": 1950
|
| 1961 |
+
},
|
| 1962 |
+
{
|
| 1963 |
+
"entropy": 0.30422380041563885,
|
| 1964 |
+
"epoch": 1.8387966926640473,
|
| 1965 |
+
"grad_norm": 0.193359375,
|
| 1966 |
+
"learning_rate": 7.74859287054409e-05,
|
| 1967 |
+
"loss": 0.3022,
|
| 1968 |
+
"mean_token_accuracy": 0.9249883979558945,
|
| 1969 |
+
"num_tokens": 31852062.0,
|
| 1970 |
+
"step": 1960
|
| 1971 |
+
},
|
| 1972 |
+
{
|
| 1973 |
+
"entropy": 0.28159310154733247,
|
| 1974 |
+
"epoch": 1.8481792060048086,
|
| 1975 |
+
"grad_norm": 0.12890625,
|
| 1976 |
+
"learning_rate": 7.68605378361476e-05,
|
| 1977 |
+
"loss": 0.2734,
|
| 1978 |
+
"mean_token_accuracy": 0.9310276363044977,
|
| 1979 |
+
"num_tokens": 32015366.0,
|
| 1980 |
+
"step": 1970
|
| 1981 |
+
},
|
| 1982 |
+
{
|
| 1983 |
+
"entropy": 0.34929422264685855,
|
| 1984 |
+
"epoch": 1.8575617193455698,
|
| 1985 |
+
"grad_norm": 0.134765625,
|
| 1986 |
+
"learning_rate": 7.623514696685429e-05,
|
| 1987 |
+
"loss": 0.3437,
|
| 1988 |
+
"mean_token_accuracy": 0.9215225942432881,
|
| 1989 |
+
"num_tokens": 32178520.0,
|
| 1990 |
+
"step": 1980
|
| 1991 |
+
},
|
| 1992 |
+
{
|
| 1993 |
+
"entropy": 0.3168531317904126,
|
| 1994 |
+
"epoch": 1.8669442326863308,
|
| 1995 |
+
"grad_norm": 0.1787109375,
|
| 1996 |
+
"learning_rate": 7.560975609756099e-05,
|
| 1997 |
+
"loss": 0.311,
|
| 1998 |
+
"mean_token_accuracy": 0.9265505827963352,
|
| 1999 |
+
"num_tokens": 32341136.0,
|
| 2000 |
+
"step": 1990
|
| 2001 |
+
},
|
| 2002 |
+
{
|
| 2003 |
+
"entropy": 0.34503675387823024,
|
| 2004 |
+
"epoch": 1.876326746027092,
|
| 2005 |
+
"grad_norm": 0.1337890625,
|
| 2006 |
+
"learning_rate": 7.498436522826767e-05,
|
| 2007 |
+
"loss": 0.3371,
|
| 2008 |
+
"mean_token_accuracy": 0.9186861624941229,
|
| 2009 |
+
"num_tokens": 32503824.0,
|
| 2010 |
+
"step": 2000
|
| 2011 |
+
},
|
| 2012 |
+
{
|
| 2013 |
+
"entropy": 0.3137181800149847,
|
| 2014 |
+
"epoch": 1.8857092593678533,
|
| 2015 |
+
"grad_norm": 0.12890625,
|
| 2016 |
+
"learning_rate": 7.435897435897436e-05,
|
| 2017 |
+
"loss": 0.3072,
|
| 2018 |
+
"mean_token_accuracy": 0.9252266064286232,
|
| 2019 |
+
"num_tokens": 32665961.0,
|
| 2020 |
+
"step": 2010
|
| 2021 |
+
},
|
| 2022 |
+
{
|
| 2023 |
+
"entropy": 0.3118691684619989,
|
| 2024 |
+
"epoch": 1.8950917727086143,
|
| 2025 |
+
"grad_norm": 0.1259765625,
|
| 2026 |
+
"learning_rate": 7.373358348968106e-05,
|
| 2027 |
+
"loss": 0.3092,
|
| 2028 |
+
"mean_token_accuracy": 0.9266283692792058,
|
| 2029 |
+
"num_tokens": 32828930.0,
|
| 2030 |
+
"step": 2020
|
| 2031 |
+
},
|
| 2032 |
+
{
|
| 2033 |
+
"entropy": 0.36025177109404466,
|
| 2034 |
+
"epoch": 1.9044742860493755,
|
| 2035 |
+
"grad_norm": 0.1337890625,
|
| 2036 |
+
"learning_rate": 7.310819262038774e-05,
|
| 2037 |
+
"loss": 0.3483,
|
| 2038 |
+
"mean_token_accuracy": 0.919862699508667,
|
| 2039 |
+
"num_tokens": 32991199.0,
|
| 2040 |
+
"step": 2030
|
| 2041 |
+
},
|
| 2042 |
+
{
|
| 2043 |
+
"entropy": 0.2960929194523487,
|
| 2044 |
+
"epoch": 1.9138567993901368,
|
| 2045 |
+
"grad_norm": 0.1689453125,
|
| 2046 |
+
"learning_rate": 7.248280175109444e-05,
|
| 2047 |
+
"loss": 0.2911,
|
| 2048 |
+
"mean_token_accuracy": 0.9277313150465488,
|
| 2049 |
+
"num_tokens": 33153591.0,
|
| 2050 |
+
"step": 2040
|
| 2051 |
+
},
|
| 2052 |
+
{
|
| 2053 |
+
"entropy": 0.3087802886031568,
|
| 2054 |
+
"epoch": 1.9232393127308978,
|
| 2055 |
+
"grad_norm": 0.1318359375,
|
| 2056 |
+
"learning_rate": 7.185741088180113e-05,
|
| 2057 |
+
"loss": 0.3034,
|
| 2058 |
+
"mean_token_accuracy": 0.9258704790845513,
|
| 2059 |
+
"num_tokens": 33316611.0,
|
| 2060 |
+
"step": 2050
|
| 2061 |
+
},
|
| 2062 |
+
{
|
| 2063 |
+
"entropy": 0.3371582037769258,
|
| 2064 |
+
"epoch": 1.932621826071659,
|
| 2065 |
+
"grad_norm": 0.1484375,
|
| 2066 |
+
"learning_rate": 7.123202001250782e-05,
|
| 2067 |
+
"loss": 0.3246,
|
| 2068 |
+
"mean_token_accuracy": 0.9226027946919203,
|
| 2069 |
+
"num_tokens": 33479599.0,
|
| 2070 |
+
"step": 2060
|
| 2071 |
+
},
|
| 2072 |
+
{
|
| 2073 |
+
"entropy": 0.3058539542311337,
|
| 2074 |
+
"epoch": 1.9420043394124202,
|
| 2075 |
+
"grad_norm": 0.19140625,
|
| 2076 |
+
"learning_rate": 7.06066291432145e-05,
|
| 2077 |
+
"loss": 0.3052,
|
| 2078 |
+
"mean_token_accuracy": 0.926361970603466,
|
| 2079 |
+
"num_tokens": 33642025.0,
|
| 2080 |
+
"step": 2070
|
| 2081 |
+
},
|
| 2082 |
+
{
|
| 2083 |
+
"entropy": 0.30661272021825425,
|
| 2084 |
+
"epoch": 1.9513868527531812,
|
| 2085 |
+
"grad_norm": 0.142578125,
|
| 2086 |
+
"learning_rate": 6.99812382739212e-05,
|
| 2087 |
+
"loss": 0.3019,
|
| 2088 |
+
"mean_token_accuracy": 0.9264740001410245,
|
| 2089 |
+
"num_tokens": 33804960.0,
|
| 2090 |
+
"step": 2080
|
| 2091 |
+
},
|
| 2092 |
+
{
|
| 2093 |
+
"entropy": 0.3367635572212748,
|
| 2094 |
+
"epoch": 1.9607693660939423,
|
| 2095 |
+
"grad_norm": 0.140625,
|
| 2096 |
+
"learning_rate": 6.935584740462789e-05,
|
| 2097 |
+
"loss": 0.3255,
|
| 2098 |
+
"mean_token_accuracy": 0.9226295977830887,
|
| 2099 |
+
"num_tokens": 33967617.0,
|
| 2100 |
+
"step": 2090
|
| 2101 |
+
},
|
| 2102 |
+
{
|
| 2103 |
+
"entropy": 0.30951609945041125,
|
| 2104 |
+
"epoch": 1.9701518794347037,
|
| 2105 |
+
"grad_norm": 0.1455078125,
|
| 2106 |
+
"learning_rate": 6.873045653533459e-05,
|
| 2107 |
+
"loss": 0.3099,
|
| 2108 |
+
"mean_token_accuracy": 0.9269402369856834,
|
| 2109 |
+
"num_tokens": 34130354.0,
|
| 2110 |
+
"step": 2100
|
| 2111 |
+
},
|
| 2112 |
+
{
|
| 2113 |
+
"entropy": 0.27725380276096984,
|
| 2114 |
+
"epoch": 1.9795343927754647,
|
| 2115 |
+
"grad_norm": 0.138671875,
|
| 2116 |
+
"learning_rate": 6.810506566604128e-05,
|
| 2117 |
+
"loss": 0.2718,
|
| 2118 |
+
"mean_token_accuracy": 0.9319463197141886,
|
| 2119 |
+
"num_tokens": 34292449.0,
|
| 2120 |
+
"step": 2110
|
| 2121 |
+
},
|
| 2122 |
+
{
|
| 2123 |
+
"entropy": 0.3474087182315998,
|
| 2124 |
+
"epoch": 1.9889169061162257,
|
| 2125 |
+
"grad_norm": 0.158203125,
|
| 2126 |
+
"learning_rate": 6.747967479674798e-05,
|
| 2127 |
+
"loss": 0.3388,
|
| 2128 |
+
"mean_token_accuracy": 0.918656725436449,
|
| 2129 |
+
"num_tokens": 34454991.0,
|
| 2130 |
+
"step": 2120
|
| 2131 |
+
},
|
| 2132 |
+
{
|
| 2133 |
+
"entropy": 0.3628831981972326,
|
| 2134 |
+
"epoch": 1.9982994194569872,
|
| 2135 |
+
"grad_norm": 0.1220703125,
|
| 2136 |
+
"learning_rate": 6.685428392745466e-05,
|
| 2137 |
+
"loss": 0.3612,
|
| 2138 |
+
"mean_token_accuracy": 0.9168768994510174,
|
| 2139 |
+
"num_tokens": 34617319.0,
|
| 2140 |
+
"step": 2130
|
| 2141 |
+
},
|
| 2142 |
+
{
|
| 2143 |
+
"entropy": 0.30754789969866064,
|
| 2144 |
+
"epoch": 2.007506010672609,
|
| 2145 |
+
"grad_norm": 0.1416015625,
|
| 2146 |
+
"learning_rate": 6.622889305816136e-05,
|
| 2147 |
+
"loss": 0.2987,
|
| 2148 |
+
"mean_token_accuracy": 0.9273600897211938,
|
| 2149 |
+
"num_tokens": 34776727.0,
|
| 2150 |
+
"step": 2140
|
| 2151 |
+
},
|
| 2152 |
+
{
|
| 2153 |
+
"entropy": 0.2743127902853303,
|
| 2154 |
+
"epoch": 2.0168885240133703,
|
| 2155 |
+
"grad_norm": 0.138671875,
|
| 2156 |
+
"learning_rate": 6.560350218886805e-05,
|
| 2157 |
+
"loss": 0.2625,
|
| 2158 |
+
"mean_token_accuracy": 0.9338100612163543,
|
| 2159 |
+
"num_tokens": 34939582.0,
|
| 2160 |
+
"step": 2150
|
| 2161 |
+
},
|
| 2162 |
+
{
|
| 2163 |
+
"entropy": 0.23109424414578825,
|
| 2164 |
+
"epoch": 2.0262710373541313,
|
| 2165 |
+
"grad_norm": 0.1259765625,
|
| 2166 |
+
"learning_rate": 6.497811131957475e-05,
|
| 2167 |
+
"loss": 0.2269,
|
| 2168 |
+
"mean_token_accuracy": 0.9402029298245906,
|
| 2169 |
+
"num_tokens": 35102107.0,
|
| 2170 |
+
"step": 2160
|
| 2171 |
+
},
|
| 2172 |
+
{
|
| 2173 |
+
"entropy": 0.32085173048544674,
|
| 2174 |
+
"epoch": 2.0356535506948923,
|
| 2175 |
+
"grad_norm": 0.17578125,
|
| 2176 |
+
"learning_rate": 6.435272045028143e-05,
|
| 2177 |
+
"loss": 0.3157,
|
| 2178 |
+
"mean_token_accuracy": 0.9279470354318619,
|
| 2179 |
+
"num_tokens": 35264637.0,
|
| 2180 |
+
"step": 2170
|
| 2181 |
+
},
|
| 2182 |
+
{
|
| 2183 |
+
"entropy": 0.2932477945287246,
|
| 2184 |
+
"epoch": 2.0450360640356537,
|
| 2185 |
+
"grad_norm": 0.130859375,
|
| 2186 |
+
"learning_rate": 6.372732958098812e-05,
|
| 2187 |
+
"loss": 0.2874,
|
| 2188 |
+
"mean_token_accuracy": 0.9301197096705437,
|
| 2189 |
+
"num_tokens": 35427805.0,
|
| 2190 |
+
"step": 2180
|
| 2191 |
+
},
|
| 2192 |
+
{
|
| 2193 |
+
"entropy": 0.31676896529388615,
|
| 2194 |
+
"epoch": 2.0544185773764148,
|
| 2195 |
+
"grad_norm": 0.166015625,
|
| 2196 |
+
"learning_rate": 6.31019387116948e-05,
|
| 2197 |
+
"loss": 0.3111,
|
| 2198 |
+
"mean_token_accuracy": 0.923145342990756,
|
| 2199 |
+
"num_tokens": 35590042.0,
|
| 2200 |
+
"step": 2190
|
| 2201 |
+
},
|
| 2202 |
+
{
|
| 2203 |
+
"entropy": 0.2916707712749485,
|
| 2204 |
+
"epoch": 2.0638010907171758,
|
| 2205 |
+
"grad_norm": 0.1513671875,
|
| 2206 |
+
"learning_rate": 6.24765478424015e-05,
|
| 2207 |
+
"loss": 0.283,
|
| 2208 |
+
"mean_token_accuracy": 0.929805812984705,
|
| 2209 |
+
"num_tokens": 35752824.0,
|
| 2210 |
+
"step": 2200
|
| 2211 |
+
},
|
| 2212 |
+
{
|
| 2213 |
+
"entropy": 0.2904738457233179,
|
| 2214 |
+
"epoch": 2.0731836040579372,
|
| 2215 |
+
"grad_norm": 0.12353515625,
|
| 2216 |
+
"learning_rate": 6.185115697310819e-05,
|
| 2217 |
+
"loss": 0.2835,
|
| 2218 |
+
"mean_token_accuracy": 0.929260141402483,
|
| 2219 |
+
"num_tokens": 35915457.0,
|
| 2220 |
+
"step": 2210
|
| 2221 |
+
},
|
| 2222 |
+
{
|
| 2223 |
+
"entropy": 0.34058672086102887,
|
| 2224 |
+
"epoch": 2.0825661173986982,
|
| 2225 |
+
"grad_norm": 0.177734375,
|
| 2226 |
+
"learning_rate": 6.122576610381489e-05,
|
| 2227 |
+
"loss": 0.3331,
|
| 2228 |
+
"mean_token_accuracy": 0.921688269637525,
|
| 2229 |
+
"num_tokens": 36077094.0,
|
| 2230 |
+
"step": 2220
|
| 2231 |
+
},
|
| 2232 |
+
{
|
| 2233 |
+
"entropy": 0.3112417246331461,
|
| 2234 |
+
"epoch": 2.0919486307394592,
|
| 2235 |
+
"grad_norm": 0.1455078125,
|
| 2236 |
+
"learning_rate": 6.060037523452158e-05,
|
| 2237 |
+
"loss": 0.3079,
|
| 2238 |
+
"mean_token_accuracy": 0.9285556517541409,
|
| 2239 |
+
"num_tokens": 36239464.0,
|
| 2240 |
+
"step": 2230
|
| 2241 |
+
},
|
| 2242 |
+
{
|
| 2243 |
+
"entropy": 0.34240057118586265,
|
| 2244 |
+
"epoch": 2.1013311440802207,
|
| 2245 |
+
"grad_norm": 0.1357421875,
|
| 2246 |
+
"learning_rate": 5.997498436522827e-05,
|
| 2247 |
+
"loss": 0.3332,
|
| 2248 |
+
"mean_token_accuracy": 0.9241030484437942,
|
| 2249 |
+
"num_tokens": 36402734.0,
|
| 2250 |
+
"step": 2240
|
| 2251 |
+
},
|
| 2252 |
+
{
|
| 2253 |
+
"entropy": 0.3349809938808903,
|
| 2254 |
+
"epoch": 2.1107136574209817,
|
| 2255 |
+
"grad_norm": 0.1416015625,
|
| 2256 |
+
"learning_rate": 5.9349593495934964e-05,
|
| 2257 |
+
"loss": 0.3297,
|
| 2258 |
+
"mean_token_accuracy": 0.9225290399044752,
|
| 2259 |
+
"num_tokens": 36565940.0,
|
| 2260 |
+
"step": 2250
|
| 2261 |
+
},
|
| 2262 |
+
{
|
| 2263 |
+
"entropy": 0.29396202315110714,
|
| 2264 |
+
"epoch": 2.1200961707617427,
|
| 2265 |
+
"grad_norm": 0.1513671875,
|
| 2266 |
+
"learning_rate": 5.872420262664166e-05,
|
| 2267 |
+
"loss": 0.2881,
|
| 2268 |
+
"mean_token_accuracy": 0.9296416111290455,
|
| 2269 |
+
"num_tokens": 36728649.0,
|
| 2270 |
+
"step": 2260
|
| 2271 |
+
},
|
| 2272 |
+
{
|
| 2273 |
+
"entropy": 0.2903045032813679,
|
| 2274 |
+
"epoch": 2.129478684102504,
|
| 2275 |
+
"grad_norm": 0.09765625,
|
| 2276 |
+
"learning_rate": 5.809881175734835e-05,
|
| 2277 |
+
"loss": 0.2833,
|
| 2278 |
+
"mean_token_accuracy": 0.9330372145399451,
|
| 2279 |
+
"num_tokens": 36890880.0,
|
| 2280 |
+
"step": 2270
|
| 2281 |
+
},
|
| 2282 |
+
{
|
| 2283 |
+
"entropy": 0.27020151492906735,
|
| 2284 |
+
"epoch": 2.138861197443265,
|
| 2285 |
+
"grad_norm": 0.134765625,
|
| 2286 |
+
"learning_rate": 5.747342088805504e-05,
|
| 2287 |
+
"loss": 0.2674,
|
| 2288 |
+
"mean_token_accuracy": 0.9339799758046865,
|
| 2289 |
+
"num_tokens": 37053255.0,
|
| 2290 |
+
"step": 2280
|
| 2291 |
+
},
|
| 2292 |
+
{
|
| 2293 |
+
"entropy": 0.31789518537698314,
|
| 2294 |
+
"epoch": 2.148243710784026,
|
| 2295 |
+
"grad_norm": 0.150390625,
|
| 2296 |
+
"learning_rate": 5.6848030018761736e-05,
|
| 2297 |
+
"loss": 0.306,
|
| 2298 |
+
"mean_token_accuracy": 0.9265004731714725,
|
| 2299 |
+
"num_tokens": 37215790.0,
|
| 2300 |
+
"step": 2290
|
| 2301 |
+
},
|
| 2302 |
+
{
|
| 2303 |
+
"entropy": 0.2779642059525941,
|
| 2304 |
+
"epoch": 2.1576262241247877,
|
| 2305 |
+
"grad_norm": 0.1494140625,
|
| 2306 |
+
"learning_rate": 5.622263914946842e-05,
|
| 2307 |
+
"loss": 0.276,
|
| 2308 |
+
"mean_token_accuracy": 0.9299513600766659,
|
| 2309 |
+
"num_tokens": 37377844.0,
|
| 2310 |
+
"step": 2300
|
| 2311 |
+
},
|
| 2312 |
+
{
|
| 2313 |
+
"entropy": 0.2879410418216139,
|
| 2314 |
+
"epoch": 2.1670087374655487,
|
| 2315 |
+
"grad_norm": 0.1513671875,
|
| 2316 |
+
"learning_rate": 5.559724828017511e-05,
|
| 2317 |
+
"loss": 0.2804,
|
| 2318 |
+
"mean_token_accuracy": 0.9302285347133875,
|
| 2319 |
+
"num_tokens": 37540641.0,
|
| 2320 |
+
"step": 2310
|
| 2321 |
+
},
|
| 2322 |
+
{
|
| 2323 |
+
"entropy": 0.3198163398075849,
|
| 2324 |
+
"epoch": 2.1763912508063097,
|
| 2325 |
+
"grad_norm": 0.1494140625,
|
| 2326 |
+
"learning_rate": 5.49718574108818e-05,
|
| 2327 |
+
"loss": 0.3094,
|
| 2328 |
+
"mean_token_accuracy": 0.9261773098260164,
|
| 2329 |
+
"num_tokens": 37702995.0,
|
| 2330 |
+
"step": 2320
|
| 2331 |
+
},
|
| 2332 |
+
{
|
| 2333 |
+
"entropy": 0.30028246028232386,
|
| 2334 |
+
"epoch": 2.1857737641470707,
|
| 2335 |
+
"grad_norm": 0.1279296875,
|
| 2336 |
+
"learning_rate": 5.4346466541588495e-05,
|
| 2337 |
+
"loss": 0.2997,
|
| 2338 |
+
"mean_token_accuracy": 0.9303501343354583,
|
| 2339 |
+
"num_tokens": 37866156.0,
|
| 2340 |
+
"step": 2330
|
| 2341 |
+
},
|
| 2342 |
+
{
|
| 2343 |
+
"entropy": 0.30868017480243,
|
| 2344 |
+
"epoch": 2.195156277487832,
|
| 2345 |
+
"grad_norm": 0.1787109375,
|
| 2346 |
+
"learning_rate": 5.372107567229519e-05,
|
| 2347 |
+
"loss": 0.2983,
|
| 2348 |
+
"mean_token_accuracy": 0.9272098153829574,
|
| 2349 |
+
"num_tokens": 38028751.0,
|
| 2350 |
+
"step": 2340
|
| 2351 |
+
},
|
| 2352 |
+
{
|
| 2353 |
+
"entropy": 0.35966923176893034,
|
| 2354 |
+
"epoch": 2.204538790828593,
|
| 2355 |
+
"grad_norm": 0.1591796875,
|
| 2356 |
+
"learning_rate": 5.3095684803001874e-05,
|
| 2357 |
+
"loss": 0.3501,
|
| 2358 |
+
"mean_token_accuracy": 0.9204060444608331,
|
| 2359 |
+
"num_tokens": 38191815.0,
|
| 2360 |
+
"step": 2350
|
| 2361 |
+
},
|
| 2362 |
+
{
|
| 2363 |
+
"entropy": 0.3018774308031425,
|
| 2364 |
+
"epoch": 2.213921304169354,
|
| 2365 |
+
"grad_norm": 0.1318359375,
|
| 2366 |
+
"learning_rate": 5.247029393370857e-05,
|
| 2367 |
+
"loss": 0.2989,
|
| 2368 |
+
"mean_token_accuracy": 0.9272254019975662,
|
| 2369 |
+
"num_tokens": 38354651.0,
|
| 2370 |
+
"step": 2360
|
| 2371 |
+
},
|
| 2372 |
+
{
|
| 2373 |
+
"entropy": 0.2737217928515747,
|
| 2374 |
+
"epoch": 2.2233038175101156,
|
| 2375 |
+
"grad_norm": 0.1279296875,
|
| 2376 |
+
"learning_rate": 5.184490306441526e-05,
|
| 2377 |
+
"loss": 0.2656,
|
| 2378 |
+
"mean_token_accuracy": 0.9318129748106003,
|
| 2379 |
+
"num_tokens": 38517176.0,
|
| 2380 |
+
"step": 2370
|
| 2381 |
+
},
|
| 2382 |
+
{
|
| 2383 |
+
"entropy": 0.3319847055245191,
|
| 2384 |
+
"epoch": 2.2326863308508766,
|
| 2385 |
+
"grad_norm": 0.109375,
|
| 2386 |
+
"learning_rate": 5.121951219512195e-05,
|
| 2387 |
+
"loss": 0.3264,
|
| 2388 |
+
"mean_token_accuracy": 0.9221911679953336,
|
| 2389 |
+
"num_tokens": 38679769.0,
|
| 2390 |
+
"step": 2380
|
| 2391 |
+
},
|
| 2392 |
+
{
|
| 2393 |
+
"entropy": 0.30262379703926856,
|
| 2394 |
+
"epoch": 2.2420688441916377,
|
| 2395 |
+
"grad_norm": 0.1240234375,
|
| 2396 |
+
"learning_rate": 5.0594121325828646e-05,
|
| 2397 |
+
"loss": 0.2941,
|
| 2398 |
+
"mean_token_accuracy": 0.9280214164406061,
|
| 2399 |
+
"num_tokens": 38842724.0,
|
| 2400 |
+
"step": 2390
|
| 2401 |
+
},
|
| 2402 |
+
{
|
| 2403 |
+
"entropy": 0.2472104947839398,
|
| 2404 |
+
"epoch": 2.251451357532399,
|
| 2405 |
+
"grad_norm": 0.10888671875,
|
| 2406 |
+
"learning_rate": 4.996873045653533e-05,
|
| 2407 |
+
"loss": 0.2411,
|
| 2408 |
+
"mean_token_accuracy": 0.9378781199455262,
|
| 2409 |
+
"num_tokens": 39005513.0,
|
| 2410 |
+
"step": 2400
|
| 2411 |
+
},
|
| 2412 |
+
{
|
| 2413 |
+
"entropy": 0.25551886922330597,
|
| 2414 |
+
"epoch": 2.26083387087316,
|
| 2415 |
+
"grad_norm": 0.1279296875,
|
| 2416 |
+
"learning_rate": 4.9343339587242026e-05,
|
| 2417 |
+
"loss": 0.2547,
|
| 2418 |
+
"mean_token_accuracy": 0.9324965570122004,
|
| 2419 |
+
"num_tokens": 39167728.0,
|
| 2420 |
+
"step": 2410
|
| 2421 |
+
},
|
| 2422 |
+
{
|
| 2423 |
+
"entropy": 0.3002851114142686,
|
| 2424 |
+
"epoch": 2.270216384213921,
|
| 2425 |
+
"grad_norm": 0.1142578125,
|
| 2426 |
+
"learning_rate": 4.871794871794872e-05,
|
| 2427 |
+
"loss": 0.2892,
|
| 2428 |
+
"mean_token_accuracy": 0.9301211513578892,
|
| 2429 |
+
"num_tokens": 39330194.0,
|
| 2430 |
+
"step": 2420
|
| 2431 |
+
},
|
| 2432 |
+
{
|
| 2433 |
+
"entropy": 0.301609949831618,
|
| 2434 |
+
"epoch": 2.2795988975546826,
|
| 2435 |
+
"grad_norm": 0.1396484375,
|
| 2436 |
+
"learning_rate": 4.809255784865541e-05,
|
| 2437 |
+
"loss": 0.2937,
|
| 2438 |
+
"mean_token_accuracy": 0.9278855569660663,
|
| 2439 |
+
"num_tokens": 39493237.0,
|
| 2440 |
+
"step": 2430
|
| 2441 |
+
},
|
| 2442 |
+
{
|
| 2443 |
+
"entropy": 0.31216122427140364,
|
| 2444 |
+
"epoch": 2.2889814108954436,
|
| 2445 |
+
"grad_norm": 0.1123046875,
|
| 2446 |
+
"learning_rate": 4.7467166979362105e-05,
|
| 2447 |
+
"loss": 0.3093,
|
| 2448 |
+
"mean_token_accuracy": 0.9252140417695045,
|
| 2449 |
+
"num_tokens": 39655553.0,
|
| 2450 |
+
"step": 2440
|
| 2451 |
+
},
|
| 2452 |
+
{
|
| 2453 |
+
"entropy": 0.23702631431515328,
|
| 2454 |
+
"epoch": 2.2983639242362046,
|
| 2455 |
+
"grad_norm": 0.1435546875,
|
| 2456 |
+
"learning_rate": 4.68417761100688e-05,
|
| 2457 |
+
"loss": 0.2252,
|
| 2458 |
+
"mean_token_accuracy": 0.9393304187804461,
|
| 2459 |
+
"num_tokens": 39817974.0,
|
| 2460 |
+
"step": 2450
|
| 2461 |
+
},
|
| 2462 |
+
{
|
| 2463 |
+
"entropy": 0.30330076812533663,
|
| 2464 |
+
"epoch": 2.307746437576966,
|
| 2465 |
+
"grad_norm": 0.1474609375,
|
| 2466 |
+
"learning_rate": 4.621638524077549e-05,
|
| 2467 |
+
"loss": 0.2995,
|
| 2468 |
+
"mean_token_accuracy": 0.926243145391345,
|
| 2469 |
+
"num_tokens": 39981087.0,
|
| 2470 |
+
"step": 2460
|
| 2471 |
+
},
|
| 2472 |
+
{
|
| 2473 |
+
"entropy": 0.30959747194428927,
|
| 2474 |
+
"epoch": 2.317128950917727,
|
| 2475 |
+
"grad_norm": 0.1376953125,
|
| 2476 |
+
"learning_rate": 4.559099437148218e-05,
|
| 2477 |
+
"loss": 0.305,
|
| 2478 |
+
"mean_token_accuracy": 0.927550395578146,
|
| 2479 |
+
"num_tokens": 40144139.0,
|
| 2480 |
+
"step": 2470
|
| 2481 |
+
},
|
| 2482 |
+
{
|
| 2483 |
+
"entropy": 0.28602821550448426,
|
| 2484 |
+
"epoch": 2.326511464258488,
|
| 2485 |
+
"grad_norm": 0.1220703125,
|
| 2486 |
+
"learning_rate": 4.496560350218887e-05,
|
| 2487 |
+
"loss": 0.2737,
|
| 2488 |
+
"mean_token_accuracy": 0.93137735016644,
|
| 2489 |
+
"num_tokens": 40307179.0,
|
| 2490 |
+
"step": 2480
|
| 2491 |
+
},
|
| 2492 |
+
{
|
| 2493 |
+
"entropy": 0.32213802009937353,
|
| 2494 |
+
"epoch": 2.3358939775992495,
|
| 2495 |
+
"grad_norm": 0.12890625,
|
| 2496 |
+
"learning_rate": 4.434021263289556e-05,
|
| 2497 |
+
"loss": 0.3179,
|
| 2498 |
+
"mean_token_accuracy": 0.9258282888680697,
|
| 2499 |
+
"num_tokens": 40470205.0,
|
| 2500 |
+
"step": 2490
|
| 2501 |
+
},
|
| 2502 |
+
{
|
| 2503 |
+
"entropy": 0.2958646867133211,
|
| 2504 |
+
"epoch": 2.3452764909400106,
|
| 2505 |
+
"grad_norm": 0.1513671875,
|
| 2506 |
+
"learning_rate": 4.3714821763602256e-05,
|
| 2507 |
+
"loss": 0.2905,
|
| 2508 |
+
"mean_token_accuracy": 0.9263608150184155,
|
| 2509 |
+
"num_tokens": 40631651.0,
|
| 2510 |
+
"step": 2500
|
| 2511 |
+
},
|
| 2512 |
+
{
|
| 2513 |
+
"entropy": 0.27999189621768894,
|
| 2514 |
+
"epoch": 2.3546590042807716,
|
| 2515 |
+
"grad_norm": 0.1552734375,
|
| 2516 |
+
"learning_rate": 4.308943089430895e-05,
|
| 2517 |
+
"loss": 0.2729,
|
| 2518 |
+
"mean_token_accuracy": 0.9314939744770527,
|
| 2519 |
+
"num_tokens": 40793827.0,
|
| 2520 |
+
"step": 2510
|
| 2521 |
+
},
|
| 2522 |
+
{
|
| 2523 |
+
"entropy": 0.2795608859625645,
|
| 2524 |
+
"epoch": 2.364041517621533,
|
| 2525 |
+
"grad_norm": 0.10400390625,
|
| 2526 |
+
"learning_rate": 4.246404002501564e-05,
|
| 2527 |
+
"loss": 0.2746,
|
| 2528 |
+
"mean_token_accuracy": 0.9295887473970652,
|
| 2529 |
+
"num_tokens": 40956707.0,
|
| 2530 |
+
"step": 2520
|
| 2531 |
+
},
|
| 2532 |
+
{
|
| 2533 |
+
"entropy": 0.3216266447561793,
|
| 2534 |
+
"epoch": 2.373424030962294,
|
| 2535 |
+
"grad_norm": 0.134765625,
|
| 2536 |
+
"learning_rate": 4.183864915572233e-05,
|
| 2537 |
+
"loss": 0.3164,
|
| 2538 |
+
"mean_token_accuracy": 0.9245435189455747,
|
| 2539 |
+
"num_tokens": 41118930.0,
|
| 2540 |
+
"step": 2530
|
| 2541 |
+
},
|
| 2542 |
+
{
|
| 2543 |
+
"entropy": 0.3690712286042981,
|
| 2544 |
+
"epoch": 2.382806544303055,
|
| 2545 |
+
"grad_norm": 0.14453125,
|
| 2546 |
+
"learning_rate": 4.121325828642902e-05,
|
| 2547 |
+
"loss": 0.3642,
|
| 2548 |
+
"mean_token_accuracy": 0.9181511271744967,
|
| 2549 |
+
"num_tokens": 41282031.0,
|
| 2550 |
+
"step": 2540
|
| 2551 |
+
},
|
| 2552 |
+
{
|
| 2553 |
+
"entropy": 0.3252036487159785,
|
| 2554 |
+
"epoch": 2.3921890576438165,
|
| 2555 |
+
"grad_norm": 0.142578125,
|
| 2556 |
+
"learning_rate": 4.058786741713571e-05,
|
| 2557 |
+
"loss": 0.3189,
|
| 2558 |
+
"mean_token_accuracy": 0.9277937490493059,
|
| 2559 |
+
"num_tokens": 41444176.0,
|
| 2560 |
+
"step": 2550
|
| 2561 |
+
},
|
| 2562 |
+
{
|
| 2563 |
+
"entropy": 0.26126941335387527,
|
| 2564 |
+
"epoch": 2.4015715709845775,
|
| 2565 |
+
"grad_norm": 0.126953125,
|
| 2566 |
+
"learning_rate": 3.99624765478424e-05,
|
| 2567 |
+
"loss": 0.2558,
|
| 2568 |
+
"mean_token_accuracy": 0.9345622129738331,
|
| 2569 |
+
"num_tokens": 41606952.0,
|
| 2570 |
+
"step": 2560
|
| 2571 |
+
},
|
| 2572 |
+
{
|
| 2573 |
+
"entropy": 0.32813997849007137,
|
| 2574 |
+
"epoch": 2.4109540843253385,
|
| 2575 |
+
"grad_norm": 0.1396484375,
|
| 2576 |
+
"learning_rate": 3.9337085678549094e-05,
|
| 2577 |
+
"loss": 0.3231,
|
| 2578 |
+
"mean_token_accuracy": 0.9266963802278042,
|
| 2579 |
+
"num_tokens": 41769441.0,
|
| 2580 |
+
"step": 2570
|
| 2581 |
+
},
|
| 2582 |
+
{
|
| 2583 |
+
"entropy": 0.3256168618972879,
|
| 2584 |
+
"epoch": 2.4203365976661,
|
| 2585 |
+
"grad_norm": 0.1494140625,
|
| 2586 |
+
"learning_rate": 3.871169480925579e-05,
|
| 2587 |
+
"loss": 0.3166,
|
| 2588 |
+
"mean_token_accuracy": 0.922471884265542,
|
| 2589 |
+
"num_tokens": 41932618.0,
|
| 2590 |
+
"step": 2580
|
| 2591 |
+
},
|
| 2592 |
+
{
|
| 2593 |
+
"entropy": 0.30511015201336705,
|
| 2594 |
+
"epoch": 2.429719111006861,
|
| 2595 |
+
"grad_norm": 0.11279296875,
|
| 2596 |
+
"learning_rate": 3.808630393996248e-05,
|
| 2597 |
+
"loss": 0.2983,
|
| 2598 |
+
"mean_token_accuracy": 0.9276284482330084,
|
| 2599 |
+
"num_tokens": 42094647.0,
|
| 2600 |
+
"step": 2590
|
| 2601 |
+
},
|
| 2602 |
+
{
|
| 2603 |
+
"entropy": 0.2836356892774347,
|
| 2604 |
+
"epoch": 2.439101624347622,
|
| 2605 |
+
"grad_norm": 0.1611328125,
|
| 2606 |
+
"learning_rate": 3.7460913070669166e-05,
|
| 2607 |
+
"loss": 0.2756,
|
| 2608 |
+
"mean_token_accuracy": 0.9297160636633635,
|
| 2609 |
+
"num_tokens": 42257314.0,
|
| 2610 |
+
"step": 2600
|
| 2611 |
+
},
|
| 2612 |
+
{
|
| 2613 |
+
"entropy": 0.26650271246326157,
|
| 2614 |
+
"epoch": 2.4484841376883835,
|
| 2615 |
+
"grad_norm": 0.150390625,
|
| 2616 |
+
"learning_rate": 3.683552220137586e-05,
|
| 2617 |
+
"loss": 0.2597,
|
| 2618 |
+
"mean_token_accuracy": 0.9355631563812494,
|
| 2619 |
+
"num_tokens": 42419215.0,
|
| 2620 |
+
"step": 2610
|
| 2621 |
+
},
|
| 2622 |
+
{
|
| 2623 |
+
"entropy": 0.339943853468867,
|
| 2624 |
+
"epoch": 2.4578666510291445,
|
| 2625 |
+
"grad_norm": 0.142578125,
|
| 2626 |
+
"learning_rate": 3.621013133208255e-05,
|
| 2627 |
+
"loss": 0.3348,
|
| 2628 |
+
"mean_token_accuracy": 0.9231440974399447,
|
| 2629 |
+
"num_tokens": 42581049.0,
|
| 2630 |
+
"step": 2620
|
| 2631 |
+
},
|
| 2632 |
+
{
|
| 2633 |
+
"entropy": 0.2780093678680714,
|
| 2634 |
+
"epoch": 2.4672491643699055,
|
| 2635 |
+
"grad_norm": 0.1474609375,
|
| 2636 |
+
"learning_rate": 3.5584740462789245e-05,
|
| 2637 |
+
"loss": 0.2706,
|
| 2638 |
+
"mean_token_accuracy": 0.9318165834993124,
|
| 2639 |
+
"num_tokens": 42743424.0,
|
| 2640 |
+
"step": 2630
|
| 2641 |
+
},
|
| 2642 |
+
{
|
| 2643 |
+
"entropy": 0.38994275986333377,
|
| 2644 |
+
"epoch": 2.4766316777106665,
|
| 2645 |
+
"grad_norm": 0.1630859375,
|
| 2646 |
+
"learning_rate": 3.495934959349594e-05,
|
| 2647 |
+
"loss": 0.3856,
|
| 2648 |
+
"mean_token_accuracy": 0.914062000438571,
|
| 2649 |
+
"num_tokens": 42905298.0,
|
| 2650 |
+
"step": 2640
|
| 2651 |
+
},
|
| 2652 |
+
{
|
| 2653 |
+
"entropy": 0.25893269666703417,
|
| 2654 |
+
"epoch": 2.486014191051428,
|
| 2655 |
+
"grad_norm": 0.1328125,
|
| 2656 |
+
"learning_rate": 3.433395872420263e-05,
|
| 2657 |
+
"loss": 0.2499,
|
| 2658 |
+
"mean_token_accuracy": 0.9351230334490538,
|
| 2659 |
+
"num_tokens": 43067214.0,
|
| 2660 |
+
"step": 2650
|
| 2661 |
+
},
|
| 2662 |
+
{
|
| 2663 |
+
"entropy": 0.3018484404310584,
|
| 2664 |
+
"epoch": 2.495396704392189,
|
| 2665 |
+
"grad_norm": 0.11962890625,
|
| 2666 |
+
"learning_rate": 3.370856785490932e-05,
|
| 2667 |
+
"loss": 0.2957,
|
| 2668 |
+
"mean_token_accuracy": 0.9283837772905826,
|
| 2669 |
+
"num_tokens": 43229346.0,
|
| 2670 |
+
"step": 2660
|
| 2671 |
+
},
|
| 2672 |
+
{
|
| 2673 |
+
"entropy": 0.2423785132705234,
|
| 2674 |
+
"epoch": 2.50477921773295,
|
| 2675 |
+
"grad_norm": 0.1298828125,
|
| 2676 |
+
"learning_rate": 3.308317698561601e-05,
|
| 2677 |
+
"loss": 0.2388,
|
| 2678 |
+
"mean_token_accuracy": 0.9364284005016088,
|
| 2679 |
+
"num_tokens": 43391495.0,
|
| 2680 |
+
"step": 2670
|
| 2681 |
+
},
|
| 2682 |
+
{
|
| 2683 |
+
"entropy": 0.3937613701389637,
|
| 2684 |
+
"epoch": 2.5141617310737114,
|
| 2685 |
+
"grad_norm": 0.146484375,
|
| 2686 |
+
"learning_rate": 3.2457786116322704e-05,
|
| 2687 |
+
"loss": 0.3887,
|
| 2688 |
+
"mean_token_accuracy": 0.9135016176849604,
|
| 2689 |
+
"num_tokens": 43554181.0,
|
| 2690 |
+
"step": 2680
|
| 2691 |
+
},
|
| 2692 |
+
{
|
| 2693 |
+
"entropy": 0.28887827979051506,
|
| 2694 |
+
"epoch": 2.5235442444144724,
|
| 2695 |
+
"grad_norm": 0.1845703125,
|
| 2696 |
+
"learning_rate": 3.18323952470294e-05,
|
| 2697 |
+
"loss": 0.2816,
|
| 2698 |
+
"mean_token_accuracy": 0.9309012487530708,
|
| 2699 |
+
"num_tokens": 43716755.0,
|
| 2700 |
+
"step": 2690
|
| 2701 |
+
},
|
| 2702 |
+
{
|
| 2703 |
+
"entropy": 0.3326025055255741,
|
| 2704 |
+
"epoch": 2.5329267577552335,
|
| 2705 |
+
"grad_norm": 0.1572265625,
|
| 2706 |
+
"learning_rate": 3.120700437773609e-05,
|
| 2707 |
+
"loss": 0.3246,
|
| 2708 |
+
"mean_token_accuracy": 0.9202332761138677,
|
| 2709 |
+
"num_tokens": 43878960.0,
|
| 2710 |
+
"step": 2700
|
| 2711 |
+
},
|
| 2712 |
+
{
|
| 2713 |
+
"entropy": 0.3055231410660781,
|
| 2714 |
+
"epoch": 2.542309271095995,
|
| 2715 |
+
"grad_norm": 0.1689453125,
|
| 2716 |
+
"learning_rate": 3.058161350844278e-05,
|
| 2717 |
+
"loss": 0.3023,
|
| 2718 |
+
"mean_token_accuracy": 0.9283943830057979,
|
| 2719 |
+
"num_tokens": 44041403.0,
|
| 2720 |
+
"step": 2710
|
| 2721 |
+
},
|
| 2722 |
+
{
|
| 2723 |
+
"entropy": 0.28135751393274405,
|
| 2724 |
+
"epoch": 2.551691784436756,
|
| 2725 |
+
"grad_norm": 0.1396484375,
|
| 2726 |
+
"learning_rate": 2.9956222639149466e-05,
|
| 2727 |
+
"loss": 0.2764,
|
| 2728 |
+
"mean_token_accuracy": 0.9312219850718975,
|
| 2729 |
+
"num_tokens": 44204489.0,
|
| 2730 |
+
"step": 2720
|
| 2731 |
+
},
|
| 2732 |
+
{
|
| 2733 |
+
"entropy": 0.2601934680482373,
|
| 2734 |
+
"epoch": 2.561074297777517,
|
| 2735 |
+
"grad_norm": 0.2060546875,
|
| 2736 |
+
"learning_rate": 2.933083176985616e-05,
|
| 2737 |
+
"loss": 0.2534,
|
| 2738 |
+
"mean_token_accuracy": 0.9365647614002228,
|
| 2739 |
+
"num_tokens": 44367457.0,
|
| 2740 |
+
"step": 2730
|
| 2741 |
+
},
|
| 2742 |
+
{
|
| 2743 |
+
"entropy": 0.2961357018793933,
|
| 2744 |
+
"epoch": 2.5704568111182784,
|
| 2745 |
+
"grad_norm": 0.1318359375,
|
| 2746 |
+
"learning_rate": 2.8705440900562852e-05,
|
| 2747 |
+
"loss": 0.2925,
|
| 2748 |
+
"mean_token_accuracy": 0.9294706670567393,
|
| 2749 |
+
"num_tokens": 44531018.0,
|
| 2750 |
+
"step": 2740
|
| 2751 |
+
},
|
| 2752 |
+
{
|
| 2753 |
+
"entropy": 0.3402582473878283,
|
| 2754 |
+
"epoch": 2.5798393244590394,
|
| 2755 |
+
"grad_norm": 0.142578125,
|
| 2756 |
+
"learning_rate": 2.8080050031269545e-05,
|
| 2757 |
+
"loss": 0.3349,
|
| 2758 |
+
"mean_token_accuracy": 0.9241237251088024,
|
| 2759 |
+
"num_tokens": 44693846.0,
|
| 2760 |
+
"step": 2750
|
| 2761 |
+
},
|
| 2762 |
+
{
|
| 2763 |
+
"entropy": 0.2918738658190705,
|
| 2764 |
+
"epoch": 2.5892218377998004,
|
| 2765 |
+
"grad_norm": 0.1455078125,
|
| 2766 |
+
"learning_rate": 2.7454659161976238e-05,
|
| 2767 |
+
"loss": 0.2832,
|
| 2768 |
+
"mean_token_accuracy": 0.9334099506959319,
|
| 2769 |
+
"num_tokens": 44856457.0,
|
| 2770 |
+
"step": 2760
|
| 2771 |
+
},
|
| 2772 |
+
{
|
| 2773 |
+
"entropy": 0.3172753399936482,
|
| 2774 |
+
"epoch": 2.598604351140562,
|
| 2775 |
+
"grad_norm": 0.1552734375,
|
| 2776 |
+
"learning_rate": 2.682926829268293e-05,
|
| 2777 |
+
"loss": 0.3109,
|
| 2778 |
+
"mean_token_accuracy": 0.9242209114134312,
|
| 2779 |
+
"num_tokens": 45018390.0,
|
| 2780 |
+
"step": 2770
|
| 2781 |
+
},
|
| 2782 |
+
{
|
| 2783 |
+
"entropy": 0.29830688254442067,
|
| 2784 |
+
"epoch": 2.607986864481323,
|
| 2785 |
+
"grad_norm": 0.142578125,
|
| 2786 |
+
"learning_rate": 2.620387742338962e-05,
|
| 2787 |
+
"loss": 0.2932,
|
| 2788 |
+
"mean_token_accuracy": 0.9281566303223372,
|
| 2789 |
+
"num_tokens": 45180693.0,
|
| 2790 |
+
"step": 2780
|
| 2791 |
+
},
|
| 2792 |
+
{
|
| 2793 |
+
"entropy": 0.32780712051899175,
|
| 2794 |
+
"epoch": 2.617369377822084,
|
| 2795 |
+
"grad_norm": 0.1328125,
|
| 2796 |
+
"learning_rate": 2.557848655409631e-05,
|
| 2797 |
+
"loss": 0.3174,
|
| 2798 |
+
"mean_token_accuracy": 0.926155343092978,
|
| 2799 |
+
"num_tokens": 45343376.0,
|
| 2800 |
+
"step": 2790
|
| 2801 |
+
},
|
| 2802 |
+
{
|
| 2803 |
+
"entropy": 0.2601445548760239,
|
| 2804 |
+
"epoch": 2.6267518911628454,
|
| 2805 |
+
"grad_norm": 0.146484375,
|
| 2806 |
+
"learning_rate": 2.4953095684803003e-05,
|
| 2807 |
+
"loss": 0.2511,
|
| 2808 |
+
"mean_token_accuracy": 0.9344733364880085,
|
| 2809 |
+
"num_tokens": 45505376.0,
|
| 2810 |
+
"step": 2800
|
| 2811 |
+
},
|
| 2812 |
+
{
|
| 2813 |
+
"entropy": 0.329776706371922,
|
| 2814 |
+
"epoch": 2.6361344045036064,
|
| 2815 |
+
"grad_norm": 0.14453125,
|
| 2816 |
+
"learning_rate": 2.4327704815509693e-05,
|
| 2817 |
+
"loss": 0.3268,
|
| 2818 |
+
"mean_token_accuracy": 0.9248848807066679,
|
| 2819 |
+
"num_tokens": 45667838.0,
|
| 2820 |
+
"step": 2810
|
| 2821 |
+
},
|
| 2822 |
+
{
|
| 2823 |
+
"entropy": 0.2883093195501715,
|
| 2824 |
+
"epoch": 2.6455169178443674,
|
| 2825 |
+
"grad_norm": 0.1181640625,
|
| 2826 |
+
"learning_rate": 2.3702313946216386e-05,
|
| 2827 |
+
"loss": 0.2863,
|
| 2828 |
+
"mean_token_accuracy": 0.930842773616314,
|
| 2829 |
+
"num_tokens": 45830525.0,
|
| 2830 |
+
"step": 2820
|
| 2831 |
+
},
|
| 2832 |
+
{
|
| 2833 |
+
"entropy": 0.24201850754907356,
|
| 2834 |
+
"epoch": 2.654899431185129,
|
| 2835 |
+
"grad_norm": 0.146484375,
|
| 2836 |
+
"learning_rate": 2.307692307692308e-05,
|
| 2837 |
+
"loss": 0.2331,
|
| 2838 |
+
"mean_token_accuracy": 0.9388571180403232,
|
| 2839 |
+
"num_tokens": 45993227.0,
|
| 2840 |
+
"step": 2830
|
| 2841 |
+
},
|
| 2842 |
+
{
|
| 2843 |
+
"entropy": 0.32533247509854846,
|
| 2844 |
+
"epoch": 2.66428194452589,
|
| 2845 |
+
"grad_norm": 0.150390625,
|
| 2846 |
+
"learning_rate": 2.245153220762977e-05,
|
| 2847 |
+
"loss": 0.3168,
|
| 2848 |
+
"mean_token_accuracy": 0.9255710192024708,
|
| 2849 |
+
"num_tokens": 46155827.0,
|
| 2850 |
+
"step": 2840
|
| 2851 |
+
},
|
| 2852 |
+
{
|
| 2853 |
+
"entropy": 0.3312520031700842,
|
| 2854 |
+
"epoch": 2.673664457866651,
|
| 2855 |
+
"grad_norm": 0.1181640625,
|
| 2856 |
+
"learning_rate": 2.1826141338336462e-05,
|
| 2857 |
+
"loss": 0.3231,
|
| 2858 |
+
"mean_token_accuracy": 0.9246046051383019,
|
| 2859 |
+
"num_tokens": 46318131.0,
|
| 2860 |
+
"step": 2850
|
| 2861 |
+
},
|
| 2862 |
+
{
|
| 2863 |
+
"entropy": 0.3453969239722937,
|
| 2864 |
+
"epoch": 2.6830469712074123,
|
| 2865 |
+
"grad_norm": 0.1513671875,
|
| 2866 |
+
"learning_rate": 2.1200750469043155e-05,
|
| 2867 |
+
"loss": 0.3423,
|
| 2868 |
+
"mean_token_accuracy": 0.9209890190511942,
|
| 2869 |
+
"num_tokens": 46480591.0,
|
| 2870 |
+
"step": 2860
|
| 2871 |
+
},
|
| 2872 |
+
{
|
| 2873 |
+
"entropy": 0.29795768808107825,
|
| 2874 |
+
"epoch": 2.6924294845481733,
|
| 2875 |
+
"grad_norm": 0.1748046875,
|
| 2876 |
+
"learning_rate": 2.0575359599749844e-05,
|
| 2877 |
+
"loss": 0.2897,
|
| 2878 |
+
"mean_token_accuracy": 0.9284091215580702,
|
| 2879 |
+
"num_tokens": 46642465.0,
|
| 2880 |
+
"step": 2870
|
| 2881 |
+
},
|
| 2882 |
+
{
|
| 2883 |
+
"entropy": 0.31598600526340304,
|
| 2884 |
+
"epoch": 2.7018119978889343,
|
| 2885 |
+
"grad_norm": 0.1494140625,
|
| 2886 |
+
"learning_rate": 1.9949968730456537e-05,
|
| 2887 |
+
"loss": 0.3058,
|
| 2888 |
+
"mean_token_accuracy": 0.9263520397245883,
|
| 2889 |
+
"num_tokens": 46805289.0,
|
| 2890 |
+
"step": 2880
|
| 2891 |
+
},
|
| 2892 |
+
{
|
| 2893 |
+
"entropy": 0.2473068662569858,
|
| 2894 |
+
"epoch": 2.711194511229696,
|
| 2895 |
+
"grad_norm": 0.1083984375,
|
| 2896 |
+
"learning_rate": 1.932457786116323e-05,
|
| 2897 |
+
"loss": 0.2443,
|
| 2898 |
+
"mean_token_accuracy": 0.9364898830652237,
|
| 2899 |
+
"num_tokens": 46968250.0,
|
| 2900 |
+
"step": 2890
|
| 2901 |
+
},
|
| 2902 |
+
{
|
| 2903 |
+
"entropy": 0.32329227214795536,
|
| 2904 |
+
"epoch": 2.720577024570457,
|
| 2905 |
+
"grad_norm": 0.1533203125,
|
| 2906 |
+
"learning_rate": 1.869918699186992e-05,
|
| 2907 |
+
"loss": 0.3206,
|
| 2908 |
+
"mean_token_accuracy": 0.925135574862361,
|
| 2909 |
+
"num_tokens": 47130591.0,
|
| 2910 |
+
"step": 2900
|
| 2911 |
+
},
|
| 2912 |
+
{
|
| 2913 |
+
"entropy": 0.2909718307200819,
|
| 2914 |
+
"epoch": 2.729959537911218,
|
| 2915 |
+
"grad_norm": 0.140625,
|
| 2916 |
+
"learning_rate": 1.807379612257661e-05,
|
| 2917 |
+
"loss": 0.2792,
|
| 2918 |
+
"mean_token_accuracy": 0.9289011463522912,
|
| 2919 |
+
"num_tokens": 47293338.0,
|
| 2920 |
+
"step": 2910
|
| 2921 |
+
},
|
| 2922 |
+
{
|
| 2923 |
+
"entropy": 0.35400011245510543,
|
| 2924 |
+
"epoch": 2.7393420512519793,
|
| 2925 |
+
"grad_norm": 0.11376953125,
|
| 2926 |
+
"learning_rate": 1.7448405253283303e-05,
|
| 2927 |
+
"loss": 0.3465,
|
| 2928 |
+
"mean_token_accuracy": 0.9220137037336826,
|
| 2929 |
+
"num_tokens": 47456230.0,
|
| 2930 |
+
"step": 2920
|
| 2931 |
+
},
|
| 2932 |
+
{
|
| 2933 |
+
"entropy": 0.2967787377536297,
|
| 2934 |
+
"epoch": 2.7487245645927403,
|
| 2935 |
+
"grad_norm": 0.150390625,
|
| 2936 |
+
"learning_rate": 1.6823014383989993e-05,
|
| 2937 |
+
"loss": 0.2901,
|
| 2938 |
+
"mean_token_accuracy": 0.9279664635658265,
|
| 2939 |
+
"num_tokens": 47618021.0,
|
| 2940 |
+
"step": 2930
|
| 2941 |
+
},
|
| 2942 |
+
{
|
| 2943 |
+
"entropy": 0.2816445629810914,
|
| 2944 |
+
"epoch": 2.7581070779335013,
|
| 2945 |
+
"grad_norm": 0.1474609375,
|
| 2946 |
+
"learning_rate": 1.6197623514696686e-05,
|
| 2947 |
+
"loss": 0.2777,
|
| 2948 |
+
"mean_token_accuracy": 0.9283030040562152,
|
| 2949 |
+
"num_tokens": 47781112.0,
|
| 2950 |
+
"step": 2940
|
| 2951 |
+
},
|
| 2952 |
+
{
|
| 2953 |
+
"entropy": 0.2784802548063453,
|
| 2954 |
+
"epoch": 2.7674895912742628,
|
| 2955 |
+
"grad_norm": 0.11328125,
|
| 2956 |
+
"learning_rate": 1.557223264540338e-05,
|
| 2957 |
+
"loss": 0.2742,
|
| 2958 |
+
"mean_token_accuracy": 0.9345203250646591,
|
| 2959 |
+
"num_tokens": 47943069.0,
|
| 2960 |
+
"step": 2950
|
| 2961 |
+
},
|
| 2962 |
+
{
|
| 2963 |
+
"entropy": 0.2651161406189203,
|
| 2964 |
+
"epoch": 2.7768721046150238,
|
| 2965 |
+
"grad_norm": 0.1259765625,
|
| 2966 |
+
"learning_rate": 1.4946841776110068e-05,
|
| 2967 |
+
"loss": 0.2572,
|
| 2968 |
+
"mean_token_accuracy": 0.9342164538800717,
|
| 2969 |
+
"num_tokens": 48105640.0,
|
| 2970 |
+
"step": 2960
|
| 2971 |
+
},
|
| 2972 |
+
{
|
| 2973 |
+
"entropy": 0.3173203022684902,
|
| 2974 |
+
"epoch": 2.7862546179557848,
|
| 2975 |
+
"grad_norm": 0.1611328125,
|
| 2976 |
+
"learning_rate": 1.4321450906816761e-05,
|
| 2977 |
+
"loss": 0.3152,
|
| 2978 |
+
"mean_token_accuracy": 0.9248944539576769,
|
| 2979 |
+
"num_tokens": 48268433.0,
|
| 2980 |
+
"step": 2970
|
| 2981 |
+
},
|
| 2982 |
+
{
|
| 2983 |
+
"entropy": 0.35732815401279366,
|
| 2984 |
+
"epoch": 2.7956371312965462,
|
| 2985 |
+
"grad_norm": 0.154296875,
|
| 2986 |
+
"learning_rate": 1.3696060037523453e-05,
|
| 2987 |
+
"loss": 0.3507,
|
| 2988 |
+
"mean_token_accuracy": 0.9167288988828659,
|
| 2989 |
+
"num_tokens": 48430662.0,
|
| 2990 |
+
"step": 2980
|
| 2991 |
+
},
|
| 2992 |
+
{
|
| 2993 |
+
"entropy": 0.33472506381222045,
|
| 2994 |
+
"epoch": 2.8050196446373072,
|
| 2995 |
+
"grad_norm": 0.15625,
|
| 2996 |
+
"learning_rate": 1.3070669168230146e-05,
|
| 2997 |
+
"loss": 0.3277,
|
| 2998 |
+
"mean_token_accuracy": 0.9212579555809498,
|
| 2999 |
+
"num_tokens": 48593324.0,
|
| 3000 |
+
"step": 2990
|
| 3001 |
+
},
|
| 3002 |
+
{
|
| 3003 |
+
"entropy": 0.2915991071087774,
|
| 3004 |
+
"epoch": 2.8144021579780683,
|
| 3005 |
+
"grad_norm": 0.11279296875,
|
| 3006 |
+
"learning_rate": 1.2445278298936835e-05,
|
| 3007 |
+
"loss": 0.2848,
|
| 3008 |
+
"mean_token_accuracy": 0.9322345092892647,
|
| 3009 |
+
"num_tokens": 48755803.0,
|
| 3010 |
+
"step": 3000
|
| 3011 |
+
},
|
| 3012 |
+
{
|
| 3013 |
+
"entropy": 0.29993935831007545,
|
| 3014 |
+
"epoch": 2.8237846713188297,
|
| 3015 |
+
"grad_norm": 0.146484375,
|
| 3016 |
+
"learning_rate": 1.1819887429643528e-05,
|
| 3017 |
+
"loss": 0.2917,
|
| 3018 |
+
"mean_token_accuracy": 0.9273430518805981,
|
| 3019 |
+
"num_tokens": 48918179.0,
|
| 3020 |
+
"step": 3010
|
| 3021 |
+
},
|
| 3022 |
+
{
|
| 3023 |
+
"entropy": 0.2874399486405309,
|
| 3024 |
+
"epoch": 2.8331671846595907,
|
| 3025 |
+
"grad_norm": 0.16015625,
|
| 3026 |
+
"learning_rate": 1.119449656035022e-05,
|
| 3027 |
+
"loss": 0.2776,
|
| 3028 |
+
"mean_token_accuracy": 0.931094466149807,
|
| 3029 |
+
"num_tokens": 49080584.0,
|
| 3030 |
+
"step": 3020
|
| 3031 |
+
},
|
| 3032 |
+
{
|
| 3033 |
+
"entropy": 0.3395154855912551,
|
| 3034 |
+
"epoch": 2.8425496980003517,
|
| 3035 |
+
"grad_norm": 0.1533203125,
|
| 3036 |
+
"learning_rate": 1.0569105691056911e-05,
|
| 3037 |
+
"loss": 0.3299,
|
| 3038 |
+
"mean_token_accuracy": 0.924785427749157,
|
| 3039 |
+
"num_tokens": 49243601.0,
|
| 3040 |
+
"step": 3030
|
| 3041 |
+
},
|
| 3042 |
+
{
|
| 3043 |
+
"entropy": 0.3259556777135003,
|
| 3044 |
+
"epoch": 2.851932211341113,
|
| 3045 |
+
"grad_norm": 0.1337890625,
|
| 3046 |
+
"learning_rate": 9.943714821763602e-06,
|
| 3047 |
+
"loss": 0.3207,
|
| 3048 |
+
"mean_token_accuracy": 0.9251650847494602,
|
| 3049 |
+
"num_tokens": 49405613.0,
|
| 3050 |
+
"step": 3040
|
| 3051 |
+
},
|
| 3052 |
+
{
|
| 3053 |
+
"entropy": 0.2658869383740239,
|
| 3054 |
+
"epoch": 2.861314724681874,
|
| 3055 |
+
"grad_norm": 0.1455078125,
|
| 3056 |
+
"learning_rate": 9.318323952470294e-06,
|
| 3057 |
+
"loss": 0.2584,
|
| 3058 |
+
"mean_token_accuracy": 0.9330834452062845,
|
| 3059 |
+
"num_tokens": 49568051.0,
|
| 3060 |
+
"step": 3050
|
| 3061 |
+
},
|
| 3062 |
+
{
|
| 3063 |
+
"entropy": 0.2719281981640961,
|
| 3064 |
+
"epoch": 2.870697238022635,
|
| 3065 |
+
"grad_norm": 0.16015625,
|
| 3066 |
+
"learning_rate": 8.692933083176987e-06,
|
| 3067 |
+
"loss": 0.2644,
|
| 3068 |
+
"mean_token_accuracy": 0.9362422559410334,
|
| 3069 |
+
"num_tokens": 49730469.0,
|
| 3070 |
+
"step": 3060
|
| 3071 |
+
},
|
| 3072 |
+
{
|
| 3073 |
+
"entropy": 0.3221181625209283,
|
| 3074 |
+
"epoch": 2.8800797513633967,
|
| 3075 |
+
"grad_norm": 0.146484375,
|
| 3076 |
+
"learning_rate": 8.067542213883678e-06,
|
| 3077 |
+
"loss": 0.3129,
|
| 3078 |
+
"mean_token_accuracy": 0.9273162662982941,
|
| 3079 |
+
"num_tokens": 49893439.0,
|
| 3080 |
+
"step": 3070
|
| 3081 |
+
},
|
| 3082 |
+
{
|
| 3083 |
+
"entropy": 0.26640188965247946,
|
| 3084 |
+
"epoch": 2.8894622647041577,
|
| 3085 |
+
"grad_norm": 0.1611328125,
|
| 3086 |
+
"learning_rate": 7.442151344590369e-06,
|
| 3087 |
+
"loss": 0.2571,
|
| 3088 |
+
"mean_token_accuracy": 0.9348009482026101,
|
| 3089 |
+
"num_tokens": 50055539.0,
|
| 3090 |
+
"step": 3080
|
| 3091 |
+
},
|
| 3092 |
+
{
|
| 3093 |
+
"entropy": 0.3002611313131638,
|
| 3094 |
+
"epoch": 2.8988447780449187,
|
| 3095 |
+
"grad_norm": 0.1083984375,
|
| 3096 |
+
"learning_rate": 6.816760475297062e-06,
|
| 3097 |
+
"loss": 0.2954,
|
| 3098 |
+
"mean_token_accuracy": 0.9285491608083248,
|
| 3099 |
+
"num_tokens": 50218430.0,
|
| 3100 |
+
"step": 3090
|
| 3101 |
+
},
|
| 3102 |
+
{
|
| 3103 |
+
"entropy": 0.36435635392554105,
|
| 3104 |
+
"epoch": 2.90822729138568,
|
| 3105 |
+
"grad_norm": 0.1396484375,
|
| 3106 |
+
"learning_rate": 6.191369606003752e-06,
|
| 3107 |
+
"loss": 0.3591,
|
| 3108 |
+
"mean_token_accuracy": 0.9154221881181002,
|
| 3109 |
+
"num_tokens": 50380974.0,
|
| 3110 |
+
"step": 3100
|
| 3111 |
+
},
|
| 3112 |
+
{
|
| 3113 |
+
"entropy": 0.27004491952247917,
|
| 3114 |
+
"epoch": 2.917609804726441,
|
| 3115 |
+
"grad_norm": 0.11572265625,
|
| 3116 |
+
"learning_rate": 5.565978736710444e-06,
|
| 3117 |
+
"loss": 0.2659,
|
| 3118 |
+
"mean_token_accuracy": 0.9321655161678791,
|
| 3119 |
+
"num_tokens": 50543527.0,
|
| 3120 |
+
"step": 3110
|
| 3121 |
+
},
|
| 3122 |
+
{
|
| 3123 |
+
"entropy": 0.2986813228810206,
|
| 3124 |
+
"epoch": 2.926992318067202,
|
| 3125 |
+
"grad_norm": 0.1572265625,
|
| 3126 |
+
"learning_rate": 4.940587867417136e-06,
|
| 3127 |
+
"loss": 0.296,
|
| 3128 |
+
"mean_token_accuracy": 0.928958417288959,
|
| 3129 |
+
"num_tokens": 50706274.0,
|
| 3130 |
+
"step": 3120
|
| 3131 |
+
},
|
| 3132 |
+
{
|
| 3133 |
+
"entropy": 0.3143228885368444,
|
| 3134 |
+
"epoch": 2.9363748314079636,
|
| 3135 |
+
"grad_norm": 0.1455078125,
|
| 3136 |
+
"learning_rate": 4.315196998123828e-06,
|
| 3137 |
+
"loss": 0.3108,
|
| 3138 |
+
"mean_token_accuracy": 0.9247220842167735,
|
| 3139 |
+
"num_tokens": 50869052.0,
|
| 3140 |
+
"step": 3130
|
| 3141 |
+
},
|
| 3142 |
+
{
|
| 3143 |
+
"entropy": 0.293576886493247,
|
| 3144 |
+
"epoch": 2.9457573447487246,
|
| 3145 |
+
"grad_norm": 0.1455078125,
|
| 3146 |
+
"learning_rate": 3.6898061288305188e-06,
|
| 3147 |
+
"loss": 0.2885,
|
| 3148 |
+
"mean_token_accuracy": 0.9293860323727131,
|
| 3149 |
+
"num_tokens": 51031710.0,
|
| 3150 |
+
"step": 3140
|
| 3151 |
+
},
|
| 3152 |
+
{
|
| 3153 |
+
"entropy": 0.2768217631499283,
|
| 3154 |
+
"epoch": 2.9551398580894856,
|
| 3155 |
+
"grad_norm": 0.138671875,
|
| 3156 |
+
"learning_rate": 3.064415259537211e-06,
|
| 3157 |
+
"loss": 0.2731,
|
| 3158 |
+
"mean_token_accuracy": 0.9313604889437557,
|
| 3159 |
+
"num_tokens": 51194073.0,
|
| 3160 |
+
"step": 3150
|
| 3161 |
+
},
|
| 3162 |
+
{
|
| 3163 |
+
"entropy": 0.29631736621959137,
|
| 3164 |
+
"epoch": 2.964522371430247,
|
| 3165 |
+
"grad_norm": 0.169921875,
|
| 3166 |
+
"learning_rate": 2.4390243902439027e-06,
|
| 3167 |
+
"loss": 0.2903,
|
| 3168 |
+
"mean_token_accuracy": 0.9294600717723369,
|
| 3169 |
+
"num_tokens": 51356082.0,
|
| 3170 |
+
"step": 3160
|
| 3171 |
+
},
|
| 3172 |
+
{
|
| 3173 |
+
"entropy": 0.28854622174985706,
|
| 3174 |
+
"epoch": 2.973904884771008,
|
| 3175 |
+
"grad_norm": 0.1337890625,
|
| 3176 |
+
"learning_rate": 1.813633520950594e-06,
|
| 3177 |
+
"loss": 0.2842,
|
| 3178 |
+
"mean_token_accuracy": 0.9323527112603187,
|
| 3179 |
+
"num_tokens": 51517707.0,
|
| 3180 |
+
"step": 3170
|
| 3181 |
+
},
|
| 3182 |
+
{
|
| 3183 |
+
"entropy": 0.2872266868769657,
|
| 3184 |
+
"epoch": 2.983287398111769,
|
| 3185 |
+
"grad_norm": 0.1337890625,
|
| 3186 |
+
"learning_rate": 1.1882426516572859e-06,
|
| 3187 |
+
"loss": 0.2816,
|
| 3188 |
+
"mean_token_accuracy": 0.9318976398557425,
|
| 3189 |
+
"num_tokens": 51680325.0,
|
| 3190 |
+
"step": 3180
|
| 3191 |
+
},
|
| 3192 |
+
{
|
| 3193 |
+
"entropy": 0.254745813657064,
|
| 3194 |
+
"epoch": 2.9926699114525306,
|
| 3195 |
+
"grad_norm": 0.1513671875,
|
| 3196 |
+
"learning_rate": 5.628517823639775e-07,
|
| 3197 |
+
"loss": 0.2483,
|
| 3198 |
+
"mean_token_accuracy": 0.9362917259335518,
|
| 3199 |
+
"num_tokens": 51842805.0,
|
| 3200 |
+
"step": 3190
|
| 3201 |
+
}
|
| 3202 |
+
],
|
| 3203 |
+
"logging_steps": 10,
|
| 3204 |
+
"max_steps": 3198,
|
| 3205 |
+
"num_input_tokens_seen": 0,
|
| 3206 |
+
"num_train_epochs": 3,
|
| 3207 |
+
"save_steps": 500,
|
| 3208 |
+
"stateful_callbacks": {
|
| 3209 |
+
"TrainerControl": {
|
| 3210 |
+
"args": {
|
| 3211 |
+
"should_epoch_stop": false,
|
| 3212 |
+
"should_evaluate": false,
|
| 3213 |
+
"should_log": false,
|
| 3214 |
+
"should_save": true,
|
| 3215 |
+
"should_training_stop": true
|
| 3216 |
+
},
|
| 3217 |
+
"attributes": {}
|
| 3218 |
+
}
|
| 3219 |
+
},
|
| 3220 |
+
"total_flos": 2.344450752773038e+18,
|
| 3221 |
+
"train_batch_size": 1,
|
| 3222 |
+
"trial_name": null,
|
| 3223 |
+
"trial_params": null
|
| 3224 |
+
}
|
checkpoint-3198/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db83ac20cd1ea46a30b9db82ee3c07152c60e62ceb73c1d01e3725eeebe949ed
|
| 3 |
+
size 6289
|
runs/Dec16_19-13-33_c97b5462718c/events.out.tfevents.1765912482.c97b5462718c.242.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0aad25b8f3ede9c8765ced339a85a4c648e0c58b06986bdc4830f5d4bc69c316
|
| 3 |
+
size 128580
|