Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- experiments/en-hr/README.md +59 -0
- experiments/en-hr/adapter/README.md +210 -0
- experiments/en-hr/adapter/adapter_config.json +50 -0
- experiments/en-hr/adapter/adapter_model.safetensors +3 -0
- experiments/en-hr/adapter/chat_template.jinja +109 -0
- experiments/en-hr/adapter/special_tokens_map.json +23 -0
- experiments/en-hr/adapter/tokenizer.json +3 -0
- experiments/en-hr/adapter/tokenizer_config.json +2066 -0
- experiments/en-hr/checkpoint-500/README.md +210 -0
- experiments/en-hr/checkpoint-500/adapter_config.json +50 -0
- experiments/en-hr/checkpoint-500/adapter_model.safetensors +3 -0
- experiments/en-hr/checkpoint-500/chat_template.jinja +109 -0
- experiments/en-hr/checkpoint-500/optimizer.pt +3 -0
- experiments/en-hr/checkpoint-500/rng_state.pth +3 -0
- experiments/en-hr/checkpoint-500/scheduler.pt +3 -0
- experiments/en-hr/checkpoint-500/special_tokens_map.json +23 -0
- experiments/en-hr/checkpoint-500/tokenizer.json +3 -0
- experiments/en-hr/checkpoint-500/tokenizer_config.json +2066 -0
- experiments/en-hr/checkpoint-500/trainer_state.json +734 -0
- experiments/en-hr/checkpoint-500/training_args.bin +3 -0
- experiments/en-hr/checkpoint-790/README.md +210 -0
- experiments/en-hr/checkpoint-790/adapter_config.json +50 -0
- experiments/en-hr/checkpoint-790/adapter_model.safetensors +3 -0
- experiments/en-hr/checkpoint-790/chat_template.jinja +109 -0
- experiments/en-hr/checkpoint-790/optimizer.pt +3 -0
- experiments/en-hr/checkpoint-790/rng_state.pth +3 -0
- experiments/en-hr/checkpoint-790/scheduler.pt +3 -0
- experiments/en-hr/checkpoint-790/special_tokens_map.json +23 -0
- experiments/en-hr/checkpoint-790/tokenizer.json +3 -0
- experiments/en-hr/checkpoint-790/tokenizer_config.json +2066 -0
- experiments/en-hr/checkpoint-790/trainer_state.json +1140 -0
- experiments/en-hr/checkpoint-790/training_args.bin +3 -0
- experiments/en-hr/metrics.json +12 -0
- experiments/en-hr/preds_en.csv +539 -0
- experiments/en-hr/preds_hr.csv +0 -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 |
+
experiments/en-hr/adapter/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
experiments/en-hr/checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
experiments/en-hr/checkpoint-790/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
experiments/en-hr/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: en-hr
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- unsloth
|
| 8 |
+
- sft
|
| 9 |
+
- trl
|
| 10 |
+
licence: license
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for en-hr
|
| 14 |
+
|
| 15 |
+
This model is a fine-tuned version of [unsloth/meta-llama-3.1-8b-instruct-bnb-4bit](https://huggingface.co/unsloth/meta-llama-3.1-8b-instruct-bnb-4bit).
|
| 16 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 17 |
+
|
| 18 |
+
## Quick start
|
| 19 |
+
|
| 20 |
+
```python
|
| 21 |
+
from transformers import pipeline
|
| 22 |
+
|
| 23 |
+
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?"
|
| 24 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 25 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 26 |
+
print(output["generated_text"])
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Training procedure
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
This model was trained with SFT.
|
| 35 |
+
|
| 36 |
+
### Framework versions
|
| 37 |
+
|
| 38 |
+
- TRL: 0.22.2
|
| 39 |
+
- Transformers: 4.56.0
|
| 40 |
+
- Pytorch: 2.8.0+cu129
|
| 41 |
+
- Datasets: 4.3.0
|
| 42 |
+
- Tokenizers: 0.22.0
|
| 43 |
+
|
| 44 |
+
## Citations
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
Cite TRL as:
|
| 49 |
+
|
| 50 |
+
```bibtex
|
| 51 |
+
@misc{vonwerra2022trl,
|
| 52 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 53 |
+
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},
|
| 54 |
+
year = 2020,
|
| 55 |
+
journal = {GitHub repository},
|
| 56 |
+
publisher = {GitHub},
|
| 57 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 58 |
+
}
|
| 59 |
+
```
|
experiments/en-hr/adapter/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
experiments/en-hr/adapter/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "LlamaForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.llama.modeling_llama",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/meta-llama-3.1-8b-instruct-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 16,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 8,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"up_proj",
|
| 41 |
+
"down_proj",
|
| 42 |
+
"q_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": true
|
| 50 |
+
}
|
experiments/en-hr/adapter/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ebb02019287163af13f8f36449f907330a42897aa8cc8a1993692dd25c3a4fe
|
| 3 |
+
size 83945296
|
experiments/en-hr/adapter/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 %}
|
experiments/en-hr/adapter/special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"pad_token": {
|
| 17 |
+
"content": "<|finetune_right_pad_id|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
experiments/en-hr/adapter/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
experiments/en-hr/adapter/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2066 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"128000": {
|
| 5 |
+
"content": "<|begin_of_text|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"128001": {
|
| 13 |
+
"content": "<|end_of_text|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"128002": {
|
| 21 |
+
"content": "<|reserved_special_token_0|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"128003": {
|
| 29 |
+
"content": "<|reserved_special_token_1|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"128004": {
|
| 37 |
+
"content": "<|finetune_right_pad_id|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"128005": {
|
| 45 |
+
"content": "<|reserved_special_token_2|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"128006": {
|
| 53 |
+
"content": "<|start_header_id|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"128007": {
|
| 61 |
+
"content": "<|end_header_id|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"128008": {
|
| 69 |
+
"content": "<|eom_id|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"128009": {
|
| 77 |
+
"content": "<|eot_id|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"128010": {
|
| 85 |
+
"content": "<|python_tag|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"128011": {
|
| 93 |
+
"content": "<|reserved_special_token_3|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"128012": {
|
| 101 |
+
"content": "<|reserved_special_token_4|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"128013": {
|
| 109 |
+
"content": "<|reserved_special_token_5|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"128014": {
|
| 117 |
+
"content": "<|reserved_special_token_6|>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": true
|
| 123 |
+
},
|
| 124 |
+
"128015": {
|
| 125 |
+
"content": "<|reserved_special_token_7|>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
"128016": {
|
| 133 |
+
"content": "<|reserved_special_token_8|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": true
|
| 139 |
+
},
|
| 140 |
+
"128017": {
|
| 141 |
+
"content": "<|reserved_special_token_9|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": true
|
| 147 |
+
},
|
| 148 |
+
"128018": {
|
| 149 |
+
"content": "<|reserved_special_token_10|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": true
|
| 155 |
+
},
|
| 156 |
+
"128019": {
|
| 157 |
+
"content": "<|reserved_special_token_11|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": true
|
| 163 |
+
},
|
| 164 |
+
"128020": {
|
| 165 |
+
"content": "<|reserved_special_token_12|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"128021": {
|
| 173 |
+
"content": "<|reserved_special_token_13|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
},
|
| 180 |
+
"128022": {
|
| 181 |
+
"content": "<|reserved_special_token_14|>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": true
|
| 187 |
+
},
|
| 188 |
+
"128023": {
|
| 189 |
+
"content": "<|reserved_special_token_15|>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": true
|
| 195 |
+
},
|
| 196 |
+
"128024": {
|
| 197 |
+
"content": "<|reserved_special_token_16|>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": true
|
| 203 |
+
},
|
| 204 |
+
"128025": {
|
| 205 |
+
"content": "<|reserved_special_token_17|>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": true
|
| 211 |
+
},
|
| 212 |
+
"128026": {
|
| 213 |
+
"content": "<|reserved_special_token_18|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"128027": {
|
| 221 |
+
"content": "<|reserved_special_token_19|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"128028": {
|
| 229 |
+
"content": "<|reserved_special_token_20|>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"128029": {
|
| 237 |
+
"content": "<|reserved_special_token_21|>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"128030": {
|
| 245 |
+
"content": "<|reserved_special_token_22|>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"128031": {
|
| 253 |
+
"content": "<|reserved_special_token_23|>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"128032": {
|
| 261 |
+
"content": "<|reserved_special_token_24|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
},
|
| 268 |
+
"128033": {
|
| 269 |
+
"content": "<|reserved_special_token_25|>",
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
"128034": {
|
| 277 |
+
"content": "<|reserved_special_token_26|>",
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": false,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": true
|
| 283 |
+
},
|
| 284 |
+
"128035": {
|
| 285 |
+
"content": "<|reserved_special_token_27|>",
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": false,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": true
|
| 291 |
+
},
|
| 292 |
+
"128036": {
|
| 293 |
+
"content": "<|reserved_special_token_28|>",
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": false,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": true
|
| 299 |
+
},
|
| 300 |
+
"128037": {
|
| 301 |
+
"content": "<|reserved_special_token_29|>",
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": false,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": true
|
| 307 |
+
},
|
| 308 |
+
"128038": {
|
| 309 |
+
"content": "<|reserved_special_token_30|>",
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": false,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": true
|
| 315 |
+
},
|
| 316 |
+
"128039": {
|
| 317 |
+
"content": "<|reserved_special_token_31|>",
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": false,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": true
|
| 323 |
+
},
|
| 324 |
+
"128040": {
|
| 325 |
+
"content": "<|reserved_special_token_32|>",
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": false,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": true
|
| 331 |
+
},
|
| 332 |
+
"128041": {
|
| 333 |
+
"content": "<|reserved_special_token_33|>",
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": false,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": true
|
| 339 |
+
},
|
| 340 |
+
"128042": {
|
| 341 |
+
"content": "<|reserved_special_token_34|>",
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
"128043": {
|
| 349 |
+
"content": "<|reserved_special_token_35|>",
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": false,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": true
|
| 355 |
+
},
|
| 356 |
+
"128044": {
|
| 357 |
+
"content": "<|reserved_special_token_36|>",
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": false,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": true
|
| 363 |
+
},
|
| 364 |
+
"128045": {
|
| 365 |
+
"content": "<|reserved_special_token_37|>",
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": false,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": true
|
| 371 |
+
},
|
| 372 |
+
"128046": {
|
| 373 |
+
"content": "<|reserved_special_token_38|>",
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": false,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": true
|
| 379 |
+
},
|
| 380 |
+
"128047": {
|
| 381 |
+
"content": "<|reserved_special_token_39|>",
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": false,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": true
|
| 387 |
+
},
|
| 388 |
+
"128048": {
|
| 389 |
+
"content": "<|reserved_special_token_40|>",
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": false,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": true
|
| 395 |
+
},
|
| 396 |
+
"128049": {
|
| 397 |
+
"content": "<|reserved_special_token_41|>",
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": false,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": true
|
| 403 |
+
},
|
| 404 |
+
"128050": {
|
| 405 |
+
"content": "<|reserved_special_token_42|>",
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": false,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": true
|
| 411 |
+
},
|
| 412 |
+
"128051": {
|
| 413 |
+
"content": "<|reserved_special_token_43|>",
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
"128052": {
|
| 421 |
+
"content": "<|reserved_special_token_44|>",
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": false,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": true
|
| 427 |
+
},
|
| 428 |
+
"128053": {
|
| 429 |
+
"content": "<|reserved_special_token_45|>",
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": false,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": true
|
| 435 |
+
},
|
| 436 |
+
"128054": {
|
| 437 |
+
"content": "<|reserved_special_token_46|>",
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": false,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": true
|
| 443 |
+
},
|
| 444 |
+
"128055": {
|
| 445 |
+
"content": "<|reserved_special_token_47|>",
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": false,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": true
|
| 451 |
+
},
|
| 452 |
+
"128056": {
|
| 453 |
+
"content": "<|reserved_special_token_48|>",
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": false,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": true
|
| 459 |
+
},
|
| 460 |
+
"128057": {
|
| 461 |
+
"content": "<|reserved_special_token_49|>",
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": false,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": true
|
| 467 |
+
},
|
| 468 |
+
"128058": {
|
| 469 |
+
"content": "<|reserved_special_token_50|>",
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": false,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": true
|
| 475 |
+
},
|
| 476 |
+
"128059": {
|
| 477 |
+
"content": "<|reserved_special_token_51|>",
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": false,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": true
|
| 483 |
+
},
|
| 484 |
+
"128060": {
|
| 485 |
+
"content": "<|reserved_special_token_52|>",
|
| 486 |
+
"lstrip": false,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": false,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": true
|
| 491 |
+
},
|
| 492 |
+
"128061": {
|
| 493 |
+
"content": "<|reserved_special_token_53|>",
|
| 494 |
+
"lstrip": false,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": false,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": true
|
| 499 |
+
},
|
| 500 |
+
"128062": {
|
| 501 |
+
"content": "<|reserved_special_token_54|>",
|
| 502 |
+
"lstrip": false,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": false,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": true
|
| 507 |
+
},
|
| 508 |
+
"128063": {
|
| 509 |
+
"content": "<|reserved_special_token_55|>",
|
| 510 |
+
"lstrip": false,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": false,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": true
|
| 515 |
+
},
|
| 516 |
+
"128064": {
|
| 517 |
+
"content": "<|reserved_special_token_56|>",
|
| 518 |
+
"lstrip": false,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": false,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": true
|
| 523 |
+
},
|
| 524 |
+
"128065": {
|
| 525 |
+
"content": "<|reserved_special_token_57|>",
|
| 526 |
+
"lstrip": false,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": false,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": true
|
| 531 |
+
},
|
| 532 |
+
"128066": {
|
| 533 |
+
"content": "<|reserved_special_token_58|>",
|
| 534 |
+
"lstrip": false,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": false,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": true
|
| 539 |
+
},
|
| 540 |
+
"128067": {
|
| 541 |
+
"content": "<|reserved_special_token_59|>",
|
| 542 |
+
"lstrip": false,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": false,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": true
|
| 547 |
+
},
|
| 548 |
+
"128068": {
|
| 549 |
+
"content": "<|reserved_special_token_60|>",
|
| 550 |
+
"lstrip": false,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": false,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": true
|
| 555 |
+
},
|
| 556 |
+
"128069": {
|
| 557 |
+
"content": "<|reserved_special_token_61|>",
|
| 558 |
+
"lstrip": false,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": false,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": true
|
| 563 |
+
},
|
| 564 |
+
"128070": {
|
| 565 |
+
"content": "<|reserved_special_token_62|>",
|
| 566 |
+
"lstrip": false,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": false,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": true
|
| 571 |
+
},
|
| 572 |
+
"128071": {
|
| 573 |
+
"content": "<|reserved_special_token_63|>",
|
| 574 |
+
"lstrip": false,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": false,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": true
|
| 579 |
+
},
|
| 580 |
+
"128072": {
|
| 581 |
+
"content": "<|reserved_special_token_64|>",
|
| 582 |
+
"lstrip": false,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": false,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": true
|
| 587 |
+
},
|
| 588 |
+
"128073": {
|
| 589 |
+
"content": "<|reserved_special_token_65|>",
|
| 590 |
+
"lstrip": false,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": false,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": true
|
| 595 |
+
},
|
| 596 |
+
"128074": {
|
| 597 |
+
"content": "<|reserved_special_token_66|>",
|
| 598 |
+
"lstrip": false,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": false,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": true
|
| 603 |
+
},
|
| 604 |
+
"128075": {
|
| 605 |
+
"content": "<|reserved_special_token_67|>",
|
| 606 |
+
"lstrip": false,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": false,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": true
|
| 611 |
+
},
|
| 612 |
+
"128076": {
|
| 613 |
+
"content": "<|reserved_special_token_68|>",
|
| 614 |
+
"lstrip": false,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": false,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": true
|
| 619 |
+
},
|
| 620 |
+
"128077": {
|
| 621 |
+
"content": "<|reserved_special_token_69|>",
|
| 622 |
+
"lstrip": false,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": false,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": true
|
| 627 |
+
},
|
| 628 |
+
"128078": {
|
| 629 |
+
"content": "<|reserved_special_token_70|>",
|
| 630 |
+
"lstrip": false,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": false,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": true
|
| 635 |
+
},
|
| 636 |
+
"128079": {
|
| 637 |
+
"content": "<|reserved_special_token_71|>",
|
| 638 |
+
"lstrip": false,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": false,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": true
|
| 643 |
+
},
|
| 644 |
+
"128080": {
|
| 645 |
+
"content": "<|reserved_special_token_72|>",
|
| 646 |
+
"lstrip": false,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": false,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": true
|
| 651 |
+
},
|
| 652 |
+
"128081": {
|
| 653 |
+
"content": "<|reserved_special_token_73|>",
|
| 654 |
+
"lstrip": false,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": false,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": true
|
| 659 |
+
},
|
| 660 |
+
"128082": {
|
| 661 |
+
"content": "<|reserved_special_token_74|>",
|
| 662 |
+
"lstrip": false,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": false,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": true
|
| 667 |
+
},
|
| 668 |
+
"128083": {
|
| 669 |
+
"content": "<|reserved_special_token_75|>",
|
| 670 |
+
"lstrip": false,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": false,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": true
|
| 675 |
+
},
|
| 676 |
+
"128084": {
|
| 677 |
+
"content": "<|reserved_special_token_76|>",
|
| 678 |
+
"lstrip": false,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": false,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": true
|
| 683 |
+
},
|
| 684 |
+
"128085": {
|
| 685 |
+
"content": "<|reserved_special_token_77|>",
|
| 686 |
+
"lstrip": false,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": false,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": true
|
| 691 |
+
},
|
| 692 |
+
"128086": {
|
| 693 |
+
"content": "<|reserved_special_token_78|>",
|
| 694 |
+
"lstrip": false,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": false,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": true
|
| 699 |
+
},
|
| 700 |
+
"128087": {
|
| 701 |
+
"content": "<|reserved_special_token_79|>",
|
| 702 |
+
"lstrip": false,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": false,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": true
|
| 707 |
+
},
|
| 708 |
+
"128088": {
|
| 709 |
+
"content": "<|reserved_special_token_80|>",
|
| 710 |
+
"lstrip": false,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": false,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": true
|
| 715 |
+
},
|
| 716 |
+
"128089": {
|
| 717 |
+
"content": "<|reserved_special_token_81|>",
|
| 718 |
+
"lstrip": false,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": false,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": true
|
| 723 |
+
},
|
| 724 |
+
"128090": {
|
| 725 |
+
"content": "<|reserved_special_token_82|>",
|
| 726 |
+
"lstrip": false,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": false,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": true
|
| 731 |
+
},
|
| 732 |
+
"128091": {
|
| 733 |
+
"content": "<|reserved_special_token_83|>",
|
| 734 |
+
"lstrip": false,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": false,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": true
|
| 739 |
+
},
|
| 740 |
+
"128092": {
|
| 741 |
+
"content": "<|reserved_special_token_84|>",
|
| 742 |
+
"lstrip": false,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": false,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": true
|
| 747 |
+
},
|
| 748 |
+
"128093": {
|
| 749 |
+
"content": "<|reserved_special_token_85|>",
|
| 750 |
+
"lstrip": false,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": false,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": true
|
| 755 |
+
},
|
| 756 |
+
"128094": {
|
| 757 |
+
"content": "<|reserved_special_token_86|>",
|
| 758 |
+
"lstrip": false,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": false,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": true
|
| 763 |
+
},
|
| 764 |
+
"128095": {
|
| 765 |
+
"content": "<|reserved_special_token_87|>",
|
| 766 |
+
"lstrip": false,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": false,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": true
|
| 771 |
+
},
|
| 772 |
+
"128096": {
|
| 773 |
+
"content": "<|reserved_special_token_88|>",
|
| 774 |
+
"lstrip": false,
|
| 775 |
+
"normalized": false,
|
| 776 |
+
"rstrip": false,
|
| 777 |
+
"single_word": false,
|
| 778 |
+
"special": true
|
| 779 |
+
},
|
| 780 |
+
"128097": {
|
| 781 |
+
"content": "<|reserved_special_token_89|>",
|
| 782 |
+
"lstrip": false,
|
| 783 |
+
"normalized": false,
|
| 784 |
+
"rstrip": false,
|
| 785 |
+
"single_word": false,
|
| 786 |
+
"special": true
|
| 787 |
+
},
|
| 788 |
+
"128098": {
|
| 789 |
+
"content": "<|reserved_special_token_90|>",
|
| 790 |
+
"lstrip": false,
|
| 791 |
+
"normalized": false,
|
| 792 |
+
"rstrip": false,
|
| 793 |
+
"single_word": false,
|
| 794 |
+
"special": true
|
| 795 |
+
},
|
| 796 |
+
"128099": {
|
| 797 |
+
"content": "<|reserved_special_token_91|>",
|
| 798 |
+
"lstrip": false,
|
| 799 |
+
"normalized": false,
|
| 800 |
+
"rstrip": false,
|
| 801 |
+
"single_word": false,
|
| 802 |
+
"special": true
|
| 803 |
+
},
|
| 804 |
+
"128100": {
|
| 805 |
+
"content": "<|reserved_special_token_92|>",
|
| 806 |
+
"lstrip": false,
|
| 807 |
+
"normalized": false,
|
| 808 |
+
"rstrip": false,
|
| 809 |
+
"single_word": false,
|
| 810 |
+
"special": true
|
| 811 |
+
},
|
| 812 |
+
"128101": {
|
| 813 |
+
"content": "<|reserved_special_token_93|>",
|
| 814 |
+
"lstrip": false,
|
| 815 |
+
"normalized": false,
|
| 816 |
+
"rstrip": false,
|
| 817 |
+
"single_word": false,
|
| 818 |
+
"special": true
|
| 819 |
+
},
|
| 820 |
+
"128102": {
|
| 821 |
+
"content": "<|reserved_special_token_94|>",
|
| 822 |
+
"lstrip": false,
|
| 823 |
+
"normalized": false,
|
| 824 |
+
"rstrip": false,
|
| 825 |
+
"single_word": false,
|
| 826 |
+
"special": true
|
| 827 |
+
},
|
| 828 |
+
"128103": {
|
| 829 |
+
"content": "<|reserved_special_token_95|>",
|
| 830 |
+
"lstrip": false,
|
| 831 |
+
"normalized": false,
|
| 832 |
+
"rstrip": false,
|
| 833 |
+
"single_word": false,
|
| 834 |
+
"special": true
|
| 835 |
+
},
|
| 836 |
+
"128104": {
|
| 837 |
+
"content": "<|reserved_special_token_96|>",
|
| 838 |
+
"lstrip": false,
|
| 839 |
+
"normalized": false,
|
| 840 |
+
"rstrip": false,
|
| 841 |
+
"single_word": false,
|
| 842 |
+
"special": true
|
| 843 |
+
},
|
| 844 |
+
"128105": {
|
| 845 |
+
"content": "<|reserved_special_token_97|>",
|
| 846 |
+
"lstrip": false,
|
| 847 |
+
"normalized": false,
|
| 848 |
+
"rstrip": false,
|
| 849 |
+
"single_word": false,
|
| 850 |
+
"special": true
|
| 851 |
+
},
|
| 852 |
+
"128106": {
|
| 853 |
+
"content": "<|reserved_special_token_98|>",
|
| 854 |
+
"lstrip": false,
|
| 855 |
+
"normalized": false,
|
| 856 |
+
"rstrip": false,
|
| 857 |
+
"single_word": false,
|
| 858 |
+
"special": true
|
| 859 |
+
},
|
| 860 |
+
"128107": {
|
| 861 |
+
"content": "<|reserved_special_token_99|>",
|
| 862 |
+
"lstrip": false,
|
| 863 |
+
"normalized": false,
|
| 864 |
+
"rstrip": false,
|
| 865 |
+
"single_word": false,
|
| 866 |
+
"special": true
|
| 867 |
+
},
|
| 868 |
+
"128108": {
|
| 869 |
+
"content": "<|reserved_special_token_100|>",
|
| 870 |
+
"lstrip": false,
|
| 871 |
+
"normalized": false,
|
| 872 |
+
"rstrip": false,
|
| 873 |
+
"single_word": false,
|
| 874 |
+
"special": true
|
| 875 |
+
},
|
| 876 |
+
"128109": {
|
| 877 |
+
"content": "<|reserved_special_token_101|>",
|
| 878 |
+
"lstrip": false,
|
| 879 |
+
"normalized": false,
|
| 880 |
+
"rstrip": false,
|
| 881 |
+
"single_word": false,
|
| 882 |
+
"special": true
|
| 883 |
+
},
|
| 884 |
+
"128110": {
|
| 885 |
+
"content": "<|reserved_special_token_102|>",
|
| 886 |
+
"lstrip": false,
|
| 887 |
+
"normalized": false,
|
| 888 |
+
"rstrip": false,
|
| 889 |
+
"single_word": false,
|
| 890 |
+
"special": true
|
| 891 |
+
},
|
| 892 |
+
"128111": {
|
| 893 |
+
"content": "<|reserved_special_token_103|>",
|
| 894 |
+
"lstrip": false,
|
| 895 |
+
"normalized": false,
|
| 896 |
+
"rstrip": false,
|
| 897 |
+
"single_word": false,
|
| 898 |
+
"special": true
|
| 899 |
+
},
|
| 900 |
+
"128112": {
|
| 901 |
+
"content": "<|reserved_special_token_104|>",
|
| 902 |
+
"lstrip": false,
|
| 903 |
+
"normalized": false,
|
| 904 |
+
"rstrip": false,
|
| 905 |
+
"single_word": false,
|
| 906 |
+
"special": true
|
| 907 |
+
},
|
| 908 |
+
"128113": {
|
| 909 |
+
"content": "<|reserved_special_token_105|>",
|
| 910 |
+
"lstrip": false,
|
| 911 |
+
"normalized": false,
|
| 912 |
+
"rstrip": false,
|
| 913 |
+
"single_word": false,
|
| 914 |
+
"special": true
|
| 915 |
+
},
|
| 916 |
+
"128114": {
|
| 917 |
+
"content": "<|reserved_special_token_106|>",
|
| 918 |
+
"lstrip": false,
|
| 919 |
+
"normalized": false,
|
| 920 |
+
"rstrip": false,
|
| 921 |
+
"single_word": false,
|
| 922 |
+
"special": true
|
| 923 |
+
},
|
| 924 |
+
"128115": {
|
| 925 |
+
"content": "<|reserved_special_token_107|>",
|
| 926 |
+
"lstrip": false,
|
| 927 |
+
"normalized": false,
|
| 928 |
+
"rstrip": false,
|
| 929 |
+
"single_word": false,
|
| 930 |
+
"special": true
|
| 931 |
+
},
|
| 932 |
+
"128116": {
|
| 933 |
+
"content": "<|reserved_special_token_108|>",
|
| 934 |
+
"lstrip": false,
|
| 935 |
+
"normalized": false,
|
| 936 |
+
"rstrip": false,
|
| 937 |
+
"single_word": false,
|
| 938 |
+
"special": true
|
| 939 |
+
},
|
| 940 |
+
"128117": {
|
| 941 |
+
"content": "<|reserved_special_token_109|>",
|
| 942 |
+
"lstrip": false,
|
| 943 |
+
"normalized": false,
|
| 944 |
+
"rstrip": false,
|
| 945 |
+
"single_word": false,
|
| 946 |
+
"special": true
|
| 947 |
+
},
|
| 948 |
+
"128118": {
|
| 949 |
+
"content": "<|reserved_special_token_110|>",
|
| 950 |
+
"lstrip": false,
|
| 951 |
+
"normalized": false,
|
| 952 |
+
"rstrip": false,
|
| 953 |
+
"single_word": false,
|
| 954 |
+
"special": true
|
| 955 |
+
},
|
| 956 |
+
"128119": {
|
| 957 |
+
"content": "<|reserved_special_token_111|>",
|
| 958 |
+
"lstrip": false,
|
| 959 |
+
"normalized": false,
|
| 960 |
+
"rstrip": false,
|
| 961 |
+
"single_word": false,
|
| 962 |
+
"special": true
|
| 963 |
+
},
|
| 964 |
+
"128120": {
|
| 965 |
+
"content": "<|reserved_special_token_112|>",
|
| 966 |
+
"lstrip": false,
|
| 967 |
+
"normalized": false,
|
| 968 |
+
"rstrip": false,
|
| 969 |
+
"single_word": false,
|
| 970 |
+
"special": true
|
| 971 |
+
},
|
| 972 |
+
"128121": {
|
| 973 |
+
"content": "<|reserved_special_token_113|>",
|
| 974 |
+
"lstrip": false,
|
| 975 |
+
"normalized": false,
|
| 976 |
+
"rstrip": false,
|
| 977 |
+
"single_word": false,
|
| 978 |
+
"special": true
|
| 979 |
+
},
|
| 980 |
+
"128122": {
|
| 981 |
+
"content": "<|reserved_special_token_114|>",
|
| 982 |
+
"lstrip": false,
|
| 983 |
+
"normalized": false,
|
| 984 |
+
"rstrip": false,
|
| 985 |
+
"single_word": false,
|
| 986 |
+
"special": true
|
| 987 |
+
},
|
| 988 |
+
"128123": {
|
| 989 |
+
"content": "<|reserved_special_token_115|>",
|
| 990 |
+
"lstrip": false,
|
| 991 |
+
"normalized": false,
|
| 992 |
+
"rstrip": false,
|
| 993 |
+
"single_word": false,
|
| 994 |
+
"special": true
|
| 995 |
+
},
|
| 996 |
+
"128124": {
|
| 997 |
+
"content": "<|reserved_special_token_116|>",
|
| 998 |
+
"lstrip": false,
|
| 999 |
+
"normalized": false,
|
| 1000 |
+
"rstrip": false,
|
| 1001 |
+
"single_word": false,
|
| 1002 |
+
"special": true
|
| 1003 |
+
},
|
| 1004 |
+
"128125": {
|
| 1005 |
+
"content": "<|reserved_special_token_117|>",
|
| 1006 |
+
"lstrip": false,
|
| 1007 |
+
"normalized": false,
|
| 1008 |
+
"rstrip": false,
|
| 1009 |
+
"single_word": false,
|
| 1010 |
+
"special": true
|
| 1011 |
+
},
|
| 1012 |
+
"128126": {
|
| 1013 |
+
"content": "<|reserved_special_token_118|>",
|
| 1014 |
+
"lstrip": false,
|
| 1015 |
+
"normalized": false,
|
| 1016 |
+
"rstrip": false,
|
| 1017 |
+
"single_word": false,
|
| 1018 |
+
"special": true
|
| 1019 |
+
},
|
| 1020 |
+
"128127": {
|
| 1021 |
+
"content": "<|reserved_special_token_119|>",
|
| 1022 |
+
"lstrip": false,
|
| 1023 |
+
"normalized": false,
|
| 1024 |
+
"rstrip": false,
|
| 1025 |
+
"single_word": false,
|
| 1026 |
+
"special": true
|
| 1027 |
+
},
|
| 1028 |
+
"128128": {
|
| 1029 |
+
"content": "<|reserved_special_token_120|>",
|
| 1030 |
+
"lstrip": false,
|
| 1031 |
+
"normalized": false,
|
| 1032 |
+
"rstrip": false,
|
| 1033 |
+
"single_word": false,
|
| 1034 |
+
"special": true
|
| 1035 |
+
},
|
| 1036 |
+
"128129": {
|
| 1037 |
+
"content": "<|reserved_special_token_121|>",
|
| 1038 |
+
"lstrip": false,
|
| 1039 |
+
"normalized": false,
|
| 1040 |
+
"rstrip": false,
|
| 1041 |
+
"single_word": false,
|
| 1042 |
+
"special": true
|
| 1043 |
+
},
|
| 1044 |
+
"128130": {
|
| 1045 |
+
"content": "<|reserved_special_token_122|>",
|
| 1046 |
+
"lstrip": false,
|
| 1047 |
+
"normalized": false,
|
| 1048 |
+
"rstrip": false,
|
| 1049 |
+
"single_word": false,
|
| 1050 |
+
"special": true
|
| 1051 |
+
},
|
| 1052 |
+
"128131": {
|
| 1053 |
+
"content": "<|reserved_special_token_123|>",
|
| 1054 |
+
"lstrip": false,
|
| 1055 |
+
"normalized": false,
|
| 1056 |
+
"rstrip": false,
|
| 1057 |
+
"single_word": false,
|
| 1058 |
+
"special": true
|
| 1059 |
+
},
|
| 1060 |
+
"128132": {
|
| 1061 |
+
"content": "<|reserved_special_token_124|>",
|
| 1062 |
+
"lstrip": false,
|
| 1063 |
+
"normalized": false,
|
| 1064 |
+
"rstrip": false,
|
| 1065 |
+
"single_word": false,
|
| 1066 |
+
"special": true
|
| 1067 |
+
},
|
| 1068 |
+
"128133": {
|
| 1069 |
+
"content": "<|reserved_special_token_125|>",
|
| 1070 |
+
"lstrip": false,
|
| 1071 |
+
"normalized": false,
|
| 1072 |
+
"rstrip": false,
|
| 1073 |
+
"single_word": false,
|
| 1074 |
+
"special": true
|
| 1075 |
+
},
|
| 1076 |
+
"128134": {
|
| 1077 |
+
"content": "<|reserved_special_token_126|>",
|
| 1078 |
+
"lstrip": false,
|
| 1079 |
+
"normalized": false,
|
| 1080 |
+
"rstrip": false,
|
| 1081 |
+
"single_word": false,
|
| 1082 |
+
"special": true
|
| 1083 |
+
},
|
| 1084 |
+
"128135": {
|
| 1085 |
+
"content": "<|reserved_special_token_127|>",
|
| 1086 |
+
"lstrip": false,
|
| 1087 |
+
"normalized": false,
|
| 1088 |
+
"rstrip": false,
|
| 1089 |
+
"single_word": false,
|
| 1090 |
+
"special": true
|
| 1091 |
+
},
|
| 1092 |
+
"128136": {
|
| 1093 |
+
"content": "<|reserved_special_token_128|>",
|
| 1094 |
+
"lstrip": false,
|
| 1095 |
+
"normalized": false,
|
| 1096 |
+
"rstrip": false,
|
| 1097 |
+
"single_word": false,
|
| 1098 |
+
"special": true
|
| 1099 |
+
},
|
| 1100 |
+
"128137": {
|
| 1101 |
+
"content": "<|reserved_special_token_129|>",
|
| 1102 |
+
"lstrip": false,
|
| 1103 |
+
"normalized": false,
|
| 1104 |
+
"rstrip": false,
|
| 1105 |
+
"single_word": false,
|
| 1106 |
+
"special": true
|
| 1107 |
+
},
|
| 1108 |
+
"128138": {
|
| 1109 |
+
"content": "<|reserved_special_token_130|>",
|
| 1110 |
+
"lstrip": false,
|
| 1111 |
+
"normalized": false,
|
| 1112 |
+
"rstrip": false,
|
| 1113 |
+
"single_word": false,
|
| 1114 |
+
"special": true
|
| 1115 |
+
},
|
| 1116 |
+
"128139": {
|
| 1117 |
+
"content": "<|reserved_special_token_131|>",
|
| 1118 |
+
"lstrip": false,
|
| 1119 |
+
"normalized": false,
|
| 1120 |
+
"rstrip": false,
|
| 1121 |
+
"single_word": false,
|
| 1122 |
+
"special": true
|
| 1123 |
+
},
|
| 1124 |
+
"128140": {
|
| 1125 |
+
"content": "<|reserved_special_token_132|>",
|
| 1126 |
+
"lstrip": false,
|
| 1127 |
+
"normalized": false,
|
| 1128 |
+
"rstrip": false,
|
| 1129 |
+
"single_word": false,
|
| 1130 |
+
"special": true
|
| 1131 |
+
},
|
| 1132 |
+
"128141": {
|
| 1133 |
+
"content": "<|reserved_special_token_133|>",
|
| 1134 |
+
"lstrip": false,
|
| 1135 |
+
"normalized": false,
|
| 1136 |
+
"rstrip": false,
|
| 1137 |
+
"single_word": false,
|
| 1138 |
+
"special": true
|
| 1139 |
+
},
|
| 1140 |
+
"128142": {
|
| 1141 |
+
"content": "<|reserved_special_token_134|>",
|
| 1142 |
+
"lstrip": false,
|
| 1143 |
+
"normalized": false,
|
| 1144 |
+
"rstrip": false,
|
| 1145 |
+
"single_word": false,
|
| 1146 |
+
"special": true
|
| 1147 |
+
},
|
| 1148 |
+
"128143": {
|
| 1149 |
+
"content": "<|reserved_special_token_135|>",
|
| 1150 |
+
"lstrip": false,
|
| 1151 |
+
"normalized": false,
|
| 1152 |
+
"rstrip": false,
|
| 1153 |
+
"single_word": false,
|
| 1154 |
+
"special": true
|
| 1155 |
+
},
|
| 1156 |
+
"128144": {
|
| 1157 |
+
"content": "<|reserved_special_token_136|>",
|
| 1158 |
+
"lstrip": false,
|
| 1159 |
+
"normalized": false,
|
| 1160 |
+
"rstrip": false,
|
| 1161 |
+
"single_word": false,
|
| 1162 |
+
"special": true
|
| 1163 |
+
},
|
| 1164 |
+
"128145": {
|
| 1165 |
+
"content": "<|reserved_special_token_137|>",
|
| 1166 |
+
"lstrip": false,
|
| 1167 |
+
"normalized": false,
|
| 1168 |
+
"rstrip": false,
|
| 1169 |
+
"single_word": false,
|
| 1170 |
+
"special": true
|
| 1171 |
+
},
|
| 1172 |
+
"128146": {
|
| 1173 |
+
"content": "<|reserved_special_token_138|>",
|
| 1174 |
+
"lstrip": false,
|
| 1175 |
+
"normalized": false,
|
| 1176 |
+
"rstrip": false,
|
| 1177 |
+
"single_word": false,
|
| 1178 |
+
"special": true
|
| 1179 |
+
},
|
| 1180 |
+
"128147": {
|
| 1181 |
+
"content": "<|reserved_special_token_139|>",
|
| 1182 |
+
"lstrip": false,
|
| 1183 |
+
"normalized": false,
|
| 1184 |
+
"rstrip": false,
|
| 1185 |
+
"single_word": false,
|
| 1186 |
+
"special": true
|
| 1187 |
+
},
|
| 1188 |
+
"128148": {
|
| 1189 |
+
"content": "<|reserved_special_token_140|>",
|
| 1190 |
+
"lstrip": false,
|
| 1191 |
+
"normalized": false,
|
| 1192 |
+
"rstrip": false,
|
| 1193 |
+
"single_word": false,
|
| 1194 |
+
"special": true
|
| 1195 |
+
},
|
| 1196 |
+
"128149": {
|
| 1197 |
+
"content": "<|reserved_special_token_141|>",
|
| 1198 |
+
"lstrip": false,
|
| 1199 |
+
"normalized": false,
|
| 1200 |
+
"rstrip": false,
|
| 1201 |
+
"single_word": false,
|
| 1202 |
+
"special": true
|
| 1203 |
+
},
|
| 1204 |
+
"128150": {
|
| 1205 |
+
"content": "<|reserved_special_token_142|>",
|
| 1206 |
+
"lstrip": false,
|
| 1207 |
+
"normalized": false,
|
| 1208 |
+
"rstrip": false,
|
| 1209 |
+
"single_word": false,
|
| 1210 |
+
"special": true
|
| 1211 |
+
},
|
| 1212 |
+
"128151": {
|
| 1213 |
+
"content": "<|reserved_special_token_143|>",
|
| 1214 |
+
"lstrip": false,
|
| 1215 |
+
"normalized": false,
|
| 1216 |
+
"rstrip": false,
|
| 1217 |
+
"single_word": false,
|
| 1218 |
+
"special": true
|
| 1219 |
+
},
|
| 1220 |
+
"128152": {
|
| 1221 |
+
"content": "<|reserved_special_token_144|>",
|
| 1222 |
+
"lstrip": false,
|
| 1223 |
+
"normalized": false,
|
| 1224 |
+
"rstrip": false,
|
| 1225 |
+
"single_word": false,
|
| 1226 |
+
"special": true
|
| 1227 |
+
},
|
| 1228 |
+
"128153": {
|
| 1229 |
+
"content": "<|reserved_special_token_145|>",
|
| 1230 |
+
"lstrip": false,
|
| 1231 |
+
"normalized": false,
|
| 1232 |
+
"rstrip": false,
|
| 1233 |
+
"single_word": false,
|
| 1234 |
+
"special": true
|
| 1235 |
+
},
|
| 1236 |
+
"128154": {
|
| 1237 |
+
"content": "<|reserved_special_token_146|>",
|
| 1238 |
+
"lstrip": false,
|
| 1239 |
+
"normalized": false,
|
| 1240 |
+
"rstrip": false,
|
| 1241 |
+
"single_word": false,
|
| 1242 |
+
"special": true
|
| 1243 |
+
},
|
| 1244 |
+
"128155": {
|
| 1245 |
+
"content": "<|reserved_special_token_147|>",
|
| 1246 |
+
"lstrip": false,
|
| 1247 |
+
"normalized": false,
|
| 1248 |
+
"rstrip": false,
|
| 1249 |
+
"single_word": false,
|
| 1250 |
+
"special": true
|
| 1251 |
+
},
|
| 1252 |
+
"128156": {
|
| 1253 |
+
"content": "<|reserved_special_token_148|>",
|
| 1254 |
+
"lstrip": false,
|
| 1255 |
+
"normalized": false,
|
| 1256 |
+
"rstrip": false,
|
| 1257 |
+
"single_word": false,
|
| 1258 |
+
"special": true
|
| 1259 |
+
},
|
| 1260 |
+
"128157": {
|
| 1261 |
+
"content": "<|reserved_special_token_149|>",
|
| 1262 |
+
"lstrip": false,
|
| 1263 |
+
"normalized": false,
|
| 1264 |
+
"rstrip": false,
|
| 1265 |
+
"single_word": false,
|
| 1266 |
+
"special": true
|
| 1267 |
+
},
|
| 1268 |
+
"128158": {
|
| 1269 |
+
"content": "<|reserved_special_token_150|>",
|
| 1270 |
+
"lstrip": false,
|
| 1271 |
+
"normalized": false,
|
| 1272 |
+
"rstrip": false,
|
| 1273 |
+
"single_word": false,
|
| 1274 |
+
"special": true
|
| 1275 |
+
},
|
| 1276 |
+
"128159": {
|
| 1277 |
+
"content": "<|reserved_special_token_151|>",
|
| 1278 |
+
"lstrip": false,
|
| 1279 |
+
"normalized": false,
|
| 1280 |
+
"rstrip": false,
|
| 1281 |
+
"single_word": false,
|
| 1282 |
+
"special": true
|
| 1283 |
+
},
|
| 1284 |
+
"128160": {
|
| 1285 |
+
"content": "<|reserved_special_token_152|>",
|
| 1286 |
+
"lstrip": false,
|
| 1287 |
+
"normalized": false,
|
| 1288 |
+
"rstrip": false,
|
| 1289 |
+
"single_word": false,
|
| 1290 |
+
"special": true
|
| 1291 |
+
},
|
| 1292 |
+
"128161": {
|
| 1293 |
+
"content": "<|reserved_special_token_153|>",
|
| 1294 |
+
"lstrip": false,
|
| 1295 |
+
"normalized": false,
|
| 1296 |
+
"rstrip": false,
|
| 1297 |
+
"single_word": false,
|
| 1298 |
+
"special": true
|
| 1299 |
+
},
|
| 1300 |
+
"128162": {
|
| 1301 |
+
"content": "<|reserved_special_token_154|>",
|
| 1302 |
+
"lstrip": false,
|
| 1303 |
+
"normalized": false,
|
| 1304 |
+
"rstrip": false,
|
| 1305 |
+
"single_word": false,
|
| 1306 |
+
"special": true
|
| 1307 |
+
},
|
| 1308 |
+
"128163": {
|
| 1309 |
+
"content": "<|reserved_special_token_155|>",
|
| 1310 |
+
"lstrip": false,
|
| 1311 |
+
"normalized": false,
|
| 1312 |
+
"rstrip": false,
|
| 1313 |
+
"single_word": false,
|
| 1314 |
+
"special": true
|
| 1315 |
+
},
|
| 1316 |
+
"128164": {
|
| 1317 |
+
"content": "<|reserved_special_token_156|>",
|
| 1318 |
+
"lstrip": false,
|
| 1319 |
+
"normalized": false,
|
| 1320 |
+
"rstrip": false,
|
| 1321 |
+
"single_word": false,
|
| 1322 |
+
"special": true
|
| 1323 |
+
},
|
| 1324 |
+
"128165": {
|
| 1325 |
+
"content": "<|reserved_special_token_157|>",
|
| 1326 |
+
"lstrip": false,
|
| 1327 |
+
"normalized": false,
|
| 1328 |
+
"rstrip": false,
|
| 1329 |
+
"single_word": false,
|
| 1330 |
+
"special": true
|
| 1331 |
+
},
|
| 1332 |
+
"128166": {
|
| 1333 |
+
"content": "<|reserved_special_token_158|>",
|
| 1334 |
+
"lstrip": false,
|
| 1335 |
+
"normalized": false,
|
| 1336 |
+
"rstrip": false,
|
| 1337 |
+
"single_word": false,
|
| 1338 |
+
"special": true
|
| 1339 |
+
},
|
| 1340 |
+
"128167": {
|
| 1341 |
+
"content": "<|reserved_special_token_159|>",
|
| 1342 |
+
"lstrip": false,
|
| 1343 |
+
"normalized": false,
|
| 1344 |
+
"rstrip": false,
|
| 1345 |
+
"single_word": false,
|
| 1346 |
+
"special": true
|
| 1347 |
+
},
|
| 1348 |
+
"128168": {
|
| 1349 |
+
"content": "<|reserved_special_token_160|>",
|
| 1350 |
+
"lstrip": false,
|
| 1351 |
+
"normalized": false,
|
| 1352 |
+
"rstrip": false,
|
| 1353 |
+
"single_word": false,
|
| 1354 |
+
"special": true
|
| 1355 |
+
},
|
| 1356 |
+
"128169": {
|
| 1357 |
+
"content": "<|reserved_special_token_161|>",
|
| 1358 |
+
"lstrip": false,
|
| 1359 |
+
"normalized": false,
|
| 1360 |
+
"rstrip": false,
|
| 1361 |
+
"single_word": false,
|
| 1362 |
+
"special": true
|
| 1363 |
+
},
|
| 1364 |
+
"128170": {
|
| 1365 |
+
"content": "<|reserved_special_token_162|>",
|
| 1366 |
+
"lstrip": false,
|
| 1367 |
+
"normalized": false,
|
| 1368 |
+
"rstrip": false,
|
| 1369 |
+
"single_word": false,
|
| 1370 |
+
"special": true
|
| 1371 |
+
},
|
| 1372 |
+
"128171": {
|
| 1373 |
+
"content": "<|reserved_special_token_163|>",
|
| 1374 |
+
"lstrip": false,
|
| 1375 |
+
"normalized": false,
|
| 1376 |
+
"rstrip": false,
|
| 1377 |
+
"single_word": false,
|
| 1378 |
+
"special": true
|
| 1379 |
+
},
|
| 1380 |
+
"128172": {
|
| 1381 |
+
"content": "<|reserved_special_token_164|>",
|
| 1382 |
+
"lstrip": false,
|
| 1383 |
+
"normalized": false,
|
| 1384 |
+
"rstrip": false,
|
| 1385 |
+
"single_word": false,
|
| 1386 |
+
"special": true
|
| 1387 |
+
},
|
| 1388 |
+
"128173": {
|
| 1389 |
+
"content": "<|reserved_special_token_165|>",
|
| 1390 |
+
"lstrip": false,
|
| 1391 |
+
"normalized": false,
|
| 1392 |
+
"rstrip": false,
|
| 1393 |
+
"single_word": false,
|
| 1394 |
+
"special": true
|
| 1395 |
+
},
|
| 1396 |
+
"128174": {
|
| 1397 |
+
"content": "<|reserved_special_token_166|>",
|
| 1398 |
+
"lstrip": false,
|
| 1399 |
+
"normalized": false,
|
| 1400 |
+
"rstrip": false,
|
| 1401 |
+
"single_word": false,
|
| 1402 |
+
"special": true
|
| 1403 |
+
},
|
| 1404 |
+
"128175": {
|
| 1405 |
+
"content": "<|reserved_special_token_167|>",
|
| 1406 |
+
"lstrip": false,
|
| 1407 |
+
"normalized": false,
|
| 1408 |
+
"rstrip": false,
|
| 1409 |
+
"single_word": false,
|
| 1410 |
+
"special": true
|
| 1411 |
+
},
|
| 1412 |
+
"128176": {
|
| 1413 |
+
"content": "<|reserved_special_token_168|>",
|
| 1414 |
+
"lstrip": false,
|
| 1415 |
+
"normalized": false,
|
| 1416 |
+
"rstrip": false,
|
| 1417 |
+
"single_word": false,
|
| 1418 |
+
"special": true
|
| 1419 |
+
},
|
| 1420 |
+
"128177": {
|
| 1421 |
+
"content": "<|reserved_special_token_169|>",
|
| 1422 |
+
"lstrip": false,
|
| 1423 |
+
"normalized": false,
|
| 1424 |
+
"rstrip": false,
|
| 1425 |
+
"single_word": false,
|
| 1426 |
+
"special": true
|
| 1427 |
+
},
|
| 1428 |
+
"128178": {
|
| 1429 |
+
"content": "<|reserved_special_token_170|>",
|
| 1430 |
+
"lstrip": false,
|
| 1431 |
+
"normalized": false,
|
| 1432 |
+
"rstrip": false,
|
| 1433 |
+
"single_word": false,
|
| 1434 |
+
"special": true
|
| 1435 |
+
},
|
| 1436 |
+
"128179": {
|
| 1437 |
+
"content": "<|reserved_special_token_171|>",
|
| 1438 |
+
"lstrip": false,
|
| 1439 |
+
"normalized": false,
|
| 1440 |
+
"rstrip": false,
|
| 1441 |
+
"single_word": false,
|
| 1442 |
+
"special": true
|
| 1443 |
+
},
|
| 1444 |
+
"128180": {
|
| 1445 |
+
"content": "<|reserved_special_token_172|>",
|
| 1446 |
+
"lstrip": false,
|
| 1447 |
+
"normalized": false,
|
| 1448 |
+
"rstrip": false,
|
| 1449 |
+
"single_word": false,
|
| 1450 |
+
"special": true
|
| 1451 |
+
},
|
| 1452 |
+
"128181": {
|
| 1453 |
+
"content": "<|reserved_special_token_173|>",
|
| 1454 |
+
"lstrip": false,
|
| 1455 |
+
"normalized": false,
|
| 1456 |
+
"rstrip": false,
|
| 1457 |
+
"single_word": false,
|
| 1458 |
+
"special": true
|
| 1459 |
+
},
|
| 1460 |
+
"128182": {
|
| 1461 |
+
"content": "<|reserved_special_token_174|>",
|
| 1462 |
+
"lstrip": false,
|
| 1463 |
+
"normalized": false,
|
| 1464 |
+
"rstrip": false,
|
| 1465 |
+
"single_word": false,
|
| 1466 |
+
"special": true
|
| 1467 |
+
},
|
| 1468 |
+
"128183": {
|
| 1469 |
+
"content": "<|reserved_special_token_175|>",
|
| 1470 |
+
"lstrip": false,
|
| 1471 |
+
"normalized": false,
|
| 1472 |
+
"rstrip": false,
|
| 1473 |
+
"single_word": false,
|
| 1474 |
+
"special": true
|
| 1475 |
+
},
|
| 1476 |
+
"128184": {
|
| 1477 |
+
"content": "<|reserved_special_token_176|>",
|
| 1478 |
+
"lstrip": false,
|
| 1479 |
+
"normalized": false,
|
| 1480 |
+
"rstrip": false,
|
| 1481 |
+
"single_word": false,
|
| 1482 |
+
"special": true
|
| 1483 |
+
},
|
| 1484 |
+
"128185": {
|
| 1485 |
+
"content": "<|reserved_special_token_177|>",
|
| 1486 |
+
"lstrip": false,
|
| 1487 |
+
"normalized": false,
|
| 1488 |
+
"rstrip": false,
|
| 1489 |
+
"single_word": false,
|
| 1490 |
+
"special": true
|
| 1491 |
+
},
|
| 1492 |
+
"128186": {
|
| 1493 |
+
"content": "<|reserved_special_token_178|>",
|
| 1494 |
+
"lstrip": false,
|
| 1495 |
+
"normalized": false,
|
| 1496 |
+
"rstrip": false,
|
| 1497 |
+
"single_word": false,
|
| 1498 |
+
"special": true
|
| 1499 |
+
},
|
| 1500 |
+
"128187": {
|
| 1501 |
+
"content": "<|reserved_special_token_179|>",
|
| 1502 |
+
"lstrip": false,
|
| 1503 |
+
"normalized": false,
|
| 1504 |
+
"rstrip": false,
|
| 1505 |
+
"single_word": false,
|
| 1506 |
+
"special": true
|
| 1507 |
+
},
|
| 1508 |
+
"128188": {
|
| 1509 |
+
"content": "<|reserved_special_token_180|>",
|
| 1510 |
+
"lstrip": false,
|
| 1511 |
+
"normalized": false,
|
| 1512 |
+
"rstrip": false,
|
| 1513 |
+
"single_word": false,
|
| 1514 |
+
"special": true
|
| 1515 |
+
},
|
| 1516 |
+
"128189": {
|
| 1517 |
+
"content": "<|reserved_special_token_181|>",
|
| 1518 |
+
"lstrip": false,
|
| 1519 |
+
"normalized": false,
|
| 1520 |
+
"rstrip": false,
|
| 1521 |
+
"single_word": false,
|
| 1522 |
+
"special": true
|
| 1523 |
+
},
|
| 1524 |
+
"128190": {
|
| 1525 |
+
"content": "<|reserved_special_token_182|>",
|
| 1526 |
+
"lstrip": false,
|
| 1527 |
+
"normalized": false,
|
| 1528 |
+
"rstrip": false,
|
| 1529 |
+
"single_word": false,
|
| 1530 |
+
"special": true
|
| 1531 |
+
},
|
| 1532 |
+
"128191": {
|
| 1533 |
+
"content": "<|reserved_special_token_183|>",
|
| 1534 |
+
"lstrip": false,
|
| 1535 |
+
"normalized": false,
|
| 1536 |
+
"rstrip": false,
|
| 1537 |
+
"single_word": false,
|
| 1538 |
+
"special": true
|
| 1539 |
+
},
|
| 1540 |
+
"128192": {
|
| 1541 |
+
"content": "<|reserved_special_token_184|>",
|
| 1542 |
+
"lstrip": false,
|
| 1543 |
+
"normalized": false,
|
| 1544 |
+
"rstrip": false,
|
| 1545 |
+
"single_word": false,
|
| 1546 |
+
"special": true
|
| 1547 |
+
},
|
| 1548 |
+
"128193": {
|
| 1549 |
+
"content": "<|reserved_special_token_185|>",
|
| 1550 |
+
"lstrip": false,
|
| 1551 |
+
"normalized": false,
|
| 1552 |
+
"rstrip": false,
|
| 1553 |
+
"single_word": false,
|
| 1554 |
+
"special": true
|
| 1555 |
+
},
|
| 1556 |
+
"128194": {
|
| 1557 |
+
"content": "<|reserved_special_token_186|>",
|
| 1558 |
+
"lstrip": false,
|
| 1559 |
+
"normalized": false,
|
| 1560 |
+
"rstrip": false,
|
| 1561 |
+
"single_word": false,
|
| 1562 |
+
"special": true
|
| 1563 |
+
},
|
| 1564 |
+
"128195": {
|
| 1565 |
+
"content": "<|reserved_special_token_187|>",
|
| 1566 |
+
"lstrip": false,
|
| 1567 |
+
"normalized": false,
|
| 1568 |
+
"rstrip": false,
|
| 1569 |
+
"single_word": false,
|
| 1570 |
+
"special": true
|
| 1571 |
+
},
|
| 1572 |
+
"128196": {
|
| 1573 |
+
"content": "<|reserved_special_token_188|>",
|
| 1574 |
+
"lstrip": false,
|
| 1575 |
+
"normalized": false,
|
| 1576 |
+
"rstrip": false,
|
| 1577 |
+
"single_word": false,
|
| 1578 |
+
"special": true
|
| 1579 |
+
},
|
| 1580 |
+
"128197": {
|
| 1581 |
+
"content": "<|reserved_special_token_189|>",
|
| 1582 |
+
"lstrip": false,
|
| 1583 |
+
"normalized": false,
|
| 1584 |
+
"rstrip": false,
|
| 1585 |
+
"single_word": false,
|
| 1586 |
+
"special": true
|
| 1587 |
+
},
|
| 1588 |
+
"128198": {
|
| 1589 |
+
"content": "<|reserved_special_token_190|>",
|
| 1590 |
+
"lstrip": false,
|
| 1591 |
+
"normalized": false,
|
| 1592 |
+
"rstrip": false,
|
| 1593 |
+
"single_word": false,
|
| 1594 |
+
"special": true
|
| 1595 |
+
},
|
| 1596 |
+
"128199": {
|
| 1597 |
+
"content": "<|reserved_special_token_191|>",
|
| 1598 |
+
"lstrip": false,
|
| 1599 |
+
"normalized": false,
|
| 1600 |
+
"rstrip": false,
|
| 1601 |
+
"single_word": false,
|
| 1602 |
+
"special": true
|
| 1603 |
+
},
|
| 1604 |
+
"128200": {
|
| 1605 |
+
"content": "<|reserved_special_token_192|>",
|
| 1606 |
+
"lstrip": false,
|
| 1607 |
+
"normalized": false,
|
| 1608 |
+
"rstrip": false,
|
| 1609 |
+
"single_word": false,
|
| 1610 |
+
"special": true
|
| 1611 |
+
},
|
| 1612 |
+
"128201": {
|
| 1613 |
+
"content": "<|reserved_special_token_193|>",
|
| 1614 |
+
"lstrip": false,
|
| 1615 |
+
"normalized": false,
|
| 1616 |
+
"rstrip": false,
|
| 1617 |
+
"single_word": false,
|
| 1618 |
+
"special": true
|
| 1619 |
+
},
|
| 1620 |
+
"128202": {
|
| 1621 |
+
"content": "<|reserved_special_token_194|>",
|
| 1622 |
+
"lstrip": false,
|
| 1623 |
+
"normalized": false,
|
| 1624 |
+
"rstrip": false,
|
| 1625 |
+
"single_word": false,
|
| 1626 |
+
"special": true
|
| 1627 |
+
},
|
| 1628 |
+
"128203": {
|
| 1629 |
+
"content": "<|reserved_special_token_195|>",
|
| 1630 |
+
"lstrip": false,
|
| 1631 |
+
"normalized": false,
|
| 1632 |
+
"rstrip": false,
|
| 1633 |
+
"single_word": false,
|
| 1634 |
+
"special": true
|
| 1635 |
+
},
|
| 1636 |
+
"128204": {
|
| 1637 |
+
"content": "<|reserved_special_token_196|>",
|
| 1638 |
+
"lstrip": false,
|
| 1639 |
+
"normalized": false,
|
| 1640 |
+
"rstrip": false,
|
| 1641 |
+
"single_word": false,
|
| 1642 |
+
"special": true
|
| 1643 |
+
},
|
| 1644 |
+
"128205": {
|
| 1645 |
+
"content": "<|reserved_special_token_197|>",
|
| 1646 |
+
"lstrip": false,
|
| 1647 |
+
"normalized": false,
|
| 1648 |
+
"rstrip": false,
|
| 1649 |
+
"single_word": false,
|
| 1650 |
+
"special": true
|
| 1651 |
+
},
|
| 1652 |
+
"128206": {
|
| 1653 |
+
"content": "<|reserved_special_token_198|>",
|
| 1654 |
+
"lstrip": false,
|
| 1655 |
+
"normalized": false,
|
| 1656 |
+
"rstrip": false,
|
| 1657 |
+
"single_word": false,
|
| 1658 |
+
"special": true
|
| 1659 |
+
},
|
| 1660 |
+
"128207": {
|
| 1661 |
+
"content": "<|reserved_special_token_199|>",
|
| 1662 |
+
"lstrip": false,
|
| 1663 |
+
"normalized": false,
|
| 1664 |
+
"rstrip": false,
|
| 1665 |
+
"single_word": false,
|
| 1666 |
+
"special": true
|
| 1667 |
+
},
|
| 1668 |
+
"128208": {
|
| 1669 |
+
"content": "<|reserved_special_token_200|>",
|
| 1670 |
+
"lstrip": false,
|
| 1671 |
+
"normalized": false,
|
| 1672 |
+
"rstrip": false,
|
| 1673 |
+
"single_word": false,
|
| 1674 |
+
"special": true
|
| 1675 |
+
},
|
| 1676 |
+
"128209": {
|
| 1677 |
+
"content": "<|reserved_special_token_201|>",
|
| 1678 |
+
"lstrip": false,
|
| 1679 |
+
"normalized": false,
|
| 1680 |
+
"rstrip": false,
|
| 1681 |
+
"single_word": false,
|
| 1682 |
+
"special": true
|
| 1683 |
+
},
|
| 1684 |
+
"128210": {
|
| 1685 |
+
"content": "<|reserved_special_token_202|>",
|
| 1686 |
+
"lstrip": false,
|
| 1687 |
+
"normalized": false,
|
| 1688 |
+
"rstrip": false,
|
| 1689 |
+
"single_word": false,
|
| 1690 |
+
"special": true
|
| 1691 |
+
},
|
| 1692 |
+
"128211": {
|
| 1693 |
+
"content": "<|reserved_special_token_203|>",
|
| 1694 |
+
"lstrip": false,
|
| 1695 |
+
"normalized": false,
|
| 1696 |
+
"rstrip": false,
|
| 1697 |
+
"single_word": false,
|
| 1698 |
+
"special": true
|
| 1699 |
+
},
|
| 1700 |
+
"128212": {
|
| 1701 |
+
"content": "<|reserved_special_token_204|>",
|
| 1702 |
+
"lstrip": false,
|
| 1703 |
+
"normalized": false,
|
| 1704 |
+
"rstrip": false,
|
| 1705 |
+
"single_word": false,
|
| 1706 |
+
"special": true
|
| 1707 |
+
},
|
| 1708 |
+
"128213": {
|
| 1709 |
+
"content": "<|reserved_special_token_205|>",
|
| 1710 |
+
"lstrip": false,
|
| 1711 |
+
"normalized": false,
|
| 1712 |
+
"rstrip": false,
|
| 1713 |
+
"single_word": false,
|
| 1714 |
+
"special": true
|
| 1715 |
+
},
|
| 1716 |
+
"128214": {
|
| 1717 |
+
"content": "<|reserved_special_token_206|>",
|
| 1718 |
+
"lstrip": false,
|
| 1719 |
+
"normalized": false,
|
| 1720 |
+
"rstrip": false,
|
| 1721 |
+
"single_word": false,
|
| 1722 |
+
"special": true
|
| 1723 |
+
},
|
| 1724 |
+
"128215": {
|
| 1725 |
+
"content": "<|reserved_special_token_207|>",
|
| 1726 |
+
"lstrip": false,
|
| 1727 |
+
"normalized": false,
|
| 1728 |
+
"rstrip": false,
|
| 1729 |
+
"single_word": false,
|
| 1730 |
+
"special": true
|
| 1731 |
+
},
|
| 1732 |
+
"128216": {
|
| 1733 |
+
"content": "<|reserved_special_token_208|>",
|
| 1734 |
+
"lstrip": false,
|
| 1735 |
+
"normalized": false,
|
| 1736 |
+
"rstrip": false,
|
| 1737 |
+
"single_word": false,
|
| 1738 |
+
"special": true
|
| 1739 |
+
},
|
| 1740 |
+
"128217": {
|
| 1741 |
+
"content": "<|reserved_special_token_209|>",
|
| 1742 |
+
"lstrip": false,
|
| 1743 |
+
"normalized": false,
|
| 1744 |
+
"rstrip": false,
|
| 1745 |
+
"single_word": false,
|
| 1746 |
+
"special": true
|
| 1747 |
+
},
|
| 1748 |
+
"128218": {
|
| 1749 |
+
"content": "<|reserved_special_token_210|>",
|
| 1750 |
+
"lstrip": false,
|
| 1751 |
+
"normalized": false,
|
| 1752 |
+
"rstrip": false,
|
| 1753 |
+
"single_word": false,
|
| 1754 |
+
"special": true
|
| 1755 |
+
},
|
| 1756 |
+
"128219": {
|
| 1757 |
+
"content": "<|reserved_special_token_211|>",
|
| 1758 |
+
"lstrip": false,
|
| 1759 |
+
"normalized": false,
|
| 1760 |
+
"rstrip": false,
|
| 1761 |
+
"single_word": false,
|
| 1762 |
+
"special": true
|
| 1763 |
+
},
|
| 1764 |
+
"128220": {
|
| 1765 |
+
"content": "<|reserved_special_token_212|>",
|
| 1766 |
+
"lstrip": false,
|
| 1767 |
+
"normalized": false,
|
| 1768 |
+
"rstrip": false,
|
| 1769 |
+
"single_word": false,
|
| 1770 |
+
"special": true
|
| 1771 |
+
},
|
| 1772 |
+
"128221": {
|
| 1773 |
+
"content": "<|reserved_special_token_213|>",
|
| 1774 |
+
"lstrip": false,
|
| 1775 |
+
"normalized": false,
|
| 1776 |
+
"rstrip": false,
|
| 1777 |
+
"single_word": false,
|
| 1778 |
+
"special": true
|
| 1779 |
+
},
|
| 1780 |
+
"128222": {
|
| 1781 |
+
"content": "<|reserved_special_token_214|>",
|
| 1782 |
+
"lstrip": false,
|
| 1783 |
+
"normalized": false,
|
| 1784 |
+
"rstrip": false,
|
| 1785 |
+
"single_word": false,
|
| 1786 |
+
"special": true
|
| 1787 |
+
},
|
| 1788 |
+
"128223": {
|
| 1789 |
+
"content": "<|reserved_special_token_215|>",
|
| 1790 |
+
"lstrip": false,
|
| 1791 |
+
"normalized": false,
|
| 1792 |
+
"rstrip": false,
|
| 1793 |
+
"single_word": false,
|
| 1794 |
+
"special": true
|
| 1795 |
+
},
|
| 1796 |
+
"128224": {
|
| 1797 |
+
"content": "<|reserved_special_token_216|>",
|
| 1798 |
+
"lstrip": false,
|
| 1799 |
+
"normalized": false,
|
| 1800 |
+
"rstrip": false,
|
| 1801 |
+
"single_word": false,
|
| 1802 |
+
"special": true
|
| 1803 |
+
},
|
| 1804 |
+
"128225": {
|
| 1805 |
+
"content": "<|reserved_special_token_217|>",
|
| 1806 |
+
"lstrip": false,
|
| 1807 |
+
"normalized": false,
|
| 1808 |
+
"rstrip": false,
|
| 1809 |
+
"single_word": false,
|
| 1810 |
+
"special": true
|
| 1811 |
+
},
|
| 1812 |
+
"128226": {
|
| 1813 |
+
"content": "<|reserved_special_token_218|>",
|
| 1814 |
+
"lstrip": false,
|
| 1815 |
+
"normalized": false,
|
| 1816 |
+
"rstrip": false,
|
| 1817 |
+
"single_word": false,
|
| 1818 |
+
"special": true
|
| 1819 |
+
},
|
| 1820 |
+
"128227": {
|
| 1821 |
+
"content": "<|reserved_special_token_219|>",
|
| 1822 |
+
"lstrip": false,
|
| 1823 |
+
"normalized": false,
|
| 1824 |
+
"rstrip": false,
|
| 1825 |
+
"single_word": false,
|
| 1826 |
+
"special": true
|
| 1827 |
+
},
|
| 1828 |
+
"128228": {
|
| 1829 |
+
"content": "<|reserved_special_token_220|>",
|
| 1830 |
+
"lstrip": false,
|
| 1831 |
+
"normalized": false,
|
| 1832 |
+
"rstrip": false,
|
| 1833 |
+
"single_word": false,
|
| 1834 |
+
"special": true
|
| 1835 |
+
},
|
| 1836 |
+
"128229": {
|
| 1837 |
+
"content": "<|reserved_special_token_221|>",
|
| 1838 |
+
"lstrip": false,
|
| 1839 |
+
"normalized": false,
|
| 1840 |
+
"rstrip": false,
|
| 1841 |
+
"single_word": false,
|
| 1842 |
+
"special": true
|
| 1843 |
+
},
|
| 1844 |
+
"128230": {
|
| 1845 |
+
"content": "<|reserved_special_token_222|>",
|
| 1846 |
+
"lstrip": false,
|
| 1847 |
+
"normalized": false,
|
| 1848 |
+
"rstrip": false,
|
| 1849 |
+
"single_word": false,
|
| 1850 |
+
"special": true
|
| 1851 |
+
},
|
| 1852 |
+
"128231": {
|
| 1853 |
+
"content": "<|reserved_special_token_223|>",
|
| 1854 |
+
"lstrip": false,
|
| 1855 |
+
"normalized": false,
|
| 1856 |
+
"rstrip": false,
|
| 1857 |
+
"single_word": false,
|
| 1858 |
+
"special": true
|
| 1859 |
+
},
|
| 1860 |
+
"128232": {
|
| 1861 |
+
"content": "<|reserved_special_token_224|>",
|
| 1862 |
+
"lstrip": false,
|
| 1863 |
+
"normalized": false,
|
| 1864 |
+
"rstrip": false,
|
| 1865 |
+
"single_word": false,
|
| 1866 |
+
"special": true
|
| 1867 |
+
},
|
| 1868 |
+
"128233": {
|
| 1869 |
+
"content": "<|reserved_special_token_225|>",
|
| 1870 |
+
"lstrip": false,
|
| 1871 |
+
"normalized": false,
|
| 1872 |
+
"rstrip": false,
|
| 1873 |
+
"single_word": false,
|
| 1874 |
+
"special": true
|
| 1875 |
+
},
|
| 1876 |
+
"128234": {
|
| 1877 |
+
"content": "<|reserved_special_token_226|>",
|
| 1878 |
+
"lstrip": false,
|
| 1879 |
+
"normalized": false,
|
| 1880 |
+
"rstrip": false,
|
| 1881 |
+
"single_word": false,
|
| 1882 |
+
"special": true
|
| 1883 |
+
},
|
| 1884 |
+
"128235": {
|
| 1885 |
+
"content": "<|reserved_special_token_227|>",
|
| 1886 |
+
"lstrip": false,
|
| 1887 |
+
"normalized": false,
|
| 1888 |
+
"rstrip": false,
|
| 1889 |
+
"single_word": false,
|
| 1890 |
+
"special": true
|
| 1891 |
+
},
|
| 1892 |
+
"128236": {
|
| 1893 |
+
"content": "<|reserved_special_token_228|>",
|
| 1894 |
+
"lstrip": false,
|
| 1895 |
+
"normalized": false,
|
| 1896 |
+
"rstrip": false,
|
| 1897 |
+
"single_word": false,
|
| 1898 |
+
"special": true
|
| 1899 |
+
},
|
| 1900 |
+
"128237": {
|
| 1901 |
+
"content": "<|reserved_special_token_229|>",
|
| 1902 |
+
"lstrip": false,
|
| 1903 |
+
"normalized": false,
|
| 1904 |
+
"rstrip": false,
|
| 1905 |
+
"single_word": false,
|
| 1906 |
+
"special": true
|
| 1907 |
+
},
|
| 1908 |
+
"128238": {
|
| 1909 |
+
"content": "<|reserved_special_token_230|>",
|
| 1910 |
+
"lstrip": false,
|
| 1911 |
+
"normalized": false,
|
| 1912 |
+
"rstrip": false,
|
| 1913 |
+
"single_word": false,
|
| 1914 |
+
"special": true
|
| 1915 |
+
},
|
| 1916 |
+
"128239": {
|
| 1917 |
+
"content": "<|reserved_special_token_231|>",
|
| 1918 |
+
"lstrip": false,
|
| 1919 |
+
"normalized": false,
|
| 1920 |
+
"rstrip": false,
|
| 1921 |
+
"single_word": false,
|
| 1922 |
+
"special": true
|
| 1923 |
+
},
|
| 1924 |
+
"128240": {
|
| 1925 |
+
"content": "<|reserved_special_token_232|>",
|
| 1926 |
+
"lstrip": false,
|
| 1927 |
+
"normalized": false,
|
| 1928 |
+
"rstrip": false,
|
| 1929 |
+
"single_word": false,
|
| 1930 |
+
"special": true
|
| 1931 |
+
},
|
| 1932 |
+
"128241": {
|
| 1933 |
+
"content": "<|reserved_special_token_233|>",
|
| 1934 |
+
"lstrip": false,
|
| 1935 |
+
"normalized": false,
|
| 1936 |
+
"rstrip": false,
|
| 1937 |
+
"single_word": false,
|
| 1938 |
+
"special": true
|
| 1939 |
+
},
|
| 1940 |
+
"128242": {
|
| 1941 |
+
"content": "<|reserved_special_token_234|>",
|
| 1942 |
+
"lstrip": false,
|
| 1943 |
+
"normalized": false,
|
| 1944 |
+
"rstrip": false,
|
| 1945 |
+
"single_word": false,
|
| 1946 |
+
"special": true
|
| 1947 |
+
},
|
| 1948 |
+
"128243": {
|
| 1949 |
+
"content": "<|reserved_special_token_235|>",
|
| 1950 |
+
"lstrip": false,
|
| 1951 |
+
"normalized": false,
|
| 1952 |
+
"rstrip": false,
|
| 1953 |
+
"single_word": false,
|
| 1954 |
+
"special": true
|
| 1955 |
+
},
|
| 1956 |
+
"128244": {
|
| 1957 |
+
"content": "<|reserved_special_token_236|>",
|
| 1958 |
+
"lstrip": false,
|
| 1959 |
+
"normalized": false,
|
| 1960 |
+
"rstrip": false,
|
| 1961 |
+
"single_word": false,
|
| 1962 |
+
"special": true
|
| 1963 |
+
},
|
| 1964 |
+
"128245": {
|
| 1965 |
+
"content": "<|reserved_special_token_237|>",
|
| 1966 |
+
"lstrip": false,
|
| 1967 |
+
"normalized": false,
|
| 1968 |
+
"rstrip": false,
|
| 1969 |
+
"single_word": false,
|
| 1970 |
+
"special": true
|
| 1971 |
+
},
|
| 1972 |
+
"128246": {
|
| 1973 |
+
"content": "<|reserved_special_token_238|>",
|
| 1974 |
+
"lstrip": false,
|
| 1975 |
+
"normalized": false,
|
| 1976 |
+
"rstrip": false,
|
| 1977 |
+
"single_word": false,
|
| 1978 |
+
"special": true
|
| 1979 |
+
},
|
| 1980 |
+
"128247": {
|
| 1981 |
+
"content": "<|reserved_special_token_239|>",
|
| 1982 |
+
"lstrip": false,
|
| 1983 |
+
"normalized": false,
|
| 1984 |
+
"rstrip": false,
|
| 1985 |
+
"single_word": false,
|
| 1986 |
+
"special": true
|
| 1987 |
+
},
|
| 1988 |
+
"128248": {
|
| 1989 |
+
"content": "<|reserved_special_token_240|>",
|
| 1990 |
+
"lstrip": false,
|
| 1991 |
+
"normalized": false,
|
| 1992 |
+
"rstrip": false,
|
| 1993 |
+
"single_word": false,
|
| 1994 |
+
"special": true
|
| 1995 |
+
},
|
| 1996 |
+
"128249": {
|
| 1997 |
+
"content": "<|reserved_special_token_241|>",
|
| 1998 |
+
"lstrip": false,
|
| 1999 |
+
"normalized": false,
|
| 2000 |
+
"rstrip": false,
|
| 2001 |
+
"single_word": false,
|
| 2002 |
+
"special": true
|
| 2003 |
+
},
|
| 2004 |
+
"128250": {
|
| 2005 |
+
"content": "<|reserved_special_token_242|>",
|
| 2006 |
+
"lstrip": false,
|
| 2007 |
+
"normalized": false,
|
| 2008 |
+
"rstrip": false,
|
| 2009 |
+
"single_word": false,
|
| 2010 |
+
"special": true
|
| 2011 |
+
},
|
| 2012 |
+
"128251": {
|
| 2013 |
+
"content": "<|reserved_special_token_243|>",
|
| 2014 |
+
"lstrip": false,
|
| 2015 |
+
"normalized": false,
|
| 2016 |
+
"rstrip": false,
|
| 2017 |
+
"single_word": false,
|
| 2018 |
+
"special": true
|
| 2019 |
+
},
|
| 2020 |
+
"128252": {
|
| 2021 |
+
"content": "<|reserved_special_token_244|>",
|
| 2022 |
+
"lstrip": false,
|
| 2023 |
+
"normalized": false,
|
| 2024 |
+
"rstrip": false,
|
| 2025 |
+
"single_word": false,
|
| 2026 |
+
"special": true
|
| 2027 |
+
},
|
| 2028 |
+
"128253": {
|
| 2029 |
+
"content": "<|reserved_special_token_245|>",
|
| 2030 |
+
"lstrip": false,
|
| 2031 |
+
"normalized": false,
|
| 2032 |
+
"rstrip": false,
|
| 2033 |
+
"single_word": false,
|
| 2034 |
+
"special": true
|
| 2035 |
+
},
|
| 2036 |
+
"128254": {
|
| 2037 |
+
"content": "<|reserved_special_token_246|>",
|
| 2038 |
+
"lstrip": false,
|
| 2039 |
+
"normalized": false,
|
| 2040 |
+
"rstrip": false,
|
| 2041 |
+
"single_word": false,
|
| 2042 |
+
"special": true
|
| 2043 |
+
},
|
| 2044 |
+
"128255": {
|
| 2045 |
+
"content": "<|reserved_special_token_247|>",
|
| 2046 |
+
"lstrip": false,
|
| 2047 |
+
"normalized": false,
|
| 2048 |
+
"rstrip": false,
|
| 2049 |
+
"single_word": false,
|
| 2050 |
+
"special": true
|
| 2051 |
+
}
|
| 2052 |
+
},
|
| 2053 |
+
"bos_token": "<|begin_of_text|>",
|
| 2054 |
+
"clean_up_tokenization_spaces": true,
|
| 2055 |
+
"eos_token": "<|eot_id|>",
|
| 2056 |
+
"extra_special_tokens": {},
|
| 2057 |
+
"model_input_names": [
|
| 2058 |
+
"input_ids",
|
| 2059 |
+
"attention_mask"
|
| 2060 |
+
],
|
| 2061 |
+
"model_max_length": 131072,
|
| 2062 |
+
"pad_token": "<|finetune_right_pad_id|>",
|
| 2063 |
+
"padding_side": "left",
|
| 2064 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 2065 |
+
"unk_token": null
|
| 2066 |
+
}
|
experiments/en-hr/checkpoint-500/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
experiments/en-hr/checkpoint-500/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "LlamaForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.llama.modeling_llama",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/meta-llama-3.1-8b-instruct-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 16,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 8,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"up_proj",
|
| 41 |
+
"down_proj",
|
| 42 |
+
"q_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": true
|
| 50 |
+
}
|
experiments/en-hr/checkpoint-500/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e84ffe3242cc0bc7f3a2bb0ee56b8f8a85e412a401b6bf6eca09ac1b2d5ec12a
|
| 3 |
+
size 83945296
|
experiments/en-hr/checkpoint-500/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 %}
|
experiments/en-hr/checkpoint-500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8aa1da0d5beb9b86889c7dd4af99e43ad17a1e3ab9932fa608dd1e2c06894c38
|
| 3 |
+
size 43123429
|
experiments/en-hr/checkpoint-500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d6d8fafcd1ee268414be5acf0366296af5b03d60871978712eac1979cb42d65
|
| 3 |
+
size 14645
|
experiments/en-hr/checkpoint-500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f58070f27ecc1447cda3df381e75b78a82815c8dd68eab34fe5e56c98549f266
|
| 3 |
+
size 1465
|
experiments/en-hr/checkpoint-500/special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"pad_token": {
|
| 17 |
+
"content": "<|finetune_right_pad_id|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
experiments/en-hr/checkpoint-500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
experiments/en-hr/checkpoint-500/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2066 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"128000": {
|
| 5 |
+
"content": "<|begin_of_text|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"128001": {
|
| 13 |
+
"content": "<|end_of_text|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"128002": {
|
| 21 |
+
"content": "<|reserved_special_token_0|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"128003": {
|
| 29 |
+
"content": "<|reserved_special_token_1|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"128004": {
|
| 37 |
+
"content": "<|finetune_right_pad_id|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"128005": {
|
| 45 |
+
"content": "<|reserved_special_token_2|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"128006": {
|
| 53 |
+
"content": "<|start_header_id|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"128007": {
|
| 61 |
+
"content": "<|end_header_id|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"128008": {
|
| 69 |
+
"content": "<|eom_id|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"128009": {
|
| 77 |
+
"content": "<|eot_id|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"128010": {
|
| 85 |
+
"content": "<|python_tag|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"128011": {
|
| 93 |
+
"content": "<|reserved_special_token_3|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"128012": {
|
| 101 |
+
"content": "<|reserved_special_token_4|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"128013": {
|
| 109 |
+
"content": "<|reserved_special_token_5|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"128014": {
|
| 117 |
+
"content": "<|reserved_special_token_6|>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": true
|
| 123 |
+
},
|
| 124 |
+
"128015": {
|
| 125 |
+
"content": "<|reserved_special_token_7|>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
"128016": {
|
| 133 |
+
"content": "<|reserved_special_token_8|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": true
|
| 139 |
+
},
|
| 140 |
+
"128017": {
|
| 141 |
+
"content": "<|reserved_special_token_9|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": true
|
| 147 |
+
},
|
| 148 |
+
"128018": {
|
| 149 |
+
"content": "<|reserved_special_token_10|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": true
|
| 155 |
+
},
|
| 156 |
+
"128019": {
|
| 157 |
+
"content": "<|reserved_special_token_11|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": true
|
| 163 |
+
},
|
| 164 |
+
"128020": {
|
| 165 |
+
"content": "<|reserved_special_token_12|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"128021": {
|
| 173 |
+
"content": "<|reserved_special_token_13|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
},
|
| 180 |
+
"128022": {
|
| 181 |
+
"content": "<|reserved_special_token_14|>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": true
|
| 187 |
+
},
|
| 188 |
+
"128023": {
|
| 189 |
+
"content": "<|reserved_special_token_15|>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": true
|
| 195 |
+
},
|
| 196 |
+
"128024": {
|
| 197 |
+
"content": "<|reserved_special_token_16|>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": true
|
| 203 |
+
},
|
| 204 |
+
"128025": {
|
| 205 |
+
"content": "<|reserved_special_token_17|>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": true
|
| 211 |
+
},
|
| 212 |
+
"128026": {
|
| 213 |
+
"content": "<|reserved_special_token_18|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"128027": {
|
| 221 |
+
"content": "<|reserved_special_token_19|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"128028": {
|
| 229 |
+
"content": "<|reserved_special_token_20|>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"128029": {
|
| 237 |
+
"content": "<|reserved_special_token_21|>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"128030": {
|
| 245 |
+
"content": "<|reserved_special_token_22|>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"128031": {
|
| 253 |
+
"content": "<|reserved_special_token_23|>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"128032": {
|
| 261 |
+
"content": "<|reserved_special_token_24|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
},
|
| 268 |
+
"128033": {
|
| 269 |
+
"content": "<|reserved_special_token_25|>",
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
"128034": {
|
| 277 |
+
"content": "<|reserved_special_token_26|>",
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": false,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": true
|
| 283 |
+
},
|
| 284 |
+
"128035": {
|
| 285 |
+
"content": "<|reserved_special_token_27|>",
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": false,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": true
|
| 291 |
+
},
|
| 292 |
+
"128036": {
|
| 293 |
+
"content": "<|reserved_special_token_28|>",
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": false,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": true
|
| 299 |
+
},
|
| 300 |
+
"128037": {
|
| 301 |
+
"content": "<|reserved_special_token_29|>",
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": false,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": true
|
| 307 |
+
},
|
| 308 |
+
"128038": {
|
| 309 |
+
"content": "<|reserved_special_token_30|>",
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": false,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": true
|
| 315 |
+
},
|
| 316 |
+
"128039": {
|
| 317 |
+
"content": "<|reserved_special_token_31|>",
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": false,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": true
|
| 323 |
+
},
|
| 324 |
+
"128040": {
|
| 325 |
+
"content": "<|reserved_special_token_32|>",
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": false,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": true
|
| 331 |
+
},
|
| 332 |
+
"128041": {
|
| 333 |
+
"content": "<|reserved_special_token_33|>",
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": false,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": true
|
| 339 |
+
},
|
| 340 |
+
"128042": {
|
| 341 |
+
"content": "<|reserved_special_token_34|>",
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
"128043": {
|
| 349 |
+
"content": "<|reserved_special_token_35|>",
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": false,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": true
|
| 355 |
+
},
|
| 356 |
+
"128044": {
|
| 357 |
+
"content": "<|reserved_special_token_36|>",
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": false,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": true
|
| 363 |
+
},
|
| 364 |
+
"128045": {
|
| 365 |
+
"content": "<|reserved_special_token_37|>",
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": false,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": true
|
| 371 |
+
},
|
| 372 |
+
"128046": {
|
| 373 |
+
"content": "<|reserved_special_token_38|>",
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": false,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": true
|
| 379 |
+
},
|
| 380 |
+
"128047": {
|
| 381 |
+
"content": "<|reserved_special_token_39|>",
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": false,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": true
|
| 387 |
+
},
|
| 388 |
+
"128048": {
|
| 389 |
+
"content": "<|reserved_special_token_40|>",
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": false,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": true
|
| 395 |
+
},
|
| 396 |
+
"128049": {
|
| 397 |
+
"content": "<|reserved_special_token_41|>",
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": false,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": true
|
| 403 |
+
},
|
| 404 |
+
"128050": {
|
| 405 |
+
"content": "<|reserved_special_token_42|>",
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": false,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": true
|
| 411 |
+
},
|
| 412 |
+
"128051": {
|
| 413 |
+
"content": "<|reserved_special_token_43|>",
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
"128052": {
|
| 421 |
+
"content": "<|reserved_special_token_44|>",
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": false,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": true
|
| 427 |
+
},
|
| 428 |
+
"128053": {
|
| 429 |
+
"content": "<|reserved_special_token_45|>",
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": false,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": true
|
| 435 |
+
},
|
| 436 |
+
"128054": {
|
| 437 |
+
"content": "<|reserved_special_token_46|>",
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": false,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": true
|
| 443 |
+
},
|
| 444 |
+
"128055": {
|
| 445 |
+
"content": "<|reserved_special_token_47|>",
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": false,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": true
|
| 451 |
+
},
|
| 452 |
+
"128056": {
|
| 453 |
+
"content": "<|reserved_special_token_48|>",
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": false,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": true
|
| 459 |
+
},
|
| 460 |
+
"128057": {
|
| 461 |
+
"content": "<|reserved_special_token_49|>",
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": false,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": true
|
| 467 |
+
},
|
| 468 |
+
"128058": {
|
| 469 |
+
"content": "<|reserved_special_token_50|>",
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": false,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": true
|
| 475 |
+
},
|
| 476 |
+
"128059": {
|
| 477 |
+
"content": "<|reserved_special_token_51|>",
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": false,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": true
|
| 483 |
+
},
|
| 484 |
+
"128060": {
|
| 485 |
+
"content": "<|reserved_special_token_52|>",
|
| 486 |
+
"lstrip": false,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": false,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": true
|
| 491 |
+
},
|
| 492 |
+
"128061": {
|
| 493 |
+
"content": "<|reserved_special_token_53|>",
|
| 494 |
+
"lstrip": false,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": false,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": true
|
| 499 |
+
},
|
| 500 |
+
"128062": {
|
| 501 |
+
"content": "<|reserved_special_token_54|>",
|
| 502 |
+
"lstrip": false,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": false,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": true
|
| 507 |
+
},
|
| 508 |
+
"128063": {
|
| 509 |
+
"content": "<|reserved_special_token_55|>",
|
| 510 |
+
"lstrip": false,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": false,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": true
|
| 515 |
+
},
|
| 516 |
+
"128064": {
|
| 517 |
+
"content": "<|reserved_special_token_56|>",
|
| 518 |
+
"lstrip": false,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": false,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": true
|
| 523 |
+
},
|
| 524 |
+
"128065": {
|
| 525 |
+
"content": "<|reserved_special_token_57|>",
|
| 526 |
+
"lstrip": false,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": false,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": true
|
| 531 |
+
},
|
| 532 |
+
"128066": {
|
| 533 |
+
"content": "<|reserved_special_token_58|>",
|
| 534 |
+
"lstrip": false,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": false,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": true
|
| 539 |
+
},
|
| 540 |
+
"128067": {
|
| 541 |
+
"content": "<|reserved_special_token_59|>",
|
| 542 |
+
"lstrip": false,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": false,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": true
|
| 547 |
+
},
|
| 548 |
+
"128068": {
|
| 549 |
+
"content": "<|reserved_special_token_60|>",
|
| 550 |
+
"lstrip": false,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": false,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": true
|
| 555 |
+
},
|
| 556 |
+
"128069": {
|
| 557 |
+
"content": "<|reserved_special_token_61|>",
|
| 558 |
+
"lstrip": false,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": false,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": true
|
| 563 |
+
},
|
| 564 |
+
"128070": {
|
| 565 |
+
"content": "<|reserved_special_token_62|>",
|
| 566 |
+
"lstrip": false,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": false,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": true
|
| 571 |
+
},
|
| 572 |
+
"128071": {
|
| 573 |
+
"content": "<|reserved_special_token_63|>",
|
| 574 |
+
"lstrip": false,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": false,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": true
|
| 579 |
+
},
|
| 580 |
+
"128072": {
|
| 581 |
+
"content": "<|reserved_special_token_64|>",
|
| 582 |
+
"lstrip": false,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": false,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": true
|
| 587 |
+
},
|
| 588 |
+
"128073": {
|
| 589 |
+
"content": "<|reserved_special_token_65|>",
|
| 590 |
+
"lstrip": false,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": false,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": true
|
| 595 |
+
},
|
| 596 |
+
"128074": {
|
| 597 |
+
"content": "<|reserved_special_token_66|>",
|
| 598 |
+
"lstrip": false,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": false,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": true
|
| 603 |
+
},
|
| 604 |
+
"128075": {
|
| 605 |
+
"content": "<|reserved_special_token_67|>",
|
| 606 |
+
"lstrip": false,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": false,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": true
|
| 611 |
+
},
|
| 612 |
+
"128076": {
|
| 613 |
+
"content": "<|reserved_special_token_68|>",
|
| 614 |
+
"lstrip": false,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": false,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": true
|
| 619 |
+
},
|
| 620 |
+
"128077": {
|
| 621 |
+
"content": "<|reserved_special_token_69|>",
|
| 622 |
+
"lstrip": false,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": false,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": true
|
| 627 |
+
},
|
| 628 |
+
"128078": {
|
| 629 |
+
"content": "<|reserved_special_token_70|>",
|
| 630 |
+
"lstrip": false,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": false,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": true
|
| 635 |
+
},
|
| 636 |
+
"128079": {
|
| 637 |
+
"content": "<|reserved_special_token_71|>",
|
| 638 |
+
"lstrip": false,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": false,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": true
|
| 643 |
+
},
|
| 644 |
+
"128080": {
|
| 645 |
+
"content": "<|reserved_special_token_72|>",
|
| 646 |
+
"lstrip": false,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": false,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": true
|
| 651 |
+
},
|
| 652 |
+
"128081": {
|
| 653 |
+
"content": "<|reserved_special_token_73|>",
|
| 654 |
+
"lstrip": false,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": false,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": true
|
| 659 |
+
},
|
| 660 |
+
"128082": {
|
| 661 |
+
"content": "<|reserved_special_token_74|>",
|
| 662 |
+
"lstrip": false,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": false,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": true
|
| 667 |
+
},
|
| 668 |
+
"128083": {
|
| 669 |
+
"content": "<|reserved_special_token_75|>",
|
| 670 |
+
"lstrip": false,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": false,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": true
|
| 675 |
+
},
|
| 676 |
+
"128084": {
|
| 677 |
+
"content": "<|reserved_special_token_76|>",
|
| 678 |
+
"lstrip": false,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": false,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": true
|
| 683 |
+
},
|
| 684 |
+
"128085": {
|
| 685 |
+
"content": "<|reserved_special_token_77|>",
|
| 686 |
+
"lstrip": false,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": false,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": true
|
| 691 |
+
},
|
| 692 |
+
"128086": {
|
| 693 |
+
"content": "<|reserved_special_token_78|>",
|
| 694 |
+
"lstrip": false,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": false,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": true
|
| 699 |
+
},
|
| 700 |
+
"128087": {
|
| 701 |
+
"content": "<|reserved_special_token_79|>",
|
| 702 |
+
"lstrip": false,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": false,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": true
|
| 707 |
+
},
|
| 708 |
+
"128088": {
|
| 709 |
+
"content": "<|reserved_special_token_80|>",
|
| 710 |
+
"lstrip": false,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": false,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": true
|
| 715 |
+
},
|
| 716 |
+
"128089": {
|
| 717 |
+
"content": "<|reserved_special_token_81|>",
|
| 718 |
+
"lstrip": false,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": false,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": true
|
| 723 |
+
},
|
| 724 |
+
"128090": {
|
| 725 |
+
"content": "<|reserved_special_token_82|>",
|
| 726 |
+
"lstrip": false,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": false,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": true
|
| 731 |
+
},
|
| 732 |
+
"128091": {
|
| 733 |
+
"content": "<|reserved_special_token_83|>",
|
| 734 |
+
"lstrip": false,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": false,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": true
|
| 739 |
+
},
|
| 740 |
+
"128092": {
|
| 741 |
+
"content": "<|reserved_special_token_84|>",
|
| 742 |
+
"lstrip": false,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": false,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": true
|
| 747 |
+
},
|
| 748 |
+
"128093": {
|
| 749 |
+
"content": "<|reserved_special_token_85|>",
|
| 750 |
+
"lstrip": false,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": false,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": true
|
| 755 |
+
},
|
| 756 |
+
"128094": {
|
| 757 |
+
"content": "<|reserved_special_token_86|>",
|
| 758 |
+
"lstrip": false,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": false,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": true
|
| 763 |
+
},
|
| 764 |
+
"128095": {
|
| 765 |
+
"content": "<|reserved_special_token_87|>",
|
| 766 |
+
"lstrip": false,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": false,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": true
|
| 771 |
+
},
|
| 772 |
+
"128096": {
|
| 773 |
+
"content": "<|reserved_special_token_88|>",
|
| 774 |
+
"lstrip": false,
|
| 775 |
+
"normalized": false,
|
| 776 |
+
"rstrip": false,
|
| 777 |
+
"single_word": false,
|
| 778 |
+
"special": true
|
| 779 |
+
},
|
| 780 |
+
"128097": {
|
| 781 |
+
"content": "<|reserved_special_token_89|>",
|
| 782 |
+
"lstrip": false,
|
| 783 |
+
"normalized": false,
|
| 784 |
+
"rstrip": false,
|
| 785 |
+
"single_word": false,
|
| 786 |
+
"special": true
|
| 787 |
+
},
|
| 788 |
+
"128098": {
|
| 789 |
+
"content": "<|reserved_special_token_90|>",
|
| 790 |
+
"lstrip": false,
|
| 791 |
+
"normalized": false,
|
| 792 |
+
"rstrip": false,
|
| 793 |
+
"single_word": false,
|
| 794 |
+
"special": true
|
| 795 |
+
},
|
| 796 |
+
"128099": {
|
| 797 |
+
"content": "<|reserved_special_token_91|>",
|
| 798 |
+
"lstrip": false,
|
| 799 |
+
"normalized": false,
|
| 800 |
+
"rstrip": false,
|
| 801 |
+
"single_word": false,
|
| 802 |
+
"special": true
|
| 803 |
+
},
|
| 804 |
+
"128100": {
|
| 805 |
+
"content": "<|reserved_special_token_92|>",
|
| 806 |
+
"lstrip": false,
|
| 807 |
+
"normalized": false,
|
| 808 |
+
"rstrip": false,
|
| 809 |
+
"single_word": false,
|
| 810 |
+
"special": true
|
| 811 |
+
},
|
| 812 |
+
"128101": {
|
| 813 |
+
"content": "<|reserved_special_token_93|>",
|
| 814 |
+
"lstrip": false,
|
| 815 |
+
"normalized": false,
|
| 816 |
+
"rstrip": false,
|
| 817 |
+
"single_word": false,
|
| 818 |
+
"special": true
|
| 819 |
+
},
|
| 820 |
+
"128102": {
|
| 821 |
+
"content": "<|reserved_special_token_94|>",
|
| 822 |
+
"lstrip": false,
|
| 823 |
+
"normalized": false,
|
| 824 |
+
"rstrip": false,
|
| 825 |
+
"single_word": false,
|
| 826 |
+
"special": true
|
| 827 |
+
},
|
| 828 |
+
"128103": {
|
| 829 |
+
"content": "<|reserved_special_token_95|>",
|
| 830 |
+
"lstrip": false,
|
| 831 |
+
"normalized": false,
|
| 832 |
+
"rstrip": false,
|
| 833 |
+
"single_word": false,
|
| 834 |
+
"special": true
|
| 835 |
+
},
|
| 836 |
+
"128104": {
|
| 837 |
+
"content": "<|reserved_special_token_96|>",
|
| 838 |
+
"lstrip": false,
|
| 839 |
+
"normalized": false,
|
| 840 |
+
"rstrip": false,
|
| 841 |
+
"single_word": false,
|
| 842 |
+
"special": true
|
| 843 |
+
},
|
| 844 |
+
"128105": {
|
| 845 |
+
"content": "<|reserved_special_token_97|>",
|
| 846 |
+
"lstrip": false,
|
| 847 |
+
"normalized": false,
|
| 848 |
+
"rstrip": false,
|
| 849 |
+
"single_word": false,
|
| 850 |
+
"special": true
|
| 851 |
+
},
|
| 852 |
+
"128106": {
|
| 853 |
+
"content": "<|reserved_special_token_98|>",
|
| 854 |
+
"lstrip": false,
|
| 855 |
+
"normalized": false,
|
| 856 |
+
"rstrip": false,
|
| 857 |
+
"single_word": false,
|
| 858 |
+
"special": true
|
| 859 |
+
},
|
| 860 |
+
"128107": {
|
| 861 |
+
"content": "<|reserved_special_token_99|>",
|
| 862 |
+
"lstrip": false,
|
| 863 |
+
"normalized": false,
|
| 864 |
+
"rstrip": false,
|
| 865 |
+
"single_word": false,
|
| 866 |
+
"special": true
|
| 867 |
+
},
|
| 868 |
+
"128108": {
|
| 869 |
+
"content": "<|reserved_special_token_100|>",
|
| 870 |
+
"lstrip": false,
|
| 871 |
+
"normalized": false,
|
| 872 |
+
"rstrip": false,
|
| 873 |
+
"single_word": false,
|
| 874 |
+
"special": true
|
| 875 |
+
},
|
| 876 |
+
"128109": {
|
| 877 |
+
"content": "<|reserved_special_token_101|>",
|
| 878 |
+
"lstrip": false,
|
| 879 |
+
"normalized": false,
|
| 880 |
+
"rstrip": false,
|
| 881 |
+
"single_word": false,
|
| 882 |
+
"special": true
|
| 883 |
+
},
|
| 884 |
+
"128110": {
|
| 885 |
+
"content": "<|reserved_special_token_102|>",
|
| 886 |
+
"lstrip": false,
|
| 887 |
+
"normalized": false,
|
| 888 |
+
"rstrip": false,
|
| 889 |
+
"single_word": false,
|
| 890 |
+
"special": true
|
| 891 |
+
},
|
| 892 |
+
"128111": {
|
| 893 |
+
"content": "<|reserved_special_token_103|>",
|
| 894 |
+
"lstrip": false,
|
| 895 |
+
"normalized": false,
|
| 896 |
+
"rstrip": false,
|
| 897 |
+
"single_word": false,
|
| 898 |
+
"special": true
|
| 899 |
+
},
|
| 900 |
+
"128112": {
|
| 901 |
+
"content": "<|reserved_special_token_104|>",
|
| 902 |
+
"lstrip": false,
|
| 903 |
+
"normalized": false,
|
| 904 |
+
"rstrip": false,
|
| 905 |
+
"single_word": false,
|
| 906 |
+
"special": true
|
| 907 |
+
},
|
| 908 |
+
"128113": {
|
| 909 |
+
"content": "<|reserved_special_token_105|>",
|
| 910 |
+
"lstrip": false,
|
| 911 |
+
"normalized": false,
|
| 912 |
+
"rstrip": false,
|
| 913 |
+
"single_word": false,
|
| 914 |
+
"special": true
|
| 915 |
+
},
|
| 916 |
+
"128114": {
|
| 917 |
+
"content": "<|reserved_special_token_106|>",
|
| 918 |
+
"lstrip": false,
|
| 919 |
+
"normalized": false,
|
| 920 |
+
"rstrip": false,
|
| 921 |
+
"single_word": false,
|
| 922 |
+
"special": true
|
| 923 |
+
},
|
| 924 |
+
"128115": {
|
| 925 |
+
"content": "<|reserved_special_token_107|>",
|
| 926 |
+
"lstrip": false,
|
| 927 |
+
"normalized": false,
|
| 928 |
+
"rstrip": false,
|
| 929 |
+
"single_word": false,
|
| 930 |
+
"special": true
|
| 931 |
+
},
|
| 932 |
+
"128116": {
|
| 933 |
+
"content": "<|reserved_special_token_108|>",
|
| 934 |
+
"lstrip": false,
|
| 935 |
+
"normalized": false,
|
| 936 |
+
"rstrip": false,
|
| 937 |
+
"single_word": false,
|
| 938 |
+
"special": true
|
| 939 |
+
},
|
| 940 |
+
"128117": {
|
| 941 |
+
"content": "<|reserved_special_token_109|>",
|
| 942 |
+
"lstrip": false,
|
| 943 |
+
"normalized": false,
|
| 944 |
+
"rstrip": false,
|
| 945 |
+
"single_word": false,
|
| 946 |
+
"special": true
|
| 947 |
+
},
|
| 948 |
+
"128118": {
|
| 949 |
+
"content": "<|reserved_special_token_110|>",
|
| 950 |
+
"lstrip": false,
|
| 951 |
+
"normalized": false,
|
| 952 |
+
"rstrip": false,
|
| 953 |
+
"single_word": false,
|
| 954 |
+
"special": true
|
| 955 |
+
},
|
| 956 |
+
"128119": {
|
| 957 |
+
"content": "<|reserved_special_token_111|>",
|
| 958 |
+
"lstrip": false,
|
| 959 |
+
"normalized": false,
|
| 960 |
+
"rstrip": false,
|
| 961 |
+
"single_word": false,
|
| 962 |
+
"special": true
|
| 963 |
+
},
|
| 964 |
+
"128120": {
|
| 965 |
+
"content": "<|reserved_special_token_112|>",
|
| 966 |
+
"lstrip": false,
|
| 967 |
+
"normalized": false,
|
| 968 |
+
"rstrip": false,
|
| 969 |
+
"single_word": false,
|
| 970 |
+
"special": true
|
| 971 |
+
},
|
| 972 |
+
"128121": {
|
| 973 |
+
"content": "<|reserved_special_token_113|>",
|
| 974 |
+
"lstrip": false,
|
| 975 |
+
"normalized": false,
|
| 976 |
+
"rstrip": false,
|
| 977 |
+
"single_word": false,
|
| 978 |
+
"special": true
|
| 979 |
+
},
|
| 980 |
+
"128122": {
|
| 981 |
+
"content": "<|reserved_special_token_114|>",
|
| 982 |
+
"lstrip": false,
|
| 983 |
+
"normalized": false,
|
| 984 |
+
"rstrip": false,
|
| 985 |
+
"single_word": false,
|
| 986 |
+
"special": true
|
| 987 |
+
},
|
| 988 |
+
"128123": {
|
| 989 |
+
"content": "<|reserved_special_token_115|>",
|
| 990 |
+
"lstrip": false,
|
| 991 |
+
"normalized": false,
|
| 992 |
+
"rstrip": false,
|
| 993 |
+
"single_word": false,
|
| 994 |
+
"special": true
|
| 995 |
+
},
|
| 996 |
+
"128124": {
|
| 997 |
+
"content": "<|reserved_special_token_116|>",
|
| 998 |
+
"lstrip": false,
|
| 999 |
+
"normalized": false,
|
| 1000 |
+
"rstrip": false,
|
| 1001 |
+
"single_word": false,
|
| 1002 |
+
"special": true
|
| 1003 |
+
},
|
| 1004 |
+
"128125": {
|
| 1005 |
+
"content": "<|reserved_special_token_117|>",
|
| 1006 |
+
"lstrip": false,
|
| 1007 |
+
"normalized": false,
|
| 1008 |
+
"rstrip": false,
|
| 1009 |
+
"single_word": false,
|
| 1010 |
+
"special": true
|
| 1011 |
+
},
|
| 1012 |
+
"128126": {
|
| 1013 |
+
"content": "<|reserved_special_token_118|>",
|
| 1014 |
+
"lstrip": false,
|
| 1015 |
+
"normalized": false,
|
| 1016 |
+
"rstrip": false,
|
| 1017 |
+
"single_word": false,
|
| 1018 |
+
"special": true
|
| 1019 |
+
},
|
| 1020 |
+
"128127": {
|
| 1021 |
+
"content": "<|reserved_special_token_119|>",
|
| 1022 |
+
"lstrip": false,
|
| 1023 |
+
"normalized": false,
|
| 1024 |
+
"rstrip": false,
|
| 1025 |
+
"single_word": false,
|
| 1026 |
+
"special": true
|
| 1027 |
+
},
|
| 1028 |
+
"128128": {
|
| 1029 |
+
"content": "<|reserved_special_token_120|>",
|
| 1030 |
+
"lstrip": false,
|
| 1031 |
+
"normalized": false,
|
| 1032 |
+
"rstrip": false,
|
| 1033 |
+
"single_word": false,
|
| 1034 |
+
"special": true
|
| 1035 |
+
},
|
| 1036 |
+
"128129": {
|
| 1037 |
+
"content": "<|reserved_special_token_121|>",
|
| 1038 |
+
"lstrip": false,
|
| 1039 |
+
"normalized": false,
|
| 1040 |
+
"rstrip": false,
|
| 1041 |
+
"single_word": false,
|
| 1042 |
+
"special": true
|
| 1043 |
+
},
|
| 1044 |
+
"128130": {
|
| 1045 |
+
"content": "<|reserved_special_token_122|>",
|
| 1046 |
+
"lstrip": false,
|
| 1047 |
+
"normalized": false,
|
| 1048 |
+
"rstrip": false,
|
| 1049 |
+
"single_word": false,
|
| 1050 |
+
"special": true
|
| 1051 |
+
},
|
| 1052 |
+
"128131": {
|
| 1053 |
+
"content": "<|reserved_special_token_123|>",
|
| 1054 |
+
"lstrip": false,
|
| 1055 |
+
"normalized": false,
|
| 1056 |
+
"rstrip": false,
|
| 1057 |
+
"single_word": false,
|
| 1058 |
+
"special": true
|
| 1059 |
+
},
|
| 1060 |
+
"128132": {
|
| 1061 |
+
"content": "<|reserved_special_token_124|>",
|
| 1062 |
+
"lstrip": false,
|
| 1063 |
+
"normalized": false,
|
| 1064 |
+
"rstrip": false,
|
| 1065 |
+
"single_word": false,
|
| 1066 |
+
"special": true
|
| 1067 |
+
},
|
| 1068 |
+
"128133": {
|
| 1069 |
+
"content": "<|reserved_special_token_125|>",
|
| 1070 |
+
"lstrip": false,
|
| 1071 |
+
"normalized": false,
|
| 1072 |
+
"rstrip": false,
|
| 1073 |
+
"single_word": false,
|
| 1074 |
+
"special": true
|
| 1075 |
+
},
|
| 1076 |
+
"128134": {
|
| 1077 |
+
"content": "<|reserved_special_token_126|>",
|
| 1078 |
+
"lstrip": false,
|
| 1079 |
+
"normalized": false,
|
| 1080 |
+
"rstrip": false,
|
| 1081 |
+
"single_word": false,
|
| 1082 |
+
"special": true
|
| 1083 |
+
},
|
| 1084 |
+
"128135": {
|
| 1085 |
+
"content": "<|reserved_special_token_127|>",
|
| 1086 |
+
"lstrip": false,
|
| 1087 |
+
"normalized": false,
|
| 1088 |
+
"rstrip": false,
|
| 1089 |
+
"single_word": false,
|
| 1090 |
+
"special": true
|
| 1091 |
+
},
|
| 1092 |
+
"128136": {
|
| 1093 |
+
"content": "<|reserved_special_token_128|>",
|
| 1094 |
+
"lstrip": false,
|
| 1095 |
+
"normalized": false,
|
| 1096 |
+
"rstrip": false,
|
| 1097 |
+
"single_word": false,
|
| 1098 |
+
"special": true
|
| 1099 |
+
},
|
| 1100 |
+
"128137": {
|
| 1101 |
+
"content": "<|reserved_special_token_129|>",
|
| 1102 |
+
"lstrip": false,
|
| 1103 |
+
"normalized": false,
|
| 1104 |
+
"rstrip": false,
|
| 1105 |
+
"single_word": false,
|
| 1106 |
+
"special": true
|
| 1107 |
+
},
|
| 1108 |
+
"128138": {
|
| 1109 |
+
"content": "<|reserved_special_token_130|>",
|
| 1110 |
+
"lstrip": false,
|
| 1111 |
+
"normalized": false,
|
| 1112 |
+
"rstrip": false,
|
| 1113 |
+
"single_word": false,
|
| 1114 |
+
"special": true
|
| 1115 |
+
},
|
| 1116 |
+
"128139": {
|
| 1117 |
+
"content": "<|reserved_special_token_131|>",
|
| 1118 |
+
"lstrip": false,
|
| 1119 |
+
"normalized": false,
|
| 1120 |
+
"rstrip": false,
|
| 1121 |
+
"single_word": false,
|
| 1122 |
+
"special": true
|
| 1123 |
+
},
|
| 1124 |
+
"128140": {
|
| 1125 |
+
"content": "<|reserved_special_token_132|>",
|
| 1126 |
+
"lstrip": false,
|
| 1127 |
+
"normalized": false,
|
| 1128 |
+
"rstrip": false,
|
| 1129 |
+
"single_word": false,
|
| 1130 |
+
"special": true
|
| 1131 |
+
},
|
| 1132 |
+
"128141": {
|
| 1133 |
+
"content": "<|reserved_special_token_133|>",
|
| 1134 |
+
"lstrip": false,
|
| 1135 |
+
"normalized": false,
|
| 1136 |
+
"rstrip": false,
|
| 1137 |
+
"single_word": false,
|
| 1138 |
+
"special": true
|
| 1139 |
+
},
|
| 1140 |
+
"128142": {
|
| 1141 |
+
"content": "<|reserved_special_token_134|>",
|
| 1142 |
+
"lstrip": false,
|
| 1143 |
+
"normalized": false,
|
| 1144 |
+
"rstrip": false,
|
| 1145 |
+
"single_word": false,
|
| 1146 |
+
"special": true
|
| 1147 |
+
},
|
| 1148 |
+
"128143": {
|
| 1149 |
+
"content": "<|reserved_special_token_135|>",
|
| 1150 |
+
"lstrip": false,
|
| 1151 |
+
"normalized": false,
|
| 1152 |
+
"rstrip": false,
|
| 1153 |
+
"single_word": false,
|
| 1154 |
+
"special": true
|
| 1155 |
+
},
|
| 1156 |
+
"128144": {
|
| 1157 |
+
"content": "<|reserved_special_token_136|>",
|
| 1158 |
+
"lstrip": false,
|
| 1159 |
+
"normalized": false,
|
| 1160 |
+
"rstrip": false,
|
| 1161 |
+
"single_word": false,
|
| 1162 |
+
"special": true
|
| 1163 |
+
},
|
| 1164 |
+
"128145": {
|
| 1165 |
+
"content": "<|reserved_special_token_137|>",
|
| 1166 |
+
"lstrip": false,
|
| 1167 |
+
"normalized": false,
|
| 1168 |
+
"rstrip": false,
|
| 1169 |
+
"single_word": false,
|
| 1170 |
+
"special": true
|
| 1171 |
+
},
|
| 1172 |
+
"128146": {
|
| 1173 |
+
"content": "<|reserved_special_token_138|>",
|
| 1174 |
+
"lstrip": false,
|
| 1175 |
+
"normalized": false,
|
| 1176 |
+
"rstrip": false,
|
| 1177 |
+
"single_word": false,
|
| 1178 |
+
"special": true
|
| 1179 |
+
},
|
| 1180 |
+
"128147": {
|
| 1181 |
+
"content": "<|reserved_special_token_139|>",
|
| 1182 |
+
"lstrip": false,
|
| 1183 |
+
"normalized": false,
|
| 1184 |
+
"rstrip": false,
|
| 1185 |
+
"single_word": false,
|
| 1186 |
+
"special": true
|
| 1187 |
+
},
|
| 1188 |
+
"128148": {
|
| 1189 |
+
"content": "<|reserved_special_token_140|>",
|
| 1190 |
+
"lstrip": false,
|
| 1191 |
+
"normalized": false,
|
| 1192 |
+
"rstrip": false,
|
| 1193 |
+
"single_word": false,
|
| 1194 |
+
"special": true
|
| 1195 |
+
},
|
| 1196 |
+
"128149": {
|
| 1197 |
+
"content": "<|reserved_special_token_141|>",
|
| 1198 |
+
"lstrip": false,
|
| 1199 |
+
"normalized": false,
|
| 1200 |
+
"rstrip": false,
|
| 1201 |
+
"single_word": false,
|
| 1202 |
+
"special": true
|
| 1203 |
+
},
|
| 1204 |
+
"128150": {
|
| 1205 |
+
"content": "<|reserved_special_token_142|>",
|
| 1206 |
+
"lstrip": false,
|
| 1207 |
+
"normalized": false,
|
| 1208 |
+
"rstrip": false,
|
| 1209 |
+
"single_word": false,
|
| 1210 |
+
"special": true
|
| 1211 |
+
},
|
| 1212 |
+
"128151": {
|
| 1213 |
+
"content": "<|reserved_special_token_143|>",
|
| 1214 |
+
"lstrip": false,
|
| 1215 |
+
"normalized": false,
|
| 1216 |
+
"rstrip": false,
|
| 1217 |
+
"single_word": false,
|
| 1218 |
+
"special": true
|
| 1219 |
+
},
|
| 1220 |
+
"128152": {
|
| 1221 |
+
"content": "<|reserved_special_token_144|>",
|
| 1222 |
+
"lstrip": false,
|
| 1223 |
+
"normalized": false,
|
| 1224 |
+
"rstrip": false,
|
| 1225 |
+
"single_word": false,
|
| 1226 |
+
"special": true
|
| 1227 |
+
},
|
| 1228 |
+
"128153": {
|
| 1229 |
+
"content": "<|reserved_special_token_145|>",
|
| 1230 |
+
"lstrip": false,
|
| 1231 |
+
"normalized": false,
|
| 1232 |
+
"rstrip": false,
|
| 1233 |
+
"single_word": false,
|
| 1234 |
+
"special": true
|
| 1235 |
+
},
|
| 1236 |
+
"128154": {
|
| 1237 |
+
"content": "<|reserved_special_token_146|>",
|
| 1238 |
+
"lstrip": false,
|
| 1239 |
+
"normalized": false,
|
| 1240 |
+
"rstrip": false,
|
| 1241 |
+
"single_word": false,
|
| 1242 |
+
"special": true
|
| 1243 |
+
},
|
| 1244 |
+
"128155": {
|
| 1245 |
+
"content": "<|reserved_special_token_147|>",
|
| 1246 |
+
"lstrip": false,
|
| 1247 |
+
"normalized": false,
|
| 1248 |
+
"rstrip": false,
|
| 1249 |
+
"single_word": false,
|
| 1250 |
+
"special": true
|
| 1251 |
+
},
|
| 1252 |
+
"128156": {
|
| 1253 |
+
"content": "<|reserved_special_token_148|>",
|
| 1254 |
+
"lstrip": false,
|
| 1255 |
+
"normalized": false,
|
| 1256 |
+
"rstrip": false,
|
| 1257 |
+
"single_word": false,
|
| 1258 |
+
"special": true
|
| 1259 |
+
},
|
| 1260 |
+
"128157": {
|
| 1261 |
+
"content": "<|reserved_special_token_149|>",
|
| 1262 |
+
"lstrip": false,
|
| 1263 |
+
"normalized": false,
|
| 1264 |
+
"rstrip": false,
|
| 1265 |
+
"single_word": false,
|
| 1266 |
+
"special": true
|
| 1267 |
+
},
|
| 1268 |
+
"128158": {
|
| 1269 |
+
"content": "<|reserved_special_token_150|>",
|
| 1270 |
+
"lstrip": false,
|
| 1271 |
+
"normalized": false,
|
| 1272 |
+
"rstrip": false,
|
| 1273 |
+
"single_word": false,
|
| 1274 |
+
"special": true
|
| 1275 |
+
},
|
| 1276 |
+
"128159": {
|
| 1277 |
+
"content": "<|reserved_special_token_151|>",
|
| 1278 |
+
"lstrip": false,
|
| 1279 |
+
"normalized": false,
|
| 1280 |
+
"rstrip": false,
|
| 1281 |
+
"single_word": false,
|
| 1282 |
+
"special": true
|
| 1283 |
+
},
|
| 1284 |
+
"128160": {
|
| 1285 |
+
"content": "<|reserved_special_token_152|>",
|
| 1286 |
+
"lstrip": false,
|
| 1287 |
+
"normalized": false,
|
| 1288 |
+
"rstrip": false,
|
| 1289 |
+
"single_word": false,
|
| 1290 |
+
"special": true
|
| 1291 |
+
},
|
| 1292 |
+
"128161": {
|
| 1293 |
+
"content": "<|reserved_special_token_153|>",
|
| 1294 |
+
"lstrip": false,
|
| 1295 |
+
"normalized": false,
|
| 1296 |
+
"rstrip": false,
|
| 1297 |
+
"single_word": false,
|
| 1298 |
+
"special": true
|
| 1299 |
+
},
|
| 1300 |
+
"128162": {
|
| 1301 |
+
"content": "<|reserved_special_token_154|>",
|
| 1302 |
+
"lstrip": false,
|
| 1303 |
+
"normalized": false,
|
| 1304 |
+
"rstrip": false,
|
| 1305 |
+
"single_word": false,
|
| 1306 |
+
"special": true
|
| 1307 |
+
},
|
| 1308 |
+
"128163": {
|
| 1309 |
+
"content": "<|reserved_special_token_155|>",
|
| 1310 |
+
"lstrip": false,
|
| 1311 |
+
"normalized": false,
|
| 1312 |
+
"rstrip": false,
|
| 1313 |
+
"single_word": false,
|
| 1314 |
+
"special": true
|
| 1315 |
+
},
|
| 1316 |
+
"128164": {
|
| 1317 |
+
"content": "<|reserved_special_token_156|>",
|
| 1318 |
+
"lstrip": false,
|
| 1319 |
+
"normalized": false,
|
| 1320 |
+
"rstrip": false,
|
| 1321 |
+
"single_word": false,
|
| 1322 |
+
"special": true
|
| 1323 |
+
},
|
| 1324 |
+
"128165": {
|
| 1325 |
+
"content": "<|reserved_special_token_157|>",
|
| 1326 |
+
"lstrip": false,
|
| 1327 |
+
"normalized": false,
|
| 1328 |
+
"rstrip": false,
|
| 1329 |
+
"single_word": false,
|
| 1330 |
+
"special": true
|
| 1331 |
+
},
|
| 1332 |
+
"128166": {
|
| 1333 |
+
"content": "<|reserved_special_token_158|>",
|
| 1334 |
+
"lstrip": false,
|
| 1335 |
+
"normalized": false,
|
| 1336 |
+
"rstrip": false,
|
| 1337 |
+
"single_word": false,
|
| 1338 |
+
"special": true
|
| 1339 |
+
},
|
| 1340 |
+
"128167": {
|
| 1341 |
+
"content": "<|reserved_special_token_159|>",
|
| 1342 |
+
"lstrip": false,
|
| 1343 |
+
"normalized": false,
|
| 1344 |
+
"rstrip": false,
|
| 1345 |
+
"single_word": false,
|
| 1346 |
+
"special": true
|
| 1347 |
+
},
|
| 1348 |
+
"128168": {
|
| 1349 |
+
"content": "<|reserved_special_token_160|>",
|
| 1350 |
+
"lstrip": false,
|
| 1351 |
+
"normalized": false,
|
| 1352 |
+
"rstrip": false,
|
| 1353 |
+
"single_word": false,
|
| 1354 |
+
"special": true
|
| 1355 |
+
},
|
| 1356 |
+
"128169": {
|
| 1357 |
+
"content": "<|reserved_special_token_161|>",
|
| 1358 |
+
"lstrip": false,
|
| 1359 |
+
"normalized": false,
|
| 1360 |
+
"rstrip": false,
|
| 1361 |
+
"single_word": false,
|
| 1362 |
+
"special": true
|
| 1363 |
+
},
|
| 1364 |
+
"128170": {
|
| 1365 |
+
"content": "<|reserved_special_token_162|>",
|
| 1366 |
+
"lstrip": false,
|
| 1367 |
+
"normalized": false,
|
| 1368 |
+
"rstrip": false,
|
| 1369 |
+
"single_word": false,
|
| 1370 |
+
"special": true
|
| 1371 |
+
},
|
| 1372 |
+
"128171": {
|
| 1373 |
+
"content": "<|reserved_special_token_163|>",
|
| 1374 |
+
"lstrip": false,
|
| 1375 |
+
"normalized": false,
|
| 1376 |
+
"rstrip": false,
|
| 1377 |
+
"single_word": false,
|
| 1378 |
+
"special": true
|
| 1379 |
+
},
|
| 1380 |
+
"128172": {
|
| 1381 |
+
"content": "<|reserved_special_token_164|>",
|
| 1382 |
+
"lstrip": false,
|
| 1383 |
+
"normalized": false,
|
| 1384 |
+
"rstrip": false,
|
| 1385 |
+
"single_word": false,
|
| 1386 |
+
"special": true
|
| 1387 |
+
},
|
| 1388 |
+
"128173": {
|
| 1389 |
+
"content": "<|reserved_special_token_165|>",
|
| 1390 |
+
"lstrip": false,
|
| 1391 |
+
"normalized": false,
|
| 1392 |
+
"rstrip": false,
|
| 1393 |
+
"single_word": false,
|
| 1394 |
+
"special": true
|
| 1395 |
+
},
|
| 1396 |
+
"128174": {
|
| 1397 |
+
"content": "<|reserved_special_token_166|>",
|
| 1398 |
+
"lstrip": false,
|
| 1399 |
+
"normalized": false,
|
| 1400 |
+
"rstrip": false,
|
| 1401 |
+
"single_word": false,
|
| 1402 |
+
"special": true
|
| 1403 |
+
},
|
| 1404 |
+
"128175": {
|
| 1405 |
+
"content": "<|reserved_special_token_167|>",
|
| 1406 |
+
"lstrip": false,
|
| 1407 |
+
"normalized": false,
|
| 1408 |
+
"rstrip": false,
|
| 1409 |
+
"single_word": false,
|
| 1410 |
+
"special": true
|
| 1411 |
+
},
|
| 1412 |
+
"128176": {
|
| 1413 |
+
"content": "<|reserved_special_token_168|>",
|
| 1414 |
+
"lstrip": false,
|
| 1415 |
+
"normalized": false,
|
| 1416 |
+
"rstrip": false,
|
| 1417 |
+
"single_word": false,
|
| 1418 |
+
"special": true
|
| 1419 |
+
},
|
| 1420 |
+
"128177": {
|
| 1421 |
+
"content": "<|reserved_special_token_169|>",
|
| 1422 |
+
"lstrip": false,
|
| 1423 |
+
"normalized": false,
|
| 1424 |
+
"rstrip": false,
|
| 1425 |
+
"single_word": false,
|
| 1426 |
+
"special": true
|
| 1427 |
+
},
|
| 1428 |
+
"128178": {
|
| 1429 |
+
"content": "<|reserved_special_token_170|>",
|
| 1430 |
+
"lstrip": false,
|
| 1431 |
+
"normalized": false,
|
| 1432 |
+
"rstrip": false,
|
| 1433 |
+
"single_word": false,
|
| 1434 |
+
"special": true
|
| 1435 |
+
},
|
| 1436 |
+
"128179": {
|
| 1437 |
+
"content": "<|reserved_special_token_171|>",
|
| 1438 |
+
"lstrip": false,
|
| 1439 |
+
"normalized": false,
|
| 1440 |
+
"rstrip": false,
|
| 1441 |
+
"single_word": false,
|
| 1442 |
+
"special": true
|
| 1443 |
+
},
|
| 1444 |
+
"128180": {
|
| 1445 |
+
"content": "<|reserved_special_token_172|>",
|
| 1446 |
+
"lstrip": false,
|
| 1447 |
+
"normalized": false,
|
| 1448 |
+
"rstrip": false,
|
| 1449 |
+
"single_word": false,
|
| 1450 |
+
"special": true
|
| 1451 |
+
},
|
| 1452 |
+
"128181": {
|
| 1453 |
+
"content": "<|reserved_special_token_173|>",
|
| 1454 |
+
"lstrip": false,
|
| 1455 |
+
"normalized": false,
|
| 1456 |
+
"rstrip": false,
|
| 1457 |
+
"single_word": false,
|
| 1458 |
+
"special": true
|
| 1459 |
+
},
|
| 1460 |
+
"128182": {
|
| 1461 |
+
"content": "<|reserved_special_token_174|>",
|
| 1462 |
+
"lstrip": false,
|
| 1463 |
+
"normalized": false,
|
| 1464 |
+
"rstrip": false,
|
| 1465 |
+
"single_word": false,
|
| 1466 |
+
"special": true
|
| 1467 |
+
},
|
| 1468 |
+
"128183": {
|
| 1469 |
+
"content": "<|reserved_special_token_175|>",
|
| 1470 |
+
"lstrip": false,
|
| 1471 |
+
"normalized": false,
|
| 1472 |
+
"rstrip": false,
|
| 1473 |
+
"single_word": false,
|
| 1474 |
+
"special": true
|
| 1475 |
+
},
|
| 1476 |
+
"128184": {
|
| 1477 |
+
"content": "<|reserved_special_token_176|>",
|
| 1478 |
+
"lstrip": false,
|
| 1479 |
+
"normalized": false,
|
| 1480 |
+
"rstrip": false,
|
| 1481 |
+
"single_word": false,
|
| 1482 |
+
"special": true
|
| 1483 |
+
},
|
| 1484 |
+
"128185": {
|
| 1485 |
+
"content": "<|reserved_special_token_177|>",
|
| 1486 |
+
"lstrip": false,
|
| 1487 |
+
"normalized": false,
|
| 1488 |
+
"rstrip": false,
|
| 1489 |
+
"single_word": false,
|
| 1490 |
+
"special": true
|
| 1491 |
+
},
|
| 1492 |
+
"128186": {
|
| 1493 |
+
"content": "<|reserved_special_token_178|>",
|
| 1494 |
+
"lstrip": false,
|
| 1495 |
+
"normalized": false,
|
| 1496 |
+
"rstrip": false,
|
| 1497 |
+
"single_word": false,
|
| 1498 |
+
"special": true
|
| 1499 |
+
},
|
| 1500 |
+
"128187": {
|
| 1501 |
+
"content": "<|reserved_special_token_179|>",
|
| 1502 |
+
"lstrip": false,
|
| 1503 |
+
"normalized": false,
|
| 1504 |
+
"rstrip": false,
|
| 1505 |
+
"single_word": false,
|
| 1506 |
+
"special": true
|
| 1507 |
+
},
|
| 1508 |
+
"128188": {
|
| 1509 |
+
"content": "<|reserved_special_token_180|>",
|
| 1510 |
+
"lstrip": false,
|
| 1511 |
+
"normalized": false,
|
| 1512 |
+
"rstrip": false,
|
| 1513 |
+
"single_word": false,
|
| 1514 |
+
"special": true
|
| 1515 |
+
},
|
| 1516 |
+
"128189": {
|
| 1517 |
+
"content": "<|reserved_special_token_181|>",
|
| 1518 |
+
"lstrip": false,
|
| 1519 |
+
"normalized": false,
|
| 1520 |
+
"rstrip": false,
|
| 1521 |
+
"single_word": false,
|
| 1522 |
+
"special": true
|
| 1523 |
+
},
|
| 1524 |
+
"128190": {
|
| 1525 |
+
"content": "<|reserved_special_token_182|>",
|
| 1526 |
+
"lstrip": false,
|
| 1527 |
+
"normalized": false,
|
| 1528 |
+
"rstrip": false,
|
| 1529 |
+
"single_word": false,
|
| 1530 |
+
"special": true
|
| 1531 |
+
},
|
| 1532 |
+
"128191": {
|
| 1533 |
+
"content": "<|reserved_special_token_183|>",
|
| 1534 |
+
"lstrip": false,
|
| 1535 |
+
"normalized": false,
|
| 1536 |
+
"rstrip": false,
|
| 1537 |
+
"single_word": false,
|
| 1538 |
+
"special": true
|
| 1539 |
+
},
|
| 1540 |
+
"128192": {
|
| 1541 |
+
"content": "<|reserved_special_token_184|>",
|
| 1542 |
+
"lstrip": false,
|
| 1543 |
+
"normalized": false,
|
| 1544 |
+
"rstrip": false,
|
| 1545 |
+
"single_word": false,
|
| 1546 |
+
"special": true
|
| 1547 |
+
},
|
| 1548 |
+
"128193": {
|
| 1549 |
+
"content": "<|reserved_special_token_185|>",
|
| 1550 |
+
"lstrip": false,
|
| 1551 |
+
"normalized": false,
|
| 1552 |
+
"rstrip": false,
|
| 1553 |
+
"single_word": false,
|
| 1554 |
+
"special": true
|
| 1555 |
+
},
|
| 1556 |
+
"128194": {
|
| 1557 |
+
"content": "<|reserved_special_token_186|>",
|
| 1558 |
+
"lstrip": false,
|
| 1559 |
+
"normalized": false,
|
| 1560 |
+
"rstrip": false,
|
| 1561 |
+
"single_word": false,
|
| 1562 |
+
"special": true
|
| 1563 |
+
},
|
| 1564 |
+
"128195": {
|
| 1565 |
+
"content": "<|reserved_special_token_187|>",
|
| 1566 |
+
"lstrip": false,
|
| 1567 |
+
"normalized": false,
|
| 1568 |
+
"rstrip": false,
|
| 1569 |
+
"single_word": false,
|
| 1570 |
+
"special": true
|
| 1571 |
+
},
|
| 1572 |
+
"128196": {
|
| 1573 |
+
"content": "<|reserved_special_token_188|>",
|
| 1574 |
+
"lstrip": false,
|
| 1575 |
+
"normalized": false,
|
| 1576 |
+
"rstrip": false,
|
| 1577 |
+
"single_word": false,
|
| 1578 |
+
"special": true
|
| 1579 |
+
},
|
| 1580 |
+
"128197": {
|
| 1581 |
+
"content": "<|reserved_special_token_189|>",
|
| 1582 |
+
"lstrip": false,
|
| 1583 |
+
"normalized": false,
|
| 1584 |
+
"rstrip": false,
|
| 1585 |
+
"single_word": false,
|
| 1586 |
+
"special": true
|
| 1587 |
+
},
|
| 1588 |
+
"128198": {
|
| 1589 |
+
"content": "<|reserved_special_token_190|>",
|
| 1590 |
+
"lstrip": false,
|
| 1591 |
+
"normalized": false,
|
| 1592 |
+
"rstrip": false,
|
| 1593 |
+
"single_word": false,
|
| 1594 |
+
"special": true
|
| 1595 |
+
},
|
| 1596 |
+
"128199": {
|
| 1597 |
+
"content": "<|reserved_special_token_191|>",
|
| 1598 |
+
"lstrip": false,
|
| 1599 |
+
"normalized": false,
|
| 1600 |
+
"rstrip": false,
|
| 1601 |
+
"single_word": false,
|
| 1602 |
+
"special": true
|
| 1603 |
+
},
|
| 1604 |
+
"128200": {
|
| 1605 |
+
"content": "<|reserved_special_token_192|>",
|
| 1606 |
+
"lstrip": false,
|
| 1607 |
+
"normalized": false,
|
| 1608 |
+
"rstrip": false,
|
| 1609 |
+
"single_word": false,
|
| 1610 |
+
"special": true
|
| 1611 |
+
},
|
| 1612 |
+
"128201": {
|
| 1613 |
+
"content": "<|reserved_special_token_193|>",
|
| 1614 |
+
"lstrip": false,
|
| 1615 |
+
"normalized": false,
|
| 1616 |
+
"rstrip": false,
|
| 1617 |
+
"single_word": false,
|
| 1618 |
+
"special": true
|
| 1619 |
+
},
|
| 1620 |
+
"128202": {
|
| 1621 |
+
"content": "<|reserved_special_token_194|>",
|
| 1622 |
+
"lstrip": false,
|
| 1623 |
+
"normalized": false,
|
| 1624 |
+
"rstrip": false,
|
| 1625 |
+
"single_word": false,
|
| 1626 |
+
"special": true
|
| 1627 |
+
},
|
| 1628 |
+
"128203": {
|
| 1629 |
+
"content": "<|reserved_special_token_195|>",
|
| 1630 |
+
"lstrip": false,
|
| 1631 |
+
"normalized": false,
|
| 1632 |
+
"rstrip": false,
|
| 1633 |
+
"single_word": false,
|
| 1634 |
+
"special": true
|
| 1635 |
+
},
|
| 1636 |
+
"128204": {
|
| 1637 |
+
"content": "<|reserved_special_token_196|>",
|
| 1638 |
+
"lstrip": false,
|
| 1639 |
+
"normalized": false,
|
| 1640 |
+
"rstrip": false,
|
| 1641 |
+
"single_word": false,
|
| 1642 |
+
"special": true
|
| 1643 |
+
},
|
| 1644 |
+
"128205": {
|
| 1645 |
+
"content": "<|reserved_special_token_197|>",
|
| 1646 |
+
"lstrip": false,
|
| 1647 |
+
"normalized": false,
|
| 1648 |
+
"rstrip": false,
|
| 1649 |
+
"single_word": false,
|
| 1650 |
+
"special": true
|
| 1651 |
+
},
|
| 1652 |
+
"128206": {
|
| 1653 |
+
"content": "<|reserved_special_token_198|>",
|
| 1654 |
+
"lstrip": false,
|
| 1655 |
+
"normalized": false,
|
| 1656 |
+
"rstrip": false,
|
| 1657 |
+
"single_word": false,
|
| 1658 |
+
"special": true
|
| 1659 |
+
},
|
| 1660 |
+
"128207": {
|
| 1661 |
+
"content": "<|reserved_special_token_199|>",
|
| 1662 |
+
"lstrip": false,
|
| 1663 |
+
"normalized": false,
|
| 1664 |
+
"rstrip": false,
|
| 1665 |
+
"single_word": false,
|
| 1666 |
+
"special": true
|
| 1667 |
+
},
|
| 1668 |
+
"128208": {
|
| 1669 |
+
"content": "<|reserved_special_token_200|>",
|
| 1670 |
+
"lstrip": false,
|
| 1671 |
+
"normalized": false,
|
| 1672 |
+
"rstrip": false,
|
| 1673 |
+
"single_word": false,
|
| 1674 |
+
"special": true
|
| 1675 |
+
},
|
| 1676 |
+
"128209": {
|
| 1677 |
+
"content": "<|reserved_special_token_201|>",
|
| 1678 |
+
"lstrip": false,
|
| 1679 |
+
"normalized": false,
|
| 1680 |
+
"rstrip": false,
|
| 1681 |
+
"single_word": false,
|
| 1682 |
+
"special": true
|
| 1683 |
+
},
|
| 1684 |
+
"128210": {
|
| 1685 |
+
"content": "<|reserved_special_token_202|>",
|
| 1686 |
+
"lstrip": false,
|
| 1687 |
+
"normalized": false,
|
| 1688 |
+
"rstrip": false,
|
| 1689 |
+
"single_word": false,
|
| 1690 |
+
"special": true
|
| 1691 |
+
},
|
| 1692 |
+
"128211": {
|
| 1693 |
+
"content": "<|reserved_special_token_203|>",
|
| 1694 |
+
"lstrip": false,
|
| 1695 |
+
"normalized": false,
|
| 1696 |
+
"rstrip": false,
|
| 1697 |
+
"single_word": false,
|
| 1698 |
+
"special": true
|
| 1699 |
+
},
|
| 1700 |
+
"128212": {
|
| 1701 |
+
"content": "<|reserved_special_token_204|>",
|
| 1702 |
+
"lstrip": false,
|
| 1703 |
+
"normalized": false,
|
| 1704 |
+
"rstrip": false,
|
| 1705 |
+
"single_word": false,
|
| 1706 |
+
"special": true
|
| 1707 |
+
},
|
| 1708 |
+
"128213": {
|
| 1709 |
+
"content": "<|reserved_special_token_205|>",
|
| 1710 |
+
"lstrip": false,
|
| 1711 |
+
"normalized": false,
|
| 1712 |
+
"rstrip": false,
|
| 1713 |
+
"single_word": false,
|
| 1714 |
+
"special": true
|
| 1715 |
+
},
|
| 1716 |
+
"128214": {
|
| 1717 |
+
"content": "<|reserved_special_token_206|>",
|
| 1718 |
+
"lstrip": false,
|
| 1719 |
+
"normalized": false,
|
| 1720 |
+
"rstrip": false,
|
| 1721 |
+
"single_word": false,
|
| 1722 |
+
"special": true
|
| 1723 |
+
},
|
| 1724 |
+
"128215": {
|
| 1725 |
+
"content": "<|reserved_special_token_207|>",
|
| 1726 |
+
"lstrip": false,
|
| 1727 |
+
"normalized": false,
|
| 1728 |
+
"rstrip": false,
|
| 1729 |
+
"single_word": false,
|
| 1730 |
+
"special": true
|
| 1731 |
+
},
|
| 1732 |
+
"128216": {
|
| 1733 |
+
"content": "<|reserved_special_token_208|>",
|
| 1734 |
+
"lstrip": false,
|
| 1735 |
+
"normalized": false,
|
| 1736 |
+
"rstrip": false,
|
| 1737 |
+
"single_word": false,
|
| 1738 |
+
"special": true
|
| 1739 |
+
},
|
| 1740 |
+
"128217": {
|
| 1741 |
+
"content": "<|reserved_special_token_209|>",
|
| 1742 |
+
"lstrip": false,
|
| 1743 |
+
"normalized": false,
|
| 1744 |
+
"rstrip": false,
|
| 1745 |
+
"single_word": false,
|
| 1746 |
+
"special": true
|
| 1747 |
+
},
|
| 1748 |
+
"128218": {
|
| 1749 |
+
"content": "<|reserved_special_token_210|>",
|
| 1750 |
+
"lstrip": false,
|
| 1751 |
+
"normalized": false,
|
| 1752 |
+
"rstrip": false,
|
| 1753 |
+
"single_word": false,
|
| 1754 |
+
"special": true
|
| 1755 |
+
},
|
| 1756 |
+
"128219": {
|
| 1757 |
+
"content": "<|reserved_special_token_211|>",
|
| 1758 |
+
"lstrip": false,
|
| 1759 |
+
"normalized": false,
|
| 1760 |
+
"rstrip": false,
|
| 1761 |
+
"single_word": false,
|
| 1762 |
+
"special": true
|
| 1763 |
+
},
|
| 1764 |
+
"128220": {
|
| 1765 |
+
"content": "<|reserved_special_token_212|>",
|
| 1766 |
+
"lstrip": false,
|
| 1767 |
+
"normalized": false,
|
| 1768 |
+
"rstrip": false,
|
| 1769 |
+
"single_word": false,
|
| 1770 |
+
"special": true
|
| 1771 |
+
},
|
| 1772 |
+
"128221": {
|
| 1773 |
+
"content": "<|reserved_special_token_213|>",
|
| 1774 |
+
"lstrip": false,
|
| 1775 |
+
"normalized": false,
|
| 1776 |
+
"rstrip": false,
|
| 1777 |
+
"single_word": false,
|
| 1778 |
+
"special": true
|
| 1779 |
+
},
|
| 1780 |
+
"128222": {
|
| 1781 |
+
"content": "<|reserved_special_token_214|>",
|
| 1782 |
+
"lstrip": false,
|
| 1783 |
+
"normalized": false,
|
| 1784 |
+
"rstrip": false,
|
| 1785 |
+
"single_word": false,
|
| 1786 |
+
"special": true
|
| 1787 |
+
},
|
| 1788 |
+
"128223": {
|
| 1789 |
+
"content": "<|reserved_special_token_215|>",
|
| 1790 |
+
"lstrip": false,
|
| 1791 |
+
"normalized": false,
|
| 1792 |
+
"rstrip": false,
|
| 1793 |
+
"single_word": false,
|
| 1794 |
+
"special": true
|
| 1795 |
+
},
|
| 1796 |
+
"128224": {
|
| 1797 |
+
"content": "<|reserved_special_token_216|>",
|
| 1798 |
+
"lstrip": false,
|
| 1799 |
+
"normalized": false,
|
| 1800 |
+
"rstrip": false,
|
| 1801 |
+
"single_word": false,
|
| 1802 |
+
"special": true
|
| 1803 |
+
},
|
| 1804 |
+
"128225": {
|
| 1805 |
+
"content": "<|reserved_special_token_217|>",
|
| 1806 |
+
"lstrip": false,
|
| 1807 |
+
"normalized": false,
|
| 1808 |
+
"rstrip": false,
|
| 1809 |
+
"single_word": false,
|
| 1810 |
+
"special": true
|
| 1811 |
+
},
|
| 1812 |
+
"128226": {
|
| 1813 |
+
"content": "<|reserved_special_token_218|>",
|
| 1814 |
+
"lstrip": false,
|
| 1815 |
+
"normalized": false,
|
| 1816 |
+
"rstrip": false,
|
| 1817 |
+
"single_word": false,
|
| 1818 |
+
"special": true
|
| 1819 |
+
},
|
| 1820 |
+
"128227": {
|
| 1821 |
+
"content": "<|reserved_special_token_219|>",
|
| 1822 |
+
"lstrip": false,
|
| 1823 |
+
"normalized": false,
|
| 1824 |
+
"rstrip": false,
|
| 1825 |
+
"single_word": false,
|
| 1826 |
+
"special": true
|
| 1827 |
+
},
|
| 1828 |
+
"128228": {
|
| 1829 |
+
"content": "<|reserved_special_token_220|>",
|
| 1830 |
+
"lstrip": false,
|
| 1831 |
+
"normalized": false,
|
| 1832 |
+
"rstrip": false,
|
| 1833 |
+
"single_word": false,
|
| 1834 |
+
"special": true
|
| 1835 |
+
},
|
| 1836 |
+
"128229": {
|
| 1837 |
+
"content": "<|reserved_special_token_221|>",
|
| 1838 |
+
"lstrip": false,
|
| 1839 |
+
"normalized": false,
|
| 1840 |
+
"rstrip": false,
|
| 1841 |
+
"single_word": false,
|
| 1842 |
+
"special": true
|
| 1843 |
+
},
|
| 1844 |
+
"128230": {
|
| 1845 |
+
"content": "<|reserved_special_token_222|>",
|
| 1846 |
+
"lstrip": false,
|
| 1847 |
+
"normalized": false,
|
| 1848 |
+
"rstrip": false,
|
| 1849 |
+
"single_word": false,
|
| 1850 |
+
"special": true
|
| 1851 |
+
},
|
| 1852 |
+
"128231": {
|
| 1853 |
+
"content": "<|reserved_special_token_223|>",
|
| 1854 |
+
"lstrip": false,
|
| 1855 |
+
"normalized": false,
|
| 1856 |
+
"rstrip": false,
|
| 1857 |
+
"single_word": false,
|
| 1858 |
+
"special": true
|
| 1859 |
+
},
|
| 1860 |
+
"128232": {
|
| 1861 |
+
"content": "<|reserved_special_token_224|>",
|
| 1862 |
+
"lstrip": false,
|
| 1863 |
+
"normalized": false,
|
| 1864 |
+
"rstrip": false,
|
| 1865 |
+
"single_word": false,
|
| 1866 |
+
"special": true
|
| 1867 |
+
},
|
| 1868 |
+
"128233": {
|
| 1869 |
+
"content": "<|reserved_special_token_225|>",
|
| 1870 |
+
"lstrip": false,
|
| 1871 |
+
"normalized": false,
|
| 1872 |
+
"rstrip": false,
|
| 1873 |
+
"single_word": false,
|
| 1874 |
+
"special": true
|
| 1875 |
+
},
|
| 1876 |
+
"128234": {
|
| 1877 |
+
"content": "<|reserved_special_token_226|>",
|
| 1878 |
+
"lstrip": false,
|
| 1879 |
+
"normalized": false,
|
| 1880 |
+
"rstrip": false,
|
| 1881 |
+
"single_word": false,
|
| 1882 |
+
"special": true
|
| 1883 |
+
},
|
| 1884 |
+
"128235": {
|
| 1885 |
+
"content": "<|reserved_special_token_227|>",
|
| 1886 |
+
"lstrip": false,
|
| 1887 |
+
"normalized": false,
|
| 1888 |
+
"rstrip": false,
|
| 1889 |
+
"single_word": false,
|
| 1890 |
+
"special": true
|
| 1891 |
+
},
|
| 1892 |
+
"128236": {
|
| 1893 |
+
"content": "<|reserved_special_token_228|>",
|
| 1894 |
+
"lstrip": false,
|
| 1895 |
+
"normalized": false,
|
| 1896 |
+
"rstrip": false,
|
| 1897 |
+
"single_word": false,
|
| 1898 |
+
"special": true
|
| 1899 |
+
},
|
| 1900 |
+
"128237": {
|
| 1901 |
+
"content": "<|reserved_special_token_229|>",
|
| 1902 |
+
"lstrip": false,
|
| 1903 |
+
"normalized": false,
|
| 1904 |
+
"rstrip": false,
|
| 1905 |
+
"single_word": false,
|
| 1906 |
+
"special": true
|
| 1907 |
+
},
|
| 1908 |
+
"128238": {
|
| 1909 |
+
"content": "<|reserved_special_token_230|>",
|
| 1910 |
+
"lstrip": false,
|
| 1911 |
+
"normalized": false,
|
| 1912 |
+
"rstrip": false,
|
| 1913 |
+
"single_word": false,
|
| 1914 |
+
"special": true
|
| 1915 |
+
},
|
| 1916 |
+
"128239": {
|
| 1917 |
+
"content": "<|reserved_special_token_231|>",
|
| 1918 |
+
"lstrip": false,
|
| 1919 |
+
"normalized": false,
|
| 1920 |
+
"rstrip": false,
|
| 1921 |
+
"single_word": false,
|
| 1922 |
+
"special": true
|
| 1923 |
+
},
|
| 1924 |
+
"128240": {
|
| 1925 |
+
"content": "<|reserved_special_token_232|>",
|
| 1926 |
+
"lstrip": false,
|
| 1927 |
+
"normalized": false,
|
| 1928 |
+
"rstrip": false,
|
| 1929 |
+
"single_word": false,
|
| 1930 |
+
"special": true
|
| 1931 |
+
},
|
| 1932 |
+
"128241": {
|
| 1933 |
+
"content": "<|reserved_special_token_233|>",
|
| 1934 |
+
"lstrip": false,
|
| 1935 |
+
"normalized": false,
|
| 1936 |
+
"rstrip": false,
|
| 1937 |
+
"single_word": false,
|
| 1938 |
+
"special": true
|
| 1939 |
+
},
|
| 1940 |
+
"128242": {
|
| 1941 |
+
"content": "<|reserved_special_token_234|>",
|
| 1942 |
+
"lstrip": false,
|
| 1943 |
+
"normalized": false,
|
| 1944 |
+
"rstrip": false,
|
| 1945 |
+
"single_word": false,
|
| 1946 |
+
"special": true
|
| 1947 |
+
},
|
| 1948 |
+
"128243": {
|
| 1949 |
+
"content": "<|reserved_special_token_235|>",
|
| 1950 |
+
"lstrip": false,
|
| 1951 |
+
"normalized": false,
|
| 1952 |
+
"rstrip": false,
|
| 1953 |
+
"single_word": false,
|
| 1954 |
+
"special": true
|
| 1955 |
+
},
|
| 1956 |
+
"128244": {
|
| 1957 |
+
"content": "<|reserved_special_token_236|>",
|
| 1958 |
+
"lstrip": false,
|
| 1959 |
+
"normalized": false,
|
| 1960 |
+
"rstrip": false,
|
| 1961 |
+
"single_word": false,
|
| 1962 |
+
"special": true
|
| 1963 |
+
},
|
| 1964 |
+
"128245": {
|
| 1965 |
+
"content": "<|reserved_special_token_237|>",
|
| 1966 |
+
"lstrip": false,
|
| 1967 |
+
"normalized": false,
|
| 1968 |
+
"rstrip": false,
|
| 1969 |
+
"single_word": false,
|
| 1970 |
+
"special": true
|
| 1971 |
+
},
|
| 1972 |
+
"128246": {
|
| 1973 |
+
"content": "<|reserved_special_token_238|>",
|
| 1974 |
+
"lstrip": false,
|
| 1975 |
+
"normalized": false,
|
| 1976 |
+
"rstrip": false,
|
| 1977 |
+
"single_word": false,
|
| 1978 |
+
"special": true
|
| 1979 |
+
},
|
| 1980 |
+
"128247": {
|
| 1981 |
+
"content": "<|reserved_special_token_239|>",
|
| 1982 |
+
"lstrip": false,
|
| 1983 |
+
"normalized": false,
|
| 1984 |
+
"rstrip": false,
|
| 1985 |
+
"single_word": false,
|
| 1986 |
+
"special": true
|
| 1987 |
+
},
|
| 1988 |
+
"128248": {
|
| 1989 |
+
"content": "<|reserved_special_token_240|>",
|
| 1990 |
+
"lstrip": false,
|
| 1991 |
+
"normalized": false,
|
| 1992 |
+
"rstrip": false,
|
| 1993 |
+
"single_word": false,
|
| 1994 |
+
"special": true
|
| 1995 |
+
},
|
| 1996 |
+
"128249": {
|
| 1997 |
+
"content": "<|reserved_special_token_241|>",
|
| 1998 |
+
"lstrip": false,
|
| 1999 |
+
"normalized": false,
|
| 2000 |
+
"rstrip": false,
|
| 2001 |
+
"single_word": false,
|
| 2002 |
+
"special": true
|
| 2003 |
+
},
|
| 2004 |
+
"128250": {
|
| 2005 |
+
"content": "<|reserved_special_token_242|>",
|
| 2006 |
+
"lstrip": false,
|
| 2007 |
+
"normalized": false,
|
| 2008 |
+
"rstrip": false,
|
| 2009 |
+
"single_word": false,
|
| 2010 |
+
"special": true
|
| 2011 |
+
},
|
| 2012 |
+
"128251": {
|
| 2013 |
+
"content": "<|reserved_special_token_243|>",
|
| 2014 |
+
"lstrip": false,
|
| 2015 |
+
"normalized": false,
|
| 2016 |
+
"rstrip": false,
|
| 2017 |
+
"single_word": false,
|
| 2018 |
+
"special": true
|
| 2019 |
+
},
|
| 2020 |
+
"128252": {
|
| 2021 |
+
"content": "<|reserved_special_token_244|>",
|
| 2022 |
+
"lstrip": false,
|
| 2023 |
+
"normalized": false,
|
| 2024 |
+
"rstrip": false,
|
| 2025 |
+
"single_word": false,
|
| 2026 |
+
"special": true
|
| 2027 |
+
},
|
| 2028 |
+
"128253": {
|
| 2029 |
+
"content": "<|reserved_special_token_245|>",
|
| 2030 |
+
"lstrip": false,
|
| 2031 |
+
"normalized": false,
|
| 2032 |
+
"rstrip": false,
|
| 2033 |
+
"single_word": false,
|
| 2034 |
+
"special": true
|
| 2035 |
+
},
|
| 2036 |
+
"128254": {
|
| 2037 |
+
"content": "<|reserved_special_token_246|>",
|
| 2038 |
+
"lstrip": false,
|
| 2039 |
+
"normalized": false,
|
| 2040 |
+
"rstrip": false,
|
| 2041 |
+
"single_word": false,
|
| 2042 |
+
"special": true
|
| 2043 |
+
},
|
| 2044 |
+
"128255": {
|
| 2045 |
+
"content": "<|reserved_special_token_247|>",
|
| 2046 |
+
"lstrip": false,
|
| 2047 |
+
"normalized": false,
|
| 2048 |
+
"rstrip": false,
|
| 2049 |
+
"single_word": false,
|
| 2050 |
+
"special": true
|
| 2051 |
+
}
|
| 2052 |
+
},
|
| 2053 |
+
"bos_token": "<|begin_of_text|>",
|
| 2054 |
+
"clean_up_tokenization_spaces": true,
|
| 2055 |
+
"eos_token": "<|eot_id|>",
|
| 2056 |
+
"extra_special_tokens": {},
|
| 2057 |
+
"model_input_names": [
|
| 2058 |
+
"input_ids",
|
| 2059 |
+
"attention_mask"
|
| 2060 |
+
],
|
| 2061 |
+
"model_max_length": 131072,
|
| 2062 |
+
"pad_token": "<|finetune_right_pad_id|>",
|
| 2063 |
+
"padding_side": "right",
|
| 2064 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 2065 |
+
"unk_token": null
|
| 2066 |
+
}
|
experiments/en-hr/checkpoint-500/trainer_state.json
ADDED
|
@@ -0,0 +1,734 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.1645569620253164,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 500,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.03164556962025317,
|
| 14 |
+
"grad_norm": 8.633589744567871,
|
| 15 |
+
"learning_rate": 0.0002,
|
| 16 |
+
"loss": 2.8037,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.06329113924050633,
|
| 21 |
+
"grad_norm": 2.2176594734191895,
|
| 22 |
+
"learning_rate": 0.00019872773536895675,
|
| 23 |
+
"loss": 0.9131,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0949367088607595,
|
| 28 |
+
"grad_norm": 1.8736966848373413,
|
| 29 |
+
"learning_rate": 0.00019745547073791352,
|
| 30 |
+
"loss": 0.6928,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.12658227848101267,
|
| 35 |
+
"grad_norm": 1.140359878540039,
|
| 36 |
+
"learning_rate": 0.00019618320610687023,
|
| 37 |
+
"loss": 0.551,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.15822784810126583,
|
| 42 |
+
"grad_norm": 0.9033111333847046,
|
| 43 |
+
"learning_rate": 0.00019491094147582698,
|
| 44 |
+
"loss": 0.4932,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.189873417721519,
|
| 49 |
+
"grad_norm": 1.0288461446762085,
|
| 50 |
+
"learning_rate": 0.00019363867684478372,
|
| 51 |
+
"loss": 0.4595,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.22151898734177214,
|
| 56 |
+
"grad_norm": 1.06450355052948,
|
| 57 |
+
"learning_rate": 0.00019236641221374049,
|
| 58 |
+
"loss": 0.5573,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.25316455696202533,
|
| 63 |
+
"grad_norm": 0.9156201481819153,
|
| 64 |
+
"learning_rate": 0.00019109414758269723,
|
| 65 |
+
"loss": 0.5257,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2848101265822785,
|
| 70 |
+
"grad_norm": 0.8665907382965088,
|
| 71 |
+
"learning_rate": 0.00018982188295165394,
|
| 72 |
+
"loss": 0.555,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.31645569620253167,
|
| 77 |
+
"grad_norm": 0.7511389255523682,
|
| 78 |
+
"learning_rate": 0.00018854961832061068,
|
| 79 |
+
"loss": 0.5271,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.34810126582278483,
|
| 84 |
+
"grad_norm": 0.7315279841423035,
|
| 85 |
+
"learning_rate": 0.00018727735368956745,
|
| 86 |
+
"loss": 0.5404,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.379746835443038,
|
| 91 |
+
"grad_norm": 0.8015694618225098,
|
| 92 |
+
"learning_rate": 0.0001860050890585242,
|
| 93 |
+
"loss": 0.5004,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.41139240506329117,
|
| 98 |
+
"grad_norm": 0.7726429104804993,
|
| 99 |
+
"learning_rate": 0.00018473282442748093,
|
| 100 |
+
"loss": 0.5182,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.4430379746835443,
|
| 105 |
+
"grad_norm": 0.8248880505561829,
|
| 106 |
+
"learning_rate": 0.00018346055979643765,
|
| 107 |
+
"loss": 0.4591,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.47468354430379744,
|
| 112 |
+
"grad_norm": 0.7304039001464844,
|
| 113 |
+
"learning_rate": 0.00018218829516539442,
|
| 114 |
+
"loss": 0.4691,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.5063291139240507,
|
| 119 |
+
"grad_norm": 0.6727501153945923,
|
| 120 |
+
"learning_rate": 0.00018091603053435116,
|
| 121 |
+
"loss": 0.4806,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.5379746835443038,
|
| 126 |
+
"grad_norm": 0.7586938738822937,
|
| 127 |
+
"learning_rate": 0.0001796437659033079,
|
| 128 |
+
"loss": 0.478,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.569620253164557,
|
| 133 |
+
"grad_norm": 0.8255019187927246,
|
| 134 |
+
"learning_rate": 0.00017837150127226464,
|
| 135 |
+
"loss": 0.5501,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.6012658227848101,
|
| 140 |
+
"grad_norm": 0.8590326309204102,
|
| 141 |
+
"learning_rate": 0.00017709923664122138,
|
| 142 |
+
"loss": 0.4585,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.6329113924050633,
|
| 147 |
+
"grad_norm": 0.7202553153038025,
|
| 148 |
+
"learning_rate": 0.00017582697201017812,
|
| 149 |
+
"loss": 0.4975,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.6645569620253164,
|
| 154 |
+
"grad_norm": 1.2743698358535767,
|
| 155 |
+
"learning_rate": 0.00017455470737913486,
|
| 156 |
+
"loss": 0.5709,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6962025316455697,
|
| 161 |
+
"grad_norm": 0.790630042552948,
|
| 162 |
+
"learning_rate": 0.00017328244274809163,
|
| 163 |
+
"loss": 0.4912,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.7278481012658228,
|
| 168 |
+
"grad_norm": 0.9008660912513733,
|
| 169 |
+
"learning_rate": 0.00017201017811704835,
|
| 170 |
+
"loss": 0.5643,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.759493670886076,
|
| 175 |
+
"grad_norm": 0.6998384594917297,
|
| 176 |
+
"learning_rate": 0.0001707379134860051,
|
| 177 |
+
"loss": 0.4931,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.7911392405063291,
|
| 182 |
+
"grad_norm": 0.8974913358688354,
|
| 183 |
+
"learning_rate": 0.00016946564885496183,
|
| 184 |
+
"loss": 0.4461,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.8227848101265823,
|
| 189 |
+
"grad_norm": 0.8803034424781799,
|
| 190 |
+
"learning_rate": 0.0001681933842239186,
|
| 191 |
+
"loss": 0.5381,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.8544303797468354,
|
| 196 |
+
"grad_norm": 0.7390441298484802,
|
| 197 |
+
"learning_rate": 0.00016692111959287534,
|
| 198 |
+
"loss": 0.4997,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.8860759493670886,
|
| 203 |
+
"grad_norm": 0.9009511470794678,
|
| 204 |
+
"learning_rate": 0.00016564885496183205,
|
| 205 |
+
"loss": 0.4744,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.9177215189873418,
|
| 210 |
+
"grad_norm": 0.7336710691452026,
|
| 211 |
+
"learning_rate": 0.0001643765903307888,
|
| 212 |
+
"loss": 0.4805,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.9493670886075949,
|
| 217 |
+
"grad_norm": 0.6651920080184937,
|
| 218 |
+
"learning_rate": 0.00016310432569974556,
|
| 219 |
+
"loss": 0.4534,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.9810126582278481,
|
| 224 |
+
"grad_norm": 1.0618934631347656,
|
| 225 |
+
"learning_rate": 0.0001618320610687023,
|
| 226 |
+
"loss": 0.4919,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 1.0126582278481013,
|
| 231 |
+
"grad_norm": 0.49792593717575073,
|
| 232 |
+
"learning_rate": 0.00016055979643765905,
|
| 233 |
+
"loss": 0.4014,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 1.0443037974683544,
|
| 238 |
+
"grad_norm": 0.8175292015075684,
|
| 239 |
+
"learning_rate": 0.0001592875318066158,
|
| 240 |
+
"loss": 0.4179,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 1.0759493670886076,
|
| 245 |
+
"grad_norm": 0.6501911282539368,
|
| 246 |
+
"learning_rate": 0.00015801526717557253,
|
| 247 |
+
"loss": 0.369,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 1.1075949367088607,
|
| 252 |
+
"grad_norm": 0.7288970351219177,
|
| 253 |
+
"learning_rate": 0.00015674300254452927,
|
| 254 |
+
"loss": 0.3421,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 1.139240506329114,
|
| 259 |
+
"grad_norm": 0.7625704407691956,
|
| 260 |
+
"learning_rate": 0.000155470737913486,
|
| 261 |
+
"loss": 0.4222,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.1708860759493671,
|
| 266 |
+
"grad_norm": 0.6345648169517517,
|
| 267 |
+
"learning_rate": 0.00015419847328244275,
|
| 268 |
+
"loss": 0.3806,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 1.2025316455696202,
|
| 273 |
+
"grad_norm": 0.6399903893470764,
|
| 274 |
+
"learning_rate": 0.0001529262086513995,
|
| 275 |
+
"loss": 0.374,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 1.2341772151898733,
|
| 280 |
+
"grad_norm": 0.7712934613227844,
|
| 281 |
+
"learning_rate": 0.00015165394402035624,
|
| 282 |
+
"loss": 0.3721,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 1.2658227848101267,
|
| 287 |
+
"grad_norm": 0.7349191904067993,
|
| 288 |
+
"learning_rate": 0.00015038167938931298,
|
| 289 |
+
"loss": 0.3782,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 1.2974683544303798,
|
| 294 |
+
"grad_norm": 0.9972257614135742,
|
| 295 |
+
"learning_rate": 0.00014910941475826972,
|
| 296 |
+
"loss": 0.3959,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 1.3291139240506329,
|
| 301 |
+
"grad_norm": 0.7999849319458008,
|
| 302 |
+
"learning_rate": 0.0001478371501272265,
|
| 303 |
+
"loss": 0.3912,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 1.360759493670886,
|
| 308 |
+
"grad_norm": 0.7882068157196045,
|
| 309 |
+
"learning_rate": 0.0001465648854961832,
|
| 310 |
+
"loss": 0.359,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 1.3924050632911391,
|
| 315 |
+
"grad_norm": 0.8832948207855225,
|
| 316 |
+
"learning_rate": 0.00014529262086513994,
|
| 317 |
+
"loss": 0.3807,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 1.4240506329113924,
|
| 322 |
+
"grad_norm": 0.6134157180786133,
|
| 323 |
+
"learning_rate": 0.0001440203562340967,
|
| 324 |
+
"loss": 0.4103,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 1.4556962025316456,
|
| 329 |
+
"grad_norm": 0.912650465965271,
|
| 330 |
+
"learning_rate": 0.00014274809160305345,
|
| 331 |
+
"loss": 0.3868,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 1.4873417721518987,
|
| 336 |
+
"grad_norm": 1.2680710554122925,
|
| 337 |
+
"learning_rate": 0.0001414758269720102,
|
| 338 |
+
"loss": 0.3993,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 1.518987341772152,
|
| 343 |
+
"grad_norm": 0.8676391243934631,
|
| 344 |
+
"learning_rate": 0.0001402035623409669,
|
| 345 |
+
"loss": 0.3707,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 1.5506329113924051,
|
| 350 |
+
"grad_norm": 0.808569073677063,
|
| 351 |
+
"learning_rate": 0.00013893129770992368,
|
| 352 |
+
"loss": 0.3708,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 1.5822784810126582,
|
| 357 |
+
"grad_norm": 0.7392472624778748,
|
| 358 |
+
"learning_rate": 0.00013765903307888042,
|
| 359 |
+
"loss": 0.4033,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 1.6139240506329116,
|
| 364 |
+
"grad_norm": 0.9047561287879944,
|
| 365 |
+
"learning_rate": 0.00013638676844783716,
|
| 366 |
+
"loss": 0.3991,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 1.6455696202531644,
|
| 371 |
+
"grad_norm": 0.7823458909988403,
|
| 372 |
+
"learning_rate": 0.0001351145038167939,
|
| 373 |
+
"loss": 0.3675,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 1.6772151898734178,
|
| 378 |
+
"grad_norm": 0.8162348866462708,
|
| 379 |
+
"learning_rate": 0.00013384223918575064,
|
| 380 |
+
"loss": 0.3443,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 1.7088607594936709,
|
| 385 |
+
"grad_norm": 0.9522086977958679,
|
| 386 |
+
"learning_rate": 0.00013256997455470738,
|
| 387 |
+
"loss": 0.4377,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 1.740506329113924,
|
| 392 |
+
"grad_norm": 0.665181040763855,
|
| 393 |
+
"learning_rate": 0.00013129770992366413,
|
| 394 |
+
"loss": 0.3574,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 1.7721518987341773,
|
| 399 |
+
"grad_norm": 0.9565332531929016,
|
| 400 |
+
"learning_rate": 0.00013002544529262087,
|
| 401 |
+
"loss": 0.4191,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 1.8037974683544302,
|
| 406 |
+
"grad_norm": 1.1064597368240356,
|
| 407 |
+
"learning_rate": 0.0001287531806615776,
|
| 408 |
+
"loss": 0.41,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 1.8354430379746836,
|
| 413 |
+
"grad_norm": 0.7252824902534485,
|
| 414 |
+
"learning_rate": 0.00012748091603053435,
|
| 415 |
+
"loss": 0.3772,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 1.8670886075949367,
|
| 420 |
+
"grad_norm": 0.877967119216919,
|
| 421 |
+
"learning_rate": 0.0001262086513994911,
|
| 422 |
+
"loss": 0.36,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 1.8987341772151898,
|
| 427 |
+
"grad_norm": 0.7453832030296326,
|
| 428 |
+
"learning_rate": 0.00012493638676844783,
|
| 429 |
+
"loss": 0.4038,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.9303797468354431,
|
| 434 |
+
"grad_norm": 0.7737745046615601,
|
| 435 |
+
"learning_rate": 0.0001236641221374046,
|
| 436 |
+
"loss": 0.3759,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 1.9620253164556962,
|
| 441 |
+
"grad_norm": 0.834141194820404,
|
| 442 |
+
"learning_rate": 0.00012239185750636134,
|
| 443 |
+
"loss": 0.3563,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 1.9936708860759493,
|
| 448 |
+
"grad_norm": 0.7207242250442505,
|
| 449 |
+
"learning_rate": 0.00012111959287531807,
|
| 450 |
+
"loss": 0.3833,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 2.0253164556962027,
|
| 455 |
+
"grad_norm": 0.6740375757217407,
|
| 456 |
+
"learning_rate": 0.00011984732824427483,
|
| 457 |
+
"loss": 0.2884,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 2.0569620253164556,
|
| 462 |
+
"grad_norm": 1.6249363422393799,
|
| 463 |
+
"learning_rate": 0.00011857506361323157,
|
| 464 |
+
"loss": 0.258,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 2.088607594936709,
|
| 469 |
+
"grad_norm": 0.970698893070221,
|
| 470 |
+
"learning_rate": 0.0001173027989821883,
|
| 471 |
+
"loss": 0.2651,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 2.1202531645569622,
|
| 476 |
+
"grad_norm": 0.7959200143814087,
|
| 477 |
+
"learning_rate": 0.00011603053435114504,
|
| 478 |
+
"loss": 0.2391,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 2.151898734177215,
|
| 483 |
+
"grad_norm": 1.0868202447891235,
|
| 484 |
+
"learning_rate": 0.00011475826972010179,
|
| 485 |
+
"loss": 0.2302,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 2.1835443037974684,
|
| 490 |
+
"grad_norm": 1.1783322095870972,
|
| 491 |
+
"learning_rate": 0.00011348600508905853,
|
| 492 |
+
"loss": 0.236,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 2.2151898734177213,
|
| 497 |
+
"grad_norm": 0.9198023676872253,
|
| 498 |
+
"learning_rate": 0.00011221374045801527,
|
| 499 |
+
"loss": 0.2503,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 2.2468354430379747,
|
| 504 |
+
"grad_norm": 1.0101510286331177,
|
| 505 |
+
"learning_rate": 0.000110941475826972,
|
| 506 |
+
"loss": 0.2542,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 2.278481012658228,
|
| 511 |
+
"grad_norm": 0.9058020710945129,
|
| 512 |
+
"learning_rate": 0.00010966921119592877,
|
| 513 |
+
"loss": 0.2235,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 2.310126582278481,
|
| 518 |
+
"grad_norm": 1.0000735521316528,
|
| 519 |
+
"learning_rate": 0.0001083969465648855,
|
| 520 |
+
"loss": 0.2475,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 2.3417721518987342,
|
| 525 |
+
"grad_norm": 0.824941873550415,
|
| 526 |
+
"learning_rate": 0.00010712468193384224,
|
| 527 |
+
"loss": 0.2443,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 2.3734177215189876,
|
| 532 |
+
"grad_norm": 1.0715147256851196,
|
| 533 |
+
"learning_rate": 0.00010585241730279898,
|
| 534 |
+
"loss": 0.2549,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 2.4050632911392404,
|
| 539 |
+
"grad_norm": 1.1317178010940552,
|
| 540 |
+
"learning_rate": 0.00010458015267175574,
|
| 541 |
+
"loss": 0.274,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 2.4367088607594938,
|
| 546 |
+
"grad_norm": 0.9162061810493469,
|
| 547 |
+
"learning_rate": 0.00010330788804071248,
|
| 548 |
+
"loss": 0.2644,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 2.4683544303797467,
|
| 553 |
+
"grad_norm": 0.8676306009292603,
|
| 554 |
+
"learning_rate": 0.00010203562340966922,
|
| 555 |
+
"loss": 0.2668,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 2.5,
|
| 560 |
+
"grad_norm": 0.8871727585792542,
|
| 561 |
+
"learning_rate": 0.00010076335877862595,
|
| 562 |
+
"loss": 0.2625,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 2.5316455696202533,
|
| 567 |
+
"grad_norm": 0.800001323223114,
|
| 568 |
+
"learning_rate": 9.94910941475827e-05,
|
| 569 |
+
"loss": 0.2628,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 2.5632911392405062,
|
| 574 |
+
"grad_norm": 1.035553216934204,
|
| 575 |
+
"learning_rate": 9.821882951653944e-05,
|
| 576 |
+
"loss": 0.2651,
|
| 577 |
+
"step": 405
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 2.5949367088607596,
|
| 581 |
+
"grad_norm": 1.2588839530944824,
|
| 582 |
+
"learning_rate": 9.694656488549618e-05,
|
| 583 |
+
"loss": 0.2758,
|
| 584 |
+
"step": 410
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 2.6265822784810124,
|
| 588 |
+
"grad_norm": 0.7838737964630127,
|
| 589 |
+
"learning_rate": 9.567430025445293e-05,
|
| 590 |
+
"loss": 0.2563,
|
| 591 |
+
"step": 415
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 2.6582278481012658,
|
| 595 |
+
"grad_norm": 0.862562358379364,
|
| 596 |
+
"learning_rate": 9.440203562340968e-05,
|
| 597 |
+
"loss": 0.2573,
|
| 598 |
+
"step": 420
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 2.689873417721519,
|
| 602 |
+
"grad_norm": 0.9090970754623413,
|
| 603 |
+
"learning_rate": 9.312977099236642e-05,
|
| 604 |
+
"loss": 0.2624,
|
| 605 |
+
"step": 425
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 2.721518987341772,
|
| 609 |
+
"grad_norm": 0.9972439408302307,
|
| 610 |
+
"learning_rate": 9.185750636132316e-05,
|
| 611 |
+
"loss": 0.2586,
|
| 612 |
+
"step": 430
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 2.7531645569620253,
|
| 616 |
+
"grad_norm": 1.023733139038086,
|
| 617 |
+
"learning_rate": 9.05852417302799e-05,
|
| 618 |
+
"loss": 0.248,
|
| 619 |
+
"step": 435
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 2.7848101265822782,
|
| 623 |
+
"grad_norm": 0.9622347950935364,
|
| 624 |
+
"learning_rate": 8.931297709923665e-05,
|
| 625 |
+
"loss": 0.2552,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 2.8164556962025316,
|
| 630 |
+
"grad_norm": 1.0281400680541992,
|
| 631 |
+
"learning_rate": 8.804071246819339e-05,
|
| 632 |
+
"loss": 0.2471,
|
| 633 |
+
"step": 445
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 2.848101265822785,
|
| 637 |
+
"grad_norm": 1.0144472122192383,
|
| 638 |
+
"learning_rate": 8.676844783715013e-05,
|
| 639 |
+
"loss": 0.251,
|
| 640 |
+
"step": 450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 2.879746835443038,
|
| 644 |
+
"grad_norm": 1.0020065307617188,
|
| 645 |
+
"learning_rate": 8.549618320610687e-05,
|
| 646 |
+
"loss": 0.2621,
|
| 647 |
+
"step": 455
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 2.911392405063291,
|
| 651 |
+
"grad_norm": 0.8894968032836914,
|
| 652 |
+
"learning_rate": 8.422391857506363e-05,
|
| 653 |
+
"loss": 0.2518,
|
| 654 |
+
"step": 460
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 2.9430379746835444,
|
| 658 |
+
"grad_norm": 0.9407539367675781,
|
| 659 |
+
"learning_rate": 8.295165394402035e-05,
|
| 660 |
+
"loss": 0.2857,
|
| 661 |
+
"step": 465
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 2.9746835443037973,
|
| 665 |
+
"grad_norm": 0.8730989098548889,
|
| 666 |
+
"learning_rate": 8.167938931297711e-05,
|
| 667 |
+
"loss": 0.2666,
|
| 668 |
+
"step": 470
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 3.0063291139240507,
|
| 672 |
+
"grad_norm": 0.9915937185287476,
|
| 673 |
+
"learning_rate": 8.040712468193385e-05,
|
| 674 |
+
"loss": 0.2389,
|
| 675 |
+
"step": 475
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 3.037974683544304,
|
| 679 |
+
"grad_norm": 0.8623847961425781,
|
| 680 |
+
"learning_rate": 7.913486005089059e-05,
|
| 681 |
+
"loss": 0.1507,
|
| 682 |
+
"step": 480
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 3.069620253164557,
|
| 686 |
+
"grad_norm": 1.3474798202514648,
|
| 687 |
+
"learning_rate": 7.786259541984733e-05,
|
| 688 |
+
"loss": 0.1444,
|
| 689 |
+
"step": 485
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 3.1012658227848102,
|
| 693 |
+
"grad_norm": 0.8760435581207275,
|
| 694 |
+
"learning_rate": 7.659033078880407e-05,
|
| 695 |
+
"loss": 0.1543,
|
| 696 |
+
"step": 490
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 3.132911392405063,
|
| 700 |
+
"grad_norm": 1.0294660329818726,
|
| 701 |
+
"learning_rate": 7.531806615776081e-05,
|
| 702 |
+
"loss": 0.1418,
|
| 703 |
+
"step": 495
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 3.1645569620253164,
|
| 707 |
+
"grad_norm": 1.1107193231582642,
|
| 708 |
+
"learning_rate": 7.404580152671756e-05,
|
| 709 |
+
"loss": 0.1477,
|
| 710 |
+
"step": 500
|
| 711 |
+
}
|
| 712 |
+
],
|
| 713 |
+
"logging_steps": 5,
|
| 714 |
+
"max_steps": 790,
|
| 715 |
+
"num_input_tokens_seen": 0,
|
| 716 |
+
"num_train_epochs": 5,
|
| 717 |
+
"save_steps": 500,
|
| 718 |
+
"stateful_callbacks": {
|
| 719 |
+
"TrainerControl": {
|
| 720 |
+
"args": {
|
| 721 |
+
"should_epoch_stop": false,
|
| 722 |
+
"should_evaluate": false,
|
| 723 |
+
"should_log": false,
|
| 724 |
+
"should_save": true,
|
| 725 |
+
"should_training_stop": false
|
| 726 |
+
},
|
| 727 |
+
"attributes": {}
|
| 728 |
+
}
|
| 729 |
+
},
|
| 730 |
+
"total_flos": 4.381286263389389e+16,
|
| 731 |
+
"train_batch_size": 16,
|
| 732 |
+
"trial_name": null,
|
| 733 |
+
"trial_params": null
|
| 734 |
+
}
|
experiments/en-hr/checkpoint-500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a48ae421ab023b3fdb5557bbc63ed3b90ba7d85e26c595b34738c0fc0ebe5a96
|
| 3 |
+
size 6289
|
experiments/en-hr/checkpoint-790/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/meta-llama-3.1-8b-instruct-bnb-4bit
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- 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. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
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).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
experiments/en-hr/checkpoint-790/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "LlamaForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.llama.modeling_llama",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/meta-llama-3.1-8b-instruct-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 16,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 8,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"v_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"up_proj",
|
| 41 |
+
"down_proj",
|
| 42 |
+
"q_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": false,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": true
|
| 50 |
+
}
|
experiments/en-hr/checkpoint-790/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ebb02019287163af13f8f36449f907330a42897aa8cc8a1993692dd25c3a4fe
|
| 3 |
+
size 83945296
|
experiments/en-hr/checkpoint-790/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 %}
|
experiments/en-hr/checkpoint-790/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73f08e8ae8c71ac58ad6ba22beb8b939c11264e27e1e865ddf11bfeb4efdb33a
|
| 3 |
+
size 43123429
|
experiments/en-hr/checkpoint-790/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89645f9f6a2a8823b334e0748e4f5ea683a27b3d02632f0a241397db55d82fad
|
| 3 |
+
size 14645
|
experiments/en-hr/checkpoint-790/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35051bf7f4f2e2be5c96ec74ea328521409c95bd45c583cbfff0b643a5cb5e1d
|
| 3 |
+
size 1465
|
experiments/en-hr/checkpoint-790/special_tokens_map.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"pad_token": {
|
| 17 |
+
"content": "<|finetune_right_pad_id|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
}
|
| 23 |
+
}
|
experiments/en-hr/checkpoint-790/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
|
| 3 |
+
size 17209920
|
experiments/en-hr/checkpoint-790/tokenizer_config.json
ADDED
|
@@ -0,0 +1,2066 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"128000": {
|
| 5 |
+
"content": "<|begin_of_text|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"128001": {
|
| 13 |
+
"content": "<|end_of_text|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"128002": {
|
| 21 |
+
"content": "<|reserved_special_token_0|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"128003": {
|
| 29 |
+
"content": "<|reserved_special_token_1|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"128004": {
|
| 37 |
+
"content": "<|finetune_right_pad_id|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"128005": {
|
| 45 |
+
"content": "<|reserved_special_token_2|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"128006": {
|
| 53 |
+
"content": "<|start_header_id|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"128007": {
|
| 61 |
+
"content": "<|end_header_id|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"128008": {
|
| 69 |
+
"content": "<|eom_id|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"128009": {
|
| 77 |
+
"content": "<|eot_id|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"128010": {
|
| 85 |
+
"content": "<|python_tag|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"128011": {
|
| 93 |
+
"content": "<|reserved_special_token_3|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"128012": {
|
| 101 |
+
"content": "<|reserved_special_token_4|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"128013": {
|
| 109 |
+
"content": "<|reserved_special_token_5|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"128014": {
|
| 117 |
+
"content": "<|reserved_special_token_6|>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": true
|
| 123 |
+
},
|
| 124 |
+
"128015": {
|
| 125 |
+
"content": "<|reserved_special_token_7|>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
"128016": {
|
| 133 |
+
"content": "<|reserved_special_token_8|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": true
|
| 139 |
+
},
|
| 140 |
+
"128017": {
|
| 141 |
+
"content": "<|reserved_special_token_9|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": true
|
| 147 |
+
},
|
| 148 |
+
"128018": {
|
| 149 |
+
"content": "<|reserved_special_token_10|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": true
|
| 155 |
+
},
|
| 156 |
+
"128019": {
|
| 157 |
+
"content": "<|reserved_special_token_11|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": true
|
| 163 |
+
},
|
| 164 |
+
"128020": {
|
| 165 |
+
"content": "<|reserved_special_token_12|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"128021": {
|
| 173 |
+
"content": "<|reserved_special_token_13|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
},
|
| 180 |
+
"128022": {
|
| 181 |
+
"content": "<|reserved_special_token_14|>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": true
|
| 187 |
+
},
|
| 188 |
+
"128023": {
|
| 189 |
+
"content": "<|reserved_special_token_15|>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": true
|
| 195 |
+
},
|
| 196 |
+
"128024": {
|
| 197 |
+
"content": "<|reserved_special_token_16|>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": true
|
| 203 |
+
},
|
| 204 |
+
"128025": {
|
| 205 |
+
"content": "<|reserved_special_token_17|>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": true
|
| 211 |
+
},
|
| 212 |
+
"128026": {
|
| 213 |
+
"content": "<|reserved_special_token_18|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"128027": {
|
| 221 |
+
"content": "<|reserved_special_token_19|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"128028": {
|
| 229 |
+
"content": "<|reserved_special_token_20|>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"128029": {
|
| 237 |
+
"content": "<|reserved_special_token_21|>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"128030": {
|
| 245 |
+
"content": "<|reserved_special_token_22|>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"128031": {
|
| 253 |
+
"content": "<|reserved_special_token_23|>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"128032": {
|
| 261 |
+
"content": "<|reserved_special_token_24|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
},
|
| 268 |
+
"128033": {
|
| 269 |
+
"content": "<|reserved_special_token_25|>",
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
"128034": {
|
| 277 |
+
"content": "<|reserved_special_token_26|>",
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": false,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": true
|
| 283 |
+
},
|
| 284 |
+
"128035": {
|
| 285 |
+
"content": "<|reserved_special_token_27|>",
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": false,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": true
|
| 291 |
+
},
|
| 292 |
+
"128036": {
|
| 293 |
+
"content": "<|reserved_special_token_28|>",
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": false,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": true
|
| 299 |
+
},
|
| 300 |
+
"128037": {
|
| 301 |
+
"content": "<|reserved_special_token_29|>",
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": false,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": true
|
| 307 |
+
},
|
| 308 |
+
"128038": {
|
| 309 |
+
"content": "<|reserved_special_token_30|>",
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": false,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": true
|
| 315 |
+
},
|
| 316 |
+
"128039": {
|
| 317 |
+
"content": "<|reserved_special_token_31|>",
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": false,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": true
|
| 323 |
+
},
|
| 324 |
+
"128040": {
|
| 325 |
+
"content": "<|reserved_special_token_32|>",
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": false,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": true
|
| 331 |
+
},
|
| 332 |
+
"128041": {
|
| 333 |
+
"content": "<|reserved_special_token_33|>",
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": false,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": true
|
| 339 |
+
},
|
| 340 |
+
"128042": {
|
| 341 |
+
"content": "<|reserved_special_token_34|>",
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
"128043": {
|
| 349 |
+
"content": "<|reserved_special_token_35|>",
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": false,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": true
|
| 355 |
+
},
|
| 356 |
+
"128044": {
|
| 357 |
+
"content": "<|reserved_special_token_36|>",
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": false,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": true
|
| 363 |
+
},
|
| 364 |
+
"128045": {
|
| 365 |
+
"content": "<|reserved_special_token_37|>",
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": false,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": true
|
| 371 |
+
},
|
| 372 |
+
"128046": {
|
| 373 |
+
"content": "<|reserved_special_token_38|>",
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": false,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": true
|
| 379 |
+
},
|
| 380 |
+
"128047": {
|
| 381 |
+
"content": "<|reserved_special_token_39|>",
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": false,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": true
|
| 387 |
+
},
|
| 388 |
+
"128048": {
|
| 389 |
+
"content": "<|reserved_special_token_40|>",
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": false,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": true
|
| 395 |
+
},
|
| 396 |
+
"128049": {
|
| 397 |
+
"content": "<|reserved_special_token_41|>",
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": false,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": true
|
| 403 |
+
},
|
| 404 |
+
"128050": {
|
| 405 |
+
"content": "<|reserved_special_token_42|>",
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": false,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": true
|
| 411 |
+
},
|
| 412 |
+
"128051": {
|
| 413 |
+
"content": "<|reserved_special_token_43|>",
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
"128052": {
|
| 421 |
+
"content": "<|reserved_special_token_44|>",
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": false,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": true
|
| 427 |
+
},
|
| 428 |
+
"128053": {
|
| 429 |
+
"content": "<|reserved_special_token_45|>",
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": false,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": true
|
| 435 |
+
},
|
| 436 |
+
"128054": {
|
| 437 |
+
"content": "<|reserved_special_token_46|>",
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": false,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": true
|
| 443 |
+
},
|
| 444 |
+
"128055": {
|
| 445 |
+
"content": "<|reserved_special_token_47|>",
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": false,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": true
|
| 451 |
+
},
|
| 452 |
+
"128056": {
|
| 453 |
+
"content": "<|reserved_special_token_48|>",
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": false,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": true
|
| 459 |
+
},
|
| 460 |
+
"128057": {
|
| 461 |
+
"content": "<|reserved_special_token_49|>",
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": false,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": true
|
| 467 |
+
},
|
| 468 |
+
"128058": {
|
| 469 |
+
"content": "<|reserved_special_token_50|>",
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": false,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": true
|
| 475 |
+
},
|
| 476 |
+
"128059": {
|
| 477 |
+
"content": "<|reserved_special_token_51|>",
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": false,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": true
|
| 483 |
+
},
|
| 484 |
+
"128060": {
|
| 485 |
+
"content": "<|reserved_special_token_52|>",
|
| 486 |
+
"lstrip": false,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": false,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": true
|
| 491 |
+
},
|
| 492 |
+
"128061": {
|
| 493 |
+
"content": "<|reserved_special_token_53|>",
|
| 494 |
+
"lstrip": false,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": false,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": true
|
| 499 |
+
},
|
| 500 |
+
"128062": {
|
| 501 |
+
"content": "<|reserved_special_token_54|>",
|
| 502 |
+
"lstrip": false,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": false,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": true
|
| 507 |
+
},
|
| 508 |
+
"128063": {
|
| 509 |
+
"content": "<|reserved_special_token_55|>",
|
| 510 |
+
"lstrip": false,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": false,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": true
|
| 515 |
+
},
|
| 516 |
+
"128064": {
|
| 517 |
+
"content": "<|reserved_special_token_56|>",
|
| 518 |
+
"lstrip": false,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": false,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": true
|
| 523 |
+
},
|
| 524 |
+
"128065": {
|
| 525 |
+
"content": "<|reserved_special_token_57|>",
|
| 526 |
+
"lstrip": false,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": false,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": true
|
| 531 |
+
},
|
| 532 |
+
"128066": {
|
| 533 |
+
"content": "<|reserved_special_token_58|>",
|
| 534 |
+
"lstrip": false,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": false,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": true
|
| 539 |
+
},
|
| 540 |
+
"128067": {
|
| 541 |
+
"content": "<|reserved_special_token_59|>",
|
| 542 |
+
"lstrip": false,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": false,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": true
|
| 547 |
+
},
|
| 548 |
+
"128068": {
|
| 549 |
+
"content": "<|reserved_special_token_60|>",
|
| 550 |
+
"lstrip": false,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": false,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": true
|
| 555 |
+
},
|
| 556 |
+
"128069": {
|
| 557 |
+
"content": "<|reserved_special_token_61|>",
|
| 558 |
+
"lstrip": false,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": false,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": true
|
| 563 |
+
},
|
| 564 |
+
"128070": {
|
| 565 |
+
"content": "<|reserved_special_token_62|>",
|
| 566 |
+
"lstrip": false,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": false,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": true
|
| 571 |
+
},
|
| 572 |
+
"128071": {
|
| 573 |
+
"content": "<|reserved_special_token_63|>",
|
| 574 |
+
"lstrip": false,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": false,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": true
|
| 579 |
+
},
|
| 580 |
+
"128072": {
|
| 581 |
+
"content": "<|reserved_special_token_64|>",
|
| 582 |
+
"lstrip": false,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": false,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": true
|
| 587 |
+
},
|
| 588 |
+
"128073": {
|
| 589 |
+
"content": "<|reserved_special_token_65|>",
|
| 590 |
+
"lstrip": false,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": false,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": true
|
| 595 |
+
},
|
| 596 |
+
"128074": {
|
| 597 |
+
"content": "<|reserved_special_token_66|>",
|
| 598 |
+
"lstrip": false,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": false,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": true
|
| 603 |
+
},
|
| 604 |
+
"128075": {
|
| 605 |
+
"content": "<|reserved_special_token_67|>",
|
| 606 |
+
"lstrip": false,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": false,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": true
|
| 611 |
+
},
|
| 612 |
+
"128076": {
|
| 613 |
+
"content": "<|reserved_special_token_68|>",
|
| 614 |
+
"lstrip": false,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": false,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": true
|
| 619 |
+
},
|
| 620 |
+
"128077": {
|
| 621 |
+
"content": "<|reserved_special_token_69|>",
|
| 622 |
+
"lstrip": false,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": false,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": true
|
| 627 |
+
},
|
| 628 |
+
"128078": {
|
| 629 |
+
"content": "<|reserved_special_token_70|>",
|
| 630 |
+
"lstrip": false,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": false,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": true
|
| 635 |
+
},
|
| 636 |
+
"128079": {
|
| 637 |
+
"content": "<|reserved_special_token_71|>",
|
| 638 |
+
"lstrip": false,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": false,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": true
|
| 643 |
+
},
|
| 644 |
+
"128080": {
|
| 645 |
+
"content": "<|reserved_special_token_72|>",
|
| 646 |
+
"lstrip": false,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": false,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": true
|
| 651 |
+
},
|
| 652 |
+
"128081": {
|
| 653 |
+
"content": "<|reserved_special_token_73|>",
|
| 654 |
+
"lstrip": false,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": false,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": true
|
| 659 |
+
},
|
| 660 |
+
"128082": {
|
| 661 |
+
"content": "<|reserved_special_token_74|>",
|
| 662 |
+
"lstrip": false,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": false,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": true
|
| 667 |
+
},
|
| 668 |
+
"128083": {
|
| 669 |
+
"content": "<|reserved_special_token_75|>",
|
| 670 |
+
"lstrip": false,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": false,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": true
|
| 675 |
+
},
|
| 676 |
+
"128084": {
|
| 677 |
+
"content": "<|reserved_special_token_76|>",
|
| 678 |
+
"lstrip": false,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": false,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": true
|
| 683 |
+
},
|
| 684 |
+
"128085": {
|
| 685 |
+
"content": "<|reserved_special_token_77|>",
|
| 686 |
+
"lstrip": false,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": false,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": true
|
| 691 |
+
},
|
| 692 |
+
"128086": {
|
| 693 |
+
"content": "<|reserved_special_token_78|>",
|
| 694 |
+
"lstrip": false,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": false,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": true
|
| 699 |
+
},
|
| 700 |
+
"128087": {
|
| 701 |
+
"content": "<|reserved_special_token_79|>",
|
| 702 |
+
"lstrip": false,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": false,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": true
|
| 707 |
+
},
|
| 708 |
+
"128088": {
|
| 709 |
+
"content": "<|reserved_special_token_80|>",
|
| 710 |
+
"lstrip": false,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": false,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": true
|
| 715 |
+
},
|
| 716 |
+
"128089": {
|
| 717 |
+
"content": "<|reserved_special_token_81|>",
|
| 718 |
+
"lstrip": false,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": false,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": true
|
| 723 |
+
},
|
| 724 |
+
"128090": {
|
| 725 |
+
"content": "<|reserved_special_token_82|>",
|
| 726 |
+
"lstrip": false,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": false,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": true
|
| 731 |
+
},
|
| 732 |
+
"128091": {
|
| 733 |
+
"content": "<|reserved_special_token_83|>",
|
| 734 |
+
"lstrip": false,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": false,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": true
|
| 739 |
+
},
|
| 740 |
+
"128092": {
|
| 741 |
+
"content": "<|reserved_special_token_84|>",
|
| 742 |
+
"lstrip": false,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": false,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": true
|
| 747 |
+
},
|
| 748 |
+
"128093": {
|
| 749 |
+
"content": "<|reserved_special_token_85|>",
|
| 750 |
+
"lstrip": false,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": false,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": true
|
| 755 |
+
},
|
| 756 |
+
"128094": {
|
| 757 |
+
"content": "<|reserved_special_token_86|>",
|
| 758 |
+
"lstrip": false,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": false,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": true
|
| 763 |
+
},
|
| 764 |
+
"128095": {
|
| 765 |
+
"content": "<|reserved_special_token_87|>",
|
| 766 |
+
"lstrip": false,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": false,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": true
|
| 771 |
+
},
|
| 772 |
+
"128096": {
|
| 773 |
+
"content": "<|reserved_special_token_88|>",
|
| 774 |
+
"lstrip": false,
|
| 775 |
+
"normalized": false,
|
| 776 |
+
"rstrip": false,
|
| 777 |
+
"single_word": false,
|
| 778 |
+
"special": true
|
| 779 |
+
},
|
| 780 |
+
"128097": {
|
| 781 |
+
"content": "<|reserved_special_token_89|>",
|
| 782 |
+
"lstrip": false,
|
| 783 |
+
"normalized": false,
|
| 784 |
+
"rstrip": false,
|
| 785 |
+
"single_word": false,
|
| 786 |
+
"special": true
|
| 787 |
+
},
|
| 788 |
+
"128098": {
|
| 789 |
+
"content": "<|reserved_special_token_90|>",
|
| 790 |
+
"lstrip": false,
|
| 791 |
+
"normalized": false,
|
| 792 |
+
"rstrip": false,
|
| 793 |
+
"single_word": false,
|
| 794 |
+
"special": true
|
| 795 |
+
},
|
| 796 |
+
"128099": {
|
| 797 |
+
"content": "<|reserved_special_token_91|>",
|
| 798 |
+
"lstrip": false,
|
| 799 |
+
"normalized": false,
|
| 800 |
+
"rstrip": false,
|
| 801 |
+
"single_word": false,
|
| 802 |
+
"special": true
|
| 803 |
+
},
|
| 804 |
+
"128100": {
|
| 805 |
+
"content": "<|reserved_special_token_92|>",
|
| 806 |
+
"lstrip": false,
|
| 807 |
+
"normalized": false,
|
| 808 |
+
"rstrip": false,
|
| 809 |
+
"single_word": false,
|
| 810 |
+
"special": true
|
| 811 |
+
},
|
| 812 |
+
"128101": {
|
| 813 |
+
"content": "<|reserved_special_token_93|>",
|
| 814 |
+
"lstrip": false,
|
| 815 |
+
"normalized": false,
|
| 816 |
+
"rstrip": false,
|
| 817 |
+
"single_word": false,
|
| 818 |
+
"special": true
|
| 819 |
+
},
|
| 820 |
+
"128102": {
|
| 821 |
+
"content": "<|reserved_special_token_94|>",
|
| 822 |
+
"lstrip": false,
|
| 823 |
+
"normalized": false,
|
| 824 |
+
"rstrip": false,
|
| 825 |
+
"single_word": false,
|
| 826 |
+
"special": true
|
| 827 |
+
},
|
| 828 |
+
"128103": {
|
| 829 |
+
"content": "<|reserved_special_token_95|>",
|
| 830 |
+
"lstrip": false,
|
| 831 |
+
"normalized": false,
|
| 832 |
+
"rstrip": false,
|
| 833 |
+
"single_word": false,
|
| 834 |
+
"special": true
|
| 835 |
+
},
|
| 836 |
+
"128104": {
|
| 837 |
+
"content": "<|reserved_special_token_96|>",
|
| 838 |
+
"lstrip": false,
|
| 839 |
+
"normalized": false,
|
| 840 |
+
"rstrip": false,
|
| 841 |
+
"single_word": false,
|
| 842 |
+
"special": true
|
| 843 |
+
},
|
| 844 |
+
"128105": {
|
| 845 |
+
"content": "<|reserved_special_token_97|>",
|
| 846 |
+
"lstrip": false,
|
| 847 |
+
"normalized": false,
|
| 848 |
+
"rstrip": false,
|
| 849 |
+
"single_word": false,
|
| 850 |
+
"special": true
|
| 851 |
+
},
|
| 852 |
+
"128106": {
|
| 853 |
+
"content": "<|reserved_special_token_98|>",
|
| 854 |
+
"lstrip": false,
|
| 855 |
+
"normalized": false,
|
| 856 |
+
"rstrip": false,
|
| 857 |
+
"single_word": false,
|
| 858 |
+
"special": true
|
| 859 |
+
},
|
| 860 |
+
"128107": {
|
| 861 |
+
"content": "<|reserved_special_token_99|>",
|
| 862 |
+
"lstrip": false,
|
| 863 |
+
"normalized": false,
|
| 864 |
+
"rstrip": false,
|
| 865 |
+
"single_word": false,
|
| 866 |
+
"special": true
|
| 867 |
+
},
|
| 868 |
+
"128108": {
|
| 869 |
+
"content": "<|reserved_special_token_100|>",
|
| 870 |
+
"lstrip": false,
|
| 871 |
+
"normalized": false,
|
| 872 |
+
"rstrip": false,
|
| 873 |
+
"single_word": false,
|
| 874 |
+
"special": true
|
| 875 |
+
},
|
| 876 |
+
"128109": {
|
| 877 |
+
"content": "<|reserved_special_token_101|>",
|
| 878 |
+
"lstrip": false,
|
| 879 |
+
"normalized": false,
|
| 880 |
+
"rstrip": false,
|
| 881 |
+
"single_word": false,
|
| 882 |
+
"special": true
|
| 883 |
+
},
|
| 884 |
+
"128110": {
|
| 885 |
+
"content": "<|reserved_special_token_102|>",
|
| 886 |
+
"lstrip": false,
|
| 887 |
+
"normalized": false,
|
| 888 |
+
"rstrip": false,
|
| 889 |
+
"single_word": false,
|
| 890 |
+
"special": true
|
| 891 |
+
},
|
| 892 |
+
"128111": {
|
| 893 |
+
"content": "<|reserved_special_token_103|>",
|
| 894 |
+
"lstrip": false,
|
| 895 |
+
"normalized": false,
|
| 896 |
+
"rstrip": false,
|
| 897 |
+
"single_word": false,
|
| 898 |
+
"special": true
|
| 899 |
+
},
|
| 900 |
+
"128112": {
|
| 901 |
+
"content": "<|reserved_special_token_104|>",
|
| 902 |
+
"lstrip": false,
|
| 903 |
+
"normalized": false,
|
| 904 |
+
"rstrip": false,
|
| 905 |
+
"single_word": false,
|
| 906 |
+
"special": true
|
| 907 |
+
},
|
| 908 |
+
"128113": {
|
| 909 |
+
"content": "<|reserved_special_token_105|>",
|
| 910 |
+
"lstrip": false,
|
| 911 |
+
"normalized": false,
|
| 912 |
+
"rstrip": false,
|
| 913 |
+
"single_word": false,
|
| 914 |
+
"special": true
|
| 915 |
+
},
|
| 916 |
+
"128114": {
|
| 917 |
+
"content": "<|reserved_special_token_106|>",
|
| 918 |
+
"lstrip": false,
|
| 919 |
+
"normalized": false,
|
| 920 |
+
"rstrip": false,
|
| 921 |
+
"single_word": false,
|
| 922 |
+
"special": true
|
| 923 |
+
},
|
| 924 |
+
"128115": {
|
| 925 |
+
"content": "<|reserved_special_token_107|>",
|
| 926 |
+
"lstrip": false,
|
| 927 |
+
"normalized": false,
|
| 928 |
+
"rstrip": false,
|
| 929 |
+
"single_word": false,
|
| 930 |
+
"special": true
|
| 931 |
+
},
|
| 932 |
+
"128116": {
|
| 933 |
+
"content": "<|reserved_special_token_108|>",
|
| 934 |
+
"lstrip": false,
|
| 935 |
+
"normalized": false,
|
| 936 |
+
"rstrip": false,
|
| 937 |
+
"single_word": false,
|
| 938 |
+
"special": true
|
| 939 |
+
},
|
| 940 |
+
"128117": {
|
| 941 |
+
"content": "<|reserved_special_token_109|>",
|
| 942 |
+
"lstrip": false,
|
| 943 |
+
"normalized": false,
|
| 944 |
+
"rstrip": false,
|
| 945 |
+
"single_word": false,
|
| 946 |
+
"special": true
|
| 947 |
+
},
|
| 948 |
+
"128118": {
|
| 949 |
+
"content": "<|reserved_special_token_110|>",
|
| 950 |
+
"lstrip": false,
|
| 951 |
+
"normalized": false,
|
| 952 |
+
"rstrip": false,
|
| 953 |
+
"single_word": false,
|
| 954 |
+
"special": true
|
| 955 |
+
},
|
| 956 |
+
"128119": {
|
| 957 |
+
"content": "<|reserved_special_token_111|>",
|
| 958 |
+
"lstrip": false,
|
| 959 |
+
"normalized": false,
|
| 960 |
+
"rstrip": false,
|
| 961 |
+
"single_word": false,
|
| 962 |
+
"special": true
|
| 963 |
+
},
|
| 964 |
+
"128120": {
|
| 965 |
+
"content": "<|reserved_special_token_112|>",
|
| 966 |
+
"lstrip": false,
|
| 967 |
+
"normalized": false,
|
| 968 |
+
"rstrip": false,
|
| 969 |
+
"single_word": false,
|
| 970 |
+
"special": true
|
| 971 |
+
},
|
| 972 |
+
"128121": {
|
| 973 |
+
"content": "<|reserved_special_token_113|>",
|
| 974 |
+
"lstrip": false,
|
| 975 |
+
"normalized": false,
|
| 976 |
+
"rstrip": false,
|
| 977 |
+
"single_word": false,
|
| 978 |
+
"special": true
|
| 979 |
+
},
|
| 980 |
+
"128122": {
|
| 981 |
+
"content": "<|reserved_special_token_114|>",
|
| 982 |
+
"lstrip": false,
|
| 983 |
+
"normalized": false,
|
| 984 |
+
"rstrip": false,
|
| 985 |
+
"single_word": false,
|
| 986 |
+
"special": true
|
| 987 |
+
},
|
| 988 |
+
"128123": {
|
| 989 |
+
"content": "<|reserved_special_token_115|>",
|
| 990 |
+
"lstrip": false,
|
| 991 |
+
"normalized": false,
|
| 992 |
+
"rstrip": false,
|
| 993 |
+
"single_word": false,
|
| 994 |
+
"special": true
|
| 995 |
+
},
|
| 996 |
+
"128124": {
|
| 997 |
+
"content": "<|reserved_special_token_116|>",
|
| 998 |
+
"lstrip": false,
|
| 999 |
+
"normalized": false,
|
| 1000 |
+
"rstrip": false,
|
| 1001 |
+
"single_word": false,
|
| 1002 |
+
"special": true
|
| 1003 |
+
},
|
| 1004 |
+
"128125": {
|
| 1005 |
+
"content": "<|reserved_special_token_117|>",
|
| 1006 |
+
"lstrip": false,
|
| 1007 |
+
"normalized": false,
|
| 1008 |
+
"rstrip": false,
|
| 1009 |
+
"single_word": false,
|
| 1010 |
+
"special": true
|
| 1011 |
+
},
|
| 1012 |
+
"128126": {
|
| 1013 |
+
"content": "<|reserved_special_token_118|>",
|
| 1014 |
+
"lstrip": false,
|
| 1015 |
+
"normalized": false,
|
| 1016 |
+
"rstrip": false,
|
| 1017 |
+
"single_word": false,
|
| 1018 |
+
"special": true
|
| 1019 |
+
},
|
| 1020 |
+
"128127": {
|
| 1021 |
+
"content": "<|reserved_special_token_119|>",
|
| 1022 |
+
"lstrip": false,
|
| 1023 |
+
"normalized": false,
|
| 1024 |
+
"rstrip": false,
|
| 1025 |
+
"single_word": false,
|
| 1026 |
+
"special": true
|
| 1027 |
+
},
|
| 1028 |
+
"128128": {
|
| 1029 |
+
"content": "<|reserved_special_token_120|>",
|
| 1030 |
+
"lstrip": false,
|
| 1031 |
+
"normalized": false,
|
| 1032 |
+
"rstrip": false,
|
| 1033 |
+
"single_word": false,
|
| 1034 |
+
"special": true
|
| 1035 |
+
},
|
| 1036 |
+
"128129": {
|
| 1037 |
+
"content": "<|reserved_special_token_121|>",
|
| 1038 |
+
"lstrip": false,
|
| 1039 |
+
"normalized": false,
|
| 1040 |
+
"rstrip": false,
|
| 1041 |
+
"single_word": false,
|
| 1042 |
+
"special": true
|
| 1043 |
+
},
|
| 1044 |
+
"128130": {
|
| 1045 |
+
"content": "<|reserved_special_token_122|>",
|
| 1046 |
+
"lstrip": false,
|
| 1047 |
+
"normalized": false,
|
| 1048 |
+
"rstrip": false,
|
| 1049 |
+
"single_word": false,
|
| 1050 |
+
"special": true
|
| 1051 |
+
},
|
| 1052 |
+
"128131": {
|
| 1053 |
+
"content": "<|reserved_special_token_123|>",
|
| 1054 |
+
"lstrip": false,
|
| 1055 |
+
"normalized": false,
|
| 1056 |
+
"rstrip": false,
|
| 1057 |
+
"single_word": false,
|
| 1058 |
+
"special": true
|
| 1059 |
+
},
|
| 1060 |
+
"128132": {
|
| 1061 |
+
"content": "<|reserved_special_token_124|>",
|
| 1062 |
+
"lstrip": false,
|
| 1063 |
+
"normalized": false,
|
| 1064 |
+
"rstrip": false,
|
| 1065 |
+
"single_word": false,
|
| 1066 |
+
"special": true
|
| 1067 |
+
},
|
| 1068 |
+
"128133": {
|
| 1069 |
+
"content": "<|reserved_special_token_125|>",
|
| 1070 |
+
"lstrip": false,
|
| 1071 |
+
"normalized": false,
|
| 1072 |
+
"rstrip": false,
|
| 1073 |
+
"single_word": false,
|
| 1074 |
+
"special": true
|
| 1075 |
+
},
|
| 1076 |
+
"128134": {
|
| 1077 |
+
"content": "<|reserved_special_token_126|>",
|
| 1078 |
+
"lstrip": false,
|
| 1079 |
+
"normalized": false,
|
| 1080 |
+
"rstrip": false,
|
| 1081 |
+
"single_word": false,
|
| 1082 |
+
"special": true
|
| 1083 |
+
},
|
| 1084 |
+
"128135": {
|
| 1085 |
+
"content": "<|reserved_special_token_127|>",
|
| 1086 |
+
"lstrip": false,
|
| 1087 |
+
"normalized": false,
|
| 1088 |
+
"rstrip": false,
|
| 1089 |
+
"single_word": false,
|
| 1090 |
+
"special": true
|
| 1091 |
+
},
|
| 1092 |
+
"128136": {
|
| 1093 |
+
"content": "<|reserved_special_token_128|>",
|
| 1094 |
+
"lstrip": false,
|
| 1095 |
+
"normalized": false,
|
| 1096 |
+
"rstrip": false,
|
| 1097 |
+
"single_word": false,
|
| 1098 |
+
"special": true
|
| 1099 |
+
},
|
| 1100 |
+
"128137": {
|
| 1101 |
+
"content": "<|reserved_special_token_129|>",
|
| 1102 |
+
"lstrip": false,
|
| 1103 |
+
"normalized": false,
|
| 1104 |
+
"rstrip": false,
|
| 1105 |
+
"single_word": false,
|
| 1106 |
+
"special": true
|
| 1107 |
+
},
|
| 1108 |
+
"128138": {
|
| 1109 |
+
"content": "<|reserved_special_token_130|>",
|
| 1110 |
+
"lstrip": false,
|
| 1111 |
+
"normalized": false,
|
| 1112 |
+
"rstrip": false,
|
| 1113 |
+
"single_word": false,
|
| 1114 |
+
"special": true
|
| 1115 |
+
},
|
| 1116 |
+
"128139": {
|
| 1117 |
+
"content": "<|reserved_special_token_131|>",
|
| 1118 |
+
"lstrip": false,
|
| 1119 |
+
"normalized": false,
|
| 1120 |
+
"rstrip": false,
|
| 1121 |
+
"single_word": false,
|
| 1122 |
+
"special": true
|
| 1123 |
+
},
|
| 1124 |
+
"128140": {
|
| 1125 |
+
"content": "<|reserved_special_token_132|>",
|
| 1126 |
+
"lstrip": false,
|
| 1127 |
+
"normalized": false,
|
| 1128 |
+
"rstrip": false,
|
| 1129 |
+
"single_word": false,
|
| 1130 |
+
"special": true
|
| 1131 |
+
},
|
| 1132 |
+
"128141": {
|
| 1133 |
+
"content": "<|reserved_special_token_133|>",
|
| 1134 |
+
"lstrip": false,
|
| 1135 |
+
"normalized": false,
|
| 1136 |
+
"rstrip": false,
|
| 1137 |
+
"single_word": false,
|
| 1138 |
+
"special": true
|
| 1139 |
+
},
|
| 1140 |
+
"128142": {
|
| 1141 |
+
"content": "<|reserved_special_token_134|>",
|
| 1142 |
+
"lstrip": false,
|
| 1143 |
+
"normalized": false,
|
| 1144 |
+
"rstrip": false,
|
| 1145 |
+
"single_word": false,
|
| 1146 |
+
"special": true
|
| 1147 |
+
},
|
| 1148 |
+
"128143": {
|
| 1149 |
+
"content": "<|reserved_special_token_135|>",
|
| 1150 |
+
"lstrip": false,
|
| 1151 |
+
"normalized": false,
|
| 1152 |
+
"rstrip": false,
|
| 1153 |
+
"single_word": false,
|
| 1154 |
+
"special": true
|
| 1155 |
+
},
|
| 1156 |
+
"128144": {
|
| 1157 |
+
"content": "<|reserved_special_token_136|>",
|
| 1158 |
+
"lstrip": false,
|
| 1159 |
+
"normalized": false,
|
| 1160 |
+
"rstrip": false,
|
| 1161 |
+
"single_word": false,
|
| 1162 |
+
"special": true
|
| 1163 |
+
},
|
| 1164 |
+
"128145": {
|
| 1165 |
+
"content": "<|reserved_special_token_137|>",
|
| 1166 |
+
"lstrip": false,
|
| 1167 |
+
"normalized": false,
|
| 1168 |
+
"rstrip": false,
|
| 1169 |
+
"single_word": false,
|
| 1170 |
+
"special": true
|
| 1171 |
+
},
|
| 1172 |
+
"128146": {
|
| 1173 |
+
"content": "<|reserved_special_token_138|>",
|
| 1174 |
+
"lstrip": false,
|
| 1175 |
+
"normalized": false,
|
| 1176 |
+
"rstrip": false,
|
| 1177 |
+
"single_word": false,
|
| 1178 |
+
"special": true
|
| 1179 |
+
},
|
| 1180 |
+
"128147": {
|
| 1181 |
+
"content": "<|reserved_special_token_139|>",
|
| 1182 |
+
"lstrip": false,
|
| 1183 |
+
"normalized": false,
|
| 1184 |
+
"rstrip": false,
|
| 1185 |
+
"single_word": false,
|
| 1186 |
+
"special": true
|
| 1187 |
+
},
|
| 1188 |
+
"128148": {
|
| 1189 |
+
"content": "<|reserved_special_token_140|>",
|
| 1190 |
+
"lstrip": false,
|
| 1191 |
+
"normalized": false,
|
| 1192 |
+
"rstrip": false,
|
| 1193 |
+
"single_word": false,
|
| 1194 |
+
"special": true
|
| 1195 |
+
},
|
| 1196 |
+
"128149": {
|
| 1197 |
+
"content": "<|reserved_special_token_141|>",
|
| 1198 |
+
"lstrip": false,
|
| 1199 |
+
"normalized": false,
|
| 1200 |
+
"rstrip": false,
|
| 1201 |
+
"single_word": false,
|
| 1202 |
+
"special": true
|
| 1203 |
+
},
|
| 1204 |
+
"128150": {
|
| 1205 |
+
"content": "<|reserved_special_token_142|>",
|
| 1206 |
+
"lstrip": false,
|
| 1207 |
+
"normalized": false,
|
| 1208 |
+
"rstrip": false,
|
| 1209 |
+
"single_word": false,
|
| 1210 |
+
"special": true
|
| 1211 |
+
},
|
| 1212 |
+
"128151": {
|
| 1213 |
+
"content": "<|reserved_special_token_143|>",
|
| 1214 |
+
"lstrip": false,
|
| 1215 |
+
"normalized": false,
|
| 1216 |
+
"rstrip": false,
|
| 1217 |
+
"single_word": false,
|
| 1218 |
+
"special": true
|
| 1219 |
+
},
|
| 1220 |
+
"128152": {
|
| 1221 |
+
"content": "<|reserved_special_token_144|>",
|
| 1222 |
+
"lstrip": false,
|
| 1223 |
+
"normalized": false,
|
| 1224 |
+
"rstrip": false,
|
| 1225 |
+
"single_word": false,
|
| 1226 |
+
"special": true
|
| 1227 |
+
},
|
| 1228 |
+
"128153": {
|
| 1229 |
+
"content": "<|reserved_special_token_145|>",
|
| 1230 |
+
"lstrip": false,
|
| 1231 |
+
"normalized": false,
|
| 1232 |
+
"rstrip": false,
|
| 1233 |
+
"single_word": false,
|
| 1234 |
+
"special": true
|
| 1235 |
+
},
|
| 1236 |
+
"128154": {
|
| 1237 |
+
"content": "<|reserved_special_token_146|>",
|
| 1238 |
+
"lstrip": false,
|
| 1239 |
+
"normalized": false,
|
| 1240 |
+
"rstrip": false,
|
| 1241 |
+
"single_word": false,
|
| 1242 |
+
"special": true
|
| 1243 |
+
},
|
| 1244 |
+
"128155": {
|
| 1245 |
+
"content": "<|reserved_special_token_147|>",
|
| 1246 |
+
"lstrip": false,
|
| 1247 |
+
"normalized": false,
|
| 1248 |
+
"rstrip": false,
|
| 1249 |
+
"single_word": false,
|
| 1250 |
+
"special": true
|
| 1251 |
+
},
|
| 1252 |
+
"128156": {
|
| 1253 |
+
"content": "<|reserved_special_token_148|>",
|
| 1254 |
+
"lstrip": false,
|
| 1255 |
+
"normalized": false,
|
| 1256 |
+
"rstrip": false,
|
| 1257 |
+
"single_word": false,
|
| 1258 |
+
"special": true
|
| 1259 |
+
},
|
| 1260 |
+
"128157": {
|
| 1261 |
+
"content": "<|reserved_special_token_149|>",
|
| 1262 |
+
"lstrip": false,
|
| 1263 |
+
"normalized": false,
|
| 1264 |
+
"rstrip": false,
|
| 1265 |
+
"single_word": false,
|
| 1266 |
+
"special": true
|
| 1267 |
+
},
|
| 1268 |
+
"128158": {
|
| 1269 |
+
"content": "<|reserved_special_token_150|>",
|
| 1270 |
+
"lstrip": false,
|
| 1271 |
+
"normalized": false,
|
| 1272 |
+
"rstrip": false,
|
| 1273 |
+
"single_word": false,
|
| 1274 |
+
"special": true
|
| 1275 |
+
},
|
| 1276 |
+
"128159": {
|
| 1277 |
+
"content": "<|reserved_special_token_151|>",
|
| 1278 |
+
"lstrip": false,
|
| 1279 |
+
"normalized": false,
|
| 1280 |
+
"rstrip": false,
|
| 1281 |
+
"single_word": false,
|
| 1282 |
+
"special": true
|
| 1283 |
+
},
|
| 1284 |
+
"128160": {
|
| 1285 |
+
"content": "<|reserved_special_token_152|>",
|
| 1286 |
+
"lstrip": false,
|
| 1287 |
+
"normalized": false,
|
| 1288 |
+
"rstrip": false,
|
| 1289 |
+
"single_word": false,
|
| 1290 |
+
"special": true
|
| 1291 |
+
},
|
| 1292 |
+
"128161": {
|
| 1293 |
+
"content": "<|reserved_special_token_153|>",
|
| 1294 |
+
"lstrip": false,
|
| 1295 |
+
"normalized": false,
|
| 1296 |
+
"rstrip": false,
|
| 1297 |
+
"single_word": false,
|
| 1298 |
+
"special": true
|
| 1299 |
+
},
|
| 1300 |
+
"128162": {
|
| 1301 |
+
"content": "<|reserved_special_token_154|>",
|
| 1302 |
+
"lstrip": false,
|
| 1303 |
+
"normalized": false,
|
| 1304 |
+
"rstrip": false,
|
| 1305 |
+
"single_word": false,
|
| 1306 |
+
"special": true
|
| 1307 |
+
},
|
| 1308 |
+
"128163": {
|
| 1309 |
+
"content": "<|reserved_special_token_155|>",
|
| 1310 |
+
"lstrip": false,
|
| 1311 |
+
"normalized": false,
|
| 1312 |
+
"rstrip": false,
|
| 1313 |
+
"single_word": false,
|
| 1314 |
+
"special": true
|
| 1315 |
+
},
|
| 1316 |
+
"128164": {
|
| 1317 |
+
"content": "<|reserved_special_token_156|>",
|
| 1318 |
+
"lstrip": false,
|
| 1319 |
+
"normalized": false,
|
| 1320 |
+
"rstrip": false,
|
| 1321 |
+
"single_word": false,
|
| 1322 |
+
"special": true
|
| 1323 |
+
},
|
| 1324 |
+
"128165": {
|
| 1325 |
+
"content": "<|reserved_special_token_157|>",
|
| 1326 |
+
"lstrip": false,
|
| 1327 |
+
"normalized": false,
|
| 1328 |
+
"rstrip": false,
|
| 1329 |
+
"single_word": false,
|
| 1330 |
+
"special": true
|
| 1331 |
+
},
|
| 1332 |
+
"128166": {
|
| 1333 |
+
"content": "<|reserved_special_token_158|>",
|
| 1334 |
+
"lstrip": false,
|
| 1335 |
+
"normalized": false,
|
| 1336 |
+
"rstrip": false,
|
| 1337 |
+
"single_word": false,
|
| 1338 |
+
"special": true
|
| 1339 |
+
},
|
| 1340 |
+
"128167": {
|
| 1341 |
+
"content": "<|reserved_special_token_159|>",
|
| 1342 |
+
"lstrip": false,
|
| 1343 |
+
"normalized": false,
|
| 1344 |
+
"rstrip": false,
|
| 1345 |
+
"single_word": false,
|
| 1346 |
+
"special": true
|
| 1347 |
+
},
|
| 1348 |
+
"128168": {
|
| 1349 |
+
"content": "<|reserved_special_token_160|>",
|
| 1350 |
+
"lstrip": false,
|
| 1351 |
+
"normalized": false,
|
| 1352 |
+
"rstrip": false,
|
| 1353 |
+
"single_word": false,
|
| 1354 |
+
"special": true
|
| 1355 |
+
},
|
| 1356 |
+
"128169": {
|
| 1357 |
+
"content": "<|reserved_special_token_161|>",
|
| 1358 |
+
"lstrip": false,
|
| 1359 |
+
"normalized": false,
|
| 1360 |
+
"rstrip": false,
|
| 1361 |
+
"single_word": false,
|
| 1362 |
+
"special": true
|
| 1363 |
+
},
|
| 1364 |
+
"128170": {
|
| 1365 |
+
"content": "<|reserved_special_token_162|>",
|
| 1366 |
+
"lstrip": false,
|
| 1367 |
+
"normalized": false,
|
| 1368 |
+
"rstrip": false,
|
| 1369 |
+
"single_word": false,
|
| 1370 |
+
"special": true
|
| 1371 |
+
},
|
| 1372 |
+
"128171": {
|
| 1373 |
+
"content": "<|reserved_special_token_163|>",
|
| 1374 |
+
"lstrip": false,
|
| 1375 |
+
"normalized": false,
|
| 1376 |
+
"rstrip": false,
|
| 1377 |
+
"single_word": false,
|
| 1378 |
+
"special": true
|
| 1379 |
+
},
|
| 1380 |
+
"128172": {
|
| 1381 |
+
"content": "<|reserved_special_token_164|>",
|
| 1382 |
+
"lstrip": false,
|
| 1383 |
+
"normalized": false,
|
| 1384 |
+
"rstrip": false,
|
| 1385 |
+
"single_word": false,
|
| 1386 |
+
"special": true
|
| 1387 |
+
},
|
| 1388 |
+
"128173": {
|
| 1389 |
+
"content": "<|reserved_special_token_165|>",
|
| 1390 |
+
"lstrip": false,
|
| 1391 |
+
"normalized": false,
|
| 1392 |
+
"rstrip": false,
|
| 1393 |
+
"single_word": false,
|
| 1394 |
+
"special": true
|
| 1395 |
+
},
|
| 1396 |
+
"128174": {
|
| 1397 |
+
"content": "<|reserved_special_token_166|>",
|
| 1398 |
+
"lstrip": false,
|
| 1399 |
+
"normalized": false,
|
| 1400 |
+
"rstrip": false,
|
| 1401 |
+
"single_word": false,
|
| 1402 |
+
"special": true
|
| 1403 |
+
},
|
| 1404 |
+
"128175": {
|
| 1405 |
+
"content": "<|reserved_special_token_167|>",
|
| 1406 |
+
"lstrip": false,
|
| 1407 |
+
"normalized": false,
|
| 1408 |
+
"rstrip": false,
|
| 1409 |
+
"single_word": false,
|
| 1410 |
+
"special": true
|
| 1411 |
+
},
|
| 1412 |
+
"128176": {
|
| 1413 |
+
"content": "<|reserved_special_token_168|>",
|
| 1414 |
+
"lstrip": false,
|
| 1415 |
+
"normalized": false,
|
| 1416 |
+
"rstrip": false,
|
| 1417 |
+
"single_word": false,
|
| 1418 |
+
"special": true
|
| 1419 |
+
},
|
| 1420 |
+
"128177": {
|
| 1421 |
+
"content": "<|reserved_special_token_169|>",
|
| 1422 |
+
"lstrip": false,
|
| 1423 |
+
"normalized": false,
|
| 1424 |
+
"rstrip": false,
|
| 1425 |
+
"single_word": false,
|
| 1426 |
+
"special": true
|
| 1427 |
+
},
|
| 1428 |
+
"128178": {
|
| 1429 |
+
"content": "<|reserved_special_token_170|>",
|
| 1430 |
+
"lstrip": false,
|
| 1431 |
+
"normalized": false,
|
| 1432 |
+
"rstrip": false,
|
| 1433 |
+
"single_word": false,
|
| 1434 |
+
"special": true
|
| 1435 |
+
},
|
| 1436 |
+
"128179": {
|
| 1437 |
+
"content": "<|reserved_special_token_171|>",
|
| 1438 |
+
"lstrip": false,
|
| 1439 |
+
"normalized": false,
|
| 1440 |
+
"rstrip": false,
|
| 1441 |
+
"single_word": false,
|
| 1442 |
+
"special": true
|
| 1443 |
+
},
|
| 1444 |
+
"128180": {
|
| 1445 |
+
"content": "<|reserved_special_token_172|>",
|
| 1446 |
+
"lstrip": false,
|
| 1447 |
+
"normalized": false,
|
| 1448 |
+
"rstrip": false,
|
| 1449 |
+
"single_word": false,
|
| 1450 |
+
"special": true
|
| 1451 |
+
},
|
| 1452 |
+
"128181": {
|
| 1453 |
+
"content": "<|reserved_special_token_173|>",
|
| 1454 |
+
"lstrip": false,
|
| 1455 |
+
"normalized": false,
|
| 1456 |
+
"rstrip": false,
|
| 1457 |
+
"single_word": false,
|
| 1458 |
+
"special": true
|
| 1459 |
+
},
|
| 1460 |
+
"128182": {
|
| 1461 |
+
"content": "<|reserved_special_token_174|>",
|
| 1462 |
+
"lstrip": false,
|
| 1463 |
+
"normalized": false,
|
| 1464 |
+
"rstrip": false,
|
| 1465 |
+
"single_word": false,
|
| 1466 |
+
"special": true
|
| 1467 |
+
},
|
| 1468 |
+
"128183": {
|
| 1469 |
+
"content": "<|reserved_special_token_175|>",
|
| 1470 |
+
"lstrip": false,
|
| 1471 |
+
"normalized": false,
|
| 1472 |
+
"rstrip": false,
|
| 1473 |
+
"single_word": false,
|
| 1474 |
+
"special": true
|
| 1475 |
+
},
|
| 1476 |
+
"128184": {
|
| 1477 |
+
"content": "<|reserved_special_token_176|>",
|
| 1478 |
+
"lstrip": false,
|
| 1479 |
+
"normalized": false,
|
| 1480 |
+
"rstrip": false,
|
| 1481 |
+
"single_word": false,
|
| 1482 |
+
"special": true
|
| 1483 |
+
},
|
| 1484 |
+
"128185": {
|
| 1485 |
+
"content": "<|reserved_special_token_177|>",
|
| 1486 |
+
"lstrip": false,
|
| 1487 |
+
"normalized": false,
|
| 1488 |
+
"rstrip": false,
|
| 1489 |
+
"single_word": false,
|
| 1490 |
+
"special": true
|
| 1491 |
+
},
|
| 1492 |
+
"128186": {
|
| 1493 |
+
"content": "<|reserved_special_token_178|>",
|
| 1494 |
+
"lstrip": false,
|
| 1495 |
+
"normalized": false,
|
| 1496 |
+
"rstrip": false,
|
| 1497 |
+
"single_word": false,
|
| 1498 |
+
"special": true
|
| 1499 |
+
},
|
| 1500 |
+
"128187": {
|
| 1501 |
+
"content": "<|reserved_special_token_179|>",
|
| 1502 |
+
"lstrip": false,
|
| 1503 |
+
"normalized": false,
|
| 1504 |
+
"rstrip": false,
|
| 1505 |
+
"single_word": false,
|
| 1506 |
+
"special": true
|
| 1507 |
+
},
|
| 1508 |
+
"128188": {
|
| 1509 |
+
"content": "<|reserved_special_token_180|>",
|
| 1510 |
+
"lstrip": false,
|
| 1511 |
+
"normalized": false,
|
| 1512 |
+
"rstrip": false,
|
| 1513 |
+
"single_word": false,
|
| 1514 |
+
"special": true
|
| 1515 |
+
},
|
| 1516 |
+
"128189": {
|
| 1517 |
+
"content": "<|reserved_special_token_181|>",
|
| 1518 |
+
"lstrip": false,
|
| 1519 |
+
"normalized": false,
|
| 1520 |
+
"rstrip": false,
|
| 1521 |
+
"single_word": false,
|
| 1522 |
+
"special": true
|
| 1523 |
+
},
|
| 1524 |
+
"128190": {
|
| 1525 |
+
"content": "<|reserved_special_token_182|>",
|
| 1526 |
+
"lstrip": false,
|
| 1527 |
+
"normalized": false,
|
| 1528 |
+
"rstrip": false,
|
| 1529 |
+
"single_word": false,
|
| 1530 |
+
"special": true
|
| 1531 |
+
},
|
| 1532 |
+
"128191": {
|
| 1533 |
+
"content": "<|reserved_special_token_183|>",
|
| 1534 |
+
"lstrip": false,
|
| 1535 |
+
"normalized": false,
|
| 1536 |
+
"rstrip": false,
|
| 1537 |
+
"single_word": false,
|
| 1538 |
+
"special": true
|
| 1539 |
+
},
|
| 1540 |
+
"128192": {
|
| 1541 |
+
"content": "<|reserved_special_token_184|>",
|
| 1542 |
+
"lstrip": false,
|
| 1543 |
+
"normalized": false,
|
| 1544 |
+
"rstrip": false,
|
| 1545 |
+
"single_word": false,
|
| 1546 |
+
"special": true
|
| 1547 |
+
},
|
| 1548 |
+
"128193": {
|
| 1549 |
+
"content": "<|reserved_special_token_185|>",
|
| 1550 |
+
"lstrip": false,
|
| 1551 |
+
"normalized": false,
|
| 1552 |
+
"rstrip": false,
|
| 1553 |
+
"single_word": false,
|
| 1554 |
+
"special": true
|
| 1555 |
+
},
|
| 1556 |
+
"128194": {
|
| 1557 |
+
"content": "<|reserved_special_token_186|>",
|
| 1558 |
+
"lstrip": false,
|
| 1559 |
+
"normalized": false,
|
| 1560 |
+
"rstrip": false,
|
| 1561 |
+
"single_word": false,
|
| 1562 |
+
"special": true
|
| 1563 |
+
},
|
| 1564 |
+
"128195": {
|
| 1565 |
+
"content": "<|reserved_special_token_187|>",
|
| 1566 |
+
"lstrip": false,
|
| 1567 |
+
"normalized": false,
|
| 1568 |
+
"rstrip": false,
|
| 1569 |
+
"single_word": false,
|
| 1570 |
+
"special": true
|
| 1571 |
+
},
|
| 1572 |
+
"128196": {
|
| 1573 |
+
"content": "<|reserved_special_token_188|>",
|
| 1574 |
+
"lstrip": false,
|
| 1575 |
+
"normalized": false,
|
| 1576 |
+
"rstrip": false,
|
| 1577 |
+
"single_word": false,
|
| 1578 |
+
"special": true
|
| 1579 |
+
},
|
| 1580 |
+
"128197": {
|
| 1581 |
+
"content": "<|reserved_special_token_189|>",
|
| 1582 |
+
"lstrip": false,
|
| 1583 |
+
"normalized": false,
|
| 1584 |
+
"rstrip": false,
|
| 1585 |
+
"single_word": false,
|
| 1586 |
+
"special": true
|
| 1587 |
+
},
|
| 1588 |
+
"128198": {
|
| 1589 |
+
"content": "<|reserved_special_token_190|>",
|
| 1590 |
+
"lstrip": false,
|
| 1591 |
+
"normalized": false,
|
| 1592 |
+
"rstrip": false,
|
| 1593 |
+
"single_word": false,
|
| 1594 |
+
"special": true
|
| 1595 |
+
},
|
| 1596 |
+
"128199": {
|
| 1597 |
+
"content": "<|reserved_special_token_191|>",
|
| 1598 |
+
"lstrip": false,
|
| 1599 |
+
"normalized": false,
|
| 1600 |
+
"rstrip": false,
|
| 1601 |
+
"single_word": false,
|
| 1602 |
+
"special": true
|
| 1603 |
+
},
|
| 1604 |
+
"128200": {
|
| 1605 |
+
"content": "<|reserved_special_token_192|>",
|
| 1606 |
+
"lstrip": false,
|
| 1607 |
+
"normalized": false,
|
| 1608 |
+
"rstrip": false,
|
| 1609 |
+
"single_word": false,
|
| 1610 |
+
"special": true
|
| 1611 |
+
},
|
| 1612 |
+
"128201": {
|
| 1613 |
+
"content": "<|reserved_special_token_193|>",
|
| 1614 |
+
"lstrip": false,
|
| 1615 |
+
"normalized": false,
|
| 1616 |
+
"rstrip": false,
|
| 1617 |
+
"single_word": false,
|
| 1618 |
+
"special": true
|
| 1619 |
+
},
|
| 1620 |
+
"128202": {
|
| 1621 |
+
"content": "<|reserved_special_token_194|>",
|
| 1622 |
+
"lstrip": false,
|
| 1623 |
+
"normalized": false,
|
| 1624 |
+
"rstrip": false,
|
| 1625 |
+
"single_word": false,
|
| 1626 |
+
"special": true
|
| 1627 |
+
},
|
| 1628 |
+
"128203": {
|
| 1629 |
+
"content": "<|reserved_special_token_195|>",
|
| 1630 |
+
"lstrip": false,
|
| 1631 |
+
"normalized": false,
|
| 1632 |
+
"rstrip": false,
|
| 1633 |
+
"single_word": false,
|
| 1634 |
+
"special": true
|
| 1635 |
+
},
|
| 1636 |
+
"128204": {
|
| 1637 |
+
"content": "<|reserved_special_token_196|>",
|
| 1638 |
+
"lstrip": false,
|
| 1639 |
+
"normalized": false,
|
| 1640 |
+
"rstrip": false,
|
| 1641 |
+
"single_word": false,
|
| 1642 |
+
"special": true
|
| 1643 |
+
},
|
| 1644 |
+
"128205": {
|
| 1645 |
+
"content": "<|reserved_special_token_197|>",
|
| 1646 |
+
"lstrip": false,
|
| 1647 |
+
"normalized": false,
|
| 1648 |
+
"rstrip": false,
|
| 1649 |
+
"single_word": false,
|
| 1650 |
+
"special": true
|
| 1651 |
+
},
|
| 1652 |
+
"128206": {
|
| 1653 |
+
"content": "<|reserved_special_token_198|>",
|
| 1654 |
+
"lstrip": false,
|
| 1655 |
+
"normalized": false,
|
| 1656 |
+
"rstrip": false,
|
| 1657 |
+
"single_word": false,
|
| 1658 |
+
"special": true
|
| 1659 |
+
},
|
| 1660 |
+
"128207": {
|
| 1661 |
+
"content": "<|reserved_special_token_199|>",
|
| 1662 |
+
"lstrip": false,
|
| 1663 |
+
"normalized": false,
|
| 1664 |
+
"rstrip": false,
|
| 1665 |
+
"single_word": false,
|
| 1666 |
+
"special": true
|
| 1667 |
+
},
|
| 1668 |
+
"128208": {
|
| 1669 |
+
"content": "<|reserved_special_token_200|>",
|
| 1670 |
+
"lstrip": false,
|
| 1671 |
+
"normalized": false,
|
| 1672 |
+
"rstrip": false,
|
| 1673 |
+
"single_word": false,
|
| 1674 |
+
"special": true
|
| 1675 |
+
},
|
| 1676 |
+
"128209": {
|
| 1677 |
+
"content": "<|reserved_special_token_201|>",
|
| 1678 |
+
"lstrip": false,
|
| 1679 |
+
"normalized": false,
|
| 1680 |
+
"rstrip": false,
|
| 1681 |
+
"single_word": false,
|
| 1682 |
+
"special": true
|
| 1683 |
+
},
|
| 1684 |
+
"128210": {
|
| 1685 |
+
"content": "<|reserved_special_token_202|>",
|
| 1686 |
+
"lstrip": false,
|
| 1687 |
+
"normalized": false,
|
| 1688 |
+
"rstrip": false,
|
| 1689 |
+
"single_word": false,
|
| 1690 |
+
"special": true
|
| 1691 |
+
},
|
| 1692 |
+
"128211": {
|
| 1693 |
+
"content": "<|reserved_special_token_203|>",
|
| 1694 |
+
"lstrip": false,
|
| 1695 |
+
"normalized": false,
|
| 1696 |
+
"rstrip": false,
|
| 1697 |
+
"single_word": false,
|
| 1698 |
+
"special": true
|
| 1699 |
+
},
|
| 1700 |
+
"128212": {
|
| 1701 |
+
"content": "<|reserved_special_token_204|>",
|
| 1702 |
+
"lstrip": false,
|
| 1703 |
+
"normalized": false,
|
| 1704 |
+
"rstrip": false,
|
| 1705 |
+
"single_word": false,
|
| 1706 |
+
"special": true
|
| 1707 |
+
},
|
| 1708 |
+
"128213": {
|
| 1709 |
+
"content": "<|reserved_special_token_205|>",
|
| 1710 |
+
"lstrip": false,
|
| 1711 |
+
"normalized": false,
|
| 1712 |
+
"rstrip": false,
|
| 1713 |
+
"single_word": false,
|
| 1714 |
+
"special": true
|
| 1715 |
+
},
|
| 1716 |
+
"128214": {
|
| 1717 |
+
"content": "<|reserved_special_token_206|>",
|
| 1718 |
+
"lstrip": false,
|
| 1719 |
+
"normalized": false,
|
| 1720 |
+
"rstrip": false,
|
| 1721 |
+
"single_word": false,
|
| 1722 |
+
"special": true
|
| 1723 |
+
},
|
| 1724 |
+
"128215": {
|
| 1725 |
+
"content": "<|reserved_special_token_207|>",
|
| 1726 |
+
"lstrip": false,
|
| 1727 |
+
"normalized": false,
|
| 1728 |
+
"rstrip": false,
|
| 1729 |
+
"single_word": false,
|
| 1730 |
+
"special": true
|
| 1731 |
+
},
|
| 1732 |
+
"128216": {
|
| 1733 |
+
"content": "<|reserved_special_token_208|>",
|
| 1734 |
+
"lstrip": false,
|
| 1735 |
+
"normalized": false,
|
| 1736 |
+
"rstrip": false,
|
| 1737 |
+
"single_word": false,
|
| 1738 |
+
"special": true
|
| 1739 |
+
},
|
| 1740 |
+
"128217": {
|
| 1741 |
+
"content": "<|reserved_special_token_209|>",
|
| 1742 |
+
"lstrip": false,
|
| 1743 |
+
"normalized": false,
|
| 1744 |
+
"rstrip": false,
|
| 1745 |
+
"single_word": false,
|
| 1746 |
+
"special": true
|
| 1747 |
+
},
|
| 1748 |
+
"128218": {
|
| 1749 |
+
"content": "<|reserved_special_token_210|>",
|
| 1750 |
+
"lstrip": false,
|
| 1751 |
+
"normalized": false,
|
| 1752 |
+
"rstrip": false,
|
| 1753 |
+
"single_word": false,
|
| 1754 |
+
"special": true
|
| 1755 |
+
},
|
| 1756 |
+
"128219": {
|
| 1757 |
+
"content": "<|reserved_special_token_211|>",
|
| 1758 |
+
"lstrip": false,
|
| 1759 |
+
"normalized": false,
|
| 1760 |
+
"rstrip": false,
|
| 1761 |
+
"single_word": false,
|
| 1762 |
+
"special": true
|
| 1763 |
+
},
|
| 1764 |
+
"128220": {
|
| 1765 |
+
"content": "<|reserved_special_token_212|>",
|
| 1766 |
+
"lstrip": false,
|
| 1767 |
+
"normalized": false,
|
| 1768 |
+
"rstrip": false,
|
| 1769 |
+
"single_word": false,
|
| 1770 |
+
"special": true
|
| 1771 |
+
},
|
| 1772 |
+
"128221": {
|
| 1773 |
+
"content": "<|reserved_special_token_213|>",
|
| 1774 |
+
"lstrip": false,
|
| 1775 |
+
"normalized": false,
|
| 1776 |
+
"rstrip": false,
|
| 1777 |
+
"single_word": false,
|
| 1778 |
+
"special": true
|
| 1779 |
+
},
|
| 1780 |
+
"128222": {
|
| 1781 |
+
"content": "<|reserved_special_token_214|>",
|
| 1782 |
+
"lstrip": false,
|
| 1783 |
+
"normalized": false,
|
| 1784 |
+
"rstrip": false,
|
| 1785 |
+
"single_word": false,
|
| 1786 |
+
"special": true
|
| 1787 |
+
},
|
| 1788 |
+
"128223": {
|
| 1789 |
+
"content": "<|reserved_special_token_215|>",
|
| 1790 |
+
"lstrip": false,
|
| 1791 |
+
"normalized": false,
|
| 1792 |
+
"rstrip": false,
|
| 1793 |
+
"single_word": false,
|
| 1794 |
+
"special": true
|
| 1795 |
+
},
|
| 1796 |
+
"128224": {
|
| 1797 |
+
"content": "<|reserved_special_token_216|>",
|
| 1798 |
+
"lstrip": false,
|
| 1799 |
+
"normalized": false,
|
| 1800 |
+
"rstrip": false,
|
| 1801 |
+
"single_word": false,
|
| 1802 |
+
"special": true
|
| 1803 |
+
},
|
| 1804 |
+
"128225": {
|
| 1805 |
+
"content": "<|reserved_special_token_217|>",
|
| 1806 |
+
"lstrip": false,
|
| 1807 |
+
"normalized": false,
|
| 1808 |
+
"rstrip": false,
|
| 1809 |
+
"single_word": false,
|
| 1810 |
+
"special": true
|
| 1811 |
+
},
|
| 1812 |
+
"128226": {
|
| 1813 |
+
"content": "<|reserved_special_token_218|>",
|
| 1814 |
+
"lstrip": false,
|
| 1815 |
+
"normalized": false,
|
| 1816 |
+
"rstrip": false,
|
| 1817 |
+
"single_word": false,
|
| 1818 |
+
"special": true
|
| 1819 |
+
},
|
| 1820 |
+
"128227": {
|
| 1821 |
+
"content": "<|reserved_special_token_219|>",
|
| 1822 |
+
"lstrip": false,
|
| 1823 |
+
"normalized": false,
|
| 1824 |
+
"rstrip": false,
|
| 1825 |
+
"single_word": false,
|
| 1826 |
+
"special": true
|
| 1827 |
+
},
|
| 1828 |
+
"128228": {
|
| 1829 |
+
"content": "<|reserved_special_token_220|>",
|
| 1830 |
+
"lstrip": false,
|
| 1831 |
+
"normalized": false,
|
| 1832 |
+
"rstrip": false,
|
| 1833 |
+
"single_word": false,
|
| 1834 |
+
"special": true
|
| 1835 |
+
},
|
| 1836 |
+
"128229": {
|
| 1837 |
+
"content": "<|reserved_special_token_221|>",
|
| 1838 |
+
"lstrip": false,
|
| 1839 |
+
"normalized": false,
|
| 1840 |
+
"rstrip": false,
|
| 1841 |
+
"single_word": false,
|
| 1842 |
+
"special": true
|
| 1843 |
+
},
|
| 1844 |
+
"128230": {
|
| 1845 |
+
"content": "<|reserved_special_token_222|>",
|
| 1846 |
+
"lstrip": false,
|
| 1847 |
+
"normalized": false,
|
| 1848 |
+
"rstrip": false,
|
| 1849 |
+
"single_word": false,
|
| 1850 |
+
"special": true
|
| 1851 |
+
},
|
| 1852 |
+
"128231": {
|
| 1853 |
+
"content": "<|reserved_special_token_223|>",
|
| 1854 |
+
"lstrip": false,
|
| 1855 |
+
"normalized": false,
|
| 1856 |
+
"rstrip": false,
|
| 1857 |
+
"single_word": false,
|
| 1858 |
+
"special": true
|
| 1859 |
+
},
|
| 1860 |
+
"128232": {
|
| 1861 |
+
"content": "<|reserved_special_token_224|>",
|
| 1862 |
+
"lstrip": false,
|
| 1863 |
+
"normalized": false,
|
| 1864 |
+
"rstrip": false,
|
| 1865 |
+
"single_word": false,
|
| 1866 |
+
"special": true
|
| 1867 |
+
},
|
| 1868 |
+
"128233": {
|
| 1869 |
+
"content": "<|reserved_special_token_225|>",
|
| 1870 |
+
"lstrip": false,
|
| 1871 |
+
"normalized": false,
|
| 1872 |
+
"rstrip": false,
|
| 1873 |
+
"single_word": false,
|
| 1874 |
+
"special": true
|
| 1875 |
+
},
|
| 1876 |
+
"128234": {
|
| 1877 |
+
"content": "<|reserved_special_token_226|>",
|
| 1878 |
+
"lstrip": false,
|
| 1879 |
+
"normalized": false,
|
| 1880 |
+
"rstrip": false,
|
| 1881 |
+
"single_word": false,
|
| 1882 |
+
"special": true
|
| 1883 |
+
},
|
| 1884 |
+
"128235": {
|
| 1885 |
+
"content": "<|reserved_special_token_227|>",
|
| 1886 |
+
"lstrip": false,
|
| 1887 |
+
"normalized": false,
|
| 1888 |
+
"rstrip": false,
|
| 1889 |
+
"single_word": false,
|
| 1890 |
+
"special": true
|
| 1891 |
+
},
|
| 1892 |
+
"128236": {
|
| 1893 |
+
"content": "<|reserved_special_token_228|>",
|
| 1894 |
+
"lstrip": false,
|
| 1895 |
+
"normalized": false,
|
| 1896 |
+
"rstrip": false,
|
| 1897 |
+
"single_word": false,
|
| 1898 |
+
"special": true
|
| 1899 |
+
},
|
| 1900 |
+
"128237": {
|
| 1901 |
+
"content": "<|reserved_special_token_229|>",
|
| 1902 |
+
"lstrip": false,
|
| 1903 |
+
"normalized": false,
|
| 1904 |
+
"rstrip": false,
|
| 1905 |
+
"single_word": false,
|
| 1906 |
+
"special": true
|
| 1907 |
+
},
|
| 1908 |
+
"128238": {
|
| 1909 |
+
"content": "<|reserved_special_token_230|>",
|
| 1910 |
+
"lstrip": false,
|
| 1911 |
+
"normalized": false,
|
| 1912 |
+
"rstrip": false,
|
| 1913 |
+
"single_word": false,
|
| 1914 |
+
"special": true
|
| 1915 |
+
},
|
| 1916 |
+
"128239": {
|
| 1917 |
+
"content": "<|reserved_special_token_231|>",
|
| 1918 |
+
"lstrip": false,
|
| 1919 |
+
"normalized": false,
|
| 1920 |
+
"rstrip": false,
|
| 1921 |
+
"single_word": false,
|
| 1922 |
+
"special": true
|
| 1923 |
+
},
|
| 1924 |
+
"128240": {
|
| 1925 |
+
"content": "<|reserved_special_token_232|>",
|
| 1926 |
+
"lstrip": false,
|
| 1927 |
+
"normalized": false,
|
| 1928 |
+
"rstrip": false,
|
| 1929 |
+
"single_word": false,
|
| 1930 |
+
"special": true
|
| 1931 |
+
},
|
| 1932 |
+
"128241": {
|
| 1933 |
+
"content": "<|reserved_special_token_233|>",
|
| 1934 |
+
"lstrip": false,
|
| 1935 |
+
"normalized": false,
|
| 1936 |
+
"rstrip": false,
|
| 1937 |
+
"single_word": false,
|
| 1938 |
+
"special": true
|
| 1939 |
+
},
|
| 1940 |
+
"128242": {
|
| 1941 |
+
"content": "<|reserved_special_token_234|>",
|
| 1942 |
+
"lstrip": false,
|
| 1943 |
+
"normalized": false,
|
| 1944 |
+
"rstrip": false,
|
| 1945 |
+
"single_word": false,
|
| 1946 |
+
"special": true
|
| 1947 |
+
},
|
| 1948 |
+
"128243": {
|
| 1949 |
+
"content": "<|reserved_special_token_235|>",
|
| 1950 |
+
"lstrip": false,
|
| 1951 |
+
"normalized": false,
|
| 1952 |
+
"rstrip": false,
|
| 1953 |
+
"single_word": false,
|
| 1954 |
+
"special": true
|
| 1955 |
+
},
|
| 1956 |
+
"128244": {
|
| 1957 |
+
"content": "<|reserved_special_token_236|>",
|
| 1958 |
+
"lstrip": false,
|
| 1959 |
+
"normalized": false,
|
| 1960 |
+
"rstrip": false,
|
| 1961 |
+
"single_word": false,
|
| 1962 |
+
"special": true
|
| 1963 |
+
},
|
| 1964 |
+
"128245": {
|
| 1965 |
+
"content": "<|reserved_special_token_237|>",
|
| 1966 |
+
"lstrip": false,
|
| 1967 |
+
"normalized": false,
|
| 1968 |
+
"rstrip": false,
|
| 1969 |
+
"single_word": false,
|
| 1970 |
+
"special": true
|
| 1971 |
+
},
|
| 1972 |
+
"128246": {
|
| 1973 |
+
"content": "<|reserved_special_token_238|>",
|
| 1974 |
+
"lstrip": false,
|
| 1975 |
+
"normalized": false,
|
| 1976 |
+
"rstrip": false,
|
| 1977 |
+
"single_word": false,
|
| 1978 |
+
"special": true
|
| 1979 |
+
},
|
| 1980 |
+
"128247": {
|
| 1981 |
+
"content": "<|reserved_special_token_239|>",
|
| 1982 |
+
"lstrip": false,
|
| 1983 |
+
"normalized": false,
|
| 1984 |
+
"rstrip": false,
|
| 1985 |
+
"single_word": false,
|
| 1986 |
+
"special": true
|
| 1987 |
+
},
|
| 1988 |
+
"128248": {
|
| 1989 |
+
"content": "<|reserved_special_token_240|>",
|
| 1990 |
+
"lstrip": false,
|
| 1991 |
+
"normalized": false,
|
| 1992 |
+
"rstrip": false,
|
| 1993 |
+
"single_word": false,
|
| 1994 |
+
"special": true
|
| 1995 |
+
},
|
| 1996 |
+
"128249": {
|
| 1997 |
+
"content": "<|reserved_special_token_241|>",
|
| 1998 |
+
"lstrip": false,
|
| 1999 |
+
"normalized": false,
|
| 2000 |
+
"rstrip": false,
|
| 2001 |
+
"single_word": false,
|
| 2002 |
+
"special": true
|
| 2003 |
+
},
|
| 2004 |
+
"128250": {
|
| 2005 |
+
"content": "<|reserved_special_token_242|>",
|
| 2006 |
+
"lstrip": false,
|
| 2007 |
+
"normalized": false,
|
| 2008 |
+
"rstrip": false,
|
| 2009 |
+
"single_word": false,
|
| 2010 |
+
"special": true
|
| 2011 |
+
},
|
| 2012 |
+
"128251": {
|
| 2013 |
+
"content": "<|reserved_special_token_243|>",
|
| 2014 |
+
"lstrip": false,
|
| 2015 |
+
"normalized": false,
|
| 2016 |
+
"rstrip": false,
|
| 2017 |
+
"single_word": false,
|
| 2018 |
+
"special": true
|
| 2019 |
+
},
|
| 2020 |
+
"128252": {
|
| 2021 |
+
"content": "<|reserved_special_token_244|>",
|
| 2022 |
+
"lstrip": false,
|
| 2023 |
+
"normalized": false,
|
| 2024 |
+
"rstrip": false,
|
| 2025 |
+
"single_word": false,
|
| 2026 |
+
"special": true
|
| 2027 |
+
},
|
| 2028 |
+
"128253": {
|
| 2029 |
+
"content": "<|reserved_special_token_245|>",
|
| 2030 |
+
"lstrip": false,
|
| 2031 |
+
"normalized": false,
|
| 2032 |
+
"rstrip": false,
|
| 2033 |
+
"single_word": false,
|
| 2034 |
+
"special": true
|
| 2035 |
+
},
|
| 2036 |
+
"128254": {
|
| 2037 |
+
"content": "<|reserved_special_token_246|>",
|
| 2038 |
+
"lstrip": false,
|
| 2039 |
+
"normalized": false,
|
| 2040 |
+
"rstrip": false,
|
| 2041 |
+
"single_word": false,
|
| 2042 |
+
"special": true
|
| 2043 |
+
},
|
| 2044 |
+
"128255": {
|
| 2045 |
+
"content": "<|reserved_special_token_247|>",
|
| 2046 |
+
"lstrip": false,
|
| 2047 |
+
"normalized": false,
|
| 2048 |
+
"rstrip": false,
|
| 2049 |
+
"single_word": false,
|
| 2050 |
+
"special": true
|
| 2051 |
+
}
|
| 2052 |
+
},
|
| 2053 |
+
"bos_token": "<|begin_of_text|>",
|
| 2054 |
+
"clean_up_tokenization_spaces": true,
|
| 2055 |
+
"eos_token": "<|eot_id|>",
|
| 2056 |
+
"extra_special_tokens": {},
|
| 2057 |
+
"model_input_names": [
|
| 2058 |
+
"input_ids",
|
| 2059 |
+
"attention_mask"
|
| 2060 |
+
],
|
| 2061 |
+
"model_max_length": 131072,
|
| 2062 |
+
"pad_token": "<|finetune_right_pad_id|>",
|
| 2063 |
+
"padding_side": "right",
|
| 2064 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
| 2065 |
+
"unk_token": null
|
| 2066 |
+
}
|
experiments/en-hr/checkpoint-790/trainer_state.json
ADDED
|
@@ -0,0 +1,1140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 5.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 790,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.03164556962025317,
|
| 14 |
+
"grad_norm": 8.633589744567871,
|
| 15 |
+
"learning_rate": 0.0002,
|
| 16 |
+
"loss": 2.8037,
|
| 17 |
+
"step": 5
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.06329113924050633,
|
| 21 |
+
"grad_norm": 2.2176594734191895,
|
| 22 |
+
"learning_rate": 0.00019872773536895675,
|
| 23 |
+
"loss": 0.9131,
|
| 24 |
+
"step": 10
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.0949367088607595,
|
| 28 |
+
"grad_norm": 1.8736966848373413,
|
| 29 |
+
"learning_rate": 0.00019745547073791352,
|
| 30 |
+
"loss": 0.6928,
|
| 31 |
+
"step": 15
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.12658227848101267,
|
| 35 |
+
"grad_norm": 1.140359878540039,
|
| 36 |
+
"learning_rate": 0.00019618320610687023,
|
| 37 |
+
"loss": 0.551,
|
| 38 |
+
"step": 20
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.15822784810126583,
|
| 42 |
+
"grad_norm": 0.9033111333847046,
|
| 43 |
+
"learning_rate": 0.00019491094147582698,
|
| 44 |
+
"loss": 0.4932,
|
| 45 |
+
"step": 25
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.189873417721519,
|
| 49 |
+
"grad_norm": 1.0288461446762085,
|
| 50 |
+
"learning_rate": 0.00019363867684478372,
|
| 51 |
+
"loss": 0.4595,
|
| 52 |
+
"step": 30
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.22151898734177214,
|
| 56 |
+
"grad_norm": 1.06450355052948,
|
| 57 |
+
"learning_rate": 0.00019236641221374049,
|
| 58 |
+
"loss": 0.5573,
|
| 59 |
+
"step": 35
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.25316455696202533,
|
| 63 |
+
"grad_norm": 0.9156201481819153,
|
| 64 |
+
"learning_rate": 0.00019109414758269723,
|
| 65 |
+
"loss": 0.5257,
|
| 66 |
+
"step": 40
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2848101265822785,
|
| 70 |
+
"grad_norm": 0.8665907382965088,
|
| 71 |
+
"learning_rate": 0.00018982188295165394,
|
| 72 |
+
"loss": 0.555,
|
| 73 |
+
"step": 45
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.31645569620253167,
|
| 77 |
+
"grad_norm": 0.7511389255523682,
|
| 78 |
+
"learning_rate": 0.00018854961832061068,
|
| 79 |
+
"loss": 0.5271,
|
| 80 |
+
"step": 50
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.34810126582278483,
|
| 84 |
+
"grad_norm": 0.7315279841423035,
|
| 85 |
+
"learning_rate": 0.00018727735368956745,
|
| 86 |
+
"loss": 0.5404,
|
| 87 |
+
"step": 55
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.379746835443038,
|
| 91 |
+
"grad_norm": 0.8015694618225098,
|
| 92 |
+
"learning_rate": 0.0001860050890585242,
|
| 93 |
+
"loss": 0.5004,
|
| 94 |
+
"step": 60
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.41139240506329117,
|
| 98 |
+
"grad_norm": 0.7726429104804993,
|
| 99 |
+
"learning_rate": 0.00018473282442748093,
|
| 100 |
+
"loss": 0.5182,
|
| 101 |
+
"step": 65
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.4430379746835443,
|
| 105 |
+
"grad_norm": 0.8248880505561829,
|
| 106 |
+
"learning_rate": 0.00018346055979643765,
|
| 107 |
+
"loss": 0.4591,
|
| 108 |
+
"step": 70
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.47468354430379744,
|
| 112 |
+
"grad_norm": 0.7304039001464844,
|
| 113 |
+
"learning_rate": 0.00018218829516539442,
|
| 114 |
+
"loss": 0.4691,
|
| 115 |
+
"step": 75
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.5063291139240507,
|
| 119 |
+
"grad_norm": 0.6727501153945923,
|
| 120 |
+
"learning_rate": 0.00018091603053435116,
|
| 121 |
+
"loss": 0.4806,
|
| 122 |
+
"step": 80
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.5379746835443038,
|
| 126 |
+
"grad_norm": 0.7586938738822937,
|
| 127 |
+
"learning_rate": 0.0001796437659033079,
|
| 128 |
+
"loss": 0.478,
|
| 129 |
+
"step": 85
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.569620253164557,
|
| 133 |
+
"grad_norm": 0.8255019187927246,
|
| 134 |
+
"learning_rate": 0.00017837150127226464,
|
| 135 |
+
"loss": 0.5501,
|
| 136 |
+
"step": 90
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.6012658227848101,
|
| 140 |
+
"grad_norm": 0.8590326309204102,
|
| 141 |
+
"learning_rate": 0.00017709923664122138,
|
| 142 |
+
"loss": 0.4585,
|
| 143 |
+
"step": 95
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.6329113924050633,
|
| 147 |
+
"grad_norm": 0.7202553153038025,
|
| 148 |
+
"learning_rate": 0.00017582697201017812,
|
| 149 |
+
"loss": 0.4975,
|
| 150 |
+
"step": 100
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.6645569620253164,
|
| 154 |
+
"grad_norm": 1.2743698358535767,
|
| 155 |
+
"learning_rate": 0.00017455470737913486,
|
| 156 |
+
"loss": 0.5709,
|
| 157 |
+
"step": 105
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.6962025316455697,
|
| 161 |
+
"grad_norm": 0.790630042552948,
|
| 162 |
+
"learning_rate": 0.00017328244274809163,
|
| 163 |
+
"loss": 0.4912,
|
| 164 |
+
"step": 110
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.7278481012658228,
|
| 168 |
+
"grad_norm": 0.9008660912513733,
|
| 169 |
+
"learning_rate": 0.00017201017811704835,
|
| 170 |
+
"loss": 0.5643,
|
| 171 |
+
"step": 115
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.759493670886076,
|
| 175 |
+
"grad_norm": 0.6998384594917297,
|
| 176 |
+
"learning_rate": 0.0001707379134860051,
|
| 177 |
+
"loss": 0.4931,
|
| 178 |
+
"step": 120
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.7911392405063291,
|
| 182 |
+
"grad_norm": 0.8974913358688354,
|
| 183 |
+
"learning_rate": 0.00016946564885496183,
|
| 184 |
+
"loss": 0.4461,
|
| 185 |
+
"step": 125
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.8227848101265823,
|
| 189 |
+
"grad_norm": 0.8803034424781799,
|
| 190 |
+
"learning_rate": 0.0001681933842239186,
|
| 191 |
+
"loss": 0.5381,
|
| 192 |
+
"step": 130
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.8544303797468354,
|
| 196 |
+
"grad_norm": 0.7390441298484802,
|
| 197 |
+
"learning_rate": 0.00016692111959287534,
|
| 198 |
+
"loss": 0.4997,
|
| 199 |
+
"step": 135
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.8860759493670886,
|
| 203 |
+
"grad_norm": 0.9009511470794678,
|
| 204 |
+
"learning_rate": 0.00016564885496183205,
|
| 205 |
+
"loss": 0.4744,
|
| 206 |
+
"step": 140
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.9177215189873418,
|
| 210 |
+
"grad_norm": 0.7336710691452026,
|
| 211 |
+
"learning_rate": 0.0001643765903307888,
|
| 212 |
+
"loss": 0.4805,
|
| 213 |
+
"step": 145
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.9493670886075949,
|
| 217 |
+
"grad_norm": 0.6651920080184937,
|
| 218 |
+
"learning_rate": 0.00016310432569974556,
|
| 219 |
+
"loss": 0.4534,
|
| 220 |
+
"step": 150
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.9810126582278481,
|
| 224 |
+
"grad_norm": 1.0618934631347656,
|
| 225 |
+
"learning_rate": 0.0001618320610687023,
|
| 226 |
+
"loss": 0.4919,
|
| 227 |
+
"step": 155
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 1.0126582278481013,
|
| 231 |
+
"grad_norm": 0.49792593717575073,
|
| 232 |
+
"learning_rate": 0.00016055979643765905,
|
| 233 |
+
"loss": 0.4014,
|
| 234 |
+
"step": 160
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 1.0443037974683544,
|
| 238 |
+
"grad_norm": 0.8175292015075684,
|
| 239 |
+
"learning_rate": 0.0001592875318066158,
|
| 240 |
+
"loss": 0.4179,
|
| 241 |
+
"step": 165
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 1.0759493670886076,
|
| 245 |
+
"grad_norm": 0.6501911282539368,
|
| 246 |
+
"learning_rate": 0.00015801526717557253,
|
| 247 |
+
"loss": 0.369,
|
| 248 |
+
"step": 170
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 1.1075949367088607,
|
| 252 |
+
"grad_norm": 0.7288970351219177,
|
| 253 |
+
"learning_rate": 0.00015674300254452927,
|
| 254 |
+
"loss": 0.3421,
|
| 255 |
+
"step": 175
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 1.139240506329114,
|
| 259 |
+
"grad_norm": 0.7625704407691956,
|
| 260 |
+
"learning_rate": 0.000155470737913486,
|
| 261 |
+
"loss": 0.4222,
|
| 262 |
+
"step": 180
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 1.1708860759493671,
|
| 266 |
+
"grad_norm": 0.6345648169517517,
|
| 267 |
+
"learning_rate": 0.00015419847328244275,
|
| 268 |
+
"loss": 0.3806,
|
| 269 |
+
"step": 185
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 1.2025316455696202,
|
| 273 |
+
"grad_norm": 0.6399903893470764,
|
| 274 |
+
"learning_rate": 0.0001529262086513995,
|
| 275 |
+
"loss": 0.374,
|
| 276 |
+
"step": 190
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 1.2341772151898733,
|
| 280 |
+
"grad_norm": 0.7712934613227844,
|
| 281 |
+
"learning_rate": 0.00015165394402035624,
|
| 282 |
+
"loss": 0.3721,
|
| 283 |
+
"step": 195
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 1.2658227848101267,
|
| 287 |
+
"grad_norm": 0.7349191904067993,
|
| 288 |
+
"learning_rate": 0.00015038167938931298,
|
| 289 |
+
"loss": 0.3782,
|
| 290 |
+
"step": 200
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 1.2974683544303798,
|
| 294 |
+
"grad_norm": 0.9972257614135742,
|
| 295 |
+
"learning_rate": 0.00014910941475826972,
|
| 296 |
+
"loss": 0.3959,
|
| 297 |
+
"step": 205
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 1.3291139240506329,
|
| 301 |
+
"grad_norm": 0.7999849319458008,
|
| 302 |
+
"learning_rate": 0.0001478371501272265,
|
| 303 |
+
"loss": 0.3912,
|
| 304 |
+
"step": 210
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 1.360759493670886,
|
| 308 |
+
"grad_norm": 0.7882068157196045,
|
| 309 |
+
"learning_rate": 0.0001465648854961832,
|
| 310 |
+
"loss": 0.359,
|
| 311 |
+
"step": 215
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 1.3924050632911391,
|
| 315 |
+
"grad_norm": 0.8832948207855225,
|
| 316 |
+
"learning_rate": 0.00014529262086513994,
|
| 317 |
+
"loss": 0.3807,
|
| 318 |
+
"step": 220
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 1.4240506329113924,
|
| 322 |
+
"grad_norm": 0.6134157180786133,
|
| 323 |
+
"learning_rate": 0.0001440203562340967,
|
| 324 |
+
"loss": 0.4103,
|
| 325 |
+
"step": 225
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 1.4556962025316456,
|
| 329 |
+
"grad_norm": 0.912650465965271,
|
| 330 |
+
"learning_rate": 0.00014274809160305345,
|
| 331 |
+
"loss": 0.3868,
|
| 332 |
+
"step": 230
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 1.4873417721518987,
|
| 336 |
+
"grad_norm": 1.2680710554122925,
|
| 337 |
+
"learning_rate": 0.0001414758269720102,
|
| 338 |
+
"loss": 0.3993,
|
| 339 |
+
"step": 235
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 1.518987341772152,
|
| 343 |
+
"grad_norm": 0.8676391243934631,
|
| 344 |
+
"learning_rate": 0.0001402035623409669,
|
| 345 |
+
"loss": 0.3707,
|
| 346 |
+
"step": 240
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 1.5506329113924051,
|
| 350 |
+
"grad_norm": 0.808569073677063,
|
| 351 |
+
"learning_rate": 0.00013893129770992368,
|
| 352 |
+
"loss": 0.3708,
|
| 353 |
+
"step": 245
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 1.5822784810126582,
|
| 357 |
+
"grad_norm": 0.7392472624778748,
|
| 358 |
+
"learning_rate": 0.00013765903307888042,
|
| 359 |
+
"loss": 0.4033,
|
| 360 |
+
"step": 250
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 1.6139240506329116,
|
| 364 |
+
"grad_norm": 0.9047561287879944,
|
| 365 |
+
"learning_rate": 0.00013638676844783716,
|
| 366 |
+
"loss": 0.3991,
|
| 367 |
+
"step": 255
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 1.6455696202531644,
|
| 371 |
+
"grad_norm": 0.7823458909988403,
|
| 372 |
+
"learning_rate": 0.0001351145038167939,
|
| 373 |
+
"loss": 0.3675,
|
| 374 |
+
"step": 260
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 1.6772151898734178,
|
| 378 |
+
"grad_norm": 0.8162348866462708,
|
| 379 |
+
"learning_rate": 0.00013384223918575064,
|
| 380 |
+
"loss": 0.3443,
|
| 381 |
+
"step": 265
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 1.7088607594936709,
|
| 385 |
+
"grad_norm": 0.9522086977958679,
|
| 386 |
+
"learning_rate": 0.00013256997455470738,
|
| 387 |
+
"loss": 0.4377,
|
| 388 |
+
"step": 270
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 1.740506329113924,
|
| 392 |
+
"grad_norm": 0.665181040763855,
|
| 393 |
+
"learning_rate": 0.00013129770992366413,
|
| 394 |
+
"loss": 0.3574,
|
| 395 |
+
"step": 275
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 1.7721518987341773,
|
| 399 |
+
"grad_norm": 0.9565332531929016,
|
| 400 |
+
"learning_rate": 0.00013002544529262087,
|
| 401 |
+
"loss": 0.4191,
|
| 402 |
+
"step": 280
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 1.8037974683544302,
|
| 406 |
+
"grad_norm": 1.1064597368240356,
|
| 407 |
+
"learning_rate": 0.0001287531806615776,
|
| 408 |
+
"loss": 0.41,
|
| 409 |
+
"step": 285
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 1.8354430379746836,
|
| 413 |
+
"grad_norm": 0.7252824902534485,
|
| 414 |
+
"learning_rate": 0.00012748091603053435,
|
| 415 |
+
"loss": 0.3772,
|
| 416 |
+
"step": 290
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 1.8670886075949367,
|
| 420 |
+
"grad_norm": 0.877967119216919,
|
| 421 |
+
"learning_rate": 0.0001262086513994911,
|
| 422 |
+
"loss": 0.36,
|
| 423 |
+
"step": 295
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 1.8987341772151898,
|
| 427 |
+
"grad_norm": 0.7453832030296326,
|
| 428 |
+
"learning_rate": 0.00012493638676844783,
|
| 429 |
+
"loss": 0.4038,
|
| 430 |
+
"step": 300
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.9303797468354431,
|
| 434 |
+
"grad_norm": 0.7737745046615601,
|
| 435 |
+
"learning_rate": 0.0001236641221374046,
|
| 436 |
+
"loss": 0.3759,
|
| 437 |
+
"step": 305
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 1.9620253164556962,
|
| 441 |
+
"grad_norm": 0.834141194820404,
|
| 442 |
+
"learning_rate": 0.00012239185750636134,
|
| 443 |
+
"loss": 0.3563,
|
| 444 |
+
"step": 310
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 1.9936708860759493,
|
| 448 |
+
"grad_norm": 0.7207242250442505,
|
| 449 |
+
"learning_rate": 0.00012111959287531807,
|
| 450 |
+
"loss": 0.3833,
|
| 451 |
+
"step": 315
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 2.0253164556962027,
|
| 455 |
+
"grad_norm": 0.6740375757217407,
|
| 456 |
+
"learning_rate": 0.00011984732824427483,
|
| 457 |
+
"loss": 0.2884,
|
| 458 |
+
"step": 320
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 2.0569620253164556,
|
| 462 |
+
"grad_norm": 1.6249363422393799,
|
| 463 |
+
"learning_rate": 0.00011857506361323157,
|
| 464 |
+
"loss": 0.258,
|
| 465 |
+
"step": 325
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 2.088607594936709,
|
| 469 |
+
"grad_norm": 0.970698893070221,
|
| 470 |
+
"learning_rate": 0.0001173027989821883,
|
| 471 |
+
"loss": 0.2651,
|
| 472 |
+
"step": 330
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 2.1202531645569622,
|
| 476 |
+
"grad_norm": 0.7959200143814087,
|
| 477 |
+
"learning_rate": 0.00011603053435114504,
|
| 478 |
+
"loss": 0.2391,
|
| 479 |
+
"step": 335
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 2.151898734177215,
|
| 483 |
+
"grad_norm": 1.0868202447891235,
|
| 484 |
+
"learning_rate": 0.00011475826972010179,
|
| 485 |
+
"loss": 0.2302,
|
| 486 |
+
"step": 340
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 2.1835443037974684,
|
| 490 |
+
"grad_norm": 1.1783322095870972,
|
| 491 |
+
"learning_rate": 0.00011348600508905853,
|
| 492 |
+
"loss": 0.236,
|
| 493 |
+
"step": 345
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 2.2151898734177213,
|
| 497 |
+
"grad_norm": 0.9198023676872253,
|
| 498 |
+
"learning_rate": 0.00011221374045801527,
|
| 499 |
+
"loss": 0.2503,
|
| 500 |
+
"step": 350
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 2.2468354430379747,
|
| 504 |
+
"grad_norm": 1.0101510286331177,
|
| 505 |
+
"learning_rate": 0.000110941475826972,
|
| 506 |
+
"loss": 0.2542,
|
| 507 |
+
"step": 355
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 2.278481012658228,
|
| 511 |
+
"grad_norm": 0.9058020710945129,
|
| 512 |
+
"learning_rate": 0.00010966921119592877,
|
| 513 |
+
"loss": 0.2235,
|
| 514 |
+
"step": 360
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 2.310126582278481,
|
| 518 |
+
"grad_norm": 1.0000735521316528,
|
| 519 |
+
"learning_rate": 0.0001083969465648855,
|
| 520 |
+
"loss": 0.2475,
|
| 521 |
+
"step": 365
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 2.3417721518987342,
|
| 525 |
+
"grad_norm": 0.824941873550415,
|
| 526 |
+
"learning_rate": 0.00010712468193384224,
|
| 527 |
+
"loss": 0.2443,
|
| 528 |
+
"step": 370
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 2.3734177215189876,
|
| 532 |
+
"grad_norm": 1.0715147256851196,
|
| 533 |
+
"learning_rate": 0.00010585241730279898,
|
| 534 |
+
"loss": 0.2549,
|
| 535 |
+
"step": 375
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 2.4050632911392404,
|
| 539 |
+
"grad_norm": 1.1317178010940552,
|
| 540 |
+
"learning_rate": 0.00010458015267175574,
|
| 541 |
+
"loss": 0.274,
|
| 542 |
+
"step": 380
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 2.4367088607594938,
|
| 546 |
+
"grad_norm": 0.9162061810493469,
|
| 547 |
+
"learning_rate": 0.00010330788804071248,
|
| 548 |
+
"loss": 0.2644,
|
| 549 |
+
"step": 385
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 2.4683544303797467,
|
| 553 |
+
"grad_norm": 0.8676306009292603,
|
| 554 |
+
"learning_rate": 0.00010203562340966922,
|
| 555 |
+
"loss": 0.2668,
|
| 556 |
+
"step": 390
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 2.5,
|
| 560 |
+
"grad_norm": 0.8871727585792542,
|
| 561 |
+
"learning_rate": 0.00010076335877862595,
|
| 562 |
+
"loss": 0.2625,
|
| 563 |
+
"step": 395
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 2.5316455696202533,
|
| 567 |
+
"grad_norm": 0.800001323223114,
|
| 568 |
+
"learning_rate": 9.94910941475827e-05,
|
| 569 |
+
"loss": 0.2628,
|
| 570 |
+
"step": 400
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 2.5632911392405062,
|
| 574 |
+
"grad_norm": 1.035553216934204,
|
| 575 |
+
"learning_rate": 9.821882951653944e-05,
|
| 576 |
+
"loss": 0.2651,
|
| 577 |
+
"step": 405
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 2.5949367088607596,
|
| 581 |
+
"grad_norm": 1.2588839530944824,
|
| 582 |
+
"learning_rate": 9.694656488549618e-05,
|
| 583 |
+
"loss": 0.2758,
|
| 584 |
+
"step": 410
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 2.6265822784810124,
|
| 588 |
+
"grad_norm": 0.7838737964630127,
|
| 589 |
+
"learning_rate": 9.567430025445293e-05,
|
| 590 |
+
"loss": 0.2563,
|
| 591 |
+
"step": 415
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 2.6582278481012658,
|
| 595 |
+
"grad_norm": 0.862562358379364,
|
| 596 |
+
"learning_rate": 9.440203562340968e-05,
|
| 597 |
+
"loss": 0.2573,
|
| 598 |
+
"step": 420
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 2.689873417721519,
|
| 602 |
+
"grad_norm": 0.9090970754623413,
|
| 603 |
+
"learning_rate": 9.312977099236642e-05,
|
| 604 |
+
"loss": 0.2624,
|
| 605 |
+
"step": 425
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 2.721518987341772,
|
| 609 |
+
"grad_norm": 0.9972439408302307,
|
| 610 |
+
"learning_rate": 9.185750636132316e-05,
|
| 611 |
+
"loss": 0.2586,
|
| 612 |
+
"step": 430
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 2.7531645569620253,
|
| 616 |
+
"grad_norm": 1.023733139038086,
|
| 617 |
+
"learning_rate": 9.05852417302799e-05,
|
| 618 |
+
"loss": 0.248,
|
| 619 |
+
"step": 435
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 2.7848101265822782,
|
| 623 |
+
"grad_norm": 0.9622347950935364,
|
| 624 |
+
"learning_rate": 8.931297709923665e-05,
|
| 625 |
+
"loss": 0.2552,
|
| 626 |
+
"step": 440
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 2.8164556962025316,
|
| 630 |
+
"grad_norm": 1.0281400680541992,
|
| 631 |
+
"learning_rate": 8.804071246819339e-05,
|
| 632 |
+
"loss": 0.2471,
|
| 633 |
+
"step": 445
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 2.848101265822785,
|
| 637 |
+
"grad_norm": 1.0144472122192383,
|
| 638 |
+
"learning_rate": 8.676844783715013e-05,
|
| 639 |
+
"loss": 0.251,
|
| 640 |
+
"step": 450
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 2.879746835443038,
|
| 644 |
+
"grad_norm": 1.0020065307617188,
|
| 645 |
+
"learning_rate": 8.549618320610687e-05,
|
| 646 |
+
"loss": 0.2621,
|
| 647 |
+
"step": 455
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 2.911392405063291,
|
| 651 |
+
"grad_norm": 0.8894968032836914,
|
| 652 |
+
"learning_rate": 8.422391857506363e-05,
|
| 653 |
+
"loss": 0.2518,
|
| 654 |
+
"step": 460
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 2.9430379746835444,
|
| 658 |
+
"grad_norm": 0.9407539367675781,
|
| 659 |
+
"learning_rate": 8.295165394402035e-05,
|
| 660 |
+
"loss": 0.2857,
|
| 661 |
+
"step": 465
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 2.9746835443037973,
|
| 665 |
+
"grad_norm": 0.8730989098548889,
|
| 666 |
+
"learning_rate": 8.167938931297711e-05,
|
| 667 |
+
"loss": 0.2666,
|
| 668 |
+
"step": 470
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 3.0063291139240507,
|
| 672 |
+
"grad_norm": 0.9915937185287476,
|
| 673 |
+
"learning_rate": 8.040712468193385e-05,
|
| 674 |
+
"loss": 0.2389,
|
| 675 |
+
"step": 475
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 3.037974683544304,
|
| 679 |
+
"grad_norm": 0.8623847961425781,
|
| 680 |
+
"learning_rate": 7.913486005089059e-05,
|
| 681 |
+
"loss": 0.1507,
|
| 682 |
+
"step": 480
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 3.069620253164557,
|
| 686 |
+
"grad_norm": 1.3474798202514648,
|
| 687 |
+
"learning_rate": 7.786259541984733e-05,
|
| 688 |
+
"loss": 0.1444,
|
| 689 |
+
"step": 485
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 3.1012658227848102,
|
| 693 |
+
"grad_norm": 0.8760435581207275,
|
| 694 |
+
"learning_rate": 7.659033078880407e-05,
|
| 695 |
+
"loss": 0.1543,
|
| 696 |
+
"step": 490
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 3.132911392405063,
|
| 700 |
+
"grad_norm": 1.0294660329818726,
|
| 701 |
+
"learning_rate": 7.531806615776081e-05,
|
| 702 |
+
"loss": 0.1418,
|
| 703 |
+
"step": 495
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 3.1645569620253164,
|
| 707 |
+
"grad_norm": 1.1107193231582642,
|
| 708 |
+
"learning_rate": 7.404580152671756e-05,
|
| 709 |
+
"loss": 0.1477,
|
| 710 |
+
"step": 500
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 3.1962025316455698,
|
| 714 |
+
"grad_norm": 0.8871766924858093,
|
| 715 |
+
"learning_rate": 7.27735368956743e-05,
|
| 716 |
+
"loss": 0.1453,
|
| 717 |
+
"step": 505
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 3.2278481012658227,
|
| 721 |
+
"grad_norm": 0.8436539769172668,
|
| 722 |
+
"learning_rate": 7.150127226463105e-05,
|
| 723 |
+
"loss": 0.1394,
|
| 724 |
+
"step": 510
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 3.259493670886076,
|
| 728 |
+
"grad_norm": 1.0295658111572266,
|
| 729 |
+
"learning_rate": 7.022900763358778e-05,
|
| 730 |
+
"loss": 0.1499,
|
| 731 |
+
"step": 515
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 3.291139240506329,
|
| 735 |
+
"grad_norm": 0.8685408234596252,
|
| 736 |
+
"learning_rate": 6.895674300254454e-05,
|
| 737 |
+
"loss": 0.1533,
|
| 738 |
+
"step": 520
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 3.3227848101265822,
|
| 742 |
+
"grad_norm": 1.1160097122192383,
|
| 743 |
+
"learning_rate": 6.768447837150128e-05,
|
| 744 |
+
"loss": 0.1549,
|
| 745 |
+
"step": 525
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 3.3544303797468356,
|
| 749 |
+
"grad_norm": 1.175316572189331,
|
| 750 |
+
"learning_rate": 6.641221374045802e-05,
|
| 751 |
+
"loss": 0.1485,
|
| 752 |
+
"step": 530
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 3.3860759493670884,
|
| 756 |
+
"grad_norm": 1.0799860954284668,
|
| 757 |
+
"learning_rate": 6.513994910941476e-05,
|
| 758 |
+
"loss": 0.1486,
|
| 759 |
+
"step": 535
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 3.4177215189873418,
|
| 763 |
+
"grad_norm": 1.26885187625885,
|
| 764 |
+
"learning_rate": 6.38676844783715e-05,
|
| 765 |
+
"loss": 0.1497,
|
| 766 |
+
"step": 540
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 3.449367088607595,
|
| 770 |
+
"grad_norm": 1.0354342460632324,
|
| 771 |
+
"learning_rate": 6.259541984732826e-05,
|
| 772 |
+
"loss": 0.1471,
|
| 773 |
+
"step": 545
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 3.481012658227848,
|
| 777 |
+
"grad_norm": 0.9845972657203674,
|
| 778 |
+
"learning_rate": 6.132315521628498e-05,
|
| 779 |
+
"loss": 0.1473,
|
| 780 |
+
"step": 550
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 3.5126582278481013,
|
| 784 |
+
"grad_norm": 0.983199417591095,
|
| 785 |
+
"learning_rate": 6.005089058524174e-05,
|
| 786 |
+
"loss": 0.1468,
|
| 787 |
+
"step": 555
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 3.5443037974683547,
|
| 791 |
+
"grad_norm": 1.1902103424072266,
|
| 792 |
+
"learning_rate": 5.877862595419847e-05,
|
| 793 |
+
"loss": 0.1567,
|
| 794 |
+
"step": 560
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 3.5759493670886076,
|
| 798 |
+
"grad_norm": 1.0060570240020752,
|
| 799 |
+
"learning_rate": 5.750636132315522e-05,
|
| 800 |
+
"loss": 0.1526,
|
| 801 |
+
"step": 565
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 3.607594936708861,
|
| 805 |
+
"grad_norm": 1.0281188488006592,
|
| 806 |
+
"learning_rate": 5.6234096692111956e-05,
|
| 807 |
+
"loss": 0.1414,
|
| 808 |
+
"step": 570
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 3.6392405063291138,
|
| 812 |
+
"grad_norm": 1.1555219888687134,
|
| 813 |
+
"learning_rate": 5.496183206106871e-05,
|
| 814 |
+
"loss": 0.1581,
|
| 815 |
+
"step": 575
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 3.670886075949367,
|
| 819 |
+
"grad_norm": 0.9327497482299805,
|
| 820 |
+
"learning_rate": 5.3689567430025446e-05,
|
| 821 |
+
"loss": 0.1568,
|
| 822 |
+
"step": 580
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 3.7025316455696204,
|
| 826 |
+
"grad_norm": 0.9867926239967346,
|
| 827 |
+
"learning_rate": 5.2417302798982194e-05,
|
| 828 |
+
"loss": 0.1529,
|
| 829 |
+
"step": 585
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 3.7341772151898733,
|
| 833 |
+
"grad_norm": 1.0565980672836304,
|
| 834 |
+
"learning_rate": 5.114503816793893e-05,
|
| 835 |
+
"loss": 0.1496,
|
| 836 |
+
"step": 590
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 3.7658227848101267,
|
| 840 |
+
"grad_norm": 0.9019814133644104,
|
| 841 |
+
"learning_rate": 4.9872773536895677e-05,
|
| 842 |
+
"loss": 0.1455,
|
| 843 |
+
"step": 595
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 3.7974683544303796,
|
| 847 |
+
"grad_norm": 1.061144232749939,
|
| 848 |
+
"learning_rate": 4.860050890585242e-05,
|
| 849 |
+
"loss": 0.1573,
|
| 850 |
+
"step": 600
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 3.829113924050633,
|
| 854 |
+
"grad_norm": 0.7622185349464417,
|
| 855 |
+
"learning_rate": 4.7328244274809166e-05,
|
| 856 |
+
"loss": 0.1448,
|
| 857 |
+
"step": 605
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 3.8607594936708862,
|
| 861 |
+
"grad_norm": 1.0320713520050049,
|
| 862 |
+
"learning_rate": 4.605597964376591e-05,
|
| 863 |
+
"loss": 0.1505,
|
| 864 |
+
"step": 610
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 3.892405063291139,
|
| 868 |
+
"grad_norm": 1.0786187648773193,
|
| 869 |
+
"learning_rate": 4.478371501272265e-05,
|
| 870 |
+
"loss": 0.1575,
|
| 871 |
+
"step": 615
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 3.9240506329113924,
|
| 875 |
+
"grad_norm": 0.8925222158432007,
|
| 876 |
+
"learning_rate": 4.351145038167939e-05,
|
| 877 |
+
"loss": 0.1493,
|
| 878 |
+
"step": 620
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 3.9556962025316453,
|
| 882 |
+
"grad_norm": 1.0546342134475708,
|
| 883 |
+
"learning_rate": 4.223918575063613e-05,
|
| 884 |
+
"loss": 0.1477,
|
| 885 |
+
"step": 625
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 3.9873417721518987,
|
| 889 |
+
"grad_norm": 1.0593990087509155,
|
| 890 |
+
"learning_rate": 4.096692111959288e-05,
|
| 891 |
+
"loss": 0.1496,
|
| 892 |
+
"step": 630
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 4.018987341772152,
|
| 896 |
+
"grad_norm": 0.44095051288604736,
|
| 897 |
+
"learning_rate": 3.969465648854962e-05,
|
| 898 |
+
"loss": 0.12,
|
| 899 |
+
"step": 635
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 4.050632911392405,
|
| 903 |
+
"grad_norm": 0.5279709696769714,
|
| 904 |
+
"learning_rate": 3.842239185750636e-05,
|
| 905 |
+
"loss": 0.0924,
|
| 906 |
+
"step": 640
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 4.082278481012658,
|
| 910 |
+
"grad_norm": 1.160754919052124,
|
| 911 |
+
"learning_rate": 3.7150127226463104e-05,
|
| 912 |
+
"loss": 0.0976,
|
| 913 |
+
"step": 645
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 4.113924050632911,
|
| 917 |
+
"grad_norm": 0.985950231552124,
|
| 918 |
+
"learning_rate": 3.5877862595419845e-05,
|
| 919 |
+
"loss": 0.0974,
|
| 920 |
+
"step": 650
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 4.1455696202531644,
|
| 924 |
+
"grad_norm": 1.1326498985290527,
|
| 925 |
+
"learning_rate": 3.4605597964376594e-05,
|
| 926 |
+
"loss": 0.0941,
|
| 927 |
+
"step": 655
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 4.177215189873418,
|
| 931 |
+
"grad_norm": 0.9554588794708252,
|
| 932 |
+
"learning_rate": 3.3333333333333335e-05,
|
| 933 |
+
"loss": 0.0921,
|
| 934 |
+
"step": 660
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 4.208860759493671,
|
| 938 |
+
"grad_norm": 0.6619102358818054,
|
| 939 |
+
"learning_rate": 3.2061068702290076e-05,
|
| 940 |
+
"loss": 0.0959,
|
| 941 |
+
"step": 665
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 4.2405063291139244,
|
| 945 |
+
"grad_norm": 0.6385964751243591,
|
| 946 |
+
"learning_rate": 3.078880407124682e-05,
|
| 947 |
+
"loss": 0.0951,
|
| 948 |
+
"step": 670
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 4.272151898734177,
|
| 952 |
+
"grad_norm": 0.9383646845817566,
|
| 953 |
+
"learning_rate": 2.9516539440203562e-05,
|
| 954 |
+
"loss": 0.0994,
|
| 955 |
+
"step": 675
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 4.30379746835443,
|
| 959 |
+
"grad_norm": 0.7180215716362,
|
| 960 |
+
"learning_rate": 2.824427480916031e-05,
|
| 961 |
+
"loss": 0.0951,
|
| 962 |
+
"step": 680
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 4.3354430379746836,
|
| 966 |
+
"grad_norm": 0.7822996973991394,
|
| 967 |
+
"learning_rate": 2.6972010178117052e-05,
|
| 968 |
+
"loss": 0.0943,
|
| 969 |
+
"step": 685
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 4.367088607594937,
|
| 973 |
+
"grad_norm": 1.308005928993225,
|
| 974 |
+
"learning_rate": 2.5699745547073793e-05,
|
| 975 |
+
"loss": 0.1002,
|
| 976 |
+
"step": 690
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 4.39873417721519,
|
| 980 |
+
"grad_norm": 0.6679030060768127,
|
| 981 |
+
"learning_rate": 2.4427480916030535e-05,
|
| 982 |
+
"loss": 0.0976,
|
| 983 |
+
"step": 695
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 4.430379746835443,
|
| 987 |
+
"grad_norm": 0.6158177852630615,
|
| 988 |
+
"learning_rate": 2.3155216284987276e-05,
|
| 989 |
+
"loss": 0.0928,
|
| 990 |
+
"step": 700
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 4.462025316455696,
|
| 994 |
+
"grad_norm": 0.7272059917449951,
|
| 995 |
+
"learning_rate": 2.1882951653944024e-05,
|
| 996 |
+
"loss": 0.0975,
|
| 997 |
+
"step": 705
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 4.493670886075949,
|
| 1001 |
+
"grad_norm": 0.5800970792770386,
|
| 1002 |
+
"learning_rate": 2.0610687022900766e-05,
|
| 1003 |
+
"loss": 0.0965,
|
| 1004 |
+
"step": 710
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 4.525316455696203,
|
| 1008 |
+
"grad_norm": 0.7109256982803345,
|
| 1009 |
+
"learning_rate": 1.9338422391857507e-05,
|
| 1010 |
+
"loss": 0.096,
|
| 1011 |
+
"step": 715
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 4.556962025316456,
|
| 1015 |
+
"grad_norm": 0.8918435573577881,
|
| 1016 |
+
"learning_rate": 1.8066157760814252e-05,
|
| 1017 |
+
"loss": 0.0953,
|
| 1018 |
+
"step": 720
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 4.588607594936709,
|
| 1022 |
+
"grad_norm": 0.7997652888298035,
|
| 1023 |
+
"learning_rate": 1.6793893129770993e-05,
|
| 1024 |
+
"loss": 0.0973,
|
| 1025 |
+
"step": 725
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 4.620253164556962,
|
| 1029 |
+
"grad_norm": 0.6311637163162231,
|
| 1030 |
+
"learning_rate": 1.5521628498727735e-05,
|
| 1031 |
+
"loss": 0.0936,
|
| 1032 |
+
"step": 730
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 4.651898734177215,
|
| 1036 |
+
"grad_norm": 1.0592689514160156,
|
| 1037 |
+
"learning_rate": 1.424936386768448e-05,
|
| 1038 |
+
"loss": 0.0982,
|
| 1039 |
+
"step": 735
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 4.6835443037974684,
|
| 1043 |
+
"grad_norm": 0.7635562419891357,
|
| 1044 |
+
"learning_rate": 1.2977099236641221e-05,
|
| 1045 |
+
"loss": 0.0968,
|
| 1046 |
+
"step": 740
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 4.715189873417722,
|
| 1050 |
+
"grad_norm": 0.7648958563804626,
|
| 1051 |
+
"learning_rate": 1.1704834605597966e-05,
|
| 1052 |
+
"loss": 0.0928,
|
| 1053 |
+
"step": 745
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 4.746835443037975,
|
| 1057 |
+
"grad_norm": 0.5734853148460388,
|
| 1058 |
+
"learning_rate": 1.0432569974554709e-05,
|
| 1059 |
+
"loss": 0.0986,
|
| 1060 |
+
"step": 750
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 4.7784810126582276,
|
| 1064 |
+
"grad_norm": 0.52640700340271,
|
| 1065 |
+
"learning_rate": 9.16030534351145e-06,
|
| 1066 |
+
"loss": 0.0918,
|
| 1067 |
+
"step": 755
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 4.810126582278481,
|
| 1071 |
+
"grad_norm": 0.8626542091369629,
|
| 1072 |
+
"learning_rate": 7.888040712468193e-06,
|
| 1073 |
+
"loss": 0.0943,
|
| 1074 |
+
"step": 760
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 4.841772151898734,
|
| 1078 |
+
"grad_norm": 0.6101086139678955,
|
| 1079 |
+
"learning_rate": 6.615776081424936e-06,
|
| 1080 |
+
"loss": 0.0966,
|
| 1081 |
+
"step": 765
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 4.8734177215189876,
|
| 1085 |
+
"grad_norm": 0.6603073477745056,
|
| 1086 |
+
"learning_rate": 5.343511450381679e-06,
|
| 1087 |
+
"loss": 0.0947,
|
| 1088 |
+
"step": 770
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 4.905063291139241,
|
| 1092 |
+
"grad_norm": 0.6523921489715576,
|
| 1093 |
+
"learning_rate": 4.0712468193384225e-06,
|
| 1094 |
+
"loss": 0.0953,
|
| 1095 |
+
"step": 775
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 4.936708860759493,
|
| 1099 |
+
"grad_norm": 0.759199857711792,
|
| 1100 |
+
"learning_rate": 2.7989821882951656e-06,
|
| 1101 |
+
"loss": 0.0961,
|
| 1102 |
+
"step": 780
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"epoch": 4.968354430379747,
|
| 1106 |
+
"grad_norm": 0.7331640720367432,
|
| 1107 |
+
"learning_rate": 1.5267175572519084e-06,
|
| 1108 |
+
"loss": 0.0971,
|
| 1109 |
+
"step": 785
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"epoch": 5.0,
|
| 1113 |
+
"grad_norm": 0.9952906966209412,
|
| 1114 |
+
"learning_rate": 2.544529262086514e-07,
|
| 1115 |
+
"loss": 0.0967,
|
| 1116 |
+
"step": 790
|
| 1117 |
+
}
|
| 1118 |
+
],
|
| 1119 |
+
"logging_steps": 5,
|
| 1120 |
+
"max_steps": 790,
|
| 1121 |
+
"num_input_tokens_seen": 0,
|
| 1122 |
+
"num_train_epochs": 5,
|
| 1123 |
+
"save_steps": 500,
|
| 1124 |
+
"stateful_callbacks": {
|
| 1125 |
+
"TrainerControl": {
|
| 1126 |
+
"args": {
|
| 1127 |
+
"should_epoch_stop": false,
|
| 1128 |
+
"should_evaluate": false,
|
| 1129 |
+
"should_log": false,
|
| 1130 |
+
"should_save": true,
|
| 1131 |
+
"should_training_stop": true
|
| 1132 |
+
},
|
| 1133 |
+
"attributes": {}
|
| 1134 |
+
}
|
| 1135 |
+
},
|
| 1136 |
+
"total_flos": 6.918842353360896e+16,
|
| 1137 |
+
"train_batch_size": 16,
|
| 1138 |
+
"trial_name": null,
|
| 1139 |
+
"trial_params": null
|
| 1140 |
+
}
|
experiments/en-hr/checkpoint-790/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a48ae421ab023b3fdb5557bbc63ed3b90ba7d85e26c595b34738c0fc0ebe5a96
|
| 3 |
+
size 6289
|
experiments/en-hr/metrics.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"en": {
|
| 3 |
+
"precision": 0.7651,
|
| 4 |
+
"recall": 0.7671,
|
| 5 |
+
"f1": 0.7661
|
| 6 |
+
},
|
| 7 |
+
"hr": {
|
| 8 |
+
"precision": 0.6701,
|
| 9 |
+
"recall": 0.671,
|
| 10 |
+
"f1": 0.6706
|
| 11 |
+
}
|
| 12 |
+
}
|
experiments/en-hr/preds_en.csv
ADDED
|
@@ -0,0 +1,539 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
input,gold,pred
|
| 2 |
+
I waited for 10-15 minutes for service ordered a beer & was never served again .,"{service general, service, negative}","{service general, service, negative}"
|
| 3 |
+
The ambiance was a peaceful and relaxing break amongst all the kids running around in Downtown Disney .,"{ambience general, ambiance, positive}","{ambience general, ambiance, positive}"
|
| 4 |
+
hidden little jem,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 5 |
+
I went there with a friend from out of town ... and we were both very impressed !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 6 |
+
It has great sushi and even better service .,"{service general, service, positive};{food quality, sushi, positive}","{service general, service, positive};{food quality, sushi, positive}"
|
| 7 |
+
"All their menu items are a hit , and they serve mimosas .","{food quality, menu items, positive}","{drinks quality, mimosas, positive};{food quality, menu items, positive}"
|
| 8 |
+
– ... and the best summertime deck experience -- they will even bring you a blanket if you get cold in the Seattle evening weather .,"{ambience general, deck, positive};{service general, null, positive}","{ambience general, deck experience, positive}"
|
| 9 |
+
You Ca n't Go Wrong Here .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 10 |
+
I think I have probably tried each item on their menu at least once it is all excellent .,"{food quality, menu, positive}","{food quality, menu, positive}"
|
| 11 |
+
Green tea creme brulee gets better each time I have it .,"{food quality, Green tea creme brulee, positive}","{food quality, Green tea creme brulee, positive}"
|
| 12 |
+
not too fine thought that you feel uncomfortable and have to dress up .,"{ambience general, null, positive}","{restaurant miscellaneous, null, negative}"
|
| 13 |
+
Atmosphere was nice .,"{ambience general, Atmosphere, positive}","{ambience general, Atmosphere, positive}"
|
| 14 |
+
absolutely fabulous ! ! !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 15 |
+
AVOID THE PLACE,"{restaurant general, PLACE, negative}","{restaurant general, PLACE, negative}"
|
| 16 |
+
"To be honest , I 've had better frozen pizza .","{food quality, pizza, negative}","{food quality, frozen pizza, negative}"
|
| 17 |
+
The service was exceptional - sometime there was a feeling that we were served by the army of friendly waiters .,"{service general, waiters, positive};{service general, service, positive}","{service general, service, positive}"
|
| 18 |
+
And they packaged everything nicely so it did n't spill .,"{service general, null, positive}","{food style_options, null, positive}"
|
| 19 |
+
VERY GOOD !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 20 |
+
The food is sinful .,"{food quality, food, positive}","{food quality, food, positive}"
|
| 21 |
+
"To start off , approximately 8-10 oz of orange juice will cost you $ 3 .","{drinks prices, orange juice, negative}","{drinks prices, orange juice, negative};{drinks style_options, orange juice, negative}"
|
| 22 |
+
good sake selection .,"{drinks style_options, sake selection, positive}","{drinks style_options, sake selection, positive}"
|
| 23 |
+
"While I could have done without the youth who shared the evening with us , our wonderful server and food made the experience a very positive one .","{service general, server, positive};{restaurant miscellaneous, null, positive};{food quality, food, positive}","{service general, server, positive};{food quality, food, positive};{restaurant miscellaneous, youth, negative}"
|
| 24 |
+
What a find !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 25 |
+
– Mioposto has a very creative & delicious pizza menu .,"{food style_options, pizza menu, positive};{food quality, pizza menu, positive}","{food style_options, pizza menu, positive};{food quality, pizza menu, positive}"
|
| 26 |
+
"On a recent trip , our waiter was extremely dismissive , while no less than three staff members waited hand-and-foot on a pair of Japanese girls seated nearby .","{service general, waiter, negative}","{service general, waiter, negative};{service general, staff, positive}"
|
| 27 |
+
"i would normally not finish the brocolli when i order these kinds of food but for the first time , every piece was as eventful as the first one ... the scallops and prawns was so fresh and nicely cooked .","{food quality, scallops, positive};{food quality, prawns, positive};{food quality, brocolli, positive}","{food quality, scallops and prawns, positive};{food quality, brocolli, positive}"
|
| 28 |
+
It is n't the cheapest sushi but has been worth it every time .,"{food quality, sushi, positive};{food prices, sushi, neutral}","{food quality, sushi, positive};{food prices, sushi, negative}"
|
| 29 |
+
You never feel icky and stuffed after you eat there .,"{food quality, null, positive}","{restaurant general, null, positive}"
|
| 30 |
+
"As part of a small party of four , our food was dropped off without comment ;","{service general, null, negative}","{service general, null, negative}"
|
| 31 |
+
I hope one day Scooner or Later returns to what it once was .,"{restaurant general, Scooner or Later, negative}","{restaurant general, Scooner or Later, negative}"
|
| 32 |
+
"First off , the food came fast and all together : ) i like that ... i hate the pretentiousness of things coming in one after the other .","{service general, null, positive}","{service general, null, positive}"
|
| 33 |
+
The food was great !,"{food quality, food, positive}","{food quality, food, positive}"
|
| 34 |
+
"If there is a line very day of the week for the entire time a place is open , you know it is great .","{restaurant general, place, positive}","{restaurant miscellaneous, place, positive}"
|
| 35 |
+
The most pleasant surprise was the check that did not exceed my expectations as it always happens in most of the places .,"{restaurant prices, null, positive}","{restaurant prices, null, positive}"
|
| 36 |
+
"At best , the food was good and definately overpriced .","{food quality, food, positive};{food prices, food, negative}","{food quality, food, negative};{food prices, food, negative}"
|
| 37 |
+
The outside patio area has an abbreviated menu .,"{food style_options, menu, neutral}","{food style_options, menu, neutral}"
|
| 38 |
+
Best Indian food in L.A .,"{food quality, Indian food, positive}","{food quality, Indian food, positive}"
|
| 39 |
+
Cut to the chase - this is amazing !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 40 |
+
"The food is not what it once was ( potions have seriously seen downsizing ) prices have gone up , and the service is the worst I have experienced anywhere ( including mainland Europe ) .","{food style_options, potions, negative};{service general, service, negative};{food quality, food, negative};{food prices, food, negative}","{food prices, potions, negative};{service general, service, negative};{food quality, food, negative}"
|
| 41 |
+
Lebanese Food ! Yum !,"{food quality, Lebanese Food, positive}","{food quality, Lebanese Food, positive}"
|
| 42 |
+
the brocollis were so fresh and tasty .,"{food quality, brocollis, positive}","{food quality, brocollis, positive}"
|
| 43 |
+
And they give good quantity for the price .,"{food style_options, null, positive}","{food style_options, quantity, positive};{food prices, quantity, positive}"
|
| 44 |
+
Very Disappointing,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 45 |
+
Seattle 's BEST Winelist,"{drinks style_options, Winelist, positive}","{drinks style_options, Winelist, positive}"
|
| 46 |
+
– I ca n't say enough about this place .,"{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 47 |
+
– i have been eating at this place for over 8 years now and i have never had one bad meal .,"{food quality, meal, positive}","{food quality, meal, positive}"
|
| 48 |
+
I went home & looked them up online again where I discovered there is a link for a give away that doesn 't work so emailed the restaurant about the non existent service & deceptive link .,"{restaurant miscellaneous, restaurant, negative}","{restaurant miscellaneous, null, negative}"
|
| 49 |
+
Fancy pieces of exotic fish on a $ 100 dollar plate and NOT ONE was eatable .,"{food quality, exotic fish, negative};{food style_options, exotic fish, negative};{food prices, plate, negative}","{food quality, plate, negative};{food style_options, plate, negative};{food style_options, fish, positive}"
|
| 50 |
+
"I had yummy lamb korma , saag paneer , samosas , naan , etc .","{food quality, naan, positive};{food quality, lamb korma, positive};{food quality, saag paneer, positive};{food quality, samosas, positive}","{food quality, lamb korma, positive};{food quality, naan, positive};{food quality, samosas, positive};{food quality, saag paneer, positive}"
|
| 51 |
+
Serves really good sushi .,"{food quality, sushi, positive}","{food quality, sushi, positive}"
|
| 52 |
+
"As usual the omikase did n't disappoint in freshness , although it scored low on creativity and selection .","{food style_options, omikase, negative};{food quality, omikase, positive}","{food quality, omikase, positive};{food style_options, omikase, negative};{food style_options, omikase, negative}"
|
| 53 |
+
"Rice is too dry , tuna was n't so fresh either .","{food quality, tuna, negative};{food quality, Rice, negative}","{food quality, Rice, negative};{food quality, tuna, negative}"
|
| 54 |
+
Their crab eggs benedict is addicting .,"{food quality, crab eggs benedict, positive}","{food quality, crab eggs benedict, positive}"
|
| 55 |
+
Save room for scrumptious desserts .,"{food quality, desserts, positive}","{food quality, desserts, positive}"
|
| 56 |
+
Our server was very professional and friendly .,"{service general, server, positive}","{service general, server, positive}"
|
| 57 |
+
I went here on a recommendation and will surely return time and time again .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 58 |
+
The food was all good but it was way too mild .,"{food quality, food, negative};{food quality, food, positive}","{food quality, food, negative}"
|
| 59 |
+
– My husband and I love eating at Mioposto Café .,"{restaurant general, Mioposto Café, positive}","{restaurant general, Mioposto Café, positive}"
|
| 60 |
+
– This was great dining experience .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 61 |
+
The staff was really friendly .,"{service general, staff, positive}","{service general, staff, positive}"
|
| 62 |
+
We easily spent more than $ 40 per person ( not including alcohol ) and were still hungry .,"{restaurant prices, null, negative};{food style_options, null, negative}","{food prices, null, negative};{food quality, null, negative}"
|
| 63 |
+
This is right up there with places in Tokyo as far as the freshness is concerned .,"{food quality, null, positive}","{food quality, null, positive}"
|
| 64 |
+
Groovy music made the dinner casual .,"{ambience general, music, positive}","{ambience general, music, positive}"
|
| 65 |
+
"After one member of our party had been bumped repeatedly by a waitress , a polite request that he not be bumped sent the waitress into an abusive rant .","{service general, waitress, negative}","{service general, waitress, negative}"
|
| 66 |
+
– Ray 's ( suprisingly ) has the city 's BEST & most diverse wine list .,"{drinks style_options, wine list, positive}","{drinks style_options, wine list, positive}"
|
| 67 |
+
I probably wouldn 't go back though 'cuz I do n't know if it 's worth it .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 68 |
+
"The chips and salsa are so yummy , and the prices are fabulous .","{food quality, chips and salsa, positive};{restaurant prices, null, positive}","{restaurant prices, null, positive};{food quality, chips and salsa, positive}"
|
| 69 |
+
"The sommelier is fantastic , down-to-earth , & extremely knowlegable .","{service general, sommelier, positive}","{service general, sommelier, positive}"
|
| 70 |
+
big thick pepperoni,"{food style_options, pepperoni, positive}","{food quality, pepperoni, positive}"
|
| 71 |
+
It is not worth going at all and spend your money there ! ! !,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 72 |
+
Insultingly Overpriced,"{restaurant prices, null, negative}","{restaurant prices, null, negative}"
|
| 73 |
+
Indoor ambience was modern .,"{ambience general, Indoor ambience, positive}","{ambience general, Indoor ambience, positive}"
|
| 74 |
+
DONOT GO !,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 75 |
+
"Untill this happens , my advice is to STAY AWAY .","{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 76 |
+
Oh I forgot to mention that they do n't have bread service .,"{service general, null, negative}","{service general, null, negative}"
|
| 77 |
+
They are not greasy or anything .,"{food quality, null, positive}","{food quality, null, positive}"
|
| 78 |
+
"The music is great , no night better or worse , the bar tenders are generous with the pouring , and the lighthearted atmosphere will lifts you spirits .","{ambience general, atmosphere, positive};{ambience general, music, positive};{drinks style_options, bar tenders, positive}","{ambience general, atmosphere, positive};{drinks style_options, bar tenders, positive};{ambience general, music, positive}"
|
| 79 |
+
"Nice ambience , but highly overrated place .","{ambience general, ambience, positive};{restaurant general, place, negative}","{ambience general, ambience, positive};{restaurant general, place, negative}"
|
| 80 |
+
The sushi here is delicious !,"{food quality, sushi, positive}","{food quality, sushi, positive}"
|
| 81 |
+
"Dinners have always been excellent , in terms of food quality .","{food quality, Dinners, positive}","{food quality, Dinners, positive}"
|
| 82 |
+
Their apps are all delicious .,"{food quality, apps, positive}","{food quality, apps, positive}"
|
| 83 |
+
Blue Ribbon lives up to it 's fantastic reputation .,"{restaurant general, Blue Ribbon, positive}","{restaurant general, Blue Ribbon, positive}"
|
| 84 |
+
I felt ackward and next time went to the casino bathroom .,"{restaurant miscellaneous, null, negative}","{restaurant miscellaneous, null, negative}"
|
| 85 |
+
– I decided to eat at Stack because of their price fixed pre-show dinner .,"{food prices, price fixed pre-show dinner, neutral}","{restaurant prices, Stack, positive}"
|
| 86 |
+
– I took my parents here for their anniversary-very very disappointed ! ! !,"{restaurant general, null, negative}","{restaurant miscellaneous, null, negative}"
|
| 87 |
+
Unbeatable sushi !,"{food quality, sushi, positive}","{food quality, sushi, positive}"
|
| 88 |
+
"To start things off , our lovely server Brooke was quickly on hand to take my drink order .","{service general, Brooke, positive}","{service general, server Brooke, positive}"
|
| 89 |
+
Every time `` 0-sixtynine `` is called the bartender buys everyone drinks !,"{service general, bartender, positive}","{service general, bartender, positive}"
|
| 90 |
+
"Endless fun , awesome music , great staff ! ! !","{restaurant general, null, positive};{ambience general, music, positive};{service general, staff, positive}","{ambience general, music, positive};{service general, staff, positive};{restaurant general, null, positive}"
|
| 91 |
+
Fair menu selection .,"{food style_options, menu selection, neutral}","{food style_options, menu selection, neutral}"
|
| 92 |
+
Two rascally kids were seated near us for the first part of our dinner ... they were replaced by a delightful preteen who pretended to gag every time seafood was mentioned at her table .,"{restaurant miscellaneous, null, negative}","{service general, null, positive}"
|
| 93 |
+
I rejected it because in the process of attempting to fix the eggs they broke something else in the dish and I was too frustrated to continue .,"{food quality, dish, negative}","{food quality, dish, negative}"
|
| 94 |
+
had many dishes but the BEST was the lobster 3 ways .,"{food quality, lobster 3 ways, positive}","{food quality, lobster 3 ways, positive}"
|
| 95 |
+
"The appetizer was interesting , but the Creme Brulee was very savory and delicious .","{food quality, Creme Brulee, positive};{food quality, appetizer, positive}","{food quality, Creme Brulee, positive};{food quality, appetizer, positive}"
|
| 96 |
+
The decor was beautiful and unique .,"{ambience general, decor, positive}","{ambience general, decor, positive}"
|
| 97 |
+
"It 's fresh , welcoming , delicious , and relaxing .","{food quality, null, positive};{ambience general, null, positive}","{ambience general, null, positive};{food quality, null, positive}"
|
| 98 |
+
Addicting !,"{restaurant general, null, positive}","{food quality, null, positive}"
|
| 99 |
+
"Even the chickpeas , which I normally find too dry , were good .","{food quality, chickpeas, positive}","{food quality, chickpeas, positive}"
|
| 100 |
+
This place rocks ! !,"{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 101 |
+
"That 's a huge compliment , especially in the fickled restaurant business , ... enough already !","{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 102 |
+
After sitting there with my empty glass for over 20 minutes I left .,"{service general, null, negative}","{service general, null, negative}"
|
| 103 |
+
Be sure to try the oyster roll .,"{food quality, oyster roll, positive}","{food quality, oyster roll, positive}"
|
| 104 |
+
I 'm astonished that this restaurant is categorized as $ $ $ rather than $ $ $ $ .,"{restaurant prices, restaurant, negative}","{restaurant prices, restaurant, negative}"
|
| 105 |
+
It was decent but nothing exceptional .,"{food quality, null, neutral}","{food quality, null, neutral}"
|
| 106 |
+
"Service was kind of slow , our waitress took forever to give us our check even though it was n't that busy .","{service general, Service, negative};{service general, waitress, negative}","{service general, waitress, negative};{service general, Service, negative}"
|
| 107 |
+
"– Great drinks , corn beef hash , coffee , B Fast burritos , Gluten Free menu .","{food quality, B Fast burritos, positive};{food style_options, menu, positive};{drinks quality, drinks, positive};{food quality, corn beef hash, positive};{drinks quality, coffee, positive}","{food quality, corn beef hash, positive};{food style_options, Gluten Free menu, positive};{drinks quality, drinks, positive};{food style_options, Fast burritos, positive};{drinks quality, coffee, positive}"
|
| 108 |
+
The lunch menu is an awesome deal !,"{food prices, lunch menu, positive}","{food prices, lunch menu, positive}"
|
| 109 |
+
"Took forever to get our order taken , water refills were too much to ask for and the only time she was fast was when we asked for our bill when we could get her attention .","{service general, null, negative}","{service general, null, negative}"
|
| 110 |
+
The waiter was a bit unfriendly and the feel of the restaurant was crowded .,"{service general, waiter, negative};{ambience general, feel, negative}","{service general, waiter, negative};{ambience general, restaurant, negative}"
|
| 111 |
+
– I recently had the pleasure of dining as this delightful restaurant on 2nd street and wow what a great evening we had .,"{restaurant general, restaurant, positive}","{restaurant general, restaurant on 2nd street, positive}"
|
| 112 |
+
"The specialty here is decadent pancakes , but I 've been back now four times , and I 've been wowed every time .","{food quality, pancakes, positive}","{food quality, pancakes, positive}"
|
| 113 |
+
– Pretty cheap for sit down Mexican AND downtown .,"{restaurant prices, null, positive};{location general, null, positive}","{restaurant prices, null, positive}"
|
| 114 |
+
"The appetizer of oysters , lobster , crab ( small size ) made a perfect entre for my wife .","{food quality, appetizer of oysters , lobster , crab ( small size ), positive}","{food quality, appetizer of oysters, lobster, crab ( small size ), positive}"
|
| 115 |
+
I just found out that you can have the place to yourself on nights and weekends for a private party - ca n't wait to celebrate my next birthday there .,"{restaurant miscellaneous, place, positive}","{restaurant miscellaneous, place, positive}"
|
| 116 |
+
"– As with most restaurants in Seattle , Mioposto 's service was bad and the food was overpriced .","{service general, service, negative};{food prices, food, negative}","{service general, service, negative};{food prices, food, negative};{food quality, food, negative}"
|
| 117 |
+
You can easily hear him though so it was a pleasant sound and not overbearing .,"{ambience general, null, positive}","{service general, null, positive}"
|
| 118 |
+
Just go there and see for yourself .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 119 |
+
It 's a great little place with tons of potential to be a neighborhood joint if the service were n't so impersonal and corporate-like .,"{restaurant general, place, positive};{service general, service, negative}","{restaurant general, place, positive};{service general, service, negative}"
|
| 120 |
+
"Brunch at Murphy 's is to die for , my specialty ... egg white omelet , the food is always freshly prepared .","{food quality, egg white omelet, positive};{food quality, Brunch, positive};{food quality, food, positive}","{food quality, egg white omelet, positive};{food quality, food, positive}"
|
| 121 |
+
Mama Mia – I live in the neighborhood and feel lucky to live by such a great pizza place .,"{restaurant general, pizza place, positive}","{restaurant general, pizza place, positive}"
|
| 122 |
+
– tucked away over by the Beverly Center .,"{location general, null, neutral}","{location general, null, neutral}"
|
| 123 |
+
The staff is pretty friendly .,"{service general, staff, positive}","{service general, staff, positive}"
|
| 124 |
+
And the service was simply spendid - quite a delight .,"{service general, service, positive}","{service general, service, positive}"
|
| 125 |
+
Ok ... – Maybe I went in on someone 's bad day ...,"{restaurant general, null, negative}","{service general, null, negative}"
|
| 126 |
+
"I 've had the Jellyfish , Horse Mackerel , Blue Fin Tuna and the Sake Ikura roll among others , and they were all good .","{food quality, Horse Mackerel, positive};{food quality, Jellyfish, positive};{food quality, Blue Fin Tuna, positive};{food quality, Sake Ikura roll, positive}","{food quality, null, positive};{food quality, Blue Fin Tuna, positive};{food quality, Horse Mackerel, positive};{food quality, Sake Ikura roll, positive};{food quality, Jellyfish, positive}"
|
| 127 |
+
WHAT ELSE CAN YOU SAY NICE PEOPLE AMAZING FOOD WOW,"{food quality, FOOD, positive};{service general, PEOPLE, positive}","{restaurant general, null, positive};{service general, people, positive};{food quality, FOOD, positive}"
|
| 128 |
+
Always good .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 129 |
+
My mouth felt very dry afterwards and I had that signature ? MSG ? taste lingering in my throat after I left the restaurant .,"{food quality, null, negative}","{food quality, null, negative}"
|
| 130 |
+
"Oh yeah ... the view was good , too .","{location general, view, positive}","{location general, view, positive}"
|
| 131 |
+
"The manager continually interrupted with `` Is there anything else I can do for you ? `` , a strange comment because she had hardly listened , let alone responded to our expression of disappointment at our experience .","{service general, manager, negative}","{service general, manager, negative}"
|
| 132 |
+
The service ranges from mediocre to offensive .,"{service general, service, negative}","{service general, service, negative}"
|
| 133 |
+
Fresh ingrediants and super tasty .,"{food quality, null, positive};{food quality, ingrediants, positive}","{food quality, ingrediants, positive}"
|
| 134 |
+
the ambiance of the restaurant was nice and good for fine dinning .,"{ambience general, ambiance, positive}","{ambience general, ambiance of the restaurant, positive}"
|
| 135 |
+
And the upstairs is a great place to hang out .,"{ambience general, upstairs, positive}","{ambience general, upstairs, positive}"
|
| 136 |
+
– Not bad .,"{restaurant general, null, neutral}","{restaurant general, null, neutral}"
|
| 137 |
+
I had the Kafta plate and it was perfect .,"{food quality, Kafta plate, positive}","{food quality, Kafta plate, positive}"
|
| 138 |
+
– This place is famous for their breakfast .,"{food quality, breakfast, positive}","{restaurant miscellaneous, place, neutral}"
|
| 139 |
+
Waited 35 minutes for a table for 8 which was ok for such a big crowd .,"{service general, null, neutral}","{service general, null, neutral}"
|
| 140 |
+
The entire staff was extremely accomodating and tended to my every need .,"{service general, staff, positive}","{service general, staff, positive}"
|
| 141 |
+
"There was a really nice vibe about the place ... good music , atmosphere and happy looking people .","{ambience general, atmosphere, positive};{ambience general, vibe, positive};{restaurant miscellaneous, people, positive};{ambience general, music, positive}","{ambience general, atmosphere, positive};{ambience general, music, positive};{restaurant miscellaneous, place, positive}"
|
| 142 |
+
Try the Chef 's Choice for sushi as the smoked yellowtail was incredible and the rolls were also tasty .,"{food quality, rolls, positive};{food quality, smoked yellowtail, positive}","{food quality, rolls, positive};{food quality, smoked yellowtail, positive};{food quality, Chef's Choice, positive}"
|
| 143 |
+
"The sushi is as fresh as it comes ? you 'd think ocean was in their backyard , no joke !","{food quality, sushi, positive}","{food quality, sushi, positive}"
|
| 144 |
+
"food was fine , with a some little-tastier-than-normal salsa .","{food quality, salsa, positive};{food quality, food, positive}","{food quality, salsa, positive};{food quality, food, positive}"
|
| 145 |
+
"For the finicky sushi eater and those who have sampled the best NYC has to offer , the fish is the freshest and the service is superb .","{food quality, fish, positive};{service general, service, positive}","{food quality, fish, positive};{service general, service, positive}"
|
| 146 |
+
Old Reliable,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 147 |
+
One of the best Sushi place in town .,"{restaurant general, Sushi place, positive}","{food quality, Sushi, positive}"
|
| 148 |
+
"Food wise , its ok but a bit pricey for what you get considering the restaurant is n't a fancy place .","{food quality, Food, neutral};{ambience general, restaurant, neutral};{restaurant prices, restaurant, negative}","{food prices, null, negative};{food quality, null, neutral}"
|
| 149 |
+
"– Love their pizza , especially the mushroom pizza .","{food quality, pizza, positive};{food quality, mushroom pizza, positive}","{food quality, mushroom pizza, positive};{food quality, pizza, positive}"
|
| 150 |
+
They came in their own nifty take out box and with some homemade frosting ; very light and not-too-sweet .,"{food quality, null, positive}","{food quality, frosting, positive};{food style_options, null, positive}"
|
| 151 |
+
Enjoyed the food,"{food quality, food, positive}","{food quality, food, positive}"
|
| 152 |
+
I 've been to this restaurant over a dozen times with no complaints to date .,"{restaurant general, restaurant, positive}","{restaurant general, restaurant, positive}"
|
| 153 |
+
"Prefer to order it and pick it up though because I do n't like the servers , one young woman in particular .","{service general, young woman, negative};{service general, servers, negative}","{service general, servers, negative}"
|
| 154 |
+
awesome find,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 155 |
+
"It was n't the freshest seafood ever , but the taste and presentation was OK .","{food quality, seafood, neutral};{food style_options, seafood, neutral}","{food quality, seafood, neutral}"
|
| 156 |
+
"However , the value and service are both severely lacking .","{restaurant prices, null, negative};{service general, service, negative}","{restaurant prices, null, negative};{service general, service, negative}"
|
| 157 |
+
In Grammercy/Union Square/East Village this is my neighbors and my favorite spot .,"{restaurant general, spot, positive}","{restaurant general, null, positive}"
|
| 158 |
+
"The side of potatoes is to die for , as is the labne ( yogurt dip ) .","{food quality, labne ( yogurt dip ), positive};{food quality, side of potatoes, positive}","{food quality, labne ( yogurt dip ), positive};{food quality, side of potatoes, positive}"
|
| 159 |
+
AMAZING .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 160 |
+
"What a tastly , flaky treat !","{food quality, null, positive}","{food quality, null, positive}"
|
| 161 |
+
"Great food , better Margaritas !","{drinks quality, Margaritas, positive};{food quality, food, positive}","{drinks quality, Margaritas, positive};{food quality, food, positive}"
|
| 162 |
+
The service is really attentive and charming .,"{service general, service, positive}","{service general, service, positive}"
|
| 163 |
+
"Most importantly , we were so excited about the food after seeing the very creative menu .","{food style_options, menu, positive}","{food style_options, menu, positive}"
|
| 164 |
+
A cozy spot for 2,"{ambience general, spot, positive}","{ambience general, spot, positive}"
|
| 165 |
+
"The best thing is , the prices are also quite reasonable .","{restaurant prices, null, positive}","{restaurant prices, null, positive}"
|
| 166 |
+
"She promised to speak to the waitress who had flown off in a rage , but we could hardly take her promise seriously , seeing as she hadn 't bothered to get the waitresses name .","{service general, null, negative}","{service general, null, negative}"
|
| 167 |
+
The chana masala ( garbanzo beans ) are also excellent .,"{food quality, chana masala ( garbanzo beans ), positive}","{food quality, chana masala ( garbanzo beans ), positive}"
|
| 168 |
+
"This establishment really made a marked decline after ( and this is recurring story ) the airing of FOOD TELEVISIONS `` DINERS , DRIVE-INS , AND DIVES `` hosted by Guy Fieri , in which Schooner or Later was subject of .","{restaurant general, establishment, negative}","{restaurant miscellaneous, Schooner or Later, negative}"
|
| 169 |
+
I love Dungeness crabs and at Ray 's you can get them served in about 6 different ways !,"{food style_options, Dungeness crabs, positive}","{food style_options, Dungeness crabs, positive}"
|
| 170 |
+
Food was good and appetizing .,"{food quality, Food, positive}","{food quality, Food, positive}"
|
| 171 |
+
It was absolutely amazing .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 172 |
+
This is a great place to get a delicious meal .,"{food quality, meal, positive}","{food quality, meal, positive}"
|
| 173 |
+
"plus , i am allergic to rice , and the waitstaff was unbelievably accomodating -- did n't even bat an eye !","{service general, waitstaff, positive}","{service general, waitstaff, positive}"
|
| 174 |
+
– I was highly disappointed in the food at Pagoda .,"{food quality, food, negative}","{food quality, food, negative}"
|
| 175 |
+
Overpriced,"{restaurant prices, null, negative}","{food prices, null, negative}"
|
| 176 |
+
This is sad for what once was one of the best places you could ever eat .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 177 |
+
"Once you 're inside , the real experience begins .","{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 178 |
+
and the waiter suggested a perfect sake ! !,"{drinks quality, sake, positive}","{drinks quality, sake, positive}"
|
| 179 |
+
The owner is belligerent to guests that have a complaint .,"{service general, owner, negative}","{service general, owner, negative}"
|
| 180 |
+
"Everything you want and more , very fresh .","{food quality, null, positive};{food style_options, null, positive}","{food quality, null, positive}"
|
| 181 |
+
My friend enjoyed the grilled Alaskan King Salmon with delectable creamed Washington russet potatoes and crisp green beans .,"{food quality, green beans, positive};{food quality, creamed Washington russet potatoes, positive};{food quality, grilled Alaskan King Salmon, positive}","{food quality, grilled Alaskan King Salmon, positive};{food quality, creamed Washington russet potatoes, positive};{food quality, green beans, positive}"
|
| 182 |
+
"The food was very good , filet mignon was probably the best I 've ever try .","{food quality, filet mignon, positive};{food quality, food, positive}","{food quality, filet mignon, positive};{food quality, food, positive}"
|
| 183 |
+
"– Mercedes restaurant is so tasty , the service is undeniably awesome !","{food quality, null, positive};{service general, service, positive}","{restaurant general, Mercedes restaurant, positive};{service general, service, positive}"
|
| 184 |
+
I can highly recommend their various saag and paneer and korma .,"{food quality, saag, positive};{food quality, paneer, positive};{food quality, korma, positive}","{food quality, saag, positive};{food quality, paneer and korma, positive}"
|
| 185 |
+
The food is great and they make a mean bloody mary .,"{drinks quality, bloody mary, positive};{food quality, food, positive}","{drinks quality, bloody mary, positive};{food quality, food, positive}"
|
| 186 |
+
Nice food but no spice !,"{food quality, food, negative};{food quality, food, positive}","{food quality, food, positive}"
|
| 187 |
+
Another plus is the open feel of the restaurant with glass walls on all sides .,"{ambience general, feel, positive}","{ambience general, open feel, positive}"
|
| 188 |
+
Yum !,"{food quality, null, positive}","{food quality, null, positive}"
|
| 189 |
+
"The bathroom itself is very small with two toilets and only one sink , the girl was staying totally on the way hanging out paper towels from the dispenser .","{restaurant miscellaneous, bathroom, negative}","{ambience general, bathroom, negative}"
|
| 190 |
+
Love the enchiladas and chicken soup - and be sure to check out their specials .,"{food quality, enchiladas, positive};{food quality, chicken soup, positive};{food quality, specials, positive}","{food quality, chicken soup, positive};{food quality, enchiladas, positive};{food style_options, specials, positive}"
|
| 191 |
+
The food is simply unforgettable !,"{food quality, food, positive}","{food quality, food, positive}"
|
| 192 |
+
Management should really take notice and train their waitstaff and teach them some proper manners .,"{service general, waitstaff, negative}","{service general, waitstaff, negative}"
|
| 193 |
+
The staff are friendly and the decor was ethic and colorful .,"{ambience general, decor, positive};{service general, staff, positive}","{ambience general, decor, positive};{service general, staff, positive}"
|
| 194 |
+
The best Chuwam Mushi I have ever had .,"{food quality, Chuwam Mushi, positive}","{food quality, Chuwam Mushi, positive}"
|
| 195 |
+
"Portions was just enough for me , but may not be for a big eater .","{food style_options, Portions, neutral}","{food style_options, Portions, neutral}"
|
| 196 |
+
Try the Pizza Ensalata !,"{food quality, Pizza Ensalata, positive}","{food quality, Pizza Ensalata, positive}"
|
| 197 |
+
Still I would recommend this place .,"{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 198 |
+
"– The sushi here is perfectly good , but for $ 5 a piece , either the slices of fish should be larger , or there should be no pretense that this is a moderately priced restaurant ( even for NYC ) .","{food prices, sushi, negative};{food style_options, sushi, negative};{food quality, sushi, positive};{restaurant prices, restaurant, negative}","{food prices, null, negative};{food quality, sushi, positive};{food style_options, sushi, negative}"
|
| 199 |
+
You are bound to have a very charming time .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 200 |
+
"We have since returned and also had a great experience , sampling more small plates and a variety of the beer ( cold and good ) .","{drinks quality, beer, positive};{restaurant general, null, positive}","{drinks quality, beer, positive};{food quality, small plates, positive};{service general, null, positive}"
|
| 201 |
+
Best Sushi in town .,"{food quality, Sushi, positive}","{food quality, Sushi, positive}"
|
| 202 |
+
the staff was very nice and courteous and obviously chinese .,"{service general, staff, positive}","{service general, staff, positive}"
|
| 203 |
+
"We ordered a selection of the small plates , and the shoe string onions , goat cheese pizza , grilled asparagus and fried brie with fruit were all very good .","{food quality, grilled asparagus, positive};{food quality, shoe string onions, positive};{food quality, goat cheese pizza, positive};{food quality, fried brie with fruit, positive}","{food quality, fried brie with fruit, positive};{food quality, grilled asparagus, positive};{food quality, goat cheese pizza, positive};{food quality, shoe string onions, positive};{food quality, small plates, positive}"
|
| 204 |
+
Nice job !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 205 |
+
"Though , one thing I realized later on was that the restaurant either used MSG or a meat tenderizer on the steak .","{food quality, steak, negative}","{food quality, steak, negative}"
|
| 206 |
+
Great selection of sakes .,"{drinks style_options, selection of sakes, positive}","{drinks style_options, selection of sakes, positive}"
|
| 207 |
+
Kudos to these guys .,"{restaurant general, null, positive}","{restaurant general, guys, positive}"
|
| 208 |
+
Unless you are just stopping in for a few drinks I wouldn 't recommend going here .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 209 |
+
Great bottle of wine .,"{drinks quality, bottle of wine, positive}","{drinks quality, bottle of wine, positive}"
|
| 210 |
+
The open sesame combo plate is a bargain for the heap of food given .,"{food style_options, open sesame combo plate, positive};{food prices, open sesame combo plate, positive}","{food prices, open sesame combo plate, positive};{food style_options, open sesame combo plate, positive}"
|
| 211 |
+
WAY OVER-RATED ! ! ! !,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 212 |
+
Worth the wait,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 213 |
+
Doesn 't get any better than that .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 214 |
+
best honey walnyt prawns that we have every tasted .,"{food quality, honey walnyt prawns, positive}","{food quality, honey walnyt prawns, positive}"
|
| 215 |
+
They have been featured on the food network and they deserve it .,"{restaurant miscellaneous, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 216 |
+
I love the warm & cosy environment .,"{ambience general, environment, positive}","{ambience general, environment, positive}"
|
| 217 |
+
Snotty Attitude,"{service general, null, negative}","{service general, Attitude, negative}"
|
| 218 |
+
"The atmosphere is aspiring , and the decor is festive and amazing ...","{ambience general, decor, positive};{ambience general, atmosphere, positive}","{ambience general, atmosphere, positive};{ambience general, decor, positive}"
|
| 219 |
+
"Their specialty rolls are impressive , though I ca n't remember what we had .","{food quality, specialty rolls, positive}","{food quality, specialty rolls, positive}"
|
| 220 |
+
– I loved the pumpkin ravioli and the goat cheese gnocchi ( 5 big ones to a plate instead of 20 or so little gnocchis ) and my sister loved her filet mignon on top of spinach and mashed potatoes .,"{food quality, filet mignon on top of spinach and mashed potatoes, positive};{food quality, pumpkin ravioli, positive};{food quality, goat cheese gnocchi, positive};{food style_options, goat cheese gnocchi, positive}","{food quality, pumpkin ravioli, positive};{food style_options, goat cheese gnocchi, positive};{food quality, filet mignon on top of spinach and mashed potatoes, positive}"
|
| 221 |
+
Not the biggest portions but adequate .,"{food style_options, portions, neutral}","{food style_options, portions, neutral}"
|
| 222 |
+
"Go with some friends , wait the half hour or so with a cup of joe , and enjoy more than your average breakfast .","{restaurant general, null, positive};{food quality, breakfast, positive}","{restaurant general, null, positive}"
|
| 223 |
+
great service .,"{service general, service, positive}","{service general, service, positive}"
|
| 224 |
+
We were then charged for their most expensive sake ( $ 20 + per serving ) when we in fact drank a sake of less than half that price .,"{service general, null, negative}","{drinks prices, sake, negative};{service general, null, negative}"
|
| 225 |
+
Delicious,"{food quality, null, positive}","{food quality, null, positive}"
|
| 226 |
+
The chicken curry and chicken tikka masala are my favorite meat dishes .,"{food quality, chicken curry, positive};{food quality, chicken tikka masala, positive}","{food quality, chicken curry, positive};{food quality, chicken tikka masala, positive}"
|
| 227 |
+
"best restaurant in the world , great decor , great customer service , friendly manager","{ambience general, decor, positive};{service general, manager, positive};{service general, customer service, positive};{restaurant general, restaurant, positive}","{ambience general, decor, positive};{restaurant general, restaurant, positive};{service general, manager, positive};{service general, customer service, positive}"
|
| 228 |
+
Drinks were good .,"{drinks quality, Drinks, positive}","{drinks quality, Drinks, positive}"
|
| 229 |
+
"The presentation of the food was an added bonus , it looked just as great as it tasted !","{food quality, food, positive};{food style_options, food, positive}","{food style_options, presentation of the food, positive}"
|
| 230 |
+
"Even then , the order was not correct and we were still waiting for a couple items .","{service general, null, negative}","{service general, null, negative}"
|
| 231 |
+
– We were treated very rudely here one time for breakfast .,"{service general, null, negative}","{service general, null, negative}"
|
| 232 |
+
"Great food , spectacular location , and friendly service keep us coming back year after year .","{service general, service, positive};{food quality, food, positive};{location general, location, positive}","{location general, location, positive};{service general, service, positive};{food quality, food, positive}"
|
| 233 |
+
WOW ! ! ! ! ! ! ! !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 234 |
+
– Save yourself the waste of time & DO NOT visit .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 235 |
+
Food was good and cheap .,"{food quality, Food, positive};{food prices, Food, positive}","{food quality, Food, positive};{food prices, Food, positive}"
|
| 236 |
+
Mmm ... good !,"{restaurant general, null, positive}","{food quality, null, positive}"
|
| 237 |
+
Its great if you spent the day there and did n't want to drive to eat .,"{location general, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 238 |
+
Great value sushi with high quality & nice setting .,"{ambience general, setting, positive};{food quality, sushi, positive};{food prices, sushi, positive}","{ambience general, setting, positive};{food quality, sushi, positive};{food prices, sushi, positive}"
|
| 239 |
+
"It was so much though that I could barely finish but I did , since it was delicious .","{food style_options, null, neutral};{food quality, null, positive}","{food style_options, null, neutral};{food quality, null, positive}"
|
| 240 |
+
I love this restaurant,"{restaurant general, restaurant, positive}","{restaurant general, restaurant, positive}"
|
| 241 |
+
Not recommanded ! ! !,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 242 |
+
We stood there for 10 minutes while employees walked back and forth ignoring us .,"{service general, employees, negative}","{service general, employees, negative}"
|
| 243 |
+
My g/f and I both agreed the food was very mediocre especially considering the price .,"{food quality, food, negative};{food prices, food, negative}","{food quality, food, negative};{food prices, food, negative}"
|
| 244 |
+
"– The food is here is incredible , though the quality is inconsistent during lunch .","{food quality, food, positive};{food quality, lunch, negative}","{food quality, food, negative};{food quality, food, positive}"
|
| 245 |
+
I have not a bad thing to say about this place .,"{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 246 |
+
"the only problem is you really have to warm up the pizza before it 's edible , even when you order ahead .","{food quality, pizza, negative}","{food quality, pizza, negative}"
|
| 247 |
+
– This is my `` must bring out of town guests to `` restaurant and they always enjoy and rave about it .,"{restaurant general, restaurant, positive}","{restaurant miscellaneous, restaurant, positive}"
|
| 248 |
+
I had the kafta plate and I enjoyed it .,"{food quality, kafta plate, positive}","{food quality, kafta plate, positive}"
|
| 249 |
+
It was clear he didn ’ t really care .,"{service general, null, negative}","{service general, null, negative}"
|
| 250 |
+
The Caesar salad I ordered had so much lemon I could n't eat it .,"{food quality, Caesar salad, negative}","{food quality, Caesar salad, negative}"
|
| 251 |
+
"Our server continued to be attentive throughout the night , but I did remain puzzled by one issue : Who thinks that Ray 's is an appropriate place to take young children for dinner ?","{service general, server, positive}","{restaurant miscellaneous, Ray's, negative};{service general, server, positive}"
|
| 252 |
+
"Good Food , Great Service , Average Prices ( For the Strip )","{service general, Service, positive};{food quality, Food, positive};{restaurant prices, null, neutral}","{restaurant prices, null, neutral};{service general, Service, positive};{food quality, Food, positive}"
|
| 253 |
+
6pm on a Sat before a Broadway play and we were quickly seated and served .,"{service general, null, positive}","{service general, null, positive}"
|
| 254 |
+
They pay such detail to everything from miso soup to complex rolls .,"{food quality, rolls, positive};{food quality, miso soup, positive}","{food quality, miso soup, positive};{food quality, rolls, positive}"
|
| 255 |
+
$ 6 with tip .,"{restaurant prices, null, positive}","{service general, null, neutral}"
|
| 256 |
+
The atmosphere was great .,"{ambience general, atmosphere, positive}","{ambience general, atmosphere, positive}"
|
| 257 |
+
"In other words , if they aren 't making $ $ off of you then you do n't rate high on their 'service scale ' .","{service general, service, negative}","{service general, service scale, negative}"
|
| 258 |
+
– I really enjoyed my meal here .,"{food quality, meal, positive}","{food quality, meal, positive}"
|
| 259 |
+
"The music playing was very hip , 20-30 something pop music , but the subwoofer to the sound system was located under my seat , which became annoying midway through dinner .","{ambience general, subwoofer to the sound system, negative};{ambience general, music, positive}","{ambience general, music, positive};{ambience general, subwoofer, negative}"
|
| 260 |
+
Holy Hummus !,"{food quality, Hummus, positive}","{food quality, Hummus, positive}"
|
| 261 |
+
"For my entr & eacute ; e , I completely enjoyed the seared Alaskan sea scallops complemented by chard , artichoke hearts , fennel , and pecorino toscano .","{food quality, seared Alaskan sea scallops, positive};{food style_options, seared Alaskan sea scallops, positive}","{food quality, seared Alaskan sea scallops, positive}"
|
| 262 |
+
"The decor is rustic , traditional Japanese .","{ambience general, decor, neutral}","{ambience general, decor, positive}"
|
| 263 |
+
"Not only can the selection be innovative , but there 's a nice balance of traditional sushi as well .","{food style_options, selection, positive};{food style_options, sushi, positive}","{food style_options, selection, positive};{food quality, traditional sushi, positive}"
|
| 264 |
+
You are likely to be disappointed .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 265 |
+
"The food is great , the bartenders go that extra mile .","{service general, bartenders, positive};{food quality, food, positive}","{service general, bartenders, positive};{food quality, food, positive}"
|
| 266 |
+
The restaurant offers an extensive wine list and an ambiance you wo n't forget !,"{drinks style_options, wine list, positive};{ambience general, ambiance, positive}","{drinks style_options, wine list, positive};{ambience general, ambiance, positive}"
|
| 267 |
+
"The naan was some of the best I 've had and I really enjoyed the bhartha , not too tomatoey .","{food quality, naan, positive};{food quality, bhartha, positive}","{food quality, bhartha, positive};{food quality, naan, positive}"
|
| 268 |
+
To the owners of Open Sesame ... Bravo ... I ca n't wait to come back to dine at your restaurant !,"{restaurant general, Open Sesame, positive}","{restaurant general, Open Sesame, positive}"
|
| 269 |
+
"the fish was fresh , though it was cut very thin .","{food style_options, fish, negative};{food quality, fish, positive}","{food quality, fish, positive};{food style_options, fish, negative}"
|
| 270 |
+
Been there lots since and its always a good time .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 271 |
+
My favortie pizza joint in Seattle,"{restaurant general, pizza joint, positive}","{restaurant general, pizza joint, positive}"
|
| 272 |
+
i highly recommend this place to all that want to try indain food for the first time .,"{food quality, indain food, positive}","{restaurant miscellaneous, place, positive}"
|
| 273 |
+
Overrated,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 274 |
+
Worst Service I Ever Had,"{service general, Service, positive}","{service general, Service, negative}"
|
| 275 |
+
As it turns out the owner was seated right next to us and when he came over to check on our problems was very dismissive and offered a token 20 % discount on our bill .,"{service general, owner, negative}","{service general, owner, negative}"
|
| 276 |
+
I went there with some friends one night to play bingo and watch the sox game and it was a blast !,"{restaurant general, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 277 |
+
COMPLETELY OVER RATED !,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 278 |
+
"– Eggs , pancakes , potatoes , fresh fruit and yogurt -- everything they serve is delicious .","{food quality, Eggs, positive};{food quality, yogurt, positive};{food quality, null, positive};{food quality, fresh fruit, positive};{food quality, potatoes, positive};{food quality, pancakes, positive}","{food quality, null, positive}"
|
| 279 |
+
– Ray 's is THE place to go for high quality seafood dinners .,"{food quality, seafood dinners, positive}","{restaurant general, Ray's, positive}"
|
| 280 |
+
I also really enjoy the simplicity of the decor and intimate feeling of a small restaurant .,"{ambience general, decor, positive};{ambience general, feeling, positive}","{ambience general, decor, positive};{ambience general, restaurant, positive}"
|
| 281 |
+
We 're going back . : D,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 282 |
+
I should have thought to bring it up but never expected the food to be that mild .,"{food quality, food, negative}","{food quality, food, negative}"
|
| 283 |
+
"When I walked in , I was taken aback by their incredible wood decor .","{ambience general, wood decor, positive}","{ambience general, wood decor, positive}"
|
| 284 |
+
It 's a tiny place so if you get there before 8pm on a weekend ( Thurs ? Sun ) you will find it easier to get a table or a seat at the sushi bar .,"{restaurant miscellaneous, place, neutral}","{restaurant miscellaneous, place, neutral}"
|
| 285 |
+
Best Neighborhood Standby .,"{restaurant general, Standby, positive}","{restaurant general, null, positive}"
|
| 286 |
+
I 'd go back there in a heartbeat .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 287 |
+
"It 's *very * reasonably priced , esp for the quality of the food .","{food prices, food, positive}","{food prices, food, positive};{food quality, food, positive}"
|
| 288 |
+
"plenty of food , trust me .","{food style_options, food, positive}","{food style_options, food, positive}"
|
| 289 |
+
It 's the perfect spot for a romantic date for 2 or a secret rendezvous !,"{ambience general, spot, positive};{restaurant miscellaneous, spot, positive}","{ambience general, spot, positive}"
|
| 290 |
+
Also have great margaritas !,"{drinks quality, margaritas, positive}","{drinks quality, margaritas, positive}"
|
| 291 |
+
It 's unpretentious and underground .,"{ambience general, null, positive}","{ambience general, null, neutral}"
|
| 292 |
+
The place is the next best thing to my Moms cooking .,"{food quality, null, positive}","{food quality, place, positive}"
|
| 293 |
+
"The best place for a leisure Sunday breakfast amidst yachts , then take a stroll through the nearby Farmer 's Market .","{restaurant miscellaneous, place, positive}","{restaurant miscellaneous, place, positive}"
|
| 294 |
+
"If you can , come to this place by boat and make it a whole evening .","{restaurant miscellaneous, place, positive}","{restaurant miscellaneous, place, positive}"
|
| 295 |
+
for desert we had the mango ginger creme brulee ... oh la la yummy ! ! !,"{food quality, mango ginger creme brulee, positive}","{food quality, mango ginger creme brulee, positive}"
|
| 296 |
+
"Its worth the wait , especially since they 'll give you a call when the table is ready .","{restaurant general, null, positive}","{service general, null, positive}"
|
| 297 |
+
They have a wide variety of fish and they even list which oceans they come from ; Atlantic or Pacific .,"{food style_options, fish, positive}","{food style_options, null, positive}"
|
| 298 |
+
Well I guess it 's hard to be seated when one is invisible to the staff .,"{service general, staff, negative}","{service general, staff, negative}"
|
| 299 |
+
Great open and friendly ambience .,"{ambience general, ambience, positive}","{ambience general, ambience, positive}"
|
| 300 |
+
A brief conversation with the manager at the end of the meal was the greatest disappointment -- to say we had been `` blown off `` would be an understatement .,"{service general, manager, negative}","{service general, manager, negative}"
|
| 301 |
+
"Ray 's is something of a Seattle institution , but given its gorgeous Sound views , I had suspected that the accolades were more due to the scenery than to the food and service .","{location general, Sound views, positive}","{restaurant miscellaneous, Ray's, neutral};{location general, Sound views, positive}"
|
| 302 |
+
I swore never to return for a warm beer and mediocre meal .,"{drinks quality, beer, negative};{food quality, meal, negative}","{drinks quality, beer, negative};{food quality, meal, negative}"
|
| 303 |
+
"If it 's nice outside , request for a table in the balcony .","{ambience general, balcony, positive}","{ambience general, balcony, positive}"
|
| 304 |
+
Great food with an awesome atmosphere !,"{ambience general, atmosphere, positive};{food quality, food, positive}","{ambience general, atmosphere, positive};{food quality, food, positive}"
|
| 305 |
+
I ended the meal with the unusual dessert of a port and chocolate tasting ... yummy !,"{food quality, dessert of a port and chocolate tasting, positive}","{food quality, port and chocolate tasting, positive}"
|
| 306 |
+
I got the shellfish and shrimp appetizer and it was alright .,"{food quality, shellfish and shrimp appetizer, neutral}","{food quality, shellfish and shrimp appetizer, neutral}"
|
| 307 |
+
The pizza ’ s are thin crust and the menu offers very creative combinations and toppings .,"{food style_options, menu, positive};{food style_options, pizza ’ s, positive}","{food style_options, pizza ’ s, positive};{food style_options, menu, positive}"
|
| 308 |
+
It 's a great place to enjoy food and meet friends .,"{restaurant miscellaneous, place, positive};{food quality, food, positive}","{restaurant miscellaneous, place, positive}"
|
| 309 |
+
"The service was excellent , the coffee was good even by starbucks standards and the food was outstanding .","{service general, service, positive};{food quality, food, positive};{drinks quality, coffee, positive}","{service general, service, positive};{food quality, food, positive};{drinks quality, coffee, positive}"
|
| 310 |
+
This is the place to relax and enjoy the finest quality food the industry can offer .,"{ambience general, place, positive};{food quality, food, positive}","{food quality, food, positive};{ambience general, place, positive}"
|
| 311 |
+
I would go back for the wine experience alone .,"{drinks quality, wine, positive}","{drinks quality, wine experience, positive}"
|
| 312 |
+
The best calamari in Seattle !,"{food quality, calamari, positive}","{food quality, calamari, positive}"
|
| 313 |
+
The presentation of Snooze is excellent and it is one of those places that you feel more sophisticated just for being there ; but peel back the layers and you have an overpriced IHOP with a high brow menu .,"{food style_options, menu, negative};{restaurant prices, Snooze, negative};{ambience general, Snooze, positive}","{ambience general, presentation, positive};{restaurant prices, Snooze, negative};{food style_options, menu, positive}"
|
| 314 |
+
"I complained to the manager , but he was not even apologetic .","{service general, manager, negative}","{service general, manager, negative}"
|
| 315 |
+
Much more than just a great view !,"{location general, view, positive}","{location general, view, positive}"
|
| 316 |
+
The atmosphere was just okay .,"{ambience general, atmosphere, neutral}","{ambience general, atmosphere, neutral}"
|
| 317 |
+
Once seated it took about 30 minutes to finally get the meal .,"{service general, null, negative}","{service general, null, negative}"
|
| 318 |
+
"– In a age of incremental cost cutting in restaurants , its nice to see a place that bucks that trend , and just plain delivers high quality food and good service , period .","{service general, service, positive};{food quality, food, positive}","{restaurant prices, place, positive};{service general, service, positive};{food quality, food, positive}"
|
| 319 |
+
I liked the atmosphere very much but the food was not worth the price .,"{ambience general, atmosphere, positive};{food quality, food, negative};{food prices, food, negative}","{ambience general, atmosphere, positive};{food quality, food, negative};{food prices, food, negative}"
|
| 320 |
+
"It 's located in a strip mall near the Beverly Center , not the greatest location , but the food keeps me coming back for more .","{location general, location, neutral};{food quality, food, positive}","{location general, location, negative};{food quality, food, positive}"
|
| 321 |
+
"On my meal I had to send back my eggs for a simple request of breaking the yokes before cooking , and would have had to send them back again if I hadn 't rejected the meal all together .","{food quality, meal, negative};{food quality, eggs, negative}","{food quality, meal, negative};{service general, null, negative}"
|
| 322 |
+
The band was very good and the service was attentive .,"{service general, service, positive};{ambience general, band, positive}","{ambience general, band, positive};{service general, service, positive}"
|
| 323 |
+
"– How to describe the best sushi in NYC : hmmmm , delicious , amazing , fantastic , suculent , perfect , nah , all of the above .","{food quality, sushi, positive}","{food quality, sushi, positive}"
|
| 324 |
+
"– Schooner or Later 's charming location along the marina in Long Beach and average food does not , unfortunately , compensate for its very poor customer service .","{location general, location along the marina in Long Beach, positive};{service general, customer service, negative};{food quality, food, neutral}","{service general, customer service, negative};{location general, location, positive};{food quality, food, neutral}"
|
| 325 |
+
"We were seated right away , the table was private and nice .","{ambience general, table, positive}","{ambience general, table, positive};{service general, null, positive}"
|
| 326 |
+
"good sake , good food – i honestly do n't know much about japanese food at all .","{drinks quality, sake, positive};{food quality, food, positive}","{drinks quality, sake, positive};{food quality, food, positive}"
|
| 327 |
+
Bring your cell phone cause you may have to wait to get into the best sushi restaurant in the world : BLUE RIBBON SUSHI .,"{restaurant general, BLUE RIBBON SUSHI, positive}","{restaurant general, BLUE RIBBON SUSHI, positive}"
|
| 328 |
+
"In the end our check came to $ 27 for 4 small pancakes , a breakfast burrito , an orange juice and an iced tea ( I had water ) .","{food prices, breakfast burrito, negative};{drinks prices, iced tea, negative};{food style_options, pancakes, negative};{drinks prices, orange juice, negative};{food prices, pancakes, negative}","{food prices, check, negative};{food prices, iced tea, negative};{food prices, orange juice, negative};{food prices, breakfast burrito, negative};{food prices, 4 small pancakes, negative}"
|
| 329 |
+
Good food !,"{food quality, food, positive}","{food quality, food, positive}"
|
| 330 |
+
"The catering is out of this world , and Raouls chicken vegetable soup rocks my world ! ! !","{food quality, Raouls chicken vegetable soup, positive};{food quality, catering, positive}","{food quality, chicken vegetable soup, positive};{service general, catering, positive}"
|
| 331 |
+
I should have just asked for the check when I saw that ; but their menu was so unique that I continued .,"{food style_options, menu, positive}","{food style_options, menu, positive}"
|
| 332 |
+
Great Breakfast,"{food quality, Breakfast, positive}","{food quality, Breakfast, positive}"
|
| 333 |
+
Seabass on lobster risotto was the best .,"{food quality, Seabass on lobster risotto, positive}","{food quality, Seabass on lobster risotto, positive}"
|
| 334 |
+
– The atmosphere is great for any special occasion you might want to celebrate .,"{ambience general, atmosphere, positive}","{ambience general, atmosphere, positive}"
|
| 335 |
+
"Great seasonal fish and seafood , with a classy waterfront setting .","{food quality, seasonal fish, positive};{ambience general, waterfront setting, positive};{food quality, seafood, positive}","{food quality, seasonal fish and seafood, positive};{ambience general, waterfront setting, positive}"
|
| 336 |
+
The pizza ’ s are not huge and the crust is thin ... keep that in mind when you ’ re ordering .,"{food style_options, pizza ’ s, neutral};{food style_options, crust, neutral}","{food style_options, pizza ’ s, neutral}"
|
| 337 |
+
The only positive thing about Mioposto is the nice location .,"{location general, location, positive}","{location general, location, positive}"
|
| 338 |
+
I appreciate their delivery too .,"{service general, delivery, positive}","{service general, delivery, positive}"
|
| 339 |
+
Very disappointed .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 340 |
+
The pizza is delicious and the salads are fantastic .,"{food quality, pizza, positive};{food quality, salads, positive}","{food quality, pizza, positive};{food quality, salads, positive}"
|
| 341 |
+
Freshest sushi – I love this restaurant .,"{food quality, sushi, positive};{restaurant general, restaurant, positive}","{food quality, sushi, positive}"
|
| 342 |
+
The steak was done to my exact liking ( medium rare ) and was nice and juicy .,"{food quality, steak, positive}","{food quality, steak, positive}"
|
| 343 |
+
"Seriously , you ca n't go wrong , if it is unpretentious local fun you seek .","{ambience general, null, positive}","{restaurant general, null, positive}"
|
| 344 |
+
The owners are great fun and the beer selection is worth staying for .,"{drinks style_options, beer selection, positive};{service general, owners, positive}","{drinks style_options, beer selection, positive};{service general, owners, positive}"
|
| 345 |
+
Great draft and bottle selection and the pizza rocks .,"{food quality, pizza, positive};{drinks style_options, draft and bottle selection, positive}","{drinks style_options, draft and bottle selection, positive};{food quality, pizza, positive}"
|
| 346 |
+
"I guarantee you wo n't be disappointed , there 's also valet parking .","{restaurant general, null, positive};{restaurant miscellaneous, null, positive}","{restaurant general, null, positive};{service general, null, positive}"
|
| 347 |
+
Late night dinning with exeptional food .,"{food quality, food, positive}","{food quality, food, positive};{restaurant miscellaneous, null, positive}"
|
| 348 |
+
"The portions are big though , so do not order too much .","{food style_options, portions, neutral}","{food style_options, portions, neutral}"
|
| 349 |
+
Service was decent .,"{service general, Service, neutral}","{service general, Service, neutral}"
|
| 350 |
+
Absolutely delicious .,"{food quality, null, positive}","{food quality, null, positive}"
|
| 351 |
+
"Oh , and the cheese fries are awesome !","{food quality, cheese fries, positive}","{food quality, cheese fries, positive}"
|
| 352 |
+
Everyone that sat in the back outside agreed that it was the worst service we had ever received .,"{service general, service, negative}","{service general, service, negative}"
|
| 353 |
+
I may not be a sushi guru but I can tell you that the food here is just okay and that there is not much else to it .,"{food quality, food, negative}","{food quality, food, neutral}"
|
| 354 |
+
"Excellent food , nice ambience , fairly expensive","{ambience general, ambience, positive};{restaurant prices, null, negative};{food quality, food, positive}","{restaurant prices, null, negative};{ambience general, ambience, positive};{food quality, food, positive}"
|
| 355 |
+
"Melt in your mouth nigiri and sashmi , and very tasty rolls too .","{food quality, rolls, positive};{food quality, nigiri, positive};{food quality, sashmi, positive}","{food quality, rolls, positive};{food quality, nigiri, positive};{food quality, sashmi, positive}"
|
| 356 |
+
Finally a meal that you will remember for a long time !,"{food quality, meal, positive}","{food quality, meal, positive}"
|
| 357 |
+
"Best food , phenominal service","{service general, service, positive};{food quality, food, positive}","{service general, service, positive};{food quality, food, positive}"
|
| 358 |
+
I recommend it for a night when you want to splurge ! ( it was a bit expensive ),"{restaurant prices, null, negative};{restaurant general, null, positive}","{restaurant prices, null, negative};{restaurant general, null, positive}"
|
| 359 |
+
"While this diner had reasonably good food , the restaurant staff seemed completely indifferent to our presence , and this attitude was reflected in the lack of service .","{service general, restaurant staff, negative};{food quality, food, positive}","{service general, restaurant staff, negative};{food quality, food, positive};{service general, service, negative}"
|
| 360 |
+
No Comparison,"{restaurant general, null, positive}","{restaurant general, null, neutral}"
|
| 361 |
+
"so about the prawns , they were fresh and had a slight crispiness about the batter ... soooo good ... the walnuts were cut in smaller pieces and very crunchy and tasty .","{food quality, batter, positive};{food quality, prawns, positive};{food quality, walnuts, positive}","{food quality, prawns, positive};{food quality, walnuts, positive}"
|
| 362 |
+
I am so happy to have a wonderful Italian restaurant in my neighborhood .,"{restaurant general, Italian restaurant, positive}","{restaurant general, Italian restaurant, positive}"
|
| 363 |
+
We waited for an hour to be seated .,"{service general, null, negative}","{service general, null, negative}"
|
| 364 |
+
"We put in our order and although we ordered 4 appetizers , the food did n't arrive until 45 minutes later ... WITH OUR MAIN COURSE .","{service general, null, negative}","{service general, null, negative}"
|
| 365 |
+
I can not wait to go back again this coming weekend !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 366 |
+
"If you 're interested in good tasting ( without the fish taste or smell ) , large portions and creative sushi dishes this is your place ...","{food quality, null, positive};{food style_options, sushi dishes, positive};{food style_options, portions, positive}","{food style_options, portions, positive};{food quality, sushi dishes, positive};{food quality, null, positive}"
|
| 367 |
+
A perfect place to take out of town guests any time of the year .,"{restaurant general, place, positive}","{restaurant miscellaneous, place, positive}"
|
| 368 |
+
"I had a taste of all three items on her plate , and they were superb .","{food quality, plate, positive}","{food quality, items on her plate, positive}"
|
| 369 |
+
Good for late night dining ( last minute planning ) without reservations .,"{restaurant miscellaneous, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 370 |
+
i am never disappointed with there food .,"{food quality, food, positive}","{food quality, food, positive}"
|
| 371 |
+
– By far the best bar in the east village ...,"{restaurant general, bar, positive}","{drinks quality, bar, positive}"
|
| 372 |
+
It 's a great place to people watch .,"{restaurant miscellaneous, place, positive}","{ambience general, place, positive}"
|
| 373 |
+
"Space was limited , but the food made up for it .","{restaurant miscellaneous, Space, negative};{food quality, food, positive}","{ambience general, Space, negative};{food quality, food, positive}"
|
| 374 |
+
The scallops are apparently cooked in a black olive butter which really makes them unique ( not to mention tasty ) .,"{food quality, scallops, positive};{food style_options, scallops, positive}","{food quality, scallops, positive};{food style_options, scallops, positive}"
|
| 375 |
+
This place is charming and relaxing .,"{ambience general, place, positive}","{ambience general, place, positive}"
|
| 376 |
+
not chewy at all .,"{food quality, null, positive}","{food quality, null, positive}"
|
| 377 |
+
We were only in Seattle for one night and I 'm so glad we picked Rays for dinner !,"{restaurant general, Rays, positive}","{restaurant general, Rays, positive}"
|
| 378 |
+
"– I will never forget the amazing meal , service , and ambiance I experience at this restaurant .","{ambience general, ambiance, positive};{food quality, meal, positive};{service general, service, positive}","{ambience general, ambiance, positive};{service general, service, positive};{food quality, meal, positive}"
|
| 379 |
+
Amazing Spanish Mackeral special appetizer and perfect box sushi ( that eel with avodcao -- um um um ) .,"{food quality, box sushi, positive};{food quality, Spanish Mackeral special appetizer, positive};{food quality, eel with avodcao, positive}","{food quality, box sushi, positive};{food quality, Spanish Mackeral special appetizer, positive};{food quality, eel with avodcao, positive}"
|
| 380 |
+
"On weekends , you might have to wait for couple hours .","{service general, null, neutral}","{service general, null, negative}"
|
| 381 |
+
– The food was not great & the waiters were rude .,"{food quality, food, negative};{service general, waiters, negative}","{food quality, food, negative};{service general, waiters, negative}"
|
| 382 |
+
"The 9 oz steak came next and it tasted great , at least initially .","{food quality, 9 oz steak, positive}","{food quality, 9 oz steak, positive}"
|
| 383 |
+
When I got there I sat up stairs where the atmosphere was cozy & the service was horrible !,"{ambience general, atmosphere, positive};{service general, service, negative}","{service general, service, negative};{ambience general, atmosphere, positive}"
|
| 384 |
+
"The wine list is incredible and extensive and diverse , the food is all incredible and the staff was all very nice , good at their jobs and cultured .","{drinks style_options, wine list, positive};{service general, staff, positive};{food quality, food, positive}","{service general, staff, positive};{drinks style_options, wine list, positive};{food quality, food, positive}"
|
| 385 |
+
– IT CANT GET ANY BETTER ! ! ! ! !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 386 |
+
Sunday afternoons there is a band playing and it is lots of fun .,"{ambience general, band, positive}","{ambience general, band, positive}"
|
| 387 |
+
"Everything , and I mean everything on the menu is delectable .","{food quality, menu, positive}","{food quality, menu, positive}"
|
| 388 |
+
"I know many people have their favorite types of pizza and pizza places , but Mioposto 's pizza lacks quality and good taste .","{food quality, pizza, negative}","{food quality, pizza, negative}"
|
| 389 |
+
"There is only one place on the east coast that has it all , plus a lot more .","{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 390 |
+
Always a winner .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 391 |
+
The prior reviews said Kid friendly ... give me a break with two young children that is light years .,"{restaurant miscellaneous, null, negative}","{restaurant miscellaneous, null, negative}"
|
| 392 |
+
The pizza ’ s are light and scrumptious .,"{food quality, pizza ’ s, positive}","{food quality, pizza ’ s, positive}"
|
| 393 |
+
"Check out the art on the walls , very colorful !","{ambience general, art on the walls, positive}","{ambience general, art on the walls, positive}"
|
| 394 |
+
Mediocre food,"{food quality, food, neutral}","{food quality, food, negative}"
|
| 395 |
+
I will never return again .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 396 |
+
We had a very hard time getting the waitress ' attention and finally had to get up and go inside to speak to a manager .,"{service general, waitress, negative}","{service general, waitress, negative}"
|
| 397 |
+
Never too crowded and always great service .,"{restaurant miscellaneous, null, positive};{service general, service, positive}","{restaurant miscellaneous, null, positive};{service general, service, positive}"
|
| 398 |
+
you are with a hot date and he /she has an urge for sushi ... then this might be the place .,"{food quality, sushi, positive}","{restaurant miscellaneous, place, positive}"
|
| 399 |
+
"Can get busy on Fridays for a table but once seated , the service is so efficient you can be in and out of there quickly .","{service general, service, positive}","{service general, service, positive}"
|
| 400 |
+
"It ? s served with either a peppercorn sauce or red wine reduction , though both were indistinguishable in taste .","{food quality, red wine reduction, neutral};{food quality, peppercorn sauce, neutral}","{food quality, red wine reduction, negative};{food quality, peppercorn sauce, negative}"
|
| 401 |
+
The nicest waiters in town .,"{service general, waiters, positive}","{service general, waiters, positive}"
|
| 402 |
+
The service was courteous and attentive .,"{service general, service, positive}","{service general, service, positive}"
|
| 403 |
+
As of writing this I just tried their give away a link again & it still doesn 't work .,"{restaurant miscellaneous, null, negative}","{restaurant miscellaneous, null, negative}"
|
| 404 |
+
any further needs we may have had could not have been met since no one stopped by the table .,"{service general, null, negative}","{service general, null, negative}"
|
| 405 |
+
"Good Sushi , High Price","{food quality, Sushi, positive};{food prices, Sushi, negative}","{food quality, Sushi, positive};{food prices, Sushi, negative}"
|
| 406 |
+
But the servers were extremely attentive and very friendly .,"{service general, servers, positive}","{service general, servers, positive}"
|
| 407 |
+
"I have been to this place , folks and it is BAD .","{restaurant general, place, negative}","{restaurant general, place, negative}"
|
| 408 |
+
great service,"{service general, service, positive}","{service general, service, positive}"
|
| 409 |
+
It was like dining at a completely different restaurant .,"{restaurant general, null, positive}","{restaurant general, null, negative}"
|
| 410 |
+
Two thumbs up !,"{food quality, null, positive}","{restaurant general, null, positive}"
|
| 411 |
+
Imagine my happy surprise upon finding that the views are only the third-best thing about Ray 's !,"{location general, views, positive}","{location general, views, positive}"
|
| 412 |
+
"Hands down , the best tuna I have ever had .","{food quality, tuna, positive}","{food quality, tuna, positive}"
|
| 413 |
+
"If you 're going to see Danny Gans or just staying at the Mirage , do n't miss this one .","{restaurant general, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 414 |
+
great lunch spot,"{restaurant general, lunch spot, positive}","{restaurant general, lunch spot, positive}"
|
| 415 |
+
I love breakfast here .,"{food quality, breakfast, positive}","{food quality, breakfast, positive}"
|
| 416 |
+
The sashimi was the freshest and most tender I have ever tasted .,"{food quality, sashimi, positive}","{food quality, sashimi, positive}"
|
| 417 |
+
You won ’ t be disappointed by their menu .,"{food style_options, menu, positive}","{food quality, menu, positive}"
|
| 418 |
+
"Many people talk about the great pizza and poor service , so it ca n't just be the rantings of a few dissatisfied customers .","{food quality, pizza, positive};{service general, service, negative}","{service general, service, negative};{food quality, pizza, positive}"
|
| 419 |
+
I will not go back .,"{restaurant general, null, negative}","{restaurant general, null, negative}"
|
| 420 |
+
my service was stellar !,"{service general, service, positive}","{service general, service, positive}"
|
| 421 |
+
we are for sure coming back to this restaurant .,"{restaurant general, restaurant, positive}","{restaurant general, restaurant, positive}"
|
| 422 |
+
Will definitely be back .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 423 |
+
Maybe it is good for that one night once in a blue moon when the chefs decide to use fish that 's half-way decent .,"{food quality, fish, negative}","{food quality, chefs, positive};{food quality, fish, positive}"
|
| 424 |
+
"– I 've been to Open Sesame only once , but I 'm still reeling from the experience ! !","{restaurant general, Open Sesame, positive}","{restaurant general, Open Sesame, negative}"
|
| 425 |
+
The pancakes were certainly inventive but $ 8.50 for 3 - 6 `` pancakes ( one of them was more like 5 `` ) in the pancake flight ( sample of 3 different pancakes ) is well over-priced .,"{food prices, pancakes, negative};{food style_options, pancakes, positive}","{food style_options, pancake flight ( sample of 3 different pancakes ), negative};{food prices, pancake flight ( sample of 3 different pancakes ), negative};{food quality, pancakes, positive}"
|
| 426 |
+
"HOWEVER , one Sunday afternoon my husband and I did go ( although with my loud protests ) and were pleasantly surprised .","{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 427 |
+
Well worth it,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 428 |
+
Caution - its real food for people who love the best .,"{food quality, food, positive}","{food quality, food, positive}"
|
| 429 |
+
I have a but here - there was a bathroom attendant in the restroom which was odd .,"{restaurant miscellaneous, restroom, negative}","{ambience general, bathroom attendant, negative}"
|
| 430 |
+
The best dish are the honwy walnut prawns -- just outstanding .,"{food quality, honwy walnut prawns, positive}","{food quality, honwy walnut prawns, positive}"
|
| 431 |
+
The pancakes should be larger ( at least 8 `` ) to justify the expense even with the unique offerings .,"{food style_options, pancakes, negative}","{food style_options, pancakes, negative};{food quality, offerings, positive};{food prices, pancakes, negative}"
|
| 432 |
+
– My first time to dine at this restaurant was with my son and it was absolutely horrible !,"{restaurant general, restaurant, negative}","{restaurant general, restaurant, negative}"
|
| 433 |
+
Excellent,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 434 |
+
"Parking is reasonably good , they have their own lot and you can park in the park nearby .","{restaurant miscellaneous, null, positive}","{parking general, null, positive};{parking general, lot, positive}"
|
| 435 |
+
Caesar salad was superb .,"{food quality, Caesar salad, positive}","{food quality, Caesar salad, positive}"
|
| 436 |
+
"– I do n't understand how I was a stranger to this place for so long ... the fajita salad , the colorado , the fajitas - EVERYTHING is delicious .","{food quality, colorado, positive};{food quality, fajitas, positive};{food quality, fajita salad, positive}","{food quality, fajitas, positive};{food quality, colorado, positive};{food quality, fajita salad, positive};{restaurant general, place, positive}"
|
| 437 |
+
best chinese food i have tasted in a long time,"{food quality, chinese food, positive}","{food quality, chinese food, positive}"
|
| 438 |
+
The price was right too .,"{restaurant prices, null, positive}","{restaurant prices, null, positive}"
|
| 439 |
+
Delicious ... !,"{food quality, null, positive}","{food quality, null, positive}"
|
| 440 |
+
We put out name down and although there were open tables we were told that it 'd be a 30 minute wait .,"{service general, null, negative}","{service general, null, negative}"
|
| 441 |
+
"The coffe is very good , too .","{drinks quality, coffe, positive}","{drinks quality, coffe, positive}"
|
| 442 |
+
We waited over 30 minutes for our drinks and over 1 1 /2 hours for our food .,"{service general, null, negative}","{service general, null, negative}"
|
| 443 |
+
The servers behind the counter are always friendly and helpful .,"{service general, servers behind the counter, positive}","{service general, servers, positive}"
|
| 444 |
+
"Our waiter was non-existent and after our food finally arrived over an hour after we ordered , we were not given any water or utensils .","{service general, waiter, negative}","{service general, waiter, negative};{service general, null, negative};{service general, null, negative}"
|
| 445 |
+
– This place is unbelievably over-rated .,"{restaurant general, place, negative}","{restaurant general, place, negative}"
|
| 446 |
+
Very poor customer service .,"{service general, customer service, negative}","{service general, customer service, negative}"
|
| 447 |
+
We ’ re can ’ t say enough about their delicious gourmet pizza ’ s !,"{food quality, pizza ’ s, positive}","{food quality, gourmet pizza ’ s, positive}"
|
| 448 |
+
"Furthermore , while the fish is unquestionably fresh , rolls tend to be inexplicably bland .","{food quality, rolls, negative};{food quality, fish, positive}","{food quality, rolls, negative};{food quality, fish, positive}"
|
| 449 |
+
The only drawback is the crowded seating and the slow service .,"{restaurant miscellaneous, seating, negative};{service general, service, negative}","{ambience general, seating, negative};{service general, service, negative}"
|
| 450 |
+
"Not alot of smoking places left in New York , but I have found my favorite smoking balconey in the city .","{restaurant miscellaneous, balconey, positive}","{restaurant miscellaneous, balconey, positive}"
|
| 451 |
+
We shared the family platter and I especially enjoyed the black cod in sake kasu .,"{food quality, black cod in sake kasu, positive}","{food quality, black cod in sake kasu, positive};{food style_options, family platter, positive}"
|
| 452 |
+
"But the space is small and lovely , and the service is helpful .","{service general, service, positive};{ambience general, space, positive}","{ambience general, space, positive};{service general, service, positive}"
|
| 453 |
+
It was worth the wait .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 454 |
+
yummy .,"{food quality, null, positive}","{food quality, null, positive}"
|
| 455 |
+
Delectable,"{food quality, null, positive}","{food quality, null, positive}"
|
| 456 |
+
- Mediocre Service / Quality,"{service general, Service, neutral}","{service general, Service, negative};{food quality, null, negative}"
|
| 457 |
+
"– This is one of my top lunch spots , huge portions , fast service and amazing margaritas ! !","{drinks quality, margaritas, positive};{restaurant general, null, positive};{food style_options, portions, positive};{service general, service, positive}","{food style_options, portions, positive};{drinks quality, margaritas, positive};{service general, service, positive}"
|
| 458 |
+
Best Crab Cakes in Town,"{food quality, Crab Cakes, positive}","{food quality, Crab Cakes, positive}"
|
| 459 |
+
"Everything I 've had here is good , taco salads , burritos , enchiladas i love this place .","{food quality, null, positive};{food quality, taco salads, positive};{restaurant general, place, positive};{food quality, burritos, positive};{food quality, enchiladas, positive}","{restaurant general, place, positive};{food quality, taco salads, positive};{food quality, burritos, positive};{food quality, enchiladas, positive}"
|
| 460 |
+
"Great Pizza , Poor Service","{service general, Service, negative};{food quality, Pizza, positive}","{food quality, Pizza, positive};{service general, Service, negative}"
|
| 461 |
+
splendid,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 462 |
+
My best friend had the chicken shawarma and she STILL raves about it being the best anywhere !,"{food quality, chicken shawarma, positive}","{food quality, chicken shawarma, positive}"
|
| 463 |
+
Chintzy portions,"{food style_options, portions, negative}","{food style_options, portions, negative}"
|
| 464 |
+
Good eats .,"{food quality, eats, positive}","{food quality, eats, positive}"
|
| 465 |
+
"Normally , places ask how hot you want it , but they did n't .","{service general, null, negative}","{service general, null, negative}"
|
| 466 |
+
"I 've always found the wait staff and , if you sit at the bar , the cooks very friendly .","{service general, cooks, positive}","{service general, wait staff, positive};{service general, cooks, positive}"
|
| 467 |
+
Nothing on the menu is less than amazing .,"{food quality, menu, positive}","{food quality, menu, positive}"
|
| 468 |
+
"My party of two was feeling particularly ambitious , and we splurged on the Shilshole Sampler ... a beautiful assortment of enormous white gulf prawns , smoked albacore tuna , Ray 's fantastic manila clams seasoned with dill , scallops in a tasty soy dressing , and a tiny pile of Dungeness crab atop a sublime butter sauce .","{food style_options, white gulf prawns, positive};{food quality, butter sauce, positive};{food quality, soy dressing, positive};{food style_options, Shilshole Sampler, positive};{food quality, manila clams, positive}","{food quality, Shilshole Sampler, positive};{food style_options, Shilshole Sampler, positive};{food prices, Shilshole Sampler, negative};{food quality, scallops in a tasty soy dressing, positive};{food quality, white gulf prawns, positive};{food quality, Dungeness crab, positive};{food quality, smoked albacore tuna, positive};{food quality, manila clams seasoned with dill, positive}"
|
| 469 |
+
"I was frankly shocked when I read the bad reviews - this place is fantastic ; it has not let us down in any way , and we 've eaten here more than 10 times .","{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 470 |
+
"Your a sushi fan , you love expertly cut fish , great sake , a killer SOHO location , and of course : Salmon , Tuna , Fluke , Yellow Tail , Cod , Mackeral , Jellyfish , Sea Urchin , Shrimp , Lobster , Sea Bream , Trout , Milk Fish , Blue Fin Tuna , Eel , Crab , Sardine , Monk Fish , Roe , Scallop , Oysters , and a varity of Toro .","{food quality, sushi, positive};{food style_options, fish, positive};{location general, SOHO location, positive};{food style_options, Toro, positive};{drinks quality, sake, positive}","{food quality, null, positive};{location general, location, positive};{drinks quality, sake, positive};{food style_options, null, positive}"
|
| 471 |
+
The service is fantastic at this fun place .,"{restaurant general, place, positive};{service general, service, positive}","{service general, service, positive};{ambience general, place, positive}"
|
| 472 |
+
"Also , there was only one bathroom stall- probably need more for such big crowds .","{restaurant miscellaneous, bathroom stall, negative}","{ambience general, bathroom stall, negative}"
|
| 473 |
+
We left without ever getting service .,"{service general, service, negative}","{service general, service, negative}"
|
| 474 |
+
I liked it .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 475 |
+
– I highly recommend Mioposto .,"{restaurant general, Mioposto, positive}","{restaurant general, Mioposto, positive}"
|
| 476 |
+
"The food is fantastic , authentic , delicious and very , very affordable .","{food quality, food, positive};{food prices, food, positive}","{food quality, food, positive};{food prices, food, positive}"
|
| 477 |
+
I have eaten here three times and have found the quality and variety of the fish to be excellent .,"{food style_options, fish, positive};{food quality, fish, positive}","{food quality, fish, positive};{food style_options, variety of the fish, positive}"
|
| 478 |
+
"But she is very friendly with certain people , making it even more annoying .","{service general, null, negative}","{service general, null, negative}"
|
| 479 |
+
The regular menu here is slightly above average that is not worth the snotty attitude that you receive .,"{food quality, regular menu, neutral};{service general, null, negative}","{food quality, regular menu, neutral};{service general, null, negative}"
|
| 480 |
+
"Also , they serve THE best hummus in America , with a drizzle of fragrant olive oil ( which , I believe is the traditional way ) !","{food quality, hummus, positive};{food style_options, hummus, positive}","{food quality, hummus, positive};{food style_options, hummus, positive};{food quality, olive oil, positive}"
|
| 481 |
+
great beer,"{drinks quality, beer, positive}","{drinks quality, beer, positive}"
|
| 482 |
+
Seafood Plus,"{food quality, Seafood, positive}","{restaurant general, Seafood Plus, positive}"
|
| 483 |
+
"it is sad there is not many people who frequent eating at places like these that look pricey because they are at the hotel ... but they are definitely one you dont want to miss , esp if your in downtown san jose .","{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 484 |
+
"They serve it in a tall , skinny hour-glass shaped glass to disguise the fact that you a getting a small juice at the price of a half gallon in a supermarket .","{drinks style_options, juice, negative};{drinks prices, juice, negative}","{drinks style_options, glass, negative};{drinks prices, null, negative}"
|
| 485 |
+
"The food was ok , but the service was so poor that the food was cold buy the time everyone in my party was served .","{service general, service, negative};{food quality, food, neutral}","{service general, service, negative};{food quality, food, negative}"
|
| 486 |
+
great meal – the fish on the omikase platter was absolutely decadent -- there was none of the stringiness that sometimes accompanies fair sushi -- this fish was perfect ! ! ! !,"{food quality, fish on the omikase platter, positive};{food quality, meal, positive}","{food quality, fish on the omikase platter, positive};{food quality, meal, positive}"
|
| 487 |
+
"Drinks are suberb , and I feel like I am in a Third World country when I walk in the door .","{drinks quality, Drinks, positive};{ambience general, null, positive}","{drinks quality, Drinks, positive};{ambience general, null, positive}"
|
| 488 |
+
Open & Cool Place with the Best Pizza and Coffee,"{food quality, Pizza, positive};{ambience general, Place, positive};{drinks quality, Coffee, positive}","{ambience general, Place, positive};{food quality, Pizza, positive};{drinks quality, Coffee, positive}"
|
| 489 |
+
Green Tea creme brulee is a must !,"{food quality, Green Tea creme brulee, positive}","{food quality, Green Tea creme brulee, positive}"
|
| 490 |
+
I found a new home and just moved with a long lease .,"{restaurant general, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 491 |
+
"They aren 't the most talkative , but everytime I 've been there they have been very busy , which probably accounts for the lack of conversation .","{service general, null, neutral}","{service general, null, neutral}"
|
| 492 |
+
"The pizza itself is not exactly the best I 've had EVER , but still pretty good .","{food quality, pizza, positive}","{food quality, pizza, positive}"
|
| 493 |
+
"We did have the same waiter the second time , so maybe the service is spotty and our luck is good .","{service general, waiter, positive}","{service general, waiter, positive};{service general, service, negative}"
|
| 494 |
+
– Thats a big statement considering I 've been pulling crab traps and making the cakes myself since I was about seven - but something about these little devils gets better every time .,"{food quality, cakes, positive}","{food quality, crab cakes, positive}"
|
| 495 |
+
Fabulous Italian Food !,"{food quality, Italian Food, positive}","{food quality, Italian Food, positive}"
|
| 496 |
+
"However , this place is a gem , and I wo n't stop going back .","{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 497 |
+
"it gets really busy , so get there on the early side so you can grab a seat , if you do have to wait , its not bad because the service is quick !","{service general, service, positive}","{service general, service, positive};{ambience general, null, neutral}"
|
| 498 |
+
"The dinner only took us about an hour and the prices were alright for the strip , almost $ 50 /pp after tax and tip ( about average ) .","{restaurant prices, null, neutral}","{restaurant prices, null, neutral};{service general, null, positive}"
|
| 499 |
+
The onion rings are great !,"{food quality, onion rings, positive}","{food quality, onion rings, positive}"
|
| 500 |
+
If you 're in the area you shouldn 't be disappointed .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 501 |
+
– Great financial district mexican spot .,"{restaurant general, mexican spot, positive}","{restaurant general, mexican spot, positive}"
|
| 502 |
+
The house special roll is really good .,"{food quality, house special roll, positive}","{food quality, house special roll, positive}"
|
| 503 |
+
The waiters are very experienced and helpful with pairing your drink choice to your food tastes or vice versa .,"{service general, waiters, positive}","{service general, waiters, positive}"
|
| 504 |
+
Perfection .,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 505 |
+
Poor customer service / poor pizza .,"{food quality, pizza, negative};{service general, customer service, negative}","{service general, customer service, negative};{food quality, pizza, negative}"
|
| 506 |
+
"Overall , I would go back and eat at the restaurant again .","{restaurant general, restaurant, positive}","{restaurant general, restaurant, positive}"
|
| 507 |
+
Server made several sake suggestions which were very good .,"{drinks quality, sake, positive};{service general, Server, positive}","{drinks quality, sake suggestions, positive}"
|
| 508 |
+
My only negative comment is that I wish the pieces were a little bigger .,"{food style_options, pieces, negative}","{food style_options, pieces, negative}"
|
| 509 |
+
"I picked the asparagus , which turned out to be incredible and perfectly prepared .","{food quality, asparagus, positive}","{food quality, asparagus, positive}"
|
| 510 |
+
What may be interesting to most is the worst sevice /attitude comes from the owners of this establishment .,"{service general, owners, negative}","{service general, service /attitude, negative}"
|
| 511 |
+
The only drawback is that this place is really expensive and the portions are on the small side .,"{restaurant prices, place, negative};{food style_options, portions, negative}","{restaurant prices, place, negative};{food style_options, portions, negative}"
|
| 512 |
+
"Terrible service , food ok , pricey","{restaurant prices, null, negative};{service general, service, negative};{food quality, food, neutral}","{service general, service, negative};{food quality, food, neutral};{food prices, food, negative}"
|
| 513 |
+
Although the service could be improved considering the money you put in .,"{service general, service, negative}","{service general, service, negative}"
|
| 514 |
+
"You routinely see Indian families and friends dining there , which is always a good sign .","{restaurant miscellaneous, null, positive}","{restaurant miscellaneous, null, positive}"
|
| 515 |
+
"If I want to stand in line on Sunday for an hour to get average brunch food , then I would put Murphy 's at the top of the list .","{food quality, brunch food, neutral};{service general, null, negative}","{restaurant general, Murphy's, negative};{food quality, brunch food, negative}"
|
| 516 |
+
For the amount of food we got the prices should have been lower .,"{food prices, food, negative}","{restaurant prices, null, negative}"
|
| 517 |
+
"Always busy , but they are good at seating you promptly and have quick service .","{service general, service, positive};{service general, null, positive}","{service general, service, positive};{ambience general, null, neutral}"
|
| 518 |
+
The wine list is wonderful and the food reminds me of my recent trip to Italy .,"{drinks style_options, wine list, positive}","{drinks style_options, wine list, positive};{food quality, food, positive}"
|
| 519 |
+
"the food was great , the margaritas too but the waitress was too busy being nice to her other larger party than to take better care of my friend and me .","{drinks quality, margaritas, positive};{service general, waitress, negative};{food quality, food, positive}","{service general, waitress, negative};{drinks quality, margaritas, positive};{food quality, food, positive}"
|
| 520 |
+
"I ca n't saybenough good things about this restaurant , and I ca n't wait for my next several visits .","{restaurant general, restaurant, positive}","{restaurant general, restaurant, positive}"
|
| 521 |
+
Love it every time,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 522 |
+
"We are locals , and get the feeling the only way this place survives with such average food is because most customers are probably one-time customer tourists .","{food quality, food, negative}","{restaurant miscellaneous, place, negative};{food quality, food, negative}"
|
| 523 |
+
Also love their caeser salad .,"{food quality, caeser salad, positive}","{food quality, caeser salad, positive}"
|
| 524 |
+
She doesn 't make you feel welcome and treats you like an annoyance .,"{service general, null, negative}","{service general, null, negative}"
|
| 525 |
+
It 's just the right size for the menu .,"{restaurant miscellaneous, null, positive}","{restaurant general, null, positive}"
|
| 526 |
+
"The food is fantastic , and the waiting staff has been perfect every single time we 've been there .","{food quality, food, positive};{service general, waiting staff, positive}","{service general, waiting staff, positive};{food quality, food, positive}"
|
| 527 |
+
The desert was the perfect ending to an almost perfect dinner .,"{food quality, desert, positive};{food quality, dinner, positive}","{food quality, desert, positive}"
|
| 528 |
+
"I have been here , spent tons of money on a chef special dinner and it was a major dissappointment .","{food prices, chef special dinner, negative};{food quality, chef special dinner, negative}","{food quality, chef special dinner, negative};{restaurant prices, null, negative}"
|
| 529 |
+
I FOUND A NEW HOME ON SECOND AVENUE ! ! ! ! ! ! ! ! ! ! ! !,"{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 530 |
+
"– Had to wait thirty minutes to get in the door on a tuesday morning , but it was so worth it .","{restaurant general, null, positive};{restaurant miscellaneous, null, negative}","{restaurant general, null, positive}"
|
| 531 |
+
"– It is sad to see a place that was once `` THE `` place to meet and eat for Bfast or Lunch , now be the place that is a big `` DONT BOTHER . ``","{restaurant general, place, negative}","{restaurant general, place, negative}"
|
| 532 |
+
"The lemon chicken tasted like sticky sweet donuts and the honey walnut prawns , the few they actually give you ... were not good .","{food quality, honey walnut prawns, negative};{food style_options, honey walnut prawns, negative};{food quality, lemon chicken, negative}","{food quality, honey walnut prawns, negative};{food quality, lemon chicken, negative}"
|
| 533 |
+
"It was romantic - and even nice even with my sister , reminded me of Italy , and had artwork and music that kept up the feeling of being in a Mediterrean villa .","{ambience general, artwork, positive};{ambience general, null, positive};{ambience general, music, positive}","{ambience general, null, positive};{ambience general, music, positive};{ambience general, artwork, positive}"
|
| 534 |
+
The sushi was excellent and the wait staff was quick .,"{service general, wait staff, positive};{food quality, sushi, positive}","{service general, wait staff, positive};{food quality, sushi, positive}"
|
| 535 |
+
"In fact , many want to return a second time during their visit .","{restaurant general, null, positive}","{restaurant general, null, positive}"
|
| 536 |
+
– Best Mexican place for lunch in the financial district .,"{restaurant general, Mexican place, positive}","{restaurant general, Mexican place, positive}"
|
| 537 |
+
i love this place !,"{restaurant general, place, positive}","{restaurant general, place, positive}"
|
| 538 |
+
the atmosphere is great .,"{ambience general, atmosphere, positive}","{ambience general, atmosphere, positive}"
|
| 539 |
+
Perfect on a cold day .,"{food quality, null, positive}","{restaurant general, null, positive}"
|
experiments/en-hr/preds_hr.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|