Initialize v2 from v1 (safe copy before resume training)
Browse files- README.md +58 -0
- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +1 -0
- last-checkpoint/README.md +209 -0
- last-checkpoint/adapter_config.json +46 -0
- last-checkpoint/adapter_model.safetensors +3 -0
- last-checkpoint/chat_template.jinja +1 -0
- last-checkpoint/optimizer.pt +3 -0
- last-checkpoint/rng_state.pth +3 -0
- last-checkpoint/scheduler.pt +3 -0
- last-checkpoint/special_tokens_map.json +30 -0
- last-checkpoint/tokenizer.json +0 -0
- last-checkpoint/tokenizer.model +3 -0
- last-checkpoint/tokenizer_config.json +204 -0
- last-checkpoint/trainer_state.json +472 -0
- last-checkpoint/training_args.bin +3 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +204 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Navid-AI/Yehia-7B-preview
|
| 3 |
+
library_name: transformers
|
| 4 |
+
model_name: Shaer-7B-v1
|
| 5 |
+
tags:
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
- trl
|
| 8 |
+
- sft
|
| 9 |
+
licence: license
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Model Card for Shaer-7B-v1
|
| 13 |
+
|
| 14 |
+
This model is a fine-tuned version of [Navid-AI/Yehia-7B-preview](https://huggingface.co/Navid-AI/Yehia-7B-preview).
|
| 15 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 16 |
+
|
| 17 |
+
## Quick start
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from transformers import pipeline
|
| 21 |
+
|
| 22 |
+
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?"
|
| 23 |
+
generator = pipeline("text-generation", model="Shaer-AI/Shaer-7B-v1", device="cuda")
|
| 24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 25 |
+
print(output["generated_text"])
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
This model was trained with SFT.
|
| 34 |
+
|
| 35 |
+
### Framework versions
|
| 36 |
+
|
| 37 |
+
- TRL: 0.15.2
|
| 38 |
+
- Transformers: 4.57.1
|
| 39 |
+
- Pytorch: 2.4.0
|
| 40 |
+
- Datasets: 2.21.0
|
| 41 |
+
- Tokenizers: 0.22.1
|
| 42 |
+
|
| 43 |
+
## Citations
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
Cite TRL as:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@misc{vonwerra2022trl,
|
| 51 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 52 |
+
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édec},
|
| 53 |
+
year = 2020,
|
| 54 |
+
journal = {GitHub repository},
|
| 55 |
+
publisher = {GitHub},
|
| 56 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 57 |
+
}
|
| 58 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Navid-AI/Yehia-7B-preview",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"o_proj",
|
| 33 |
+
"q_proj",
|
| 34 |
+
"gate_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"k_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a09ebcdc80ed107324598c4bffb8e2f0b006a766a909e1eb3edd933a66151b
|
| 3 |
+
size 319876032
|
chat_template.jinja
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + ' [INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
|
last-checkpoint/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Navid-AI/Yehia-7B-preview
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Navid-AI/Yehia-7B-preview
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.18.0
|
last-checkpoint/adapter_config.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Navid-AI/Yehia-7B-preview",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"megatron_config": null,
|
| 23 |
+
"megatron_core": "megatron.core",
|
| 24 |
+
"modules_to_save": null,
|
| 25 |
+
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.0",
|
| 27 |
+
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
+
"rank_pattern": {},
|
| 30 |
+
"revision": null,
|
| 31 |
+
"target_modules": [
|
| 32 |
+
"o_proj",
|
| 33 |
+
"q_proj",
|
| 34 |
+
"gate_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"up_proj",
|
| 38 |
+
"k_proj"
|
| 39 |
+
],
|
| 40 |
+
"target_parameters": null,
|
| 41 |
+
"task_type": "CAUSAL_LM",
|
| 42 |
+
"trainable_token_indices": null,
|
| 43 |
+
"use_dora": false,
|
| 44 |
+
"use_qalora": false,
|
| 45 |
+
"use_rslora": false
|
| 46 |
+
}
|
last-checkpoint/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60a09ebcdc80ed107324598c4bffb8e2f0b006a766a909e1eb3edd933a66151b
|
| 3 |
+
size 319876032
|
last-checkpoint/chat_template.jinja
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + ' [INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
|
last-checkpoint/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:beb20ba2205df500ef9ab02ed436174c6619a4b9769b5b7aebf0f95f3c41db6c
|
| 3 |
+
size 640009682
|
last-checkpoint/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00ca5f99d0d364ce5cf70e2b8a6900efb50a685e1c38c231a210045bb0e12db7
|
| 3 |
+
size 14244
|
last-checkpoint/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3dbaddaa44c992ea9bc16709e10de696f828c0ca1140780a2327a56516e00656
|
| 3 |
+
size 1064
|
last-checkpoint/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
last-checkpoint/tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
last-checkpoint/tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feff3deb3537c4a47b77585053ad2aa00484da7907b188e0111cbed1f4592e67
|
| 3 |
+
size 1228714
|
last-checkpoint/tokenizer_config.json
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": null,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<unk>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<s>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"2": {
|
| 23 |
+
"content": "</s>",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": false,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": true
|
| 29 |
+
},
|
| 30 |
+
"3": {
|
| 31 |
+
"content": "0",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": false
|
| 37 |
+
},
|
| 38 |
+
"4": {
|
| 39 |
+
"content": "1",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": false,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"5": {
|
| 47 |
+
"content": "2",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": false,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"6": {
|
| 55 |
+
"content": "3",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": false,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"7": {
|
| 63 |
+
"content": "4",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": false,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": false
|
| 69 |
+
},
|
| 70 |
+
"8": {
|
| 71 |
+
"content": "5",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": false,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": false
|
| 77 |
+
},
|
| 78 |
+
"9": {
|
| 79 |
+
"content": "6",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": false,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": false
|
| 85 |
+
},
|
| 86 |
+
"10": {
|
| 87 |
+
"content": "7",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": false,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": false
|
| 93 |
+
},
|
| 94 |
+
"11": {
|
| 95 |
+
"content": "8",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": false,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": false
|
| 101 |
+
},
|
| 102 |
+
"12": {
|
| 103 |
+
"content": "9",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": false,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": false
|
| 109 |
+
},
|
| 110 |
+
"13": {
|
| 111 |
+
"content": "٠",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": false,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": false
|
| 117 |
+
},
|
| 118 |
+
"14": {
|
| 119 |
+
"content": "١",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": false,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"15": {
|
| 127 |
+
"content": "٢",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": false,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"16": {
|
| 135 |
+
"content": "٣",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": false,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"17": {
|
| 143 |
+
"content": "٤",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": false,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"18": {
|
| 151 |
+
"content": "٥",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": false,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"19": {
|
| 159 |
+
"content": "٦",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": false,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"20": {
|
| 167 |
+
"content": "٧",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": false,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"21": {
|
| 175 |
+
"content": "٨",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": false,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
},
|
| 182 |
+
"22": {
|
| 183 |
+
"content": "٩",
|
| 184 |
+
"lstrip": false,
|
| 185 |
+
"normalized": false,
|
| 186 |
+
"rstrip": false,
|
| 187 |
+
"single_word": false,
|
| 188 |
+
"special": false
|
| 189 |
+
}
|
| 190 |
+
},
|
| 191 |
+
"bos_token": "<s>",
|
| 192 |
+
"clean_up_tokenization_spaces": false,
|
| 193 |
+
"eos_token": "</s>",
|
| 194 |
+
"extra_special_tokens": {},
|
| 195 |
+
"legacy": false,
|
| 196 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 197 |
+
"pad_token": "</s>",
|
| 198 |
+
"padding_side": "right",
|
| 199 |
+
"sp_model_kwargs": {},
|
| 200 |
+
"spaces_between_special_tokens": false,
|
| 201 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 202 |
+
"unk_token": "<unk>",
|
| 203 |
+
"use_default_system_prompt": false
|
| 204 |
+
}
|
last-checkpoint/trainer_state.json
ADDED
|
@@ -0,0 +1,472 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 150,
|
| 7 |
+
"global_step": 959,
|
| 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.0010437732402635528,
|
| 14 |
+
"grad_norm": 3.6640398502349854,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 1.293,
|
| 17 |
+
"mean_token_accuracy": 0.7315249554812908,
|
| 18 |
+
"step": 1
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"epoch": 0.020875464805271055,
|
| 22 |
+
"grad_norm": 0.33989453315734863,
|
| 23 |
+
"learning_rate": 6.551724137931034e-05,
|
| 24 |
+
"loss": 1.1105,
|
| 25 |
+
"mean_token_accuracy": 0.7687016786321214,
|
| 26 |
+
"step": 20
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"epoch": 0.04175092961054211,
|
| 30 |
+
"grad_norm": 0.2829172909259796,
|
| 31 |
+
"learning_rate": 9.892473118279571e-05,
|
| 32 |
+
"loss": 0.9714,
|
| 33 |
+
"mean_token_accuracy": 0.7907559825107455,
|
| 34 |
+
"step": 40
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"epoch": 0.06262639441581316,
|
| 38 |
+
"grad_norm": 0.3811407685279846,
|
| 39 |
+
"learning_rate": 9.677419354838711e-05,
|
| 40 |
+
"loss": 0.9236,
|
| 41 |
+
"mean_token_accuracy": 0.7986495142802597,
|
| 42 |
+
"step": 60
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"epoch": 0.08350185922108422,
|
| 46 |
+
"grad_norm": 0.40331247448921204,
|
| 47 |
+
"learning_rate": 9.46236559139785e-05,
|
| 48 |
+
"loss": 0.8964,
|
| 49 |
+
"mean_token_accuracy": 0.8034458922222256,
|
| 50 |
+
"step": 80
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 0.10437732402635527,
|
| 54 |
+
"grad_norm": 0.3131363093852997,
|
| 55 |
+
"learning_rate": 9.247311827956989e-05,
|
| 56 |
+
"loss": 0.8733,
|
| 57 |
+
"mean_token_accuracy": 0.807321792282164,
|
| 58 |
+
"step": 100
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"epoch": 0.12525278883162633,
|
| 62 |
+
"grad_norm": 0.28229933977127075,
|
| 63 |
+
"learning_rate": 9.032258064516129e-05,
|
| 64 |
+
"loss": 0.8659,
|
| 65 |
+
"mean_token_accuracy": 0.8081387735903263,
|
| 66 |
+
"step": 120
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.14612825363689738,
|
| 70 |
+
"grad_norm": 0.3455071747303009,
|
| 71 |
+
"learning_rate": 8.81720430107527e-05,
|
| 72 |
+
"loss": 0.8573,
|
| 73 |
+
"mean_token_accuracy": 0.8092190572991967,
|
| 74 |
+
"step": 140
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"epoch": 0.15656598603953292,
|
| 78 |
+
"eval_loss": 0.8501774668693542,
|
| 79 |
+
"eval_mean_token_accuracy": 0.8104509812072511,
|
| 80 |
+
"eval_runtime": 477.3649,
|
| 81 |
+
"eval_samples_per_second": 24.139,
|
| 82 |
+
"eval_steps_per_second": 1.51,
|
| 83 |
+
"step": 150
|
| 84 |
+
},
|
| 85 |
+
{
|
| 86 |
+
"epoch": 0.16700371844216844,
|
| 87 |
+
"grad_norm": 0.2634192705154419,
|
| 88 |
+
"learning_rate": 8.60215053763441e-05,
|
| 89 |
+
"loss": 0.8539,
|
| 90 |
+
"mean_token_accuracy": 0.8096571587026119,
|
| 91 |
+
"step": 160
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"epoch": 0.1878791832474395,
|
| 95 |
+
"grad_norm": 0.24897566437721252,
|
| 96 |
+
"learning_rate": 8.387096774193549e-05,
|
| 97 |
+
"loss": 0.8394,
|
| 98 |
+
"mean_token_accuracy": 0.8123498395085335,
|
| 99 |
+
"step": 180
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"epoch": 0.20875464805271055,
|
| 103 |
+
"grad_norm": 0.25399449467658997,
|
| 104 |
+
"learning_rate": 8.172043010752689e-05,
|
| 105 |
+
"loss": 0.8411,
|
| 106 |
+
"mean_token_accuracy": 0.8118746573105454,
|
| 107 |
+
"step": 200
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"epoch": 0.2296301128579816,
|
| 111 |
+
"grad_norm": 0.30704858899116516,
|
| 112 |
+
"learning_rate": 7.956989247311829e-05,
|
| 113 |
+
"loss": 0.8198,
|
| 114 |
+
"mean_token_accuracy": 0.8161308566108346,
|
| 115 |
+
"step": 220
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.25050557766325265,
|
| 119 |
+
"grad_norm": 0.26868879795074463,
|
| 120 |
+
"learning_rate": 7.741935483870968e-05,
|
| 121 |
+
"loss": 0.8306,
|
| 122 |
+
"mean_token_accuracy": 0.8135106340050697,
|
| 123 |
+
"step": 240
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 0.27138104246852374,
|
| 127 |
+
"grad_norm": 0.39215439558029175,
|
| 128 |
+
"learning_rate": 7.526881720430108e-05,
|
| 129 |
+
"loss": 0.8097,
|
| 130 |
+
"mean_token_accuracy": 0.8179622774943709,
|
| 131 |
+
"step": 260
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"epoch": 0.29225650727379476,
|
| 135 |
+
"grad_norm": 0.2937132716178894,
|
| 136 |
+
"learning_rate": 7.311827956989248e-05,
|
| 137 |
+
"loss": 0.8073,
|
| 138 |
+
"mean_token_accuracy": 0.8181498864665627,
|
| 139 |
+
"step": 280
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"epoch": 0.31313197207906585,
|
| 143 |
+
"grad_norm": 0.4043816030025482,
|
| 144 |
+
"learning_rate": 7.096774193548388e-05,
|
| 145 |
+
"loss": 0.804,
|
| 146 |
+
"mean_token_accuracy": 0.8183059839531779,
|
| 147 |
+
"step": 300
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"epoch": 0.31313197207906585,
|
| 151 |
+
"eval_loss": 0.822810709476471,
|
| 152 |
+
"eval_mean_token_accuracy": 0.8151241214364643,
|
| 153 |
+
"eval_runtime": 478.8102,
|
| 154 |
+
"eval_samples_per_second": 24.066,
|
| 155 |
+
"eval_steps_per_second": 1.506,
|
| 156 |
+
"step": 300
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"epoch": 0.3340074368843369,
|
| 160 |
+
"grad_norm": 0.5106801986694336,
|
| 161 |
+
"learning_rate": 6.881720430107527e-05,
|
| 162 |
+
"loss": 0.7944,
|
| 163 |
+
"mean_token_accuracy": 0.8205162849277258,
|
| 164 |
+
"step": 320
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.35488290168960795,
|
| 168 |
+
"grad_norm": 0.2678694725036621,
|
| 169 |
+
"learning_rate": 6.666666666666667e-05,
|
| 170 |
+
"loss": 0.7946,
|
| 171 |
+
"mean_token_accuracy": 0.8205837696790695,
|
| 172 |
+
"step": 340
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"epoch": 0.375758366494879,
|
| 176 |
+
"grad_norm": 0.31555888056755066,
|
| 177 |
+
"learning_rate": 6.451612903225807e-05,
|
| 178 |
+
"loss": 0.7842,
|
| 179 |
+
"mean_token_accuracy": 0.8227896897122264,
|
| 180 |
+
"step": 360
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 0.39663383130015006,
|
| 184 |
+
"grad_norm": 0.25338518619537354,
|
| 185 |
+
"learning_rate": 6.236559139784946e-05,
|
| 186 |
+
"loss": 0.7839,
|
| 187 |
+
"mean_token_accuracy": 0.8224633572623133,
|
| 188 |
+
"step": 380
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"epoch": 0.4175092961054211,
|
| 192 |
+
"grad_norm": 0.3376692831516266,
|
| 193 |
+
"learning_rate": 6.021505376344086e-05,
|
| 194 |
+
"loss": 0.7837,
|
| 195 |
+
"mean_token_accuracy": 0.8224168518558145,
|
| 196 |
+
"step": 400
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"epoch": 0.4383847609106922,
|
| 200 |
+
"grad_norm": 0.3099437654018402,
|
| 201 |
+
"learning_rate": 5.8064516129032266e-05,
|
| 202 |
+
"loss": 0.7709,
|
| 203 |
+
"mean_token_accuracy": 0.8251230824738741,
|
| 204 |
+
"step": 420
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"epoch": 0.4592602257159632,
|
| 208 |
+
"grad_norm": 0.38553759455680847,
|
| 209 |
+
"learning_rate": 5.5913978494623656e-05,
|
| 210 |
+
"loss": 0.7716,
|
| 211 |
+
"mean_token_accuracy": 0.8242331562563777,
|
| 212 |
+
"step": 440
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"epoch": 0.4696979581185987,
|
| 216 |
+
"eval_loss": 0.8102629780769348,
|
| 217 |
+
"eval_mean_token_accuracy": 0.8185677231372959,
|
| 218 |
+
"eval_runtime": 479.9076,
|
| 219 |
+
"eval_samples_per_second": 24.011,
|
| 220 |
+
"eval_steps_per_second": 1.502,
|
| 221 |
+
"step": 450
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"epoch": 0.4801356905212343,
|
| 225 |
+
"grad_norm": 0.4562067985534668,
|
| 226 |
+
"learning_rate": 5.3763440860215054e-05,
|
| 227 |
+
"loss": 0.7673,
|
| 228 |
+
"mean_token_accuracy": 0.8257499437779188,
|
| 229 |
+
"step": 460
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"epoch": 0.5010111553265053,
|
| 233 |
+
"grad_norm": 0.3461894690990448,
|
| 234 |
+
"learning_rate": 5.161290322580645e-05,
|
| 235 |
+
"loss": 0.764,
|
| 236 |
+
"mean_token_accuracy": 0.8258528942242265,
|
| 237 |
+
"step": 480
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"epoch": 0.5218866201317763,
|
| 241 |
+
"grad_norm": 0.3894698917865753,
|
| 242 |
+
"learning_rate": 4.9462365591397855e-05,
|
| 243 |
+
"loss": 0.7629,
|
| 244 |
+
"mean_token_accuracy": 0.8263893555849791,
|
| 245 |
+
"step": 500
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"epoch": 0.5427620849370475,
|
| 249 |
+
"grad_norm": 0.3671281337738037,
|
| 250 |
+
"learning_rate": 4.731182795698925e-05,
|
| 251 |
+
"loss": 0.7637,
|
| 252 |
+
"mean_token_accuracy": 0.825993400812149,
|
| 253 |
+
"step": 520
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"epoch": 0.5636375497423185,
|
| 257 |
+
"grad_norm": 0.27911612391471863,
|
| 258 |
+
"learning_rate": 4.516129032258064e-05,
|
| 259 |
+
"loss": 0.7571,
|
| 260 |
+
"mean_token_accuracy": 0.8272387059405446,
|
| 261 |
+
"step": 540
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"epoch": 0.5845130145475895,
|
| 265 |
+
"grad_norm": 0.35994264483451843,
|
| 266 |
+
"learning_rate": 4.301075268817205e-05,
|
| 267 |
+
"loss": 0.7514,
|
| 268 |
+
"mean_token_accuracy": 0.8287154756486416,
|
| 269 |
+
"step": 560
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.6053884793528606,
|
| 273 |
+
"grad_norm": 0.27501070499420166,
|
| 274 |
+
"learning_rate": 4.0860215053763444e-05,
|
| 275 |
+
"loss": 0.7352,
|
| 276 |
+
"mean_token_accuracy": 0.8320884253829718,
|
| 277 |
+
"step": 580
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"epoch": 0.6262639441581317,
|
| 281 |
+
"grad_norm": 0.31373465061187744,
|
| 282 |
+
"learning_rate": 3.870967741935484e-05,
|
| 283 |
+
"loss": 0.7459,
|
| 284 |
+
"mean_token_accuracy": 0.8291032826527953,
|
| 285 |
+
"step": 600
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 0.6262639441581317,
|
| 289 |
+
"eval_loss": 0.8052937388420105,
|
| 290 |
+
"eval_mean_token_accuracy": 0.818547232719797,
|
| 291 |
+
"eval_runtime": 478.5563,
|
| 292 |
+
"eval_samples_per_second": 24.079,
|
| 293 |
+
"eval_steps_per_second": 1.507,
|
| 294 |
+
"step": 600
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"epoch": 0.6471394089634027,
|
| 298 |
+
"grad_norm": 0.28387895226478577,
|
| 299 |
+
"learning_rate": 3.655913978494624e-05,
|
| 300 |
+
"loss": 0.7383,
|
| 301 |
+
"mean_token_accuracy": 0.8311796387657523,
|
| 302 |
+
"step": 620
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"epoch": 0.6680148737686737,
|
| 306 |
+
"grad_norm": 0.2989550828933716,
|
| 307 |
+
"learning_rate": 3.4408602150537636e-05,
|
| 308 |
+
"loss": 0.7401,
|
| 309 |
+
"mean_token_accuracy": 0.8308440973982215,
|
| 310 |
+
"step": 640
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 0.6888903385739448,
|
| 314 |
+
"grad_norm": 0.3100236654281616,
|
| 315 |
+
"learning_rate": 3.2258064516129034e-05,
|
| 316 |
+
"loss": 0.7301,
|
| 317 |
+
"mean_token_accuracy": 0.8333285139873624,
|
| 318 |
+
"step": 660
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.7097658033792159,
|
| 322 |
+
"grad_norm": 0.3028460741043091,
|
| 323 |
+
"learning_rate": 3.010752688172043e-05,
|
| 324 |
+
"loss": 0.724,
|
| 325 |
+
"mean_token_accuracy": 0.8343087159097194,
|
| 326 |
+
"step": 680
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"epoch": 0.7306412681844869,
|
| 330 |
+
"grad_norm": 0.29025018215179443,
|
| 331 |
+
"learning_rate": 2.7956989247311828e-05,
|
| 332 |
+
"loss": 0.7279,
|
| 333 |
+
"mean_token_accuracy": 0.8334941100329161,
|
| 334 |
+
"step": 700
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"epoch": 0.751516732989758,
|
| 338 |
+
"grad_norm": 0.31064796447753906,
|
| 339 |
+
"learning_rate": 2.5806451612903226e-05,
|
| 340 |
+
"loss": 0.7258,
|
| 341 |
+
"mean_token_accuracy": 0.833451921492815,
|
| 342 |
+
"step": 720
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"epoch": 0.772392197795029,
|
| 346 |
+
"grad_norm": 0.2918741703033447,
|
| 347 |
+
"learning_rate": 2.3655913978494626e-05,
|
| 348 |
+
"loss": 0.7223,
|
| 349 |
+
"mean_token_accuracy": 0.8338876113295555,
|
| 350 |
+
"step": 740
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 0.7828299301976646,
|
| 354 |
+
"eval_loss": 0.8058114647865295,
|
| 355 |
+
"eval_mean_token_accuracy": 0.8215587672256314,
|
| 356 |
+
"eval_runtime": 480.3181,
|
| 357 |
+
"eval_samples_per_second": 23.99,
|
| 358 |
+
"eval_steps_per_second": 1.501,
|
| 359 |
+
"step": 750
|
| 360 |
+
},
|
| 361 |
+
{
|
| 362 |
+
"epoch": 0.7932676626003001,
|
| 363 |
+
"grad_norm": 0.30113646388053894,
|
| 364 |
+
"learning_rate": 2.1505376344086024e-05,
|
| 365 |
+
"loss": 0.7232,
|
| 366 |
+
"mean_token_accuracy": 0.8343004129827023,
|
| 367 |
+
"step": 760
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.8141431274055712,
|
| 371 |
+
"grad_norm": 0.297846257686615,
|
| 372 |
+
"learning_rate": 1.935483870967742e-05,
|
| 373 |
+
"loss": 0.7169,
|
| 374 |
+
"mean_token_accuracy": 0.8357257222756743,
|
| 375 |
+
"step": 780
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"epoch": 0.8350185922108422,
|
| 379 |
+
"grad_norm": 0.290519118309021,
|
| 380 |
+
"learning_rate": 1.7204301075268818e-05,
|
| 381 |
+
"loss": 0.7214,
|
| 382 |
+
"mean_token_accuracy": 0.8349421635270119,
|
| 383 |
+
"step": 800
|
| 384 |
+
},
|
| 385 |
+
{
|
| 386 |
+
"epoch": 0.8558940570161132,
|
| 387 |
+
"grad_norm": 0.288723349571228,
|
| 388 |
+
"learning_rate": 1.5053763440860215e-05,
|
| 389 |
+
"loss": 0.7192,
|
| 390 |
+
"mean_token_accuracy": 0.8351026430726052,
|
| 391 |
+
"step": 820
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"epoch": 0.8767695218213843,
|
| 395 |
+
"grad_norm": 0.3073173463344574,
|
| 396 |
+
"learning_rate": 1.2903225806451613e-05,
|
| 397 |
+
"loss": 0.7136,
|
| 398 |
+
"mean_token_accuracy": 0.83632858004421,
|
| 399 |
+
"step": 840
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"epoch": 0.8976449866266554,
|
| 403 |
+
"grad_norm": 0.30293524265289307,
|
| 404 |
+
"learning_rate": 1.0752688172043012e-05,
|
| 405 |
+
"loss": 0.7065,
|
| 406 |
+
"mean_token_accuracy": 0.8384585160762071,
|
| 407 |
+
"step": 860
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 0.9185204514319264,
|
| 411 |
+
"grad_norm": 0.2873519957065582,
|
| 412 |
+
"learning_rate": 8.602150537634409e-06,
|
| 413 |
+
"loss": 0.7079,
|
| 414 |
+
"mean_token_accuracy": 0.837334163300693,
|
| 415 |
+
"step": 880
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.9393959162371974,
|
| 419 |
+
"grad_norm": 0.296587198972702,
|
| 420 |
+
"learning_rate": 6.451612903225806e-06,
|
| 421 |
+
"loss": 0.7125,
|
| 422 |
+
"mean_token_accuracy": 0.8367217551916838,
|
| 423 |
+
"step": 900
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.9393959162371974,
|
| 427 |
+
"eval_loss": 0.8067903518676758,
|
| 428 |
+
"eval_mean_token_accuracy": 0.8190384064897915,
|
| 429 |
+
"eval_runtime": 479.0964,
|
| 430 |
+
"eval_samples_per_second": 24.052,
|
| 431 |
+
"eval_steps_per_second": 1.505,
|
| 432 |
+
"step": 900
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"epoch": 0.9602713810424686,
|
| 436 |
+
"grad_norm": 0.27917736768722534,
|
| 437 |
+
"learning_rate": 4.3010752688172045e-06,
|
| 438 |
+
"loss": 0.7063,
|
| 439 |
+
"mean_token_accuracy": 0.8376741111278534,
|
| 440 |
+
"step": 920
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"epoch": 0.9811468458477396,
|
| 444 |
+
"grad_norm": 0.29608383774757385,
|
| 445 |
+
"learning_rate": 2.1505376344086023e-06,
|
| 446 |
+
"loss": 0.7029,
|
| 447 |
+
"mean_token_accuracy": 0.8386383946985007,
|
| 448 |
+
"step": 940
|
| 449 |
+
}
|
| 450 |
+
],
|
| 451 |
+
"logging_steps": 20,
|
| 452 |
+
"max_steps": 959,
|
| 453 |
+
"num_input_tokens_seen": 0,
|
| 454 |
+
"num_train_epochs": 1,
|
| 455 |
+
"save_steps": 25,
|
| 456 |
+
"stateful_callbacks": {
|
| 457 |
+
"TrainerControl": {
|
| 458 |
+
"args": {
|
| 459 |
+
"should_epoch_stop": false,
|
| 460 |
+
"should_evaluate": false,
|
| 461 |
+
"should_log": false,
|
| 462 |
+
"should_save": true,
|
| 463 |
+
"should_training_stop": true
|
| 464 |
+
},
|
| 465 |
+
"attributes": {}
|
| 466 |
+
}
|
| 467 |
+
},
|
| 468 |
+
"total_flos": 7.705866842583073e+18,
|
| 469 |
+
"train_batch_size": 16,
|
| 470 |
+
"trial_name": null,
|
| 471 |
+
"trial_params": null
|
| 472 |
+
}
|
last-checkpoint/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4de7a8f290f12afd27f95624e7316370f66104ef925d974503c0026cab33f5d
|
| 3 |
+
size 5752
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feff3deb3537c4a47b77585053ad2aa00484da7907b188e0111cbed1f4592e67
|
| 3 |
+
size 1228714
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"add_prefix_space": null,
|
| 5 |
+
"added_tokens_decoder": {
|
| 6 |
+
"0": {
|
| 7 |
+
"content": "<unk>",
|
| 8 |
+
"lstrip": false,
|
| 9 |
+
"normalized": false,
|
| 10 |
+
"rstrip": false,
|
| 11 |
+
"single_word": false,
|
| 12 |
+
"special": true
|
| 13 |
+
},
|
| 14 |
+
"1": {
|
| 15 |
+
"content": "<s>",
|
| 16 |
+
"lstrip": false,
|
| 17 |
+
"normalized": false,
|
| 18 |
+
"rstrip": false,
|
| 19 |
+
"single_word": false,
|
| 20 |
+
"special": true
|
| 21 |
+
},
|
| 22 |
+
"2": {
|
| 23 |
+
"content": "</s>",
|
| 24 |
+
"lstrip": false,
|
| 25 |
+
"normalized": false,
|
| 26 |
+
"rstrip": false,
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"special": true
|
| 29 |
+
},
|
| 30 |
+
"3": {
|
| 31 |
+
"content": "0",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": false,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false,
|
| 36 |
+
"special": false
|
| 37 |
+
},
|
| 38 |
+
"4": {
|
| 39 |
+
"content": "1",
|
| 40 |
+
"lstrip": false,
|
| 41 |
+
"normalized": false,
|
| 42 |
+
"rstrip": false,
|
| 43 |
+
"single_word": false,
|
| 44 |
+
"special": false
|
| 45 |
+
},
|
| 46 |
+
"5": {
|
| 47 |
+
"content": "2",
|
| 48 |
+
"lstrip": false,
|
| 49 |
+
"normalized": false,
|
| 50 |
+
"rstrip": false,
|
| 51 |
+
"single_word": false,
|
| 52 |
+
"special": false
|
| 53 |
+
},
|
| 54 |
+
"6": {
|
| 55 |
+
"content": "3",
|
| 56 |
+
"lstrip": false,
|
| 57 |
+
"normalized": false,
|
| 58 |
+
"rstrip": false,
|
| 59 |
+
"single_word": false,
|
| 60 |
+
"special": false
|
| 61 |
+
},
|
| 62 |
+
"7": {
|
| 63 |
+
"content": "4",
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"normalized": false,
|
| 66 |
+
"rstrip": false,
|
| 67 |
+
"single_word": false,
|
| 68 |
+
"special": false
|
| 69 |
+
},
|
| 70 |
+
"8": {
|
| 71 |
+
"content": "5",
|
| 72 |
+
"lstrip": false,
|
| 73 |
+
"normalized": false,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"single_word": false,
|
| 76 |
+
"special": false
|
| 77 |
+
},
|
| 78 |
+
"9": {
|
| 79 |
+
"content": "6",
|
| 80 |
+
"lstrip": false,
|
| 81 |
+
"normalized": false,
|
| 82 |
+
"rstrip": false,
|
| 83 |
+
"single_word": false,
|
| 84 |
+
"special": false
|
| 85 |
+
},
|
| 86 |
+
"10": {
|
| 87 |
+
"content": "7",
|
| 88 |
+
"lstrip": false,
|
| 89 |
+
"normalized": false,
|
| 90 |
+
"rstrip": false,
|
| 91 |
+
"single_word": false,
|
| 92 |
+
"special": false
|
| 93 |
+
},
|
| 94 |
+
"11": {
|
| 95 |
+
"content": "8",
|
| 96 |
+
"lstrip": false,
|
| 97 |
+
"normalized": false,
|
| 98 |
+
"rstrip": false,
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"special": false
|
| 101 |
+
},
|
| 102 |
+
"12": {
|
| 103 |
+
"content": "9",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": false,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false,
|
| 108 |
+
"special": false
|
| 109 |
+
},
|
| 110 |
+
"13": {
|
| 111 |
+
"content": "٠",
|
| 112 |
+
"lstrip": false,
|
| 113 |
+
"normalized": false,
|
| 114 |
+
"rstrip": false,
|
| 115 |
+
"single_word": false,
|
| 116 |
+
"special": false
|
| 117 |
+
},
|
| 118 |
+
"14": {
|
| 119 |
+
"content": "١",
|
| 120 |
+
"lstrip": false,
|
| 121 |
+
"normalized": false,
|
| 122 |
+
"rstrip": false,
|
| 123 |
+
"single_word": false,
|
| 124 |
+
"special": false
|
| 125 |
+
},
|
| 126 |
+
"15": {
|
| 127 |
+
"content": "٢",
|
| 128 |
+
"lstrip": false,
|
| 129 |
+
"normalized": false,
|
| 130 |
+
"rstrip": false,
|
| 131 |
+
"single_word": false,
|
| 132 |
+
"special": false
|
| 133 |
+
},
|
| 134 |
+
"16": {
|
| 135 |
+
"content": "٣",
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"normalized": false,
|
| 138 |
+
"rstrip": false,
|
| 139 |
+
"single_word": false,
|
| 140 |
+
"special": false
|
| 141 |
+
},
|
| 142 |
+
"17": {
|
| 143 |
+
"content": "٤",
|
| 144 |
+
"lstrip": false,
|
| 145 |
+
"normalized": false,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"single_word": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
"18": {
|
| 151 |
+
"content": "٥",
|
| 152 |
+
"lstrip": false,
|
| 153 |
+
"normalized": false,
|
| 154 |
+
"rstrip": false,
|
| 155 |
+
"single_word": false,
|
| 156 |
+
"special": false
|
| 157 |
+
},
|
| 158 |
+
"19": {
|
| 159 |
+
"content": "٦",
|
| 160 |
+
"lstrip": false,
|
| 161 |
+
"normalized": false,
|
| 162 |
+
"rstrip": false,
|
| 163 |
+
"single_word": false,
|
| 164 |
+
"special": false
|
| 165 |
+
},
|
| 166 |
+
"20": {
|
| 167 |
+
"content": "٧",
|
| 168 |
+
"lstrip": false,
|
| 169 |
+
"normalized": false,
|
| 170 |
+
"rstrip": false,
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"special": false
|
| 173 |
+
},
|
| 174 |
+
"21": {
|
| 175 |
+
"content": "٨",
|
| 176 |
+
"lstrip": false,
|
| 177 |
+
"normalized": false,
|
| 178 |
+
"rstrip": false,
|
| 179 |
+
"single_word": false,
|
| 180 |
+
"special": false
|
| 181 |
+
},
|
| 182 |
+
"22": {
|
| 183 |
+
"content": "٩",
|
| 184 |
+
"lstrip": false,
|
| 185 |
+
"normalized": false,
|
| 186 |
+
"rstrip": false,
|
| 187 |
+
"single_word": false,
|
| 188 |
+
"special": false
|
| 189 |
+
}
|
| 190 |
+
},
|
| 191 |
+
"bos_token": "<s>",
|
| 192 |
+
"clean_up_tokenization_spaces": false,
|
| 193 |
+
"eos_token": "</s>",
|
| 194 |
+
"extra_special_tokens": {},
|
| 195 |
+
"legacy": false,
|
| 196 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 197 |
+
"pad_token": "</s>",
|
| 198 |
+
"padding_side": "right",
|
| 199 |
+
"sp_model_kwargs": {},
|
| 200 |
+
"spaces_between_special_tokens": false,
|
| 201 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 202 |
+
"unk_token": "<unk>",
|
| 203 |
+
"use_default_system_prompt": false
|
| 204 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4de7a8f290f12afd27f95624e7316370f66104ef925d974503c0026cab33f5d
|
| 3 |
+
size 5752
|