Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +74 -0
- adapter_config.json +50 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +28 -0
- chat_template.jinja +86 -0
- checkpoint-400/README.md +210 -0
- checkpoint-400/adapter_config.json +50 -0
- checkpoint-400/adapter_model.safetensors +3 -0
- checkpoint-400/added_tokens.json +28 -0
- checkpoint-400/chat_template.jinja +86 -0
- checkpoint-400/merges.txt +0 -0
- checkpoint-400/optimizer.pt +3 -0
- checkpoint-400/rng_state.pth +3 -0
- checkpoint-400/scheduler.pt +3 -0
- checkpoint-400/special_tokens_map.json +31 -0
- checkpoint-400/tokenizer.json +3 -0
- checkpoint-400/tokenizer_config.json +240 -0
- checkpoint-400/trainer_state.json +634 -0
- checkpoint-400/training_args.bin +3 -0
- checkpoint-400/vocab.json +0 -0
- checkpoint-500/README.md +210 -0
- checkpoint-500/adapter_config.json +50 -0
- checkpoint-500/adapter_model.safetensors +3 -0
- checkpoint-500/added_tokens.json +28 -0
- checkpoint-500/chat_template.jinja +86 -0
- checkpoint-500/merges.txt +0 -0
- checkpoint-500/optimizer.pt +3 -0
- checkpoint-500/rng_state.pth +3 -0
- checkpoint-500/scheduler.pt +3 -0
- checkpoint-500/special_tokens_map.json +31 -0
- checkpoint-500/tokenizer.json +3 -0
- checkpoint-500/tokenizer_config.json +240 -0
- checkpoint-500/trainer_state.json +784 -0
- checkpoint-500/training_args.bin +3 -0
- checkpoint-500/vocab.json +0 -0
- merges.txt +0 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +240 -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-400/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
checkpoint-500/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,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
model_name: dpo_v2
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 7 |
+
- dpo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
licence: license
|
| 13 |
+
pipeline_tag: text-generation
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Model Card for dpo_v2
|
| 17 |
+
|
| 18 |
+
This model is a fine-tuned version of [unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit](https://huggingface.co/unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit).
|
| 19 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 20 |
+
|
| 21 |
+
## Quick start
|
| 22 |
+
|
| 23 |
+
```python
|
| 24 |
+
from transformers import pipeline
|
| 25 |
+
|
| 26 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 27 |
+
generator = pipeline("text-generation", model="None", device="cuda")
|
| 28 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 29 |
+
print(output["generated_text"])
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Training procedure
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
This model was trained with DPO, a method introduced in [Direct Preference Optimization: Your Language Model is Secretly a Reward Model](https://huggingface.co/papers/2305.18290).
|
| 38 |
+
|
| 39 |
+
### Framework versions
|
| 40 |
+
|
| 41 |
+
- PEFT 0.18.1
|
| 42 |
+
- TRL: 0.24.0
|
| 43 |
+
- Transformers: 4.57.6
|
| 44 |
+
- Pytorch: 2.10.0
|
| 45 |
+
- Datasets: 4.3.0
|
| 46 |
+
- Tokenizers: 0.22.2
|
| 47 |
+
|
| 48 |
+
## Citations
|
| 49 |
+
|
| 50 |
+
Cite DPO as:
|
| 51 |
+
|
| 52 |
+
```bibtex
|
| 53 |
+
@inproceedings{rafailov2023direct,
|
| 54 |
+
title = {{Direct Preference Optimization: Your Language Model is Secretly a Reward Model}},
|
| 55 |
+
author = {Rafael Rafailov and Archit Sharma and Eric Mitchell and Christopher D. Manning and Stefano Ermon and Chelsea Finn},
|
| 56 |
+
year = 2023,
|
| 57 |
+
booktitle = {Advances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 - 16, 2023},
|
| 58 |
+
url = {http://papers.nips.cc/paper_files/paper/2023/hash/a85b405ed65c6477a4fe8302b5e06ce7-Abstract-Conference.html},
|
| 59 |
+
editor = {Alice Oh and Tristan Naumann and Amir Globerson and Kate Saenko and Moritz Hardt and Sergey Levine},
|
| 60 |
+
}
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
Cite TRL as:
|
| 64 |
+
|
| 65 |
+
```bibtex
|
| 66 |
+
@misc{vonwerra2022trl,
|
| 67 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
| 68 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
|
| 69 |
+
year = 2020,
|
| 70 |
+
journal = {GitHub repository},
|
| 71 |
+
publisher = {GitHub},
|
| 72 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
| 73 |
+
}
|
| 74 |
+
```
|
adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 128,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 64,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"v_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"down_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"gate_proj",
|
| 41 |
+
"o_proj",
|
| 42 |
+
"up_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": true,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": false
|
| 50 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6952f5c0dfff8585a8d94ad0267e7bf11f1889ecfabee07044add3fa8dfe753
|
| 3 |
+
size 533009160
|
added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- endif %}
|
checkpoint-400/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 7 |
+
- dpo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
checkpoint-400/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 128,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 64,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"v_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"down_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"gate_proj",
|
| 41 |
+
"o_proj",
|
| 42 |
+
"up_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": true,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": false
|
| 50 |
+
}
|
checkpoint-400/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70057b802b86aa7b4877c354c79f8711bfc2d7d76f8d1d7bde37a04e6830ae3e
|
| 3 |
+
size 533009160
|
checkpoint-400/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-400/chat_template.jinja
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- endif %}
|
checkpoint-400/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-400/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07a52805a397dbdb8f82b3453c5ff45b19be1f613d7858c35bd5604be7b02021
|
| 3 |
+
size 272956501
|
checkpoint-400/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c800b778fa7e115e4c34de8529902de8b61c9a1b4bab3eb8295d06dafff030e
|
| 3 |
+
size 14645
|
checkpoint-400/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12962f444faed28515777d02e6370168ef1c4d890d314c1480b339341fb48484
|
| 3 |
+
size 1465
|
checkpoint-400/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-400/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
checkpoint-400/tokenizer_config.json
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|vision_pad|>",
|
| 236 |
+
"padding_side": "right",
|
| 237 |
+
"split_special_tokens": false,
|
| 238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 239 |
+
"unk_token": null
|
| 240 |
+
}
|
checkpoint-400/trainer_state.json
ADDED
|
@@ -0,0 +1,634 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.6,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 400,
|
| 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.04,
|
| 14 |
+
"grad_norm": 8.528485298156738,
|
| 15 |
+
"learning_rate": 9e-06,
|
| 16 |
+
"logits/chosen": 2.054985523223877,
|
| 17 |
+
"logits/rejected": 1.9033839702606201,
|
| 18 |
+
"logps/chosen": -23.966228485107422,
|
| 19 |
+
"logps/rejected": -53.68938446044922,
|
| 20 |
+
"loss": 0.5192,
|
| 21 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 22 |
+
"rewards/chosen": 3.1913700103759766,
|
| 23 |
+
"rewards/margins": 0.7934623956680298,
|
| 24 |
+
"rewards/rejected": 2.3979074954986572,
|
| 25 |
+
"step": 10
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"epoch": 0.08,
|
| 29 |
+
"grad_norm": 0.4699181616306305,
|
| 30 |
+
"learning_rate": 1.9e-05,
|
| 31 |
+
"logits/chosen": 2.652074098587036,
|
| 32 |
+
"logits/rejected": 2.6142349243164062,
|
| 33 |
+
"logps/chosen": -19.591583251953125,
|
| 34 |
+
"logps/rejected": -71.51148986816406,
|
| 35 |
+
"loss": 0.2992,
|
| 36 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 37 |
+
"rewards/chosen": 3.1300272941589355,
|
| 38 |
+
"rewards/margins": 2.6587636470794678,
|
| 39 |
+
"rewards/rejected": 0.47126370668411255,
|
| 40 |
+
"step": 20
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 0.12,
|
| 44 |
+
"grad_norm": 6.240016937255859,
|
| 45 |
+
"learning_rate": 2.9e-05,
|
| 46 |
+
"logits/chosen": 3.368675947189331,
|
| 47 |
+
"logits/rejected": 3.328001022338867,
|
| 48 |
+
"logps/chosen": -21.065635681152344,
|
| 49 |
+
"logps/rejected": -97.60667419433594,
|
| 50 |
+
"loss": 0.2464,
|
| 51 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 52 |
+
"rewards/chosen": 3.2080636024475098,
|
| 53 |
+
"rewards/margins": 5.249109745025635,
|
| 54 |
+
"rewards/rejected": -2.041045904159546,
|
| 55 |
+
"step": 30
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.16,
|
| 59 |
+
"grad_norm": 0.10691515356302261,
|
| 60 |
+
"learning_rate": 3.9000000000000006e-05,
|
| 61 |
+
"logits/chosen": 2.1906957626342773,
|
| 62 |
+
"logits/rejected": 2.274221658706665,
|
| 63 |
+
"logps/chosen": -17.63897132873535,
|
| 64 |
+
"logps/rejected": -90.91486358642578,
|
| 65 |
+
"loss": 0.2946,
|
| 66 |
+
"rewards/accuracies": 0.6000000238418579,
|
| 67 |
+
"rewards/chosen": 3.081021785736084,
|
| 68 |
+
"rewards/margins": 5.548964500427246,
|
| 69 |
+
"rewards/rejected": -2.467942714691162,
|
| 70 |
+
"step": 40
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"epoch": 0.2,
|
| 74 |
+
"grad_norm": 0.6372888088226318,
|
| 75 |
+
"learning_rate": 4.9e-05,
|
| 76 |
+
"logits/chosen": 0.6477093696594238,
|
| 77 |
+
"logits/rejected": 0.833999752998352,
|
| 78 |
+
"logps/chosen": -29.2796630859375,
|
| 79 |
+
"logps/rejected": -124.37042236328125,
|
| 80 |
+
"loss": 0.2171,
|
| 81 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 82 |
+
"rewards/chosen": 2.3345980644226074,
|
| 83 |
+
"rewards/margins": 7.417657375335693,
|
| 84 |
+
"rewards/rejected": -5.083059310913086,
|
| 85 |
+
"step": 50
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"epoch": 0.24,
|
| 89 |
+
"grad_norm": 0.571674108505249,
|
| 90 |
+
"learning_rate": 4.9e-05,
|
| 91 |
+
"logits/chosen": 2.270029067993164,
|
| 92 |
+
"logits/rejected": 2.524890899658203,
|
| 93 |
+
"logps/chosen": -27.73245620727539,
|
| 94 |
+
"logps/rejected": -103.86787414550781,
|
| 95 |
+
"loss": 0.2655,
|
| 96 |
+
"rewards/accuracies": 0.6875,
|
| 97 |
+
"rewards/chosen": 2.1670007705688477,
|
| 98 |
+
"rewards/margins": 5.720990180969238,
|
| 99 |
+
"rewards/rejected": -3.5539894104003906,
|
| 100 |
+
"step": 60
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.28,
|
| 104 |
+
"grad_norm": 0.6424742937088013,
|
| 105 |
+
"learning_rate": 4.7888888888888886e-05,
|
| 106 |
+
"logits/chosen": 1.0871316194534302,
|
| 107 |
+
"logits/rejected": 1.31881582736969,
|
| 108 |
+
"logps/chosen": -35.905784606933594,
|
| 109 |
+
"logps/rejected": -127.39874267578125,
|
| 110 |
+
"loss": 0.2822,
|
| 111 |
+
"rewards/accuracies": 0.625,
|
| 112 |
+
"rewards/chosen": 2.1068429946899414,
|
| 113 |
+
"rewards/margins": 7.130377769470215,
|
| 114 |
+
"rewards/rejected": -5.02353572845459,
|
| 115 |
+
"step": 70
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.32,
|
| 119 |
+
"grad_norm": 0.2139262557029724,
|
| 120 |
+
"learning_rate": 4.677777777777778e-05,
|
| 121 |
+
"logits/chosen": 1.289627194404602,
|
| 122 |
+
"logits/rejected": 1.5509237051010132,
|
| 123 |
+
"logps/chosen": -37.245338439941406,
|
| 124 |
+
"logps/rejected": -143.37571716308594,
|
| 125 |
+
"loss": 0.2551,
|
| 126 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 127 |
+
"rewards/chosen": 1.7066528797149658,
|
| 128 |
+
"rewards/margins": 8.251852989196777,
|
| 129 |
+
"rewards/rejected": -6.545199394226074,
|
| 130 |
+
"step": 80
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.36,
|
| 134 |
+
"grad_norm": 9.060225486755371,
|
| 135 |
+
"learning_rate": 4.566666666666667e-05,
|
| 136 |
+
"logits/chosen": -0.21008212864398956,
|
| 137 |
+
"logits/rejected": 0.13004381954669952,
|
| 138 |
+
"logps/chosen": -34.545066833496094,
|
| 139 |
+
"logps/rejected": -136.86561584472656,
|
| 140 |
+
"loss": 0.2398,
|
| 141 |
+
"rewards/accuracies": 0.699999988079071,
|
| 142 |
+
"rewards/chosen": 2.3621673583984375,
|
| 143 |
+
"rewards/margins": 8.225154876708984,
|
| 144 |
+
"rewards/rejected": -5.862987041473389,
|
| 145 |
+
"step": 90
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.4,
|
| 149 |
+
"grad_norm": 1.8874521255493164,
|
| 150 |
+
"learning_rate": 4.4555555555555555e-05,
|
| 151 |
+
"logits/chosen": 0.8144568204879761,
|
| 152 |
+
"logits/rejected": 1.1611213684082031,
|
| 153 |
+
"logps/chosen": -41.461158752441406,
|
| 154 |
+
"logps/rejected": -139.0437469482422,
|
| 155 |
+
"loss": 0.2243,
|
| 156 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 157 |
+
"rewards/chosen": 1.0751674175262451,
|
| 158 |
+
"rewards/margins": 7.963423728942871,
|
| 159 |
+
"rewards/rejected": -6.8882575035095215,
|
| 160 |
+
"step": 100
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"epoch": 0.44,
|
| 164 |
+
"grad_norm": 0.21037925779819489,
|
| 165 |
+
"learning_rate": 4.344444444444445e-05,
|
| 166 |
+
"logits/chosen": -0.559118390083313,
|
| 167 |
+
"logits/rejected": -0.11641822755336761,
|
| 168 |
+
"logps/chosen": -47.142601013183594,
|
| 169 |
+
"logps/rejected": -150.99496459960938,
|
| 170 |
+
"loss": 0.2594,
|
| 171 |
+
"rewards/accuracies": 0.6499999761581421,
|
| 172 |
+
"rewards/chosen": 0.32266765832901,
|
| 173 |
+
"rewards/margins": 8.18213939666748,
|
| 174 |
+
"rewards/rejected": -7.859471321105957,
|
| 175 |
+
"step": 110
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"epoch": 0.48,
|
| 179 |
+
"grad_norm": 0.33475127816200256,
|
| 180 |
+
"learning_rate": 4.233333333333334e-05,
|
| 181 |
+
"logits/chosen": -0.39622828364372253,
|
| 182 |
+
"logits/rejected": -0.1825840175151825,
|
| 183 |
+
"logps/chosen": -46.026100158691406,
|
| 184 |
+
"logps/rejected": -142.27127075195312,
|
| 185 |
+
"loss": 0.2442,
|
| 186 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 187 |
+
"rewards/chosen": 0.987580418586731,
|
| 188 |
+
"rewards/margins": 7.525818824768066,
|
| 189 |
+
"rewards/rejected": -6.538238525390625,
|
| 190 |
+
"step": 120
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.52,
|
| 194 |
+
"grad_norm": 0.12689562141895294,
|
| 195 |
+
"learning_rate": 4.1222222222222224e-05,
|
| 196 |
+
"logits/chosen": -0.23490352928638458,
|
| 197 |
+
"logits/rejected": 0.27892929315567017,
|
| 198 |
+
"logps/chosen": -33.58977508544922,
|
| 199 |
+
"logps/rejected": -144.8148956298828,
|
| 200 |
+
"loss": 0.2096,
|
| 201 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 202 |
+
"rewards/chosen": 1.9526748657226562,
|
| 203 |
+
"rewards/margins": 8.64609146118164,
|
| 204 |
+
"rewards/rejected": -6.693416595458984,
|
| 205 |
+
"step": 130
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.56,
|
| 209 |
+
"grad_norm": 0.12881708145141602,
|
| 210 |
+
"learning_rate": 4.011111111111111e-05,
|
| 211 |
+
"logits/chosen": -1.1939542293548584,
|
| 212 |
+
"logits/rejected": -0.9672979116439819,
|
| 213 |
+
"logps/chosen": -37.64386749267578,
|
| 214 |
+
"logps/rejected": -125.4320068359375,
|
| 215 |
+
"loss": 0.2528,
|
| 216 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 217 |
+
"rewards/chosen": 2.0000433921813965,
|
| 218 |
+
"rewards/margins": 6.926792144775391,
|
| 219 |
+
"rewards/rejected": -4.926749229431152,
|
| 220 |
+
"step": 140
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.6,
|
| 224 |
+
"grad_norm": 0.21873943507671356,
|
| 225 |
+
"learning_rate": 3.9000000000000006e-05,
|
| 226 |
+
"logits/chosen": -1.780418038368225,
|
| 227 |
+
"logits/rejected": -1.4915210008621216,
|
| 228 |
+
"logps/chosen": -35.17759704589844,
|
| 229 |
+
"logps/rejected": -136.65286254882812,
|
| 230 |
+
"loss": 0.2278,
|
| 231 |
+
"rewards/accuracies": 0.699999988079071,
|
| 232 |
+
"rewards/chosen": 1.875436544418335,
|
| 233 |
+
"rewards/margins": 8.086755752563477,
|
| 234 |
+
"rewards/rejected": -6.211319923400879,
|
| 235 |
+
"step": 150
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.64,
|
| 239 |
+
"grad_norm": 0.053676556795835495,
|
| 240 |
+
"learning_rate": 3.7888888888888894e-05,
|
| 241 |
+
"logits/chosen": -1.770747423171997,
|
| 242 |
+
"logits/rejected": -1.2938441038131714,
|
| 243 |
+
"logps/chosen": -29.032825469970703,
|
| 244 |
+
"logps/rejected": -138.14309692382812,
|
| 245 |
+
"loss": 0.2089,
|
| 246 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 247 |
+
"rewards/chosen": 2.1548972129821777,
|
| 248 |
+
"rewards/margins": 8.57084846496582,
|
| 249 |
+
"rewards/rejected": -6.41594934463501,
|
| 250 |
+
"step": 160
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 0.68,
|
| 254 |
+
"grad_norm": 0.31680184602737427,
|
| 255 |
+
"learning_rate": 3.677777777777778e-05,
|
| 256 |
+
"logits/chosen": -1.9017817974090576,
|
| 257 |
+
"logits/rejected": -1.6287091970443726,
|
| 258 |
+
"logps/chosen": -32.30609893798828,
|
| 259 |
+
"logps/rejected": -135.4978485107422,
|
| 260 |
+
"loss": 0.1837,
|
| 261 |
+
"rewards/accuracies": 0.762499988079071,
|
| 262 |
+
"rewards/chosen": 2.9330215454101562,
|
| 263 |
+
"rewards/margins": 8.456713676452637,
|
| 264 |
+
"rewards/rejected": -5.5236921310424805,
|
| 265 |
+
"step": 170
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.72,
|
| 269 |
+
"grad_norm": 0.12343556433916092,
|
| 270 |
+
"learning_rate": 3.566666666666667e-05,
|
| 271 |
+
"logits/chosen": -2.0771210193634033,
|
| 272 |
+
"logits/rejected": -1.8654956817626953,
|
| 273 |
+
"logps/chosen": -38.074161529541016,
|
| 274 |
+
"logps/rejected": -140.7716522216797,
|
| 275 |
+
"loss": 0.2189,
|
| 276 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 277 |
+
"rewards/chosen": 1.6962649822235107,
|
| 278 |
+
"rewards/margins": 8.185938835144043,
|
| 279 |
+
"rewards/rejected": -6.4896745681762695,
|
| 280 |
+
"step": 180
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.76,
|
| 284 |
+
"grad_norm": 0.16018041968345642,
|
| 285 |
+
"learning_rate": 3.4555555555555556e-05,
|
| 286 |
+
"logits/chosen": -2.5613696575164795,
|
| 287 |
+
"logits/rejected": -2.160233736038208,
|
| 288 |
+
"logps/chosen": -35.08837127685547,
|
| 289 |
+
"logps/rejected": -174.58566284179688,
|
| 290 |
+
"loss": 0.1491,
|
| 291 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 292 |
+
"rewards/chosen": 1.949218511581421,
|
| 293 |
+
"rewards/margins": 11.258779525756836,
|
| 294 |
+
"rewards/rejected": -9.309560775756836,
|
| 295 |
+
"step": 190
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"epoch": 0.8,
|
| 299 |
+
"grad_norm": 2.166445016860962,
|
| 300 |
+
"learning_rate": 3.3444444444444443e-05,
|
| 301 |
+
"logits/chosen": -3.0443778038024902,
|
| 302 |
+
"logits/rejected": -2.7526583671569824,
|
| 303 |
+
"logps/chosen": -40.106178283691406,
|
| 304 |
+
"logps/rejected": -151.62503051757812,
|
| 305 |
+
"loss": 0.2624,
|
| 306 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 307 |
+
"rewards/chosen": 1.3750978708267212,
|
| 308 |
+
"rewards/margins": 9.279211044311523,
|
| 309 |
+
"rewards/rejected": -7.904112339019775,
|
| 310 |
+
"step": 200
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 0.84,
|
| 314 |
+
"grad_norm": 0.3322606384754181,
|
| 315 |
+
"learning_rate": 3.233333333333333e-05,
|
| 316 |
+
"logits/chosen": -2.9914917945861816,
|
| 317 |
+
"logits/rejected": -2.5901548862457275,
|
| 318 |
+
"logps/chosen": -43.788307189941406,
|
| 319 |
+
"logps/rejected": -210.02102661132812,
|
| 320 |
+
"loss": 0.2258,
|
| 321 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 322 |
+
"rewards/chosen": 1.1431424617767334,
|
| 323 |
+
"rewards/margins": 13.883976936340332,
|
| 324 |
+
"rewards/rejected": -12.740835189819336,
|
| 325 |
+
"step": 210
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.88,
|
| 329 |
+
"grad_norm": 0.2920965850353241,
|
| 330 |
+
"learning_rate": 3.1222222222222225e-05,
|
| 331 |
+
"logits/chosen": -2.3677401542663574,
|
| 332 |
+
"logits/rejected": -1.9734885692596436,
|
| 333 |
+
"logps/chosen": -36.96697235107422,
|
| 334 |
+
"logps/rejected": -187.7698211669922,
|
| 335 |
+
"loss": 0.2081,
|
| 336 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 337 |
+
"rewards/chosen": 1.8709278106689453,
|
| 338 |
+
"rewards/margins": 12.740228652954102,
|
| 339 |
+
"rewards/rejected": -10.86929988861084,
|
| 340 |
+
"step": 220
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 0.92,
|
| 344 |
+
"grad_norm": 0.15863250195980072,
|
| 345 |
+
"learning_rate": 3.0111111111111113e-05,
|
| 346 |
+
"logits/chosen": -1.819131851196289,
|
| 347 |
+
"logits/rejected": -1.4921624660491943,
|
| 348 |
+
"logps/chosen": -41.595420837402344,
|
| 349 |
+
"logps/rejected": -186.645751953125,
|
| 350 |
+
"loss": 0.1995,
|
| 351 |
+
"rewards/accuracies": 0.737500011920929,
|
| 352 |
+
"rewards/chosen": 0.9655638933181763,
|
| 353 |
+
"rewards/margins": 12.226719856262207,
|
| 354 |
+
"rewards/rejected": -11.26115608215332,
|
| 355 |
+
"step": 230
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"epoch": 0.96,
|
| 359 |
+
"grad_norm": 0.0697341114282608,
|
| 360 |
+
"learning_rate": 2.9e-05,
|
| 361 |
+
"logits/chosen": -2.357139825820923,
|
| 362 |
+
"logits/rejected": -1.888144850730896,
|
| 363 |
+
"logps/chosen": -52.9119987487793,
|
| 364 |
+
"logps/rejected": -263.25390625,
|
| 365 |
+
"loss": 0.1824,
|
| 366 |
+
"rewards/accuracies": 0.7749999761581421,
|
| 367 |
+
"rewards/chosen": 0.7968165874481201,
|
| 368 |
+
"rewards/margins": 18.26348304748535,
|
| 369 |
+
"rewards/rejected": -17.466665267944336,
|
| 370 |
+
"step": 240
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.0,
|
| 374 |
+
"grad_norm": 0.8565608859062195,
|
| 375 |
+
"learning_rate": 2.788888888888889e-05,
|
| 376 |
+
"logits/chosen": -2.9249751567840576,
|
| 377 |
+
"logits/rejected": -2.6594655513763428,
|
| 378 |
+
"logps/chosen": -49.89072799682617,
|
| 379 |
+
"logps/rejected": -190.1117401123047,
|
| 380 |
+
"loss": 0.2175,
|
| 381 |
+
"rewards/accuracies": 0.699999988079071,
|
| 382 |
+
"rewards/chosen": 0.047927260398864746,
|
| 383 |
+
"rewards/margins": 11.593302726745605,
|
| 384 |
+
"rewards/rejected": -11.54537582397461,
|
| 385 |
+
"step": 250
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 1.04,
|
| 389 |
+
"grad_norm": 0.4322703778743744,
|
| 390 |
+
"learning_rate": 2.677777777777778e-05,
|
| 391 |
+
"logits/chosen": -2.591165781021118,
|
| 392 |
+
"logits/rejected": -2.2559447288513184,
|
| 393 |
+
"logps/chosen": -42.47401428222656,
|
| 394 |
+
"logps/rejected": -188.3767547607422,
|
| 395 |
+
"loss": 0.2081,
|
| 396 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 397 |
+
"rewards/chosen": 0.9701582789421082,
|
| 398 |
+
"rewards/margins": 12.480576515197754,
|
| 399 |
+
"rewards/rejected": -11.510419845581055,
|
| 400 |
+
"step": 260
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 1.08,
|
| 404 |
+
"grad_norm": 0.19003595411777496,
|
| 405 |
+
"learning_rate": 2.5666666666666666e-05,
|
| 406 |
+
"logits/chosen": -3.374302625656128,
|
| 407 |
+
"logits/rejected": -3.0488531589508057,
|
| 408 |
+
"logps/chosen": -57.8838996887207,
|
| 409 |
+
"logps/rejected": -193.90777587890625,
|
| 410 |
+
"loss": 0.3035,
|
| 411 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 412 |
+
"rewards/chosen": -0.37895283102989197,
|
| 413 |
+
"rewards/margins": 11.51020622253418,
|
| 414 |
+
"rewards/rejected": -11.889159202575684,
|
| 415 |
+
"step": 270
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 1.12,
|
| 419 |
+
"grad_norm": 0.16604876518249512,
|
| 420 |
+
"learning_rate": 2.4555555555555557e-05,
|
| 421 |
+
"logits/chosen": -3.1895713806152344,
|
| 422 |
+
"logits/rejected": -2.834735870361328,
|
| 423 |
+
"logps/chosen": -52.5036735534668,
|
| 424 |
+
"logps/rejected": -177.6607666015625,
|
| 425 |
+
"loss": 0.2516,
|
| 426 |
+
"rewards/accuracies": 0.637499988079071,
|
| 427 |
+
"rewards/chosen": 0.857752799987793,
|
| 428 |
+
"rewards/margins": 10.699987411499023,
|
| 429 |
+
"rewards/rejected": -9.84223461151123,
|
| 430 |
+
"step": 280
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.16,
|
| 434 |
+
"grad_norm": 0.14234374463558197,
|
| 435 |
+
"learning_rate": 2.3444444444444448e-05,
|
| 436 |
+
"logits/chosen": -3.344165086746216,
|
| 437 |
+
"logits/rejected": -3.020646572113037,
|
| 438 |
+
"logps/chosen": -41.34022903442383,
|
| 439 |
+
"logps/rejected": -178.89938354492188,
|
| 440 |
+
"loss": 0.2602,
|
| 441 |
+
"rewards/accuracies": 0.637499988079071,
|
| 442 |
+
"rewards/chosen": 1.0710757970809937,
|
| 443 |
+
"rewards/margins": 11.487492561340332,
|
| 444 |
+
"rewards/rejected": -10.416417121887207,
|
| 445 |
+
"step": 290
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 1.2,
|
| 449 |
+
"grad_norm": 0.1858437955379486,
|
| 450 |
+
"learning_rate": 2.2333333333333335e-05,
|
| 451 |
+
"logits/chosen": -3.0915908813476562,
|
| 452 |
+
"logits/rejected": -2.762167453765869,
|
| 453 |
+
"logps/chosen": -41.24951171875,
|
| 454 |
+
"logps/rejected": -172.49880981445312,
|
| 455 |
+
"loss": 0.2256,
|
| 456 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 457 |
+
"rewards/chosen": 1.1378252506256104,
|
| 458 |
+
"rewards/margins": 10.839186668395996,
|
| 459 |
+
"rewards/rejected": -9.701360702514648,
|
| 460 |
+
"step": 300
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 1.24,
|
| 464 |
+
"grad_norm": 0.2519996762275696,
|
| 465 |
+
"learning_rate": 2.1222222222222223e-05,
|
| 466 |
+
"logits/chosen": -3.076692581176758,
|
| 467 |
+
"logits/rejected": -2.7446165084838867,
|
| 468 |
+
"logps/chosen": -50.308746337890625,
|
| 469 |
+
"logps/rejected": -204.6868896484375,
|
| 470 |
+
"loss": 0.165,
|
| 471 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 472 |
+
"rewards/chosen": 0.4235803484916687,
|
| 473 |
+
"rewards/margins": 13.201803207397461,
|
| 474 |
+
"rewards/rejected": -12.778223037719727,
|
| 475 |
+
"step": 310
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.28,
|
| 479 |
+
"grad_norm": 0.3874475657939911,
|
| 480 |
+
"learning_rate": 2.011111111111111e-05,
|
| 481 |
+
"logits/chosen": -3.646862030029297,
|
| 482 |
+
"logits/rejected": -3.424621105194092,
|
| 483 |
+
"logps/chosen": -52.49565505981445,
|
| 484 |
+
"logps/rejected": -167.20236206054688,
|
| 485 |
+
"loss": 0.2347,
|
| 486 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 487 |
+
"rewards/chosen": 0.23652243614196777,
|
| 488 |
+
"rewards/margins": 9.693285942077637,
|
| 489 |
+
"rewards/rejected": -9.456764221191406,
|
| 490 |
+
"step": 320
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"epoch": 1.32,
|
| 494 |
+
"grad_norm": 0.2814558148384094,
|
| 495 |
+
"learning_rate": 1.9e-05,
|
| 496 |
+
"logits/chosen": -3.1871893405914307,
|
| 497 |
+
"logits/rejected": -2.7857449054718018,
|
| 498 |
+
"logps/chosen": -50.25436782836914,
|
| 499 |
+
"logps/rejected": -183.965087890625,
|
| 500 |
+
"loss": 0.269,
|
| 501 |
+
"rewards/accuracies": 0.625,
|
| 502 |
+
"rewards/chosen": 0.5717954039573669,
|
| 503 |
+
"rewards/margins": 11.194442749023438,
|
| 504 |
+
"rewards/rejected": -10.622648239135742,
|
| 505 |
+
"step": 330
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 1.3599999999999999,
|
| 509 |
+
"grad_norm": 0.2564876973628998,
|
| 510 |
+
"learning_rate": 1.788888888888889e-05,
|
| 511 |
+
"logits/chosen": -3.328599452972412,
|
| 512 |
+
"logits/rejected": -2.8498024940490723,
|
| 513 |
+
"logps/chosen": -40.71959686279297,
|
| 514 |
+
"logps/rejected": -194.56871032714844,
|
| 515 |
+
"loss": 0.1908,
|
| 516 |
+
"rewards/accuracies": 0.762499988079071,
|
| 517 |
+
"rewards/chosen": 1.3430808782577515,
|
| 518 |
+
"rewards/margins": 13.080599784851074,
|
| 519 |
+
"rewards/rejected": -11.737520217895508,
|
| 520 |
+
"step": 340
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 1.4,
|
| 524 |
+
"grad_norm": 0.2628025412559509,
|
| 525 |
+
"learning_rate": 1.677777777777778e-05,
|
| 526 |
+
"logits/chosen": -4.046440124511719,
|
| 527 |
+
"logits/rejected": -3.7269904613494873,
|
| 528 |
+
"logps/chosen": -46.230613708496094,
|
| 529 |
+
"logps/rejected": -186.4309539794922,
|
| 530 |
+
"loss": 0.2016,
|
| 531 |
+
"rewards/accuracies": 0.737500011920929,
|
| 532 |
+
"rewards/chosen": 0.4831501543521881,
|
| 533 |
+
"rewards/margins": 11.869375228881836,
|
| 534 |
+
"rewards/rejected": -11.386224746704102,
|
| 535 |
+
"step": 350
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 1.44,
|
| 539 |
+
"grad_norm": 0.22657158970832825,
|
| 540 |
+
"learning_rate": 1.5666666666666667e-05,
|
| 541 |
+
"logits/chosen": -3.75866961479187,
|
| 542 |
+
"logits/rejected": -3.361738681793213,
|
| 543 |
+
"logps/chosen": -49.731544494628906,
|
| 544 |
+
"logps/rejected": -203.48196411132812,
|
| 545 |
+
"loss": 0.165,
|
| 546 |
+
"rewards/accuracies": 0.7749999761581421,
|
| 547 |
+
"rewards/chosen": 0.7678171992301941,
|
| 548 |
+
"rewards/margins": 12.776975631713867,
|
| 549 |
+
"rewards/rejected": -12.009159088134766,
|
| 550 |
+
"step": 360
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 1.48,
|
| 554 |
+
"grad_norm": 0.2632221281528473,
|
| 555 |
+
"learning_rate": 1.4555555555555556e-05,
|
| 556 |
+
"logits/chosen": -3.995814561843872,
|
| 557 |
+
"logits/rejected": -3.644721508026123,
|
| 558 |
+
"logps/chosen": -48.3692626953125,
|
| 559 |
+
"logps/rejected": -201.17593383789062,
|
| 560 |
+
"loss": 0.1649,
|
| 561 |
+
"rewards/accuracies": 0.762499988079071,
|
| 562 |
+
"rewards/chosen": 0.5727468729019165,
|
| 563 |
+
"rewards/margins": 12.856643676757812,
|
| 564 |
+
"rewards/rejected": -12.283895492553711,
|
| 565 |
+
"step": 370
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"epoch": 1.52,
|
| 569 |
+
"grad_norm": 0.1788269430398941,
|
| 570 |
+
"learning_rate": 1.3444444444444445e-05,
|
| 571 |
+
"logits/chosen": -3.70817494392395,
|
| 572 |
+
"logits/rejected": -3.3923275470733643,
|
| 573 |
+
"logps/chosen": -40.871490478515625,
|
| 574 |
+
"logps/rejected": -171.85128784179688,
|
| 575 |
+
"loss": 0.2101,
|
| 576 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 577 |
+
"rewards/chosen": 0.9809708595275879,
|
| 578 |
+
"rewards/margins": 11.068758010864258,
|
| 579 |
+
"rewards/rejected": -10.087786674499512,
|
| 580 |
+
"step": 380
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 1.56,
|
| 584 |
+
"grad_norm": 0.14607764780521393,
|
| 585 |
+
"learning_rate": 1.2333333333333334e-05,
|
| 586 |
+
"logits/chosen": -3.0384268760681152,
|
| 587 |
+
"logits/rejected": -2.7124972343444824,
|
| 588 |
+
"logps/chosen": -36.8101806640625,
|
| 589 |
+
"logps/rejected": -163.4900360107422,
|
| 590 |
+
"loss": 0.26,
|
| 591 |
+
"rewards/accuracies": 0.6875,
|
| 592 |
+
"rewards/chosen": 1.447727084159851,
|
| 593 |
+
"rewards/margins": 10.76397705078125,
|
| 594 |
+
"rewards/rejected": -9.316250801086426,
|
| 595 |
+
"step": 390
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 1.6,
|
| 599 |
+
"grad_norm": 0.21636660397052765,
|
| 600 |
+
"learning_rate": 1.1222222222222224e-05,
|
| 601 |
+
"logits/chosen": -3.6440536975860596,
|
| 602 |
+
"logits/rejected": -3.278002977371216,
|
| 603 |
+
"logps/chosen": -41.639305114746094,
|
| 604 |
+
"logps/rejected": -200.2166290283203,
|
| 605 |
+
"loss": 0.1822,
|
| 606 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 607 |
+
"rewards/chosen": 1.6405818462371826,
|
| 608 |
+
"rewards/margins": 13.554621696472168,
|
| 609 |
+
"rewards/rejected": -11.914040565490723,
|
| 610 |
+
"step": 400
|
| 611 |
+
}
|
| 612 |
+
],
|
| 613 |
+
"logging_steps": 10,
|
| 614 |
+
"max_steps": 500,
|
| 615 |
+
"num_input_tokens_seen": 0,
|
| 616 |
+
"num_train_epochs": 2,
|
| 617 |
+
"save_steps": 200,
|
| 618 |
+
"stateful_callbacks": {
|
| 619 |
+
"TrainerControl": {
|
| 620 |
+
"args": {
|
| 621 |
+
"should_epoch_stop": false,
|
| 622 |
+
"should_evaluate": false,
|
| 623 |
+
"should_log": false,
|
| 624 |
+
"should_save": true,
|
| 625 |
+
"should_training_stop": false
|
| 626 |
+
},
|
| 627 |
+
"attributes": {}
|
| 628 |
+
}
|
| 629 |
+
},
|
| 630 |
+
"total_flos": 0.0,
|
| 631 |
+
"train_batch_size": 2,
|
| 632 |
+
"trial_name": null,
|
| 633 |
+
"trial_params": null
|
| 634 |
+
}
|
checkpoint-400/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:620ad83214f09c07b562685e5c4a615d6dc192dd64a1fa24d684c1e7a11a842b
|
| 3 |
+
size 6929
|
checkpoint-400/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/README.md
ADDED
|
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 7 |
+
- dpo
|
| 8 |
+
- lora
|
| 9 |
+
- transformers
|
| 10 |
+
- trl
|
| 11 |
+
- unsloth
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Model Card for Model ID
|
| 15 |
+
|
| 16 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## Model Details
|
| 21 |
+
|
| 22 |
+
### Model Description
|
| 23 |
+
|
| 24 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
- **Developed by:** [More Information Needed]
|
| 29 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
+
- **Model type:** [More Information Needed]
|
| 32 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
+
- **License:** [More Information Needed]
|
| 34 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
+
|
| 36 |
+
### Model Sources [optional]
|
| 37 |
+
|
| 38 |
+
<!-- Provide the basic links for the model. -->
|
| 39 |
+
|
| 40 |
+
- **Repository:** [More Information Needed]
|
| 41 |
+
- **Paper [optional]:** [More Information Needed]
|
| 42 |
+
- **Demo [optional]:** [More Information Needed]
|
| 43 |
+
|
| 44 |
+
## Uses
|
| 45 |
+
|
| 46 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
+
|
| 48 |
+
### Direct Use
|
| 49 |
+
|
| 50 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
+
|
| 52 |
+
[More Information Needed]
|
| 53 |
+
|
| 54 |
+
### Downstream Use [optional]
|
| 55 |
+
|
| 56 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
+
|
| 58 |
+
[More Information Needed]
|
| 59 |
+
|
| 60 |
+
### Out-of-Scope Use
|
| 61 |
+
|
| 62 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
+
|
| 64 |
+
[More Information Needed]
|
| 65 |
+
|
| 66 |
+
## Bias, Risks, and Limitations
|
| 67 |
+
|
| 68 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 69 |
+
|
| 70 |
+
[More Information Needed]
|
| 71 |
+
|
| 72 |
+
### Recommendations
|
| 73 |
+
|
| 74 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 75 |
+
|
| 76 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 77 |
+
|
| 78 |
+
## How to Get Started with the Model
|
| 79 |
+
|
| 80 |
+
Use the code below to get started with the model.
|
| 81 |
+
|
| 82 |
+
[More Information Needed]
|
| 83 |
+
|
| 84 |
+
## Training Details
|
| 85 |
+
|
| 86 |
+
### Training Data
|
| 87 |
+
|
| 88 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 89 |
+
|
| 90 |
+
[More Information Needed]
|
| 91 |
+
|
| 92 |
+
### Training Procedure
|
| 93 |
+
|
| 94 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
+
|
| 96 |
+
#### Preprocessing [optional]
|
| 97 |
+
|
| 98 |
+
[More Information Needed]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
#### Training Hyperparameters
|
| 102 |
+
|
| 103 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
+
|
| 105 |
+
#### Speeds, Sizes, Times [optional]
|
| 106 |
+
|
| 107 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
+
|
| 109 |
+
[More Information Needed]
|
| 110 |
+
|
| 111 |
+
## Evaluation
|
| 112 |
+
|
| 113 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
+
|
| 115 |
+
### Testing Data, Factors & Metrics
|
| 116 |
+
|
| 117 |
+
#### Testing Data
|
| 118 |
+
|
| 119 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
+
|
| 121 |
+
[More Information Needed]
|
| 122 |
+
|
| 123 |
+
#### Factors
|
| 124 |
+
|
| 125 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
+
|
| 127 |
+
[More Information Needed]
|
| 128 |
+
|
| 129 |
+
#### Metrics
|
| 130 |
+
|
| 131 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
+
|
| 133 |
+
[More Information Needed]
|
| 134 |
+
|
| 135 |
+
### Results
|
| 136 |
+
|
| 137 |
+
[More Information Needed]
|
| 138 |
+
|
| 139 |
+
#### Summary
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
## Model Examination [optional]
|
| 144 |
+
|
| 145 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
+
|
| 147 |
+
[More Information Needed]
|
| 148 |
+
|
| 149 |
+
## Environmental Impact
|
| 150 |
+
|
| 151 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
+
|
| 153 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 154 |
+
|
| 155 |
+
- **Hardware Type:** [More Information Needed]
|
| 156 |
+
- **Hours used:** [More Information Needed]
|
| 157 |
+
- **Cloud Provider:** [More Information Needed]
|
| 158 |
+
- **Compute Region:** [More Information Needed]
|
| 159 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
+
|
| 161 |
+
## Technical Specifications [optional]
|
| 162 |
+
|
| 163 |
+
### Model Architecture and Objective
|
| 164 |
+
|
| 165 |
+
[More Information Needed]
|
| 166 |
+
|
| 167 |
+
### Compute Infrastructure
|
| 168 |
+
|
| 169 |
+
[More Information Needed]
|
| 170 |
+
|
| 171 |
+
#### Hardware
|
| 172 |
+
|
| 173 |
+
[More Information Needed]
|
| 174 |
+
|
| 175 |
+
#### Software
|
| 176 |
+
|
| 177 |
+
[More Information Needed]
|
| 178 |
+
|
| 179 |
+
## Citation [optional]
|
| 180 |
+
|
| 181 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
+
|
| 183 |
+
**BibTeX:**
|
| 184 |
+
|
| 185 |
+
[More Information Needed]
|
| 186 |
+
|
| 187 |
+
**APA:**
|
| 188 |
+
|
| 189 |
+
[More Information Needed]
|
| 190 |
+
|
| 191 |
+
## Glossary [optional]
|
| 192 |
+
|
| 193 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
+
|
| 195 |
+
[More Information Needed]
|
| 196 |
+
|
| 197 |
+
## More Information [optional]
|
| 198 |
+
|
| 199 |
+
[More Information Needed]
|
| 200 |
+
|
| 201 |
+
## Model Card Authors [optional]
|
| 202 |
+
|
| 203 |
+
[More Information Needed]
|
| 204 |
+
|
| 205 |
+
## Model Card Contact
|
| 206 |
+
|
| 207 |
+
[More Information Needed]
|
| 208 |
+
### Framework versions
|
| 209 |
+
|
| 210 |
+
- PEFT 0.18.1
|
checkpoint-500/adapter_config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alora_invocation_tokens": null,
|
| 3 |
+
"alpha_pattern": {},
|
| 4 |
+
"arrow_config": null,
|
| 5 |
+
"auto_mapping": {
|
| 6 |
+
"base_model_class": "Qwen3ForCausalLM",
|
| 7 |
+
"parent_library": "transformers.models.qwen3.modeling_qwen3",
|
| 8 |
+
"unsloth_fixed": true
|
| 9 |
+
},
|
| 10 |
+
"base_model_name_or_path": "unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit",
|
| 11 |
+
"bias": "none",
|
| 12 |
+
"corda_config": null,
|
| 13 |
+
"ensure_weight_tying": false,
|
| 14 |
+
"eva_config": null,
|
| 15 |
+
"exclude_modules": null,
|
| 16 |
+
"fan_in_fan_out": false,
|
| 17 |
+
"inference_mode": true,
|
| 18 |
+
"init_lora_weights": true,
|
| 19 |
+
"layer_replication": null,
|
| 20 |
+
"layers_pattern": null,
|
| 21 |
+
"layers_to_transform": null,
|
| 22 |
+
"loftq_config": {},
|
| 23 |
+
"lora_alpha": 128,
|
| 24 |
+
"lora_bias": false,
|
| 25 |
+
"lora_dropout": 0,
|
| 26 |
+
"megatron_config": null,
|
| 27 |
+
"megatron_core": "megatron.core",
|
| 28 |
+
"modules_to_save": null,
|
| 29 |
+
"peft_type": "LORA",
|
| 30 |
+
"peft_version": "0.18.1",
|
| 31 |
+
"qalora_group_size": 16,
|
| 32 |
+
"r": 64,
|
| 33 |
+
"rank_pattern": {},
|
| 34 |
+
"revision": null,
|
| 35 |
+
"target_modules": [
|
| 36 |
+
"v_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"down_proj",
|
| 39 |
+
"k_proj",
|
| 40 |
+
"gate_proj",
|
| 41 |
+
"o_proj",
|
| 42 |
+
"up_proj"
|
| 43 |
+
],
|
| 44 |
+
"target_parameters": null,
|
| 45 |
+
"task_type": "CAUSAL_LM",
|
| 46 |
+
"trainable_token_indices": null,
|
| 47 |
+
"use_dora": true,
|
| 48 |
+
"use_qalora": false,
|
| 49 |
+
"use_rslora": false
|
| 50 |
+
}
|
checkpoint-500/adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6952f5c0dfff8585a8d94ad0267e7bf11f1889ecfabee07044add3fa8dfe753
|
| 3 |
+
size 533009160
|
checkpoint-500/added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
checkpoint-500/chat_template.jinja
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for message in messages[::-1] %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 21 |
+
{%- set ns.multi_step_tool = false %}
|
| 22 |
+
{%- set ns.last_query_index = index %}
|
| 23 |
+
{%- endif %}
|
| 24 |
+
{%- endfor %}
|
| 25 |
+
{%- for message in messages %}
|
| 26 |
+
{%- if message.content is string %}
|
| 27 |
+
{%- set content = message.content %}
|
| 28 |
+
{%- else %}
|
| 29 |
+
{%- set content = '' %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 32 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 33 |
+
{%- elif message.role == "assistant" %}
|
| 34 |
+
{%- set reasoning_content = '' %}
|
| 35 |
+
{%- if message.reasoning_content is string %}
|
| 36 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 37 |
+
{%- else %}
|
| 38 |
+
{%- if '</think>' in content %}
|
| 39 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 40 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 41 |
+
{%- endif %}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 44 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 45 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 46 |
+
{%- else %}
|
| 47 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- else %}
|
| 50 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if message.tool_calls %}
|
| 53 |
+
{%- for tool_call in message.tool_calls %}
|
| 54 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 55 |
+
{{- '\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- if tool_call.function %}
|
| 58 |
+
{%- set tool_call = tool_call.function %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 61 |
+
{{- tool_call.name }}
|
| 62 |
+
{{- '", "arguments": ' }}
|
| 63 |
+
{%- if tool_call.arguments is string %}
|
| 64 |
+
{{- tool_call.arguments }}
|
| 65 |
+
{%- else %}
|
| 66 |
+
{{- tool_call.arguments | tojson }}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{{- '}\n</tool_call>' }}
|
| 69 |
+
{%- endfor %}
|
| 70 |
+
{%- endif %}
|
| 71 |
+
{{- '<|im_end|>\n' }}
|
| 72 |
+
{%- elif message.role == "tool" %}
|
| 73 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 74 |
+
{{- '<|im_start|>user' }}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{{- '\n<tool_response>\n' }}
|
| 77 |
+
{{- content }}
|
| 78 |
+
{{- '\n</tool_response>' }}
|
| 79 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{%- endfor %}
|
| 84 |
+
{%- if add_generation_prompt %}
|
| 85 |
+
{{- '<|im_start|>assistant\n' }}
|
| 86 |
+
{%- endif %}
|
checkpoint-500/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-500/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:550e0408c8b86cef24d5e012431c7c714e9ad7cc94ba7fd546154828d7a00296
|
| 3 |
+
size 272956501
|
checkpoint-500/rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c800b778fa7e115e4c34de8529902de8b61c9a1b4bab3eb8295d06dafff030e
|
| 3 |
+
size 14645
|
checkpoint-500/scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3105ebe8471f9890c3eb1f20cc0f2520fa5fdb0128474bbc87e607b2ec7c53dc
|
| 3 |
+
size 1465
|
checkpoint-500/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-500/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
checkpoint-500/tokenizer_config.json
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|vision_pad|>",
|
| 236 |
+
"padding_side": "right",
|
| 237 |
+
"split_special_tokens": false,
|
| 238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 239 |
+
"unk_token": null
|
| 240 |
+
}
|
checkpoint-500/trainer_state.json
ADDED
|
@@ -0,0 +1,784 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 2.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 500,
|
| 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.04,
|
| 14 |
+
"grad_norm": 8.528485298156738,
|
| 15 |
+
"learning_rate": 9e-06,
|
| 16 |
+
"logits/chosen": 2.054985523223877,
|
| 17 |
+
"logits/rejected": 1.9033839702606201,
|
| 18 |
+
"logps/chosen": -23.966228485107422,
|
| 19 |
+
"logps/rejected": -53.68938446044922,
|
| 20 |
+
"loss": 0.5192,
|
| 21 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 22 |
+
"rewards/chosen": 3.1913700103759766,
|
| 23 |
+
"rewards/margins": 0.7934623956680298,
|
| 24 |
+
"rewards/rejected": 2.3979074954986572,
|
| 25 |
+
"step": 10
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"epoch": 0.08,
|
| 29 |
+
"grad_norm": 0.4699181616306305,
|
| 30 |
+
"learning_rate": 1.9e-05,
|
| 31 |
+
"logits/chosen": 2.652074098587036,
|
| 32 |
+
"logits/rejected": 2.6142349243164062,
|
| 33 |
+
"logps/chosen": -19.591583251953125,
|
| 34 |
+
"logps/rejected": -71.51148986816406,
|
| 35 |
+
"loss": 0.2992,
|
| 36 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 37 |
+
"rewards/chosen": 3.1300272941589355,
|
| 38 |
+
"rewards/margins": 2.6587636470794678,
|
| 39 |
+
"rewards/rejected": 0.47126370668411255,
|
| 40 |
+
"step": 20
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 0.12,
|
| 44 |
+
"grad_norm": 6.240016937255859,
|
| 45 |
+
"learning_rate": 2.9e-05,
|
| 46 |
+
"logits/chosen": 3.368675947189331,
|
| 47 |
+
"logits/rejected": 3.328001022338867,
|
| 48 |
+
"logps/chosen": -21.065635681152344,
|
| 49 |
+
"logps/rejected": -97.60667419433594,
|
| 50 |
+
"loss": 0.2464,
|
| 51 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 52 |
+
"rewards/chosen": 3.2080636024475098,
|
| 53 |
+
"rewards/margins": 5.249109745025635,
|
| 54 |
+
"rewards/rejected": -2.041045904159546,
|
| 55 |
+
"step": 30
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"epoch": 0.16,
|
| 59 |
+
"grad_norm": 0.10691515356302261,
|
| 60 |
+
"learning_rate": 3.9000000000000006e-05,
|
| 61 |
+
"logits/chosen": 2.1906957626342773,
|
| 62 |
+
"logits/rejected": 2.274221658706665,
|
| 63 |
+
"logps/chosen": -17.63897132873535,
|
| 64 |
+
"logps/rejected": -90.91486358642578,
|
| 65 |
+
"loss": 0.2946,
|
| 66 |
+
"rewards/accuracies": 0.6000000238418579,
|
| 67 |
+
"rewards/chosen": 3.081021785736084,
|
| 68 |
+
"rewards/margins": 5.548964500427246,
|
| 69 |
+
"rewards/rejected": -2.467942714691162,
|
| 70 |
+
"step": 40
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"epoch": 0.2,
|
| 74 |
+
"grad_norm": 0.6372888088226318,
|
| 75 |
+
"learning_rate": 4.9e-05,
|
| 76 |
+
"logits/chosen": 0.6477093696594238,
|
| 77 |
+
"logits/rejected": 0.833999752998352,
|
| 78 |
+
"logps/chosen": -29.2796630859375,
|
| 79 |
+
"logps/rejected": -124.37042236328125,
|
| 80 |
+
"loss": 0.2171,
|
| 81 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 82 |
+
"rewards/chosen": 2.3345980644226074,
|
| 83 |
+
"rewards/margins": 7.417657375335693,
|
| 84 |
+
"rewards/rejected": -5.083059310913086,
|
| 85 |
+
"step": 50
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"epoch": 0.24,
|
| 89 |
+
"grad_norm": 0.571674108505249,
|
| 90 |
+
"learning_rate": 4.9e-05,
|
| 91 |
+
"logits/chosen": 2.270029067993164,
|
| 92 |
+
"logits/rejected": 2.524890899658203,
|
| 93 |
+
"logps/chosen": -27.73245620727539,
|
| 94 |
+
"logps/rejected": -103.86787414550781,
|
| 95 |
+
"loss": 0.2655,
|
| 96 |
+
"rewards/accuracies": 0.6875,
|
| 97 |
+
"rewards/chosen": 2.1670007705688477,
|
| 98 |
+
"rewards/margins": 5.720990180969238,
|
| 99 |
+
"rewards/rejected": -3.5539894104003906,
|
| 100 |
+
"step": 60
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.28,
|
| 104 |
+
"grad_norm": 0.6424742937088013,
|
| 105 |
+
"learning_rate": 4.7888888888888886e-05,
|
| 106 |
+
"logits/chosen": 1.0871316194534302,
|
| 107 |
+
"logits/rejected": 1.31881582736969,
|
| 108 |
+
"logps/chosen": -35.905784606933594,
|
| 109 |
+
"logps/rejected": -127.39874267578125,
|
| 110 |
+
"loss": 0.2822,
|
| 111 |
+
"rewards/accuracies": 0.625,
|
| 112 |
+
"rewards/chosen": 2.1068429946899414,
|
| 113 |
+
"rewards/margins": 7.130377769470215,
|
| 114 |
+
"rewards/rejected": -5.02353572845459,
|
| 115 |
+
"step": 70
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"epoch": 0.32,
|
| 119 |
+
"grad_norm": 0.2139262557029724,
|
| 120 |
+
"learning_rate": 4.677777777777778e-05,
|
| 121 |
+
"logits/chosen": 1.289627194404602,
|
| 122 |
+
"logits/rejected": 1.5509237051010132,
|
| 123 |
+
"logps/chosen": -37.245338439941406,
|
| 124 |
+
"logps/rejected": -143.37571716308594,
|
| 125 |
+
"loss": 0.2551,
|
| 126 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 127 |
+
"rewards/chosen": 1.7066528797149658,
|
| 128 |
+
"rewards/margins": 8.251852989196777,
|
| 129 |
+
"rewards/rejected": -6.545199394226074,
|
| 130 |
+
"step": 80
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"epoch": 0.36,
|
| 134 |
+
"grad_norm": 9.060225486755371,
|
| 135 |
+
"learning_rate": 4.566666666666667e-05,
|
| 136 |
+
"logits/chosen": -0.21008212864398956,
|
| 137 |
+
"logits/rejected": 0.13004381954669952,
|
| 138 |
+
"logps/chosen": -34.545066833496094,
|
| 139 |
+
"logps/rejected": -136.86561584472656,
|
| 140 |
+
"loss": 0.2398,
|
| 141 |
+
"rewards/accuracies": 0.699999988079071,
|
| 142 |
+
"rewards/chosen": 2.3621673583984375,
|
| 143 |
+
"rewards/margins": 8.225154876708984,
|
| 144 |
+
"rewards/rejected": -5.862987041473389,
|
| 145 |
+
"step": 90
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"epoch": 0.4,
|
| 149 |
+
"grad_norm": 1.8874521255493164,
|
| 150 |
+
"learning_rate": 4.4555555555555555e-05,
|
| 151 |
+
"logits/chosen": 0.8144568204879761,
|
| 152 |
+
"logits/rejected": 1.1611213684082031,
|
| 153 |
+
"logps/chosen": -41.461158752441406,
|
| 154 |
+
"logps/rejected": -139.0437469482422,
|
| 155 |
+
"loss": 0.2243,
|
| 156 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 157 |
+
"rewards/chosen": 1.0751674175262451,
|
| 158 |
+
"rewards/margins": 7.963423728942871,
|
| 159 |
+
"rewards/rejected": -6.8882575035095215,
|
| 160 |
+
"step": 100
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"epoch": 0.44,
|
| 164 |
+
"grad_norm": 0.21037925779819489,
|
| 165 |
+
"learning_rate": 4.344444444444445e-05,
|
| 166 |
+
"logits/chosen": -0.559118390083313,
|
| 167 |
+
"logits/rejected": -0.11641822755336761,
|
| 168 |
+
"logps/chosen": -47.142601013183594,
|
| 169 |
+
"logps/rejected": -150.99496459960938,
|
| 170 |
+
"loss": 0.2594,
|
| 171 |
+
"rewards/accuracies": 0.6499999761581421,
|
| 172 |
+
"rewards/chosen": 0.32266765832901,
|
| 173 |
+
"rewards/margins": 8.18213939666748,
|
| 174 |
+
"rewards/rejected": -7.859471321105957,
|
| 175 |
+
"step": 110
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"epoch": 0.48,
|
| 179 |
+
"grad_norm": 0.33475127816200256,
|
| 180 |
+
"learning_rate": 4.233333333333334e-05,
|
| 181 |
+
"logits/chosen": -0.39622828364372253,
|
| 182 |
+
"logits/rejected": -0.1825840175151825,
|
| 183 |
+
"logps/chosen": -46.026100158691406,
|
| 184 |
+
"logps/rejected": -142.27127075195312,
|
| 185 |
+
"loss": 0.2442,
|
| 186 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 187 |
+
"rewards/chosen": 0.987580418586731,
|
| 188 |
+
"rewards/margins": 7.525818824768066,
|
| 189 |
+
"rewards/rejected": -6.538238525390625,
|
| 190 |
+
"step": 120
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"epoch": 0.52,
|
| 194 |
+
"grad_norm": 0.12689562141895294,
|
| 195 |
+
"learning_rate": 4.1222222222222224e-05,
|
| 196 |
+
"logits/chosen": -0.23490352928638458,
|
| 197 |
+
"logits/rejected": 0.27892929315567017,
|
| 198 |
+
"logps/chosen": -33.58977508544922,
|
| 199 |
+
"logps/rejected": -144.8148956298828,
|
| 200 |
+
"loss": 0.2096,
|
| 201 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 202 |
+
"rewards/chosen": 1.9526748657226562,
|
| 203 |
+
"rewards/margins": 8.64609146118164,
|
| 204 |
+
"rewards/rejected": -6.693416595458984,
|
| 205 |
+
"step": 130
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.56,
|
| 209 |
+
"grad_norm": 0.12881708145141602,
|
| 210 |
+
"learning_rate": 4.011111111111111e-05,
|
| 211 |
+
"logits/chosen": -1.1939542293548584,
|
| 212 |
+
"logits/rejected": -0.9672979116439819,
|
| 213 |
+
"logps/chosen": -37.64386749267578,
|
| 214 |
+
"logps/rejected": -125.4320068359375,
|
| 215 |
+
"loss": 0.2528,
|
| 216 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 217 |
+
"rewards/chosen": 2.0000433921813965,
|
| 218 |
+
"rewards/margins": 6.926792144775391,
|
| 219 |
+
"rewards/rejected": -4.926749229431152,
|
| 220 |
+
"step": 140
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"epoch": 0.6,
|
| 224 |
+
"grad_norm": 0.21873943507671356,
|
| 225 |
+
"learning_rate": 3.9000000000000006e-05,
|
| 226 |
+
"logits/chosen": -1.780418038368225,
|
| 227 |
+
"logits/rejected": -1.4915210008621216,
|
| 228 |
+
"logps/chosen": -35.17759704589844,
|
| 229 |
+
"logps/rejected": -136.65286254882812,
|
| 230 |
+
"loss": 0.2278,
|
| 231 |
+
"rewards/accuracies": 0.699999988079071,
|
| 232 |
+
"rewards/chosen": 1.875436544418335,
|
| 233 |
+
"rewards/margins": 8.086755752563477,
|
| 234 |
+
"rewards/rejected": -6.211319923400879,
|
| 235 |
+
"step": 150
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"epoch": 0.64,
|
| 239 |
+
"grad_norm": 0.053676556795835495,
|
| 240 |
+
"learning_rate": 3.7888888888888894e-05,
|
| 241 |
+
"logits/chosen": -1.770747423171997,
|
| 242 |
+
"logits/rejected": -1.2938441038131714,
|
| 243 |
+
"logps/chosen": -29.032825469970703,
|
| 244 |
+
"logps/rejected": -138.14309692382812,
|
| 245 |
+
"loss": 0.2089,
|
| 246 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 247 |
+
"rewards/chosen": 2.1548972129821777,
|
| 248 |
+
"rewards/margins": 8.57084846496582,
|
| 249 |
+
"rewards/rejected": -6.41594934463501,
|
| 250 |
+
"step": 160
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"epoch": 0.68,
|
| 254 |
+
"grad_norm": 0.31680184602737427,
|
| 255 |
+
"learning_rate": 3.677777777777778e-05,
|
| 256 |
+
"logits/chosen": -1.9017817974090576,
|
| 257 |
+
"logits/rejected": -1.6287091970443726,
|
| 258 |
+
"logps/chosen": -32.30609893798828,
|
| 259 |
+
"logps/rejected": -135.4978485107422,
|
| 260 |
+
"loss": 0.1837,
|
| 261 |
+
"rewards/accuracies": 0.762499988079071,
|
| 262 |
+
"rewards/chosen": 2.9330215454101562,
|
| 263 |
+
"rewards/margins": 8.456713676452637,
|
| 264 |
+
"rewards/rejected": -5.5236921310424805,
|
| 265 |
+
"step": 170
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"epoch": 0.72,
|
| 269 |
+
"grad_norm": 0.12343556433916092,
|
| 270 |
+
"learning_rate": 3.566666666666667e-05,
|
| 271 |
+
"logits/chosen": -2.0771210193634033,
|
| 272 |
+
"logits/rejected": -1.8654956817626953,
|
| 273 |
+
"logps/chosen": -38.074161529541016,
|
| 274 |
+
"logps/rejected": -140.7716522216797,
|
| 275 |
+
"loss": 0.2189,
|
| 276 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 277 |
+
"rewards/chosen": 1.6962649822235107,
|
| 278 |
+
"rewards/margins": 8.185938835144043,
|
| 279 |
+
"rewards/rejected": -6.4896745681762695,
|
| 280 |
+
"step": 180
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"epoch": 0.76,
|
| 284 |
+
"grad_norm": 0.16018041968345642,
|
| 285 |
+
"learning_rate": 3.4555555555555556e-05,
|
| 286 |
+
"logits/chosen": -2.5613696575164795,
|
| 287 |
+
"logits/rejected": -2.160233736038208,
|
| 288 |
+
"logps/chosen": -35.08837127685547,
|
| 289 |
+
"logps/rejected": -174.58566284179688,
|
| 290 |
+
"loss": 0.1491,
|
| 291 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 292 |
+
"rewards/chosen": 1.949218511581421,
|
| 293 |
+
"rewards/margins": 11.258779525756836,
|
| 294 |
+
"rewards/rejected": -9.309560775756836,
|
| 295 |
+
"step": 190
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"epoch": 0.8,
|
| 299 |
+
"grad_norm": 2.166445016860962,
|
| 300 |
+
"learning_rate": 3.3444444444444443e-05,
|
| 301 |
+
"logits/chosen": -3.0443778038024902,
|
| 302 |
+
"logits/rejected": -2.7526583671569824,
|
| 303 |
+
"logps/chosen": -40.106178283691406,
|
| 304 |
+
"logps/rejected": -151.62503051757812,
|
| 305 |
+
"loss": 0.2624,
|
| 306 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 307 |
+
"rewards/chosen": 1.3750978708267212,
|
| 308 |
+
"rewards/margins": 9.279211044311523,
|
| 309 |
+
"rewards/rejected": -7.904112339019775,
|
| 310 |
+
"step": 200
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 0.84,
|
| 314 |
+
"grad_norm": 0.3322606384754181,
|
| 315 |
+
"learning_rate": 3.233333333333333e-05,
|
| 316 |
+
"logits/chosen": -2.9914917945861816,
|
| 317 |
+
"logits/rejected": -2.5901548862457275,
|
| 318 |
+
"logps/chosen": -43.788307189941406,
|
| 319 |
+
"logps/rejected": -210.02102661132812,
|
| 320 |
+
"loss": 0.2258,
|
| 321 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 322 |
+
"rewards/chosen": 1.1431424617767334,
|
| 323 |
+
"rewards/margins": 13.883976936340332,
|
| 324 |
+
"rewards/rejected": -12.740835189819336,
|
| 325 |
+
"step": 210
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"epoch": 0.88,
|
| 329 |
+
"grad_norm": 0.2920965850353241,
|
| 330 |
+
"learning_rate": 3.1222222222222225e-05,
|
| 331 |
+
"logits/chosen": -2.3677401542663574,
|
| 332 |
+
"logits/rejected": -1.9734885692596436,
|
| 333 |
+
"logps/chosen": -36.96697235107422,
|
| 334 |
+
"logps/rejected": -187.7698211669922,
|
| 335 |
+
"loss": 0.2081,
|
| 336 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 337 |
+
"rewards/chosen": 1.8709278106689453,
|
| 338 |
+
"rewards/margins": 12.740228652954102,
|
| 339 |
+
"rewards/rejected": -10.86929988861084,
|
| 340 |
+
"step": 220
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"epoch": 0.92,
|
| 344 |
+
"grad_norm": 0.15863250195980072,
|
| 345 |
+
"learning_rate": 3.0111111111111113e-05,
|
| 346 |
+
"logits/chosen": -1.819131851196289,
|
| 347 |
+
"logits/rejected": -1.4921624660491943,
|
| 348 |
+
"logps/chosen": -41.595420837402344,
|
| 349 |
+
"logps/rejected": -186.645751953125,
|
| 350 |
+
"loss": 0.1995,
|
| 351 |
+
"rewards/accuracies": 0.737500011920929,
|
| 352 |
+
"rewards/chosen": 0.9655638933181763,
|
| 353 |
+
"rewards/margins": 12.226719856262207,
|
| 354 |
+
"rewards/rejected": -11.26115608215332,
|
| 355 |
+
"step": 230
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"epoch": 0.96,
|
| 359 |
+
"grad_norm": 0.0697341114282608,
|
| 360 |
+
"learning_rate": 2.9e-05,
|
| 361 |
+
"logits/chosen": -2.357139825820923,
|
| 362 |
+
"logits/rejected": -1.888144850730896,
|
| 363 |
+
"logps/chosen": -52.9119987487793,
|
| 364 |
+
"logps/rejected": -263.25390625,
|
| 365 |
+
"loss": 0.1824,
|
| 366 |
+
"rewards/accuracies": 0.7749999761581421,
|
| 367 |
+
"rewards/chosen": 0.7968165874481201,
|
| 368 |
+
"rewards/margins": 18.26348304748535,
|
| 369 |
+
"rewards/rejected": -17.466665267944336,
|
| 370 |
+
"step": 240
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"epoch": 1.0,
|
| 374 |
+
"grad_norm": 0.8565608859062195,
|
| 375 |
+
"learning_rate": 2.788888888888889e-05,
|
| 376 |
+
"logits/chosen": -2.9249751567840576,
|
| 377 |
+
"logits/rejected": -2.6594655513763428,
|
| 378 |
+
"logps/chosen": -49.89072799682617,
|
| 379 |
+
"logps/rejected": -190.1117401123047,
|
| 380 |
+
"loss": 0.2175,
|
| 381 |
+
"rewards/accuracies": 0.699999988079071,
|
| 382 |
+
"rewards/chosen": 0.047927260398864746,
|
| 383 |
+
"rewards/margins": 11.593302726745605,
|
| 384 |
+
"rewards/rejected": -11.54537582397461,
|
| 385 |
+
"step": 250
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"epoch": 1.04,
|
| 389 |
+
"grad_norm": 0.4322703778743744,
|
| 390 |
+
"learning_rate": 2.677777777777778e-05,
|
| 391 |
+
"logits/chosen": -2.591165781021118,
|
| 392 |
+
"logits/rejected": -2.2559447288513184,
|
| 393 |
+
"logps/chosen": -42.47401428222656,
|
| 394 |
+
"logps/rejected": -188.3767547607422,
|
| 395 |
+
"loss": 0.2081,
|
| 396 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 397 |
+
"rewards/chosen": 0.9701582789421082,
|
| 398 |
+
"rewards/margins": 12.480576515197754,
|
| 399 |
+
"rewards/rejected": -11.510419845581055,
|
| 400 |
+
"step": 260
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"epoch": 1.08,
|
| 404 |
+
"grad_norm": 0.19003595411777496,
|
| 405 |
+
"learning_rate": 2.5666666666666666e-05,
|
| 406 |
+
"logits/chosen": -3.374302625656128,
|
| 407 |
+
"logits/rejected": -3.0488531589508057,
|
| 408 |
+
"logps/chosen": -57.8838996887207,
|
| 409 |
+
"logps/rejected": -193.90777587890625,
|
| 410 |
+
"loss": 0.3035,
|
| 411 |
+
"rewards/accuracies": 0.5874999761581421,
|
| 412 |
+
"rewards/chosen": -0.37895283102989197,
|
| 413 |
+
"rewards/margins": 11.51020622253418,
|
| 414 |
+
"rewards/rejected": -11.889159202575684,
|
| 415 |
+
"step": 270
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 1.12,
|
| 419 |
+
"grad_norm": 0.16604876518249512,
|
| 420 |
+
"learning_rate": 2.4555555555555557e-05,
|
| 421 |
+
"logits/chosen": -3.1895713806152344,
|
| 422 |
+
"logits/rejected": -2.834735870361328,
|
| 423 |
+
"logps/chosen": -52.5036735534668,
|
| 424 |
+
"logps/rejected": -177.6607666015625,
|
| 425 |
+
"loss": 0.2516,
|
| 426 |
+
"rewards/accuracies": 0.637499988079071,
|
| 427 |
+
"rewards/chosen": 0.857752799987793,
|
| 428 |
+
"rewards/margins": 10.699987411499023,
|
| 429 |
+
"rewards/rejected": -9.84223461151123,
|
| 430 |
+
"step": 280
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"epoch": 1.16,
|
| 434 |
+
"grad_norm": 0.14234374463558197,
|
| 435 |
+
"learning_rate": 2.3444444444444448e-05,
|
| 436 |
+
"logits/chosen": -3.344165086746216,
|
| 437 |
+
"logits/rejected": -3.020646572113037,
|
| 438 |
+
"logps/chosen": -41.34022903442383,
|
| 439 |
+
"logps/rejected": -178.89938354492188,
|
| 440 |
+
"loss": 0.2602,
|
| 441 |
+
"rewards/accuracies": 0.637499988079071,
|
| 442 |
+
"rewards/chosen": 1.0710757970809937,
|
| 443 |
+
"rewards/margins": 11.487492561340332,
|
| 444 |
+
"rewards/rejected": -10.416417121887207,
|
| 445 |
+
"step": 290
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"epoch": 1.2,
|
| 449 |
+
"grad_norm": 0.1858437955379486,
|
| 450 |
+
"learning_rate": 2.2333333333333335e-05,
|
| 451 |
+
"logits/chosen": -3.0915908813476562,
|
| 452 |
+
"logits/rejected": -2.762167453765869,
|
| 453 |
+
"logps/chosen": -41.24951171875,
|
| 454 |
+
"logps/rejected": -172.49880981445312,
|
| 455 |
+
"loss": 0.2256,
|
| 456 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 457 |
+
"rewards/chosen": 1.1378252506256104,
|
| 458 |
+
"rewards/margins": 10.839186668395996,
|
| 459 |
+
"rewards/rejected": -9.701360702514648,
|
| 460 |
+
"step": 300
|
| 461 |
+
},
|
| 462 |
+
{
|
| 463 |
+
"epoch": 1.24,
|
| 464 |
+
"grad_norm": 0.2519996762275696,
|
| 465 |
+
"learning_rate": 2.1222222222222223e-05,
|
| 466 |
+
"logits/chosen": -3.076692581176758,
|
| 467 |
+
"logits/rejected": -2.7446165084838867,
|
| 468 |
+
"logps/chosen": -50.308746337890625,
|
| 469 |
+
"logps/rejected": -204.6868896484375,
|
| 470 |
+
"loss": 0.165,
|
| 471 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 472 |
+
"rewards/chosen": 0.4235803484916687,
|
| 473 |
+
"rewards/margins": 13.201803207397461,
|
| 474 |
+
"rewards/rejected": -12.778223037719727,
|
| 475 |
+
"step": 310
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"epoch": 1.28,
|
| 479 |
+
"grad_norm": 0.3874475657939911,
|
| 480 |
+
"learning_rate": 2.011111111111111e-05,
|
| 481 |
+
"logits/chosen": -3.646862030029297,
|
| 482 |
+
"logits/rejected": -3.424621105194092,
|
| 483 |
+
"logps/chosen": -52.49565505981445,
|
| 484 |
+
"logps/rejected": -167.20236206054688,
|
| 485 |
+
"loss": 0.2347,
|
| 486 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 487 |
+
"rewards/chosen": 0.23652243614196777,
|
| 488 |
+
"rewards/margins": 9.693285942077637,
|
| 489 |
+
"rewards/rejected": -9.456764221191406,
|
| 490 |
+
"step": 320
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"epoch": 1.32,
|
| 494 |
+
"grad_norm": 0.2814558148384094,
|
| 495 |
+
"learning_rate": 1.9e-05,
|
| 496 |
+
"logits/chosen": -3.1871893405914307,
|
| 497 |
+
"logits/rejected": -2.7857449054718018,
|
| 498 |
+
"logps/chosen": -50.25436782836914,
|
| 499 |
+
"logps/rejected": -183.965087890625,
|
| 500 |
+
"loss": 0.269,
|
| 501 |
+
"rewards/accuracies": 0.625,
|
| 502 |
+
"rewards/chosen": 0.5717954039573669,
|
| 503 |
+
"rewards/margins": 11.194442749023438,
|
| 504 |
+
"rewards/rejected": -10.622648239135742,
|
| 505 |
+
"step": 330
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 1.3599999999999999,
|
| 509 |
+
"grad_norm": 0.2564876973628998,
|
| 510 |
+
"learning_rate": 1.788888888888889e-05,
|
| 511 |
+
"logits/chosen": -3.328599452972412,
|
| 512 |
+
"logits/rejected": -2.8498024940490723,
|
| 513 |
+
"logps/chosen": -40.71959686279297,
|
| 514 |
+
"logps/rejected": -194.56871032714844,
|
| 515 |
+
"loss": 0.1908,
|
| 516 |
+
"rewards/accuracies": 0.762499988079071,
|
| 517 |
+
"rewards/chosen": 1.3430808782577515,
|
| 518 |
+
"rewards/margins": 13.080599784851074,
|
| 519 |
+
"rewards/rejected": -11.737520217895508,
|
| 520 |
+
"step": 340
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 1.4,
|
| 524 |
+
"grad_norm": 0.2628025412559509,
|
| 525 |
+
"learning_rate": 1.677777777777778e-05,
|
| 526 |
+
"logits/chosen": -4.046440124511719,
|
| 527 |
+
"logits/rejected": -3.7269904613494873,
|
| 528 |
+
"logps/chosen": -46.230613708496094,
|
| 529 |
+
"logps/rejected": -186.4309539794922,
|
| 530 |
+
"loss": 0.2016,
|
| 531 |
+
"rewards/accuracies": 0.737500011920929,
|
| 532 |
+
"rewards/chosen": 0.4831501543521881,
|
| 533 |
+
"rewards/margins": 11.869375228881836,
|
| 534 |
+
"rewards/rejected": -11.386224746704102,
|
| 535 |
+
"step": 350
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"epoch": 1.44,
|
| 539 |
+
"grad_norm": 0.22657158970832825,
|
| 540 |
+
"learning_rate": 1.5666666666666667e-05,
|
| 541 |
+
"logits/chosen": -3.75866961479187,
|
| 542 |
+
"logits/rejected": -3.361738681793213,
|
| 543 |
+
"logps/chosen": -49.731544494628906,
|
| 544 |
+
"logps/rejected": -203.48196411132812,
|
| 545 |
+
"loss": 0.165,
|
| 546 |
+
"rewards/accuracies": 0.7749999761581421,
|
| 547 |
+
"rewards/chosen": 0.7678171992301941,
|
| 548 |
+
"rewards/margins": 12.776975631713867,
|
| 549 |
+
"rewards/rejected": -12.009159088134766,
|
| 550 |
+
"step": 360
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"epoch": 1.48,
|
| 554 |
+
"grad_norm": 0.2632221281528473,
|
| 555 |
+
"learning_rate": 1.4555555555555556e-05,
|
| 556 |
+
"logits/chosen": -3.995814561843872,
|
| 557 |
+
"logits/rejected": -3.644721508026123,
|
| 558 |
+
"logps/chosen": -48.3692626953125,
|
| 559 |
+
"logps/rejected": -201.17593383789062,
|
| 560 |
+
"loss": 0.1649,
|
| 561 |
+
"rewards/accuracies": 0.762499988079071,
|
| 562 |
+
"rewards/chosen": 0.5727468729019165,
|
| 563 |
+
"rewards/margins": 12.856643676757812,
|
| 564 |
+
"rewards/rejected": -12.283895492553711,
|
| 565 |
+
"step": 370
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"epoch": 1.52,
|
| 569 |
+
"grad_norm": 0.1788269430398941,
|
| 570 |
+
"learning_rate": 1.3444444444444445e-05,
|
| 571 |
+
"logits/chosen": -3.70817494392395,
|
| 572 |
+
"logits/rejected": -3.3923275470733643,
|
| 573 |
+
"logps/chosen": -40.871490478515625,
|
| 574 |
+
"logps/rejected": -171.85128784179688,
|
| 575 |
+
"loss": 0.2101,
|
| 576 |
+
"rewards/accuracies": 0.7250000238418579,
|
| 577 |
+
"rewards/chosen": 0.9809708595275879,
|
| 578 |
+
"rewards/margins": 11.068758010864258,
|
| 579 |
+
"rewards/rejected": -10.087786674499512,
|
| 580 |
+
"step": 380
|
| 581 |
+
},
|
| 582 |
+
{
|
| 583 |
+
"epoch": 1.56,
|
| 584 |
+
"grad_norm": 0.14607764780521393,
|
| 585 |
+
"learning_rate": 1.2333333333333334e-05,
|
| 586 |
+
"logits/chosen": -3.0384268760681152,
|
| 587 |
+
"logits/rejected": -2.7124972343444824,
|
| 588 |
+
"logps/chosen": -36.8101806640625,
|
| 589 |
+
"logps/rejected": -163.4900360107422,
|
| 590 |
+
"loss": 0.26,
|
| 591 |
+
"rewards/accuracies": 0.6875,
|
| 592 |
+
"rewards/chosen": 1.447727084159851,
|
| 593 |
+
"rewards/margins": 10.76397705078125,
|
| 594 |
+
"rewards/rejected": -9.316250801086426,
|
| 595 |
+
"step": 390
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"epoch": 1.6,
|
| 599 |
+
"grad_norm": 0.21636660397052765,
|
| 600 |
+
"learning_rate": 1.1222222222222224e-05,
|
| 601 |
+
"logits/chosen": -3.6440536975860596,
|
| 602 |
+
"logits/rejected": -3.278002977371216,
|
| 603 |
+
"logps/chosen": -41.639305114746094,
|
| 604 |
+
"logps/rejected": -200.2166290283203,
|
| 605 |
+
"loss": 0.1822,
|
| 606 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 607 |
+
"rewards/chosen": 1.6405818462371826,
|
| 608 |
+
"rewards/margins": 13.554621696472168,
|
| 609 |
+
"rewards/rejected": -11.914040565490723,
|
| 610 |
+
"step": 400
|
| 611 |
+
},
|
| 612 |
+
{
|
| 613 |
+
"epoch": 1.6400000000000001,
|
| 614 |
+
"grad_norm": 0.11900901794433594,
|
| 615 |
+
"learning_rate": 1.0111111111111111e-05,
|
| 616 |
+
"logits/chosen": -3.0452122688293457,
|
| 617 |
+
"logits/rejected": -2.5407042503356934,
|
| 618 |
+
"logps/chosen": -37.94886016845703,
|
| 619 |
+
"logps/rejected": -153.2200469970703,
|
| 620 |
+
"loss": 0.2347,
|
| 621 |
+
"rewards/accuracies": 0.699999988079071,
|
| 622 |
+
"rewards/chosen": 1.7741081714630127,
|
| 623 |
+
"rewards/margins": 9.864465713500977,
|
| 624 |
+
"rewards/rejected": -8.090356826782227,
|
| 625 |
+
"step": 410
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 1.6800000000000002,
|
| 629 |
+
"grad_norm": 0.05728014558553696,
|
| 630 |
+
"learning_rate": 9e-06,
|
| 631 |
+
"logits/chosen": -3.795870304107666,
|
| 632 |
+
"logits/rejected": -3.469318389892578,
|
| 633 |
+
"logps/chosen": -34.80308151245117,
|
| 634 |
+
"logps/rejected": -195.09146118164062,
|
| 635 |
+
"loss": 0.1996,
|
| 636 |
+
"rewards/accuracies": 0.7124999761581421,
|
| 637 |
+
"rewards/chosen": 1.8775447607040405,
|
| 638 |
+
"rewards/margins": 13.589404106140137,
|
| 639 |
+
"rewards/rejected": -11.711858749389648,
|
| 640 |
+
"step": 420
|
| 641 |
+
},
|
| 642 |
+
{
|
| 643 |
+
"epoch": 1.72,
|
| 644 |
+
"grad_norm": 0.153469517827034,
|
| 645 |
+
"learning_rate": 7.88888888888889e-06,
|
| 646 |
+
"logits/chosen": -3.887744426727295,
|
| 647 |
+
"logits/rejected": -3.5376434326171875,
|
| 648 |
+
"logps/chosen": -34.76511001586914,
|
| 649 |
+
"logps/rejected": -146.95310974121094,
|
| 650 |
+
"loss": 0.2602,
|
| 651 |
+
"rewards/accuracies": 0.6499999761581421,
|
| 652 |
+
"rewards/chosen": 1.5828745365142822,
|
| 653 |
+
"rewards/margins": 9.252839088439941,
|
| 654 |
+
"rewards/rejected": -7.669964790344238,
|
| 655 |
+
"step": 430
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"epoch": 1.76,
|
| 659 |
+
"grad_norm": 0.16263523697853088,
|
| 660 |
+
"learning_rate": 6.777777777777779e-06,
|
| 661 |
+
"logits/chosen": -3.6285464763641357,
|
| 662 |
+
"logits/rejected": -3.208299160003662,
|
| 663 |
+
"logps/chosen": -29.505624771118164,
|
| 664 |
+
"logps/rejected": -147.29527282714844,
|
| 665 |
+
"loss": 0.269,
|
| 666 |
+
"rewards/accuracies": 0.625,
|
| 667 |
+
"rewards/chosen": 2.1386911869049072,
|
| 668 |
+
"rewards/margins": 9.6033296585083,
|
| 669 |
+
"rewards/rejected": -7.464638710021973,
|
| 670 |
+
"step": 440
|
| 671 |
+
},
|
| 672 |
+
{
|
| 673 |
+
"epoch": 1.8,
|
| 674 |
+
"grad_norm": 0.01779480278491974,
|
| 675 |
+
"learning_rate": 5.666666666666667e-06,
|
| 676 |
+
"logits/chosen": -3.886363983154297,
|
| 677 |
+
"logits/rejected": -3.3980984687805176,
|
| 678 |
+
"logps/chosen": -37.660362243652344,
|
| 679 |
+
"logps/rejected": -191.5253143310547,
|
| 680 |
+
"loss": 0.2082,
|
| 681 |
+
"rewards/accuracies": 0.737500011920929,
|
| 682 |
+
"rewards/chosen": 1.585105538368225,
|
| 683 |
+
"rewards/margins": 12.881246566772461,
|
| 684 |
+
"rewards/rejected": -11.296142578125,
|
| 685 |
+
"step": 450
|
| 686 |
+
},
|
| 687 |
+
{
|
| 688 |
+
"epoch": 1.8399999999999999,
|
| 689 |
+
"grad_norm": 0.21525858342647552,
|
| 690 |
+
"learning_rate": 4.555555555555556e-06,
|
| 691 |
+
"logits/chosen": -3.215524673461914,
|
| 692 |
+
"logits/rejected": -2.8312759399414062,
|
| 693 |
+
"logps/chosen": -39.14852523803711,
|
| 694 |
+
"logps/rejected": -190.01809692382812,
|
| 695 |
+
"loss": 0.165,
|
| 696 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 697 |
+
"rewards/chosen": 1.5289268493652344,
|
| 698 |
+
"rewards/margins": 12.520524978637695,
|
| 699 |
+
"rewards/rejected": -10.991598129272461,
|
| 700 |
+
"step": 460
|
| 701 |
+
},
|
| 702 |
+
{
|
| 703 |
+
"epoch": 1.88,
|
| 704 |
+
"grad_norm": 0.19355317950248718,
|
| 705 |
+
"learning_rate": 3.4444444444444444e-06,
|
| 706 |
+
"logits/chosen": -3.51098895072937,
|
| 707 |
+
"logits/rejected": -3.231642484664917,
|
| 708 |
+
"logps/chosen": -39.47585678100586,
|
| 709 |
+
"logps/rejected": -193.40306091308594,
|
| 710 |
+
"loss": 0.2182,
|
| 711 |
+
"rewards/accuracies": 0.699999988079071,
|
| 712 |
+
"rewards/chosen": 1.1096737384796143,
|
| 713 |
+
"rewards/margins": 12.903974533081055,
|
| 714 |
+
"rewards/rejected": -11.79430103302002,
|
| 715 |
+
"step": 470
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"epoch": 1.92,
|
| 719 |
+
"grad_norm": 0.20150351524353027,
|
| 720 |
+
"learning_rate": 2.3333333333333336e-06,
|
| 721 |
+
"logits/chosen": -3.484516143798828,
|
| 722 |
+
"logits/rejected": -3.1024327278137207,
|
| 723 |
+
"logps/chosen": -42.00218963623047,
|
| 724 |
+
"logps/rejected": -183.51300048828125,
|
| 725 |
+
"loss": 0.1822,
|
| 726 |
+
"rewards/accuracies": 0.75,
|
| 727 |
+
"rewards/chosen": 1.525578260421753,
|
| 728 |
+
"rewards/margins": 11.946281433105469,
|
| 729 |
+
"rewards/rejected": -10.420703887939453,
|
| 730 |
+
"step": 480
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 1.96,
|
| 734 |
+
"grad_norm": 0.011142472736537457,
|
| 735 |
+
"learning_rate": 1.2222222222222223e-06,
|
| 736 |
+
"logits/chosen": -3.6615467071533203,
|
| 737 |
+
"logits/rejected": -3.2794384956359863,
|
| 738 |
+
"logps/chosen": -41.063148498535156,
|
| 739 |
+
"logps/rejected": -208.94747924804688,
|
| 740 |
+
"loss": 0.1647,
|
| 741 |
+
"rewards/accuracies": 0.7875000238418579,
|
| 742 |
+
"rewards/chosen": 1.4969767332077026,
|
| 743 |
+
"rewards/margins": 14.444828987121582,
|
| 744 |
+
"rewards/rejected": -12.947853088378906,
|
| 745 |
+
"step": 490
|
| 746 |
+
},
|
| 747 |
+
{
|
| 748 |
+
"epoch": 2.0,
|
| 749 |
+
"grad_norm": 0.214690163731575,
|
| 750 |
+
"learning_rate": 1.1111111111111112e-07,
|
| 751 |
+
"logits/chosen": -3.919487714767456,
|
| 752 |
+
"logits/rejected": -3.6030335426330566,
|
| 753 |
+
"logps/chosen": -34.534332275390625,
|
| 754 |
+
"logps/rejected": -180.12123107910156,
|
| 755 |
+
"loss": 0.2348,
|
| 756 |
+
"rewards/accuracies": 0.6625000238418579,
|
| 757 |
+
"rewards/chosen": 2.082820177078247,
|
| 758 |
+
"rewards/margins": 12.23314094543457,
|
| 759 |
+
"rewards/rejected": -10.150321006774902,
|
| 760 |
+
"step": 500
|
| 761 |
+
}
|
| 762 |
+
],
|
| 763 |
+
"logging_steps": 10,
|
| 764 |
+
"max_steps": 500,
|
| 765 |
+
"num_input_tokens_seen": 0,
|
| 766 |
+
"num_train_epochs": 2,
|
| 767 |
+
"save_steps": 200,
|
| 768 |
+
"stateful_callbacks": {
|
| 769 |
+
"TrainerControl": {
|
| 770 |
+
"args": {
|
| 771 |
+
"should_epoch_stop": false,
|
| 772 |
+
"should_evaluate": false,
|
| 773 |
+
"should_log": false,
|
| 774 |
+
"should_save": true,
|
| 775 |
+
"should_training_stop": true
|
| 776 |
+
},
|
| 777 |
+
"attributes": {}
|
| 778 |
+
}
|
| 779 |
+
},
|
| 780 |
+
"total_flos": 0.0,
|
| 781 |
+
"train_batch_size": 2,
|
| 782 |
+
"trial_name": null,
|
| 783 |
+
"trial_params": null
|
| 784 |
+
}
|
checkpoint-500/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:620ad83214f09c07b562685e5c4a615d6dc192dd64a1fa24d684c1e7a11a842b
|
| 3 |
+
size 6929
|
checkpoint-500/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:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 262144,
|
| 235 |
+
"pad_token": "<|vision_pad|>",
|
| 236 |
+
"padding_side": "left",
|
| 237 |
+
"split_special_tokens": false,
|
| 238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 239 |
+
"unk_token": null
|
| 240 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|