Upload 30 files
Browse files- .gitattributes +3 -0
- sft_model/README.md +63 -0
- sft_model/adapter_config.json +50 -0
- sft_model/adapter_model.safetensors +3 -0
- sft_model/chat_template.jinja +54 -0
- sft_model/checkpoint-3000/README.md +210 -0
- sft_model/checkpoint-3000/adapter_config.json +50 -0
- sft_model/checkpoint-3000/adapter_model.safetensors +3 -0
- sft_model/checkpoint-3000/chat_template.jinja +54 -0
- sft_model/checkpoint-3000/optimizer.pt +3 -0
- sft_model/checkpoint-3000/rng_state.pth +3 -0
- sft_model/checkpoint-3000/scaler.pt +3 -0
- sft_model/checkpoint-3000/scheduler.pt +3 -0
- sft_model/checkpoint-3000/tokenizer.json +3 -0
- sft_model/checkpoint-3000/tokenizer_config.json +16 -0
- sft_model/checkpoint-3000/trainer_state.json +1084 -0
- sft_model/checkpoint-3000/training_args.bin +3 -0
- sft_model/checkpoint-3136/README.md +210 -0
- sft_model/checkpoint-3136/adapter_config.json +50 -0
- sft_model/checkpoint-3136/adapter_model.safetensors +3 -0
- sft_model/checkpoint-3136/chat_template.jinja +54 -0
- sft_model/checkpoint-3136/optimizer.pt +3 -0
- sft_model/checkpoint-3136/rng_state.pth +3 -0
- sft_model/checkpoint-3136/scaler.pt +3 -0
- sft_model/checkpoint-3136/scheduler.pt +3 -0
- sft_model/checkpoint-3136/tokenizer.json +3 -0
- sft_model/checkpoint-3136/tokenizer_config.json +16 -0
- sft_model/checkpoint-3136/trainer_state.json +1126 -0
- sft_model/checkpoint-3136/training_args.bin +3 -0
- sft_model/tokenizer.json +3 -0
- sft_model/tokenizer_config.json +16 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
sft_model/checkpoint-3000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
sft_model/checkpoint-3136/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
sft_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
sft_model/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: peft
|
| 3 |
+
model_name: sft_model
|
| 4 |
+
tags:
|
| 5 |
+
- base_model:adapter:/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 6 |
+
- lora
|
| 7 |
+
- sft
|
| 8 |
+
- transformers
|
| 9 |
+
- trl
|
| 10 |
+
- unsloth
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
base_model: /kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Model Card for sft_model
|
| 17 |
+
|
| 18 |
+
This model is a fine-tuned version of [None](https://huggingface.co/None).
|
| 19 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 20 |
+
|
| 21 |
+
## Quick start
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from transformers import pipeline
|
| 25 |
+
|
| 26 |
+
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?"
|
| 27 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 28 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 29 |
+
print(output["generated_text"])
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Training procedure
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with SFT.
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.18.1
|
| 42 |
+
- TRL: 0.24.0
|
| 43 |
+
- Transformers: 5.5.0
|
| 44 |
+
- Pytorch: 2.10.0+cu128
|
| 45 |
+
- Datasets: 4.3.0
|
| 46 |
+
- Tokenizers: 0.22.2
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Cite TRL as:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@misc{vonwerra2022trl,
|
| 56 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 57 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 58 |
+
year = 2020,
|
| 59 |
+
journal = {GitHub repository},
|
| 60 |
+
publisher = {GitHub},
|
| 61 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 62 |
+
}
|
| 63 |
+
```
|
sft_model/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": "/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1",
|
| 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.05,
|
| 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 |
+
"o_proj",
|
| 37 |
+
"down_proj",
|
| 38 |
+
"q_proj",
|
| 39 |
+
"gate_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": false
|
| 50 |
+
}
|
sft_model/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36a55b5b1902fef5f8c5417adb58fcf4e696995d7a06a9d85d073e1ddb311d3c
|
| 3 |
+
size 161533192
|
sft_model/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 %}
|
sft_model/checkpoint-3000/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 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
|
sft_model/checkpoint-3000/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": "/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1",
|
| 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.05,
|
| 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 |
+
"o_proj",
|
| 37 |
+
"down_proj",
|
| 38 |
+
"q_proj",
|
| 39 |
+
"gate_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": false
|
| 50 |
+
}
|
sft_model/checkpoint-3000/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1570db757213f113830d6aa39e45b2808150655e6088cdfbbe70861402dbad4
|
| 3 |
+
size 161533192
|
sft_model/checkpoint-3000/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 %}
|
sft_model/checkpoint-3000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec58fcd1bd0696414d0c4e9870f6fdf455982c92a70aef3ad4040b1634307aa7
|
| 3 |
+
size 82465413
|
sft_model/checkpoint-3000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13c823fb2997dc4a132136df7944a54384a7523853cebf9d28a64aa89e6cb5cd
|
| 3 |
+
size 14645
|
sft_model/checkpoint-3000/scaler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ac1c46a2776d12775d23d0f587efc112188137ce2140da35bc15d301c9f620e
|
| 3 |
+
size 1383
|
sft_model/checkpoint-3000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1f4c08c2146edf92228bb2698fd772a1ca948866ec1546b958b46c5606a2cad
|
| 3 |
+
size 1465
|
sft_model/checkpoint-3000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b4360dd6a184650ffc48056c2569bc603f896c5adfe94b10f1c79f809638aa5
|
| 3 |
+
size 11422166
|
sft_model/checkpoint-3000/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": true,
|
| 10 |
+
"model_max_length": 32768,
|
| 11 |
+
"pad_token": "<|endoftext|>",
|
| 12 |
+
"padding_side": "right",
|
| 13 |
+
"split_special_tokens": false,
|
| 14 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 15 |
+
"unk_token": null
|
| 16 |
+
}
|
sft_model/checkpoint-3000/trainer_state.json
ADDED
|
@@ -0,0 +1,1084 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.9568614942987003,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 3000,
|
| 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.0063790766286580015,
|
| 14 |
+
"grad_norm": 1.1234201192855835,
|
| 15 |
+
"learning_rate": 2.4203821656050956e-05,
|
| 16 |
+
"loss": 2.6540979385375976,
|
| 17 |
+
"step": 20
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.012758153257316003,
|
| 21 |
+
"grad_norm": 0.7255190014839172,
|
| 22 |
+
"learning_rate": 4.968152866242039e-05,
|
| 23 |
+
"loss": 1.852321243286133,
|
| 24 |
+
"step": 40
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.019137229885974005,
|
| 28 |
+
"grad_norm": 0.4847199022769928,
|
| 29 |
+
"learning_rate": 7.515923566878981e-05,
|
| 30 |
+
"loss": 1.3090819358825683,
|
| 31 |
+
"step": 60
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.025516306514632006,
|
| 35 |
+
"grad_norm": 0.44303005933761597,
|
| 36 |
+
"learning_rate": 0.00010063694267515924,
|
| 37 |
+
"loss": 1.2170228004455566,
|
| 38 |
+
"step": 80
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.03189538314329001,
|
| 42 |
+
"grad_norm": 0.40238410234451294,
|
| 43 |
+
"learning_rate": 0.00012611464968152866,
|
| 44 |
+
"loss": 1.169914722442627,
|
| 45 |
+
"step": 100
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.03827445977194801,
|
| 49 |
+
"grad_norm": 0.4358486831188202,
|
| 50 |
+
"learning_rate": 0.0001515923566878981,
|
| 51 |
+
"loss": 1.1707877159118651,
|
| 52 |
+
"step": 120
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.044653536400606014,
|
| 56 |
+
"grad_norm": 0.5451267957687378,
|
| 57 |
+
"learning_rate": 0.00017707006369426754,
|
| 58 |
+
"loss": 1.1448563575744628,
|
| 59 |
+
"step": 140
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.05103261302926401,
|
| 63 |
+
"grad_norm": 0.44014137983322144,
|
| 64 |
+
"learning_rate": 0.00019999977757245233,
|
| 65 |
+
"loss": 1.1011881828308105,
|
| 66 |
+
"step": 160
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.05741168965792202,
|
| 70 |
+
"grad_norm": 0.4952339828014374,
|
| 71 |
+
"learning_rate": 0.00019997308746398385,
|
| 72 |
+
"loss": 1.1278093338012696,
|
| 73 |
+
"step": 180
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.06379076628658002,
|
| 77 |
+
"grad_norm": 0.48793825507164,
|
| 78 |
+
"learning_rate": 0.00019990192545034244,
|
| 79 |
+
"loss": 1.121494674682617,
|
| 80 |
+
"step": 200
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.07016984291523802,
|
| 84 |
+
"grad_norm": 0.36123648285865784,
|
| 85 |
+
"learning_rate": 0.00019978632318715074,
|
| 86 |
+
"loss": 1.1106701850891114,
|
| 87 |
+
"step": 220
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.07654891954389602,
|
| 91 |
+
"grad_norm": 0.3949609398841858,
|
| 92 |
+
"learning_rate": 0.0001996263320987772,
|
| 93 |
+
"loss": 1.112882137298584,
|
| 94 |
+
"step": 240
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.08292799617255402,
|
| 98 |
+
"grad_norm": 0.3579845130443573,
|
| 99 |
+
"learning_rate": 0.00019942202335546062,
|
| 100 |
+
"loss": 1.0800884246826172,
|
| 101 |
+
"step": 260
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.08930707280121203,
|
| 105 |
+
"grad_norm": 0.337467759847641,
|
| 106 |
+
"learning_rate": 0.00019917348784165092,
|
| 107 |
+
"loss": 1.1052613258361816,
|
| 108 |
+
"step": 280
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.09568614942987003,
|
| 112 |
+
"grad_norm": 0.35249248147010803,
|
| 113 |
+
"learning_rate": 0.00019888083611558014,
|
| 114 |
+
"loss": 1.0701614379882813,
|
| 115 |
+
"step": 300
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.10206522605852802,
|
| 119 |
+
"grad_norm": 0.3642044961452484,
|
| 120 |
+
"learning_rate": 0.0001985441983600819,
|
| 121 |
+
"loss": 1.061861228942871,
|
| 122 |
+
"step": 320
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.10844430268718604,
|
| 126 |
+
"grad_norm": 0.35655465722084045,
|
| 127 |
+
"learning_rate": 0.00019816372432468097,
|
| 128 |
+
"loss": 1.1088621139526367,
|
| 129 |
+
"step": 340
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.11482337931584403,
|
| 133 |
+
"grad_norm": 0.3401583135128021,
|
| 134 |
+
"learning_rate": 0.00019773958325897895,
|
| 135 |
+
"loss": 1.0811405181884766,
|
| 136 |
+
"step": 360
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.12120245594450203,
|
| 140 |
+
"grad_norm": 0.39485183358192444,
|
| 141 |
+
"learning_rate": 0.00019727196383736547,
|
| 142 |
+
"loss": 1.0966490745544433,
|
| 143 |
+
"step": 380
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.12758153257316004,
|
| 147 |
+
"grad_norm": 0.3158703148365021,
|
| 148 |
+
"learning_rate": 0.00019676107407508843,
|
| 149 |
+
"loss": 1.0605661392211914,
|
| 150 |
+
"step": 400
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.13396060920181804,
|
| 154 |
+
"grad_norm": 0.4091622531414032,
|
| 155 |
+
"learning_rate": 0.00019620714123572085,
|
| 156 |
+
"loss": 1.0958724975585938,
|
| 157 |
+
"step": 420
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.14033968583047604,
|
| 161 |
+
"grad_norm": 0.44412222504615784,
|
| 162 |
+
"learning_rate": 0.00019561041173006517,
|
| 163 |
+
"loss": 1.0952692031860352,
|
| 164 |
+
"step": 440
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.14671876245913404,
|
| 168 |
+
"grad_norm": 0.37837275862693787,
|
| 169 |
+
"learning_rate": 0.00019497115100654015,
|
| 170 |
+
"loss": 1.058570671081543,
|
| 171 |
+
"step": 460
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.15309783908779204,
|
| 175 |
+
"grad_norm": 0.3814297914505005,
|
| 176 |
+
"learning_rate": 0.00019428964343309922,
|
| 177 |
+
"loss": 1.0655178070068358,
|
| 178 |
+
"step": 480
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.15947691571645004,
|
| 182 |
+
"grad_norm": 0.4030211269855499,
|
| 183 |
+
"learning_rate": 0.00019356619217073253,
|
| 184 |
+
"loss": 1.0634085655212402,
|
| 185 |
+
"step": 500
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.16585599234510803,
|
| 189 |
+
"grad_norm": 0.38679832220077515,
|
| 190 |
+
"learning_rate": 0.00019280111903860912,
|
| 191 |
+
"loss": 1.0652976989746095,
|
| 192 |
+
"step": 520
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.17223506897376606,
|
| 196 |
+
"grad_norm": 0.3280096650123596,
|
| 197 |
+
"learning_rate": 0.00019199476437091933,
|
| 198 |
+
"loss": 1.0508193016052245,
|
| 199 |
+
"step": 540
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.17861414560242406,
|
| 203 |
+
"grad_norm": 0.3656080961227417,
|
| 204 |
+
"learning_rate": 0.0001911474868654811,
|
| 205 |
+
"loss": 1.0890400886535645,
|
| 206 |
+
"step": 560
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.18499322223108206,
|
| 210 |
+
"grad_norm": 0.3993516266345978,
|
| 211 |
+
"learning_rate": 0.00019025966342417697,
|
| 212 |
+
"loss": 1.0906559944152832,
|
| 213 |
+
"step": 580
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.19137229885974005,
|
| 217 |
+
"grad_norm": 0.36238643527030945,
|
| 218 |
+
"learning_rate": 0.00018933168898529383,
|
| 219 |
+
"loss": 1.0661024093627929,
|
| 220 |
+
"step": 600
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.19775137548839805,
|
| 224 |
+
"grad_norm": 0.40609851479530334,
|
| 225 |
+
"learning_rate": 0.00018836397634783883,
|
| 226 |
+
"loss": 1.0469740867614745,
|
| 227 |
+
"step": 620
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.20413045211705605,
|
| 231 |
+
"grad_norm": 0.44951748847961426,
|
| 232 |
+
"learning_rate": 0.00018735695598791046,
|
| 233 |
+
"loss": 1.0545502662658692,
|
| 234 |
+
"step": 640
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.21050952874571405,
|
| 238 |
+
"grad_norm": 0.3537753224372864,
|
| 239 |
+
"learning_rate": 0.00018631107586720614,
|
| 240 |
+
"loss": 1.0523859977722168,
|
| 241 |
+
"step": 660
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.21688860537437207,
|
| 245 |
+
"grad_norm": 0.37729203701019287,
|
| 246 |
+
"learning_rate": 0.0001852268012337514,
|
| 247 |
+
"loss": 1.0995121002197266,
|
| 248 |
+
"step": 680
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.22326768200303007,
|
| 252 |
+
"grad_norm": 0.35974422097206116,
|
| 253 |
+
"learning_rate": 0.00018410461441493956,
|
| 254 |
+
"loss": 1.0532832145690918,
|
| 255 |
+
"step": 700
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.22964675863168807,
|
| 259 |
+
"grad_norm": 0.5495746731758118,
|
| 260 |
+
"learning_rate": 0.00018294501460297386,
|
| 261 |
+
"loss": 1.071121883392334,
|
| 262 |
+
"step": 720
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.23602583526034607,
|
| 266 |
+
"grad_norm": 0.3257412016391754,
|
| 267 |
+
"learning_rate": 0.00018174851763280733,
|
| 268 |
+
"loss": 1.072437858581543,
|
| 269 |
+
"step": 740
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.24240491188900407,
|
| 273 |
+
"grad_norm": 0.4262811839580536,
|
| 274 |
+
"learning_rate": 0.00018051565575267939,
|
| 275 |
+
"loss": 1.052683162689209,
|
| 276 |
+
"step": 760
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.24878398851766206,
|
| 280 |
+
"grad_norm": 0.38114288449287415,
|
| 281 |
+
"learning_rate": 0.00017924697738735135,
|
| 282 |
+
"loss": 1.0581499099731446,
|
| 283 |
+
"step": 780
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.2551630651463201,
|
| 287 |
+
"grad_norm": 0.3934289515018463,
|
| 288 |
+
"learning_rate": 0.00017794304689414562,
|
| 289 |
+
"loss": 1.0319182395935058,
|
| 290 |
+
"step": 800
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.2615421417749781,
|
| 294 |
+
"grad_norm": 0.3929242789745331,
|
| 295 |
+
"learning_rate": 0.0001766044443118978,
|
| 296 |
+
"loss": 1.0609262466430665,
|
| 297 |
+
"step": 820
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.2679212184036361,
|
| 301 |
+
"grad_norm": 0.3409107029438019,
|
| 302 |
+
"learning_rate": 0.000175231765102933,
|
| 303 |
+
"loss": 1.0357558250427246,
|
| 304 |
+
"step": 840
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.2743002950322941,
|
| 308 |
+
"grad_norm": 0.45465630292892456,
|
| 309 |
+
"learning_rate": 0.00017382561988818086,
|
| 310 |
+
"loss": 1.019899272918701,
|
| 311 |
+
"step": 860
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.2806793716609521,
|
| 315 |
+
"grad_norm": 0.31893905997276306,
|
| 316 |
+
"learning_rate": 0.00017238663417554797,
|
| 317 |
+
"loss": 1.0349628448486328,
|
| 318 |
+
"step": 880
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.2870584482896101,
|
| 322 |
+
"grad_norm": 0.47289255261421204,
|
| 323 |
+
"learning_rate": 0.00017091544808166747,
|
| 324 |
+
"loss": 1.0914591789245605,
|
| 325 |
+
"step": 900
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.2934375249182681,
|
| 329 |
+
"grad_norm": 0.4013218283653259,
|
| 330 |
+
"learning_rate": 0.00016941271604715058,
|
| 331 |
+
"loss": 1.025728416442871,
|
| 332 |
+
"step": 920
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.2998166015469261,
|
| 336 |
+
"grad_norm": 0.34149670600891113,
|
| 337 |
+
"learning_rate": 0.0001678791065454658,
|
| 338 |
+
"loss": 1.0540288925170898,
|
| 339 |
+
"step": 940
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.3061956781755841,
|
| 343 |
+
"grad_norm": 0.43255019187927246,
|
| 344 |
+
"learning_rate": 0.00016631530178557618,
|
| 345 |
+
"loss": 1.0435150146484375,
|
| 346 |
+
"step": 960
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.31257475480424207,
|
| 350 |
+
"grad_norm": 0.3473828136920929,
|
| 351 |
+
"learning_rate": 0.00016472199740846628,
|
| 352 |
+
"loss": 1.0774805068969726,
|
| 353 |
+
"step": 980
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.31895383143290007,
|
| 357 |
+
"grad_norm": 0.3513583838939667,
|
| 358 |
+
"learning_rate": 0.00016309990217769403,
|
| 359 |
+
"loss": 1.0494253158569335,
|
| 360 |
+
"step": 1000
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.32533290806155807,
|
| 364 |
+
"grad_norm": 0.35562664270401,
|
| 365 |
+
"learning_rate": 0.00016144973766410531,
|
| 366 |
+
"loss": 1.0458724975585938,
|
| 367 |
+
"step": 1020
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.33171198469021607,
|
| 371 |
+
"grad_norm": 0.35419169068336487,
|
| 372 |
+
"learning_rate": 0.00015977223792485118,
|
| 373 |
+
"loss": 1.0554842948913574,
|
| 374 |
+
"step": 1040
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.3380910613188741,
|
| 378 |
+
"grad_norm": 0.3961597979068756,
|
| 379 |
+
"learning_rate": 0.00015806814917685084,
|
| 380 |
+
"loss": 1.035719108581543,
|
| 381 |
+
"step": 1060
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.3444701379475321,
|
| 385 |
+
"grad_norm": 0.37739962339401245,
|
| 386 |
+
"learning_rate": 0.00015633822946484543,
|
| 387 |
+
"loss": 1.0724897384643555,
|
| 388 |
+
"step": 1080
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.3508492145761901,
|
| 392 |
+
"grad_norm": 0.40744179487228394,
|
| 393 |
+
"learning_rate": 0.0001545832483241904,
|
| 394 |
+
"loss": 1.0812921524047852,
|
| 395 |
+
"step": 1100
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.3572282912048481,
|
| 399 |
+
"grad_norm": 0.3863188922405243,
|
| 400 |
+
"learning_rate": 0.00015280398643853605,
|
| 401 |
+
"loss": 1.0662656784057618,
|
| 402 |
+
"step": 1120
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.3636073678335061,
|
| 406 |
+
"grad_norm": 0.4145233929157257,
|
| 407 |
+
"learning_rate": 0.0001510012352925496,
|
| 408 |
+
"loss": 1.0171710968017578,
|
| 409 |
+
"step": 1140
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.3699864444621641,
|
| 413 |
+
"grad_norm": 0.4319663941860199,
|
| 414 |
+
"learning_rate": 0.0001491757968198319,
|
| 415 |
+
"loss": 1.002194309234619,
|
| 416 |
+
"step": 1160
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.3763655210908221,
|
| 420 |
+
"grad_norm": 0.370866596698761,
|
| 421 |
+
"learning_rate": 0.00014732848304618628,
|
| 422 |
+
"loss": 1.054680633544922,
|
| 423 |
+
"step": 1180
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.3827445977194801,
|
| 427 |
+
"grad_norm": 0.39589911699295044,
|
| 428 |
+
"learning_rate": 0.0001454601157283979,
|
| 429 |
+
"loss": 1.051061248779297,
|
| 430 |
+
"step": 1200
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.3891236743481381,
|
| 434 |
+
"grad_norm": 0.38640621304512024,
|
| 435 |
+
"learning_rate": 0.00014357152598868476,
|
| 436 |
+
"loss": 1.0340915679931642,
|
| 437 |
+
"step": 1220
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.3955027509767961,
|
| 441 |
+
"grad_norm": 0.37239277362823486,
|
| 442 |
+
"learning_rate": 0.00014166355394498202,
|
| 443 |
+
"loss": 1.0854945182800293,
|
| 444 |
+
"step": 1240
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.4018818276054541,
|
| 448 |
+
"grad_norm": 0.4776981472969055,
|
| 449 |
+
"learning_rate": 0.00013973704833722509,
|
| 450 |
+
"loss": 1.0340095520019532,
|
| 451 |
+
"step": 1260
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.4082609042341121,
|
| 455 |
+
"grad_norm": 0.3754555284976959,
|
| 456 |
+
"learning_rate": 0.00013779286614979728,
|
| 457 |
+
"loss": 1.0588939666748047,
|
| 458 |
+
"step": 1280
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.4146399808627701,
|
| 462 |
+
"grad_norm": 0.3581312596797943,
|
| 463 |
+
"learning_rate": 0.0001358318722303098,
|
| 464 |
+
"loss": 1.0207186698913575,
|
| 465 |
+
"step": 1300
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.4210190574914281,
|
| 469 |
+
"grad_norm": 0.33835941553115845,
|
| 470 |
+
"learning_rate": 0.000133854938904884,
|
| 471 |
+
"loss": 0.996804141998291,
|
| 472 |
+
"step": 1320
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.4273981341200861,
|
| 476 |
+
"grad_norm": 0.37163445353507996,
|
| 477 |
+
"learning_rate": 0.00013186294559010703,
|
| 478 |
+
"loss": 1.0360607147216796,
|
| 479 |
+
"step": 1340
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.43377721074874415,
|
| 483 |
+
"grad_norm": 0.40468406677246094,
|
| 484 |
+
"learning_rate": 0.0001298567784018332,
|
| 485 |
+
"loss": 1.0401429176330566,
|
| 486 |
+
"step": 1360
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.44015628737740214,
|
| 490 |
+
"grad_norm": 0.3982478380203247,
|
| 491 |
+
"learning_rate": 0.00012783732976100504,
|
| 492 |
+
"loss": 1.0549521446228027,
|
| 493 |
+
"step": 1380
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.44653536400606014,
|
| 497 |
+
"grad_norm": 0.3914712965488434,
|
| 498 |
+
"learning_rate": 0.00012580549799667034,
|
| 499 |
+
"loss": 1.025351333618164,
|
| 500 |
+
"step": 1400
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.45291444063471814,
|
| 504 |
+
"grad_norm": 0.36290040612220764,
|
| 505 |
+
"learning_rate": 0.00012376218694637028,
|
| 506 |
+
"loss": 1.0487945556640625,
|
| 507 |
+
"step": 1420
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.45929351726337614,
|
| 511 |
+
"grad_norm": 0.4272157549858093,
|
| 512 |
+
"learning_rate": 0.00012170830555407726,
|
| 513 |
+
"loss": 1.0303566932678223,
|
| 514 |
+
"step": 1440
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.46567259389203414,
|
| 518 |
+
"grad_norm": 0.4141615331172943,
|
| 519 |
+
"learning_rate": 0.00011964476746586187,
|
| 520 |
+
"loss": 1.0204460144042968,
|
| 521 |
+
"step": 1460
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.47205167052069213,
|
| 525 |
+
"grad_norm": 0.43568912148475647,
|
| 526 |
+
"learning_rate": 0.00011757249062346725,
|
| 527 |
+
"loss": 1.0501635551452637,
|
| 528 |
+
"step": 1480
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.47843074714935013,
|
| 532 |
+
"grad_norm": 0.4742281436920166,
|
| 533 |
+
"learning_rate": 0.00011549239685597327,
|
| 534 |
+
"loss": 1.0212038993835448,
|
| 535 |
+
"step": 1500
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.48480982377800813,
|
| 539 |
+
"grad_norm": 0.3556975722312927,
|
| 540 |
+
"learning_rate": 0.00011340541146973109,
|
| 541 |
+
"loss": 1.0127756118774414,
|
| 542 |
+
"step": 1520
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.49118890040666613,
|
| 546 |
+
"grad_norm": 0.3971082270145416,
|
| 547 |
+
"learning_rate": 0.0001113124628367512,
|
| 548 |
+
"loss": 1.0366864204406738,
|
| 549 |
+
"step": 1540
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.4975679770353241,
|
| 553 |
+
"grad_norm": 0.38870203495025635,
|
| 554 |
+
"learning_rate": 0.00010921448198172721,
|
| 555 |
+
"loss": 1.0176129341125488,
|
| 556 |
+
"step": 1560
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.5039470536639822,
|
| 560 |
+
"grad_norm": 0.36224520206451416,
|
| 561 |
+
"learning_rate": 0.00010711240216788036,
|
| 562 |
+
"loss": 0.9911076545715332,
|
| 563 |
+
"step": 1580
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.5103261302926402,
|
| 567 |
+
"grad_norm": 0.398709237575531,
|
| 568 |
+
"learning_rate": 0.0001050071584818077,
|
| 569 |
+
"loss": 1.0506349563598634,
|
| 570 |
+
"step": 1600
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.5167052069212982,
|
| 574 |
+
"grad_norm": 0.44569212198257446,
|
| 575 |
+
"learning_rate": 0.00010289968741751914,
|
| 576 |
+
"loss": 1.0399697303771973,
|
| 577 |
+
"step": 1620
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.5230842835499562,
|
| 581 |
+
"grad_norm": 0.3576385974884033,
|
| 582 |
+
"learning_rate": 0.00010079092645984893,
|
| 583 |
+
"loss": 1.0107657432556152,
|
| 584 |
+
"step": 1640
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.5294633601786142,
|
| 588 |
+
"grad_norm": 0.480198472738266,
|
| 589 |
+
"learning_rate": 9.868181366742589e-05,
|
| 590 |
+
"loss": 0.9988100051879882,
|
| 591 |
+
"step": 1660
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.5358424368072722,
|
| 595 |
+
"grad_norm": 0.36921289563179016,
|
| 596 |
+
"learning_rate": 9.657328725538849e-05,
|
| 597 |
+
"loss": 1.0404596328735352,
|
| 598 |
+
"step": 1680
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.5422215134359302,
|
| 602 |
+
"grad_norm": 0.3534800708293915,
|
| 603 |
+
"learning_rate": 9.446628517803055e-05,
|
| 604 |
+
"loss": 1.0561634063720704,
|
| 605 |
+
"step": 1700
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.5486005900645882,
|
| 609 |
+
"grad_norm": 0.5924835205078125,
|
| 610 |
+
"learning_rate": 9.236174471156265e-05,
|
| 611 |
+
"loss": 1.0100406646728515,
|
| 612 |
+
"step": 1720
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.5549796666932462,
|
| 616 |
+
"grad_norm": 0.41996270418167114,
|
| 617 |
+
"learning_rate": 9.026060203717553e-05,
|
| 618 |
+
"loss": 1.0402870178222656,
|
| 619 |
+
"step": 1740
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.5613587433219042,
|
| 623 |
+
"grad_norm": 0.4084126949310303,
|
| 624 |
+
"learning_rate": 8.81637918245902e-05,
|
| 625 |
+
"loss": 1.0095555305480957,
|
| 626 |
+
"step": 1760
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.5677378199505622,
|
| 630 |
+
"grad_norm": 0.3663918077945709,
|
| 631 |
+
"learning_rate": 8.607224681628068e-05,
|
| 632 |
+
"loss": 1.0506675720214844,
|
| 633 |
+
"step": 1780
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.5741168965792202,
|
| 637 |
+
"grad_norm": 0.4715736210346222,
|
| 638 |
+
"learning_rate": 8.398689741255405e-05,
|
| 639 |
+
"loss": 1.0435371398925781,
|
| 640 |
+
"step": 1800
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.5804959732078782,
|
| 644 |
+
"grad_norm": 0.43865320086479187,
|
| 645 |
+
"learning_rate": 8.190867125767228e-05,
|
| 646 |
+
"loss": 1.0446551322937012,
|
| 647 |
+
"step": 1820
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.5868750498365362,
|
| 651 |
+
"grad_norm": 0.3950525224208832,
|
| 652 |
+
"learning_rate": 7.983849282720005e-05,
|
| 653 |
+
"loss": 1.0364575386047363,
|
| 654 |
+
"step": 1840
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.5932541264651942,
|
| 658 |
+
"grad_norm": 0.38930827379226685,
|
| 659 |
+
"learning_rate": 7.777728301676215e-05,
|
| 660 |
+
"loss": 1.0290010452270508,
|
| 661 |
+
"step": 1860
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.5996332030938522,
|
| 665 |
+
"grad_norm": 0.399541437625885,
|
| 666 |
+
"learning_rate": 7.572595873239367e-05,
|
| 667 |
+
"loss": 1.045849609375,
|
| 668 |
+
"step": 1880
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.6060122797225101,
|
| 672 |
+
"grad_norm": 0.38800048828125,
|
| 673 |
+
"learning_rate": 7.368543248266436e-05,
|
| 674 |
+
"loss": 1.0078801155090331,
|
| 675 |
+
"step": 1900
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.6123913563511681,
|
| 679 |
+
"grad_norm": 0.3803689479827881,
|
| 680 |
+
"learning_rate": 7.165661197275937e-05,
|
| 681 |
+
"loss": 0.9927312850952148,
|
| 682 |
+
"step": 1920
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.6187704329798261,
|
| 686 |
+
"grad_norm": 0.3781611919403076,
|
| 687 |
+
"learning_rate": 6.964039970069723e-05,
|
| 688 |
+
"loss": 1.0288335800170898,
|
| 689 |
+
"step": 1940
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.6251495096084841,
|
| 693 |
+
"grad_norm": 0.3648211658000946,
|
| 694 |
+
"learning_rate": 6.76376925558633e-05,
|
| 695 |
+
"loss": 1.016789150238037,
|
| 696 |
+
"step": 1960
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.6315285862371421,
|
| 700 |
+
"grad_norm": 0.3644472062587738,
|
| 701 |
+
"learning_rate": 6.564938142003876e-05,
|
| 702 |
+
"loss": 1.0296217918395996,
|
| 703 |
+
"step": 1980
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.6379076628658001,
|
| 707 |
+
"grad_norm": 0.4196849763393402,
|
| 708 |
+
"learning_rate": 6.367635077110193e-05,
|
| 709 |
+
"loss": 1.0465140342712402,
|
| 710 |
+
"step": 2000
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.6442867394944581,
|
| 714 |
+
"grad_norm": 0.4229860305786133,
|
| 715 |
+
"learning_rate": 6.171947828957813e-05,
|
| 716 |
+
"loss": 0.9935624122619628,
|
| 717 |
+
"step": 2020
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.6506658161231161,
|
| 721 |
+
"grad_norm": 0.3640349209308624,
|
| 722 |
+
"learning_rate": 5.97796344682134e-05,
|
| 723 |
+
"loss": 1.0277256965637207,
|
| 724 |
+
"step": 2040
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.6570448927517741,
|
| 728 |
+
"grad_norm": 0.4113347828388214,
|
| 729 |
+
"learning_rate": 5.785768222474544e-05,
|
| 730 |
+
"loss": 1.0203803062438965,
|
| 731 |
+
"step": 2060
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.6634239693804321,
|
| 735 |
+
"grad_norm": 0.36274972558021545,
|
| 736 |
+
"learning_rate": 5.595447651804462e-05,
|
| 737 |
+
"loss": 1.0556281089782715,
|
| 738 |
+
"step": 2080
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.6698030460090901,
|
| 742 |
+
"grad_norm": 0.387104868888855,
|
| 743 |
+
"learning_rate": 5.4070863967794885e-05,
|
| 744 |
+
"loss": 0.9899411201477051,
|
| 745 |
+
"step": 2100
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.6761821226377482,
|
| 749 |
+
"grad_norm": 0.38654327392578125,
|
| 750 |
+
"learning_rate": 5.220768247788458e-05,
|
| 751 |
+
"loss": 1.0453373908996582,
|
| 752 |
+
"step": 2120
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.6825611992664062,
|
| 756 |
+
"grad_norm": 0.4250175356864929,
|
| 757 |
+
"learning_rate": 5.036576086367428e-05,
|
| 758 |
+
"loss": 1.014944362640381,
|
| 759 |
+
"step": 2140
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.6889402758950642,
|
| 763 |
+
"grad_norm": 0.4817405343055725,
|
| 764 |
+
"learning_rate": 4.854591848330782e-05,
|
| 765 |
+
"loss": 0.9892327308654785,
|
| 766 |
+
"step": 2160
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.6953193525237222,
|
| 770 |
+
"grad_norm": 0.4661904275417328,
|
| 771 |
+
"learning_rate": 4.6748964873229526e-05,
|
| 772 |
+
"loss": 1.0213812828063964,
|
| 773 |
+
"step": 2180
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.7016984291523802,
|
| 777 |
+
"grad_norm": 0.42874079942703247,
|
| 778 |
+
"learning_rate": 4.49756993880715e-05,
|
| 779 |
+
"loss": 1.0591063499450684,
|
| 780 |
+
"step": 2200
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.7080775057810382,
|
| 784 |
+
"grad_norm": 0.374489963054657,
|
| 785 |
+
"learning_rate": 4.322691084506956e-05,
|
| 786 |
+
"loss": 0.9852917671203614,
|
| 787 |
+
"step": 2220
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.7144565824096962,
|
| 791 |
+
"grad_norm": 0.3870807886123657,
|
| 792 |
+
"learning_rate": 4.150337717316658e-05,
|
| 793 |
+
"loss": 0.9926732063293457,
|
| 794 |
+
"step": 2240
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.7208356590383542,
|
| 798 |
+
"grad_norm": 0.3918297290802002,
|
| 799 |
+
"learning_rate": 3.9805865066959725e-05,
|
| 800 |
+
"loss": 1.018412208557129,
|
| 801 |
+
"step": 2260
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.7272147356670122,
|
| 805 |
+
"grad_norm": 0.36913925409317017,
|
| 806 |
+
"learning_rate": 3.813512964564489e-05,
|
| 807 |
+
"loss": 1.0138113975524903,
|
| 808 |
+
"step": 2280
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.7335938122956702,
|
| 812 |
+
"grad_norm": 0.42481136322021484,
|
| 813 |
+
"learning_rate": 3.64919141171104e-05,
|
| 814 |
+
"loss": 1.0364414215087892,
|
| 815 |
+
"step": 2300
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.7399728889243282,
|
| 819 |
+
"grad_norm": 0.35376596450805664,
|
| 820 |
+
"learning_rate": 3.48769494473294e-05,
|
| 821 |
+
"loss": 1.0163302421569824,
|
| 822 |
+
"step": 2320
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.7463519655529862,
|
| 826 |
+
"grad_norm": 0.3571137487888336,
|
| 827 |
+
"learning_rate": 3.329095403519776e-05,
|
| 828 |
+
"loss": 1.0149422645568849,
|
| 829 |
+
"step": 2340
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.7527310421816442,
|
| 833 |
+
"grad_norm": 0.3296068012714386,
|
| 834 |
+
"learning_rate": 3.173463339296242e-05,
|
| 835 |
+
"loss": 1.0384585380554199,
|
| 836 |
+
"step": 2360
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.7591101188103022,
|
| 840 |
+
"grad_norm": 0.39232197403907776,
|
| 841 |
+
"learning_rate": 3.0208679832382293e-05,
|
| 842 |
+
"loss": 0.979072380065918,
|
| 843 |
+
"step": 2380
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.7654891954389602,
|
| 847 |
+
"grad_norm": 0.35901549458503723,
|
| 848 |
+
"learning_rate": 2.8713772156760966e-05,
|
| 849 |
+
"loss": 0.9918346405029297,
|
| 850 |
+
"step": 2400
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.7718682720676182,
|
| 854 |
+
"grad_norm": 0.34417739510536194,
|
| 855 |
+
"learning_rate": 2.7250575358988817e-05,
|
| 856 |
+
"loss": 1.030968475341797,
|
| 857 |
+
"step": 2420
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.7782473486962762,
|
| 861 |
+
"grad_norm": 0.40106430649757385,
|
| 862 |
+
"learning_rate": 2.581974032572836e-05,
|
| 863 |
+
"loss": 0.997005558013916,
|
| 864 |
+
"step": 2440
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.7846264253249342,
|
| 868 |
+
"grad_norm": 0.40273308753967285,
|
| 869 |
+
"learning_rate": 2.4421903547874604e-05,
|
| 870 |
+
"loss": 1.0141830444335938,
|
| 871 |
+
"step": 2460
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.7910055019535922,
|
| 875 |
+
"grad_norm": 0.36937829852104187,
|
| 876 |
+
"learning_rate": 2.3057686837419245e-05,
|
| 877 |
+
"loss": 0.9915987014770508,
|
| 878 |
+
"step": 2480
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.7973845785822502,
|
| 882 |
+
"grad_norm": 0.41099807620048523,
|
| 883 |
+
"learning_rate": 2.1727697050844542e-05,
|
| 884 |
+
"loss": 1.0052967071533203,
|
| 885 |
+
"step": 2500
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 0.8037636552109082,
|
| 889 |
+
"grad_norm": 0.3430964946746826,
|
| 890 |
+
"learning_rate": 2.04325258191702e-05,
|
| 891 |
+
"loss": 1.0124110221862792,
|
| 892 |
+
"step": 2520
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.8101427318395662,
|
| 896 |
+
"grad_norm": 0.42573267221450806,
|
| 897 |
+
"learning_rate": 1.9172749284772617e-05,
|
| 898 |
+
"loss": 1.046116542816162,
|
| 899 |
+
"step": 2540
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 0.8165218084682242,
|
| 903 |
+
"grad_norm": 0.34176334738731384,
|
| 904 |
+
"learning_rate": 1.7948927845094743e-05,
|
| 905 |
+
"loss": 1.0312464714050293,
|
| 906 |
+
"step": 2560
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.8229008850968822,
|
| 910 |
+
"grad_norm": 0.33181166648864746,
|
| 911 |
+
"learning_rate": 1.676160590335948e-05,
|
| 912 |
+
"loss": 0.97237548828125,
|
| 913 |
+
"step": 2580
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 0.8292799617255402,
|
| 917 |
+
"grad_norm": 0.3751026391983032,
|
| 918 |
+
"learning_rate": 1.5611311626397908e-05,
|
| 919 |
+
"loss": 1.029274082183838,
|
| 920 |
+
"step": 2600
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.8356590383541982,
|
| 924 |
+
"grad_norm": 0.3983386158943176,
|
| 925 |
+
"learning_rate": 1.4498556709700317e-05,
|
| 926 |
+
"loss": 0.979708480834961,
|
| 927 |
+
"step": 2620
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 0.8420381149828562,
|
| 931 |
+
"grad_norm": 0.3683454692363739,
|
| 932 |
+
"learning_rate": 1.3423836149794189e-05,
|
| 933 |
+
"loss": 1.062849521636963,
|
| 934 |
+
"step": 2640
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.8484171916115142,
|
| 938 |
+
"grad_norm": 0.43143871426582336,
|
| 939 |
+
"learning_rate": 1.2387628024050557e-05,
|
| 940 |
+
"loss": 1.0098539352416993,
|
| 941 |
+
"step": 2660
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 0.8547962682401722,
|
| 945 |
+
"grad_norm": 0.43267059326171875,
|
| 946 |
+
"learning_rate": 1.139039327801661e-05,
|
| 947 |
+
"loss": 1.0019266128540039,
|
| 948 |
+
"step": 2680
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.8611753448688302,
|
| 952 |
+
"grad_norm": 0.3967345952987671,
|
| 953 |
+
"learning_rate": 1.0432575520369293e-05,
|
| 954 |
+
"loss": 1.0030330657958983,
|
| 955 |
+
"step": 2700
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.8675544214974883,
|
| 959 |
+
"grad_norm": 0.40890631079673767,
|
| 960 |
+
"learning_rate": 9.514600825581e-06,
|
| 961 |
+
"loss": 1.0057960510253907,
|
| 962 |
+
"step": 2720
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.8739334981261463,
|
| 966 |
+
"grad_norm": 0.35522186756134033,
|
| 967 |
+
"learning_rate": 8.636877544385025e-06,
|
| 968 |
+
"loss": 1.045962429046631,
|
| 969 |
+
"step": 2740
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 0.8803125747548043,
|
| 973 |
+
"grad_norm": 0.3627678453922272,
|
| 974 |
+
"learning_rate": 7.799796122125414e-06,
|
| 975 |
+
"loss": 1.0400966644287108,
|
| 976 |
+
"step": 2760
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.8866916513834623,
|
| 980 |
+
"grad_norm": 0.3707619905471802,
|
| 981 |
+
"learning_rate": 7.0037289250716846e-06,
|
| 982 |
+
"loss": 1.0188066482543945,
|
| 983 |
+
"step": 2780
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 0.8930707280121203,
|
| 987 |
+
"grad_norm": 0.4088013172149658,
|
| 988 |
+
"learning_rate": 6.249030074775919e-06,
|
| 989 |
+
"loss": 0.9484004974365234,
|
| 990 |
+
"step": 2800
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.8994498046407783,
|
| 994 |
+
"grad_norm": 0.456567645072937,
|
| 995 |
+
"learning_rate": 5.536035290545749e-06,
|
| 996 |
+
"loss": 0.9833850860595703,
|
| 997 |
+
"step": 2820
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 0.9058288812694363,
|
| 1001 |
+
"grad_norm": 0.34377098083496094,
|
| 1002 |
+
"learning_rate": 4.865061740103361e-06,
|
| 1003 |
+
"loss": 0.9835627555847168,
|
| 1004 |
+
"step": 2840
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.9122079578980943,
|
| 1008 |
+
"grad_norm": 0.3588654696941376,
|
| 1009 |
+
"learning_rate": 4.236407898497075e-06,
|
| 1010 |
+
"loss": 1.0150874137878418,
|
| 1011 |
+
"step": 2860
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 0.9185870345267523,
|
| 1015 |
+
"grad_norm": 0.424083411693573,
|
| 1016 |
+
"learning_rate": 3.6503534153280007e-06,
|
| 1017 |
+
"loss": 1.0256061553955078,
|
| 1018 |
+
"step": 2880
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.9249661111554103,
|
| 1022 |
+
"grad_norm": 0.4053768217563629,
|
| 1023 |
+
"learning_rate": 3.1071589903510335e-06,
|
| 1024 |
+
"loss": 1.0478339195251465,
|
| 1025 |
+
"step": 2900
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 0.9313451877840683,
|
| 1029 |
+
"grad_norm": 0.44554078578948975,
|
| 1030 |
+
"learning_rate": 2.607066257505586e-06,
|
| 1031 |
+
"loss": 1.00260648727417,
|
| 1032 |
+
"step": 2920
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.9377242644127263,
|
| 1036 |
+
"grad_norm": 0.42239534854888916,
|
| 1037 |
+
"learning_rate": 2.1502976774274043e-06,
|
| 1038 |
+
"loss": 0.9838084220886231,
|
| 1039 |
+
"step": 2940
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 0.9441033410413843,
|
| 1043 |
+
"grad_norm": 0.35276949405670166,
|
| 1044 |
+
"learning_rate": 1.737056438489404e-06,
|
| 1045 |
+
"loss": 0.997131633758545,
|
| 1046 |
+
"step": 2960
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.9504824176700423,
|
| 1050 |
+
"grad_norm": 0.47409260272979736,
|
| 1051 |
+
"learning_rate": 1.3675263664156723e-06,
|
| 1052 |
+
"loss": 0.9645838737487793,
|
| 1053 |
+
"step": 2980
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 0.9568614942987003,
|
| 1057 |
+
"grad_norm": 0.371419757604599,
|
| 1058 |
+
"learning_rate": 1.0418718425086349e-06,
|
| 1059 |
+
"loss": 1.0339078903198242,
|
| 1060 |
+
"step": 3000
|
| 1061 |
+
}
|
| 1062 |
+
],
|
| 1063 |
+
"logging_steps": 20,
|
| 1064 |
+
"max_steps": 3136,
|
| 1065 |
+
"num_input_tokens_seen": 0,
|
| 1066 |
+
"num_train_epochs": 1,
|
| 1067 |
+
"save_steps": 500,
|
| 1068 |
+
"stateful_callbacks": {
|
| 1069 |
+
"TrainerControl": {
|
| 1070 |
+
"args": {
|
| 1071 |
+
"should_epoch_stop": false,
|
| 1072 |
+
"should_evaluate": false,
|
| 1073 |
+
"should_log": false,
|
| 1074 |
+
"should_save": true,
|
| 1075 |
+
"should_training_stop": false
|
| 1076 |
+
},
|
| 1077 |
+
"attributes": {}
|
| 1078 |
+
}
|
| 1079 |
+
},
|
| 1080 |
+
"total_flos": 3.6103893601918464e+17,
|
| 1081 |
+
"train_batch_size": 2,
|
| 1082 |
+
"trial_name": null,
|
| 1083 |
+
"trial_params": null
|
| 1084 |
+
}
|
sft_model/checkpoint-3000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1032b52eb31ad96bbd04920f8f0ac477c4a3f030fd4d7d093e600fd803f6dfce
|
| 3 |
+
size 5713
|
sft_model/checkpoint-3136/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: /kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1
|
| 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
|
sft_model/checkpoint-3136/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": "/kaggle/input/models/qwen-lm/qwen2.5/transformers/7b-instruct/1",
|
| 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.05,
|
| 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 |
+
"o_proj",
|
| 37 |
+
"down_proj",
|
| 38 |
+
"q_proj",
|
| 39 |
+
"gate_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": false
|
| 50 |
+
}
|
sft_model/checkpoint-3136/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36a55b5b1902fef5f8c5417adb58fcf4e696995d7a06a9d85d073e1ddb311d3c
|
| 3 |
+
size 161533192
|
sft_model/checkpoint-3136/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 %}
|
sft_model/checkpoint-3136/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:988a4b597b4d919434a322593c8af4c75711cd252897089450edfe06aaa12c7f
|
| 3 |
+
size 82465413
|
sft_model/checkpoint-3136/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9eac9d6a7723b8080e7d2dc1c0ff83649f83165d6096ea52eb1cb216fb590868
|
| 3 |
+
size 14645
|
sft_model/checkpoint-3136/scaler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d05733eb7bc070e6eecaa8131a1ce3a8724e8274ec91cf9af98a633ae7bae86f
|
| 3 |
+
size 1383
|
sft_model/checkpoint-3136/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b20fb807a0e77feae4fa22241ef880582593039afd1a186c63e481c4939915aa
|
| 3 |
+
size 1465
|
sft_model/checkpoint-3136/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b4360dd6a184650ffc48056c2569bc603f896c5adfe94b10f1c79f809638aa5
|
| 3 |
+
size 11422166
|
sft_model/checkpoint-3136/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": true,
|
| 10 |
+
"model_max_length": 32768,
|
| 11 |
+
"pad_token": "<|endoftext|>",
|
| 12 |
+
"padding_side": "right",
|
| 13 |
+
"split_special_tokens": false,
|
| 14 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 15 |
+
"unk_token": null
|
| 16 |
+
}
|
sft_model/checkpoint-3136/trainer_state.json
ADDED
|
@@ -0,0 +1,1126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 3136,
|
| 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.0063790766286580015,
|
| 14 |
+
"grad_norm": 1.1234201192855835,
|
| 15 |
+
"learning_rate": 2.4203821656050956e-05,
|
| 16 |
+
"loss": 2.6540979385375976,
|
| 17 |
+
"step": 20
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.012758153257316003,
|
| 21 |
+
"grad_norm": 0.7255190014839172,
|
| 22 |
+
"learning_rate": 4.968152866242039e-05,
|
| 23 |
+
"loss": 1.852321243286133,
|
| 24 |
+
"step": 40
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.019137229885974005,
|
| 28 |
+
"grad_norm": 0.4847199022769928,
|
| 29 |
+
"learning_rate": 7.515923566878981e-05,
|
| 30 |
+
"loss": 1.3090819358825683,
|
| 31 |
+
"step": 60
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.025516306514632006,
|
| 35 |
+
"grad_norm": 0.44303005933761597,
|
| 36 |
+
"learning_rate": 0.00010063694267515924,
|
| 37 |
+
"loss": 1.2170228004455566,
|
| 38 |
+
"step": 80
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.03189538314329001,
|
| 42 |
+
"grad_norm": 0.40238410234451294,
|
| 43 |
+
"learning_rate": 0.00012611464968152866,
|
| 44 |
+
"loss": 1.169914722442627,
|
| 45 |
+
"step": 100
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.03827445977194801,
|
| 49 |
+
"grad_norm": 0.4358486831188202,
|
| 50 |
+
"learning_rate": 0.0001515923566878981,
|
| 51 |
+
"loss": 1.1707877159118651,
|
| 52 |
+
"step": 120
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.044653536400606014,
|
| 56 |
+
"grad_norm": 0.5451267957687378,
|
| 57 |
+
"learning_rate": 0.00017707006369426754,
|
| 58 |
+
"loss": 1.1448563575744628,
|
| 59 |
+
"step": 140
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.05103261302926401,
|
| 63 |
+
"grad_norm": 0.44014137983322144,
|
| 64 |
+
"learning_rate": 0.00019999977757245233,
|
| 65 |
+
"loss": 1.1011881828308105,
|
| 66 |
+
"step": 160
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.05741168965792202,
|
| 70 |
+
"grad_norm": 0.4952339828014374,
|
| 71 |
+
"learning_rate": 0.00019997308746398385,
|
| 72 |
+
"loss": 1.1278093338012696,
|
| 73 |
+
"step": 180
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.06379076628658002,
|
| 77 |
+
"grad_norm": 0.48793825507164,
|
| 78 |
+
"learning_rate": 0.00019990192545034244,
|
| 79 |
+
"loss": 1.121494674682617,
|
| 80 |
+
"step": 200
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.07016984291523802,
|
| 84 |
+
"grad_norm": 0.36123648285865784,
|
| 85 |
+
"learning_rate": 0.00019978632318715074,
|
| 86 |
+
"loss": 1.1106701850891114,
|
| 87 |
+
"step": 220
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.07654891954389602,
|
| 91 |
+
"grad_norm": 0.3949609398841858,
|
| 92 |
+
"learning_rate": 0.0001996263320987772,
|
| 93 |
+
"loss": 1.112882137298584,
|
| 94 |
+
"step": 240
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"epoch": 0.08292799617255402,
|
| 98 |
+
"grad_norm": 0.3579845130443573,
|
| 99 |
+
"learning_rate": 0.00019942202335546062,
|
| 100 |
+
"loss": 1.0800884246826172,
|
| 101 |
+
"step": 260
|
| 102 |
+
},
|
| 103 |
+
{
|
| 104 |
+
"epoch": 0.08930707280121203,
|
| 105 |
+
"grad_norm": 0.337467759847641,
|
| 106 |
+
"learning_rate": 0.00019917348784165092,
|
| 107 |
+
"loss": 1.1052613258361816,
|
| 108 |
+
"step": 280
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"epoch": 0.09568614942987003,
|
| 112 |
+
"grad_norm": 0.35249248147010803,
|
| 113 |
+
"learning_rate": 0.00019888083611558014,
|
| 114 |
+
"loss": 1.0701614379882813,
|
| 115 |
+
"step": 300
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.10206522605852802,
|
| 119 |
+
"grad_norm": 0.3642044961452484,
|
| 120 |
+
"learning_rate": 0.0001985441983600819,
|
| 121 |
+
"loss": 1.061861228942871,
|
| 122 |
+
"step": 320
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.10844430268718604,
|
| 126 |
+
"grad_norm": 0.35655465722084045,
|
| 127 |
+
"learning_rate": 0.00019816372432468097,
|
| 128 |
+
"loss": 1.1088621139526367,
|
| 129 |
+
"step": 340
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 0.11482337931584403,
|
| 133 |
+
"grad_norm": 0.3401583135128021,
|
| 134 |
+
"learning_rate": 0.00019773958325897895,
|
| 135 |
+
"loss": 1.0811405181884766,
|
| 136 |
+
"step": 360
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"epoch": 0.12120245594450203,
|
| 140 |
+
"grad_norm": 0.39485183358192444,
|
| 141 |
+
"learning_rate": 0.00019727196383736547,
|
| 142 |
+
"loss": 1.0966490745544433,
|
| 143 |
+
"step": 380
|
| 144 |
+
},
|
| 145 |
+
{
|
| 146 |
+
"epoch": 0.12758153257316004,
|
| 147 |
+
"grad_norm": 0.3158703148365021,
|
| 148 |
+
"learning_rate": 0.00019676107407508843,
|
| 149 |
+
"loss": 1.0605661392211914,
|
| 150 |
+
"step": 400
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"epoch": 0.13396060920181804,
|
| 154 |
+
"grad_norm": 0.4091622531414032,
|
| 155 |
+
"learning_rate": 0.00019620714123572085,
|
| 156 |
+
"loss": 1.0958724975585938,
|
| 157 |
+
"step": 420
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"epoch": 0.14033968583047604,
|
| 161 |
+
"grad_norm": 0.44412222504615784,
|
| 162 |
+
"learning_rate": 0.00019561041173006517,
|
| 163 |
+
"loss": 1.0952692031860352,
|
| 164 |
+
"step": 440
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"epoch": 0.14671876245913404,
|
| 168 |
+
"grad_norm": 0.37837275862693787,
|
| 169 |
+
"learning_rate": 0.00019497115100654015,
|
| 170 |
+
"loss": 1.058570671081543,
|
| 171 |
+
"step": 460
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 0.15309783908779204,
|
| 175 |
+
"grad_norm": 0.3814297914505005,
|
| 176 |
+
"learning_rate": 0.00019428964343309922,
|
| 177 |
+
"loss": 1.0655178070068358,
|
| 178 |
+
"step": 480
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"epoch": 0.15947691571645004,
|
| 182 |
+
"grad_norm": 0.4030211269855499,
|
| 183 |
+
"learning_rate": 0.00019356619217073253,
|
| 184 |
+
"loss": 1.0634085655212402,
|
| 185 |
+
"step": 500
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"epoch": 0.16585599234510803,
|
| 189 |
+
"grad_norm": 0.38679832220077515,
|
| 190 |
+
"learning_rate": 0.00019280111903860912,
|
| 191 |
+
"loss": 1.0652976989746095,
|
| 192 |
+
"step": 520
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"epoch": 0.17223506897376606,
|
| 196 |
+
"grad_norm": 0.3280096650123596,
|
| 197 |
+
"learning_rate": 0.00019199476437091933,
|
| 198 |
+
"loss": 1.0508193016052245,
|
| 199 |
+
"step": 540
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"epoch": 0.17861414560242406,
|
| 203 |
+
"grad_norm": 0.3656080961227417,
|
| 204 |
+
"learning_rate": 0.0001911474868654811,
|
| 205 |
+
"loss": 1.0890400886535645,
|
| 206 |
+
"step": 560
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"epoch": 0.18499322223108206,
|
| 210 |
+
"grad_norm": 0.3993516266345978,
|
| 211 |
+
"learning_rate": 0.00019025966342417697,
|
| 212 |
+
"loss": 1.0906559944152832,
|
| 213 |
+
"step": 580
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.19137229885974005,
|
| 217 |
+
"grad_norm": 0.36238643527030945,
|
| 218 |
+
"learning_rate": 0.00018933168898529383,
|
| 219 |
+
"loss": 1.0661024093627929,
|
| 220 |
+
"step": 600
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.19775137548839805,
|
| 224 |
+
"grad_norm": 0.40609851479530334,
|
| 225 |
+
"learning_rate": 0.00018836397634783883,
|
| 226 |
+
"loss": 1.0469740867614745,
|
| 227 |
+
"step": 620
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.20413045211705605,
|
| 231 |
+
"grad_norm": 0.44951748847961426,
|
| 232 |
+
"learning_rate": 0.00018735695598791046,
|
| 233 |
+
"loss": 1.0545502662658692,
|
| 234 |
+
"step": 640
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.21050952874571405,
|
| 238 |
+
"grad_norm": 0.3537753224372864,
|
| 239 |
+
"learning_rate": 0.00018631107586720614,
|
| 240 |
+
"loss": 1.0523859977722168,
|
| 241 |
+
"step": 660
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"epoch": 0.21688860537437207,
|
| 245 |
+
"grad_norm": 0.37729203701019287,
|
| 246 |
+
"learning_rate": 0.0001852268012337514,
|
| 247 |
+
"loss": 1.0995121002197266,
|
| 248 |
+
"step": 680
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"epoch": 0.22326768200303007,
|
| 252 |
+
"grad_norm": 0.35974422097206116,
|
| 253 |
+
"learning_rate": 0.00018410461441493956,
|
| 254 |
+
"loss": 1.0532832145690918,
|
| 255 |
+
"step": 700
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 0.22964675863168807,
|
| 259 |
+
"grad_norm": 0.5495746731758118,
|
| 260 |
+
"learning_rate": 0.00018294501460297386,
|
| 261 |
+
"loss": 1.071121883392334,
|
| 262 |
+
"step": 720
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"epoch": 0.23602583526034607,
|
| 266 |
+
"grad_norm": 0.3257412016391754,
|
| 267 |
+
"learning_rate": 0.00018174851763280733,
|
| 268 |
+
"loss": 1.072437858581543,
|
| 269 |
+
"step": 740
|
| 270 |
+
},
|
| 271 |
+
{
|
| 272 |
+
"epoch": 0.24240491188900407,
|
| 273 |
+
"grad_norm": 0.4262811839580536,
|
| 274 |
+
"learning_rate": 0.00018051565575267939,
|
| 275 |
+
"loss": 1.052683162689209,
|
| 276 |
+
"step": 760
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"epoch": 0.24878398851766206,
|
| 280 |
+
"grad_norm": 0.38114288449287415,
|
| 281 |
+
"learning_rate": 0.00017924697738735135,
|
| 282 |
+
"loss": 1.0581499099731446,
|
| 283 |
+
"step": 780
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"epoch": 0.2551630651463201,
|
| 287 |
+
"grad_norm": 0.3934289515018463,
|
| 288 |
+
"learning_rate": 0.00017794304689414562,
|
| 289 |
+
"loss": 1.0319182395935058,
|
| 290 |
+
"step": 800
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"epoch": 0.2615421417749781,
|
| 294 |
+
"grad_norm": 0.3929242789745331,
|
| 295 |
+
"learning_rate": 0.0001766044443118978,
|
| 296 |
+
"loss": 1.0609262466430665,
|
| 297 |
+
"step": 820
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 0.2679212184036361,
|
| 301 |
+
"grad_norm": 0.3409107029438019,
|
| 302 |
+
"learning_rate": 0.000175231765102933,
|
| 303 |
+
"loss": 1.0357558250427246,
|
| 304 |
+
"step": 840
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"epoch": 0.2743002950322941,
|
| 308 |
+
"grad_norm": 0.45465630292892456,
|
| 309 |
+
"learning_rate": 0.00017382561988818086,
|
| 310 |
+
"loss": 1.019899272918701,
|
| 311 |
+
"step": 860
|
| 312 |
+
},
|
| 313 |
+
{
|
| 314 |
+
"epoch": 0.2806793716609521,
|
| 315 |
+
"grad_norm": 0.31893905997276306,
|
| 316 |
+
"learning_rate": 0.00017238663417554797,
|
| 317 |
+
"loss": 1.0349628448486328,
|
| 318 |
+
"step": 880
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"epoch": 0.2870584482896101,
|
| 322 |
+
"grad_norm": 0.47289255261421204,
|
| 323 |
+
"learning_rate": 0.00017091544808166747,
|
| 324 |
+
"loss": 1.0914591789245605,
|
| 325 |
+
"step": 900
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.2934375249182681,
|
| 329 |
+
"grad_norm": 0.4013218283653259,
|
| 330 |
+
"learning_rate": 0.00016941271604715058,
|
| 331 |
+
"loss": 1.025728416442871,
|
| 332 |
+
"step": 920
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"epoch": 0.2998166015469261,
|
| 336 |
+
"grad_norm": 0.34149670600891113,
|
| 337 |
+
"learning_rate": 0.0001678791065454658,
|
| 338 |
+
"loss": 1.0540288925170898,
|
| 339 |
+
"step": 940
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 0.3061956781755841,
|
| 343 |
+
"grad_norm": 0.43255019187927246,
|
| 344 |
+
"learning_rate": 0.00016631530178557618,
|
| 345 |
+
"loss": 1.0435150146484375,
|
| 346 |
+
"step": 960
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"epoch": 0.31257475480424207,
|
| 350 |
+
"grad_norm": 0.3473828136920929,
|
| 351 |
+
"learning_rate": 0.00016472199740846628,
|
| 352 |
+
"loss": 1.0774805068969726,
|
| 353 |
+
"step": 980
|
| 354 |
+
},
|
| 355 |
+
{
|
| 356 |
+
"epoch": 0.31895383143290007,
|
| 357 |
+
"grad_norm": 0.3513583838939667,
|
| 358 |
+
"learning_rate": 0.00016309990217769403,
|
| 359 |
+
"loss": 1.0494253158569335,
|
| 360 |
+
"step": 1000
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"epoch": 0.32533290806155807,
|
| 364 |
+
"grad_norm": 0.35562664270401,
|
| 365 |
+
"learning_rate": 0.00016144973766410531,
|
| 366 |
+
"loss": 1.0458724975585938,
|
| 367 |
+
"step": 1020
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"epoch": 0.33171198469021607,
|
| 371 |
+
"grad_norm": 0.35419169068336487,
|
| 372 |
+
"learning_rate": 0.00015977223792485118,
|
| 373 |
+
"loss": 1.0554842948913574,
|
| 374 |
+
"step": 1040
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"epoch": 0.3380910613188741,
|
| 378 |
+
"grad_norm": 0.3961597979068756,
|
| 379 |
+
"learning_rate": 0.00015806814917685084,
|
| 380 |
+
"loss": 1.035719108581543,
|
| 381 |
+
"step": 1060
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 0.3444701379475321,
|
| 385 |
+
"grad_norm": 0.37739962339401245,
|
| 386 |
+
"learning_rate": 0.00015633822946484543,
|
| 387 |
+
"loss": 1.0724897384643555,
|
| 388 |
+
"step": 1080
|
| 389 |
+
},
|
| 390 |
+
{
|
| 391 |
+
"epoch": 0.3508492145761901,
|
| 392 |
+
"grad_norm": 0.40744179487228394,
|
| 393 |
+
"learning_rate": 0.0001545832483241904,
|
| 394 |
+
"loss": 1.0812921524047852,
|
| 395 |
+
"step": 1100
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"epoch": 0.3572282912048481,
|
| 399 |
+
"grad_norm": 0.3863188922405243,
|
| 400 |
+
"learning_rate": 0.00015280398643853605,
|
| 401 |
+
"loss": 1.0662656784057618,
|
| 402 |
+
"step": 1120
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"epoch": 0.3636073678335061,
|
| 406 |
+
"grad_norm": 0.4145233929157257,
|
| 407 |
+
"learning_rate": 0.0001510012352925496,
|
| 408 |
+
"loss": 1.0171710968017578,
|
| 409 |
+
"step": 1140
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"epoch": 0.3699864444621641,
|
| 413 |
+
"grad_norm": 0.4319663941860199,
|
| 414 |
+
"learning_rate": 0.0001491757968198319,
|
| 415 |
+
"loss": 1.002194309234619,
|
| 416 |
+
"step": 1160
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 0.3763655210908221,
|
| 420 |
+
"grad_norm": 0.370866596698761,
|
| 421 |
+
"learning_rate": 0.00014732848304618628,
|
| 422 |
+
"loss": 1.054680633544922,
|
| 423 |
+
"step": 1180
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 0.3827445977194801,
|
| 427 |
+
"grad_norm": 0.39589911699295044,
|
| 428 |
+
"learning_rate": 0.0001454601157283979,
|
| 429 |
+
"loss": 1.051061248779297,
|
| 430 |
+
"step": 1200
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 0.3891236743481381,
|
| 434 |
+
"grad_norm": 0.38640621304512024,
|
| 435 |
+
"learning_rate": 0.00014357152598868476,
|
| 436 |
+
"loss": 1.0340915679931642,
|
| 437 |
+
"step": 1220
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 0.3955027509767961,
|
| 441 |
+
"grad_norm": 0.37239277362823486,
|
| 442 |
+
"learning_rate": 0.00014166355394498202,
|
| 443 |
+
"loss": 1.0854945182800293,
|
| 444 |
+
"step": 1240
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"epoch": 0.4018818276054541,
|
| 448 |
+
"grad_norm": 0.4776981472969055,
|
| 449 |
+
"learning_rate": 0.00013973704833722509,
|
| 450 |
+
"loss": 1.0340095520019532,
|
| 451 |
+
"step": 1260
|
| 452 |
+
},
|
| 453 |
+
{
|
| 454 |
+
"epoch": 0.4082609042341121,
|
| 455 |
+
"grad_norm": 0.3754555284976959,
|
| 456 |
+
"learning_rate": 0.00013779286614979728,
|
| 457 |
+
"loss": 1.0588939666748047,
|
| 458 |
+
"step": 1280
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"epoch": 0.4146399808627701,
|
| 462 |
+
"grad_norm": 0.3581312596797943,
|
| 463 |
+
"learning_rate": 0.0001358318722303098,
|
| 464 |
+
"loss": 1.0207186698913575,
|
| 465 |
+
"step": 1300
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 0.4210190574914281,
|
| 469 |
+
"grad_norm": 0.33835941553115845,
|
| 470 |
+
"learning_rate": 0.000133854938904884,
|
| 471 |
+
"loss": 0.996804141998291,
|
| 472 |
+
"step": 1320
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"epoch": 0.4273981341200861,
|
| 476 |
+
"grad_norm": 0.37163445353507996,
|
| 477 |
+
"learning_rate": 0.00013186294559010703,
|
| 478 |
+
"loss": 1.0360607147216796,
|
| 479 |
+
"step": 1340
|
| 480 |
+
},
|
| 481 |
+
{
|
| 482 |
+
"epoch": 0.43377721074874415,
|
| 483 |
+
"grad_norm": 0.40468406677246094,
|
| 484 |
+
"learning_rate": 0.0001298567784018332,
|
| 485 |
+
"loss": 1.0401429176330566,
|
| 486 |
+
"step": 1360
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"epoch": 0.44015628737740214,
|
| 490 |
+
"grad_norm": 0.3982478380203247,
|
| 491 |
+
"learning_rate": 0.00012783732976100504,
|
| 492 |
+
"loss": 1.0549521446228027,
|
| 493 |
+
"step": 1380
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"epoch": 0.44653536400606014,
|
| 497 |
+
"grad_norm": 0.3914712965488434,
|
| 498 |
+
"learning_rate": 0.00012580549799667034,
|
| 499 |
+
"loss": 1.025351333618164,
|
| 500 |
+
"step": 1400
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"epoch": 0.45291444063471814,
|
| 504 |
+
"grad_norm": 0.36290040612220764,
|
| 505 |
+
"learning_rate": 0.00012376218694637028,
|
| 506 |
+
"loss": 1.0487945556640625,
|
| 507 |
+
"step": 1420
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 0.45929351726337614,
|
| 511 |
+
"grad_norm": 0.4272157549858093,
|
| 512 |
+
"learning_rate": 0.00012170830555407726,
|
| 513 |
+
"loss": 1.0303566932678223,
|
| 514 |
+
"step": 1440
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"epoch": 0.46567259389203414,
|
| 518 |
+
"grad_norm": 0.4141615331172943,
|
| 519 |
+
"learning_rate": 0.00011964476746586187,
|
| 520 |
+
"loss": 1.0204460144042968,
|
| 521 |
+
"step": 1460
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"epoch": 0.47205167052069213,
|
| 525 |
+
"grad_norm": 0.43568912148475647,
|
| 526 |
+
"learning_rate": 0.00011757249062346725,
|
| 527 |
+
"loss": 1.0501635551452637,
|
| 528 |
+
"step": 1480
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"epoch": 0.47843074714935013,
|
| 532 |
+
"grad_norm": 0.4742281436920166,
|
| 533 |
+
"learning_rate": 0.00011549239685597327,
|
| 534 |
+
"loss": 1.0212038993835448,
|
| 535 |
+
"step": 1500
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 0.48480982377800813,
|
| 539 |
+
"grad_norm": 0.3556975722312927,
|
| 540 |
+
"learning_rate": 0.00011340541146973109,
|
| 541 |
+
"loss": 1.0127756118774414,
|
| 542 |
+
"step": 1520
|
| 543 |
+
},
|
| 544 |
+
{
|
| 545 |
+
"epoch": 0.49118890040666613,
|
| 546 |
+
"grad_norm": 0.3971082270145416,
|
| 547 |
+
"learning_rate": 0.0001113124628367512,
|
| 548 |
+
"loss": 1.0366864204406738,
|
| 549 |
+
"step": 1540
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 0.4975679770353241,
|
| 553 |
+
"grad_norm": 0.38870203495025635,
|
| 554 |
+
"learning_rate": 0.00010921448198172721,
|
| 555 |
+
"loss": 1.0176129341125488,
|
| 556 |
+
"step": 1560
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 0.5039470536639822,
|
| 560 |
+
"grad_norm": 0.36224520206451416,
|
| 561 |
+
"learning_rate": 0.00010711240216788036,
|
| 562 |
+
"loss": 0.9911076545715332,
|
| 563 |
+
"step": 1580
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 0.5103261302926402,
|
| 567 |
+
"grad_norm": 0.398709237575531,
|
| 568 |
+
"learning_rate": 0.0001050071584818077,
|
| 569 |
+
"loss": 1.0506349563598634,
|
| 570 |
+
"step": 1600
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 0.5167052069212982,
|
| 574 |
+
"grad_norm": 0.44569212198257446,
|
| 575 |
+
"learning_rate": 0.00010289968741751914,
|
| 576 |
+
"loss": 1.0399697303771973,
|
| 577 |
+
"step": 1620
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 0.5230842835499562,
|
| 581 |
+
"grad_norm": 0.3576385974884033,
|
| 582 |
+
"learning_rate": 0.00010079092645984893,
|
| 583 |
+
"loss": 1.0107657432556152,
|
| 584 |
+
"step": 1640
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 0.5294633601786142,
|
| 588 |
+
"grad_norm": 0.480198472738266,
|
| 589 |
+
"learning_rate": 9.868181366742589e-05,
|
| 590 |
+
"loss": 0.9988100051879882,
|
| 591 |
+
"step": 1660
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 0.5358424368072722,
|
| 595 |
+
"grad_norm": 0.36921289563179016,
|
| 596 |
+
"learning_rate": 9.657328725538849e-05,
|
| 597 |
+
"loss": 1.0404596328735352,
|
| 598 |
+
"step": 1680
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 0.5422215134359302,
|
| 602 |
+
"grad_norm": 0.3534800708293915,
|
| 603 |
+
"learning_rate": 9.446628517803055e-05,
|
| 604 |
+
"loss": 1.0561634063720704,
|
| 605 |
+
"step": 1700
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 0.5486005900645882,
|
| 609 |
+
"grad_norm": 0.5924835205078125,
|
| 610 |
+
"learning_rate": 9.236174471156265e-05,
|
| 611 |
+
"loss": 1.0100406646728515,
|
| 612 |
+
"step": 1720
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 0.5549796666932462,
|
| 616 |
+
"grad_norm": 0.41996270418167114,
|
| 617 |
+
"learning_rate": 9.026060203717553e-05,
|
| 618 |
+
"loss": 1.0402870178222656,
|
| 619 |
+
"step": 1740
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 0.5613587433219042,
|
| 623 |
+
"grad_norm": 0.4084126949310303,
|
| 624 |
+
"learning_rate": 8.81637918245902e-05,
|
| 625 |
+
"loss": 1.0095555305480957,
|
| 626 |
+
"step": 1760
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 0.5677378199505622,
|
| 630 |
+
"grad_norm": 0.3663918077945709,
|
| 631 |
+
"learning_rate": 8.607224681628068e-05,
|
| 632 |
+
"loss": 1.0506675720214844,
|
| 633 |
+
"step": 1780
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 0.5741168965792202,
|
| 637 |
+
"grad_norm": 0.4715736210346222,
|
| 638 |
+
"learning_rate": 8.398689741255405e-05,
|
| 639 |
+
"loss": 1.0435371398925781,
|
| 640 |
+
"step": 1800
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 0.5804959732078782,
|
| 644 |
+
"grad_norm": 0.43865320086479187,
|
| 645 |
+
"learning_rate": 8.190867125767228e-05,
|
| 646 |
+
"loss": 1.0446551322937012,
|
| 647 |
+
"step": 1820
|
| 648 |
+
},
|
| 649 |
+
{
|
| 650 |
+
"epoch": 0.5868750498365362,
|
| 651 |
+
"grad_norm": 0.3950525224208832,
|
| 652 |
+
"learning_rate": 7.983849282720005e-05,
|
| 653 |
+
"loss": 1.0364575386047363,
|
| 654 |
+
"step": 1840
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"epoch": 0.5932541264651942,
|
| 658 |
+
"grad_norm": 0.38930827379226685,
|
| 659 |
+
"learning_rate": 7.777728301676215e-05,
|
| 660 |
+
"loss": 1.0290010452270508,
|
| 661 |
+
"step": 1860
|
| 662 |
+
},
|
| 663 |
+
{
|
| 664 |
+
"epoch": 0.5996332030938522,
|
| 665 |
+
"grad_norm": 0.399541437625885,
|
| 666 |
+
"learning_rate": 7.572595873239367e-05,
|
| 667 |
+
"loss": 1.045849609375,
|
| 668 |
+
"step": 1880
|
| 669 |
+
},
|
| 670 |
+
{
|
| 671 |
+
"epoch": 0.6060122797225101,
|
| 672 |
+
"grad_norm": 0.38800048828125,
|
| 673 |
+
"learning_rate": 7.368543248266436e-05,
|
| 674 |
+
"loss": 1.0078801155090331,
|
| 675 |
+
"step": 1900
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 0.6123913563511681,
|
| 679 |
+
"grad_norm": 0.3803689479827881,
|
| 680 |
+
"learning_rate": 7.165661197275937e-05,
|
| 681 |
+
"loss": 0.9927312850952148,
|
| 682 |
+
"step": 1920
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"epoch": 0.6187704329798261,
|
| 686 |
+
"grad_norm": 0.3781611919403076,
|
| 687 |
+
"learning_rate": 6.964039970069723e-05,
|
| 688 |
+
"loss": 1.0288335800170898,
|
| 689 |
+
"step": 1940
|
| 690 |
+
},
|
| 691 |
+
{
|
| 692 |
+
"epoch": 0.6251495096084841,
|
| 693 |
+
"grad_norm": 0.3648211658000946,
|
| 694 |
+
"learning_rate": 6.76376925558633e-05,
|
| 695 |
+
"loss": 1.016789150238037,
|
| 696 |
+
"step": 1960
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"epoch": 0.6315285862371421,
|
| 700 |
+
"grad_norm": 0.3644472062587738,
|
| 701 |
+
"learning_rate": 6.564938142003876e-05,
|
| 702 |
+
"loss": 1.0296217918395996,
|
| 703 |
+
"step": 1980
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"epoch": 0.6379076628658001,
|
| 707 |
+
"grad_norm": 0.4196849763393402,
|
| 708 |
+
"learning_rate": 6.367635077110193e-05,
|
| 709 |
+
"loss": 1.0465140342712402,
|
| 710 |
+
"step": 2000
|
| 711 |
+
},
|
| 712 |
+
{
|
| 713 |
+
"epoch": 0.6442867394944581,
|
| 714 |
+
"grad_norm": 0.4229860305786133,
|
| 715 |
+
"learning_rate": 6.171947828957813e-05,
|
| 716 |
+
"loss": 0.9935624122619628,
|
| 717 |
+
"step": 2020
|
| 718 |
+
},
|
| 719 |
+
{
|
| 720 |
+
"epoch": 0.6506658161231161,
|
| 721 |
+
"grad_norm": 0.3640349209308624,
|
| 722 |
+
"learning_rate": 5.97796344682134e-05,
|
| 723 |
+
"loss": 1.0277256965637207,
|
| 724 |
+
"step": 2040
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"epoch": 0.6570448927517741,
|
| 728 |
+
"grad_norm": 0.4113347828388214,
|
| 729 |
+
"learning_rate": 5.785768222474544e-05,
|
| 730 |
+
"loss": 1.0203803062438965,
|
| 731 |
+
"step": 2060
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"epoch": 0.6634239693804321,
|
| 735 |
+
"grad_norm": 0.36274972558021545,
|
| 736 |
+
"learning_rate": 5.595447651804462e-05,
|
| 737 |
+
"loss": 1.0556281089782715,
|
| 738 |
+
"step": 2080
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"epoch": 0.6698030460090901,
|
| 742 |
+
"grad_norm": 0.387104868888855,
|
| 743 |
+
"learning_rate": 5.4070863967794885e-05,
|
| 744 |
+
"loss": 0.9899411201477051,
|
| 745 |
+
"step": 2100
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 0.6761821226377482,
|
| 749 |
+
"grad_norm": 0.38654327392578125,
|
| 750 |
+
"learning_rate": 5.220768247788458e-05,
|
| 751 |
+
"loss": 1.0453373908996582,
|
| 752 |
+
"step": 2120
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"epoch": 0.6825611992664062,
|
| 756 |
+
"grad_norm": 0.4250175356864929,
|
| 757 |
+
"learning_rate": 5.036576086367428e-05,
|
| 758 |
+
"loss": 1.014944362640381,
|
| 759 |
+
"step": 2140
|
| 760 |
+
},
|
| 761 |
+
{
|
| 762 |
+
"epoch": 0.6889402758950642,
|
| 763 |
+
"grad_norm": 0.4817405343055725,
|
| 764 |
+
"learning_rate": 4.854591848330782e-05,
|
| 765 |
+
"loss": 0.9892327308654785,
|
| 766 |
+
"step": 2160
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"epoch": 0.6953193525237222,
|
| 770 |
+
"grad_norm": 0.4661904275417328,
|
| 771 |
+
"learning_rate": 4.6748964873229526e-05,
|
| 772 |
+
"loss": 1.0213812828063964,
|
| 773 |
+
"step": 2180
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.7016984291523802,
|
| 777 |
+
"grad_norm": 0.42874079942703247,
|
| 778 |
+
"learning_rate": 4.49756993880715e-05,
|
| 779 |
+
"loss": 1.0591063499450684,
|
| 780 |
+
"step": 2200
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"epoch": 0.7080775057810382,
|
| 784 |
+
"grad_norm": 0.374489963054657,
|
| 785 |
+
"learning_rate": 4.322691084506956e-05,
|
| 786 |
+
"loss": 0.9852917671203614,
|
| 787 |
+
"step": 2220
|
| 788 |
+
},
|
| 789 |
+
{
|
| 790 |
+
"epoch": 0.7144565824096962,
|
| 791 |
+
"grad_norm": 0.3870807886123657,
|
| 792 |
+
"learning_rate": 4.150337717316658e-05,
|
| 793 |
+
"loss": 0.9926732063293457,
|
| 794 |
+
"step": 2240
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"epoch": 0.7208356590383542,
|
| 798 |
+
"grad_norm": 0.3918297290802002,
|
| 799 |
+
"learning_rate": 3.9805865066959725e-05,
|
| 800 |
+
"loss": 1.018412208557129,
|
| 801 |
+
"step": 2260
|
| 802 |
+
},
|
| 803 |
+
{
|
| 804 |
+
"epoch": 0.7272147356670122,
|
| 805 |
+
"grad_norm": 0.36913925409317017,
|
| 806 |
+
"learning_rate": 3.813512964564489e-05,
|
| 807 |
+
"loss": 1.0138113975524903,
|
| 808 |
+
"step": 2280
|
| 809 |
+
},
|
| 810 |
+
{
|
| 811 |
+
"epoch": 0.7335938122956702,
|
| 812 |
+
"grad_norm": 0.42481136322021484,
|
| 813 |
+
"learning_rate": 3.64919141171104e-05,
|
| 814 |
+
"loss": 1.0364414215087892,
|
| 815 |
+
"step": 2300
|
| 816 |
+
},
|
| 817 |
+
{
|
| 818 |
+
"epoch": 0.7399728889243282,
|
| 819 |
+
"grad_norm": 0.35376596450805664,
|
| 820 |
+
"learning_rate": 3.48769494473294e-05,
|
| 821 |
+
"loss": 1.0163302421569824,
|
| 822 |
+
"step": 2320
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 0.7463519655529862,
|
| 826 |
+
"grad_norm": 0.3571137487888336,
|
| 827 |
+
"learning_rate": 3.329095403519776e-05,
|
| 828 |
+
"loss": 1.0149422645568849,
|
| 829 |
+
"step": 2340
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 0.7527310421816442,
|
| 833 |
+
"grad_norm": 0.3296068012714386,
|
| 834 |
+
"learning_rate": 3.173463339296242e-05,
|
| 835 |
+
"loss": 1.0384585380554199,
|
| 836 |
+
"step": 2360
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 0.7591101188103022,
|
| 840 |
+
"grad_norm": 0.39232197403907776,
|
| 841 |
+
"learning_rate": 3.0208679832382293e-05,
|
| 842 |
+
"loss": 0.979072380065918,
|
| 843 |
+
"step": 2380
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 0.7654891954389602,
|
| 847 |
+
"grad_norm": 0.35901549458503723,
|
| 848 |
+
"learning_rate": 2.8713772156760966e-05,
|
| 849 |
+
"loss": 0.9918346405029297,
|
| 850 |
+
"step": 2400
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"epoch": 0.7718682720676182,
|
| 854 |
+
"grad_norm": 0.34417739510536194,
|
| 855 |
+
"learning_rate": 2.7250575358988817e-05,
|
| 856 |
+
"loss": 1.030968475341797,
|
| 857 |
+
"step": 2420
|
| 858 |
+
},
|
| 859 |
+
{
|
| 860 |
+
"epoch": 0.7782473486962762,
|
| 861 |
+
"grad_norm": 0.40106430649757385,
|
| 862 |
+
"learning_rate": 2.581974032572836e-05,
|
| 863 |
+
"loss": 0.997005558013916,
|
| 864 |
+
"step": 2440
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"epoch": 0.7846264253249342,
|
| 868 |
+
"grad_norm": 0.40273308753967285,
|
| 869 |
+
"learning_rate": 2.4421903547874604e-05,
|
| 870 |
+
"loss": 1.0141830444335938,
|
| 871 |
+
"step": 2460
|
| 872 |
+
},
|
| 873 |
+
{
|
| 874 |
+
"epoch": 0.7910055019535922,
|
| 875 |
+
"grad_norm": 0.36937829852104187,
|
| 876 |
+
"learning_rate": 2.3057686837419245e-05,
|
| 877 |
+
"loss": 0.9915987014770508,
|
| 878 |
+
"step": 2480
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"epoch": 0.7973845785822502,
|
| 882 |
+
"grad_norm": 0.41099807620048523,
|
| 883 |
+
"learning_rate": 2.1727697050844542e-05,
|
| 884 |
+
"loss": 1.0052967071533203,
|
| 885 |
+
"step": 2500
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"epoch": 0.8037636552109082,
|
| 889 |
+
"grad_norm": 0.3430964946746826,
|
| 890 |
+
"learning_rate": 2.04325258191702e-05,
|
| 891 |
+
"loss": 1.0124110221862792,
|
| 892 |
+
"step": 2520
|
| 893 |
+
},
|
| 894 |
+
{
|
| 895 |
+
"epoch": 0.8101427318395662,
|
| 896 |
+
"grad_norm": 0.42573267221450806,
|
| 897 |
+
"learning_rate": 1.9172749284772617e-05,
|
| 898 |
+
"loss": 1.046116542816162,
|
| 899 |
+
"step": 2540
|
| 900 |
+
},
|
| 901 |
+
{
|
| 902 |
+
"epoch": 0.8165218084682242,
|
| 903 |
+
"grad_norm": 0.34176334738731384,
|
| 904 |
+
"learning_rate": 1.7948927845094743e-05,
|
| 905 |
+
"loss": 1.0312464714050293,
|
| 906 |
+
"step": 2560
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"epoch": 0.8229008850968822,
|
| 910 |
+
"grad_norm": 0.33181166648864746,
|
| 911 |
+
"learning_rate": 1.676160590335948e-05,
|
| 912 |
+
"loss": 0.97237548828125,
|
| 913 |
+
"step": 2580
|
| 914 |
+
},
|
| 915 |
+
{
|
| 916 |
+
"epoch": 0.8292799617255402,
|
| 917 |
+
"grad_norm": 0.3751026391983032,
|
| 918 |
+
"learning_rate": 1.5611311626397908e-05,
|
| 919 |
+
"loss": 1.029274082183838,
|
| 920 |
+
"step": 2600
|
| 921 |
+
},
|
| 922 |
+
{
|
| 923 |
+
"epoch": 0.8356590383541982,
|
| 924 |
+
"grad_norm": 0.3983386158943176,
|
| 925 |
+
"learning_rate": 1.4498556709700317e-05,
|
| 926 |
+
"loss": 0.979708480834961,
|
| 927 |
+
"step": 2620
|
| 928 |
+
},
|
| 929 |
+
{
|
| 930 |
+
"epoch": 0.8420381149828562,
|
| 931 |
+
"grad_norm": 0.3683454692363739,
|
| 932 |
+
"learning_rate": 1.3423836149794189e-05,
|
| 933 |
+
"loss": 1.062849521636963,
|
| 934 |
+
"step": 2640
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"epoch": 0.8484171916115142,
|
| 938 |
+
"grad_norm": 0.43143871426582336,
|
| 939 |
+
"learning_rate": 1.2387628024050557e-05,
|
| 940 |
+
"loss": 1.0098539352416993,
|
| 941 |
+
"step": 2660
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"epoch": 0.8547962682401722,
|
| 945 |
+
"grad_norm": 0.43267059326171875,
|
| 946 |
+
"learning_rate": 1.139039327801661e-05,
|
| 947 |
+
"loss": 1.0019266128540039,
|
| 948 |
+
"step": 2680
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"epoch": 0.8611753448688302,
|
| 952 |
+
"grad_norm": 0.3967345952987671,
|
| 953 |
+
"learning_rate": 1.0432575520369293e-05,
|
| 954 |
+
"loss": 1.0030330657958983,
|
| 955 |
+
"step": 2700
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"epoch": 0.8675544214974883,
|
| 959 |
+
"grad_norm": 0.40890631079673767,
|
| 960 |
+
"learning_rate": 9.514600825581e-06,
|
| 961 |
+
"loss": 1.0057960510253907,
|
| 962 |
+
"step": 2720
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"epoch": 0.8739334981261463,
|
| 966 |
+
"grad_norm": 0.35522186756134033,
|
| 967 |
+
"learning_rate": 8.636877544385025e-06,
|
| 968 |
+
"loss": 1.045962429046631,
|
| 969 |
+
"step": 2740
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"epoch": 0.8803125747548043,
|
| 973 |
+
"grad_norm": 0.3627678453922272,
|
| 974 |
+
"learning_rate": 7.799796122125414e-06,
|
| 975 |
+
"loss": 1.0400966644287108,
|
| 976 |
+
"step": 2760
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"epoch": 0.8866916513834623,
|
| 980 |
+
"grad_norm": 0.3707619905471802,
|
| 981 |
+
"learning_rate": 7.0037289250716846e-06,
|
| 982 |
+
"loss": 1.0188066482543945,
|
| 983 |
+
"step": 2780
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"epoch": 0.8930707280121203,
|
| 987 |
+
"grad_norm": 0.4088013172149658,
|
| 988 |
+
"learning_rate": 6.249030074775919e-06,
|
| 989 |
+
"loss": 0.9484004974365234,
|
| 990 |
+
"step": 2800
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"epoch": 0.8994498046407783,
|
| 994 |
+
"grad_norm": 0.456567645072937,
|
| 995 |
+
"learning_rate": 5.536035290545749e-06,
|
| 996 |
+
"loss": 0.9833850860595703,
|
| 997 |
+
"step": 2820
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"epoch": 0.9058288812694363,
|
| 1001 |
+
"grad_norm": 0.34377098083496094,
|
| 1002 |
+
"learning_rate": 4.865061740103361e-06,
|
| 1003 |
+
"loss": 0.9835627555847168,
|
| 1004 |
+
"step": 2840
|
| 1005 |
+
},
|
| 1006 |
+
{
|
| 1007 |
+
"epoch": 0.9122079578980943,
|
| 1008 |
+
"grad_norm": 0.3588654696941376,
|
| 1009 |
+
"learning_rate": 4.236407898497075e-06,
|
| 1010 |
+
"loss": 1.0150874137878418,
|
| 1011 |
+
"step": 2860
|
| 1012 |
+
},
|
| 1013 |
+
{
|
| 1014 |
+
"epoch": 0.9185870345267523,
|
| 1015 |
+
"grad_norm": 0.424083411693573,
|
| 1016 |
+
"learning_rate": 3.6503534153280007e-06,
|
| 1017 |
+
"loss": 1.0256061553955078,
|
| 1018 |
+
"step": 2880
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"epoch": 0.9249661111554103,
|
| 1022 |
+
"grad_norm": 0.4053768217563629,
|
| 1023 |
+
"learning_rate": 3.1071589903510335e-06,
|
| 1024 |
+
"loss": 1.0478339195251465,
|
| 1025 |
+
"step": 2900
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 0.9313451877840683,
|
| 1029 |
+
"grad_norm": 0.44554078578948975,
|
| 1030 |
+
"learning_rate": 2.607066257505586e-06,
|
| 1031 |
+
"loss": 1.00260648727417,
|
| 1032 |
+
"step": 2920
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 0.9377242644127263,
|
| 1036 |
+
"grad_norm": 0.42239534854888916,
|
| 1037 |
+
"learning_rate": 2.1502976774274043e-06,
|
| 1038 |
+
"loss": 0.9838084220886231,
|
| 1039 |
+
"step": 2940
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 0.9441033410413843,
|
| 1043 |
+
"grad_norm": 0.35276949405670166,
|
| 1044 |
+
"learning_rate": 1.737056438489404e-06,
|
| 1045 |
+
"loss": 0.997131633758545,
|
| 1046 |
+
"step": 2960
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 0.9504824176700423,
|
| 1050 |
+
"grad_norm": 0.47409260272979736,
|
| 1051 |
+
"learning_rate": 1.3675263664156723e-06,
|
| 1052 |
+
"loss": 0.9645838737487793,
|
| 1053 |
+
"step": 2980
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"epoch": 0.9568614942987003,
|
| 1057 |
+
"grad_norm": 0.371419757604599,
|
| 1058 |
+
"learning_rate": 1.0418718425086349e-06,
|
| 1059 |
+
"loss": 1.0339078903198242,
|
| 1060 |
+
"step": 3000
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"epoch": 0.9632405709273583,
|
| 1064 |
+
"grad_norm": 0.3664110004901886,
|
| 1065 |
+
"learning_rate": 7.602377305258479e-07,
|
| 1066 |
+
"loss": 1.018355369567871,
|
| 1067 |
+
"step": 3020
|
| 1068 |
+
},
|
| 1069 |
+
{
|
| 1070 |
+
"epoch": 0.9696196475560163,
|
| 1071 |
+
"grad_norm": 0.44556254148483276,
|
| 1072 |
+
"learning_rate": 5.227493122390459e-07,
|
| 1073 |
+
"loss": 1.0013629913330078,
|
| 1074 |
+
"step": 3040
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"epoch": 0.9759987241846743,
|
| 1078 |
+
"grad_norm": 0.4020116627216339,
|
| 1079 |
+
"learning_rate": 3.295122317038768e-07,
|
| 1080 |
+
"loss": 0.9894389152526856,
|
| 1081 |
+
"step": 3060
|
| 1082 |
+
},
|
| 1083 |
+
{
|
| 1084 |
+
"epoch": 0.9823778008133323,
|
| 1085 |
+
"grad_norm": 0.39281103014945984,
|
| 1086 |
+
"learning_rate": 1.806124482654159e-07,
|
| 1087 |
+
"loss": 1.0337581634521484,
|
| 1088 |
+
"step": 3080
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"epoch": 0.9887568774419903,
|
| 1092 |
+
"grad_norm": 0.3942895233631134,
|
| 1093 |
+
"learning_rate": 7.611619832004202e-08,
|
| 1094 |
+
"loss": 1.019133949279785,
|
| 1095 |
+
"step": 3100
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"epoch": 0.9951359540706483,
|
| 1099 |
+
"grad_norm": 0.3918415307998657,
|
| 1100 |
+
"learning_rate": 1.606996585096221e-08,
|
| 1101 |
+
"loss": 1.0425760269165039,
|
| 1102 |
+
"step": 3120
|
| 1103 |
+
}
|
| 1104 |
+
],
|
| 1105 |
+
"logging_steps": 20,
|
| 1106 |
+
"max_steps": 3136,
|
| 1107 |
+
"num_input_tokens_seen": 0,
|
| 1108 |
+
"num_train_epochs": 1,
|
| 1109 |
+
"save_steps": 500,
|
| 1110 |
+
"stateful_callbacks": {
|
| 1111 |
+
"TrainerControl": {
|
| 1112 |
+
"args": {
|
| 1113 |
+
"should_epoch_stop": false,
|
| 1114 |
+
"should_evaluate": false,
|
| 1115 |
+
"should_log": false,
|
| 1116 |
+
"should_save": true,
|
| 1117 |
+
"should_training_stop": true
|
| 1118 |
+
},
|
| 1119 |
+
"attributes": {}
|
| 1120 |
+
}
|
| 1121 |
+
},
|
| 1122 |
+
"total_flos": 3.7721188567082496e+17,
|
| 1123 |
+
"train_batch_size": 2,
|
| 1124 |
+
"trial_name": null,
|
| 1125 |
+
"trial_params": null
|
| 1126 |
+
}
|
sft_model/checkpoint-3136/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1032b52eb31ad96bbd04920f8f0ac477c4a3f030fd4d7d093e600fd803f6dfce
|
| 3 |
+
size 5713
|
sft_model/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b4360dd6a184650ffc48056c2569bc603f896c5adfe94b10f1c79f809638aa5
|
| 3 |
+
size 11422166
|
sft_model/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": true,
|
| 10 |
+
"model_max_length": 32768,
|
| 11 |
+
"pad_token": "<|endoftext|>",
|
| 12 |
+
"padding_side": "left",
|
| 13 |
+
"split_special_tokens": false,
|
| 14 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 15 |
+
"unk_token": null
|
| 16 |
+
}
|