Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +68 -0
- adapter_config.json +38 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -0
- chat_template.jinja +54 -0
- checkpoint-800/README.md +202 -0
- checkpoint-800/adapter_config.json +38 -0
- checkpoint-800/adapter_model.safetensors +3 -0
- checkpoint-800/added_tokens.json +24 -0
- checkpoint-800/chat_template.jinja +54 -0
- checkpoint-800/merges.txt +0 -0
- checkpoint-800/optimizer.pt +3 -0
- checkpoint-800/rng_state.pth +3 -0
- checkpoint-800/scheduler.pt +3 -0
- checkpoint-800/special_tokens_map.json +31 -0
- checkpoint-800/tokenizer.json +3 -0
- checkpoint-800/tokenizer_config.json +208 -0
- checkpoint-800/trainer_state.json +658 -0
- checkpoint-800/training_args.bin +3 -0
- checkpoint-800/vocab.json +0 -0
- checkpoint-921/README.md +202 -0
- checkpoint-921/adapter_config.json +38 -0
- checkpoint-921/adapter_model.safetensors +3 -0
- checkpoint-921/added_tokens.json +24 -0
- checkpoint-921/chat_template.jinja +54 -0
- checkpoint-921/merges.txt +0 -0
- checkpoint-921/optimizer.pt +3 -0
- checkpoint-921/rng_state.pth +3 -0
- checkpoint-921/scheduler.pt +3 -0
- checkpoint-921/special_tokens_map.json +31 -0
- checkpoint-921/tokenizer.json +3 -0
- checkpoint-921/tokenizer_config.json +208 -0
- checkpoint-921/trainer_state.json +750 -0
- checkpoint-921/training_args.bin +3 -0
- checkpoint-921/vocab.json +0 -0
- merges.txt +0 -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-800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-921/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,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen2.5-7B-Instruct
|
| 3 |
+
datasets:
|
| 4 |
+
- u-10bei/sft_alfworld_trajectory_dataset_v5
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
license: apache-2.0
|
| 8 |
+
library_name: peft
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
tags:
|
| 11 |
+
- lora
|
| 12 |
+
- agent
|
| 13 |
+
- tool-use
|
| 14 |
+
- alfworld
|
| 15 |
+
- dbbench
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# <【課題】ここは自分で記入して下さい>
|
| 19 |
+
|
| 20 |
+
This repository provides a **LoRA adapter** fine-tuned from
|
| 21 |
+
**unsloth/Qwen2.5-7B-Instruct** using **LoRA + Unsloth**.
|
| 22 |
+
|
| 23 |
+
This repository contains **LoRA adapter weights only**.
|
| 24 |
+
The base model must be loaded separately.
|
| 25 |
+
|
| 26 |
+
## Training Objective
|
| 27 |
+
|
| 28 |
+
This adapter is trained to improve **multi-turn agent task performance**
|
| 29 |
+
on ALFWorld (household tasks) and DBBench (database operations).
|
| 30 |
+
|
| 31 |
+
Loss is applied to **all assistant turns** in the multi-turn trajectory,
|
| 32 |
+
enabling the model to learn environment observation, action selection,
|
| 33 |
+
tool use, and recovery from errors.
|
| 34 |
+
|
| 35 |
+
## Training Configuration
|
| 36 |
+
|
| 37 |
+
- Base model: unsloth/Qwen2.5-7B-Instruct
|
| 38 |
+
- Method: LoRA (full precision base)
|
| 39 |
+
- Max sequence length: 4096
|
| 40 |
+
- Epochs: 3
|
| 41 |
+
- Learning rate: 8e-06
|
| 42 |
+
- LoRA: r=64, alpha=128
|
| 43 |
+
|
| 44 |
+
## Usage
|
| 45 |
+
|
| 46 |
+
```python
|
| 47 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 48 |
+
from peft import PeftModel
|
| 49 |
+
import torch
|
| 50 |
+
|
| 51 |
+
base = "unsloth/Qwen2.5-7B-Instruct"
|
| 52 |
+
adapter = "your_id/your-repo"
|
| 53 |
+
|
| 54 |
+
tokenizer = AutoTokenizer.from_pretrained(base)
|
| 55 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 56 |
+
base,
|
| 57 |
+
torch_dtype=torch.float16,
|
| 58 |
+
device_map="auto",
|
| 59 |
+
)
|
| 60 |
+
model = PeftModel.from_pretrained(model, adapter)
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Sources & Terms (IMPORTANT)
|
| 64 |
+
|
| 65 |
+
Training data: u-10bei/sft_alfworld_trajectory_dataset_v5
|
| 66 |
+
|
| 67 |
+
Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
|
| 68 |
+
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 |
+
"k_proj",
|
| 28 |
+
"up_proj",
|
| 29 |
+
"gate_proj",
|
| 30 |
+
"q_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"down_proj",
|
| 33 |
+
"o_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:e9d72968b4805cac02817fcdc3801a2e62fc4742c0fd44321c58cfc1468145dd
|
| 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-800/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-800/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 |
+
"k_proj",
|
| 28 |
+
"up_proj",
|
| 29 |
+
"gate_proj",
|
| 30 |
+
"q_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"down_proj",
|
| 33 |
+
"o_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"use_dora": false,
|
| 37 |
+
"use_rslora": false
|
| 38 |
+
}
|
checkpoint-800/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bbaffad5ca70620b17aabf6ff709939464e1d3ea0ec93ab8bf85bbc3acd4927
|
| 3 |
+
size 645975704
|
checkpoint-800/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-800/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-800/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-800/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db183a99ed1d664a4a05003e3d297e7a7476cb2ece68d7e68149840d276da05b
|
| 3 |
+
size 1292182139
|
checkpoint-800/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19bf8b8d24a899d74f5eaa777cc26534151edf041aa77c6554b0037937911384
|
| 3 |
+
size 14645
|
checkpoint-800/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b504dcae37cd8e5bfd5c86e5ff00ce7638a991cb0b079533eb20b69f0182cf6
|
| 3 |
+
size 1465
|
checkpoint-800/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-800/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
checkpoint-800/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-800/trainer_state.json
ADDED
|
@@ -0,0 +1,658 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.6058631921824107,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 800,
|
| 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.03257328990228013,
|
| 14 |
+
"grad_norm": 4.319990634918213,
|
| 15 |
+
"learning_rate": 7.741935483870967e-07,
|
| 16 |
+
"loss": 1.3255,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.06514657980456026,
|
| 21 |
+
"grad_norm": 3.764126777648926,
|
| 22 |
+
"learning_rate": 1.6344086021505377e-06,
|
| 23 |
+
"loss": 1.2843,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.09771986970684039,
|
| 28 |
+
"grad_norm": 4.150228023529053,
|
| 29 |
+
"learning_rate": 2.4946236559139784e-06,
|
| 30 |
+
"loss": 1.2342,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.13029315960912052,
|
| 35 |
+
"grad_norm": 1.6511605978012085,
|
| 36 |
+
"learning_rate": 3.3548387096774194e-06,
|
| 37 |
+
"loss": 0.9679,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.16286644951140064,
|
| 42 |
+
"grad_norm": 0.7357141971588135,
|
| 43 |
+
"learning_rate": 4.21505376344086e-06,
|
| 44 |
+
"loss": 0.7937,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.19543973941368079,
|
| 49 |
+
"grad_norm": 0.598514974117279,
|
| 50 |
+
"learning_rate": 5.075268817204301e-06,
|
| 51 |
+
"loss": 0.6905,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.2280130293159609,
|
| 56 |
+
"grad_norm": 0.6065505743026733,
|
| 57 |
+
"learning_rate": 5.935483870967741e-06,
|
| 58 |
+
"loss": 0.6328,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.26058631921824105,
|
| 63 |
+
"grad_norm": 0.5301859378814697,
|
| 64 |
+
"learning_rate": 6.7956989247311825e-06,
|
| 65 |
+
"loss": 0.5722,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2931596091205212,
|
| 70 |
+
"grad_norm": 0.5616416335105896,
|
| 71 |
+
"learning_rate": 7.655913978494624e-06,
|
| 72 |
+
"loss": 0.5132,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.3257328990228013,
|
| 77 |
+
"grad_norm": 0.7361940145492554,
|
| 78 |
+
"learning_rate": 7.998963539365396e-06,
|
| 79 |
+
"loss": 0.4687,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3257328990228013,
|
| 84 |
+
"eval_loss": 0.4614461660385132,
|
| 85 |
+
"eval_runtime": 33.8621,
|
| 86 |
+
"eval_samples_per_second": 7.619,
|
| 87 |
+
"eval_steps_per_second": 3.81,
|
| 88 |
+
"step": 100
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"epoch": 0.3583061889250814,
|
| 92 |
+
"grad_norm": 0.6860578656196594,
|
| 93 |
+
"learning_rate": 7.992631558305708e-06,
|
| 94 |
+
"loss": 0.4247,
|
| 95 |
+
"step": 110
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"epoch": 0.39087947882736157,
|
| 99 |
+
"grad_norm": 0.6234003901481628,
|
| 100 |
+
"learning_rate": 7.980552510965744e-06,
|
| 101 |
+
"loss": 0.38,
|
| 102 |
+
"step": 120
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"epoch": 0.4234527687296417,
|
| 106 |
+
"grad_norm": 0.7827787399291992,
|
| 107 |
+
"learning_rate": 7.962743784145322e-06,
|
| 108 |
+
"loss": 0.3475,
|
| 109 |
+
"step": 130
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.4560260586319218,
|
| 113 |
+
"grad_norm": 1.0882517099380493,
|
| 114 |
+
"learning_rate": 7.939231012048832e-06,
|
| 115 |
+
"loss": 0.2904,
|
| 116 |
+
"step": 140
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"epoch": 0.48859934853420195,
|
| 120 |
+
"grad_norm": 0.9678266048431396,
|
| 121 |
+
"learning_rate": 7.910048039386883e-06,
|
| 122 |
+
"loss": 0.2646,
|
| 123 |
+
"step": 150
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 0.5211726384364821,
|
| 127 |
+
"grad_norm": 1.0340553522109985,
|
| 128 |
+
"learning_rate": 7.875236872659625e-06,
|
| 129 |
+
"loss": 0.2408,
|
| 130 |
+
"step": 160
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.5537459283387622,
|
| 134 |
+
"grad_norm": 0.8255159258842468,
|
| 135 |
+
"learning_rate": 7.834847619691822e-06,
|
| 136 |
+
"loss": 0.1985,
|
| 137 |
+
"step": 170
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"epoch": 0.5863192182410424,
|
| 141 |
+
"grad_norm": 0.9649443626403809,
|
| 142 |
+
"learning_rate": 7.788938417506746e-06,
|
| 143 |
+
"loss": 0.1981,
|
| 144 |
+
"step": 180
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"epoch": 0.6188925081433225,
|
| 148 |
+
"grad_norm": 0.7817046642303467,
|
| 149 |
+
"learning_rate": 7.737575348642683e-06,
|
| 150 |
+
"loss": 0.1947,
|
| 151 |
+
"step": 190
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"epoch": 0.6514657980456026,
|
| 155 |
+
"grad_norm": 0.7640238404273987,
|
| 156 |
+
"learning_rate": 7.680832346032546e-06,
|
| 157 |
+
"loss": 0.1752,
|
| 158 |
+
"step": 200
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"epoch": 0.6514657980456026,
|
| 162 |
+
"eval_loss": 0.1747174710035324,
|
| 163 |
+
"eval_runtime": 33.2887,
|
| 164 |
+
"eval_samples_per_second": 7.75,
|
| 165 |
+
"eval_steps_per_second": 3.875,
|
| 166 |
+
"step": 200
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"epoch": 0.6840390879478827,
|
| 170 |
+
"grad_norm": 0.701442301273346,
|
| 171 |
+
"learning_rate": 7.618791086583449e-06,
|
| 172 |
+
"loss": 0.1768,
|
| 173 |
+
"step": 210
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"epoch": 0.7166123778501629,
|
| 177 |
+
"grad_norm": 0.8486807942390442,
|
| 178 |
+
"learning_rate": 7.5515408736095e-06,
|
| 179 |
+
"loss": 0.1667,
|
| 180 |
+
"step": 220
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 0.749185667752443,
|
| 184 |
+
"grad_norm": 0.9864675998687744,
|
| 185 |
+
"learning_rate": 7.4791785082869865e-06,
|
| 186 |
+
"loss": 0.1505,
|
| 187 |
+
"step": 230
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"epoch": 0.7817589576547231,
|
| 191 |
+
"grad_norm": 0.9136099815368652,
|
| 192 |
+
"learning_rate": 7.401808150317004e-06,
|
| 193 |
+
"loss": 0.1518,
|
| 194 |
+
"step": 240
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"epoch": 0.8143322475570033,
|
| 198 |
+
"grad_norm": 0.6785700917243958,
|
| 199 |
+
"learning_rate": 7.3195411679961005e-06,
|
| 200 |
+
"loss": 0.1485,
|
| 201 |
+
"step": 250
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"epoch": 0.8469055374592834,
|
| 205 |
+
"grad_norm": 0.9049308896064758,
|
| 206 |
+
"learning_rate": 7.232495977910721e-06,
|
| 207 |
+
"loss": 0.144,
|
| 208 |
+
"step": 260
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.8794788273615635,
|
| 212 |
+
"grad_norm": 0.8609828352928162,
|
| 213 |
+
"learning_rate": 7.140797874486235e-06,
|
| 214 |
+
"loss": 0.1471,
|
| 215 |
+
"step": 270
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"epoch": 0.9120521172638436,
|
| 219 |
+
"grad_norm": 0.8438140749931335,
|
| 220 |
+
"learning_rate": 7.044578849635858e-06,
|
| 221 |
+
"loss": 0.1424,
|
| 222 |
+
"step": 280
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"epoch": 0.9446254071661238,
|
| 226 |
+
"grad_norm": 0.7648624181747437,
|
| 227 |
+
"learning_rate": 6.943977402769108e-06,
|
| 228 |
+
"loss": 0.1385,
|
| 229 |
+
"step": 290
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"epoch": 0.9771986970684039,
|
| 233 |
+
"grad_norm": 0.6212359666824341,
|
| 234 |
+
"learning_rate": 6.839138341433236e-06,
|
| 235 |
+
"loss": 0.1428,
|
| 236 |
+
"step": 300
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"epoch": 0.9771986970684039,
|
| 240 |
+
"eval_loss": 0.1377791315317154,
|
| 241 |
+
"eval_runtime": 33.2415,
|
| 242 |
+
"eval_samples_per_second": 7.761,
|
| 243 |
+
"eval_steps_per_second": 3.881,
|
| 244 |
+
"step": 300
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 1.009771986970684,
|
| 248 |
+
"grad_norm": 0.5962893962860107,
|
| 249 |
+
"learning_rate": 6.730212572874616e-06,
|
| 250 |
+
"loss": 0.1364,
|
| 251 |
+
"step": 310
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"epoch": 1.0423452768729642,
|
| 255 |
+
"grad_norm": 0.7699111700057983,
|
| 256 |
+
"learning_rate": 6.6173568868201244e-06,
|
| 257 |
+
"loss": 0.1332,
|
| 258 |
+
"step": 320
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"epoch": 1.0749185667752443,
|
| 262 |
+
"grad_norm": 0.6283778548240662,
|
| 263 |
+
"learning_rate": 6.500733729791155e-06,
|
| 264 |
+
"loss": 0.1254,
|
| 265 |
+
"step": 330
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 1.1074918566775245,
|
| 269 |
+
"grad_norm": 0.623935341835022,
|
| 270 |
+
"learning_rate": 6.380510971275159e-06,
|
| 271 |
+
"loss": 0.13,
|
| 272 |
+
"step": 340
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.1400651465798046,
|
| 276 |
+
"grad_norm": 0.6022305488586426,
|
| 277 |
+
"learning_rate": 6.256861662091248e-06,
|
| 278 |
+
"loss": 0.138,
|
| 279 |
+
"step": 350
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.1726384364820848,
|
| 283 |
+
"grad_norm": 0.716827392578125,
|
| 284 |
+
"learning_rate": 6.1299637852977185e-06,
|
| 285 |
+
"loss": 0.1363,
|
| 286 |
+
"step": 360
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.205211726384365,
|
| 290 |
+
"grad_norm": 0.7210624814033508,
|
| 291 |
+
"learning_rate": 6e-06,
|
| 292 |
+
"loss": 0.1371,
|
| 293 |
+
"step": 370
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.237785016286645,
|
| 297 |
+
"grad_norm": 0.5957107543945312,
|
| 298 |
+
"learning_rate": 5.867157378427834e-06,
|
| 299 |
+
"loss": 0.1308,
|
| 300 |
+
"step": 380
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.2703583061889252,
|
| 304 |
+
"grad_norm": 0.6254829168319702,
|
| 305 |
+
"learning_rate": 5.731627136660109e-06,
|
| 306 |
+
"loss": 0.1298,
|
| 307 |
+
"step": 390
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.3029315960912053,
|
| 311 |
+
"grad_norm": 0.5790061950683594,
|
| 312 |
+
"learning_rate": 5.593604359384966e-06,
|
| 313 |
+
"loss": 0.1312,
|
| 314 |
+
"step": 400
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.3029315960912053,
|
| 318 |
+
"eval_loss": 0.13056354224681854,
|
| 319 |
+
"eval_runtime": 33.286,
|
| 320 |
+
"eval_samples_per_second": 7.751,
|
| 321 |
+
"eval_steps_per_second": 3.876,
|
| 322 |
+
"step": 400
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"epoch": 1.3355048859934853,
|
| 326 |
+
"grad_norm": 0.6293231844902039,
|
| 327 |
+
"learning_rate": 5.453287719091365e-06,
|
| 328 |
+
"loss": 0.1342,
|
| 329 |
+
"step": 410
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 1.3680781758957654,
|
| 333 |
+
"grad_norm": 0.7954932451248169,
|
| 334 |
+
"learning_rate": 5.3108791900962995e-06,
|
| 335 |
+
"loss": 0.1312,
|
| 336 |
+
"step": 420
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"epoch": 1.4006514657980456,
|
| 340 |
+
"grad_norm": 0.5331751108169556,
|
| 341 |
+
"learning_rate": 5.1665837578192995e-06,
|
| 342 |
+
"loss": 0.1319,
|
| 343 |
+
"step": 430
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 1.4332247557003257,
|
| 347 |
+
"grad_norm": 0.7147168517112732,
|
| 348 |
+
"learning_rate": 5.020609123722704e-06,
|
| 349 |
+
"loss": 0.1307,
|
| 350 |
+
"step": 440
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 1.4657980456026058,
|
| 354 |
+
"grad_norm": 0.6740135550498962,
|
| 355 |
+
"learning_rate": 4.873165406342406e-06,
|
| 356 |
+
"loss": 0.133,
|
| 357 |
+
"step": 450
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"epoch": 1.498371335504886,
|
| 361 |
+
"grad_norm": 0.6303773522377014,
|
| 362 |
+
"learning_rate": 4.724464838839423e-06,
|
| 363 |
+
"loss": 0.1203,
|
| 364 |
+
"step": 460
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"epoch": 1.5309446254071661,
|
| 368 |
+
"grad_norm": 0.6301987171173096,
|
| 369 |
+
"learning_rate": 4.574721463507632e-06,
|
| 370 |
+
"loss": 0.1174,
|
| 371 |
+
"step": 470
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"epoch": 1.5635179153094463,
|
| 375 |
+
"grad_norm": 0.4884192943572998,
|
| 376 |
+
"learning_rate": 4.424150823677419e-06,
|
| 377 |
+
"loss": 0.1221,
|
| 378 |
+
"step": 480
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"epoch": 1.5960912052117264,
|
| 382 |
+
"grad_norm": 0.8104236721992493,
|
| 383 |
+
"learning_rate": 4.272969653458684e-06,
|
| 384 |
+
"loss": 0.1248,
|
| 385 |
+
"step": 490
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 1.6286644951140063,
|
| 389 |
+
"grad_norm": 0.6095107197761536,
|
| 390 |
+
"learning_rate": 4.1213955657698496e-06,
|
| 391 |
+
"loss": 0.1221,
|
| 392 |
+
"step": 500
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"epoch": 1.6286644951140063,
|
| 396 |
+
"eval_loss": 0.12636995315551758,
|
| 397 |
+
"eval_runtime": 33.9806,
|
| 398 |
+
"eval_samples_per_second": 7.593,
|
| 399 |
+
"eval_steps_per_second": 3.796,
|
| 400 |
+
"step": 500
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 1.6612377850162865,
|
| 404 |
+
"grad_norm": 0.5424883961677551,
|
| 405 |
+
"learning_rate": 3.969646739101868e-06,
|
| 406 |
+
"loss": 0.1196,
|
| 407 |
+
"step": 510
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 1.6938110749185666,
|
| 411 |
+
"grad_norm": 0.8408002257347107,
|
| 412 |
+
"learning_rate": 3.817941603468146e-06,
|
| 413 |
+
"loss": 0.1249,
|
| 414 |
+
"step": 520
|
| 415 |
+
},
|
| 416 |
+
{
|
| 417 |
+
"epoch": 1.7263843648208468,
|
| 418 |
+
"grad_norm": 0.6321083307266235,
|
| 419 |
+
"learning_rate": 3.666498525992426e-06,
|
| 420 |
+
"loss": 0.1258,
|
| 421 |
+
"step": 530
|
| 422 |
+
},
|
| 423 |
+
{
|
| 424 |
+
"epoch": 1.758957654723127,
|
| 425 |
+
"grad_norm": 0.705021321773529,
|
| 426 |
+
"learning_rate": 3.5155354965871845e-06,
|
| 427 |
+
"loss": 0.1259,
|
| 428 |
+
"step": 540
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"epoch": 1.791530944625407,
|
| 432 |
+
"grad_norm": 0.5481059551239014,
|
| 433 |
+
"learning_rate": 3.3652698141749946e-06,
|
| 434 |
+
"loss": 0.1273,
|
| 435 |
+
"step": 550
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"epoch": 1.8241042345276872,
|
| 439 |
+
"grad_norm": 0.5651680827140808,
|
| 440 |
+
"learning_rate": 3.215917773904527e-06,
|
| 441 |
+
"loss": 0.1218,
|
| 442 |
+
"step": 560
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 1.8566775244299674,
|
| 446 |
+
"grad_norm": 0.9432061314582825,
|
| 447 |
+
"learning_rate": 3.067694355811374e-06,
|
| 448 |
+
"loss": 0.1267,
|
| 449 |
+
"step": 570
|
| 450 |
+
},
|
| 451 |
+
{
|
| 452 |
+
"epoch": 1.8892508143322475,
|
| 453 |
+
"grad_norm": 0.7050531506538391,
|
| 454 |
+
"learning_rate": 2.9208129153719025e-06,
|
| 455 |
+
"loss": 0.1286,
|
| 456 |
+
"step": 580
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"epoch": 1.9218241042345277,
|
| 460 |
+
"grad_norm": 0.6143736243247986,
|
| 461 |
+
"learning_rate": 2.7754848763955035e-06,
|
| 462 |
+
"loss": 0.1236,
|
| 463 |
+
"step": 590
|
| 464 |
+
},
|
| 465 |
+
{
|
| 466 |
+
"epoch": 1.9543973941368078,
|
| 467 |
+
"grad_norm": 0.5079554319381714,
|
| 468 |
+
"learning_rate": 2.631919426697325e-06,
|
| 469 |
+
"loss": 0.1281,
|
| 470 |
+
"step": 600
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"epoch": 1.9543973941368078,
|
| 474 |
+
"eval_loss": 0.12330074608325958,
|
| 475 |
+
"eval_runtime": 34.0218,
|
| 476 |
+
"eval_samples_per_second": 7.583,
|
| 477 |
+
"eval_steps_per_second": 3.792,
|
| 478 |
+
"step": 600
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 1.986970684039088,
|
| 482 |
+
"grad_norm": 0.6454936861991882,
|
| 483 |
+
"learning_rate": 2.490323216989543e-06,
|
| 484 |
+
"loss": 0.127,
|
| 485 |
+
"step": 610
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"epoch": 2.019543973941368,
|
| 489 |
+
"grad_norm": 0.5652497410774231,
|
| 490 |
+
"learning_rate": 2.35090006342457e-06,
|
| 491 |
+
"loss": 0.1288,
|
| 492 |
+
"step": 620
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"epoch": 2.0521172638436482,
|
| 496 |
+
"grad_norm": 0.5710923671722412,
|
| 497 |
+
"learning_rate": 2.2138506542184e-06,
|
| 498 |
+
"loss": 0.1151,
|
| 499 |
+
"step": 630
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 2.0846905537459284,
|
| 503 |
+
"grad_norm": 0.5721701383590698,
|
| 504 |
+
"learning_rate": 2.079372260776338e-06,
|
| 505 |
+
"loss": 0.1187,
|
| 506 |
+
"step": 640
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"epoch": 2.1172638436482085,
|
| 510 |
+
"grad_norm": 0.6961202025413513,
|
| 511 |
+
"learning_rate": 1.9476584537369703e-06,
|
| 512 |
+
"loss": 0.1236,
|
| 513 |
+
"step": 650
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 2.1498371335504887,
|
| 517 |
+
"grad_norm": 0.6558916568756104,
|
| 518 |
+
"learning_rate": 1.8188988243430696e-06,
|
| 519 |
+
"loss": 0.1118,
|
| 520 |
+
"step": 660
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 2.182410423452769,
|
| 524 |
+
"grad_norm": 0.6206583976745605,
|
| 525 |
+
"learning_rate": 1.6932787115405317e-06,
|
| 526 |
+
"loss": 0.1207,
|
| 527 |
+
"step": 670
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 2.214983713355049,
|
| 531 |
+
"grad_norm": 0.5952445864677429,
|
| 532 |
+
"learning_rate": 1.5709789351981212e-06,
|
| 533 |
+
"loss": 0.1208,
|
| 534 |
+
"step": 680
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"epoch": 2.247557003257329,
|
| 538 |
+
"grad_norm": 0.6680878400802612,
|
| 539 |
+
"learning_rate": 1.4521755358320865e-06,
|
| 540 |
+
"loss": 0.1222,
|
| 541 |
+
"step": 690
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 2.2801302931596092,
|
| 545 |
+
"grad_norm": 0.5293084383010864,
|
| 546 |
+
"learning_rate": 1.3370395212102378e-06,
|
| 547 |
+
"loss": 0.1136,
|
| 548 |
+
"step": 700
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 2.2801302931596092,
|
| 552 |
+
"eval_loss": 0.1221059188246727,
|
| 553 |
+
"eval_runtime": 34.0931,
|
| 554 |
+
"eval_samples_per_second": 7.568,
|
| 555 |
+
"eval_steps_per_second": 3.784,
|
| 556 |
+
"step": 700
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 2.3127035830618894,
|
| 560 |
+
"grad_norm": 0.6006386280059814,
|
| 561 |
+
"learning_rate": 1.2257366202002693e-06,
|
| 562 |
+
"loss": 0.1241,
|
| 563 |
+
"step": 710
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 2.3452768729641695,
|
| 567 |
+
"grad_norm": 0.6543139815330505,
|
| 568 |
+
"learning_rate": 1.1184270442166187e-06,
|
| 569 |
+
"loss": 0.1265,
|
| 570 |
+
"step": 720
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 2.3778501628664497,
|
| 574 |
+
"grad_norm": 0.694369375705719,
|
| 575 |
+
"learning_rate": 1.015265256609258e-06,
|
| 576 |
+
"loss": 0.121,
|
| 577 |
+
"step": 730
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 2.41042345276873,
|
| 581 |
+
"grad_norm": 0.5214750170707703,
|
| 582 |
+
"learning_rate": 9.163997503263364e-07,
|
| 583 |
+
"loss": 0.1215,
|
| 584 |
+
"step": 740
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 2.44299674267101,
|
| 588 |
+
"grad_norm": 0.8416522145271301,
|
| 589 |
+
"learning_rate": 8.219728341707424e-07,
|
| 590 |
+
"loss": 0.1229,
|
| 591 |
+
"step": 750
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 2.47557003257329,
|
| 595 |
+
"grad_norm": 0.5506000518798828,
|
| 596 |
+
"learning_rate": 7.32120427958232e-07,
|
| 597 |
+
"loss": 0.1176,
|
| 598 |
+
"step": 760
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 2.5081433224755703,
|
| 602 |
+
"grad_norm": 0.6719224452972412,
|
| 603 |
+
"learning_rate": 6.469718668719827e-07,
|
| 604 |
+
"loss": 0.1201,
|
| 605 |
+
"step": 770
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 2.5407166123778504,
|
| 609 |
+
"grad_norm": 0.7880155444145203,
|
| 610 |
+
"learning_rate": 5.66649715295179e-07,
|
| 611 |
+
"loss": 0.1107,
|
| 612 |
+
"step": 780
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 2.5732899022801305,
|
| 616 |
+
"grad_norm": 0.7107143402099609,
|
| 617 |
+
"learning_rate": 4.91269590389623e-07,
|
| 618 |
+
"loss": 0.1237,
|
| 619 |
+
"step": 790
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 2.6058631921824107,
|
| 623 |
+
"grad_norm": 0.5582589507102966,
|
| 624 |
+
"learning_rate": 4.2093999567428893e-07,
|
| 625 |
+
"loss": 0.1077,
|
| 626 |
+
"step": 800
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 2.6058631921824107,
|
| 630 |
+
"eval_loss": 0.12127382308244705,
|
| 631 |
+
"eval_runtime": 34.3481,
|
| 632 |
+
"eval_samples_per_second": 7.511,
|
| 633 |
+
"eval_steps_per_second": 3.756,
|
| 634 |
+
"step": 800
|
| 635 |
+
}
|
| 636 |
+
],
|
| 637 |
+
"logging_steps": 10,
|
| 638 |
+
"max_steps": 921,
|
| 639 |
+
"num_input_tokens_seen": 0,
|
| 640 |
+
"num_train_epochs": 3,
|
| 641 |
+
"save_steps": 200,
|
| 642 |
+
"stateful_callbacks": {
|
| 643 |
+
"TrainerControl": {
|
| 644 |
+
"args": {
|
| 645 |
+
"should_epoch_stop": false,
|
| 646 |
+
"should_evaluate": false,
|
| 647 |
+
"should_log": false,
|
| 648 |
+
"should_save": true,
|
| 649 |
+
"should_training_stop": false
|
| 650 |
+
},
|
| 651 |
+
"attributes": {}
|
| 652 |
+
}
|
| 653 |
+
},
|
| 654 |
+
"total_flos": 8.150037438957926e+17,
|
| 655 |
+
"train_batch_size": 4,
|
| 656 |
+
"trial_name": null,
|
| 657 |
+
"trial_params": null
|
| 658 |
+
}
|
checkpoint-800/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e2f027ae8657c2a4b77455d8d9091d62296a49bc575e275ac46cdfe8ee98a91
|
| 3 |
+
size 5777
|
checkpoint-800/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-921/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-921/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 |
+
"k_proj",
|
| 28 |
+
"up_proj",
|
| 29 |
+
"gate_proj",
|
| 30 |
+
"q_proj",
|
| 31 |
+
"v_proj",
|
| 32 |
+
"down_proj",
|
| 33 |
+
"o_proj"
|
| 34 |
+
],
|
| 35 |
+
"task_type": "CAUSAL_LM",
|
| 36 |
+
"use_dora": false,
|
| 37 |
+
"use_rslora": false
|
| 38 |
+
}
|
checkpoint-921/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9d72968b4805cac02817fcdc3801a2e62fc4742c0fd44321c58cfc1468145dd
|
| 3 |
+
size 645975704
|
checkpoint-921/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-921/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-921/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-921/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25df8e9d26412522fc8dd1283154808396f7a0e2306c2a1aa8344defb8478a10
|
| 3 |
+
size 1292182139
|
checkpoint-921/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b904c9518064b74f27b8f73a0cc23918574fec708f4461e946edc6edc91fadf
|
| 3 |
+
size 14645
|
checkpoint-921/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d41af5392768a4dd4ba692692065d67c9c81018706116ac5fb462d6480b47b10
|
| 3 |
+
size 1465
|
checkpoint-921/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-921/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
| 3 |
+
size 11421896
|
checkpoint-921/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-921/trainer_state.json
ADDED
|
@@ -0,0 +1,750 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.0,
|
| 6 |
+
"eval_steps": 100,
|
| 7 |
+
"global_step": 921,
|
| 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.03257328990228013,
|
| 14 |
+
"grad_norm": 4.319990634918213,
|
| 15 |
+
"learning_rate": 7.741935483870967e-07,
|
| 16 |
+
"loss": 1.3255,
|
| 17 |
+
"step": 10
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"epoch": 0.06514657980456026,
|
| 21 |
+
"grad_norm": 3.764126777648926,
|
| 22 |
+
"learning_rate": 1.6344086021505377e-06,
|
| 23 |
+
"loss": 1.2843,
|
| 24 |
+
"step": 20
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"epoch": 0.09771986970684039,
|
| 28 |
+
"grad_norm": 4.150228023529053,
|
| 29 |
+
"learning_rate": 2.4946236559139784e-06,
|
| 30 |
+
"loss": 1.2342,
|
| 31 |
+
"step": 30
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"epoch": 0.13029315960912052,
|
| 35 |
+
"grad_norm": 1.6511605978012085,
|
| 36 |
+
"learning_rate": 3.3548387096774194e-06,
|
| 37 |
+
"loss": 0.9679,
|
| 38 |
+
"step": 40
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.16286644951140064,
|
| 42 |
+
"grad_norm": 0.7357141971588135,
|
| 43 |
+
"learning_rate": 4.21505376344086e-06,
|
| 44 |
+
"loss": 0.7937,
|
| 45 |
+
"step": 50
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.19543973941368079,
|
| 49 |
+
"grad_norm": 0.598514974117279,
|
| 50 |
+
"learning_rate": 5.075268817204301e-06,
|
| 51 |
+
"loss": 0.6905,
|
| 52 |
+
"step": 60
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"epoch": 0.2280130293159609,
|
| 56 |
+
"grad_norm": 0.6065505743026733,
|
| 57 |
+
"learning_rate": 5.935483870967741e-06,
|
| 58 |
+
"loss": 0.6328,
|
| 59 |
+
"step": 70
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"epoch": 0.26058631921824105,
|
| 63 |
+
"grad_norm": 0.5301859378814697,
|
| 64 |
+
"learning_rate": 6.7956989247311825e-06,
|
| 65 |
+
"loss": 0.5722,
|
| 66 |
+
"step": 80
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"epoch": 0.2931596091205212,
|
| 70 |
+
"grad_norm": 0.5616416335105896,
|
| 71 |
+
"learning_rate": 7.655913978494624e-06,
|
| 72 |
+
"loss": 0.5132,
|
| 73 |
+
"step": 90
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"epoch": 0.3257328990228013,
|
| 77 |
+
"grad_norm": 0.7361940145492554,
|
| 78 |
+
"learning_rate": 7.998963539365396e-06,
|
| 79 |
+
"loss": 0.4687,
|
| 80 |
+
"step": 100
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.3257328990228013,
|
| 84 |
+
"eval_loss": 0.4614461660385132,
|
| 85 |
+
"eval_runtime": 33.8621,
|
| 86 |
+
"eval_samples_per_second": 7.619,
|
| 87 |
+
"eval_steps_per_second": 3.81,
|
| 88 |
+
"step": 100
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"epoch": 0.3583061889250814,
|
| 92 |
+
"grad_norm": 0.6860578656196594,
|
| 93 |
+
"learning_rate": 7.992631558305708e-06,
|
| 94 |
+
"loss": 0.4247,
|
| 95 |
+
"step": 110
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"epoch": 0.39087947882736157,
|
| 99 |
+
"grad_norm": 0.6234003901481628,
|
| 100 |
+
"learning_rate": 7.980552510965744e-06,
|
| 101 |
+
"loss": 0.38,
|
| 102 |
+
"step": 120
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"epoch": 0.4234527687296417,
|
| 106 |
+
"grad_norm": 0.7827787399291992,
|
| 107 |
+
"learning_rate": 7.962743784145322e-06,
|
| 108 |
+
"loss": 0.3475,
|
| 109 |
+
"step": 130
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"epoch": 0.4560260586319218,
|
| 113 |
+
"grad_norm": 1.0882517099380493,
|
| 114 |
+
"learning_rate": 7.939231012048832e-06,
|
| 115 |
+
"loss": 0.2904,
|
| 116 |
+
"step": 140
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"epoch": 0.48859934853420195,
|
| 120 |
+
"grad_norm": 0.9678266048431396,
|
| 121 |
+
"learning_rate": 7.910048039386883e-06,
|
| 122 |
+
"loss": 0.2646,
|
| 123 |
+
"step": 150
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 0.5211726384364821,
|
| 127 |
+
"grad_norm": 1.0340553522109985,
|
| 128 |
+
"learning_rate": 7.875236872659625e-06,
|
| 129 |
+
"loss": 0.2408,
|
| 130 |
+
"step": 160
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.5537459283387622,
|
| 134 |
+
"grad_norm": 0.8255159258842468,
|
| 135 |
+
"learning_rate": 7.834847619691822e-06,
|
| 136 |
+
"loss": 0.1985,
|
| 137 |
+
"step": 170
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"epoch": 0.5863192182410424,
|
| 141 |
+
"grad_norm": 0.9649443626403809,
|
| 142 |
+
"learning_rate": 7.788938417506746e-06,
|
| 143 |
+
"loss": 0.1981,
|
| 144 |
+
"step": 180
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"epoch": 0.6188925081433225,
|
| 148 |
+
"grad_norm": 0.7817046642303467,
|
| 149 |
+
"learning_rate": 7.737575348642683e-06,
|
| 150 |
+
"loss": 0.1947,
|
| 151 |
+
"step": 190
|
| 152 |
+
},
|
| 153 |
+
{
|
| 154 |
+
"epoch": 0.6514657980456026,
|
| 155 |
+
"grad_norm": 0.7640238404273987,
|
| 156 |
+
"learning_rate": 7.680832346032546e-06,
|
| 157 |
+
"loss": 0.1752,
|
| 158 |
+
"step": 200
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"epoch": 0.6514657980456026,
|
| 162 |
+
"eval_loss": 0.1747174710035324,
|
| 163 |
+
"eval_runtime": 33.2887,
|
| 164 |
+
"eval_samples_per_second": 7.75,
|
| 165 |
+
"eval_steps_per_second": 3.875,
|
| 166 |
+
"step": 200
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"epoch": 0.6840390879478827,
|
| 170 |
+
"grad_norm": 0.701442301273346,
|
| 171 |
+
"learning_rate": 7.618791086583449e-06,
|
| 172 |
+
"loss": 0.1768,
|
| 173 |
+
"step": 210
|
| 174 |
+
},
|
| 175 |
+
{
|
| 176 |
+
"epoch": 0.7166123778501629,
|
| 177 |
+
"grad_norm": 0.8486807942390442,
|
| 178 |
+
"learning_rate": 7.5515408736095e-06,
|
| 179 |
+
"loss": 0.1667,
|
| 180 |
+
"step": 220
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"epoch": 0.749185667752443,
|
| 184 |
+
"grad_norm": 0.9864675998687744,
|
| 185 |
+
"learning_rate": 7.4791785082869865e-06,
|
| 186 |
+
"loss": 0.1505,
|
| 187 |
+
"step": 230
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"epoch": 0.7817589576547231,
|
| 191 |
+
"grad_norm": 0.9136099815368652,
|
| 192 |
+
"learning_rate": 7.401808150317004e-06,
|
| 193 |
+
"loss": 0.1518,
|
| 194 |
+
"step": 240
|
| 195 |
+
},
|
| 196 |
+
{
|
| 197 |
+
"epoch": 0.8143322475570033,
|
| 198 |
+
"grad_norm": 0.6785700917243958,
|
| 199 |
+
"learning_rate": 7.3195411679961005e-06,
|
| 200 |
+
"loss": 0.1485,
|
| 201 |
+
"step": 250
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"epoch": 0.8469055374592834,
|
| 205 |
+
"grad_norm": 0.9049308896064758,
|
| 206 |
+
"learning_rate": 7.232495977910721e-06,
|
| 207 |
+
"loss": 0.144,
|
| 208 |
+
"step": 260
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"epoch": 0.8794788273615635,
|
| 212 |
+
"grad_norm": 0.8609828352928162,
|
| 213 |
+
"learning_rate": 7.140797874486235e-06,
|
| 214 |
+
"loss": 0.1471,
|
| 215 |
+
"step": 270
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"epoch": 0.9120521172638436,
|
| 219 |
+
"grad_norm": 0.8438140749931335,
|
| 220 |
+
"learning_rate": 7.044578849635858e-06,
|
| 221 |
+
"loss": 0.1424,
|
| 222 |
+
"step": 280
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"epoch": 0.9446254071661238,
|
| 226 |
+
"grad_norm": 0.7648624181747437,
|
| 227 |
+
"learning_rate": 6.943977402769108e-06,
|
| 228 |
+
"loss": 0.1385,
|
| 229 |
+
"step": 290
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"epoch": 0.9771986970684039,
|
| 233 |
+
"grad_norm": 0.6212359666824341,
|
| 234 |
+
"learning_rate": 6.839138341433236e-06,
|
| 235 |
+
"loss": 0.1428,
|
| 236 |
+
"step": 300
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"epoch": 0.9771986970684039,
|
| 240 |
+
"eval_loss": 0.1377791315317154,
|
| 241 |
+
"eval_runtime": 33.2415,
|
| 242 |
+
"eval_samples_per_second": 7.761,
|
| 243 |
+
"eval_steps_per_second": 3.881,
|
| 244 |
+
"step": 300
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"epoch": 1.009771986970684,
|
| 248 |
+
"grad_norm": 0.5962893962860107,
|
| 249 |
+
"learning_rate": 6.730212572874616e-06,
|
| 250 |
+
"loss": 0.1364,
|
| 251 |
+
"step": 310
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"epoch": 1.0423452768729642,
|
| 255 |
+
"grad_norm": 0.7699111700057983,
|
| 256 |
+
"learning_rate": 6.6173568868201244e-06,
|
| 257 |
+
"loss": 0.1332,
|
| 258 |
+
"step": 320
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"epoch": 1.0749185667752443,
|
| 262 |
+
"grad_norm": 0.6283778548240662,
|
| 263 |
+
"learning_rate": 6.500733729791155e-06,
|
| 264 |
+
"loss": 0.1254,
|
| 265 |
+
"step": 330
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 1.1074918566775245,
|
| 269 |
+
"grad_norm": 0.623935341835022,
|
| 270 |
+
"learning_rate": 6.380510971275159e-06,
|
| 271 |
+
"loss": 0.13,
|
| 272 |
+
"step": 340
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"epoch": 1.1400651465798046,
|
| 276 |
+
"grad_norm": 0.6022305488586426,
|
| 277 |
+
"learning_rate": 6.256861662091248e-06,
|
| 278 |
+
"loss": 0.138,
|
| 279 |
+
"step": 350
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 1.1726384364820848,
|
| 283 |
+
"grad_norm": 0.716827392578125,
|
| 284 |
+
"learning_rate": 6.1299637852977185e-06,
|
| 285 |
+
"loss": 0.1363,
|
| 286 |
+
"step": 360
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"epoch": 1.205211726384365,
|
| 290 |
+
"grad_norm": 0.7210624814033508,
|
| 291 |
+
"learning_rate": 6e-06,
|
| 292 |
+
"loss": 0.1371,
|
| 293 |
+
"step": 370
|
| 294 |
+
},
|
| 295 |
+
{
|
| 296 |
+
"epoch": 1.237785016286645,
|
| 297 |
+
"grad_norm": 0.5957107543945312,
|
| 298 |
+
"learning_rate": 5.867157378427834e-06,
|
| 299 |
+
"loss": 0.1308,
|
| 300 |
+
"step": 380
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"epoch": 1.2703583061889252,
|
| 304 |
+
"grad_norm": 0.6254829168319702,
|
| 305 |
+
"learning_rate": 5.731627136660109e-06,
|
| 306 |
+
"loss": 0.1298,
|
| 307 |
+
"step": 390
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"epoch": 1.3029315960912053,
|
| 311 |
+
"grad_norm": 0.5790061950683594,
|
| 312 |
+
"learning_rate": 5.593604359384966e-06,
|
| 313 |
+
"loss": 0.1312,
|
| 314 |
+
"step": 400
|
| 315 |
+
},
|
| 316 |
+
{
|
| 317 |
+
"epoch": 1.3029315960912053,
|
| 318 |
+
"eval_loss": 0.13056354224681854,
|
| 319 |
+
"eval_runtime": 33.286,
|
| 320 |
+
"eval_samples_per_second": 7.751,
|
| 321 |
+
"eval_steps_per_second": 3.876,
|
| 322 |
+
"step": 400
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"epoch": 1.3355048859934853,
|
| 326 |
+
"grad_norm": 0.6293231844902039,
|
| 327 |
+
"learning_rate": 5.453287719091365e-06,
|
| 328 |
+
"loss": 0.1342,
|
| 329 |
+
"step": 410
|
| 330 |
+
},
|
| 331 |
+
{
|
| 332 |
+
"epoch": 1.3680781758957654,
|
| 333 |
+
"grad_norm": 0.7954932451248169,
|
| 334 |
+
"learning_rate": 5.3108791900962995e-06,
|
| 335 |
+
"loss": 0.1312,
|
| 336 |
+
"step": 420
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"epoch": 1.4006514657980456,
|
| 340 |
+
"grad_norm": 0.5331751108169556,
|
| 341 |
+
"learning_rate": 5.1665837578192995e-06,
|
| 342 |
+
"loss": 0.1319,
|
| 343 |
+
"step": 430
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"epoch": 1.4332247557003257,
|
| 347 |
+
"grad_norm": 0.7147168517112732,
|
| 348 |
+
"learning_rate": 5.020609123722704e-06,
|
| 349 |
+
"loss": 0.1307,
|
| 350 |
+
"step": 440
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"epoch": 1.4657980456026058,
|
| 354 |
+
"grad_norm": 0.6740135550498962,
|
| 355 |
+
"learning_rate": 4.873165406342406e-06,
|
| 356 |
+
"loss": 0.133,
|
| 357 |
+
"step": 450
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"epoch": 1.498371335504886,
|
| 361 |
+
"grad_norm": 0.6303773522377014,
|
| 362 |
+
"learning_rate": 4.724464838839423e-06,
|
| 363 |
+
"loss": 0.1203,
|
| 364 |
+
"step": 460
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"epoch": 1.5309446254071661,
|
| 368 |
+
"grad_norm": 0.6301987171173096,
|
| 369 |
+
"learning_rate": 4.574721463507632e-06,
|
| 370 |
+
"loss": 0.1174,
|
| 371 |
+
"step": 470
|
| 372 |
+
},
|
| 373 |
+
{
|
| 374 |
+
"epoch": 1.5635179153094463,
|
| 375 |
+
"grad_norm": 0.4884192943572998,
|
| 376 |
+
"learning_rate": 4.424150823677419e-06,
|
| 377 |
+
"loss": 0.1221,
|
| 378 |
+
"step": 480
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"epoch": 1.5960912052117264,
|
| 382 |
+
"grad_norm": 0.8104236721992493,
|
| 383 |
+
"learning_rate": 4.272969653458684e-06,
|
| 384 |
+
"loss": 0.1248,
|
| 385 |
+
"step": 490
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 1.6286644951140063,
|
| 389 |
+
"grad_norm": 0.6095107197761536,
|
| 390 |
+
"learning_rate": 4.1213955657698496e-06,
|
| 391 |
+
"loss": 0.1221,
|
| 392 |
+
"step": 500
|
| 393 |
+
},
|
| 394 |
+
{
|
| 395 |
+
"epoch": 1.6286644951140063,
|
| 396 |
+
"eval_loss": 0.12636995315551758,
|
| 397 |
+
"eval_runtime": 33.9806,
|
| 398 |
+
"eval_samples_per_second": 7.593,
|
| 399 |
+
"eval_steps_per_second": 3.796,
|
| 400 |
+
"step": 500
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 1.6612377850162865,
|
| 404 |
+
"grad_norm": 0.5424883961677551,
|
| 405 |
+
"learning_rate": 3.969646739101868e-06,
|
| 406 |
+
"loss": 0.1196,
|
| 407 |
+
"step": 510
|
| 408 |
+
},
|
| 409 |
+
{
|
| 410 |
+
"epoch": 1.6938110749185666,
|
| 411 |
+
"grad_norm": 0.8408002257347107,
|
| 412 |
+
"learning_rate": 3.817941603468146e-06,
|
| 413 |
+
"loss": 0.1249,
|
| 414 |
+
"step": 520
|
| 415 |
+
},
|
| 416 |
+
{
|
| 417 |
+
"epoch": 1.7263843648208468,
|
| 418 |
+
"grad_norm": 0.6321083307266235,
|
| 419 |
+
"learning_rate": 3.666498525992426e-06,
|
| 420 |
+
"loss": 0.1258,
|
| 421 |
+
"step": 530
|
| 422 |
+
},
|
| 423 |
+
{
|
| 424 |
+
"epoch": 1.758957654723127,
|
| 425 |
+
"grad_norm": 0.705021321773529,
|
| 426 |
+
"learning_rate": 3.5155354965871845e-06,
|
| 427 |
+
"loss": 0.1259,
|
| 428 |
+
"step": 540
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"epoch": 1.791530944625407,
|
| 432 |
+
"grad_norm": 0.5481059551239014,
|
| 433 |
+
"learning_rate": 3.3652698141749946e-06,
|
| 434 |
+
"loss": 0.1273,
|
| 435 |
+
"step": 550
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"epoch": 1.8241042345276872,
|
| 439 |
+
"grad_norm": 0.5651680827140808,
|
| 440 |
+
"learning_rate": 3.215917773904527e-06,
|
| 441 |
+
"loss": 0.1218,
|
| 442 |
+
"step": 560
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"epoch": 1.8566775244299674,
|
| 446 |
+
"grad_norm": 0.9432061314582825,
|
| 447 |
+
"learning_rate": 3.067694355811374e-06,
|
| 448 |
+
"loss": 0.1267,
|
| 449 |
+
"step": 570
|
| 450 |
+
},
|
| 451 |
+
{
|
| 452 |
+
"epoch": 1.8892508143322475,
|
| 453 |
+
"grad_norm": 0.7050531506538391,
|
| 454 |
+
"learning_rate": 2.9208129153719025e-06,
|
| 455 |
+
"loss": 0.1286,
|
| 456 |
+
"step": 580
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"epoch": 1.9218241042345277,
|
| 460 |
+
"grad_norm": 0.6143736243247986,
|
| 461 |
+
"learning_rate": 2.7754848763955035e-06,
|
| 462 |
+
"loss": 0.1236,
|
| 463 |
+
"step": 590
|
| 464 |
+
},
|
| 465 |
+
{
|
| 466 |
+
"epoch": 1.9543973941368078,
|
| 467 |
+
"grad_norm": 0.5079554319381714,
|
| 468 |
+
"learning_rate": 2.631919426697325e-06,
|
| 469 |
+
"loss": 0.1281,
|
| 470 |
+
"step": 600
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"epoch": 1.9543973941368078,
|
| 474 |
+
"eval_loss": 0.12330074608325958,
|
| 475 |
+
"eval_runtime": 34.0218,
|
| 476 |
+
"eval_samples_per_second": 7.583,
|
| 477 |
+
"eval_steps_per_second": 3.792,
|
| 478 |
+
"step": 600
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 1.986970684039088,
|
| 482 |
+
"grad_norm": 0.6454936861991882,
|
| 483 |
+
"learning_rate": 2.490323216989543e-06,
|
| 484 |
+
"loss": 0.127,
|
| 485 |
+
"step": 610
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"epoch": 2.019543973941368,
|
| 489 |
+
"grad_norm": 0.5652497410774231,
|
| 490 |
+
"learning_rate": 2.35090006342457e-06,
|
| 491 |
+
"loss": 0.1288,
|
| 492 |
+
"step": 620
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"epoch": 2.0521172638436482,
|
| 496 |
+
"grad_norm": 0.5710923671722412,
|
| 497 |
+
"learning_rate": 2.2138506542184e-06,
|
| 498 |
+
"loss": 0.1151,
|
| 499 |
+
"step": 630
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 2.0846905537459284,
|
| 503 |
+
"grad_norm": 0.5721701383590698,
|
| 504 |
+
"learning_rate": 2.079372260776338e-06,
|
| 505 |
+
"loss": 0.1187,
|
| 506 |
+
"step": 640
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"epoch": 2.1172638436482085,
|
| 510 |
+
"grad_norm": 0.6961202025413513,
|
| 511 |
+
"learning_rate": 1.9476584537369703e-06,
|
| 512 |
+
"loss": 0.1236,
|
| 513 |
+
"step": 650
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 2.1498371335504887,
|
| 517 |
+
"grad_norm": 0.6558916568756104,
|
| 518 |
+
"learning_rate": 1.8188988243430696e-06,
|
| 519 |
+
"loss": 0.1118,
|
| 520 |
+
"step": 660
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 2.182410423452769,
|
| 524 |
+
"grad_norm": 0.6206583976745605,
|
| 525 |
+
"learning_rate": 1.6932787115405317e-06,
|
| 526 |
+
"loss": 0.1207,
|
| 527 |
+
"step": 670
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 2.214983713355049,
|
| 531 |
+
"grad_norm": 0.5952445864677429,
|
| 532 |
+
"learning_rate": 1.5709789351981212e-06,
|
| 533 |
+
"loss": 0.1208,
|
| 534 |
+
"step": 680
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"epoch": 2.247557003257329,
|
| 538 |
+
"grad_norm": 0.6680878400802612,
|
| 539 |
+
"learning_rate": 1.4521755358320865e-06,
|
| 540 |
+
"loss": 0.1222,
|
| 541 |
+
"step": 690
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 2.2801302931596092,
|
| 545 |
+
"grad_norm": 0.5293084383010864,
|
| 546 |
+
"learning_rate": 1.3370395212102378e-06,
|
| 547 |
+
"loss": 0.1136,
|
| 548 |
+
"step": 700
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 2.2801302931596092,
|
| 552 |
+
"eval_loss": 0.1221059188246727,
|
| 553 |
+
"eval_runtime": 34.0931,
|
| 554 |
+
"eval_samples_per_second": 7.568,
|
| 555 |
+
"eval_steps_per_second": 3.784,
|
| 556 |
+
"step": 700
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"epoch": 2.3127035830618894,
|
| 560 |
+
"grad_norm": 0.6006386280059814,
|
| 561 |
+
"learning_rate": 1.2257366202002693e-06,
|
| 562 |
+
"loss": 0.1241,
|
| 563 |
+
"step": 710
|
| 564 |
+
},
|
| 565 |
+
{
|
| 566 |
+
"epoch": 2.3452768729641695,
|
| 567 |
+
"grad_norm": 0.6543139815330505,
|
| 568 |
+
"learning_rate": 1.1184270442166187e-06,
|
| 569 |
+
"loss": 0.1265,
|
| 570 |
+
"step": 720
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"epoch": 2.3778501628664497,
|
| 574 |
+
"grad_norm": 0.694369375705719,
|
| 575 |
+
"learning_rate": 1.015265256609258e-06,
|
| 576 |
+
"loss": 0.121,
|
| 577 |
+
"step": 730
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"epoch": 2.41042345276873,
|
| 581 |
+
"grad_norm": 0.5214750170707703,
|
| 582 |
+
"learning_rate": 9.163997503263364e-07,
|
| 583 |
+
"loss": 0.1215,
|
| 584 |
+
"step": 740
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"epoch": 2.44299674267101,
|
| 588 |
+
"grad_norm": 0.8416522145271301,
|
| 589 |
+
"learning_rate": 8.219728341707424e-07,
|
| 590 |
+
"loss": 0.1229,
|
| 591 |
+
"step": 750
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 2.47557003257329,
|
| 595 |
+
"grad_norm": 0.5506000518798828,
|
| 596 |
+
"learning_rate": 7.32120427958232e-07,
|
| 597 |
+
"loss": 0.1176,
|
| 598 |
+
"step": 760
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"epoch": 2.5081433224755703,
|
| 602 |
+
"grad_norm": 0.6719224452972412,
|
| 603 |
+
"learning_rate": 6.469718668719827e-07,
|
| 604 |
+
"loss": 0.1201,
|
| 605 |
+
"step": 770
|
| 606 |
+
},
|
| 607 |
+
{
|
| 608 |
+
"epoch": 2.5407166123778504,
|
| 609 |
+
"grad_norm": 0.7880155444145203,
|
| 610 |
+
"learning_rate": 5.66649715295179e-07,
|
| 611 |
+
"loss": 0.1107,
|
| 612 |
+
"step": 780
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"epoch": 2.5732899022801305,
|
| 616 |
+
"grad_norm": 0.7107143402099609,
|
| 617 |
+
"learning_rate": 4.91269590389623e-07,
|
| 618 |
+
"loss": 0.1237,
|
| 619 |
+
"step": 790
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"epoch": 2.6058631921824107,
|
| 623 |
+
"grad_norm": 0.5582589507102966,
|
| 624 |
+
"learning_rate": 4.2093999567428893e-07,
|
| 625 |
+
"loss": 0.1077,
|
| 626 |
+
"step": 800
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"epoch": 2.6058631921824107,
|
| 630 |
+
"eval_loss": 0.12127382308244705,
|
| 631 |
+
"eval_runtime": 34.3481,
|
| 632 |
+
"eval_samples_per_second": 7.511,
|
| 633 |
+
"eval_steps_per_second": 3.756,
|
| 634 |
+
"step": 800
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"epoch": 2.6384364820846904,
|
| 638 |
+
"grad_norm": 0.626492977142334,
|
| 639 |
+
"learning_rate": 3.557621648433935e-07,
|
| 640 |
+
"loss": 0.114,
|
| 641 |
+
"step": 810
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"epoch": 2.6710097719869705,
|
| 645 |
+
"grad_norm": 0.658108651638031,
|
| 646 |
+
"learning_rate": 2.958299160487789e-07,
|
| 647 |
+
"loss": 0.1213,
|
| 648 |
+
"step": 820
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"epoch": 2.7035830618892507,
|
| 652 |
+
"grad_norm": 0.5767033696174622,
|
| 653 |
+
"learning_rate": 2.412295168563667e-07,
|
| 654 |
+
"loss": 0.1177,
|
| 655 |
+
"step": 830
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 2.736156351791531,
|
| 659 |
+
"grad_norm": 0.6014522910118103,
|
| 660 |
+
"learning_rate": 1.9203956007105292e-07,
|
| 661 |
+
"loss": 0.1205,
|
| 662 |
+
"step": 840
|
| 663 |
+
},
|
| 664 |
+
{
|
| 665 |
+
"epoch": 2.768729641693811,
|
| 666 |
+
"grad_norm": 0.5462273955345154,
|
| 667 |
+
"learning_rate": 1.4833085060880347e-07,
|
| 668 |
+
"loss": 0.1195,
|
| 669 |
+
"step": 850
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 2.801302931596091,
|
| 673 |
+
"grad_norm": 0.6881915926933289,
|
| 674 |
+
"learning_rate": 1.1016630357877276e-07,
|
| 675 |
+
"loss": 0.1217,
|
| 676 |
+
"step": 860
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"epoch": 2.8338762214983713,
|
| 680 |
+
"grad_norm": 0.7328351140022278,
|
| 681 |
+
"learning_rate": 7.760085372215508e-08,
|
| 682 |
+
"loss": 0.1251,
|
| 683 |
+
"step": 870
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"epoch": 2.8664495114006514,
|
| 687 |
+
"grad_norm": 0.6310160756111145,
|
| 688 |
+
"learning_rate": 5.0681376338121527e-08,
|
| 689 |
+
"loss": 0.1217,
|
| 690 |
+
"step": 880
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"epoch": 2.8990228013029316,
|
| 694 |
+
"grad_norm": 0.6388233304023743,
|
| 695 |
+
"learning_rate": 2.944661981066243e-08,
|
| 696 |
+
"loss": 0.1276,
|
| 697 |
+
"step": 890
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"epoch": 2.9315960912052117,
|
| 701 |
+
"grad_norm": 0.6657443046569824,
|
| 702 |
+
"learning_rate": 1.3927149833463659e-08,
|
| 703 |
+
"loss": 0.1149,
|
| 704 |
+
"step": 900
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"epoch": 2.9315960912052117,
|
| 708 |
+
"eval_loss": 0.12107826769351959,
|
| 709 |
+
"eval_runtime": 34.4059,
|
| 710 |
+
"eval_samples_per_second": 7.499,
|
| 711 |
+
"eval_steps_per_second": 3.749,
|
| 712 |
+
"step": 900
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"epoch": 2.964169381107492,
|
| 716 |
+
"grad_norm": 0.7934221029281616,
|
| 717 |
+
"learning_rate": 4.145305413089772e-09,
|
| 718 |
+
"loss": 0.1124,
|
| 719 |
+
"step": 910
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"epoch": 2.996742671009772,
|
| 723 |
+
"grad_norm": 0.6388999819755554,
|
| 724 |
+
"learning_rate": 1.1516671381528454e-10,
|
| 725 |
+
"loss": 0.124,
|
| 726 |
+
"step": 920
|
| 727 |
+
}
|
| 728 |
+
],
|
| 729 |
+
"logging_steps": 10,
|
| 730 |
+
"max_steps": 921,
|
| 731 |
+
"num_input_tokens_seen": 0,
|
| 732 |
+
"num_train_epochs": 3,
|
| 733 |
+
"save_steps": 200,
|
| 734 |
+
"stateful_callbacks": {
|
| 735 |
+
"TrainerControl": {
|
| 736 |
+
"args": {
|
| 737 |
+
"should_epoch_stop": false,
|
| 738 |
+
"should_evaluate": false,
|
| 739 |
+
"should_log": false,
|
| 740 |
+
"should_save": true,
|
| 741 |
+
"should_training_stop": true
|
| 742 |
+
},
|
| 743 |
+
"attributes": {}
|
| 744 |
+
}
|
| 745 |
+
},
|
| 746 |
+
"total_flos": 9.388320321760666e+17,
|
| 747 |
+
"train_batch_size": 4,
|
| 748 |
+
"trial_name": null,
|
| 749 |
+
"trial_params": null
|
| 750 |
+
}
|
checkpoint-921/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e2f027ae8657c2a4b77455d8d9091d62296a49bc575e275ac46cdfe8ee98a91
|
| 3 |
+
size 5777
|
checkpoint-921/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
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": "right",
|
| 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
|
|
|