Upload merged Qwen3-4B-Instruct-2507 model (auto-generated README)
Browse files- .gitattributes +3 -0
- README.md +69 -0
- adapter_config.json +38 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- chat_template.jinja +54 -0
- checkpoint-1200/README.md +202 -0
- checkpoint-1200/adapter_config.json +38 -0
- checkpoint-1200/adapter_model.safetensors +3 -0
- checkpoint-1200/added_tokens.json +24 -0
- checkpoint-1200/chat_template.jinja +54 -0
- checkpoint-1200/merges.txt +0 -0
- checkpoint-1200/optimizer.pt +3 -0
- checkpoint-1200/rng_state.pth +3 -0
- checkpoint-1200/scheduler.pt +3 -0
- checkpoint-1200/special_tokens_map.json +31 -0
- checkpoint-1200/tokenizer.json +3 -0
- checkpoint-1200/tokenizer_config.json +208 -0
- checkpoint-1200/trainer_state.json +1194 -0
- checkpoint-1200/training_args.bin +3 -0
- checkpoint-1200/vocab.json +0 -0
- checkpoint-1209/README.md +202 -0
- checkpoint-1209/adapter_config.json +38 -0
- checkpoint-1209/adapter_model.safetensors +3 -0
- checkpoint-1209/added_tokens.json +24 -0
- checkpoint-1209/chat_template.jinja +54 -0
- checkpoint-1209/merges.txt +0 -0
- checkpoint-1209/optimizer.pt +3 -0
- checkpoint-1209/rng_state.pth +3 -0
- checkpoint-1209/scheduler.pt +3 -0
- checkpoint-1209/special_tokens_map.json +31 -0
- checkpoint-1209/tokenizer.json +3 -0
- checkpoint-1209/tokenizer_config.json +208 -0
- checkpoint-1209/trainer_state.json +1194 -0
- checkpoint-1209/training_args.bin +3 -0
- checkpoint-1209/vocab.json +0 -0
- config.json +60 -0
- generation_config.json +15 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +347 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +208 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
checkpoint-1200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1209/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 3 |
+
datasets:
|
| 4 |
+
- u-10bei/sft_alfworld_trajectory_dataset_v5
|
| 5 |
+
- u-10bei/dbbench_sft_dataset_react_v4
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
library_name: peft
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
+
tags:
|
| 12 |
+
- lora
|
| 13 |
+
- agent
|
| 14 |
+
- tool-use
|
| 15 |
+
- alfworld
|
| 16 |
+
- dbbench
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Qwen3-4B ALFWorld+DBBench Mixed LoRA Adapter (r=64)
|
| 20 |
+
|
| 21 |
+
This repository provides a **LoRA adapter** fine-tuned from
|
| 22 |
+
**Qwen/Qwen2.5-7B-Instruct** using **LoRA + Unsloth**.
|
| 23 |
+
|
| 24 |
+
This repository contains **LoRA adapter weights only**.
|
| 25 |
+
The base model must be loaded separately.
|
| 26 |
+
|
| 27 |
+
## Training Objective
|
| 28 |
+
|
| 29 |
+
This adapter is trained to improve **multi-turn agent task performance**
|
| 30 |
+
on ALFWorld (household tasks) and DBBench (database operations).
|
| 31 |
+
|
| 32 |
+
Loss is applied to **all assistant turns** in the multi-turn trajectory,
|
| 33 |
+
enabling the model to learn environment observation, action selection,
|
| 34 |
+
tool use, and recovery from errors.
|
| 35 |
+
|
| 36 |
+
## Training Configuration
|
| 37 |
+
|
| 38 |
+
- Base model: Qwen/Qwen2.5-7B-Instruct
|
| 39 |
+
- Method: LoRA (full precision base)
|
| 40 |
+
- Max sequence length: 2048
|
| 41 |
+
- Epochs: 2
|
| 42 |
+
- Learning rate: 2e-04
|
| 43 |
+
- LoRA: r=64, alpha=128
|
| 44 |
+
|
| 45 |
+
## Usage
|
| 46 |
+
|
| 47 |
+
```python
|
| 48 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 49 |
+
from peft import PeftModel
|
| 50 |
+
import torch
|
| 51 |
+
|
| 52 |
+
base = "Qwen/Qwen2.5-7B-Instruct"
|
| 53 |
+
adapter = "your_id/your-repo"
|
| 54 |
+
|
| 55 |
+
tokenizer = AutoTokenizer.from_pretrained(base)
|
| 56 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 57 |
+
base,
|
| 58 |
+
torch_dtype=torch.float16,
|
| 59 |
+
device_map="auto",
|
| 60 |
+
)
|
| 61 |
+
model = PeftModel.from_pretrained(model, adapter)
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
## Sources & Terms (IMPORTANT)
|
| 65 |
+
|
| 66 |
+
Training data: u-10bei/sft_alfworld_trajectory_dataset_v5 + u-10bei/dbbench_sft_dataset_react_v4
|
| 67 |
+
|
| 68 |
+
Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
|
| 69 |
+
Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.
|
adapter_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": {
|
| 4 |
+
"base_model_class": "Qwen2ForCausalLM",
|
| 5 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 6 |
+
"unsloth_fixed": true
|
| 7 |
+
},
|
| 8 |
+
"base_model_name_or_path": "unsloth/Qwen2.5-7B-Instruct",
|
| 9 |
+
"bias": "none",
|
| 10 |
+
"fan_in_fan_out": false,
|
| 11 |
+
"inference_mode": true,
|
| 12 |
+
"init_lora_weights": true,
|
| 13 |
+
"layer_replication": null,
|
| 14 |
+
"layers_pattern": null,
|
| 15 |
+
"layers_to_transform": null,
|
| 16 |
+
"loftq_config": {},
|
| 17 |
+
"lora_alpha": 128,
|
| 18 |
+
"lora_dropout": 0.0,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 64,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"v_proj",
|
| 28 |
+
"down_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"gate_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"up_proj",
|
| 33 |
+
"k_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"use_dora": false,
|
| 37 |
+
"use_rslora": false
|
| 38 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5d609ec4305a50e10693fdc5c0f4f74f5974b408a472a63a0e29ced093f59e9
|
| 3 |
+
size 645975704
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
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 %}
|
checkpoint-1200/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.13.2
|
checkpoint-1200/adapter_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": {
|
| 4 |
+
"base_model_class": "Qwen2ForCausalLM",
|
| 5 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 6 |
+
"unsloth_fixed": true
|
| 7 |
+
},
|
| 8 |
+
"base_model_name_or_path": "unsloth/Qwen2.5-7B-Instruct",
|
| 9 |
+
"bias": "none",
|
| 10 |
+
"fan_in_fan_out": false,
|
| 11 |
+
"inference_mode": true,
|
| 12 |
+
"init_lora_weights": true,
|
| 13 |
+
"layer_replication": null,
|
| 14 |
+
"layers_pattern": null,
|
| 15 |
+
"layers_to_transform": null,
|
| 16 |
+
"loftq_config": {},
|
| 17 |
+
"lora_alpha": 128,
|
| 18 |
+
"lora_dropout": 0.0,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 64,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"v_proj",
|
| 28 |
+
"down_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"gate_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"up_proj",
|
| 33 |
+
"k_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"use_dora": false,
|
| 37 |
+
"use_rslora": false
|
| 38 |
+
}
|
checkpoint-1200/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed95897de25f7f4e5d82545142dee8b6b8c2ded4eb01d567e99f8769623e76bc
|
| 3 |
+
size 645975704
|
checkpoint-1200/added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
checkpoint-1200/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 %}
|
checkpoint-1200/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1200/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:333729e6caf0438c39a3c6788b2ec7c9b73e1193c4f1d5bd17153f91e027fcef
|
| 3 |
+
size 1292182139
|
checkpoint-1200/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a391d68393a9b12fcd7cd2dd5b614c1d3918af5767128296916cb37d2d8485bf
|
| 3 |
+
size 14645
|
checkpoint-1200/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54b7cd797d7038407a10de2a71435723413be94806d803fa58d42eb83a9eaa09
|
| 3 |
+
size 1465
|
checkpoint-1200/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|vision_pad|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-1200/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
checkpoint-1200/tokenizer_config.json
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 32768,
|
| 203 |
+
"pad_token": "<|vision_pad|>",
|
| 204 |
+
"padding_side": "right",
|
| 205 |
+
"split_special_tokens": false,
|
| 206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 207 |
+
"unk_token": null
|
| 208 |
+
}
|
checkpoint-1200/trainer_state.json
ADDED
|
@@ -0,0 +1,1194 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.978274363749224,
|
| 6 |
+
"eval_steps": 30,
|
| 7 |
+
"global_step": 1200,
|
| 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.024829298572315334,
|
| 14 |
+
"grad_norm": 2.199962615966797,
|
| 15 |
+
"learning_rate": 1.487603305785124e-05,
|
| 16 |
+
"loss": 1.2101,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.04965859714463067,
|
| 21 |
+
"grad_norm": 0.5984658598899841,
|
| 22 |
+
"learning_rate": 3.1404958677685955e-05,
|
| 23 |
+
"loss": 0.6936,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.074487895716946,
|
| 28 |
+
"grad_norm": 0.6005842089653015,
|
| 29 |
+
"learning_rate": 4.793388429752066e-05,
|
| 30 |
+
"loss": 0.5252,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.074487895716946,
|
| 35 |
+
"eval_loss": 0.4523814916610718,
|
| 36 |
+
"eval_runtime": 63.8486,
|
| 37 |
+
"eval_samples_per_second": 2.663,
|
| 38 |
+
"eval_steps_per_second": 1.331,
|
| 39 |
+
"step": 30
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"epoch": 0.09931719428926133,
|
| 43 |
+
"grad_norm": 0.5528084635734558,
|
| 44 |
+
"learning_rate": 6.446280991735537e-05,
|
| 45 |
+
"loss": 0.3847,
|
| 46 |
+
"step": 40
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.12414649286157665,
|
| 50 |
+
"grad_norm": 0.7472060322761536,
|
| 51 |
+
"learning_rate": 8.099173553719009e-05,
|
| 52 |
+
"loss": 0.3113,
|
| 53 |
+
"step": 50
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"epoch": 0.148975791433892,
|
| 57 |
+
"grad_norm": 0.5087178349494934,
|
| 58 |
+
"learning_rate": 9.75206611570248e-05,
|
| 59 |
+
"loss": 0.2469,
|
| 60 |
+
"step": 60
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"epoch": 0.148975791433892,
|
| 64 |
+
"eval_loss": 0.2289326786994934,
|
| 65 |
+
"eval_runtime": 63.4197,
|
| 66 |
+
"eval_samples_per_second": 2.681,
|
| 67 |
+
"eval_steps_per_second": 1.34,
|
| 68 |
+
"step": 60
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"epoch": 0.17380509000620734,
|
| 72 |
+
"grad_norm": 0.5471166372299194,
|
| 73 |
+
"learning_rate": 0.0001140495867768595,
|
| 74 |
+
"loss": 0.2153,
|
| 75 |
+
"step": 70
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"epoch": 0.19863438857852267,
|
| 79 |
+
"grad_norm": 0.6101455688476562,
|
| 80 |
+
"learning_rate": 0.00013057851239669423,
|
| 81 |
+
"loss": 0.1896,
|
| 82 |
+
"step": 80
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.22346368715083798,
|
| 86 |
+
"grad_norm": 0.4914955198764801,
|
| 87 |
+
"learning_rate": 0.00014710743801652894,
|
| 88 |
+
"loss": 0.1668,
|
| 89 |
+
"step": 90
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"epoch": 0.22346368715083798,
|
| 93 |
+
"eval_loss": 0.16067302227020264,
|
| 94 |
+
"eval_runtime": 63.2227,
|
| 95 |
+
"eval_samples_per_second": 2.689,
|
| 96 |
+
"eval_steps_per_second": 1.344,
|
| 97 |
+
"step": 90
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"epoch": 0.2482929857231533,
|
| 101 |
+
"grad_norm": 0.577325701713562,
|
| 102 |
+
"learning_rate": 0.00016363636363636366,
|
| 103 |
+
"loss": 0.1684,
|
| 104 |
+
"step": 100
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"epoch": 0.27312228429546864,
|
| 108 |
+
"grad_norm": 0.670930027961731,
|
| 109 |
+
"learning_rate": 0.00018016528925619835,
|
| 110 |
+
"loss": 0.1403,
|
| 111 |
+
"step": 110
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"epoch": 0.297951582867784,
|
| 115 |
+
"grad_norm": 0.3254905343055725,
|
| 116 |
+
"learning_rate": 0.0001966942148760331,
|
| 117 |
+
"loss": 0.1523,
|
| 118 |
+
"step": 120
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.297951582867784,
|
| 122 |
+
"eval_loss": 0.14328794181346893,
|
| 123 |
+
"eval_runtime": 63.2048,
|
| 124 |
+
"eval_samples_per_second": 2.69,
|
| 125 |
+
"eval_steps_per_second": 1.345,
|
| 126 |
+
"step": 120
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"epoch": 0.3227808814400993,
|
| 130 |
+
"grad_norm": 0.3248271644115448,
|
| 131 |
+
"learning_rate": 0.00019997332081116373,
|
| 132 |
+
"loss": 0.1476,
|
| 133 |
+
"step": 130
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"epoch": 0.34761018001241467,
|
| 137 |
+
"grad_norm": 0.2937372028827667,
|
| 138 |
+
"learning_rate": 0.00019986496100395275,
|
| 139 |
+
"loss": 0.1527,
|
| 140 |
+
"step": 140
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"epoch": 0.37243947858473,
|
| 144 |
+
"grad_norm": 0.2765355408191681,
|
| 145 |
+
"learning_rate": 0.000199673343399533,
|
| 146 |
+
"loss": 0.1408,
|
| 147 |
+
"step": 150
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"epoch": 0.37243947858473,
|
| 151 |
+
"eval_loss": 0.1354692131280899,
|
| 152 |
+
"eval_runtime": 63.3386,
|
| 153 |
+
"eval_samples_per_second": 2.684,
|
| 154 |
+
"eval_steps_per_second": 1.342,
|
| 155 |
+
"step": 150
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"epoch": 0.39726877715704534,
|
| 159 |
+
"grad_norm": 0.3119029998779297,
|
| 160 |
+
"learning_rate": 0.00019939862775022893,
|
| 161 |
+
"loss": 0.1447,
|
| 162 |
+
"step": 160
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"epoch": 0.42209807572936064,
|
| 166 |
+
"grad_norm": 0.40628781914711,
|
| 167 |
+
"learning_rate": 0.0001990410430875205,
|
| 168 |
+
"loss": 0.1394,
|
| 169 |
+
"step": 170
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"epoch": 0.44692737430167595,
|
| 173 |
+
"grad_norm": 0.3151319622993469,
|
| 174 |
+
"learning_rate": 0.00019860088753109896,
|
| 175 |
+
"loss": 0.1353,
|
| 176 |
+
"step": 180
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"epoch": 0.44692737430167595,
|
| 180 |
+
"eval_loss": 0.13339394330978394,
|
| 181 |
+
"eval_runtime": 63.468,
|
| 182 |
+
"eval_samples_per_second": 2.679,
|
| 183 |
+
"eval_steps_per_second": 1.339,
|
| 184 |
+
"step": 180
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"epoch": 0.4717566728739913,
|
| 188 |
+
"grad_norm": 0.2475433200597763,
|
| 189 |
+
"learning_rate": 0.00019807852804032305,
|
| 190 |
+
"loss": 0.1333,
|
| 191 |
+
"step": 190
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"epoch": 0.4965859714463066,
|
| 195 |
+
"grad_norm": 0.23864243924617767,
|
| 196 |
+
"learning_rate": 0.00019747440010828383,
|
| 197 |
+
"loss": 0.1266,
|
| 198 |
+
"step": 200
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"epoch": 0.521415270018622,
|
| 202 |
+
"grad_norm": 0.45053115487098694,
|
| 203 |
+
"learning_rate": 0.00019678900739873226,
|
| 204 |
+
"loss": 0.1358,
|
| 205 |
+
"step": 210
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.521415270018622,
|
| 209 |
+
"eval_loss": 0.12399247288703918,
|
| 210 |
+
"eval_runtime": 63.2719,
|
| 211 |
+
"eval_samples_per_second": 2.687,
|
| 212 |
+
"eval_steps_per_second": 1.343,
|
| 213 |
+
"step": 210
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.5462445685909373,
|
| 217 |
+
"grad_norm": 0.2610243856906891,
|
| 218 |
+
"learning_rate": 0.000196022921326173,
|
| 219 |
+
"loss": 0.1308,
|
| 220 |
+
"step": 220
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.5710738671632526,
|
| 224 |
+
"grad_norm": 0.24870441854000092,
|
| 225 |
+
"learning_rate": 0.00019517678057947384,
|
| 226 |
+
"loss": 0.1341,
|
| 227 |
+
"step": 230
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.595903165735568,
|
| 231 |
+
"grad_norm": 0.21340686082839966,
|
| 232 |
+
"learning_rate": 0.00019425129058938832,
|
| 233 |
+
"loss": 0.134,
|
| 234 |
+
"step": 240
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.595903165735568,
|
| 238 |
+
"eval_loss": 0.12239952385425568,
|
| 239 |
+
"eval_runtime": 63.3162,
|
| 240 |
+
"eval_samples_per_second": 2.685,
|
| 241 |
+
"eval_steps_per_second": 1.342,
|
| 242 |
+
"step": 240
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"epoch": 0.6207324643078833,
|
| 246 |
+
"grad_norm": 0.26844245195388794,
|
| 247 |
+
"learning_rate": 0.00019324722294043558,
|
| 248 |
+
"loss": 0.1266,
|
| 249 |
+
"step": 250
|
| 250 |
+
},
|
| 251 |
+
{
|
| 252 |
+
"epoch": 0.6455617628801986,
|
| 253 |
+
"grad_norm": 0.1732800155878067,
|
| 254 |
+
"learning_rate": 0.00019216541472762735,
|
| 255 |
+
"loss": 0.1316,
|
| 256 |
+
"step": 260
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"epoch": 0.6703910614525139,
|
| 260 |
+
"grad_norm": 0.15882068872451782,
|
| 261 |
+
"learning_rate": 0.0001910067678585786,
|
| 262 |
+
"loss": 0.1228,
|
| 263 |
+
"step": 270
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"epoch": 0.6703910614525139,
|
| 267 |
+
"eval_loss": 0.1194252222776413,
|
| 268 |
+
"eval_runtime": 63.2871,
|
| 269 |
+
"eval_samples_per_second": 2.686,
|
| 270 |
+
"eval_steps_per_second": 1.343,
|
| 271 |
+
"step": 270
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.6952203600248293,
|
| 275 |
+
"grad_norm": 0.2936108708381653,
|
| 276 |
+
"learning_rate": 0.0001897722483015838,
|
| 277 |
+
"loss": 0.1161,
|
| 278 |
+
"step": 280
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"epoch": 0.7200496585971446,
|
| 282 |
+
"grad_norm": 0.14567315578460693,
|
| 283 |
+
"learning_rate": 0.00018846288528028555,
|
| 284 |
+
"loss": 0.126,
|
| 285 |
+
"step": 290
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 0.74487895716946,
|
| 289 |
+
"grad_norm": 0.2370811104774475,
|
| 290 |
+
"learning_rate": 0.0001870797704156067,
|
| 291 |
+
"loss": 0.1283,
|
| 292 |
+
"step": 300
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"epoch": 0.74487895716946,
|
| 296 |
+
"eval_loss": 0.1176798865199089,
|
| 297 |
+
"eval_runtime": 63.3181,
|
| 298 |
+
"eval_samples_per_second": 2.685,
|
| 299 |
+
"eval_steps_per_second": 1.342,
|
| 300 |
+
"step": 300
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 0.7697082557417753,
|
| 304 |
+
"grad_norm": 0.16372860968112946,
|
| 305 |
+
"learning_rate": 0.00018562405681566216,
|
| 306 |
+
"loss": 0.1357,
|
| 307 |
+
"step": 310
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.7945375543140907,
|
| 311 |
+
"grad_norm": 0.35256749391555786,
|
| 312 |
+
"learning_rate": 0.00018409695811440796,
|
| 313 |
+
"loss": 0.128,
|
| 314 |
+
"step": 320
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 0.819366852886406,
|
| 318 |
+
"grad_norm": 0.16305528581142426,
|
| 319 |
+
"learning_rate": 0.00018249974745983023,
|
| 320 |
+
"loss": 0.1224,
|
| 321 |
+
"step": 330
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 0.819366852886406,
|
| 325 |
+
"eval_loss": 0.11605502665042877,
|
| 326 |
+
"eval_runtime": 63.296,
|
| 327 |
+
"eval_samples_per_second": 2.686,
|
| 328 |
+
"eval_steps_per_second": 1.343,
|
| 329 |
+
"step": 330
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 0.8441961514587213,
|
| 333 |
+
"grad_norm": 0.14337457716464996,
|
| 334 |
+
"learning_rate": 0.00018083375645251684,
|
| 335 |
+
"loss": 0.1287,
|
| 336 |
+
"step": 340
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"epoch": 0.8690254500310366,
|
| 340 |
+
"grad_norm": 0.23693013191223145,
|
| 341 |
+
"learning_rate": 0.00017910037403549693,
|
| 342 |
+
"loss": 0.1298,
|
| 343 |
+
"step": 350
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.8938547486033519,
|
| 347 |
+
"grad_norm": 0.11969780921936035,
|
| 348 |
+
"learning_rate": 0.0001773010453362737,
|
| 349 |
+
"loss": 0.1175,
|
| 350 |
+
"step": 360
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 0.8938547486033519,
|
| 354 |
+
"eval_loss": 0.11470940709114075,
|
| 355 |
+
"eval_runtime": 63.3643,
|
| 356 |
+
"eval_samples_per_second": 2.683,
|
| 357 |
+
"eval_steps_per_second": 1.341,
|
| 358 |
+
"step": 360
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"epoch": 0.9186840471756673,
|
| 362 |
+
"grad_norm": 0.11961532384157181,
|
| 363 |
+
"learning_rate": 0.0001754372704620164,
|
| 364 |
+
"loss": 0.1299,
|
| 365 |
+
"step": 370
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.9435133457479826,
|
| 369 |
+
"grad_norm": 0.14891605079174042,
|
| 370 |
+
"learning_rate": 0.00017351060324891502,
|
| 371 |
+
"loss": 0.1266,
|
| 372 |
+
"step": 380
|
| 373 |
+
},
|
| 374 |
+
{
|
| 375 |
+
"epoch": 0.9683426443202979,
|
| 376 |
+
"grad_norm": 0.12348289042711258,
|
| 377 |
+
"learning_rate": 0.00017152264996674136,
|
| 378 |
+
"loss": 0.1283,
|
| 379 |
+
"step": 390
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.9683426443202979,
|
| 383 |
+
"eval_loss": 0.11494524031877518,
|
| 384 |
+
"eval_runtime": 63.3601,
|
| 385 |
+
"eval_samples_per_second": 2.683,
|
| 386 |
+
"eval_steps_per_second": 1.342,
|
| 387 |
+
"step": 390
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 0.9931719428926132,
|
| 391 |
+
"grad_norm": 0.21074527502059937,
|
| 392 |
+
"learning_rate": 0.00016947506797969562,
|
| 393 |
+
"loss": 0.114,
|
| 394 |
+
"step": 400
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"epoch": 1.0173805090006207,
|
| 398 |
+
"grad_norm": 0.2929309606552124,
|
| 399 |
+
"learning_rate": 0.00016736956436465573,
|
| 400 |
+
"loss": 0.1253,
|
| 401 |
+
"step": 410
|
| 402 |
+
},
|
| 403 |
+
{
|
| 404 |
+
"epoch": 1.042209807572936,
|
| 405 |
+
"grad_norm": 0.15592433512210846,
|
| 406 |
+
"learning_rate": 0.00016520789448798087,
|
| 407 |
+
"loss": 0.1125,
|
| 408 |
+
"step": 420
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"epoch": 1.042209807572936,
|
| 412 |
+
"eval_loss": 0.1184433102607727,
|
| 413 |
+
"eval_runtime": 63.5387,
|
| 414 |
+
"eval_samples_per_second": 2.676,
|
| 415 |
+
"eval_steps_per_second": 1.338,
|
| 416 |
+
"step": 420
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 1.0670391061452513,
|
| 420 |
+
"grad_norm": 0.22566121816635132,
|
| 421 |
+
"learning_rate": 0.00016299186054205577,
|
| 422 |
+
"loss": 0.1208,
|
| 423 |
+
"step": 430
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 1.0918684047175666,
|
| 427 |
+
"grad_norm": 0.22597947716712952,
|
| 428 |
+
"learning_rate": 0.00016072331004279614,
|
| 429 |
+
"loss": 0.1073,
|
| 430 |
+
"step": 440
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.1166977032898822,
|
| 434 |
+
"grad_norm": 0.2692144811153412,
|
| 435 |
+
"learning_rate": 0.00015840413428936767,
|
| 436 |
+
"loss": 0.111,
|
| 437 |
+
"step": 450
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 1.1166977032898822,
|
| 441 |
+
"eval_loss": 0.11594453454017639,
|
| 442 |
+
"eval_runtime": 63.5354,
|
| 443 |
+
"eval_samples_per_second": 2.676,
|
| 444 |
+
"eval_steps_per_second": 1.338,
|
| 445 |
+
"step": 450
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 1.1415270018621975,
|
| 449 |
+
"grad_norm": 0.11959823220968246,
|
| 450 |
+
"learning_rate": 0.00015603626678740263,
|
| 451 |
+
"loss": 0.1177,
|
| 452 |
+
"step": 460
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"epoch": 1.1663563004345128,
|
| 456 |
+
"grad_norm": 0.16115300357341766,
|
| 457 |
+
"learning_rate": 0.000153621681637029,
|
| 458 |
+
"loss": 0.1187,
|
| 459 |
+
"step": 470
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"epoch": 1.191185599006828,
|
| 463 |
+
"grad_norm": 0.12221992760896683,
|
| 464 |
+
"learning_rate": 0.00015116239188705556,
|
| 465 |
+
"loss": 0.1208,
|
| 466 |
+
"step": 480
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"epoch": 1.191185599006828,
|
| 470 |
+
"eval_loss": 0.11457835137844086,
|
| 471 |
+
"eval_runtime": 63.6214,
|
| 472 |
+
"eval_samples_per_second": 2.672,
|
| 473 |
+
"eval_steps_per_second": 1.336,
|
| 474 |
+
"step": 480
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"epoch": 1.2160148975791434,
|
| 478 |
+
"grad_norm": 0.14025907218456268,
|
| 479 |
+
"learning_rate": 0.00014866044785668563,
|
| 480 |
+
"loss": 0.1252,
|
| 481 |
+
"step": 490
|
| 482 |
+
},
|
| 483 |
+
{
|
| 484 |
+
"epoch": 1.2408441961514587,
|
| 485 |
+
"grad_norm": 0.2606123387813568,
|
| 486 |
+
"learning_rate": 0.00014611793542615803,
|
| 487 |
+
"loss": 0.1177,
|
| 488 |
+
"step": 500
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"epoch": 1.265673494723774,
|
| 492 |
+
"grad_norm": 0.1650104820728302,
|
| 493 |
+
"learning_rate": 0.00014353697429774084,
|
| 494 |
+
"loss": 0.1182,
|
| 495 |
+
"step": 510
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"epoch": 1.265673494723774,
|
| 499 |
+
"eval_loss": 0.11401313543319702,
|
| 500 |
+
"eval_runtime": 63.6832,
|
| 501 |
+
"eval_samples_per_second": 2.669,
|
| 502 |
+
"eval_steps_per_second": 1.335,
|
| 503 |
+
"step": 510
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.2905027932960893,
|
| 507 |
+
"grad_norm": 0.2529577910900116,
|
| 508 |
+
"learning_rate": 0.0001409197162285275,
|
| 509 |
+
"loss": 0.1136,
|
| 510 |
+
"step": 520
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.3153320918684046,
|
| 514 |
+
"grad_norm": 0.10269193351268768,
|
| 515 |
+
"learning_rate": 0.000138268343236509,
|
| 516 |
+
"loss": 0.1163,
|
| 517 |
+
"step": 530
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.34016139044072,
|
| 521 |
+
"grad_norm": 0.13571563363075256,
|
| 522 |
+
"learning_rate": 0.00013558506578141682,
|
| 523 |
+
"loss": 0.1251,
|
| 524 |
+
"step": 540
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.34016139044072,
|
| 528 |
+
"eval_loss": 0.1113414540886879,
|
| 529 |
+
"eval_runtime": 63.575,
|
| 530 |
+
"eval_samples_per_second": 2.674,
|
| 531 |
+
"eval_steps_per_second": 1.337,
|
| 532 |
+
"step": 540
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 1.3649906890130354,
|
| 536 |
+
"grad_norm": 0.19955532252788544,
|
| 537 |
+
"learning_rate": 0.00013287212092185464,
|
| 538 |
+
"loss": 0.1091,
|
| 539 |
+
"step": 550
|
| 540 |
+
},
|
| 541 |
+
{
|
| 542 |
+
"epoch": 1.3898199875853507,
|
| 543 |
+
"grad_norm": 0.134247288107872,
|
| 544 |
+
"learning_rate": 0.00013013177045025374,
|
| 545 |
+
"loss": 0.1168,
|
| 546 |
+
"step": 560
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"epoch": 1.414649286157666,
|
| 550 |
+
"grad_norm": 0.18950553238391876,
|
| 551 |
+
"learning_rate": 0.0001273662990072083,
|
| 552 |
+
"loss": 0.1226,
|
| 553 |
+
"step": 570
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 1.414649286157666,
|
| 557 |
+
"eval_loss": 0.11281875520944595,
|
| 558 |
+
"eval_runtime": 63.627,
|
| 559 |
+
"eval_samples_per_second": 2.672,
|
| 560 |
+
"eval_steps_per_second": 1.336,
|
| 561 |
+
"step": 570
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"epoch": 1.4394785847299814,
|
| 565 |
+
"grad_norm": 0.10673321038484573,
|
| 566 |
+
"learning_rate": 0.00012457801217676182,
|
| 567 |
+
"loss": 0.1217,
|
| 568 |
+
"step": 580
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 1.4643078833022967,
|
| 572 |
+
"grad_norm": 0.13143132627010345,
|
| 573 |
+
"learning_rate": 0.00012176923456423284,
|
| 574 |
+
"loss": 0.1128,
|
| 575 |
+
"step": 590
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"epoch": 1.489137181874612,
|
| 579 |
+
"grad_norm": 0.14993837475776672,
|
| 580 |
+
"learning_rate": 0.00011894230785818284,
|
| 581 |
+
"loss": 0.1151,
|
| 582 |
+
"step": 600
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"epoch": 1.489137181874612,
|
| 586 |
+
"eval_loss": 0.10988790541887283,
|
| 587 |
+
"eval_runtime": 63.6526,
|
| 588 |
+
"eval_samples_per_second": 2.671,
|
| 589 |
+
"eval_steps_per_second": 1.335,
|
| 590 |
+
"step": 600
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 1.5139664804469275,
|
| 594 |
+
"grad_norm": 0.11081644892692566,
|
| 595 |
+
"learning_rate": 0.00011609958887814129,
|
| 596 |
+
"loss": 0.1224,
|
| 597 |
+
"step": 610
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 1.5387957790192428,
|
| 601 |
+
"grad_norm": 0.08948010951280594,
|
| 602 |
+
"learning_rate": 0.00011324344760971671,
|
| 603 |
+
"loss": 0.1182,
|
| 604 |
+
"step": 620
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 1.563625077591558,
|
| 608 |
+
"grad_norm": 0.11353158205747604,
|
| 609 |
+
"learning_rate": 0.00011037626522873019,
|
| 610 |
+
"loss": 0.1288,
|
| 611 |
+
"step": 630
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 1.563625077591558,
|
| 615 |
+
"eval_loss": 0.10913822054862976,
|
| 616 |
+
"eval_runtime": 63.4574,
|
| 617 |
+
"eval_samples_per_second": 2.679,
|
| 618 |
+
"eval_steps_per_second": 1.339,
|
| 619 |
+
"step": 630
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 1.5884543761638734,
|
| 623 |
+
"grad_norm": 0.1256856471300125,
|
| 624 |
+
"learning_rate": 0.00010750043211602045,
|
| 625 |
+
"loss": 0.115,
|
| 626 |
+
"step": 640
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 1.6132836747361887,
|
| 630 |
+
"grad_norm": 0.13873563706874847,
|
| 631 |
+
"learning_rate": 0.00010461834586457398,
|
| 632 |
+
"loss": 0.1165,
|
| 633 |
+
"step": 650
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 1.638112973308504,
|
| 637 |
+
"grad_norm": 0.08335566520690918,
|
| 638 |
+
"learning_rate": 0.00010173240928064285,
|
| 639 |
+
"loss": 0.0987,
|
| 640 |
+
"step": 660
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 1.638112973308504,
|
| 644 |
+
"eval_loss": 0.10997913777828217,
|
| 645 |
+
"eval_runtime": 63.5501,
|
| 646 |
+
"eval_samples_per_second": 2.675,
|
| 647 |
+
"eval_steps_per_second": 1.338,
|
| 648 |
+
"step": 660
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 1.6629422718808193,
|
| 652 |
+
"grad_norm": 0.0818580761551857,
|
| 653 |
+
"learning_rate": 9.884502838051595e-05,
|
| 654 |
+
"loss": 0.1156,
|
| 655 |
+
"step": 670
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 1.6877715704531346,
|
| 659 |
+
"grad_norm": 0.2908185124397278,
|
| 660 |
+
"learning_rate": 9.595861038461398e-05,
|
| 661 |
+
"loss": 0.1141,
|
| 662 |
+
"step": 680
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.71260086902545,
|
| 666 |
+
"grad_norm": 0.12958967685699463,
|
| 667 |
+
"learning_rate": 9.307556171058085e-05,
|
| 668 |
+
"loss": 0.1173,
|
| 669 |
+
"step": 690
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 1.71260086902545,
|
| 673 |
+
"eval_loss": 0.10946697741746902,
|
| 674 |
+
"eval_runtime": 63.6108,
|
| 675 |
+
"eval_samples_per_second": 2.673,
|
| 676 |
+
"eval_steps_per_second": 1.336,
|
| 677 |
+
"step": 690
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"epoch": 1.7374301675977653,
|
| 681 |
+
"grad_norm": 0.0967235118150711,
|
| 682 |
+
"learning_rate": 9.019828596704394e-05,
|
| 683 |
+
"loss": 0.1213,
|
| 684 |
+
"step": 700
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"epoch": 1.7622594661700806,
|
| 688 |
+
"grad_norm": 0.12068717181682587,
|
| 689 |
+
"learning_rate": 8.732918194971664e-05,
|
| 690 |
+
"loss": 0.1138,
|
| 691 |
+
"step": 710
|
| 692 |
+
},
|
| 693 |
+
{
|
| 694 |
+
"epoch": 1.7870887647423959,
|
| 695 |
+
"grad_norm": 0.09991966933012009,
|
| 696 |
+
"learning_rate": 8.447064164151304e-05,
|
| 697 |
+
"loss": 0.1274,
|
| 698 |
+
"step": 720
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"epoch": 1.7870887647423959,
|
| 702 |
+
"eval_loss": 0.10868000984191895,
|
| 703 |
+
"eval_runtime": 63.549,
|
| 704 |
+
"eval_samples_per_second": 2.675,
|
| 705 |
+
"eval_steps_per_second": 1.338,
|
| 706 |
+
"step": 720
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"epoch": 1.8119180633147114,
|
| 710 |
+
"grad_norm": 0.11946102976799011,
|
| 711 |
+
"learning_rate": 8.162504821834295e-05,
|
| 712 |
+
"loss": 0.1142,
|
| 713 |
+
"step": 730
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 1.8367473618870267,
|
| 717 |
+
"grad_norm": 0.09517239034175873,
|
| 718 |
+
"learning_rate": 7.879477406224894e-05,
|
| 719 |
+
"loss": 0.117,
|
| 720 |
+
"step": 740
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 1.861576660459342,
|
| 724 |
+
"grad_norm": 0.10799138993024826,
|
| 725 |
+
"learning_rate": 7.598217878354237e-05,
|
| 726 |
+
"loss": 0.1099,
|
| 727 |
+
"step": 750
|
| 728 |
+
},
|
| 729 |
+
{
|
| 730 |
+
"epoch": 1.861576660459342,
|
| 731 |
+
"eval_loss": 0.10897944122552872,
|
| 732 |
+
"eval_runtime": 63.6832,
|
| 733 |
+
"eval_samples_per_second": 2.669,
|
| 734 |
+
"eval_steps_per_second": 1.335,
|
| 735 |
+
"step": 750
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"epoch": 1.8864059590316573,
|
| 739 |
+
"grad_norm": 0.11809396743774414,
|
| 740 |
+
"learning_rate": 7.318960725358741e-05,
|
| 741 |
+
"loss": 0.1151,
|
| 742 |
+
"step": 760
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"epoch": 1.9112352576039728,
|
| 746 |
+
"grad_norm": 0.08294913917779922,
|
| 747 |
+
"learning_rate": 7.041938764987297e-05,
|
| 748 |
+
"loss": 0.1075,
|
| 749 |
+
"step": 770
|
| 750 |
+
},
|
| 751 |
+
{
|
| 752 |
+
"epoch": 1.9360645561762881,
|
| 753 |
+
"grad_norm": 0.12175123393535614,
|
| 754 |
+
"learning_rate": 6.767382951500204e-05,
|
| 755 |
+
"loss": 0.1114,
|
| 756 |
+
"step": 780
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"epoch": 1.9360645561762881,
|
| 760 |
+
"eval_loss": 0.1087631806731224,
|
| 761 |
+
"eval_runtime": 63.5302,
|
| 762 |
+
"eval_samples_per_second": 2.676,
|
| 763 |
+
"eval_steps_per_second": 1.338,
|
| 764 |
+
"step": 780
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"epoch": 1.9608938547486034,
|
| 768 |
+
"grad_norm": 0.10169629007577896,
|
| 769 |
+
"learning_rate": 6.495522183121741e-05,
|
| 770 |
+
"loss": 0.119,
|
| 771 |
+
"step": 790
|
| 772 |
+
},
|
| 773 |
+
{
|
| 774 |
+
"epoch": 1.9857231533209188,
|
| 775 |
+
"grad_norm": 0.10031325370073318,
|
| 776 |
+
"learning_rate": 6.226583111206856e-05,
|
| 777 |
+
"loss": 0.1147,
|
| 778 |
+
"step": 800
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"epoch": 2.009931719428926,
|
| 782 |
+
"grad_norm": 0.09207529574632645,
|
| 783 |
+
"learning_rate": 5.960789951281052e-05,
|
| 784 |
+
"loss": 0.1054,
|
| 785 |
+
"step": 810
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"epoch": 2.009931719428926,
|
| 789 |
+
"eval_loss": 0.10779497772455215,
|
| 790 |
+
"eval_runtime": 63.789,
|
| 791 |
+
"eval_samples_per_second": 2.665,
|
| 792 |
+
"eval_steps_per_second": 1.333,
|
| 793 |
+
"step": 810
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 2.0347610180012414,
|
| 797 |
+
"grad_norm": 0.08689288049936295,
|
| 798 |
+
"learning_rate": 5.698364296111056e-05,
|
| 799 |
+
"loss": 0.1124,
|
| 800 |
+
"step": 820
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"epoch": 2.0595903165735567,
|
| 804 |
+
"grad_norm": 0.11001532524824142,
|
| 805 |
+
"learning_rate": 5.43952493096211e-05,
|
| 806 |
+
"loss": 0.1041,
|
| 807 |
+
"step": 830
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"epoch": 2.084419615145872,
|
| 811 |
+
"grad_norm": 0.08535470813512802,
|
| 812 |
+
"learning_rate": 5.184487651195825e-05,
|
| 813 |
+
"loss": 0.1123,
|
| 814 |
+
"step": 840
|
| 815 |
+
},
|
| 816 |
+
{
|
| 817 |
+
"epoch": 2.084419615145872,
|
| 818 |
+
"eval_loss": 0.10820275545120239,
|
| 819 |
+
"eval_runtime": 63.5597,
|
| 820 |
+
"eval_samples_per_second": 2.675,
|
| 821 |
+
"eval_steps_per_second": 1.337,
|
| 822 |
+
"step": 840
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 2.1092489137181873,
|
| 826 |
+
"grad_norm": 0.09453848749399185,
|
| 827 |
+
"learning_rate": 4.933465082360807e-05,
|
| 828 |
+
"loss": 0.1191,
|
| 829 |
+
"step": 850
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 2.1340782122905027,
|
| 833 |
+
"grad_norm": 0.09359566867351532,
|
| 834 |
+
"learning_rate": 4.686666502925908e-05,
|
| 835 |
+
"loss": 0.1116,
|
| 836 |
+
"step": 860
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 2.158907510862818,
|
| 840 |
+
"grad_norm": 0.08426634222269058,
|
| 841 |
+
"learning_rate": 4.444297669803981e-05,
|
| 842 |
+
"loss": 0.111,
|
| 843 |
+
"step": 870
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 2.158907510862818,
|
| 847 |
+
"eval_loss": 0.10807512700557709,
|
| 848 |
+
"eval_runtime": 63.5269,
|
| 849 |
+
"eval_samples_per_second": 2.676,
|
| 850 |
+
"eval_steps_per_second": 1.338,
|
| 851 |
+
"step": 870
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"epoch": 2.1837368094351333,
|
| 855 |
+
"grad_norm": 0.12573853135108948,
|
| 856 |
+
"learning_rate": 4.206560646811545e-05,
|
| 857 |
+
"loss": 0.1177,
|
| 858 |
+
"step": 880
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"epoch": 2.2085661080074486,
|
| 862 |
+
"grad_norm": 0.1112317442893982,
|
| 863 |
+
"learning_rate": 3.973653636207437e-05,
|
| 864 |
+
"loss": 0.099,
|
| 865 |
+
"step": 890
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 2.2333954065797643,
|
| 869 |
+
"grad_norm": 0.11728418618440628,
|
| 870 |
+
"learning_rate": 3.745770813450824e-05,
|
| 871 |
+
"loss": 0.1075,
|
| 872 |
+
"step": 900
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"epoch": 2.2333954065797643,
|
| 876 |
+
"eval_loss": 0.10825176537036896,
|
| 877 |
+
"eval_runtime": 63.6811,
|
| 878 |
+
"eval_samples_per_second": 2.67,
|
| 879 |
+
"eval_steps_per_second": 1.335,
|
| 880 |
+
"step": 900
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"epoch": 2.2582247051520796,
|
| 884 |
+
"grad_norm": 0.09951410442590714,
|
| 885 |
+
"learning_rate": 3.523102165316381e-05,
|
| 886 |
+
"loss": 0.1065,
|
| 887 |
+
"step": 910
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 2.283054003724395,
|
| 891 |
+
"grad_norm": 0.10445831716060638,
|
| 892 |
+
"learning_rate": 3.3058333315016065e-05,
|
| 893 |
+
"loss": 0.1052,
|
| 894 |
+
"step": 920
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 2.3078833022967102,
|
| 898 |
+
"grad_norm": 0.13279516994953156,
|
| 899 |
+
"learning_rate": 3.094145449858285e-05,
|
| 900 |
+
"loss": 0.1101,
|
| 901 |
+
"step": 930
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 2.3078833022967102,
|
| 905 |
+
"eval_loss": 0.10792894661426544,
|
| 906 |
+
"eval_runtime": 63.7332,
|
| 907 |
+
"eval_samples_per_second": 2.667,
|
| 908 |
+
"eval_steps_per_second": 1.334,
|
| 909 |
+
"step": 930
|
| 910 |
+
},
|
| 911 |
+
{
|
| 912 |
+
"epoch": 2.3327126008690255,
|
| 913 |
+
"grad_norm": 0.08349404484033585,
|
| 914 |
+
"learning_rate": 2.8882150053771995e-05,
|
| 915 |
+
"loss": 0.1031,
|
| 916 |
+
"step": 940
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"epoch": 2.357541899441341,
|
| 920 |
+
"grad_norm": 0.11196437478065491,
|
| 921 |
+
"learning_rate": 2.688213683051892e-05,
|
| 922 |
+
"loss": 0.1151,
|
| 923 |
+
"step": 950
|
| 924 |
+
},
|
| 925 |
+
{
|
| 926 |
+
"epoch": 2.382371198013656,
|
| 927 |
+
"grad_norm": 0.1190405786037445,
|
| 928 |
+
"learning_rate": 2.4943082247442585e-05,
|
| 929 |
+
"loss": 0.1034,
|
| 930 |
+
"step": 960
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"epoch": 2.382371198013656,
|
| 934 |
+
"eval_loss": 0.10848245024681091,
|
| 935 |
+
"eval_runtime": 63.7471,
|
| 936 |
+
"eval_samples_per_second": 2.667,
|
| 937 |
+
"eval_steps_per_second": 1.333,
|
| 938 |
+
"step": 960
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"epoch": 2.4072004965859715,
|
| 942 |
+
"grad_norm": 0.14327777922153473,
|
| 943 |
+
"learning_rate": 2.3066602901712108e-05,
|
| 944 |
+
"loss": 0.1093,
|
| 945 |
+
"step": 970
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"epoch": 2.4320297951582868,
|
| 949 |
+
"grad_norm": 0.10319961607456207,
|
| 950 |
+
"learning_rate": 2.1254263221283654e-05,
|
| 951 |
+
"loss": 0.1027,
|
| 952 |
+
"step": 980
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"epoch": 2.456859093730602,
|
| 956 |
+
"grad_norm": 0.11453425884246826,
|
| 957 |
+
"learning_rate": 1.950757416063077e-05,
|
| 958 |
+
"loss": 0.1041,
|
| 959 |
+
"step": 990
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"epoch": 2.456859093730602,
|
| 963 |
+
"eval_loss": 0.10789740085601807,
|
| 964 |
+
"eval_runtime": 63.7392,
|
| 965 |
+
"eval_samples_per_second": 2.667,
|
| 966 |
+
"eval_steps_per_second": 1.334,
|
| 967 |
+
"step": 990
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"epoch": 2.4816883923029174,
|
| 971 |
+
"grad_norm": 0.13892674446105957,
|
| 972 |
+
"learning_rate": 1.7827991941056177e-05,
|
| 973 |
+
"loss": 0.1043,
|
| 974 |
+
"step": 1000
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 2.5065176908752327,
|
| 978 |
+
"grad_norm": 0.11595698446035385,
|
| 979 |
+
"learning_rate": 1.621691683663418e-05,
|
| 980 |
+
"loss": 0.1154,
|
| 981 |
+
"step": 1010
|
| 982 |
+
},
|
| 983 |
+
{
|
| 984 |
+
"epoch": 2.531346989447548,
|
| 985 |
+
"grad_norm": 0.10611863434314728,
|
| 986 |
+
"learning_rate": 1.4675692006797137e-05,
|
| 987 |
+
"loss": 0.1109,
|
| 988 |
+
"step": 1020
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"epoch": 2.531346989447548,
|
| 992 |
+
"eval_loss": 0.10792025178670883,
|
| 993 |
+
"eval_runtime": 63.6053,
|
| 994 |
+
"eval_samples_per_second": 2.673,
|
| 995 |
+
"eval_steps_per_second": 1.336,
|
| 996 |
+
"step": 1020
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"epoch": 2.5561762880198633,
|
| 1000 |
+
"grad_norm": 0.12383992969989777,
|
| 1001 |
+
"learning_rate": 1.3205602376538163e-05,
|
| 1002 |
+
"loss": 0.1161,
|
| 1003 |
+
"step": 1030
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"epoch": 2.5810055865921786,
|
| 1007 |
+
"grad_norm": 0.09889344125986099,
|
| 1008 |
+
"learning_rate": 1.1807873565164506e-05,
|
| 1009 |
+
"loss": 0.1109,
|
| 1010 |
+
"step": 1040
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"epoch": 2.6058348851644944,
|
| 1014 |
+
"grad_norm": 0.11996069550514221,
|
| 1015 |
+
"learning_rate": 1.0483670864493778e-05,
|
| 1016 |
+
"loss": 0.1144,
|
| 1017 |
+
"step": 1050
|
| 1018 |
+
},
|
| 1019 |
+
{
|
| 1020 |
+
"epoch": 2.6058348851644944,
|
| 1021 |
+
"eval_loss": 0.10760737955570221,
|
| 1022 |
+
"eval_runtime": 63.5808,
|
| 1023 |
+
"eval_samples_per_second": 2.674,
|
| 1024 |
+
"eval_steps_per_second": 1.337,
|
| 1025 |
+
"step": 1050
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 2.630664183736809,
|
| 1029 |
+
"grad_norm": 0.09900493919849396,
|
| 1030 |
+
"learning_rate": 9.234098267345958e-06,
|
| 1031 |
+
"loss": 0.1075,
|
| 1032 |
+
"step": 1060
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 2.655493482309125,
|
| 1036 |
+
"grad_norm": 0.14834974706172943,
|
| 1037 |
+
"learning_rate": 8.060197547140347e-06,
|
| 1038 |
+
"loss": 0.1024,
|
| 1039 |
+
"step": 1070
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 2.68032278088144,
|
| 1043 |
+
"grad_norm": 0.08732602745294571,
|
| 1044 |
+
"learning_rate": 6.962947389365071e-06,
|
| 1045 |
+
"loss": 0.1055,
|
| 1046 |
+
"step": 1080
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 2.68032278088144,
|
| 1050 |
+
"eval_loss": 0.1074790507555008,
|
| 1051 |
+
"eval_runtime": 63.5309,
|
| 1052 |
+
"eval_samples_per_second": 2.676,
|
| 1053 |
+
"eval_steps_per_second": 1.338,
|
| 1054 |
+
"step": 1080
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 2.7051520794537556,
|
| 1058 |
+
"grad_norm": 0.13483889400959015,
|
| 1059 |
+
"learning_rate": 5.943262575643238e-06,
|
| 1060 |
+
"loss": 0.1202,
|
| 1061 |
+
"step": 1090
|
| 1062 |
+
},
|
| 1063 |
+
{
|
| 1064 |
+
"epoch": 2.729981378026071,
|
| 1065 |
+
"grad_norm": 0.1085759624838829,
|
| 1066 |
+
"learning_rate": 5.001993221076162e-06,
|
| 1067 |
+
"loss": 0.1121,
|
| 1068 |
+
"step": 1100
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"epoch": 2.754810676598386,
|
| 1072 |
+
"grad_norm": 0.11096607148647308,
|
| 1073 |
+
"learning_rate": 4.139924065499035e-06,
|
| 1074 |
+
"loss": 0.105,
|
| 1075 |
+
"step": 1110
|
| 1076 |
+
},
|
| 1077 |
+
{
|
| 1078 |
+
"epoch": 2.754810676598386,
|
| 1079 |
+
"eval_loss": 0.10723040252923965,
|
| 1080 |
+
"eval_runtime": 63.5635,
|
| 1081 |
+
"eval_samples_per_second": 2.674,
|
| 1082 |
+
"eval_steps_per_second": 1.337,
|
| 1083 |
+
"step": 1110
|
| 1084 |
+
},
|
| 1085 |
+
{
|
| 1086 |
+
"epoch": 2.7796399751707015,
|
| 1087 |
+
"grad_norm": 0.11648862063884735,
|
| 1088 |
+
"learning_rate": 3.3577738192404395e-06,
|
| 1089 |
+
"loss": 0.1035,
|
| 1090 |
+
"step": 1120
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 2.804469273743017,
|
| 1094 |
+
"grad_norm": 0.12449430674314499,
|
| 1095 |
+
"learning_rate": 2.656194563930714e-06,
|
| 1096 |
+
"loss": 0.1079,
|
| 1097 |
+
"step": 1130
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 2.829298572315332,
|
| 1101 |
+
"grad_norm": 0.10689777880907059,
|
| 1102 |
+
"learning_rate": 2.035771208859194e-06,
|
| 1103 |
+
"loss": 0.1053,
|
| 1104 |
+
"step": 1140
|
| 1105 |
+
},
|
| 1106 |
+
{
|
| 1107 |
+
"epoch": 2.829298572315332,
|
| 1108 |
+
"eval_loss": 0.10730743408203125,
|
| 1109 |
+
"eval_runtime": 63.6665,
|
| 1110 |
+
"eval_samples_per_second": 2.67,
|
| 1111 |
+
"eval_steps_per_second": 1.335,
|
| 1112 |
+
"step": 1140
|
| 1113 |
+
},
|
| 1114 |
+
{
|
| 1115 |
+
"epoch": 2.8541278708876474,
|
| 1116 |
+
"grad_norm": 0.12634721398353577,
|
| 1117 |
+
"learning_rate": 1.49702100333291e-06,
|
| 1118 |
+
"loss": 0.1031,
|
| 1119 |
+
"step": 1150
|
| 1120 |
+
},
|
| 1121 |
+
{
|
| 1122 |
+
"epoch": 2.8789571694599627,
|
| 1123 |
+
"grad_norm": 0.135261669754982,
|
| 1124 |
+
"learning_rate": 1.0403931054440374e-06,
|
| 1125 |
+
"loss": 0.1077,
|
| 1126 |
+
"step": 1160
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 2.903786468032278,
|
| 1130 |
+
"grad_norm": 0.11396101117134094,
|
| 1131 |
+
"learning_rate": 6.662682076050031e-07,
|
| 1132 |
+
"loss": 0.0958,
|
| 1133 |
+
"step": 1170
|
| 1134 |
+
},
|
| 1135 |
+
{
|
| 1136 |
+
"epoch": 2.903786468032278,
|
| 1137 |
+
"eval_loss": 0.10724406689405441,
|
| 1138 |
+
"eval_runtime": 63.5911,
|
| 1139 |
+
"eval_samples_per_second": 2.673,
|
| 1140 |
+
"eval_steps_per_second": 1.337,
|
| 1141 |
+
"step": 1170
|
| 1142 |
+
},
|
| 1143 |
+
{
|
| 1144 |
+
"epoch": 2.9286157666045933,
|
| 1145 |
+
"grad_norm": 0.11092764139175415,
|
| 1146 |
+
"learning_rate": 3.7495821916382344e-07,
|
| 1147 |
+
"loss": 0.1165,
|
| 1148 |
+
"step": 1180
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"epoch": 2.9534450651769086,
|
| 1152 |
+
"grad_norm": 0.1551099419593811,
|
| 1153 |
+
"learning_rate": 1.6670600636403687e-07,
|
| 1154 |
+
"loss": 0.0921,
|
| 1155 |
+
"step": 1190
|
| 1156 |
+
},
|
| 1157 |
+
{
|
| 1158 |
+
"epoch": 2.978274363749224,
|
| 1159 |
+
"grad_norm": 0.09738525003194809,
|
| 1160 |
+
"learning_rate": 4.168518986628067e-08,
|
| 1161 |
+
"loss": 0.0971,
|
| 1162 |
+
"step": 1200
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 2.978274363749224,
|
| 1166 |
+
"eval_loss": 0.10730230808258057,
|
| 1167 |
+
"eval_runtime": 63.5023,
|
| 1168 |
+
"eval_samples_per_second": 2.677,
|
| 1169 |
+
"eval_steps_per_second": 1.339,
|
| 1170 |
+
"step": 1200
|
| 1171 |
+
}
|
| 1172 |
+
],
|
| 1173 |
+
"logging_steps": 10,
|
| 1174 |
+
"max_steps": 1209,
|
| 1175 |
+
"num_input_tokens_seen": 0,
|
| 1176 |
+
"num_train_epochs": 3,
|
| 1177 |
+
"save_steps": 100,
|
| 1178 |
+
"stateful_callbacks": {
|
| 1179 |
+
"TrainerControl": {
|
| 1180 |
+
"args": {
|
| 1181 |
+
"should_epoch_stop": false,
|
| 1182 |
+
"should_evaluate": false,
|
| 1183 |
+
"should_log": false,
|
| 1184 |
+
"should_save": true,
|
| 1185 |
+
"should_training_stop": false
|
| 1186 |
+
},
|
| 1187 |
+
"attributes": {}
|
| 1188 |
+
}
|
| 1189 |
+
},
|
| 1190 |
+
"total_flos": 4.413579276227789e+17,
|
| 1191 |
+
"train_batch_size": 2,
|
| 1192 |
+
"trial_name": null,
|
| 1193 |
+
"trial_params": null
|
| 1194 |
+
}
|
checkpoint-1200/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fc3ea75972759b8dc97998faf255102abd18d495e9cbda6fe12118ce09f8515
|
| 3 |
+
size 5777
|
checkpoint-1200/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1209/README.md
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Model Card for Model ID
|
| 7 |
+
|
| 8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## Model Details
|
| 13 |
+
|
| 14 |
+
### Model Description
|
| 15 |
+
|
| 16 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
- **Developed by:** [More Information Needed]
|
| 21 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 22 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 23 |
+
- **Model type:** [More Information Needed]
|
| 24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 25 |
+
- **License:** [More Information Needed]
|
| 26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
+
|
| 28 |
+
### Model Sources [optional]
|
| 29 |
+
|
| 30 |
+
<!-- Provide the basic links for the model. -->
|
| 31 |
+
|
| 32 |
+
- **Repository:** [More Information Needed]
|
| 33 |
+
- **Paper [optional]:** [More Information Needed]
|
| 34 |
+
- **Demo [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
## Uses
|
| 37 |
+
|
| 38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 39 |
+
|
| 40 |
+
### Direct Use
|
| 41 |
+
|
| 42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
### Downstream Use [optional]
|
| 47 |
+
|
| 48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 49 |
+
|
| 50 |
+
[More Information Needed]
|
| 51 |
+
|
| 52 |
+
### Out-of-Scope Use
|
| 53 |
+
|
| 54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 55 |
+
|
| 56 |
+
[More Information Needed]
|
| 57 |
+
|
| 58 |
+
## Bias, Risks, and Limitations
|
| 59 |
+
|
| 60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 61 |
+
|
| 62 |
+
[More Information Needed]
|
| 63 |
+
|
| 64 |
+
### Recommendations
|
| 65 |
+
|
| 66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 67 |
+
|
| 68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 69 |
+
|
| 70 |
+
## How to Get Started with the Model
|
| 71 |
+
|
| 72 |
+
Use the code below to get started with the model.
|
| 73 |
+
|
| 74 |
+
[More Information Needed]
|
| 75 |
+
|
| 76 |
+
## Training Details
|
| 77 |
+
|
| 78 |
+
### Training Data
|
| 79 |
+
|
| 80 |
+
<!-- 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. -->
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
### Training Procedure
|
| 85 |
+
|
| 86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 87 |
+
|
| 88 |
+
#### Preprocessing [optional]
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
#### Training Hyperparameters
|
| 94 |
+
|
| 95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 96 |
+
|
| 97 |
+
#### Speeds, Sizes, Times [optional]
|
| 98 |
+
|
| 99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 100 |
+
|
| 101 |
+
[More Information Needed]
|
| 102 |
+
|
| 103 |
+
## Evaluation
|
| 104 |
+
|
| 105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 106 |
+
|
| 107 |
+
### Testing Data, Factors & Metrics
|
| 108 |
+
|
| 109 |
+
#### Testing Data
|
| 110 |
+
|
| 111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 112 |
+
|
| 113 |
+
[More Information Needed]
|
| 114 |
+
|
| 115 |
+
#### Factors
|
| 116 |
+
|
| 117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 118 |
+
|
| 119 |
+
[More Information Needed]
|
| 120 |
+
|
| 121 |
+
#### Metrics
|
| 122 |
+
|
| 123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 124 |
+
|
| 125 |
+
[More Information Needed]
|
| 126 |
+
|
| 127 |
+
### Results
|
| 128 |
+
|
| 129 |
+
[More Information Needed]
|
| 130 |
+
|
| 131 |
+
#### Summary
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
## Model Examination [optional]
|
| 136 |
+
|
| 137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 138 |
+
|
| 139 |
+
[More Information Needed]
|
| 140 |
+
|
| 141 |
+
## Environmental Impact
|
| 142 |
+
|
| 143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 144 |
+
|
| 145 |
+
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).
|
| 146 |
+
|
| 147 |
+
- **Hardware Type:** [More Information Needed]
|
| 148 |
+
- **Hours used:** [More Information Needed]
|
| 149 |
+
- **Cloud Provider:** [More Information Needed]
|
| 150 |
+
- **Compute Region:** [More Information Needed]
|
| 151 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 152 |
+
|
| 153 |
+
## Technical Specifications [optional]
|
| 154 |
+
|
| 155 |
+
### Model Architecture and Objective
|
| 156 |
+
|
| 157 |
+
[More Information Needed]
|
| 158 |
+
|
| 159 |
+
### Compute Infrastructure
|
| 160 |
+
|
| 161 |
+
[More Information Needed]
|
| 162 |
+
|
| 163 |
+
#### Hardware
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
#### Software
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
## Citation [optional]
|
| 172 |
+
|
| 173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 174 |
+
|
| 175 |
+
**BibTeX:**
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
**APA:**
|
| 180 |
+
|
| 181 |
+
[More Information Needed]
|
| 182 |
+
|
| 183 |
+
## Glossary [optional]
|
| 184 |
+
|
| 185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 186 |
+
|
| 187 |
+
[More Information Needed]
|
| 188 |
+
|
| 189 |
+
## More Information [optional]
|
| 190 |
+
|
| 191 |
+
[More Information Needed]
|
| 192 |
+
|
| 193 |
+
## Model Card Authors [optional]
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## Model Card Contact
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
### Framework versions
|
| 201 |
+
|
| 202 |
+
- PEFT 0.13.2
|
checkpoint-1209/adapter_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": {
|
| 4 |
+
"base_model_class": "Qwen2ForCausalLM",
|
| 5 |
+
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 6 |
+
"unsloth_fixed": true
|
| 7 |
+
},
|
| 8 |
+
"base_model_name_or_path": "unsloth/Qwen2.5-7B-Instruct",
|
| 9 |
+
"bias": "none",
|
| 10 |
+
"fan_in_fan_out": false,
|
| 11 |
+
"inference_mode": true,
|
| 12 |
+
"init_lora_weights": true,
|
| 13 |
+
"layer_replication": null,
|
| 14 |
+
"layers_pattern": null,
|
| 15 |
+
"layers_to_transform": null,
|
| 16 |
+
"loftq_config": {},
|
| 17 |
+
"lora_alpha": 128,
|
| 18 |
+
"lora_dropout": 0.0,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 64,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"v_proj",
|
| 28 |
+
"down_proj",
|
| 29 |
+
"q_proj",
|
| 30 |
+
"gate_proj",
|
| 31 |
+
"o_proj",
|
| 32 |
+
"up_proj",
|
| 33 |
+
"k_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"use_dora": false,
|
| 37 |
+
"use_rslora": false
|
| 38 |
+
}
|
checkpoint-1209/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5d609ec4305a50e10693fdc5c0f4f74f5974b408a472a63a0e29ced093f59e9
|
| 3 |
+
size 645975704
|
checkpoint-1209/added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
checkpoint-1209/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 %}
|
checkpoint-1209/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1209/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f96f0a29a9f073f0292c01f02b948f313f579e585a47a56effc2bda46e7f990
|
| 3 |
+
size 1292182139
|
checkpoint-1209/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a391d68393a9b12fcd7cd2dd5b614c1d3918af5767128296916cb37d2d8485bf
|
| 3 |
+
size 14645
|
checkpoint-1209/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74ca2a4b69e015220d60276cfac87721f2d90f53e75cd915ea3a21d4b56ffb30
|
| 3 |
+
size 1465
|
checkpoint-1209/special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|vision_pad|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
checkpoint-1209/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
checkpoint-1209/tokenizer_config.json
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 32768,
|
| 203 |
+
"pad_token": "<|vision_pad|>",
|
| 204 |
+
"padding_side": "right",
|
| 205 |
+
"split_special_tokens": false,
|
| 206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 207 |
+
"unk_token": null
|
| 208 |
+
}
|
checkpoint-1209/trainer_state.json
ADDED
|
@@ -0,0 +1,1194 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 30,
|
| 7 |
+
"global_step": 1209,
|
| 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.024829298572315334,
|
| 14 |
+
"grad_norm": 2.199962615966797,
|
| 15 |
+
"learning_rate": 1.487603305785124e-05,
|
| 16 |
+
"loss": 1.2101,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.04965859714463067,
|
| 21 |
+
"grad_norm": 0.5984658598899841,
|
| 22 |
+
"learning_rate": 3.1404958677685955e-05,
|
| 23 |
+
"loss": 0.6936,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.074487895716946,
|
| 28 |
+
"grad_norm": 0.6005842089653015,
|
| 29 |
+
"learning_rate": 4.793388429752066e-05,
|
| 30 |
+
"loss": 0.5252,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.074487895716946,
|
| 35 |
+
"eval_loss": 0.4523814916610718,
|
| 36 |
+
"eval_runtime": 63.8486,
|
| 37 |
+
"eval_samples_per_second": 2.663,
|
| 38 |
+
"eval_steps_per_second": 1.331,
|
| 39 |
+
"step": 30
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"epoch": 0.09931719428926133,
|
| 43 |
+
"grad_norm": 0.5528084635734558,
|
| 44 |
+
"learning_rate": 6.446280991735537e-05,
|
| 45 |
+
"loss": 0.3847,
|
| 46 |
+
"step": 40
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"epoch": 0.12414649286157665,
|
| 50 |
+
"grad_norm": 0.7472060322761536,
|
| 51 |
+
"learning_rate": 8.099173553719009e-05,
|
| 52 |
+
"loss": 0.3113,
|
| 53 |
+
"step": 50
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"epoch": 0.148975791433892,
|
| 57 |
+
"grad_norm": 0.5087178349494934,
|
| 58 |
+
"learning_rate": 9.75206611570248e-05,
|
| 59 |
+
"loss": 0.2469,
|
| 60 |
+
"step": 60
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"epoch": 0.148975791433892,
|
| 64 |
+
"eval_loss": 0.2289326786994934,
|
| 65 |
+
"eval_runtime": 63.4197,
|
| 66 |
+
"eval_samples_per_second": 2.681,
|
| 67 |
+
"eval_steps_per_second": 1.34,
|
| 68 |
+
"step": 60
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"epoch": 0.17380509000620734,
|
| 72 |
+
"grad_norm": 0.5471166372299194,
|
| 73 |
+
"learning_rate": 0.0001140495867768595,
|
| 74 |
+
"loss": 0.2153,
|
| 75 |
+
"step": 70
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"epoch": 0.19863438857852267,
|
| 79 |
+
"grad_norm": 0.6101455688476562,
|
| 80 |
+
"learning_rate": 0.00013057851239669423,
|
| 81 |
+
"loss": 0.1896,
|
| 82 |
+
"step": 80
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"epoch": 0.22346368715083798,
|
| 86 |
+
"grad_norm": 0.4914955198764801,
|
| 87 |
+
"learning_rate": 0.00014710743801652894,
|
| 88 |
+
"loss": 0.1668,
|
| 89 |
+
"step": 90
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"epoch": 0.22346368715083798,
|
| 93 |
+
"eval_loss": 0.16067302227020264,
|
| 94 |
+
"eval_runtime": 63.2227,
|
| 95 |
+
"eval_samples_per_second": 2.689,
|
| 96 |
+
"eval_steps_per_second": 1.344,
|
| 97 |
+
"step": 90
|
| 98 |
+
},
|
| 99 |
+
{
|
| 100 |
+
"epoch": 0.2482929857231533,
|
| 101 |
+
"grad_norm": 0.577325701713562,
|
| 102 |
+
"learning_rate": 0.00016363636363636366,
|
| 103 |
+
"loss": 0.1684,
|
| 104 |
+
"step": 100
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"epoch": 0.27312228429546864,
|
| 108 |
+
"grad_norm": 0.670930027961731,
|
| 109 |
+
"learning_rate": 0.00018016528925619835,
|
| 110 |
+
"loss": 0.1403,
|
| 111 |
+
"step": 110
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"epoch": 0.297951582867784,
|
| 115 |
+
"grad_norm": 0.3254905343055725,
|
| 116 |
+
"learning_rate": 0.0001966942148760331,
|
| 117 |
+
"loss": 0.1523,
|
| 118 |
+
"step": 120
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"epoch": 0.297951582867784,
|
| 122 |
+
"eval_loss": 0.14328794181346893,
|
| 123 |
+
"eval_runtime": 63.2048,
|
| 124 |
+
"eval_samples_per_second": 2.69,
|
| 125 |
+
"eval_steps_per_second": 1.345,
|
| 126 |
+
"step": 120
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"epoch": 0.3227808814400993,
|
| 130 |
+
"grad_norm": 0.3248271644115448,
|
| 131 |
+
"learning_rate": 0.00019997332081116373,
|
| 132 |
+
"loss": 0.1476,
|
| 133 |
+
"step": 130
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"epoch": 0.34761018001241467,
|
| 137 |
+
"grad_norm": 0.2937372028827667,
|
| 138 |
+
"learning_rate": 0.00019986496100395275,
|
| 139 |
+
"loss": 0.1527,
|
| 140 |
+
"step": 140
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"epoch": 0.37243947858473,
|
| 144 |
+
"grad_norm": 0.2765355408191681,
|
| 145 |
+
"learning_rate": 0.000199673343399533,
|
| 146 |
+
"loss": 0.1408,
|
| 147 |
+
"step": 150
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"epoch": 0.37243947858473,
|
| 151 |
+
"eval_loss": 0.1354692131280899,
|
| 152 |
+
"eval_runtime": 63.3386,
|
| 153 |
+
"eval_samples_per_second": 2.684,
|
| 154 |
+
"eval_steps_per_second": 1.342,
|
| 155 |
+
"step": 150
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"epoch": 0.39726877715704534,
|
| 159 |
+
"grad_norm": 0.3119029998779297,
|
| 160 |
+
"learning_rate": 0.00019939862775022893,
|
| 161 |
+
"loss": 0.1447,
|
| 162 |
+
"step": 160
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"epoch": 0.42209807572936064,
|
| 166 |
+
"grad_norm": 0.40628781914711,
|
| 167 |
+
"learning_rate": 0.0001990410430875205,
|
| 168 |
+
"loss": 0.1394,
|
| 169 |
+
"step": 170
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"epoch": 0.44692737430167595,
|
| 173 |
+
"grad_norm": 0.3151319622993469,
|
| 174 |
+
"learning_rate": 0.00019860088753109896,
|
| 175 |
+
"loss": 0.1353,
|
| 176 |
+
"step": 180
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"epoch": 0.44692737430167595,
|
| 180 |
+
"eval_loss": 0.13339394330978394,
|
| 181 |
+
"eval_runtime": 63.468,
|
| 182 |
+
"eval_samples_per_second": 2.679,
|
| 183 |
+
"eval_steps_per_second": 1.339,
|
| 184 |
+
"step": 180
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"epoch": 0.4717566728739913,
|
| 188 |
+
"grad_norm": 0.2475433200597763,
|
| 189 |
+
"learning_rate": 0.00019807852804032305,
|
| 190 |
+
"loss": 0.1333,
|
| 191 |
+
"step": 190
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"epoch": 0.4965859714463066,
|
| 195 |
+
"grad_norm": 0.23864243924617767,
|
| 196 |
+
"learning_rate": 0.00019747440010828383,
|
| 197 |
+
"loss": 0.1266,
|
| 198 |
+
"step": 200
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"epoch": 0.521415270018622,
|
| 202 |
+
"grad_norm": 0.45053115487098694,
|
| 203 |
+
"learning_rate": 0.00019678900739873226,
|
| 204 |
+
"loss": 0.1358,
|
| 205 |
+
"step": 210
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.521415270018622,
|
| 209 |
+
"eval_loss": 0.12399247288703918,
|
| 210 |
+
"eval_runtime": 63.2719,
|
| 211 |
+
"eval_samples_per_second": 2.687,
|
| 212 |
+
"eval_steps_per_second": 1.343,
|
| 213 |
+
"step": 210
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 0.5462445685909373,
|
| 217 |
+
"grad_norm": 0.2610243856906891,
|
| 218 |
+
"learning_rate": 0.000196022921326173,
|
| 219 |
+
"loss": 0.1308,
|
| 220 |
+
"step": 220
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.5710738671632526,
|
| 224 |
+
"grad_norm": 0.24870441854000092,
|
| 225 |
+
"learning_rate": 0.00019517678057947384,
|
| 226 |
+
"loss": 0.1341,
|
| 227 |
+
"step": 230
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"epoch": 0.595903165735568,
|
| 231 |
+
"grad_norm": 0.21340686082839966,
|
| 232 |
+
"learning_rate": 0.00019425129058938832,
|
| 233 |
+
"loss": 0.134,
|
| 234 |
+
"step": 240
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"epoch": 0.595903165735568,
|
| 238 |
+
"eval_loss": 0.12239952385425568,
|
| 239 |
+
"eval_runtime": 63.3162,
|
| 240 |
+
"eval_samples_per_second": 2.685,
|
| 241 |
+
"eval_steps_per_second": 1.342,
|
| 242 |
+
"step": 240
|
| 243 |
+
},
|
| 244 |
+
{
|
| 245 |
+
"epoch": 0.6207324643078833,
|
| 246 |
+
"grad_norm": 0.26844245195388794,
|
| 247 |
+
"learning_rate": 0.00019324722294043558,
|
| 248 |
+
"loss": 0.1266,
|
| 249 |
+
"step": 250
|
| 250 |
+
},
|
| 251 |
+
{
|
| 252 |
+
"epoch": 0.6455617628801986,
|
| 253 |
+
"grad_norm": 0.1732800155878067,
|
| 254 |
+
"learning_rate": 0.00019216541472762735,
|
| 255 |
+
"loss": 0.1316,
|
| 256 |
+
"step": 260
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"epoch": 0.6703910614525139,
|
| 260 |
+
"grad_norm": 0.15882068872451782,
|
| 261 |
+
"learning_rate": 0.0001910067678585786,
|
| 262 |
+
"loss": 0.1228,
|
| 263 |
+
"step": 270
|
| 264 |
+
},
|
| 265 |
+
{
|
| 266 |
+
"epoch": 0.6703910614525139,
|
| 267 |
+
"eval_loss": 0.1194252222776413,
|
| 268 |
+
"eval_runtime": 63.2871,
|
| 269 |
+
"eval_samples_per_second": 2.686,
|
| 270 |
+
"eval_steps_per_second": 1.343,
|
| 271 |
+
"step": 270
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"epoch": 0.6952203600248293,
|
| 275 |
+
"grad_norm": 0.2936108708381653,
|
| 276 |
+
"learning_rate": 0.0001897722483015838,
|
| 277 |
+
"loss": 0.1161,
|
| 278 |
+
"step": 280
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"epoch": 0.7200496585971446,
|
| 282 |
+
"grad_norm": 0.14567315578460693,
|
| 283 |
+
"learning_rate": 0.00018846288528028555,
|
| 284 |
+
"loss": 0.126,
|
| 285 |
+
"step": 290
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 0.74487895716946,
|
| 289 |
+
"grad_norm": 0.2370811104774475,
|
| 290 |
+
"learning_rate": 0.0001870797704156067,
|
| 291 |
+
"loss": 0.1283,
|
| 292 |
+
"step": 300
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"epoch": 0.74487895716946,
|
| 296 |
+
"eval_loss": 0.1176798865199089,
|
| 297 |
+
"eval_runtime": 63.3181,
|
| 298 |
+
"eval_samples_per_second": 2.685,
|
| 299 |
+
"eval_steps_per_second": 1.342,
|
| 300 |
+
"step": 300
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 0.7697082557417753,
|
| 304 |
+
"grad_norm": 0.16372860968112946,
|
| 305 |
+
"learning_rate": 0.00018562405681566216,
|
| 306 |
+
"loss": 0.1357,
|
| 307 |
+
"step": 310
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 0.7945375543140907,
|
| 311 |
+
"grad_norm": 0.35256749391555786,
|
| 312 |
+
"learning_rate": 0.00018409695811440796,
|
| 313 |
+
"loss": 0.128,
|
| 314 |
+
"step": 320
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 0.819366852886406,
|
| 318 |
+
"grad_norm": 0.16305528581142426,
|
| 319 |
+
"learning_rate": 0.00018249974745983023,
|
| 320 |
+
"loss": 0.1224,
|
| 321 |
+
"step": 330
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 0.819366852886406,
|
| 325 |
+
"eval_loss": 0.11605502665042877,
|
| 326 |
+
"eval_runtime": 63.296,
|
| 327 |
+
"eval_samples_per_second": 2.686,
|
| 328 |
+
"eval_steps_per_second": 1.343,
|
| 329 |
+
"step": 330
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 0.8441961514587213,
|
| 333 |
+
"grad_norm": 0.14337457716464996,
|
| 334 |
+
"learning_rate": 0.00018083375645251684,
|
| 335 |
+
"loss": 0.1287,
|
| 336 |
+
"step": 340
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"epoch": 0.8690254500310366,
|
| 340 |
+
"grad_norm": 0.23693013191223145,
|
| 341 |
+
"learning_rate": 0.00017910037403549693,
|
| 342 |
+
"loss": 0.1298,
|
| 343 |
+
"step": 350
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 0.8938547486033519,
|
| 347 |
+
"grad_norm": 0.11969780921936035,
|
| 348 |
+
"learning_rate": 0.0001773010453362737,
|
| 349 |
+
"loss": 0.1175,
|
| 350 |
+
"step": 360
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 0.8938547486033519,
|
| 354 |
+
"eval_loss": 0.11470940709114075,
|
| 355 |
+
"eval_runtime": 63.3643,
|
| 356 |
+
"eval_samples_per_second": 2.683,
|
| 357 |
+
"eval_steps_per_second": 1.341,
|
| 358 |
+
"step": 360
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"epoch": 0.9186840471756673,
|
| 362 |
+
"grad_norm": 0.11961532384157181,
|
| 363 |
+
"learning_rate": 0.0001754372704620164,
|
| 364 |
+
"loss": 0.1299,
|
| 365 |
+
"step": 370
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"epoch": 0.9435133457479826,
|
| 369 |
+
"grad_norm": 0.14891605079174042,
|
| 370 |
+
"learning_rate": 0.00017351060324891502,
|
| 371 |
+
"loss": 0.1266,
|
| 372 |
+
"step": 380
|
| 373 |
+
},
|
| 374 |
+
{
|
| 375 |
+
"epoch": 0.9683426443202979,
|
| 376 |
+
"grad_norm": 0.12348289042711258,
|
| 377 |
+
"learning_rate": 0.00017152264996674136,
|
| 378 |
+
"loss": 0.1283,
|
| 379 |
+
"step": 390
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"epoch": 0.9683426443202979,
|
| 383 |
+
"eval_loss": 0.11494524031877518,
|
| 384 |
+
"eval_runtime": 63.3601,
|
| 385 |
+
"eval_samples_per_second": 2.683,
|
| 386 |
+
"eval_steps_per_second": 1.342,
|
| 387 |
+
"step": 390
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 0.9931719428926132,
|
| 391 |
+
"grad_norm": 0.21074527502059937,
|
| 392 |
+
"learning_rate": 0.00016947506797969562,
|
| 393 |
+
"loss": 0.114,
|
| 394 |
+
"step": 400
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"epoch": 1.0173805090006207,
|
| 398 |
+
"grad_norm": 0.2929309606552124,
|
| 399 |
+
"learning_rate": 0.00016736956436465573,
|
| 400 |
+
"loss": 0.1253,
|
| 401 |
+
"step": 410
|
| 402 |
+
},
|
| 403 |
+
{
|
| 404 |
+
"epoch": 1.042209807572936,
|
| 405 |
+
"grad_norm": 0.15592433512210846,
|
| 406 |
+
"learning_rate": 0.00016520789448798087,
|
| 407 |
+
"loss": 0.1125,
|
| 408 |
+
"step": 420
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"epoch": 1.042209807572936,
|
| 412 |
+
"eval_loss": 0.1184433102607727,
|
| 413 |
+
"eval_runtime": 63.5387,
|
| 414 |
+
"eval_samples_per_second": 2.676,
|
| 415 |
+
"eval_steps_per_second": 1.338,
|
| 416 |
+
"step": 420
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"epoch": 1.0670391061452513,
|
| 420 |
+
"grad_norm": 0.22566121816635132,
|
| 421 |
+
"learning_rate": 0.00016299186054205577,
|
| 422 |
+
"loss": 0.1208,
|
| 423 |
+
"step": 430
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 1.0918684047175666,
|
| 427 |
+
"grad_norm": 0.22597947716712952,
|
| 428 |
+
"learning_rate": 0.00016072331004279614,
|
| 429 |
+
"loss": 0.1073,
|
| 430 |
+
"step": 440
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.1166977032898822,
|
| 434 |
+
"grad_norm": 0.2692144811153412,
|
| 435 |
+
"learning_rate": 0.00015840413428936767,
|
| 436 |
+
"loss": 0.111,
|
| 437 |
+
"step": 450
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"epoch": 1.1166977032898822,
|
| 441 |
+
"eval_loss": 0.11594453454017639,
|
| 442 |
+
"eval_runtime": 63.5354,
|
| 443 |
+
"eval_samples_per_second": 2.676,
|
| 444 |
+
"eval_steps_per_second": 1.338,
|
| 445 |
+
"step": 450
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 1.1415270018621975,
|
| 449 |
+
"grad_norm": 0.11959823220968246,
|
| 450 |
+
"learning_rate": 0.00015603626678740263,
|
| 451 |
+
"loss": 0.1177,
|
| 452 |
+
"step": 460
|
| 453 |
+
},
|
| 454 |
+
{
|
| 455 |
+
"epoch": 1.1663563004345128,
|
| 456 |
+
"grad_norm": 0.16115300357341766,
|
| 457 |
+
"learning_rate": 0.000153621681637029,
|
| 458 |
+
"loss": 0.1187,
|
| 459 |
+
"step": 470
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"epoch": 1.191185599006828,
|
| 463 |
+
"grad_norm": 0.12221992760896683,
|
| 464 |
+
"learning_rate": 0.00015116239188705556,
|
| 465 |
+
"loss": 0.1208,
|
| 466 |
+
"step": 480
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"epoch": 1.191185599006828,
|
| 470 |
+
"eval_loss": 0.11457835137844086,
|
| 471 |
+
"eval_runtime": 63.6214,
|
| 472 |
+
"eval_samples_per_second": 2.672,
|
| 473 |
+
"eval_steps_per_second": 1.336,
|
| 474 |
+
"step": 480
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"epoch": 1.2160148975791434,
|
| 478 |
+
"grad_norm": 0.14025907218456268,
|
| 479 |
+
"learning_rate": 0.00014866044785668563,
|
| 480 |
+
"loss": 0.1252,
|
| 481 |
+
"step": 490
|
| 482 |
+
},
|
| 483 |
+
{
|
| 484 |
+
"epoch": 1.2408441961514587,
|
| 485 |
+
"grad_norm": 0.2606123387813568,
|
| 486 |
+
"learning_rate": 0.00014611793542615803,
|
| 487 |
+
"loss": 0.1177,
|
| 488 |
+
"step": 500
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"epoch": 1.265673494723774,
|
| 492 |
+
"grad_norm": 0.1650104820728302,
|
| 493 |
+
"learning_rate": 0.00014353697429774084,
|
| 494 |
+
"loss": 0.1182,
|
| 495 |
+
"step": 510
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"epoch": 1.265673494723774,
|
| 499 |
+
"eval_loss": 0.11401313543319702,
|
| 500 |
+
"eval_runtime": 63.6832,
|
| 501 |
+
"eval_samples_per_second": 2.669,
|
| 502 |
+
"eval_steps_per_second": 1.335,
|
| 503 |
+
"step": 510
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"epoch": 1.2905027932960893,
|
| 507 |
+
"grad_norm": 0.2529577910900116,
|
| 508 |
+
"learning_rate": 0.0001409197162285275,
|
| 509 |
+
"loss": 0.1136,
|
| 510 |
+
"step": 520
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"epoch": 1.3153320918684046,
|
| 514 |
+
"grad_norm": 0.10269193351268768,
|
| 515 |
+
"learning_rate": 0.000138268343236509,
|
| 516 |
+
"loss": 0.1163,
|
| 517 |
+
"step": 530
|
| 518 |
+
},
|
| 519 |
+
{
|
| 520 |
+
"epoch": 1.34016139044072,
|
| 521 |
+
"grad_norm": 0.13571563363075256,
|
| 522 |
+
"learning_rate": 0.00013558506578141682,
|
| 523 |
+
"loss": 0.1251,
|
| 524 |
+
"step": 540
|
| 525 |
+
},
|
| 526 |
+
{
|
| 527 |
+
"epoch": 1.34016139044072,
|
| 528 |
+
"eval_loss": 0.1113414540886879,
|
| 529 |
+
"eval_runtime": 63.575,
|
| 530 |
+
"eval_samples_per_second": 2.674,
|
| 531 |
+
"eval_steps_per_second": 1.337,
|
| 532 |
+
"step": 540
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"epoch": 1.3649906890130354,
|
| 536 |
+
"grad_norm": 0.19955532252788544,
|
| 537 |
+
"learning_rate": 0.00013287212092185464,
|
| 538 |
+
"loss": 0.1091,
|
| 539 |
+
"step": 550
|
| 540 |
+
},
|
| 541 |
+
{
|
| 542 |
+
"epoch": 1.3898199875853507,
|
| 543 |
+
"grad_norm": 0.134247288107872,
|
| 544 |
+
"learning_rate": 0.00013013177045025374,
|
| 545 |
+
"loss": 0.1168,
|
| 546 |
+
"step": 560
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"epoch": 1.414649286157666,
|
| 550 |
+
"grad_norm": 0.18950553238391876,
|
| 551 |
+
"learning_rate": 0.0001273662990072083,
|
| 552 |
+
"loss": 0.1226,
|
| 553 |
+
"step": 570
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"epoch": 1.414649286157666,
|
| 557 |
+
"eval_loss": 0.11281875520944595,
|
| 558 |
+
"eval_runtime": 63.627,
|
| 559 |
+
"eval_samples_per_second": 2.672,
|
| 560 |
+
"eval_steps_per_second": 1.336,
|
| 561 |
+
"step": 570
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"epoch": 1.4394785847299814,
|
| 565 |
+
"grad_norm": 0.10673321038484573,
|
| 566 |
+
"learning_rate": 0.00012457801217676182,
|
| 567 |
+
"loss": 0.1217,
|
| 568 |
+
"step": 580
|
| 569 |
+
},
|
| 570 |
+
{
|
| 571 |
+
"epoch": 1.4643078833022967,
|
| 572 |
+
"grad_norm": 0.13143132627010345,
|
| 573 |
+
"learning_rate": 0.00012176923456423284,
|
| 574 |
+
"loss": 0.1128,
|
| 575 |
+
"step": 590
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"epoch": 1.489137181874612,
|
| 579 |
+
"grad_norm": 0.14993837475776672,
|
| 580 |
+
"learning_rate": 0.00011894230785818284,
|
| 581 |
+
"loss": 0.1151,
|
| 582 |
+
"step": 600
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"epoch": 1.489137181874612,
|
| 586 |
+
"eval_loss": 0.10988790541887283,
|
| 587 |
+
"eval_runtime": 63.6526,
|
| 588 |
+
"eval_samples_per_second": 2.671,
|
| 589 |
+
"eval_steps_per_second": 1.335,
|
| 590 |
+
"step": 600
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 1.5139664804469275,
|
| 594 |
+
"grad_norm": 0.11081644892692566,
|
| 595 |
+
"learning_rate": 0.00011609958887814129,
|
| 596 |
+
"loss": 0.1224,
|
| 597 |
+
"step": 610
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 1.5387957790192428,
|
| 601 |
+
"grad_norm": 0.08948010951280594,
|
| 602 |
+
"learning_rate": 0.00011324344760971671,
|
| 603 |
+
"loss": 0.1182,
|
| 604 |
+
"step": 620
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 1.563625077591558,
|
| 608 |
+
"grad_norm": 0.11353158205747604,
|
| 609 |
+
"learning_rate": 0.00011037626522873019,
|
| 610 |
+
"loss": 0.1288,
|
| 611 |
+
"step": 630
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 1.563625077591558,
|
| 615 |
+
"eval_loss": 0.10913822054862976,
|
| 616 |
+
"eval_runtime": 63.4574,
|
| 617 |
+
"eval_samples_per_second": 2.679,
|
| 618 |
+
"eval_steps_per_second": 1.339,
|
| 619 |
+
"step": 630
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 1.5884543761638734,
|
| 623 |
+
"grad_norm": 0.1256856471300125,
|
| 624 |
+
"learning_rate": 0.00010750043211602045,
|
| 625 |
+
"loss": 0.115,
|
| 626 |
+
"step": 640
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 1.6132836747361887,
|
| 630 |
+
"grad_norm": 0.13873563706874847,
|
| 631 |
+
"learning_rate": 0.00010461834586457398,
|
| 632 |
+
"loss": 0.1165,
|
| 633 |
+
"step": 650
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 1.638112973308504,
|
| 637 |
+
"grad_norm": 0.08335566520690918,
|
| 638 |
+
"learning_rate": 0.00010173240928064285,
|
| 639 |
+
"loss": 0.0987,
|
| 640 |
+
"step": 660
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 1.638112973308504,
|
| 644 |
+
"eval_loss": 0.10997913777828217,
|
| 645 |
+
"eval_runtime": 63.5501,
|
| 646 |
+
"eval_samples_per_second": 2.675,
|
| 647 |
+
"eval_steps_per_second": 1.338,
|
| 648 |
+
"step": 660
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 1.6629422718808193,
|
| 652 |
+
"grad_norm": 0.0818580761551857,
|
| 653 |
+
"learning_rate": 9.884502838051595e-05,
|
| 654 |
+
"loss": 0.1156,
|
| 655 |
+
"step": 670
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 1.6877715704531346,
|
| 659 |
+
"grad_norm": 0.2908185124397278,
|
| 660 |
+
"learning_rate": 9.595861038461398e-05,
|
| 661 |
+
"loss": 0.1141,
|
| 662 |
+
"step": 680
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 1.71260086902545,
|
| 666 |
+
"grad_norm": 0.12958967685699463,
|
| 667 |
+
"learning_rate": 9.307556171058085e-05,
|
| 668 |
+
"loss": 0.1173,
|
| 669 |
+
"step": 690
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 1.71260086902545,
|
| 673 |
+
"eval_loss": 0.10946697741746902,
|
| 674 |
+
"eval_runtime": 63.6108,
|
| 675 |
+
"eval_samples_per_second": 2.673,
|
| 676 |
+
"eval_steps_per_second": 1.336,
|
| 677 |
+
"step": 690
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"epoch": 1.7374301675977653,
|
| 681 |
+
"grad_norm": 0.0967235118150711,
|
| 682 |
+
"learning_rate": 9.019828596704394e-05,
|
| 683 |
+
"loss": 0.1213,
|
| 684 |
+
"step": 700
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"epoch": 1.7622594661700806,
|
| 688 |
+
"grad_norm": 0.12068717181682587,
|
| 689 |
+
"learning_rate": 8.732918194971664e-05,
|
| 690 |
+
"loss": 0.1138,
|
| 691 |
+
"step": 710
|
| 692 |
+
},
|
| 693 |
+
{
|
| 694 |
+
"epoch": 1.7870887647423959,
|
| 695 |
+
"grad_norm": 0.09991966933012009,
|
| 696 |
+
"learning_rate": 8.447064164151304e-05,
|
| 697 |
+
"loss": 0.1274,
|
| 698 |
+
"step": 720
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"epoch": 1.7870887647423959,
|
| 702 |
+
"eval_loss": 0.10868000984191895,
|
| 703 |
+
"eval_runtime": 63.549,
|
| 704 |
+
"eval_samples_per_second": 2.675,
|
| 705 |
+
"eval_steps_per_second": 1.338,
|
| 706 |
+
"step": 720
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"epoch": 1.8119180633147114,
|
| 710 |
+
"grad_norm": 0.11946102976799011,
|
| 711 |
+
"learning_rate": 8.162504821834295e-05,
|
| 712 |
+
"loss": 0.1142,
|
| 713 |
+
"step": 730
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"epoch": 1.8367473618870267,
|
| 717 |
+
"grad_norm": 0.09517239034175873,
|
| 718 |
+
"learning_rate": 7.879477406224894e-05,
|
| 719 |
+
"loss": 0.117,
|
| 720 |
+
"step": 740
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"epoch": 1.861576660459342,
|
| 724 |
+
"grad_norm": 0.10799138993024826,
|
| 725 |
+
"learning_rate": 7.598217878354237e-05,
|
| 726 |
+
"loss": 0.1099,
|
| 727 |
+
"step": 750
|
| 728 |
+
},
|
| 729 |
+
{
|
| 730 |
+
"epoch": 1.861576660459342,
|
| 731 |
+
"eval_loss": 0.10897944122552872,
|
| 732 |
+
"eval_runtime": 63.6832,
|
| 733 |
+
"eval_samples_per_second": 2.669,
|
| 734 |
+
"eval_steps_per_second": 1.335,
|
| 735 |
+
"step": 750
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"epoch": 1.8864059590316573,
|
| 739 |
+
"grad_norm": 0.11809396743774414,
|
| 740 |
+
"learning_rate": 7.318960725358741e-05,
|
| 741 |
+
"loss": 0.1151,
|
| 742 |
+
"step": 760
|
| 743 |
+
},
|
| 744 |
+
{
|
| 745 |
+
"epoch": 1.9112352576039728,
|
| 746 |
+
"grad_norm": 0.08294913917779922,
|
| 747 |
+
"learning_rate": 7.041938764987297e-05,
|
| 748 |
+
"loss": 0.1075,
|
| 749 |
+
"step": 770
|
| 750 |
+
},
|
| 751 |
+
{
|
| 752 |
+
"epoch": 1.9360645561762881,
|
| 753 |
+
"grad_norm": 0.12175123393535614,
|
| 754 |
+
"learning_rate": 6.767382951500204e-05,
|
| 755 |
+
"loss": 0.1114,
|
| 756 |
+
"step": 780
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"epoch": 1.9360645561762881,
|
| 760 |
+
"eval_loss": 0.1087631806731224,
|
| 761 |
+
"eval_runtime": 63.5302,
|
| 762 |
+
"eval_samples_per_second": 2.676,
|
| 763 |
+
"eval_steps_per_second": 1.338,
|
| 764 |
+
"step": 780
|
| 765 |
+
},
|
| 766 |
+
{
|
| 767 |
+
"epoch": 1.9608938547486034,
|
| 768 |
+
"grad_norm": 0.10169629007577896,
|
| 769 |
+
"learning_rate": 6.495522183121741e-05,
|
| 770 |
+
"loss": 0.119,
|
| 771 |
+
"step": 790
|
| 772 |
+
},
|
| 773 |
+
{
|
| 774 |
+
"epoch": 1.9857231533209188,
|
| 775 |
+
"grad_norm": 0.10031325370073318,
|
| 776 |
+
"learning_rate": 6.226583111206856e-05,
|
| 777 |
+
"loss": 0.1147,
|
| 778 |
+
"step": 800
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"epoch": 2.009931719428926,
|
| 782 |
+
"grad_norm": 0.09207529574632645,
|
| 783 |
+
"learning_rate": 5.960789951281052e-05,
|
| 784 |
+
"loss": 0.1054,
|
| 785 |
+
"step": 810
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"epoch": 2.009931719428926,
|
| 789 |
+
"eval_loss": 0.10779497772455215,
|
| 790 |
+
"eval_runtime": 63.789,
|
| 791 |
+
"eval_samples_per_second": 2.665,
|
| 792 |
+
"eval_steps_per_second": 1.333,
|
| 793 |
+
"step": 810
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 2.0347610180012414,
|
| 797 |
+
"grad_norm": 0.08689288049936295,
|
| 798 |
+
"learning_rate": 5.698364296111056e-05,
|
| 799 |
+
"loss": 0.1124,
|
| 800 |
+
"step": 820
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"epoch": 2.0595903165735567,
|
| 804 |
+
"grad_norm": 0.11001532524824142,
|
| 805 |
+
"learning_rate": 5.43952493096211e-05,
|
| 806 |
+
"loss": 0.1041,
|
| 807 |
+
"step": 830
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"epoch": 2.084419615145872,
|
| 811 |
+
"grad_norm": 0.08535470813512802,
|
| 812 |
+
"learning_rate": 5.184487651195825e-05,
|
| 813 |
+
"loss": 0.1123,
|
| 814 |
+
"step": 840
|
| 815 |
+
},
|
| 816 |
+
{
|
| 817 |
+
"epoch": 2.084419615145872,
|
| 818 |
+
"eval_loss": 0.10820275545120239,
|
| 819 |
+
"eval_runtime": 63.5597,
|
| 820 |
+
"eval_samples_per_second": 2.675,
|
| 821 |
+
"eval_steps_per_second": 1.337,
|
| 822 |
+
"step": 840
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"epoch": 2.1092489137181873,
|
| 826 |
+
"grad_norm": 0.09453848749399185,
|
| 827 |
+
"learning_rate": 4.933465082360807e-05,
|
| 828 |
+
"loss": 0.1191,
|
| 829 |
+
"step": 850
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"epoch": 2.1340782122905027,
|
| 833 |
+
"grad_norm": 0.09359566867351532,
|
| 834 |
+
"learning_rate": 4.686666502925908e-05,
|
| 835 |
+
"loss": 0.1116,
|
| 836 |
+
"step": 860
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"epoch": 2.158907510862818,
|
| 840 |
+
"grad_norm": 0.08426634222269058,
|
| 841 |
+
"learning_rate": 4.444297669803981e-05,
|
| 842 |
+
"loss": 0.111,
|
| 843 |
+
"step": 870
|
| 844 |
+
},
|
| 845 |
+
{
|
| 846 |
+
"epoch": 2.158907510862818,
|
| 847 |
+
"eval_loss": 0.10807512700557709,
|
| 848 |
+
"eval_runtime": 63.5269,
|
| 849 |
+
"eval_samples_per_second": 2.676,
|
| 850 |
+
"eval_steps_per_second": 1.338,
|
| 851 |
+
"step": 870
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"epoch": 2.1837368094351333,
|
| 855 |
+
"grad_norm": 0.12573853135108948,
|
| 856 |
+
"learning_rate": 4.206560646811545e-05,
|
| 857 |
+
"loss": 0.1177,
|
| 858 |
+
"step": 880
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"epoch": 2.2085661080074486,
|
| 862 |
+
"grad_norm": 0.1112317442893982,
|
| 863 |
+
"learning_rate": 3.973653636207437e-05,
|
| 864 |
+
"loss": 0.099,
|
| 865 |
+
"step": 890
|
| 866 |
+
},
|
| 867 |
+
{
|
| 868 |
+
"epoch": 2.2333954065797643,
|
| 869 |
+
"grad_norm": 0.11728418618440628,
|
| 870 |
+
"learning_rate": 3.745770813450824e-05,
|
| 871 |
+
"loss": 0.1075,
|
| 872 |
+
"step": 900
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"epoch": 2.2333954065797643,
|
| 876 |
+
"eval_loss": 0.10825176537036896,
|
| 877 |
+
"eval_runtime": 63.6811,
|
| 878 |
+
"eval_samples_per_second": 2.67,
|
| 879 |
+
"eval_steps_per_second": 1.335,
|
| 880 |
+
"step": 900
|
| 881 |
+
},
|
| 882 |
+
{
|
| 883 |
+
"epoch": 2.2582247051520796,
|
| 884 |
+
"grad_norm": 0.09951410442590714,
|
| 885 |
+
"learning_rate": 3.523102165316381e-05,
|
| 886 |
+
"loss": 0.1065,
|
| 887 |
+
"step": 910
|
| 888 |
+
},
|
| 889 |
+
{
|
| 890 |
+
"epoch": 2.283054003724395,
|
| 891 |
+
"grad_norm": 0.10445831716060638,
|
| 892 |
+
"learning_rate": 3.3058333315016065e-05,
|
| 893 |
+
"loss": 0.1052,
|
| 894 |
+
"step": 920
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"epoch": 2.3078833022967102,
|
| 898 |
+
"grad_norm": 0.13279516994953156,
|
| 899 |
+
"learning_rate": 3.094145449858285e-05,
|
| 900 |
+
"loss": 0.1101,
|
| 901 |
+
"step": 930
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"epoch": 2.3078833022967102,
|
| 905 |
+
"eval_loss": 0.10792894661426544,
|
| 906 |
+
"eval_runtime": 63.7332,
|
| 907 |
+
"eval_samples_per_second": 2.667,
|
| 908 |
+
"eval_steps_per_second": 1.334,
|
| 909 |
+
"step": 930
|
| 910 |
+
},
|
| 911 |
+
{
|
| 912 |
+
"epoch": 2.3327126008690255,
|
| 913 |
+
"grad_norm": 0.08349404484033585,
|
| 914 |
+
"learning_rate": 2.8882150053771995e-05,
|
| 915 |
+
"loss": 0.1031,
|
| 916 |
+
"step": 940
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"epoch": 2.357541899441341,
|
| 920 |
+
"grad_norm": 0.11196437478065491,
|
| 921 |
+
"learning_rate": 2.688213683051892e-05,
|
| 922 |
+
"loss": 0.1151,
|
| 923 |
+
"step": 950
|
| 924 |
+
},
|
| 925 |
+
{
|
| 926 |
+
"epoch": 2.382371198013656,
|
| 927 |
+
"grad_norm": 0.1190405786037445,
|
| 928 |
+
"learning_rate": 2.4943082247442585e-05,
|
| 929 |
+
"loss": 0.1034,
|
| 930 |
+
"step": 960
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"epoch": 2.382371198013656,
|
| 934 |
+
"eval_loss": 0.10848245024681091,
|
| 935 |
+
"eval_runtime": 63.7471,
|
| 936 |
+
"eval_samples_per_second": 2.667,
|
| 937 |
+
"eval_steps_per_second": 1.333,
|
| 938 |
+
"step": 960
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"epoch": 2.4072004965859715,
|
| 942 |
+
"grad_norm": 0.14327777922153473,
|
| 943 |
+
"learning_rate": 2.3066602901712108e-05,
|
| 944 |
+
"loss": 0.1093,
|
| 945 |
+
"step": 970
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"epoch": 2.4320297951582868,
|
| 949 |
+
"grad_norm": 0.10319961607456207,
|
| 950 |
+
"learning_rate": 2.1254263221283654e-05,
|
| 951 |
+
"loss": 0.1027,
|
| 952 |
+
"step": 980
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"epoch": 2.456859093730602,
|
| 956 |
+
"grad_norm": 0.11453425884246826,
|
| 957 |
+
"learning_rate": 1.950757416063077e-05,
|
| 958 |
+
"loss": 0.1041,
|
| 959 |
+
"step": 990
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"epoch": 2.456859093730602,
|
| 963 |
+
"eval_loss": 0.10789740085601807,
|
| 964 |
+
"eval_runtime": 63.7392,
|
| 965 |
+
"eval_samples_per_second": 2.667,
|
| 966 |
+
"eval_steps_per_second": 1.334,
|
| 967 |
+
"step": 990
|
| 968 |
+
},
|
| 969 |
+
{
|
| 970 |
+
"epoch": 2.4816883923029174,
|
| 971 |
+
"grad_norm": 0.13892674446105957,
|
| 972 |
+
"learning_rate": 1.7827991941056177e-05,
|
| 973 |
+
"loss": 0.1043,
|
| 974 |
+
"step": 1000
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"epoch": 2.5065176908752327,
|
| 978 |
+
"grad_norm": 0.11595698446035385,
|
| 979 |
+
"learning_rate": 1.621691683663418e-05,
|
| 980 |
+
"loss": 0.1154,
|
| 981 |
+
"step": 1010
|
| 982 |
+
},
|
| 983 |
+
{
|
| 984 |
+
"epoch": 2.531346989447548,
|
| 985 |
+
"grad_norm": 0.10611863434314728,
|
| 986 |
+
"learning_rate": 1.4675692006797137e-05,
|
| 987 |
+
"loss": 0.1109,
|
| 988 |
+
"step": 1020
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"epoch": 2.531346989447548,
|
| 992 |
+
"eval_loss": 0.10792025178670883,
|
| 993 |
+
"eval_runtime": 63.6053,
|
| 994 |
+
"eval_samples_per_second": 2.673,
|
| 995 |
+
"eval_steps_per_second": 1.336,
|
| 996 |
+
"step": 1020
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"epoch": 2.5561762880198633,
|
| 1000 |
+
"grad_norm": 0.12383992969989777,
|
| 1001 |
+
"learning_rate": 1.3205602376538163e-05,
|
| 1002 |
+
"loss": 0.1161,
|
| 1003 |
+
"step": 1030
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"epoch": 2.5810055865921786,
|
| 1007 |
+
"grad_norm": 0.09889344125986099,
|
| 1008 |
+
"learning_rate": 1.1807873565164506e-05,
|
| 1009 |
+
"loss": 0.1109,
|
| 1010 |
+
"step": 1040
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"epoch": 2.6058348851644944,
|
| 1014 |
+
"grad_norm": 0.11996069550514221,
|
| 1015 |
+
"learning_rate": 1.0483670864493778e-05,
|
| 1016 |
+
"loss": 0.1144,
|
| 1017 |
+
"step": 1050
|
| 1018 |
+
},
|
| 1019 |
+
{
|
| 1020 |
+
"epoch": 2.6058348851644944,
|
| 1021 |
+
"eval_loss": 0.10760737955570221,
|
| 1022 |
+
"eval_runtime": 63.5808,
|
| 1023 |
+
"eval_samples_per_second": 2.674,
|
| 1024 |
+
"eval_steps_per_second": 1.337,
|
| 1025 |
+
"step": 1050
|
| 1026 |
+
},
|
| 1027 |
+
{
|
| 1028 |
+
"epoch": 2.630664183736809,
|
| 1029 |
+
"grad_norm": 0.09900493919849396,
|
| 1030 |
+
"learning_rate": 9.234098267345958e-06,
|
| 1031 |
+
"loss": 0.1075,
|
| 1032 |
+
"step": 1060
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"epoch": 2.655493482309125,
|
| 1036 |
+
"grad_norm": 0.14834974706172943,
|
| 1037 |
+
"learning_rate": 8.060197547140347e-06,
|
| 1038 |
+
"loss": 0.1024,
|
| 1039 |
+
"step": 1070
|
| 1040 |
+
},
|
| 1041 |
+
{
|
| 1042 |
+
"epoch": 2.68032278088144,
|
| 1043 |
+
"grad_norm": 0.08732602745294571,
|
| 1044 |
+
"learning_rate": 6.962947389365071e-06,
|
| 1045 |
+
"loss": 0.1055,
|
| 1046 |
+
"step": 1080
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"epoch": 2.68032278088144,
|
| 1050 |
+
"eval_loss": 0.1074790507555008,
|
| 1051 |
+
"eval_runtime": 63.5309,
|
| 1052 |
+
"eval_samples_per_second": 2.676,
|
| 1053 |
+
"eval_steps_per_second": 1.338,
|
| 1054 |
+
"step": 1080
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"epoch": 2.7051520794537556,
|
| 1058 |
+
"grad_norm": 0.13483889400959015,
|
| 1059 |
+
"learning_rate": 5.943262575643238e-06,
|
| 1060 |
+
"loss": 0.1202,
|
| 1061 |
+
"step": 1090
|
| 1062 |
+
},
|
| 1063 |
+
{
|
| 1064 |
+
"epoch": 2.729981378026071,
|
| 1065 |
+
"grad_norm": 0.1085759624838829,
|
| 1066 |
+
"learning_rate": 5.001993221076162e-06,
|
| 1067 |
+
"loss": 0.1121,
|
| 1068 |
+
"step": 1100
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"epoch": 2.754810676598386,
|
| 1072 |
+
"grad_norm": 0.11096607148647308,
|
| 1073 |
+
"learning_rate": 4.139924065499035e-06,
|
| 1074 |
+
"loss": 0.105,
|
| 1075 |
+
"step": 1110
|
| 1076 |
+
},
|
| 1077 |
+
{
|
| 1078 |
+
"epoch": 2.754810676598386,
|
| 1079 |
+
"eval_loss": 0.10723040252923965,
|
| 1080 |
+
"eval_runtime": 63.5635,
|
| 1081 |
+
"eval_samples_per_second": 2.674,
|
| 1082 |
+
"eval_steps_per_second": 1.337,
|
| 1083 |
+
"step": 1110
|
| 1084 |
+
},
|
| 1085 |
+
{
|
| 1086 |
+
"epoch": 2.7796399751707015,
|
| 1087 |
+
"grad_norm": 0.11648862063884735,
|
| 1088 |
+
"learning_rate": 3.3577738192404395e-06,
|
| 1089 |
+
"loss": 0.1035,
|
| 1090 |
+
"step": 1120
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"epoch": 2.804469273743017,
|
| 1094 |
+
"grad_norm": 0.12449430674314499,
|
| 1095 |
+
"learning_rate": 2.656194563930714e-06,
|
| 1096 |
+
"loss": 0.1079,
|
| 1097 |
+
"step": 1130
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"epoch": 2.829298572315332,
|
| 1101 |
+
"grad_norm": 0.10689777880907059,
|
| 1102 |
+
"learning_rate": 2.035771208859194e-06,
|
| 1103 |
+
"loss": 0.1053,
|
| 1104 |
+
"step": 1140
|
| 1105 |
+
},
|
| 1106 |
+
{
|
| 1107 |
+
"epoch": 2.829298572315332,
|
| 1108 |
+
"eval_loss": 0.10730743408203125,
|
| 1109 |
+
"eval_runtime": 63.6665,
|
| 1110 |
+
"eval_samples_per_second": 2.67,
|
| 1111 |
+
"eval_steps_per_second": 1.335,
|
| 1112 |
+
"step": 1140
|
| 1113 |
+
},
|
| 1114 |
+
{
|
| 1115 |
+
"epoch": 2.8541278708876474,
|
| 1116 |
+
"grad_norm": 0.12634721398353577,
|
| 1117 |
+
"learning_rate": 1.49702100333291e-06,
|
| 1118 |
+
"loss": 0.1031,
|
| 1119 |
+
"step": 1150
|
| 1120 |
+
},
|
| 1121 |
+
{
|
| 1122 |
+
"epoch": 2.8789571694599627,
|
| 1123 |
+
"grad_norm": 0.135261669754982,
|
| 1124 |
+
"learning_rate": 1.0403931054440374e-06,
|
| 1125 |
+
"loss": 0.1077,
|
| 1126 |
+
"step": 1160
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"epoch": 2.903786468032278,
|
| 1130 |
+
"grad_norm": 0.11396101117134094,
|
| 1131 |
+
"learning_rate": 6.662682076050031e-07,
|
| 1132 |
+
"loss": 0.0958,
|
| 1133 |
+
"step": 1170
|
| 1134 |
+
},
|
| 1135 |
+
{
|
| 1136 |
+
"epoch": 2.903786468032278,
|
| 1137 |
+
"eval_loss": 0.10724406689405441,
|
| 1138 |
+
"eval_runtime": 63.5911,
|
| 1139 |
+
"eval_samples_per_second": 2.673,
|
| 1140 |
+
"eval_steps_per_second": 1.337,
|
| 1141 |
+
"step": 1170
|
| 1142 |
+
},
|
| 1143 |
+
{
|
| 1144 |
+
"epoch": 2.9286157666045933,
|
| 1145 |
+
"grad_norm": 0.11092764139175415,
|
| 1146 |
+
"learning_rate": 3.7495821916382344e-07,
|
| 1147 |
+
"loss": 0.1165,
|
| 1148 |
+
"step": 1180
|
| 1149 |
+
},
|
| 1150 |
+
{
|
| 1151 |
+
"epoch": 2.9534450651769086,
|
| 1152 |
+
"grad_norm": 0.1551099419593811,
|
| 1153 |
+
"learning_rate": 1.6670600636403687e-07,
|
| 1154 |
+
"loss": 0.0921,
|
| 1155 |
+
"step": 1190
|
| 1156 |
+
},
|
| 1157 |
+
{
|
| 1158 |
+
"epoch": 2.978274363749224,
|
| 1159 |
+
"grad_norm": 0.09738525003194809,
|
| 1160 |
+
"learning_rate": 4.168518986628067e-08,
|
| 1161 |
+
"loss": 0.0971,
|
| 1162 |
+
"step": 1200
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"epoch": 2.978274363749224,
|
| 1166 |
+
"eval_loss": 0.10730230808258057,
|
| 1167 |
+
"eval_runtime": 63.5023,
|
| 1168 |
+
"eval_samples_per_second": 2.677,
|
| 1169 |
+
"eval_steps_per_second": 1.339,
|
| 1170 |
+
"step": 1200
|
| 1171 |
+
}
|
| 1172 |
+
],
|
| 1173 |
+
"logging_steps": 10,
|
| 1174 |
+
"max_steps": 1209,
|
| 1175 |
+
"num_input_tokens_seen": 0,
|
| 1176 |
+
"num_train_epochs": 3,
|
| 1177 |
+
"save_steps": 100,
|
| 1178 |
+
"stateful_callbacks": {
|
| 1179 |
+
"TrainerControl": {
|
| 1180 |
+
"args": {
|
| 1181 |
+
"should_epoch_stop": false,
|
| 1182 |
+
"should_evaluate": false,
|
| 1183 |
+
"should_log": false,
|
| 1184 |
+
"should_save": true,
|
| 1185 |
+
"should_training_stop": true
|
| 1186 |
+
},
|
| 1187 |
+
"attributes": {}
|
| 1188 |
+
}
|
| 1189 |
+
},
|
| 1190 |
+
"total_flos": 4.438063984162099e+17,
|
| 1191 |
+
"train_batch_size": 2,
|
| 1192 |
+
"trial_name": null,
|
| 1193 |
+
"trial_params": null
|
| 1194 |
+
}
|
checkpoint-1209/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fc3ea75972759b8dc97998faf255102abd18d495e9cbda6fe12118ce09f8515
|
| 3 |
+
size 5777
|
checkpoint-1209/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
config.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"dtype": "bfloat16",
|
| 7 |
+
"eos_token_id": 151645,
|
| 8 |
+
"hidden_act": "silu",
|
| 9 |
+
"hidden_size": 3584,
|
| 10 |
+
"initializer_range": 0.02,
|
| 11 |
+
"intermediate_size": 18944,
|
| 12 |
+
"layer_types": [
|
| 13 |
+
"full_attention",
|
| 14 |
+
"full_attention",
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention"
|
| 41 |
+
],
|
| 42 |
+
"max_position_embeddings": 32768,
|
| 43 |
+
"max_window_layers": 28,
|
| 44 |
+
"model_type": "qwen2",
|
| 45 |
+
"num_attention_heads": 28,
|
| 46 |
+
"num_hidden_layers": 28,
|
| 47 |
+
"num_key_value_heads": 4,
|
| 48 |
+
"pad_token_id": 151654,
|
| 49 |
+
"rms_norm_eps": 1e-06,
|
| 50 |
+
"rope_scaling": null,
|
| 51 |
+
"rope_theta": 1000000.0,
|
| 52 |
+
"sliding_window": null,
|
| 53 |
+
"tie_word_embeddings": false,
|
| 54 |
+
"transformers_version": "4.56.2",
|
| 55 |
+
"unsloth_fixed": true,
|
| 56 |
+
"unsloth_version": "2025.12.7",
|
| 57 |
+
"use_cache": true,
|
| 58 |
+
"use_sliding_window": false,
|
| 59 |
+
"vocab_size": 152064
|
| 60 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"max_length": 32768,
|
| 9 |
+
"pad_token_id": 151654,
|
| 10 |
+
"repetition_penalty": 1.05,
|
| 11 |
+
"temperature": 0.7,
|
| 12 |
+
"top_k": 20,
|
| 13 |
+
"top_p": 0.8,
|
| 14 |
+
"transformers_version": "4.56.2"
|
| 15 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0355a09f495c7a981263bbfea9c717419fe27370e72990ff5422df18c0d04592
|
| 3 |
+
size 4877660776
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56e75aff35ef9c1b7e88a7fd8a617c7fbc0b1b401d9986d288e7916b7c9defdf
|
| 3 |
+
size 4932751008
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f96fbdad244ab5325888458c117d8f8f92b6f109037f25f64a5c63326191e40
|
| 3 |
+
size 4330865200
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06006972c3be88e8a44fe21cfe2b0472b130780c781a741f8f90f1fe5ba3aae2
|
| 3 |
+
size 1089994880
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,347 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 7615616512,
|
| 4 |
+
"total_size": 15231233024
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 8 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 129 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 130 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 131 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 133 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 134 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 135 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 137 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 138 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 139 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 140 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 141 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 142 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 143 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 144 |
+
"model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 145 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 146 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 147 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 148 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 149 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 150 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 151 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 153 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 154 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 155 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 156 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 157 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 158 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 159 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 160 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 161 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 162 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 163 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 164 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 165 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 237 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 251 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 256 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 257 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 258 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 259 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 260 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 285 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 286 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 288 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 289 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 297 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 298 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 299 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 300 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 301 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 302 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 303 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 304 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 305 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 306 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 307 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 308 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 309 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 310 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 311 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 312 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 313 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 314 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 315 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 316 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 317 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 318 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 319 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 320 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 321 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 322 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 323 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 324 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 325 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 326 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 327 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 328 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 329 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 330 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 331 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 332 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 333 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 334 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 335 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 336 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 337 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 338 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 339 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 340 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 341 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 342 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 343 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 344 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 345 |
+
"model.norm.weight": "model-00003-of-00004.safetensors"
|
| 346 |
+
}
|
| 347 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|vision_pad|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"clean_up_tokenization_spaces": false,
|
| 199 |
+
"eos_token": "<|im_end|>",
|
| 200 |
+
"errors": "replace",
|
| 201 |
+
"extra_special_tokens": {},
|
| 202 |
+
"model_max_length": 32768,
|
| 203 |
+
"pad_token": "<|vision_pad|>",
|
| 204 |
+
"padding_side": "left",
|
| 205 |
+
"split_special_tokens": false,
|
| 206 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 207 |
+
"unk_token": null
|
| 208 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|