Upload TribalKnowledge-Qwen2.5-7B from TribalKnowledge-Qwen2.5-7B-output
Browse files- .gitattributes +3 -0
- README.md +62 -0
- adapter_config.json +48 -0
- adapter_model.safetensors +3 -0
- chat_template.jinja +54 -0
- checkpoint-1000/README.md +209 -0
- checkpoint-1000/adapter_config.json +48 -0
- checkpoint-1000/adapter_model.safetensors +3 -0
- checkpoint-1000/chat_template.jinja +54 -0
- checkpoint-1000/optimizer.pt +3 -0
- checkpoint-1000/rng_state.pth +3 -0
- checkpoint-1000/scheduler.pt +3 -0
- checkpoint-1000/tokenizer.json +3 -0
- checkpoint-1000/tokenizer_config.json +29 -0
- checkpoint-1000/trainer_state.json +434 -0
- checkpoint-1000/training_args.bin +3 -0
- checkpoint-1253/README.md +209 -0
- checkpoint-1253/adapter_config.json +48 -0
- checkpoint-1253/adapter_model.safetensors +3 -0
- checkpoint-1253/chat_template.jinja +54 -0
- checkpoint-1253/optimizer.pt +3 -0
- checkpoint-1253/rng_state.pth +3 -0
- checkpoint-1253/scheduler.pt +3 -0
- checkpoint-1253/tokenizer.json +3 -0
- checkpoint-1253/tokenizer_config.json +29 -0
- checkpoint-1253/trainer_state.json +534 -0
- checkpoint-1253/training_args.bin +3 -0
- tokenizer.json +3 -0
- tokenizer_config.json +29 -0
- training_args.bin +3 -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-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-1253/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,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: TribalKnowledge-Qwen2.5-7B-output
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen2.5-7B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
licence: license
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Model Card for TribalKnowledge-Qwen2.5-7B-output
|
| 16 |
+
|
| 17 |
+
This model is a fine-tuned version of [Qwen/Qwen2.5-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct).
|
| 18 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 19 |
+
|
| 20 |
+
## Quick start
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import pipeline
|
| 24 |
+
|
| 25 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 26 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 27 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 28 |
+
print(output["generated_text"])
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training procedure
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with SFT.
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.19.1
|
| 42 |
+
- TRL: 1.2.0
|
| 43 |
+
- Transformers: 5.5.1
|
| 44 |
+
- Pytorch: 2.11.0+rocm7.2
|
| 45 |
+
- Datasets: 4.8.4
|
| 46 |
+
- Tokenizers: 0.22.2
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Cite TRL as:
|
| 53 |
+
|
| 54 |
+
```bibtex
|
| 55 |
+
@software{vonwerra2020trl,
|
| 56 |
+
title = {{TRL: Transformers Reinforcement Learning}},
|
| 57 |
+
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
|
| 58 |
+
license = {Apache-2.0},
|
| 59 |
+
url = {https://github.com/huggingface/trl},
|
| 60 |
+
year = {2020}
|
| 61 |
+
}
|
| 62 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen2.5-7B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 64,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"up_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"o_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": null,
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67822e201676faf4acc202917d7ce8c9b3716edad0425b94f91493699ce15bc9
|
| 3 |
+
size 323014560
|
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-1000/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen2.5-7B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.19.1
|
checkpoint-1000/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen2.5-7B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 64,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"up_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"o_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": null,
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
checkpoint-1000/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0e65ab5b12a04e746fe5af69338b8a5f1d0f5ad713d400ad9103ddeda56b1b1
|
| 3 |
+
size 323014560
|
checkpoint-1000/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-1000/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8ab8881ad552c708f05b1df15756dbbf53c915cae7be43bad0ab241504e5c73
|
| 3 |
+
size 646253883
|
checkpoint-1000/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e5ca7bc203b8fd40a650d807ec33b2c65f4b1dcf8365628c3f314800e33c39d
|
| 3 |
+
size 14645
|
checkpoint-1000/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9061ebd756ba5e23b94e9209f0337bed8e63f3ecfb6d09980ac886d6bccf3bc
|
| 3 |
+
size 1465
|
checkpoint-1000/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
checkpoint-1000/tokenizer_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"model_max_length": 131072,
|
| 25 |
+
"pad_token": "<|im_end|>",
|
| 26 |
+
"split_special_tokens": false,
|
| 27 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 28 |
+
"unk_token": null
|
| 29 |
+
}
|
checkpoint-1000/trainer_state.json
ADDED
|
@@ -0,0 +1,434 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.7986821744122199,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1000,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.306920379027724,
|
| 14 |
+
"epoch": 0.019967054360305495,
|
| 15 |
+
"grad_norm": 0.03515625,
|
| 16 |
+
"learning_rate": 0.0001263157894736842,
|
| 17 |
+
"loss": 2.448968811035156,
|
| 18 |
+
"mean_token_accuracy": 0.48531667422503233,
|
| 19 |
+
"num_tokens": 122713.0,
|
| 20 |
+
"step": 25
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.053416675031185,
|
| 24 |
+
"epoch": 0.03993410872061099,
|
| 25 |
+
"grad_norm": 0.0302734375,
|
| 26 |
+
"learning_rate": 0.0001999595542133758,
|
| 27 |
+
"loss": 2.042926483154297,
|
| 28 |
+
"mean_token_accuracy": 0.5536270077899098,
|
| 29 |
+
"num_tokens": 245834.0,
|
| 30 |
+
"step": 50
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.019237674474716,
|
| 34 |
+
"epoch": 0.05990116308091649,
|
| 35 |
+
"grad_norm": 0.0245361328125,
|
| 36 |
+
"learning_rate": 0.00019956707906498044,
|
| 37 |
+
"loss": 2.0004498291015627,
|
| 38 |
+
"mean_token_accuracy": 0.562225787602365,
|
| 39 |
+
"num_tokens": 367174.0,
|
| 40 |
+
"step": 75
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.014568568766117,
|
| 44 |
+
"epoch": 0.07986821744122198,
|
| 45 |
+
"grad_norm": 0.029052734375,
|
| 46 |
+
"learning_rate": 0.00019875870121543717,
|
| 47 |
+
"loss": 1.9949961853027345,
|
| 48 |
+
"mean_token_accuracy": 0.5627686691284179,
|
| 49 |
+
"num_tokens": 487834.0,
|
| 50 |
+
"step": 100
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.9470337933301927,
|
| 54 |
+
"epoch": 0.09983527180152749,
|
| 55 |
+
"grad_norm": 0.0279541015625,
|
| 56 |
+
"learning_rate": 0.00019753779734842827,
|
| 57 |
+
"loss": 1.9355754089355468,
|
| 58 |
+
"mean_token_accuracy": 0.5725972962379455,
|
| 59 |
+
"num_tokens": 611352.0,
|
| 60 |
+
"step": 125
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.9996179219335317,
|
| 64 |
+
"epoch": 0.11980232616183298,
|
| 65 |
+
"grad_norm": 0.0286865234375,
|
| 66 |
+
"learning_rate": 0.0001959094673144354,
|
| 67 |
+
"loss": 1.9678744506835937,
|
| 68 |
+
"mean_token_accuracy": 0.5630620580911636,
|
| 69 |
+
"num_tokens": 735053.0,
|
| 70 |
+
"step": 150
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.0072034925222395,
|
| 74 |
+
"epoch": 0.13976938052213847,
|
| 75 |
+
"grad_norm": 0.0301513671875,
|
| 76 |
+
"learning_rate": 0.00019388051282810022,
|
| 77 |
+
"loss": 1.9737957763671874,
|
| 78 |
+
"mean_token_accuracy": 0.5624778818339109,
|
| 79 |
+
"num_tokens": 855860.0,
|
| 80 |
+
"step": 175
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.9725533105432986,
|
| 84 |
+
"epoch": 0.15973643488244396,
|
| 85 |
+
"grad_norm": 0.029296875,
|
| 86 |
+
"learning_rate": 0.0001914594090567099,
|
| 87 |
+
"loss": 1.9277491760253906,
|
| 88 |
+
"mean_token_accuracy": 0.5647629579156637,
|
| 89 |
+
"num_tokens": 977334.0,
|
| 90 |
+
"step": 200
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.9535374976694584,
|
| 94 |
+
"epoch": 0.17970348924274945,
|
| 95 |
+
"grad_norm": 0.033447265625,
|
| 96 |
+
"learning_rate": 0.00018865626921848615,
|
| 97 |
+
"loss": 1.9351695251464844,
|
| 98 |
+
"mean_token_accuracy": 0.5722655826061964,
|
| 99 |
+
"num_tokens": 1092583.0,
|
| 100 |
+
"step": 225
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.9489152195304633,
|
| 104 |
+
"epoch": 0.19967054360305497,
|
| 105 |
+
"grad_norm": 0.025634765625,
|
| 106 |
+
"learning_rate": 0.0001854828023385541,
|
| 107 |
+
"loss": 1.9120469665527344,
|
| 108 |
+
"mean_token_accuracy": 0.5757150813564658,
|
| 109 |
+
"num_tokens": 1212652.0,
|
| 110 |
+
"step": 250
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.997425957247615,
|
| 114 |
+
"epoch": 0.21963759796336046,
|
| 115 |
+
"grad_norm": 0.0235595703125,
|
| 116 |
+
"learning_rate": 0.00018195226433904957,
|
| 117 |
+
"loss": 1.9783148193359374,
|
| 118 |
+
"mean_token_accuracy": 0.566706589795649,
|
| 119 |
+
"num_tokens": 1332055.0,
|
| 120 |
+
"step": 275
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.9235536295175553,
|
| 124 |
+
"epoch": 0.23960465232366596,
|
| 125 |
+
"grad_norm": 0.032470703125,
|
| 126 |
+
"learning_rate": 0.00017807940266766593,
|
| 127 |
+
"loss": 1.9035797119140625,
|
| 128 |
+
"mean_token_accuracy": 0.5777761967480183,
|
| 129 |
+
"num_tokens": 1452841.0,
|
| 130 |
+
"step": 300
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.9555407621711494,
|
| 134 |
+
"epoch": 0.25957170668397145,
|
| 135 |
+
"grad_norm": 0.0247802734375,
|
| 136 |
+
"learning_rate": 0.00017388039469593428,
|
| 137 |
+
"loss": 1.922522735595703,
|
| 138 |
+
"mean_token_accuracy": 0.573435662984848,
|
| 139 |
+
"num_tokens": 1572803.0,
|
| 140 |
+
"step": 325
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.9522953194752335,
|
| 144 |
+
"epoch": 0.27953876104427694,
|
| 145 |
+
"grad_norm": 0.02978515625,
|
| 146 |
+
"learning_rate": 0.00016937278014455336,
|
| 147 |
+
"loss": 1.914853057861328,
|
| 148 |
+
"mean_token_accuracy": 0.5744891692698002,
|
| 149 |
+
"num_tokens": 1697419.0,
|
| 150 |
+
"step": 350
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.895245919264853,
|
| 154 |
+
"epoch": 0.29950581540458243,
|
| 155 |
+
"grad_norm": 0.026123046875,
|
| 156 |
+
"learning_rate": 0.00016457538781803623,
|
| 157 |
+
"loss": 1.8297265625,
|
| 158 |
+
"mean_token_accuracy": 0.5865043254941702,
|
| 159 |
+
"num_tokens": 1819231.0,
|
| 160 |
+
"step": 375
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.9276008826121689,
|
| 164 |
+
"epoch": 0.3194728697648879,
|
| 165 |
+
"grad_norm": 0.0302734375,
|
| 166 |
+
"learning_rate": 0.00015950825695471146,
|
| 167 |
+
"loss": 1.8969316101074218,
|
| 168 |
+
"mean_token_accuracy": 0.579356978982687,
|
| 169 |
+
"num_tokens": 1941170.0,
|
| 170 |
+
"step": 400
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.9401621558889746,
|
| 174 |
+
"epoch": 0.3394399241251934,
|
| 175 |
+
"grad_norm": 0.0291748046875,
|
| 176 |
+
"learning_rate": 0.0001541925535206084,
|
| 177 |
+
"loss": 1.9100968933105469,
|
| 178 |
+
"mean_token_accuracy": 0.5764700850099325,
|
| 179 |
+
"num_tokens": 2065882.0,
|
| 180 |
+
"step": 425
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.9133401766419411,
|
| 184 |
+
"epoch": 0.3594069784854989,
|
| 185 |
+
"grad_norm": 0.0303955078125,
|
| 186 |
+
"learning_rate": 0.000148650481796876,
|
| 187 |
+
"loss": 1.8422721862792968,
|
| 188 |
+
"mean_token_accuracy": 0.5874501725286245,
|
| 189 |
+
"num_tokens": 2185024.0,
|
| 190 |
+
"step": 450
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.9126300086826087,
|
| 194 |
+
"epoch": 0.3793740328458044,
|
| 195 |
+
"grad_norm": 0.03271484375,
|
| 196 |
+
"learning_rate": 0.00014290519163004495,
|
| 197 |
+
"loss": 1.8789381408691406,
|
| 198 |
+
"mean_token_accuracy": 0.5848022982478142,
|
| 199 |
+
"num_tokens": 2299587.0,
|
| 200 |
+
"step": 475
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.909918104019016,
|
| 204 |
+
"epoch": 0.39934108720610995,
|
| 205 |
+
"grad_norm": 0.032470703125,
|
| 206 |
+
"learning_rate": 0.0001369806817325581,
|
| 207 |
+
"loss": 1.8951301574707031,
|
| 208 |
+
"mean_token_accuracy": 0.582027070298791,
|
| 209 |
+
"num_tokens": 2421897.0,
|
| 210 |
+
"step": 500
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.9182585052400827,
|
| 214 |
+
"epoch": 0.41930814156641544,
|
| 215 |
+
"grad_norm": 0.031494140625,
|
| 216 |
+
"learning_rate": 0.00013090169943749476,
|
| 217 |
+
"loss": 1.8786566162109375,
|
| 218 |
+
"mean_token_accuracy": 0.5797786585241557,
|
| 219 |
+
"num_tokens": 2544369.0,
|
| 220 |
+
"step": 525
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.8837098168581725,
|
| 224 |
+
"epoch": 0.43927519592672093,
|
| 225 |
+
"grad_norm": 0.0301513671875,
|
| 226 |
+
"learning_rate": 0.00012469363732622296,
|
| 227 |
+
"loss": 1.8448243713378907,
|
| 228 |
+
"mean_token_accuracy": 0.5849873025715351,
|
| 229 |
+
"num_tokens": 2671654.0,
|
| 230 |
+
"step": 550
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.8790070757828652,
|
| 234 |
+
"epoch": 0.4592422502870264,
|
| 235 |
+
"grad_norm": 0.0289306640625,
|
| 236 |
+
"learning_rate": 0.00011838242716077917,
|
| 237 |
+
"loss": 1.8447459411621094,
|
| 238 |
+
"mean_token_accuracy": 0.5876961750537157,
|
| 239 |
+
"num_tokens": 2796033.0,
|
| 240 |
+
"step": 575
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.8867588526010513,
|
| 244 |
+
"epoch": 0.4792093046473319,
|
| 245 |
+
"grad_norm": 0.033447265625,
|
| 246 |
+
"learning_rate": 0.00011199443156402998,
|
| 247 |
+
"loss": 1.835140380859375,
|
| 248 |
+
"mean_token_accuracy": 0.5846484461426735,
|
| 249 |
+
"num_tokens": 2917243.0,
|
| 250 |
+
"step": 600
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.9055894463136793,
|
| 254 |
+
"epoch": 0.4991763590076374,
|
| 255 |
+
"grad_norm": 0.0283203125,
|
| 256 |
+
"learning_rate": 0.00010555633390008086,
|
| 257 |
+
"loss": 1.858441619873047,
|
| 258 |
+
"mean_token_accuracy": 0.5845886848121882,
|
| 259 |
+
"num_tokens": 3042703.0,
|
| 260 |
+
"step": 625
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.9573378081992268,
|
| 264 |
+
"epoch": 0.5191434133679429,
|
| 265 |
+
"grad_norm": 0.03173828125,
|
| 266 |
+
"learning_rate": 9.909502681491316e-05,
|
| 267 |
+
"loss": 1.8958790588378907,
|
| 268 |
+
"mean_token_accuracy": 0.5772438555955887,
|
| 269 |
+
"num_tokens": 3160162.0,
|
| 270 |
+
"step": 650
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.8727275183051824,
|
| 274 |
+
"epoch": 0.5391104677282484,
|
| 275 |
+
"grad_norm": 0.03173828125,
|
| 276 |
+
"learning_rate": 9.263749990282754e-05,
|
| 277 |
+
"loss": 1.8269801330566406,
|
| 278 |
+
"mean_token_accuracy": 0.5881718883663416,
|
| 279 |
+
"num_tokens": 3285704.0,
|
| 280 |
+
"step": 675
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.871655127387494,
|
| 284 |
+
"epoch": 0.5590775220885539,
|
| 285 |
+
"grad_norm": 0.0289306640625,
|
| 286 |
+
"learning_rate": 8.621072696792363e-05,
|
| 287 |
+
"loss": 1.8388119506835938,
|
| 288 |
+
"mean_token_accuracy": 0.5867326802760363,
|
| 289 |
+
"num_tokens": 3410119.0,
|
| 290 |
+
"step": 700
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.8627979960665106,
|
| 294 |
+
"epoch": 0.5790445764488594,
|
| 295 |
+
"grad_norm": 0.035888671875,
|
| 296 |
+
"learning_rate": 7.984155335153711e-05,
|
| 297 |
+
"loss": 1.799385986328125,
|
| 298 |
+
"mean_token_accuracy": 0.5873606249690055,
|
| 299 |
+
"num_tokens": 3533765.0,
|
| 300 |
+
"step": 725
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.8317018933594227,
|
| 304 |
+
"epoch": 0.5990116308091649,
|
| 305 |
+
"grad_norm": 0.0281982421875,
|
| 306 |
+
"learning_rate": 7.35565837962798e-05,
|
| 307 |
+
"loss": 1.7772984313964844,
|
| 308 |
+
"mean_token_accuracy": 0.5965435421466827,
|
| 309 |
+
"num_tokens": 3657321.0,
|
| 310 |
+
"step": 750
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.8882549648359417,
|
| 314 |
+
"epoch": 0.6189786851694704,
|
| 315 |
+
"grad_norm": 0.03076171875,
|
| 316 |
+
"learning_rate": 6.738207131508735e-05,
|
| 317 |
+
"loss": 1.8385765075683593,
|
| 318 |
+
"mean_token_accuracy": 0.59088682141155,
|
| 319 |
+
"num_tokens": 3779575.0,
|
| 320 |
+
"step": 775
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 1.8342267361842095,
|
| 324 |
+
"epoch": 0.6389457395297758,
|
| 325 |
+
"grad_norm": 0.032958984375,
|
| 326 |
+
"learning_rate": 6.134380752948085e-05,
|
| 327 |
+
"loss": 1.800379180908203,
|
| 328 |
+
"mean_token_accuracy": 0.5952950984984636,
|
| 329 |
+
"num_tokens": 3896543.0,
|
| 330 |
+
"step": 800
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.873757717087865,
|
| 334 |
+
"epoch": 0.6589127938900814,
|
| 335 |
+
"grad_norm": 0.03564453125,
|
| 336 |
+
"learning_rate": 5.546701493511106e-05,
|
| 337 |
+
"loss": 1.8183651733398438,
|
| 338 |
+
"mean_token_accuracy": 0.5902918418496848,
|
| 339 |
+
"num_tokens": 4018098.0,
|
| 340 |
+
"step": 825
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.83077443132177,
|
| 344 |
+
"epoch": 0.6788798482503868,
|
| 345 |
+
"grad_norm": 0.032470703125,
|
| 346 |
+
"learning_rate": 4.977624154460464e-05,
|
| 347 |
+
"loss": 1.7461175537109375,
|
| 348 |
+
"mean_token_accuracy": 0.598720720410347,
|
| 349 |
+
"num_tokens": 4141174.0,
|
| 350 |
+
"step": 850
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.918299620486796,
|
| 354 |
+
"epoch": 0.6988469026106924,
|
| 355 |
+
"grad_norm": 0.0301513671875,
|
| 356 |
+
"learning_rate": 4.42952583478004e-05,
|
| 357 |
+
"loss": 1.9020709228515624,
|
| 358 |
+
"mean_token_accuracy": 0.5798033401742577,
|
| 359 |
+
"num_tokens": 4259185.0,
|
| 360 |
+
"step": 875
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.8444363391213119,
|
| 364 |
+
"epoch": 0.7188139569709978,
|
| 365 |
+
"grad_norm": 0.0341796875,
|
| 366 |
+
"learning_rate": 3.904696001769571e-05,
|
| 367 |
+
"loss": 1.7869160461425782,
|
| 368 |
+
"mean_token_accuracy": 0.5964432079344988,
|
| 369 |
+
"num_tokens": 4377724.0,
|
| 370 |
+
"step": 900
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.8295260372944175,
|
| 374 |
+
"epoch": 0.7387810113313034,
|
| 375 |
+
"grad_norm": 0.031982421875,
|
| 376 |
+
"learning_rate": 3.4053269276865285e-05,
|
| 377 |
+
"loss": 1.778699951171875,
|
| 378 |
+
"mean_token_accuracy": 0.6018728485703468,
|
| 379 |
+
"num_tokens": 4497691.0,
|
| 380 |
+
"step": 925
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.8099911727011204,
|
| 384 |
+
"epoch": 0.7587480656916088,
|
| 385 |
+
"grad_norm": 0.03271484375,
|
| 386 |
+
"learning_rate": 2.9335045323824496e-05,
|
| 387 |
+
"loss": 1.7513389587402344,
|
| 388 |
+
"mean_token_accuracy": 0.6039503507316113,
|
| 389 |
+
"num_tokens": 4616131.0,
|
| 390 |
+
"step": 950
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.8742087873071431,
|
| 394 |
+
"epoch": 0.7787151200519143,
|
| 395 |
+
"grad_norm": 0.033203125,
|
| 396 |
+
"learning_rate": 2.491199670185008e-05,
|
| 397 |
+
"loss": 1.7982223510742188,
|
| 398 |
+
"mean_token_accuracy": 0.5908738762140274,
|
| 399 |
+
"num_tokens": 4737443.0,
|
| 400 |
+
"step": 975
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.869517589211464,
|
| 404 |
+
"epoch": 0.7986821744122199,
|
| 405 |
+
"grad_norm": 0.032958984375,
|
| 406 |
+
"learning_rate": 2.0802598974215226e-05,
|
| 407 |
+
"loss": 1.8264849853515626,
|
| 408 |
+
"mean_token_accuracy": 0.5888447714596987,
|
| 409 |
+
"num_tokens": 4858100.0,
|
| 410 |
+
"step": 1000
|
| 411 |
+
}
|
| 412 |
+
],
|
| 413 |
+
"logging_steps": 25,
|
| 414 |
+
"max_steps": 1253,
|
| 415 |
+
"num_input_tokens_seen": 0,
|
| 416 |
+
"num_train_epochs": 1,
|
| 417 |
+
"save_steps": 500,
|
| 418 |
+
"stateful_callbacks": {
|
| 419 |
+
"TrainerControl": {
|
| 420 |
+
"args": {
|
| 421 |
+
"should_epoch_stop": false,
|
| 422 |
+
"should_evaluate": false,
|
| 423 |
+
"should_log": false,
|
| 424 |
+
"should_save": true,
|
| 425 |
+
"should_training_stop": false
|
| 426 |
+
},
|
| 427 |
+
"attributes": {}
|
| 428 |
+
}
|
| 429 |
+
},
|
| 430 |
+
"total_flos": 2.10805585396224e+17,
|
| 431 |
+
"train_batch_size": 1,
|
| 432 |
+
"trial_name": null,
|
| 433 |
+
"trial_params": null
|
| 434 |
+
}
|
checkpoint-1000/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a25a38f0a1a1ae775e5c8899125798a7e119a818cb9e0858ea862fa1e8abf29
|
| 3 |
+
size 5649
|
checkpoint-1253/README.md
ADDED
|
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-7B-Instruct
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:Qwen/Qwen2.5-7B-Instruct
|
| 7 |
+
- lora
|
| 8 |
+
- sft
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Model Card for Model ID
|
| 14 |
+
|
| 15 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
### Model Description
|
| 22 |
+
|
| 23 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
- **Developed by:** [More Information Needed]
|
| 28 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 29 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 30 |
+
- **Model type:** [More Information Needed]
|
| 31 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 32 |
+
- **License:** [More Information Needed]
|
| 33 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 34 |
+
|
| 35 |
+
### Model Sources [optional]
|
| 36 |
+
|
| 37 |
+
<!-- Provide the basic links for the model. -->
|
| 38 |
+
|
| 39 |
+
- **Repository:** [More Information Needed]
|
| 40 |
+
- **Paper [optional]:** [More Information Needed]
|
| 41 |
+
- **Demo [optional]:** [More Information Needed]
|
| 42 |
+
|
| 43 |
+
## Uses
|
| 44 |
+
|
| 45 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 46 |
+
|
| 47 |
+
### Direct Use
|
| 48 |
+
|
| 49 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 50 |
+
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
### Downstream Use [optional]
|
| 54 |
+
|
| 55 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 56 |
+
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
### Out-of-Scope Use
|
| 60 |
+
|
| 61 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 62 |
+
|
| 63 |
+
[More Information Needed]
|
| 64 |
+
|
| 65 |
+
## Bias, Risks, and Limitations
|
| 66 |
+
|
| 67 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 68 |
+
|
| 69 |
+
[More Information Needed]
|
| 70 |
+
|
| 71 |
+
### Recommendations
|
| 72 |
+
|
| 73 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 74 |
+
|
| 75 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 76 |
+
|
| 77 |
+
## How to Get Started with the Model
|
| 78 |
+
|
| 79 |
+
Use the code below to get started with the model.
|
| 80 |
+
|
| 81 |
+
[More Information Needed]
|
| 82 |
+
|
| 83 |
+
## Training Details
|
| 84 |
+
|
| 85 |
+
### Training Data
|
| 86 |
+
|
| 87 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 88 |
+
|
| 89 |
+
[More Information Needed]
|
| 90 |
+
|
| 91 |
+
### Training Procedure
|
| 92 |
+
|
| 93 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 94 |
+
|
| 95 |
+
#### Preprocessing [optional]
|
| 96 |
+
|
| 97 |
+
[More Information Needed]
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
#### Training Hyperparameters
|
| 101 |
+
|
| 102 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 103 |
+
|
| 104 |
+
#### Speeds, Sizes, Times [optional]
|
| 105 |
+
|
| 106 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 107 |
+
|
| 108 |
+
[More Information Needed]
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 113 |
+
|
| 114 |
+
### Testing Data, Factors & Metrics
|
| 115 |
+
|
| 116 |
+
#### Testing Data
|
| 117 |
+
|
| 118 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 119 |
+
|
| 120 |
+
[More Information Needed]
|
| 121 |
+
|
| 122 |
+
#### Factors
|
| 123 |
+
|
| 124 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 125 |
+
|
| 126 |
+
[More Information Needed]
|
| 127 |
+
|
| 128 |
+
#### Metrics
|
| 129 |
+
|
| 130 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 131 |
+
|
| 132 |
+
[More Information Needed]
|
| 133 |
+
|
| 134 |
+
### Results
|
| 135 |
+
|
| 136 |
+
[More Information Needed]
|
| 137 |
+
|
| 138 |
+
#### Summary
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
## Model Examination [optional]
|
| 143 |
+
|
| 144 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 145 |
+
|
| 146 |
+
[More Information Needed]
|
| 147 |
+
|
| 148 |
+
## Environmental Impact
|
| 149 |
+
|
| 150 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 151 |
+
|
| 152 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 153 |
+
|
| 154 |
+
- **Hardware Type:** [More Information Needed]
|
| 155 |
+
- **Hours used:** [More Information Needed]
|
| 156 |
+
- **Cloud Provider:** [More Information Needed]
|
| 157 |
+
- **Compute Region:** [More Information Needed]
|
| 158 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 159 |
+
|
| 160 |
+
## Technical Specifications [optional]
|
| 161 |
+
|
| 162 |
+
### Model Architecture and Objective
|
| 163 |
+
|
| 164 |
+
[More Information Needed]
|
| 165 |
+
|
| 166 |
+
### Compute Infrastructure
|
| 167 |
+
|
| 168 |
+
[More Information Needed]
|
| 169 |
+
|
| 170 |
+
#### Hardware
|
| 171 |
+
|
| 172 |
+
[More Information Needed]
|
| 173 |
+
|
| 174 |
+
#### Software
|
| 175 |
+
|
| 176 |
+
[More Information Needed]
|
| 177 |
+
|
| 178 |
+
## Citation [optional]
|
| 179 |
+
|
| 180 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 181 |
+
|
| 182 |
+
**BibTeX:**
|
| 183 |
+
|
| 184 |
+
[More Information Needed]
|
| 185 |
+
|
| 186 |
+
**APA:**
|
| 187 |
+
|
| 188 |
+
[More Information Needed]
|
| 189 |
+
|
| 190 |
+
## Glossary [optional]
|
| 191 |
+
|
| 192 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 193 |
+
|
| 194 |
+
[More Information Needed]
|
| 195 |
+
|
| 196 |
+
## More Information [optional]
|
| 197 |
+
|
| 198 |
+
[More Information Needed]
|
| 199 |
+
|
| 200 |
+
## Model Card Authors [optional]
|
| 201 |
+
|
| 202 |
+
[More Information Needed]
|
| 203 |
+
|
| 204 |
+
## Model Card Contact
|
| 205 |
+
|
| 206 |
+
[More Information Needed]
|
| 207 |
+
### Framework versions
|
| 208 |
+
|
| 209 |
+
- PEFT 0.19.1
|
checkpoint-1253/adapter_config.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": null,
|
| 6 |
+
"base_model_name_or_path": "Qwen/Qwen2.5-7B-Instruct",
|
| 7 |
+
"bias": "none",
|
| 8 |
+
"corda_config": null,
|
| 9 |
+
"ensure_weight_tying": false,
|
| 10 |
+
"eva_config": null,
|
| 11 |
+
"exclude_modules": null,
|
| 12 |
+
"fan_in_fan_out": false,
|
| 13 |
+
"inference_mode": true,
|
| 14 |
+
"init_lora_weights": true,
|
| 15 |
+
"layer_replication": null,
|
| 16 |
+
"layers_pattern": null,
|
| 17 |
+
"layers_to_transform": null,
|
| 18 |
+
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 128,
|
| 20 |
+
"lora_bias": false,
|
| 21 |
+
"lora_dropout": 0.05,
|
| 22 |
+
"lora_ga_config": null,
|
| 23 |
+
"megatron_config": null,
|
| 24 |
+
"megatron_core": "megatron.core",
|
| 25 |
+
"modules_to_save": null,
|
| 26 |
+
"peft_type": "LORA",
|
| 27 |
+
"peft_version": "0.19.1",
|
| 28 |
+
"qalora_group_size": 16,
|
| 29 |
+
"r": 64,
|
| 30 |
+
"rank_pattern": {},
|
| 31 |
+
"revision": null,
|
| 32 |
+
"target_modules": [
|
| 33 |
+
"up_proj",
|
| 34 |
+
"down_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"q_proj",
|
| 37 |
+
"gate_proj",
|
| 38 |
+
"k_proj",
|
| 39 |
+
"o_proj"
|
| 40 |
+
],
|
| 41 |
+
"target_parameters": null,
|
| 42 |
+
"task_type": "CAUSAL_LM",
|
| 43 |
+
"trainable_token_indices": null,
|
| 44 |
+
"use_bdlora": null,
|
| 45 |
+
"use_dora": false,
|
| 46 |
+
"use_qalora": false,
|
| 47 |
+
"use_rslora": false
|
| 48 |
+
}
|
checkpoint-1253/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67822e201676faf4acc202917d7ce8c9b3716edad0425b94f91493699ce15bc9
|
| 3 |
+
size 323014560
|
checkpoint-1253/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-1253/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fca11776b582823888c00b27cb1044cd26740a0a55e4b6cd074738a174896002
|
| 3 |
+
size 646253883
|
checkpoint-1253/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83f1b140ec912d50c220a1e0d28e24528c45699ad80f3bc372d3c94daad4775b
|
| 3 |
+
size 14645
|
checkpoint-1253/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c088bba0ea5343d10ddb4d7baa91358395d41d1f46ecab95a94aeae93a130c31
|
| 3 |
+
size 1465
|
checkpoint-1253/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
checkpoint-1253/tokenizer_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"model_max_length": 131072,
|
| 25 |
+
"pad_token": "<|im_end|>",
|
| 26 |
+
"split_special_tokens": false,
|
| 27 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 28 |
+
"unk_token": null
|
| 29 |
+
}
|
checkpoint-1253/trainer_state.json
ADDED
|
@@ -0,0 +1,534 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 1253,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"entropy": 2.306920379027724,
|
| 14 |
+
"epoch": 0.019967054360305495,
|
| 15 |
+
"grad_norm": 0.03515625,
|
| 16 |
+
"learning_rate": 0.0001263157894736842,
|
| 17 |
+
"loss": 2.448968811035156,
|
| 18 |
+
"mean_token_accuracy": 0.48531667422503233,
|
| 19 |
+
"num_tokens": 122713.0,
|
| 20 |
+
"step": 25
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"entropy": 2.053416675031185,
|
| 24 |
+
"epoch": 0.03993410872061099,
|
| 25 |
+
"grad_norm": 0.0302734375,
|
| 26 |
+
"learning_rate": 0.0001999595542133758,
|
| 27 |
+
"loss": 2.042926483154297,
|
| 28 |
+
"mean_token_accuracy": 0.5536270077899098,
|
| 29 |
+
"num_tokens": 245834.0,
|
| 30 |
+
"step": 50
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"entropy": 2.019237674474716,
|
| 34 |
+
"epoch": 0.05990116308091649,
|
| 35 |
+
"grad_norm": 0.0245361328125,
|
| 36 |
+
"learning_rate": 0.00019956707906498044,
|
| 37 |
+
"loss": 2.0004498291015627,
|
| 38 |
+
"mean_token_accuracy": 0.562225787602365,
|
| 39 |
+
"num_tokens": 367174.0,
|
| 40 |
+
"step": 75
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"entropy": 2.014568568766117,
|
| 44 |
+
"epoch": 0.07986821744122198,
|
| 45 |
+
"grad_norm": 0.029052734375,
|
| 46 |
+
"learning_rate": 0.00019875870121543717,
|
| 47 |
+
"loss": 1.9949961853027345,
|
| 48 |
+
"mean_token_accuracy": 0.5627686691284179,
|
| 49 |
+
"num_tokens": 487834.0,
|
| 50 |
+
"step": 100
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"entropy": 1.9470337933301927,
|
| 54 |
+
"epoch": 0.09983527180152749,
|
| 55 |
+
"grad_norm": 0.0279541015625,
|
| 56 |
+
"learning_rate": 0.00019753779734842827,
|
| 57 |
+
"loss": 1.9355754089355468,
|
| 58 |
+
"mean_token_accuracy": 0.5725972962379455,
|
| 59 |
+
"num_tokens": 611352.0,
|
| 60 |
+
"step": 125
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"entropy": 1.9996179219335317,
|
| 64 |
+
"epoch": 0.11980232616183298,
|
| 65 |
+
"grad_norm": 0.0286865234375,
|
| 66 |
+
"learning_rate": 0.0001959094673144354,
|
| 67 |
+
"loss": 1.9678744506835937,
|
| 68 |
+
"mean_token_accuracy": 0.5630620580911636,
|
| 69 |
+
"num_tokens": 735053.0,
|
| 70 |
+
"step": 150
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"entropy": 2.0072034925222395,
|
| 74 |
+
"epoch": 0.13976938052213847,
|
| 75 |
+
"grad_norm": 0.0301513671875,
|
| 76 |
+
"learning_rate": 0.00019388051282810022,
|
| 77 |
+
"loss": 1.9737957763671874,
|
| 78 |
+
"mean_token_accuracy": 0.5624778818339109,
|
| 79 |
+
"num_tokens": 855860.0,
|
| 80 |
+
"step": 175
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"entropy": 1.9725533105432986,
|
| 84 |
+
"epoch": 0.15973643488244396,
|
| 85 |
+
"grad_norm": 0.029296875,
|
| 86 |
+
"learning_rate": 0.0001914594090567099,
|
| 87 |
+
"loss": 1.9277491760253906,
|
| 88 |
+
"mean_token_accuracy": 0.5647629579156637,
|
| 89 |
+
"num_tokens": 977334.0,
|
| 90 |
+
"step": 200
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"entropy": 1.9535374976694584,
|
| 94 |
+
"epoch": 0.17970348924274945,
|
| 95 |
+
"grad_norm": 0.033447265625,
|
| 96 |
+
"learning_rate": 0.00018865626921848615,
|
| 97 |
+
"loss": 1.9351695251464844,
|
| 98 |
+
"mean_token_accuracy": 0.5722655826061964,
|
| 99 |
+
"num_tokens": 1092583.0,
|
| 100 |
+
"step": 225
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"entropy": 1.9489152195304633,
|
| 104 |
+
"epoch": 0.19967054360305497,
|
| 105 |
+
"grad_norm": 0.025634765625,
|
| 106 |
+
"learning_rate": 0.0001854828023385541,
|
| 107 |
+
"loss": 1.9120469665527344,
|
| 108 |
+
"mean_token_accuracy": 0.5757150813564658,
|
| 109 |
+
"num_tokens": 1212652.0,
|
| 110 |
+
"step": 250
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"entropy": 1.997425957247615,
|
| 114 |
+
"epoch": 0.21963759796336046,
|
| 115 |
+
"grad_norm": 0.0235595703125,
|
| 116 |
+
"learning_rate": 0.00018195226433904957,
|
| 117 |
+
"loss": 1.9783148193359374,
|
| 118 |
+
"mean_token_accuracy": 0.566706589795649,
|
| 119 |
+
"num_tokens": 1332055.0,
|
| 120 |
+
"step": 275
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"entropy": 1.9235536295175553,
|
| 124 |
+
"epoch": 0.23960465232366596,
|
| 125 |
+
"grad_norm": 0.032470703125,
|
| 126 |
+
"learning_rate": 0.00017807940266766593,
|
| 127 |
+
"loss": 1.9035797119140625,
|
| 128 |
+
"mean_token_accuracy": 0.5777761967480183,
|
| 129 |
+
"num_tokens": 1452841.0,
|
| 130 |
+
"step": 300
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"entropy": 1.9555407621711494,
|
| 134 |
+
"epoch": 0.25957170668397145,
|
| 135 |
+
"grad_norm": 0.0247802734375,
|
| 136 |
+
"learning_rate": 0.00017388039469593428,
|
| 137 |
+
"loss": 1.922522735595703,
|
| 138 |
+
"mean_token_accuracy": 0.573435662984848,
|
| 139 |
+
"num_tokens": 1572803.0,
|
| 140 |
+
"step": 325
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"entropy": 1.9522953194752335,
|
| 144 |
+
"epoch": 0.27953876104427694,
|
| 145 |
+
"grad_norm": 0.02978515625,
|
| 146 |
+
"learning_rate": 0.00016937278014455336,
|
| 147 |
+
"loss": 1.914853057861328,
|
| 148 |
+
"mean_token_accuracy": 0.5744891692698002,
|
| 149 |
+
"num_tokens": 1697419.0,
|
| 150 |
+
"step": 350
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"entropy": 1.895245919264853,
|
| 154 |
+
"epoch": 0.29950581540458243,
|
| 155 |
+
"grad_norm": 0.026123046875,
|
| 156 |
+
"learning_rate": 0.00016457538781803623,
|
| 157 |
+
"loss": 1.8297265625,
|
| 158 |
+
"mean_token_accuracy": 0.5865043254941702,
|
| 159 |
+
"num_tokens": 1819231.0,
|
| 160 |
+
"step": 375
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"entropy": 1.9276008826121689,
|
| 164 |
+
"epoch": 0.3194728697648879,
|
| 165 |
+
"grad_norm": 0.0302734375,
|
| 166 |
+
"learning_rate": 0.00015950825695471146,
|
| 167 |
+
"loss": 1.8969316101074218,
|
| 168 |
+
"mean_token_accuracy": 0.579356978982687,
|
| 169 |
+
"num_tokens": 1941170.0,
|
| 170 |
+
"step": 400
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"entropy": 1.9401621558889746,
|
| 174 |
+
"epoch": 0.3394399241251934,
|
| 175 |
+
"grad_norm": 0.0291748046875,
|
| 176 |
+
"learning_rate": 0.0001541925535206084,
|
| 177 |
+
"loss": 1.9100968933105469,
|
| 178 |
+
"mean_token_accuracy": 0.5764700850099325,
|
| 179 |
+
"num_tokens": 2065882.0,
|
| 180 |
+
"step": 425
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"entropy": 1.9133401766419411,
|
| 184 |
+
"epoch": 0.3594069784854989,
|
| 185 |
+
"grad_norm": 0.0303955078125,
|
| 186 |
+
"learning_rate": 0.000148650481796876,
|
| 187 |
+
"loss": 1.8422721862792968,
|
| 188 |
+
"mean_token_accuracy": 0.5874501725286245,
|
| 189 |
+
"num_tokens": 2185024.0,
|
| 190 |
+
"step": 450
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"entropy": 1.9126300086826087,
|
| 194 |
+
"epoch": 0.3793740328458044,
|
| 195 |
+
"grad_norm": 0.03271484375,
|
| 196 |
+
"learning_rate": 0.00014290519163004495,
|
| 197 |
+
"loss": 1.8789381408691406,
|
| 198 |
+
"mean_token_accuracy": 0.5848022982478142,
|
| 199 |
+
"num_tokens": 2299587.0,
|
| 200 |
+
"step": 475
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"entropy": 1.909918104019016,
|
| 204 |
+
"epoch": 0.39934108720610995,
|
| 205 |
+
"grad_norm": 0.032470703125,
|
| 206 |
+
"learning_rate": 0.0001369806817325581,
|
| 207 |
+
"loss": 1.8951301574707031,
|
| 208 |
+
"mean_token_accuracy": 0.582027070298791,
|
| 209 |
+
"num_tokens": 2421897.0,
|
| 210 |
+
"step": 500
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"entropy": 1.9182585052400827,
|
| 214 |
+
"epoch": 0.41930814156641544,
|
| 215 |
+
"grad_norm": 0.031494140625,
|
| 216 |
+
"learning_rate": 0.00013090169943749476,
|
| 217 |
+
"loss": 1.8786566162109375,
|
| 218 |
+
"mean_token_accuracy": 0.5797786585241557,
|
| 219 |
+
"num_tokens": 2544369.0,
|
| 220 |
+
"step": 525
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"entropy": 1.8837098168581725,
|
| 224 |
+
"epoch": 0.43927519592672093,
|
| 225 |
+
"grad_norm": 0.0301513671875,
|
| 226 |
+
"learning_rate": 0.00012469363732622296,
|
| 227 |
+
"loss": 1.8448243713378907,
|
| 228 |
+
"mean_token_accuracy": 0.5849873025715351,
|
| 229 |
+
"num_tokens": 2671654.0,
|
| 230 |
+
"step": 550
|
| 231 |
+
},
|
| 232 |
+
{
|
| 233 |
+
"entropy": 1.8790070757828652,
|
| 234 |
+
"epoch": 0.4592422502870264,
|
| 235 |
+
"grad_norm": 0.0289306640625,
|
| 236 |
+
"learning_rate": 0.00011838242716077917,
|
| 237 |
+
"loss": 1.8447459411621094,
|
| 238 |
+
"mean_token_accuracy": 0.5876961750537157,
|
| 239 |
+
"num_tokens": 2796033.0,
|
| 240 |
+
"step": 575
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"entropy": 1.8867588526010513,
|
| 244 |
+
"epoch": 0.4792093046473319,
|
| 245 |
+
"grad_norm": 0.033447265625,
|
| 246 |
+
"learning_rate": 0.00011199443156402998,
|
| 247 |
+
"loss": 1.835140380859375,
|
| 248 |
+
"mean_token_accuracy": 0.5846484461426735,
|
| 249 |
+
"num_tokens": 2917243.0,
|
| 250 |
+
"step": 600
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"entropy": 1.9055894463136793,
|
| 254 |
+
"epoch": 0.4991763590076374,
|
| 255 |
+
"grad_norm": 0.0283203125,
|
| 256 |
+
"learning_rate": 0.00010555633390008086,
|
| 257 |
+
"loss": 1.858441619873047,
|
| 258 |
+
"mean_token_accuracy": 0.5845886848121882,
|
| 259 |
+
"num_tokens": 3042703.0,
|
| 260 |
+
"step": 625
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"entropy": 1.9573378081992268,
|
| 264 |
+
"epoch": 0.5191434133679429,
|
| 265 |
+
"grad_norm": 0.03173828125,
|
| 266 |
+
"learning_rate": 9.909502681491316e-05,
|
| 267 |
+
"loss": 1.8958790588378907,
|
| 268 |
+
"mean_token_accuracy": 0.5772438555955887,
|
| 269 |
+
"num_tokens": 3160162.0,
|
| 270 |
+
"step": 650
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"entropy": 1.8727275183051824,
|
| 274 |
+
"epoch": 0.5391104677282484,
|
| 275 |
+
"grad_norm": 0.03173828125,
|
| 276 |
+
"learning_rate": 9.263749990282754e-05,
|
| 277 |
+
"loss": 1.8269801330566406,
|
| 278 |
+
"mean_token_accuracy": 0.5881718883663416,
|
| 279 |
+
"num_tokens": 3285704.0,
|
| 280 |
+
"step": 675
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"entropy": 1.871655127387494,
|
| 284 |
+
"epoch": 0.5590775220885539,
|
| 285 |
+
"grad_norm": 0.0289306640625,
|
| 286 |
+
"learning_rate": 8.621072696792363e-05,
|
| 287 |
+
"loss": 1.8388119506835938,
|
| 288 |
+
"mean_token_accuracy": 0.5867326802760363,
|
| 289 |
+
"num_tokens": 3410119.0,
|
| 290 |
+
"step": 700
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"entropy": 1.8627979960665106,
|
| 294 |
+
"epoch": 0.5790445764488594,
|
| 295 |
+
"grad_norm": 0.035888671875,
|
| 296 |
+
"learning_rate": 7.984155335153711e-05,
|
| 297 |
+
"loss": 1.799385986328125,
|
| 298 |
+
"mean_token_accuracy": 0.5873606249690055,
|
| 299 |
+
"num_tokens": 3533765.0,
|
| 300 |
+
"step": 725
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"entropy": 1.8317018933594227,
|
| 304 |
+
"epoch": 0.5990116308091649,
|
| 305 |
+
"grad_norm": 0.0281982421875,
|
| 306 |
+
"learning_rate": 7.35565837962798e-05,
|
| 307 |
+
"loss": 1.7772984313964844,
|
| 308 |
+
"mean_token_accuracy": 0.5965435421466827,
|
| 309 |
+
"num_tokens": 3657321.0,
|
| 310 |
+
"step": 750
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"entropy": 1.8882549648359417,
|
| 314 |
+
"epoch": 0.6189786851694704,
|
| 315 |
+
"grad_norm": 0.03076171875,
|
| 316 |
+
"learning_rate": 6.738207131508735e-05,
|
| 317 |
+
"loss": 1.8385765075683593,
|
| 318 |
+
"mean_token_accuracy": 0.59088682141155,
|
| 319 |
+
"num_tokens": 3779575.0,
|
| 320 |
+
"step": 775
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"entropy": 1.8342267361842095,
|
| 324 |
+
"epoch": 0.6389457395297758,
|
| 325 |
+
"grad_norm": 0.032958984375,
|
| 326 |
+
"learning_rate": 6.134380752948085e-05,
|
| 327 |
+
"loss": 1.800379180908203,
|
| 328 |
+
"mean_token_accuracy": 0.5952950984984636,
|
| 329 |
+
"num_tokens": 3896543.0,
|
| 330 |
+
"step": 800
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"entropy": 1.873757717087865,
|
| 334 |
+
"epoch": 0.6589127938900814,
|
| 335 |
+
"grad_norm": 0.03564453125,
|
| 336 |
+
"learning_rate": 5.546701493511106e-05,
|
| 337 |
+
"loss": 1.8183651733398438,
|
| 338 |
+
"mean_token_accuracy": 0.5902918418496848,
|
| 339 |
+
"num_tokens": 4018098.0,
|
| 340 |
+
"step": 825
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"entropy": 1.83077443132177,
|
| 344 |
+
"epoch": 0.6788798482503868,
|
| 345 |
+
"grad_norm": 0.032470703125,
|
| 346 |
+
"learning_rate": 4.977624154460464e-05,
|
| 347 |
+
"loss": 1.7461175537109375,
|
| 348 |
+
"mean_token_accuracy": 0.598720720410347,
|
| 349 |
+
"num_tokens": 4141174.0,
|
| 350 |
+
"step": 850
|
| 351 |
+
},
|
| 352 |
+
{
|
| 353 |
+
"entropy": 1.918299620486796,
|
| 354 |
+
"epoch": 0.6988469026106924,
|
| 355 |
+
"grad_norm": 0.0301513671875,
|
| 356 |
+
"learning_rate": 4.42952583478004e-05,
|
| 357 |
+
"loss": 1.9020709228515624,
|
| 358 |
+
"mean_token_accuracy": 0.5798033401742577,
|
| 359 |
+
"num_tokens": 4259185.0,
|
| 360 |
+
"step": 875
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"entropy": 1.8444363391213119,
|
| 364 |
+
"epoch": 0.7188139569709978,
|
| 365 |
+
"grad_norm": 0.0341796875,
|
| 366 |
+
"learning_rate": 3.904696001769571e-05,
|
| 367 |
+
"loss": 1.7869160461425782,
|
| 368 |
+
"mean_token_accuracy": 0.5964432079344988,
|
| 369 |
+
"num_tokens": 4377724.0,
|
| 370 |
+
"step": 900
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"entropy": 1.8295260372944175,
|
| 374 |
+
"epoch": 0.7387810113313034,
|
| 375 |
+
"grad_norm": 0.031982421875,
|
| 376 |
+
"learning_rate": 3.4053269276865285e-05,
|
| 377 |
+
"loss": 1.778699951171875,
|
| 378 |
+
"mean_token_accuracy": 0.6018728485703468,
|
| 379 |
+
"num_tokens": 4497691.0,
|
| 380 |
+
"step": 925
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"entropy": 1.8099911727011204,
|
| 384 |
+
"epoch": 0.7587480656916088,
|
| 385 |
+
"grad_norm": 0.03271484375,
|
| 386 |
+
"learning_rate": 2.9335045323824496e-05,
|
| 387 |
+
"loss": 1.7513389587402344,
|
| 388 |
+
"mean_token_accuracy": 0.6039503507316113,
|
| 389 |
+
"num_tokens": 4616131.0,
|
| 390 |
+
"step": 950
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"entropy": 1.8742087873071431,
|
| 394 |
+
"epoch": 0.7787151200519143,
|
| 395 |
+
"grad_norm": 0.033203125,
|
| 396 |
+
"learning_rate": 2.491199670185008e-05,
|
| 397 |
+
"loss": 1.7982223510742188,
|
| 398 |
+
"mean_token_accuracy": 0.5908738762140274,
|
| 399 |
+
"num_tokens": 4737443.0,
|
| 400 |
+
"step": 975
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"entropy": 1.869517589211464,
|
| 404 |
+
"epoch": 0.7986821744122199,
|
| 405 |
+
"grad_norm": 0.032958984375,
|
| 406 |
+
"learning_rate": 2.0802598974215226e-05,
|
| 407 |
+
"loss": 1.8264849853515626,
|
| 408 |
+
"mean_token_accuracy": 0.5888447714596987,
|
| 409 |
+
"num_tokens": 4858100.0,
|
| 410 |
+
"step": 1000
|
| 411 |
+
},
|
| 412 |
+
{
|
| 413 |
+
"entropy": 1.844755928181112,
|
| 414 |
+
"epoch": 0.8186492287725253,
|
| 415 |
+
"grad_norm": 0.045654296875,
|
| 416 |
+
"learning_rate": 1.7024017549718275e-05,
|
| 417 |
+
"loss": 1.7819813537597655,
|
| 418 |
+
"mean_token_accuracy": 0.6003921093046665,
|
| 419 |
+
"num_tokens": 4975013.0,
|
| 420 |
+
"step": 1025
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"entropy": 1.802000548671931,
|
| 424 |
+
"epoch": 0.8386162831328309,
|
| 425 |
+
"grad_norm": 0.0262451171875,
|
| 426 |
+
"learning_rate": 1.3592035980871953e-05,
|
| 427 |
+
"loss": 1.7438143920898437,
|
| 428 |
+
"mean_token_accuracy": 0.6064729103446007,
|
| 429 |
+
"num_tokens": 5097765.0,
|
| 430 |
+
"step": 1050
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"entropy": 1.8947986670024692,
|
| 434 |
+
"epoch": 0.8585833374931363,
|
| 435 |
+
"grad_norm": 0.037841796875,
|
| 436 |
+
"learning_rate": 1.0520990034258726e-05,
|
| 437 |
+
"loss": 1.8379624938964845,
|
| 438 |
+
"mean_token_accuracy": 0.589176696240902,
|
| 439 |
+
"num_tokens": 5215823.0,
|
| 440 |
+
"step": 1075
|
| 441 |
+
},
|
| 442 |
+
{
|
| 443 |
+
"entropy": 1.7786260014213622,
|
| 444 |
+
"epoch": 0.8785503918534419,
|
| 445 |
+
"grad_norm": 0.029052734375,
|
| 446 |
+
"learning_rate": 7.823707808448288e-06,
|
| 447 |
+
"loss": 1.7224624633789063,
|
| 448 |
+
"mean_token_accuracy": 0.606775107383728,
|
| 449 |
+
"num_tokens": 5338845.0,
|
| 450 |
+
"step": 1100
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"entropy": 1.8222949595190585,
|
| 454 |
+
"epoch": 0.8985174462137473,
|
| 455 |
+
"grad_norm": 0.035400390625,
|
| 456 |
+
"learning_rate": 5.511456149611194e-06,
|
| 457 |
+
"loss": 1.7382611083984374,
|
| 458 |
+
"mean_token_accuracy": 0.6005137836188078,
|
| 459 |
+
"num_tokens": 5458318.0,
|
| 460 |
+
"step": 1125
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"entropy": 1.8381199889071285,
|
| 464 |
+
"epoch": 0.9184845005740528,
|
| 465 |
+
"grad_norm": 0.033935546875,
|
| 466 |
+
"learning_rate": 3.593893588656172e-06,
|
| 467 |
+
"loss": 1.809542694091797,
|
| 468 |
+
"mean_token_accuracy": 0.5936454942077398,
|
| 469 |
+
"num_tokens": 5584313.0,
|
| 470 |
+
"step": 1150
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"entropy": 1.8231695614941419,
|
| 474 |
+
"epoch": 0.9384515549343583,
|
| 475 |
+
"grad_norm": 0.036376953125,
|
| 476 |
+
"learning_rate": 2.079029996478421e-06,
|
| 477 |
+
"loss": 1.7776606750488282,
|
| 478 |
+
"mean_token_accuracy": 0.5996202439069748,
|
| 479 |
+
"num_tokens": 5705797.0,
|
| 480 |
+
"step": 1175
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"entropy": 1.8307033446803689,
|
| 484 |
+
"epoch": 0.9584186092946638,
|
| 485 |
+
"grad_norm": 0.0289306640625,
|
| 486 |
+
"learning_rate": 9.731931258429638e-07,
|
| 487 |
+
"loss": 1.8075674438476563,
|
| 488 |
+
"mean_token_accuracy": 0.5957645285874605,
|
| 489 |
+
"num_tokens": 5820537.0,
|
| 490 |
+
"step": 1200
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"entropy": 1.8334672911651433,
|
| 494 |
+
"epoch": 0.9783856636549693,
|
| 495 |
+
"grad_norm": 0.04150390625,
|
| 496 |
+
"learning_rate": 2.8100217966149367e-07,
|
| 497 |
+
"loss": 1.8062632751464844,
|
| 498 |
+
"mean_token_accuracy": 0.5959254806488752,
|
| 499 |
+
"num_tokens": 5936413.0,
|
| 500 |
+
"step": 1225
|
| 501 |
+
},
|
| 502 |
+
{
|
| 503 |
+
"entropy": 1.8275573313236237,
|
| 504 |
+
"epoch": 0.9983527180152748,
|
| 505 |
+
"grad_norm": 0.029541015625,
|
| 506 |
+
"learning_rate": 5.348516070957654e-09,
|
| 507 |
+
"loss": 1.8030024719238282,
|
| 508 |
+
"mean_token_accuracy": 0.6040526380576193,
|
| 509 |
+
"num_tokens": 6054498.0,
|
| 510 |
+
"step": 1250
|
| 511 |
+
}
|
| 512 |
+
],
|
| 513 |
+
"logging_steps": 25,
|
| 514 |
+
"max_steps": 1253,
|
| 515 |
+
"num_input_tokens_seen": 0,
|
| 516 |
+
"num_train_epochs": 1,
|
| 517 |
+
"save_steps": 500,
|
| 518 |
+
"stateful_callbacks": {
|
| 519 |
+
"TrainerControl": {
|
| 520 |
+
"args": {
|
| 521 |
+
"should_epoch_stop": false,
|
| 522 |
+
"should_evaluate": false,
|
| 523 |
+
"should_log": false,
|
| 524 |
+
"should_save": true,
|
| 525 |
+
"should_training_stop": true
|
| 526 |
+
},
|
| 527 |
+
"attributes": {}
|
| 528 |
+
}
|
| 529 |
+
},
|
| 530 |
+
"total_flos": 2.631819711784704e+17,
|
| 531 |
+
"train_batch_size": 1,
|
| 532 |
+
"trial_name": null,
|
| 533 |
+
"trial_params": null
|
| 534 |
+
}
|
checkpoint-1253/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a25a38f0a1a1ae775e5c8899125798a7e119a818cb9e0858ea862fa1e8abf29
|
| 3 |
+
size 5649
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"model_max_length": 131072,
|
| 25 |
+
"pad_token": "<|im_end|>",
|
| 26 |
+
"split_special_tokens": false,
|
| 27 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 28 |
+
"unk_token": null
|
| 29 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a25a38f0a1a1ae775e5c8899125798a7e119a818cb9e0858ea862fa1e8abf29
|
| 3 |
+
size 5649
|