Text Generation
PEFT
Safetensors
English
lora
qwen2.5
qwen2.5-coder
code
reasoning
pedagogy
fine-tuned
conversational
Instructions to use mechramc/codek-qwen2.5-coder-7b-lora-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mechramc/codek-qwen2.5-coder-7b-lora-v2 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Qwen2.5-Coder-7B-Instruct") model = PeftModel.from_pretrained(base_model, "mechramc/codek-qwen2.5-coder-7b-lora-v2") - Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +210 -0
- adapter_config.json +50 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +54 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- tokenizer.json +3 -0
- tokenizer_config.json +16 -0
- trainer_state.json +1048 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen2.5-Coder-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/Qwen2.5-Coder-7B-Instruct
|
| 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
|
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": "Qwen2ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/Qwen2.5-Coder-7B-Instruct",
|
| 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": 32,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0.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": 16,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"gate_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"o_proj",
|
| 39 |
+
"down_proj",
|
| 40 |
+
"up_proj",
|
| 41 |
+
"v_proj",
|
| 42 |
+
"k_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 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3020634049366a257d0c13ea9381be5bcc12d5295ece301b6d3a42b319857105
|
| 3 |
+
size 161533192
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cae473cb13b31afbb393c78ba13da84165aa3b3c729c2f6361a993948a14c14
|
| 3 |
+
size 82465413
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb5cd53ef8532f2b82ef28a31bd5cc6c14994b0e562934047cca29f972f5ff4f
|
| 3 |
+
size 14709
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfbd0f468e22c57f111a1d9cd364bd5ade48af7a6223d791a559674bfaaebae7
|
| 3 |
+
size 1465
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd5948af71b4f56cf697f7580814c7ce8b80595ef985544efcacf716126a2e31
|
| 3 |
+
size 11422356
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [],
|
| 9 |
+
"is_local": false,
|
| 10 |
+
"model_max_length": 32768,
|
| 11 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 12 |
+
"padding_side": "right",
|
| 13 |
+
"split_special_tokens": false,
|
| 14 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 15 |
+
"unk_token": null
|
| 16 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1048 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.276707530647986,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 1300,
|
| 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.017513134851138354,
|
| 14 |
+
"grad_norm": 0.4135197103023529,
|
| 15 |
+
"learning_rate": 3.6e-05,
|
| 16 |
+
"loss": 0.8109177589416504,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.03502626970227671,
|
| 21 |
+
"grad_norm": 0.5954136252403259,
|
| 22 |
+
"learning_rate": 7.6e-05,
|
| 23 |
+
"loss": 0.6212304115295411,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.05253940455341506,
|
| 28 |
+
"grad_norm": 0.4027167856693268,
|
| 29 |
+
"learning_rate": 0.000116,
|
| 30 |
+
"loss": 0.44783411026000974,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.07005253940455342,
|
| 35 |
+
"grad_norm": 0.47371360659599304,
|
| 36 |
+
"learning_rate": 0.00015600000000000002,
|
| 37 |
+
"loss": 0.3630207538604736,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.08756567425569177,
|
| 42 |
+
"grad_norm": 0.48840901255607605,
|
| 43 |
+
"learning_rate": 0.000196,
|
| 44 |
+
"loss": 0.32424685955047605,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.10507880910683012,
|
| 49 |
+
"grad_norm": 0.5532234311103821,
|
| 50 |
+
"learning_rate": 0.0001989176187612748,
|
| 51 |
+
"loss": 0.2953991413116455,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.12259194395796848,
|
| 56 |
+
"grad_norm": 0.5430059432983398,
|
| 57 |
+
"learning_rate": 0.00019771497294046903,
|
| 58 |
+
"loss": 0.26429708003997804,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.14010507880910683,
|
| 63 |
+
"grad_norm": 0.5477070212364197,
|
| 64 |
+
"learning_rate": 0.00019651232711966328,
|
| 65 |
+
"loss": 0.2550451040267944,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.15761821366024517,
|
| 70 |
+
"grad_norm": 0.37017086148262024,
|
| 71 |
+
"learning_rate": 0.00019530968129885748,
|
| 72 |
+
"loss": 0.23371753692626954,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.17513134851138354,
|
| 77 |
+
"grad_norm": 0.38276150822639465,
|
| 78 |
+
"learning_rate": 0.0001941070354780517,
|
| 79 |
+
"loss": 0.2195589542388916,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.17513134851138354,
|
| 84 |
+
"eval_loss": 0.23231205344200134,
|
| 85 |
+
"eval_runtime": 169.8531,
|
| 86 |
+
"eval_samples_per_second": 2.991,
|
| 87 |
+
"eval_steps_per_second": 0.748,
|
| 88 |
+
"step": 100
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"epoch": 0.19264448336252188,
|
| 92 |
+
"grad_norm": 0.406323105096817,
|
| 93 |
+
"learning_rate": 0.00019290438965724596,
|
| 94 |
+
"loss": 0.2108442783355713,
|
| 95 |
+
"step": 110
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"epoch": 0.21015761821366025,
|
| 99 |
+
"grad_norm": 0.47465822100639343,
|
| 100 |
+
"learning_rate": 0.00019170174383644018,
|
| 101 |
+
"loss": 0.2249575138092041,
|
| 102 |
+
"step": 120
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"epoch": 0.2276707530647986,
|
| 106 |
+
"grad_norm": 0.35268914699554443,
|
| 107 |
+
"learning_rate": 0.0001904990980156344,
|
| 108 |
+
"loss": 0.16998076438903809,
|
| 109 |
+
"step": 130
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.24518388791593695,
|
| 113 |
+
"grad_norm": 0.31479501724243164,
|
| 114 |
+
"learning_rate": 0.00018929645219482863,
|
| 115 |
+
"loss": 0.1623205780982971,
|
| 116 |
+
"step": 140
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"epoch": 0.2626970227670753,
|
| 120 |
+
"grad_norm": 0.3868594467639923,
|
| 121 |
+
"learning_rate": 0.00018809380637402286,
|
| 122 |
+
"loss": 0.16868008375167848,
|
| 123 |
+
"step": 150
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 0.28021015761821366,
|
| 127 |
+
"grad_norm": 0.4887761175632477,
|
| 128 |
+
"learning_rate": 0.00018689116055321708,
|
| 129 |
+
"loss": 0.1882340431213379,
|
| 130 |
+
"step": 160
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.29772329246935203,
|
| 134 |
+
"grad_norm": 0.39412927627563477,
|
| 135 |
+
"learning_rate": 0.0001856885147324113,
|
| 136 |
+
"loss": 0.15920686721801758,
|
| 137 |
+
"step": 170
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"epoch": 0.31523642732049034,
|
| 141 |
+
"grad_norm": 0.41622865200042725,
|
| 142 |
+
"learning_rate": 0.00018448586891160553,
|
| 143 |
+
"loss": 0.16607775688171386,
|
| 144 |
+
"step": 180
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"epoch": 0.3327495621716287,
|
| 148 |
+
"grad_norm": 0.4045696258544922,
|
| 149 |
+
"learning_rate": 0.00018328322309079978,
|
| 150 |
+
"loss": 0.158127498626709,
|
| 151 |
+
"step": 190
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"epoch": 0.3502626970227671,
|
| 155 |
+
"grad_norm": 0.3789847493171692,
|
| 156 |
+
"learning_rate": 0.00018208057726999398,
|
| 157 |
+
"loss": 0.14632443189620972,
|
| 158 |
+
"step": 200
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"epoch": 0.3502626970227671,
|
| 162 |
+
"eval_loss": 0.1353635936975479,
|
| 163 |
+
"eval_runtime": 171.8534,
|
| 164 |
+
"eval_samples_per_second": 2.956,
|
| 165 |
+
"eval_steps_per_second": 0.739,
|
| 166 |
+
"step": 200
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"epoch": 0.36777583187390545,
|
| 170 |
+
"grad_norm": 0.41194388270378113,
|
| 171 |
+
"learning_rate": 0.00018087793144918823,
|
| 172 |
+
"loss": 0.1293831706047058,
|
| 173 |
+
"step": 210
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"epoch": 0.38528896672504376,
|
| 177 |
+
"grad_norm": 0.35434651374816895,
|
| 178 |
+
"learning_rate": 0.00017967528562838245,
|
| 179 |
+
"loss": 0.13147668838500975,
|
| 180 |
+
"step": 220
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 0.4028021015761821,
|
| 184 |
+
"grad_norm": 0.3050230145454407,
|
| 185 |
+
"learning_rate": 0.00017847263980757668,
|
| 186 |
+
"loss": 0.12810969352722168,
|
| 187 |
+
"step": 230
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"epoch": 0.4203152364273205,
|
| 191 |
+
"grad_norm": 0.29852065443992615,
|
| 192 |
+
"learning_rate": 0.0001772699939867709,
|
| 193 |
+
"loss": 0.13389307260513306,
|
| 194 |
+
"step": 240
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"epoch": 0.43782837127845886,
|
| 198 |
+
"grad_norm": 0.3992239832878113,
|
| 199 |
+
"learning_rate": 0.00017606734816596513,
|
| 200 |
+
"loss": 0.11474900245666504,
|
| 201 |
+
"step": 250
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"epoch": 0.4553415061295972,
|
| 205 |
+
"grad_norm": 0.323345422744751,
|
| 206 |
+
"learning_rate": 0.00017486470234515935,
|
| 207 |
+
"loss": 0.11180757284164429,
|
| 208 |
+
"step": 260
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.47285464098073554,
|
| 212 |
+
"grad_norm": 0.3820851147174835,
|
| 213 |
+
"learning_rate": 0.00017366205652435358,
|
| 214 |
+
"loss": 0.10637552738189697,
|
| 215 |
+
"step": 270
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"epoch": 0.4903677758318739,
|
| 219 |
+
"grad_norm": 0.3785695433616638,
|
| 220 |
+
"learning_rate": 0.0001724594107035478,
|
| 221 |
+
"loss": 0.11243565082550049,
|
| 222 |
+
"step": 280
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"epoch": 0.5078809106830122,
|
| 226 |
+
"grad_norm": 0.34767481684684753,
|
| 227 |
+
"learning_rate": 0.00017125676488274205,
|
| 228 |
+
"loss": 0.11057982444763184,
|
| 229 |
+
"step": 290
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"epoch": 0.5253940455341506,
|
| 233 |
+
"grad_norm": 0.32242536544799805,
|
| 234 |
+
"learning_rate": 0.00017005411906193628,
|
| 235 |
+
"loss": 0.09878214001655579,
|
| 236 |
+
"step": 300
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"epoch": 0.5253940455341506,
|
| 240 |
+
"eval_loss": 0.10276732593774796,
|
| 241 |
+
"eval_runtime": 170.0789,
|
| 242 |
+
"eval_samples_per_second": 2.987,
|
| 243 |
+
"eval_steps_per_second": 0.747,
|
| 244 |
+
"step": 300
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 0.542907180385289,
|
| 248 |
+
"grad_norm": 0.3188435435295105,
|
| 249 |
+
"learning_rate": 0.00016885147324113047,
|
| 250 |
+
"loss": 0.08771577477455139,
|
| 251 |
+
"step": 310
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"epoch": 0.5604203152364273,
|
| 255 |
+
"grad_norm": 0.2941615879535675,
|
| 256 |
+
"learning_rate": 0.00016764882742032473,
|
| 257 |
+
"loss": 0.08557047247886658,
|
| 258 |
+
"step": 320
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"epoch": 0.5779334500875657,
|
| 262 |
+
"grad_norm": 0.2936120927333832,
|
| 263 |
+
"learning_rate": 0.00016644618159951895,
|
| 264 |
+
"loss": 0.08636216521263122,
|
| 265 |
+
"step": 330
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.5954465849387041,
|
| 269 |
+
"grad_norm": 0.21349965035915375,
|
| 270 |
+
"learning_rate": 0.0001652435357787132,
|
| 271 |
+
"loss": 0.08149101734161376,
|
| 272 |
+
"step": 340
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 0.6129597197898424,
|
| 276 |
+
"grad_norm": 0.2442740797996521,
|
| 277 |
+
"learning_rate": 0.0001640408899579074,
|
| 278 |
+
"loss": 0.08436259627342224,
|
| 279 |
+
"step": 350
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 0.6304728546409807,
|
| 283 |
+
"grad_norm": 0.3144635856151581,
|
| 284 |
+
"learning_rate": 0.00016283824413710162,
|
| 285 |
+
"loss": 0.0912843644618988,
|
| 286 |
+
"step": 360
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 0.647985989492119,
|
| 290 |
+
"grad_norm": 0.18774041533470154,
|
| 291 |
+
"learning_rate": 0.00016163559831629587,
|
| 292 |
+
"loss": 0.08484984040260315,
|
| 293 |
+
"step": 370
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 0.6654991243432574,
|
| 297 |
+
"grad_norm": 0.3200187385082245,
|
| 298 |
+
"learning_rate": 0.0001604329524954901,
|
| 299 |
+
"loss": 0.08420997262001037,
|
| 300 |
+
"step": 380
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 0.6830122591943958,
|
| 304 |
+
"grad_norm": 0.20744681358337402,
|
| 305 |
+
"learning_rate": 0.0001592303066746843,
|
| 306 |
+
"loss": 0.07883568406105042,
|
| 307 |
+
"step": 390
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.7005253940455342,
|
| 311 |
+
"grad_norm": 0.49990326166152954,
|
| 312 |
+
"learning_rate": 0.00015802766085387855,
|
| 313 |
+
"loss": 0.07491461634635925,
|
| 314 |
+
"step": 400
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 0.7005253940455342,
|
| 318 |
+
"eval_loss": 0.08543122559785843,
|
| 319 |
+
"eval_runtime": 169.5964,
|
| 320 |
+
"eval_samples_per_second": 2.995,
|
| 321 |
+
"eval_steps_per_second": 0.749,
|
| 322 |
+
"step": 400
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"epoch": 0.7180385288966725,
|
| 326 |
+
"grad_norm": 0.21963991224765778,
|
| 327 |
+
"learning_rate": 0.00015682501503307277,
|
| 328 |
+
"loss": 0.07940490245819092,
|
| 329 |
+
"step": 410
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 0.7355516637478109,
|
| 333 |
+
"grad_norm": 0.282270610332489,
|
| 334 |
+
"learning_rate": 0.000155622369212267,
|
| 335 |
+
"loss": 0.08389427065849304,
|
| 336 |
+
"step": 420
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"epoch": 0.7530647985989493,
|
| 340 |
+
"grad_norm": 0.19522342085838318,
|
| 341 |
+
"learning_rate": 0.00015441972339146122,
|
| 342 |
+
"loss": 0.07796943187713623,
|
| 343 |
+
"step": 430
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.7705779334500875,
|
| 347 |
+
"grad_norm": 0.20144295692443848,
|
| 348 |
+
"learning_rate": 0.00015321707757065545,
|
| 349 |
+
"loss": 0.08569519519805908,
|
| 350 |
+
"step": 440
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 0.7880910683012259,
|
| 354 |
+
"grad_norm": 0.31299343705177307,
|
| 355 |
+
"learning_rate": 0.0001520144317498497,
|
| 356 |
+
"loss": 0.07234247326850891,
|
| 357 |
+
"step": 450
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"epoch": 0.8056042031523643,
|
| 361 |
+
"grad_norm": 0.22233198583126068,
|
| 362 |
+
"learning_rate": 0.0001508117859290439,
|
| 363 |
+
"loss": 0.06918607354164123,
|
| 364 |
+
"step": 460
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"epoch": 0.8231173380035026,
|
| 368 |
+
"grad_norm": 0.3281087577342987,
|
| 369 |
+
"learning_rate": 0.00014960914010823812,
|
| 370 |
+
"loss": 0.06424351334571839,
|
| 371 |
+
"step": 470
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"epoch": 0.840630472854641,
|
| 375 |
+
"grad_norm": 0.23634330928325653,
|
| 376 |
+
"learning_rate": 0.00014840649428743237,
|
| 377 |
+
"loss": 0.07089964151382447,
|
| 378 |
+
"step": 480
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"epoch": 0.8581436077057794,
|
| 382 |
+
"grad_norm": 0.24085308611392975,
|
| 383 |
+
"learning_rate": 0.0001472038484666266,
|
| 384 |
+
"loss": 0.07725317478179931,
|
| 385 |
+
"step": 490
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 0.8756567425569177,
|
| 389 |
+
"grad_norm": 0.2506239712238312,
|
| 390 |
+
"learning_rate": 0.00014600120264582082,
|
| 391 |
+
"loss": 0.07955536246299744,
|
| 392 |
+
"step": 500
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"epoch": 0.8756567425569177,
|
| 396 |
+
"eval_loss": 0.07601634413003922,
|
| 397 |
+
"eval_runtime": 170.4186,
|
| 398 |
+
"eval_samples_per_second": 2.981,
|
| 399 |
+
"eval_steps_per_second": 0.745,
|
| 400 |
+
"step": 500
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 0.8931698774080561,
|
| 404 |
+
"grad_norm": 0.30001509189605713,
|
| 405 |
+
"learning_rate": 0.00014479855682501504,
|
| 406 |
+
"loss": 0.06071768999099732,
|
| 407 |
+
"step": 510
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 0.9106830122591943,
|
| 411 |
+
"grad_norm": 0.1644354909658432,
|
| 412 |
+
"learning_rate": 0.00014359591100420927,
|
| 413 |
+
"loss": 0.07156956791877747,
|
| 414 |
+
"step": 520
|
| 415 |
+
},
|
| 416 |
+
{
|
| 417 |
+
"epoch": 0.9281961471103327,
|
| 418 |
+
"grad_norm": 0.2289579063653946,
|
| 419 |
+
"learning_rate": 0.0001423932651834035,
|
| 420 |
+
"loss": 0.07050368785858155,
|
| 421 |
+
"step": 530
|
| 422 |
+
},
|
| 423 |
+
{
|
| 424 |
+
"epoch": 0.9457092819614711,
|
| 425 |
+
"grad_norm": 0.3195700943470001,
|
| 426 |
+
"learning_rate": 0.00014119061936259772,
|
| 427 |
+
"loss": 0.06230233311653137,
|
| 428 |
+
"step": 540
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"epoch": 0.9632224168126094,
|
| 432 |
+
"grad_norm": 0.15884605050086975,
|
| 433 |
+
"learning_rate": 0.00013998797354179194,
|
| 434 |
+
"loss": 0.06492781639099121,
|
| 435 |
+
"step": 550
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"epoch": 0.9807355516637478,
|
| 439 |
+
"grad_norm": 0.17338015139102936,
|
| 440 |
+
"learning_rate": 0.0001387853277209862,
|
| 441 |
+
"loss": 0.07274928689002991,
|
| 442 |
+
"step": 560
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 0.9982486865148862,
|
| 446 |
+
"grad_norm": 0.18797871470451355,
|
| 447 |
+
"learning_rate": 0.0001375826819001804,
|
| 448 |
+
"loss": 0.07553291320800781,
|
| 449 |
+
"step": 570
|
| 450 |
+
},
|
| 451 |
+
{
|
| 452 |
+
"epoch": 1.0157618213660244,
|
| 453 |
+
"grad_norm": 0.14001163840293884,
|
| 454 |
+
"learning_rate": 0.00013638003607937464,
|
| 455 |
+
"loss": 0.04513072073459625,
|
| 456 |
+
"step": 580
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"epoch": 1.0332749562171628,
|
| 460 |
+
"grad_norm": 0.25820890069007874,
|
| 461 |
+
"learning_rate": 0.00013517739025856887,
|
| 462 |
+
"loss": 0.05151134729385376,
|
| 463 |
+
"step": 590
|
| 464 |
+
},
|
| 465 |
+
{
|
| 466 |
+
"epoch": 1.0507880910683012,
|
| 467 |
+
"grad_norm": 0.2387373149394989,
|
| 468 |
+
"learning_rate": 0.0001339747444377631,
|
| 469 |
+
"loss": 0.05233837962150574,
|
| 470 |
+
"step": 600
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"epoch": 1.0507880910683012,
|
| 474 |
+
"eval_loss": 0.07496609538793564,
|
| 475 |
+
"eval_runtime": 169.9129,
|
| 476 |
+
"eval_samples_per_second": 2.99,
|
| 477 |
+
"eval_steps_per_second": 0.747,
|
| 478 |
+
"step": 600
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 1.0683012259194395,
|
| 482 |
+
"grad_norm": 0.21280422806739807,
|
| 483 |
+
"learning_rate": 0.00013277209861695731,
|
| 484 |
+
"loss": 0.04595586657524109,
|
| 485 |
+
"step": 610
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"epoch": 1.085814360770578,
|
| 489 |
+
"grad_norm": 0.2865266799926758,
|
| 490 |
+
"learning_rate": 0.00013156945279615154,
|
| 491 |
+
"loss": 0.04963254630565643,
|
| 492 |
+
"step": 620
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"epoch": 1.1033274956217163,
|
| 496 |
+
"grad_norm": 0.19880151748657227,
|
| 497 |
+
"learning_rate": 0.00013036680697534576,
|
| 498 |
+
"loss": 0.05288234353065491,
|
| 499 |
+
"step": 630
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 1.1208406304728546,
|
| 503 |
+
"grad_norm": 0.25318190455436707,
|
| 504 |
+
"learning_rate": 0.00012916416115454,
|
| 505 |
+
"loss": 0.04070430099964142,
|
| 506 |
+
"step": 640
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"epoch": 1.138353765323993,
|
| 510 |
+
"grad_norm": 0.2229541689157486,
|
| 511 |
+
"learning_rate": 0.0001279615153337342,
|
| 512 |
+
"loss": 0.04462625682353973,
|
| 513 |
+
"step": 650
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 1.1558669001751314,
|
| 517 |
+
"grad_norm": 0.15195652842521667,
|
| 518 |
+
"learning_rate": 0.00012675886951292846,
|
| 519 |
+
"loss": 0.04568430483341217,
|
| 520 |
+
"step": 660
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 1.1733800350262698,
|
| 524 |
+
"grad_norm": 0.2872307300567627,
|
| 525 |
+
"learning_rate": 0.0001255562236921227,
|
| 526 |
+
"loss": 0.04056203365325928,
|
| 527 |
+
"step": 670
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 1.1908931698774081,
|
| 531 |
+
"grad_norm": 0.30495700240135193,
|
| 532 |
+
"learning_rate": 0.00012435357787131689,
|
| 533 |
+
"loss": 0.047316303849220274,
|
| 534 |
+
"step": 680
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"epoch": 1.2084063047285465,
|
| 538 |
+
"grad_norm": 0.1586247980594635,
|
| 539 |
+
"learning_rate": 0.00012315093205051114,
|
| 540 |
+
"loss": 0.044099316000938416,
|
| 541 |
+
"step": 690
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 1.2259194395796849,
|
| 545 |
+
"grad_norm": 0.19665417075157166,
|
| 546 |
+
"learning_rate": 0.00012194828622970536,
|
| 547 |
+
"loss": 0.04525145888328552,
|
| 548 |
+
"step": 700
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 1.2259194395796849,
|
| 552 |
+
"eval_loss": 0.07472622394561768,
|
| 553 |
+
"eval_runtime": 169.568,
|
| 554 |
+
"eval_samples_per_second": 2.996,
|
| 555 |
+
"eval_steps_per_second": 0.749,
|
| 556 |
+
"step": 700
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 1.2434325744308232,
|
| 560 |
+
"grad_norm": 0.21693575382232666,
|
| 561 |
+
"learning_rate": 0.00012074564040889957,
|
| 562 |
+
"loss": 0.04104744493961334,
|
| 563 |
+
"step": 710
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 1.2609457092819616,
|
| 567 |
+
"grad_norm": 0.24825339019298553,
|
| 568 |
+
"learning_rate": 0.00011954299458809381,
|
| 569 |
+
"loss": 0.0438425600528717,
|
| 570 |
+
"step": 720
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 1.2784588441331,
|
| 574 |
+
"grad_norm": 0.18047627806663513,
|
| 575 |
+
"learning_rate": 0.00011834034876728803,
|
| 576 |
+
"loss": 0.047738096117973326,
|
| 577 |
+
"step": 730
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 1.295971978984238,
|
| 581 |
+
"grad_norm": 0.19772164523601532,
|
| 582 |
+
"learning_rate": 0.00011713770294648227,
|
| 583 |
+
"loss": 0.04714350998401642,
|
| 584 |
+
"step": 740
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 1.3134851138353765,
|
| 588 |
+
"grad_norm": 0.22316114604473114,
|
| 589 |
+
"learning_rate": 0.0001159350571256765,
|
| 590 |
+
"loss": 0.04388459920883179,
|
| 591 |
+
"step": 750
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 1.3309982486865148,
|
| 595 |
+
"grad_norm": 0.1677238643169403,
|
| 596 |
+
"learning_rate": 0.00011473241130487071,
|
| 597 |
+
"loss": 0.04296576082706451,
|
| 598 |
+
"step": 760
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 1.3485113835376532,
|
| 602 |
+
"grad_norm": 0.2544882595539093,
|
| 603 |
+
"learning_rate": 0.00011352976548406496,
|
| 604 |
+
"loss": 0.037767985463142396,
|
| 605 |
+
"step": 770
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 1.3660245183887916,
|
| 609 |
+
"grad_norm": 0.17373642325401306,
|
| 610 |
+
"learning_rate": 0.00011232711966325917,
|
| 611 |
+
"loss": 0.04673008918762207,
|
| 612 |
+
"step": 780
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 1.38353765323993,
|
| 616 |
+
"grad_norm": 0.23099961876869202,
|
| 617 |
+
"learning_rate": 0.00011112447384245341,
|
| 618 |
+
"loss": 0.04906592071056366,
|
| 619 |
+
"step": 790
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 1.4010507880910683,
|
| 623 |
+
"grad_norm": 0.2572455406188965,
|
| 624 |
+
"learning_rate": 0.00010992182802164763,
|
| 625 |
+
"loss": 0.04228177070617676,
|
| 626 |
+
"step": 800
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 1.4010507880910683,
|
| 630 |
+
"eval_loss": 0.07377293705940247,
|
| 631 |
+
"eval_runtime": 169.6978,
|
| 632 |
+
"eval_samples_per_second": 2.994,
|
| 633 |
+
"eval_steps_per_second": 0.748,
|
| 634 |
+
"step": 800
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"epoch": 1.4185639229422067,
|
| 638 |
+
"grad_norm": 0.1933060735464096,
|
| 639 |
+
"learning_rate": 0.00010871918220084186,
|
| 640 |
+
"loss": 0.039757218956947324,
|
| 641 |
+
"step": 810
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"epoch": 1.436077057793345,
|
| 645 |
+
"grad_norm": 0.21861182153224945,
|
| 646 |
+
"learning_rate": 0.0001075165363800361,
|
| 647 |
+
"loss": 0.04450837075710297,
|
| 648 |
+
"step": 820
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 1.4535901926444834,
|
| 652 |
+
"grad_norm": 0.27015894651412964,
|
| 653 |
+
"learning_rate": 0.0001063138905592303,
|
| 654 |
+
"loss": 0.04501202404499054,
|
| 655 |
+
"step": 830
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 1.4711033274956218,
|
| 659 |
+
"grad_norm": 0.15882235765457153,
|
| 660 |
+
"learning_rate": 0.00010511124473842453,
|
| 661 |
+
"loss": 0.040595722198486325,
|
| 662 |
+
"step": 840
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.4886164623467601,
|
| 666 |
+
"grad_norm": 0.22079160809516907,
|
| 667 |
+
"learning_rate": 0.00010390859891761877,
|
| 668 |
+
"loss": 0.04613872766494751,
|
| 669 |
+
"step": 850
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 1.5061295971978983,
|
| 673 |
+
"grad_norm": 0.26043882966041565,
|
| 674 |
+
"learning_rate": 0.00010270595309681299,
|
| 675 |
+
"loss": 0.052975207567214966,
|
| 676 |
+
"step": 860
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 1.5236427320490367,
|
| 680 |
+
"grad_norm": 0.1896980255842209,
|
| 681 |
+
"learning_rate": 0.00010150330727600723,
|
| 682 |
+
"loss": 0.04145742654800415,
|
| 683 |
+
"step": 870
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"epoch": 1.541155866900175,
|
| 687 |
+
"grad_norm": 0.17354312539100647,
|
| 688 |
+
"learning_rate": 0.00010030066145520146,
|
| 689 |
+
"loss": 0.04943464994430542,
|
| 690 |
+
"step": 880
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"epoch": 1.5586690017513134,
|
| 694 |
+
"grad_norm": 0.14007078111171722,
|
| 695 |
+
"learning_rate": 9.909801563439568e-05,
|
| 696 |
+
"loss": 0.04217578768730164,
|
| 697 |
+
"step": 890
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 1.5761821366024518,
|
| 701 |
+
"grad_norm": 0.20131802558898926,
|
| 702 |
+
"learning_rate": 9.78953698135899e-05,
|
| 703 |
+
"loss": 0.041672542691230774,
|
| 704 |
+
"step": 900
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"epoch": 1.5761821366024518,
|
| 708 |
+
"eval_loss": 0.07051914185285568,
|
| 709 |
+
"eval_runtime": 169.9735,
|
| 710 |
+
"eval_samples_per_second": 2.989,
|
| 711 |
+
"eval_steps_per_second": 0.747,
|
| 712 |
+
"step": 900
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 1.5936952714535901,
|
| 716 |
+
"grad_norm": 0.22193501889705658,
|
| 717 |
+
"learning_rate": 9.669272399278413e-05,
|
| 718 |
+
"loss": 0.04524196684360504,
|
| 719 |
+
"step": 910
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"epoch": 1.6112084063047285,
|
| 723 |
+
"grad_norm": 0.23595920205116272,
|
| 724 |
+
"learning_rate": 9.549007817197835e-05,
|
| 725 |
+
"loss": 0.04126276075839996,
|
| 726 |
+
"step": 920
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"epoch": 1.6287215411558669,
|
| 730 |
+
"grad_norm": 0.2922545373439789,
|
| 731 |
+
"learning_rate": 9.428743235117259e-05,
|
| 732 |
+
"loss": 0.04022812843322754,
|
| 733 |
+
"step": 930
|
| 734 |
+
},
|
| 735 |
+
{
|
| 736 |
+
"epoch": 1.6462346760070052,
|
| 737 |
+
"grad_norm": 0.23278813064098358,
|
| 738 |
+
"learning_rate": 9.30847865303668e-05,
|
| 739 |
+
"loss": 0.04213928878307342,
|
| 740 |
+
"step": 940
|
| 741 |
+
},
|
| 742 |
+
{
|
| 743 |
+
"epoch": 1.6637478108581436,
|
| 744 |
+
"grad_norm": 0.14974910020828247,
|
| 745 |
+
"learning_rate": 9.188214070956104e-05,
|
| 746 |
+
"loss": 0.0363939642906189,
|
| 747 |
+
"step": 950
|
| 748 |
+
},
|
| 749 |
+
{
|
| 750 |
+
"epoch": 1.681260945709282,
|
| 751 |
+
"grad_norm": 0.1183304563164711,
|
| 752 |
+
"learning_rate": 9.067949488875526e-05,
|
| 753 |
+
"loss": 0.04207303524017334,
|
| 754 |
+
"step": 960
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"epoch": 1.6987740805604203,
|
| 758 |
+
"grad_norm": 0.23170360922813416,
|
| 759 |
+
"learning_rate": 8.94768490679495e-05,
|
| 760 |
+
"loss": 0.042323988676071164,
|
| 761 |
+
"step": 970
|
| 762 |
+
},
|
| 763 |
+
{
|
| 764 |
+
"epoch": 1.7162872154115587,
|
| 765 |
+
"grad_norm": 0.14556758105754852,
|
| 766 |
+
"learning_rate": 8.827420324714371e-05,
|
| 767 |
+
"loss": 0.042339283227920535,
|
| 768 |
+
"step": 980
|
| 769 |
+
},
|
| 770 |
+
{
|
| 771 |
+
"epoch": 1.733800350262697,
|
| 772 |
+
"grad_norm": 0.1421191394329071,
|
| 773 |
+
"learning_rate": 8.707155742633795e-05,
|
| 774 |
+
"loss": 0.04450683891773224,
|
| 775 |
+
"step": 990
|
| 776 |
+
},
|
| 777 |
+
{
|
| 778 |
+
"epoch": 1.7513134851138354,
|
| 779 |
+
"grad_norm": 0.31845614314079285,
|
| 780 |
+
"learning_rate": 8.586891160553218e-05,
|
| 781 |
+
"loss": 0.042928069829940796,
|
| 782 |
+
"step": 1000
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"epoch": 1.7513134851138354,
|
| 786 |
+
"eval_loss": 0.0688522532582283,
|
| 787 |
+
"eval_runtime": 169.5678,
|
| 788 |
+
"eval_samples_per_second": 2.996,
|
| 789 |
+
"eval_steps_per_second": 0.749,
|
| 790 |
+
"step": 1000
|
| 791 |
+
},
|
| 792 |
+
{
|
| 793 |
+
"epoch": 1.7688266199649738,
|
| 794 |
+
"grad_norm": 0.1398610770702362,
|
| 795 |
+
"learning_rate": 8.46662657847264e-05,
|
| 796 |
+
"loss": 0.042378559708595276,
|
| 797 |
+
"step": 1010
|
| 798 |
+
},
|
| 799 |
+
{
|
| 800 |
+
"epoch": 1.7863397548161122,
|
| 801 |
+
"grad_norm": 0.18888983130455017,
|
| 802 |
+
"learning_rate": 8.346361996392062e-05,
|
| 803 |
+
"loss": 0.044092172384262086,
|
| 804 |
+
"step": 1020
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"epoch": 1.8038528896672505,
|
| 808 |
+
"grad_norm": 0.192138671875,
|
| 809 |
+
"learning_rate": 8.226097414311485e-05,
|
| 810 |
+
"loss": 0.03955377042293549,
|
| 811 |
+
"step": 1030
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"epoch": 1.821366024518389,
|
| 815 |
+
"grad_norm": 0.2001374512910843,
|
| 816 |
+
"learning_rate": 8.105832832230909e-05,
|
| 817 |
+
"loss": 0.04774285852909088,
|
| 818 |
+
"step": 1040
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"epoch": 1.8388791593695273,
|
| 822 |
+
"grad_norm": 0.24916240572929382,
|
| 823 |
+
"learning_rate": 7.985568250150331e-05,
|
| 824 |
+
"loss": 0.044192954897880554,
|
| 825 |
+
"step": 1050
|
| 826 |
+
},
|
| 827 |
+
{
|
| 828 |
+
"epoch": 1.8563922942206657,
|
| 829 |
+
"grad_norm": 0.21104031801223755,
|
| 830 |
+
"learning_rate": 7.865303668069754e-05,
|
| 831 |
+
"loss": 0.0387516975402832,
|
| 832 |
+
"step": 1060
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"epoch": 1.873905429071804,
|
| 836 |
+
"grad_norm": 0.27948206663131714,
|
| 837 |
+
"learning_rate": 7.745039085989176e-05,
|
| 838 |
+
"loss": 0.042763397097587585,
|
| 839 |
+
"step": 1070
|
| 840 |
+
},
|
| 841 |
+
{
|
| 842 |
+
"epoch": 1.8914185639229422,
|
| 843 |
+
"grad_norm": 0.21115849912166595,
|
| 844 |
+
"learning_rate": 7.6247745039086e-05,
|
| 845 |
+
"loss": 0.03943166434764862,
|
| 846 |
+
"step": 1080
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"epoch": 1.9089316987740805,
|
| 850 |
+
"grad_norm": 0.24164821207523346,
|
| 851 |
+
"learning_rate": 7.504509921828022e-05,
|
| 852 |
+
"loss": 0.04395500421524048,
|
| 853 |
+
"step": 1090
|
| 854 |
+
},
|
| 855 |
+
{
|
| 856 |
+
"epoch": 1.926444833625219,
|
| 857 |
+
"grad_norm": 0.14232757687568665,
|
| 858 |
+
"learning_rate": 7.384245339747445e-05,
|
| 859 |
+
"loss": 0.03802197575569153,
|
| 860 |
+
"step": 1100
|
| 861 |
+
},
|
| 862 |
+
{
|
| 863 |
+
"epoch": 1.926444833625219,
|
| 864 |
+
"eval_loss": 0.0663708746433258,
|
| 865 |
+
"eval_runtime": 170.0427,
|
| 866 |
+
"eval_samples_per_second": 2.987,
|
| 867 |
+
"eval_steps_per_second": 0.747,
|
| 868 |
+
"step": 1100
|
| 869 |
+
},
|
| 870 |
+
{
|
| 871 |
+
"epoch": 1.9439579684763573,
|
| 872 |
+
"grad_norm": 0.20456406474113464,
|
| 873 |
+
"learning_rate": 7.263980757666867e-05,
|
| 874 |
+
"loss": 0.04351660311222076,
|
| 875 |
+
"step": 1110
|
| 876 |
+
},
|
| 877 |
+
{
|
| 878 |
+
"epoch": 1.9614711033274956,
|
| 879 |
+
"grad_norm": 0.28461146354675293,
|
| 880 |
+
"learning_rate": 7.14371617558629e-05,
|
| 881 |
+
"loss": 0.04411421418190002,
|
| 882 |
+
"step": 1120
|
| 883 |
+
},
|
| 884 |
+
{
|
| 885 |
+
"epoch": 1.978984238178634,
|
| 886 |
+
"grad_norm": 0.33428093791007996,
|
| 887 |
+
"learning_rate": 7.023451593505713e-05,
|
| 888 |
+
"loss": 0.04533115029335022,
|
| 889 |
+
"step": 1130
|
| 890 |
+
},
|
| 891 |
+
{
|
| 892 |
+
"epoch": 1.9964973730297724,
|
| 893 |
+
"grad_norm": 0.2965065538883209,
|
| 894 |
+
"learning_rate": 6.903187011425134e-05,
|
| 895 |
+
"loss": 0.04683744609355926,
|
| 896 |
+
"step": 1140
|
| 897 |
+
},
|
| 898 |
+
{
|
| 899 |
+
"epoch": 2.0140105078809105,
|
| 900 |
+
"grad_norm": 0.13189074397087097,
|
| 901 |
+
"learning_rate": 6.782922429344558e-05,
|
| 902 |
+
"loss": 0.024469637870788576,
|
| 903 |
+
"step": 1150
|
| 904 |
+
},
|
| 905 |
+
{
|
| 906 |
+
"epoch": 2.031523642732049,
|
| 907 |
+
"grad_norm": 0.26192790269851685,
|
| 908 |
+
"learning_rate": 6.662657847263981e-05,
|
| 909 |
+
"loss": 0.020343032479286195,
|
| 910 |
+
"step": 1160
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"epoch": 2.0490367775831873,
|
| 914 |
+
"grad_norm": 0.17017051577568054,
|
| 915 |
+
"learning_rate": 6.542393265183405e-05,
|
| 916 |
+
"loss": 0.023167347908020018,
|
| 917 |
+
"step": 1170
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"epoch": 2.0665499124343256,
|
| 921 |
+
"grad_norm": 0.23270311951637268,
|
| 922 |
+
"learning_rate": 6.422128683102826e-05,
|
| 923 |
+
"loss": 0.019265547394752502,
|
| 924 |
+
"step": 1180
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"epoch": 2.084063047285464,
|
| 928 |
+
"grad_norm": 0.17566721141338348,
|
| 929 |
+
"learning_rate": 6.30186410102225e-05,
|
| 930 |
+
"loss": 0.020077353715896605,
|
| 931 |
+
"step": 1190
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"epoch": 2.1015761821366024,
|
| 935 |
+
"grad_norm": 0.21460862457752228,
|
| 936 |
+
"learning_rate": 6.181599518941672e-05,
|
| 937 |
+
"loss": 0.020433691143989564,
|
| 938 |
+
"step": 1200
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"epoch": 2.1015761821366024,
|
| 942 |
+
"eval_loss": 0.0755230188369751,
|
| 943 |
+
"eval_runtime": 169.6234,
|
| 944 |
+
"eval_samples_per_second": 2.995,
|
| 945 |
+
"eval_steps_per_second": 0.749,
|
| 946 |
+
"step": 1200
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"epoch": 2.1190893169877407,
|
| 950 |
+
"grad_norm": 0.19966909289360046,
|
| 951 |
+
"learning_rate": 6.061334936861095e-05,
|
| 952 |
+
"loss": 0.019319312274456026,
|
| 953 |
+
"step": 1210
|
| 954 |
+
},
|
| 955 |
+
{
|
| 956 |
+
"epoch": 2.136602451838879,
|
| 957 |
+
"grad_norm": 0.19373339414596558,
|
| 958 |
+
"learning_rate": 5.941070354780517e-05,
|
| 959 |
+
"loss": 0.022010722756385805,
|
| 960 |
+
"step": 1220
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"epoch": 2.1541155866900175,
|
| 964 |
+
"grad_norm": 0.19323857128620148,
|
| 965 |
+
"learning_rate": 5.82080577269994e-05,
|
| 966 |
+
"loss": 0.021162202954292296,
|
| 967 |
+
"step": 1230
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"epoch": 2.171628721541156,
|
| 971 |
+
"grad_norm": 0.16135787963867188,
|
| 972 |
+
"learning_rate": 5.700541190619363e-05,
|
| 973 |
+
"loss": 0.02209024876356125,
|
| 974 |
+
"step": 1240
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 2.189141856392294,
|
| 978 |
+
"grad_norm": 0.1409604251384735,
|
| 979 |
+
"learning_rate": 5.580276608538786e-05,
|
| 980 |
+
"loss": 0.020828820765018463,
|
| 981 |
+
"step": 1250
|
| 982 |
+
},
|
| 983 |
+
{
|
| 984 |
+
"epoch": 2.2066549912434326,
|
| 985 |
+
"grad_norm": 0.15199248492717743,
|
| 986 |
+
"learning_rate": 5.460012026458209e-05,
|
| 987 |
+
"loss": 0.019746646285057068,
|
| 988 |
+
"step": 1260
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"epoch": 2.224168126094571,
|
| 992 |
+
"grad_norm": 0.1164596751332283,
|
| 993 |
+
"learning_rate": 5.339747444377631e-05,
|
| 994 |
+
"loss": 0.02107318639755249,
|
| 995 |
+
"step": 1270
|
| 996 |
+
},
|
| 997 |
+
{
|
| 998 |
+
"epoch": 2.2416812609457093,
|
| 999 |
+
"grad_norm": 0.14257144927978516,
|
| 1000 |
+
"learning_rate": 5.219482862297054e-05,
|
| 1001 |
+
"loss": 0.018259820342063905,
|
| 1002 |
+
"step": 1280
|
| 1003 |
+
},
|
| 1004 |
+
{
|
| 1005 |
+
"epoch": 2.2591943957968477,
|
| 1006 |
+
"grad_norm": 0.1540592759847641,
|
| 1007 |
+
"learning_rate": 5.0992182802164765e-05,
|
| 1008 |
+
"loss": 0.0190964937210083,
|
| 1009 |
+
"step": 1290
|
| 1010 |
+
},
|
| 1011 |
+
{
|
| 1012 |
+
"epoch": 2.276707530647986,
|
| 1013 |
+
"grad_norm": 0.2179027795791626,
|
| 1014 |
+
"learning_rate": 4.978953698135899e-05,
|
| 1015 |
+
"loss": 0.020862923562526704,
|
| 1016 |
+
"step": 1300
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"epoch": 2.276707530647986,
|
| 1020 |
+
"eval_loss": 0.0765165463089943,
|
| 1021 |
+
"eval_runtime": 170.3828,
|
| 1022 |
+
"eval_samples_per_second": 2.982,
|
| 1023 |
+
"eval_steps_per_second": 0.745,
|
| 1024 |
+
"step": 1300
|
| 1025 |
+
}
|
| 1026 |
+
],
|
| 1027 |
+
"logging_steps": 10,
|
| 1028 |
+
"max_steps": 1713,
|
| 1029 |
+
"num_input_tokens_seen": 0,
|
| 1030 |
+
"num_train_epochs": 3,
|
| 1031 |
+
"save_steps": 100,
|
| 1032 |
+
"stateful_callbacks": {
|
| 1033 |
+
"TrainerControl": {
|
| 1034 |
+
"args": {
|
| 1035 |
+
"should_epoch_stop": false,
|
| 1036 |
+
"should_evaluate": false,
|
| 1037 |
+
"should_log": false,
|
| 1038 |
+
"should_save": true,
|
| 1039 |
+
"should_training_stop": false
|
| 1040 |
+
},
|
| 1041 |
+
"attributes": {}
|
| 1042 |
+
}
|
| 1043 |
+
},
|
| 1044 |
+
"total_flos": 5.0067417630582374e+17,
|
| 1045 |
+
"train_batch_size": 2,
|
| 1046 |
+
"trial_name": null,
|
| 1047 |
+
"trial_params": null
|
| 1048 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d6c988dda3cfc875cecfd70b424a3c98e08b8a7321a6d236e2b3a5e887495a7
|
| 3 |
+
size 5713
|