thetmon commited on
Commit
4d1d871
·
verified ·
1 Parent(s): 228e045

Upload merged Qwen3-4B-Instruct-2507 model (auto-generated README)

Browse files
Files changed (44) hide show
  1. .gitattributes +3 -0
  2. README.md +72 -0
  3. adapter_config.json +38 -0
  4. adapter_model.safetensors +3 -0
  5. added_tokens.json +28 -0
  6. chat_template.jinja +86 -0
  7. checkpoint-1500/README.md +202 -0
  8. checkpoint-1500/adapter_config.json +38 -0
  9. checkpoint-1500/adapter_model.safetensors +3 -0
  10. checkpoint-1500/added_tokens.json +28 -0
  11. checkpoint-1500/chat_template.jinja +86 -0
  12. checkpoint-1500/merges.txt +0 -0
  13. checkpoint-1500/optimizer.pt +3 -0
  14. checkpoint-1500/rng_state.pth +3 -0
  15. checkpoint-1500/scheduler.pt +3 -0
  16. checkpoint-1500/special_tokens_map.json +31 -0
  17. checkpoint-1500/tokenizer.json +3 -0
  18. checkpoint-1500/tokenizer_config.json +240 -0
  19. checkpoint-1500/trainer_state.json +1484 -0
  20. checkpoint-1500/training_args.bin +3 -0
  21. checkpoint-1500/vocab.json +0 -0
  22. checkpoint-1506/README.md +202 -0
  23. checkpoint-1506/adapter_config.json +38 -0
  24. checkpoint-1506/adapter_model.safetensors +3 -0
  25. checkpoint-1506/added_tokens.json +28 -0
  26. checkpoint-1506/chat_template.jinja +86 -0
  27. checkpoint-1506/merges.txt +0 -0
  28. checkpoint-1506/optimizer.pt +3 -0
  29. checkpoint-1506/rng_state.pth +3 -0
  30. checkpoint-1506/scheduler.pt +3 -0
  31. checkpoint-1506/special_tokens_map.json +31 -0
  32. checkpoint-1506/tokenizer.json +3 -0
  33. checkpoint-1506/tokenizer_config.json +240 -0
  34. checkpoint-1506/trainer_state.json +1484 -0
  35. checkpoint-1506/training_args.bin +3 -0
  36. checkpoint-1506/vocab.json +0 -0
  37. config.json +82 -0
  38. generation_config.json +14 -0
  39. merges.txt +0 -0
  40. model.safetensors +3 -0
  41. special_tokens_map.json +31 -0
  42. tokenizer.json +3 -0
  43. tokenizer_config.json +240 -0
  44. 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-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1506/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,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-4B-Instruct-2507
3
+ datasets:
4
+ - u-10bei/sft_alfworld_trajectory_dataset_v5
5
+ - u-10bei/dbbench_sft_dataset_react
6
+ - u-10bei/dbbench_sft_dataset_react_v2
7
+ - u-10bei/dbbench_sft_dataset_react_v3
8
+ - u-10bei/dbbench_sft_dataset_react_v4
9
+ language:
10
+ - en
11
+ license: apache-2.0
12
+ library_name: peft
13
+ pipeline_tag: text-generation
14
+ tags:
15
+ - lora
16
+ - agent
17
+ - tool-use
18
+ - alfworld
19
+ - dbbench
20
+ ---
21
+
22
+ # Qwen3-4B ALFWorld+DBBench Mixed LoRA Adapter (r=64)
23
+
24
+ This repository provides a **LoRA adapter** fine-tuned from
25
+ **Qwen/Qwen3-4B-Instruct-2507** using **LoRA + Unsloth**.
26
+
27
+ This repository contains **LoRA adapter weights only**.
28
+ The base model must be loaded separately.
29
+
30
+ ## Training Objective
31
+
32
+ This adapter is trained to improve **multi-turn agent task performance**
33
+ on ALFWorld (household tasks) and DBBench (database operations).
34
+
35
+ Loss is applied to **all assistant turns** in the multi-turn trajectory,
36
+ enabling the model to learn environment observation, action selection,
37
+ tool use, and recovery from errors.
38
+
39
+ ## Training Configuration
40
+
41
+ - Base model: Qwen/Qwen3-4B-Instruct-2507
42
+ - Method: LoRA (full precision base)
43
+ - Max sequence length: 2048
44
+ - Epochs: 3
45
+ - Learning rate: 2e-04
46
+ - LoRA: r=64, alpha=128
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from transformers import AutoModelForCausalLM, AutoTokenizer
52
+ from peft import PeftModel
53
+ import torch
54
+
55
+ base = "Qwen/Qwen3-4B-Instruct-2507"
56
+ adapter = "your_id/your-repo"
57
+
58
+ tokenizer = AutoTokenizer.from_pretrained(base)
59
+ model = AutoModelForCausalLM.from_pretrained(
60
+ base,
61
+ torch_dtype=torch.float16,
62
+ device_map="auto",
63
+ )
64
+ model = PeftModel.from_pretrained(model, adapter)
65
+ ```
66
+
67
+ ## Sources & Terms (IMPORTANT)
68
+
69
+ Training data: u-10bei/sft_alfworld_trajectory_dataset_v5 + u-10bei/dbbench_sft_dataset_react v1-v4 (weak categories only)
70
+
71
+ Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
72
+ Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.
adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": {
4
+ "base_model_class": "Qwen3ForCausalLM",
5
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
6
+ "unsloth_fixed": true
7
+ },
8
+ "base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
9
+ "bias": "none",
10
+ "fan_in_fan_out": false,
11
+ "inference_mode": true,
12
+ "init_lora_weights": true,
13
+ "layer_replication": null,
14
+ "layers_pattern": null,
15
+ "layers_to_transform": null,
16
+ "loftq_config": {},
17
+ "lora_alpha": 128,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 64,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "gate_proj",
28
+ "down_proj",
29
+ "up_proj",
30
+ "k_proj",
31
+ "o_proj",
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "use_dora": false,
37
+ "use_rslora": false
38
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b0c064570a762cc303647cc94c60408cc6ab6fd213dc61a3c574df9efd5fea9
3
+ size 528550256
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-1500/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen3-4B-Instruct-2507
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.13.2
checkpoint-1500/adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": {
4
+ "base_model_class": "Qwen3ForCausalLM",
5
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
6
+ "unsloth_fixed": true
7
+ },
8
+ "base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
9
+ "bias": "none",
10
+ "fan_in_fan_out": false,
11
+ "inference_mode": true,
12
+ "init_lora_weights": true,
13
+ "layer_replication": null,
14
+ "layers_pattern": null,
15
+ "layers_to_transform": null,
16
+ "loftq_config": {},
17
+ "lora_alpha": 128,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 64,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "gate_proj",
28
+ "down_proj",
29
+ "up_proj",
30
+ "k_proj",
31
+ "o_proj",
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "use_dora": false,
37
+ "use_rslora": false
38
+ }
checkpoint-1500/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fea45b35412f87d2be5e01d215c397f17d6370f4993cfc8f5709d82cc756b034
3
+ size 528550256
checkpoint-1500/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-1500/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-1500/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7abcdde389d19bdb4ec865ea65ec839c83a7b3414b8269904c0707964d787f9
3
+ size 1057397963
checkpoint-1500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1aa9ba6f2dfc92a964250f44b423fc475d3213d62a9b60120603ece4ce5b1acb
3
+ size 14645
checkpoint-1500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:447b4c3a7295b83e4e7652770c31f15a8805b40bf9360720bfeaf9cf33f50b53
3
+ size 1465
checkpoint-1500/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-1500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-1500/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-1500/trainer_state.json ADDED
@@ -0,0 +1,1484 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.9895261845386534,
6
+ "eval_steps": 30,
7
+ "global_step": 1500,
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.0199501246882793,
14
+ "grad_norm": 9.905351638793945,
15
+ "learning_rate": 1.1920529801324503e-05,
16
+ "loss": 2.4681,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.0399002493765586,
21
+ "grad_norm": 1.0738855600357056,
22
+ "learning_rate": 2.5165562913907287e-05,
23
+ "loss": 1.192,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.059850374064837904,
28
+ "grad_norm": 0.9622387290000916,
29
+ "learning_rate": 3.841059602649007e-05,
30
+ "loss": 0.651,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.059850374064837904,
35
+ "eval_loss": 0.5571362376213074,
36
+ "eval_runtime": 48.7371,
37
+ "eval_samples_per_second": 4.329,
38
+ "eval_steps_per_second": 2.175,
39
+ "step": 30
40
+ },
41
+ {
42
+ "epoch": 0.0798004987531172,
43
+ "grad_norm": 0.6049273610115051,
44
+ "learning_rate": 5.165562913907285e-05,
45
+ "loss": 0.5074,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.09975062344139651,
50
+ "grad_norm": 0.6833104491233826,
51
+ "learning_rate": 6.490066225165563e-05,
52
+ "loss": 0.3756,
53
+ "step": 50
54
+ },
55
+ {
56
+ "epoch": 0.11970074812967581,
57
+ "grad_norm": 0.5208126902580261,
58
+ "learning_rate": 7.814569536423842e-05,
59
+ "loss": 0.3065,
60
+ "step": 60
61
+ },
62
+ {
63
+ "epoch": 0.11970074812967581,
64
+ "eval_loss": 0.25738316774368286,
65
+ "eval_runtime": 48.1494,
66
+ "eval_samples_per_second": 4.382,
67
+ "eval_steps_per_second": 2.201,
68
+ "step": 60
69
+ },
70
+ {
71
+ "epoch": 0.1396508728179551,
72
+ "grad_norm": 0.5192306041717529,
73
+ "learning_rate": 9.13907284768212e-05,
74
+ "loss": 0.2578,
75
+ "step": 70
76
+ },
77
+ {
78
+ "epoch": 0.1596009975062344,
79
+ "grad_norm": 0.5098096132278442,
80
+ "learning_rate": 0.00010463576158940399,
81
+ "loss": 0.2096,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.17955112219451372,
86
+ "grad_norm": 0.5306766629219055,
87
+ "learning_rate": 0.00011788079470198677,
88
+ "loss": 0.1899,
89
+ "step": 90
90
+ },
91
+ {
92
+ "epoch": 0.17955112219451372,
93
+ "eval_loss": 0.1828010529279709,
94
+ "eval_runtime": 48.0843,
95
+ "eval_samples_per_second": 4.388,
96
+ "eval_steps_per_second": 2.204,
97
+ "step": 90
98
+ },
99
+ {
100
+ "epoch": 0.19950124688279303,
101
+ "grad_norm": 0.3457268178462982,
102
+ "learning_rate": 0.00013112582781456955,
103
+ "loss": 0.1848,
104
+ "step": 100
105
+ },
106
+ {
107
+ "epoch": 0.2194513715710723,
108
+ "grad_norm": 0.47407814860343933,
109
+ "learning_rate": 0.00014437086092715232,
110
+ "loss": 0.1736,
111
+ "step": 110
112
+ },
113
+ {
114
+ "epoch": 0.23940149625935161,
115
+ "grad_norm": 0.3515409827232361,
116
+ "learning_rate": 0.00015761589403973512,
117
+ "loss": 0.1676,
118
+ "step": 120
119
+ },
120
+ {
121
+ "epoch": 0.23940149625935161,
122
+ "eval_loss": 0.1554146409034729,
123
+ "eval_runtime": 48.3317,
124
+ "eval_samples_per_second": 4.366,
125
+ "eval_steps_per_second": 2.193,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.2593516209476309,
130
+ "grad_norm": 0.4131653904914856,
131
+ "learning_rate": 0.0001708609271523179,
132
+ "loss": 0.1643,
133
+ "step": 130
134
+ },
135
+ {
136
+ "epoch": 0.2793017456359102,
137
+ "grad_norm": 0.7977883219718933,
138
+ "learning_rate": 0.0001841059602649007,
139
+ "loss": 0.1543,
140
+ "step": 140
141
+ },
142
+ {
143
+ "epoch": 0.29925187032418954,
144
+ "grad_norm": 0.32713833451271057,
145
+ "learning_rate": 0.00019735099337748346,
146
+ "loss": 0.1569,
147
+ "step": 150
148
+ },
149
+ {
150
+ "epoch": 0.29925187032418954,
151
+ "eval_loss": 0.14544202387332916,
152
+ "eval_runtime": 48.2076,
153
+ "eval_samples_per_second": 4.377,
154
+ "eval_steps_per_second": 2.199,
155
+ "step": 150
156
+ },
157
+ {
158
+ "epoch": 0.3192019950124688,
159
+ "grad_norm": 0.3618054986000061,
160
+ "learning_rate": 0.00019998279880250371,
161
+ "loss": 0.1661,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.33915211970074816,
166
+ "grad_norm": 0.5105156302452087,
167
+ "learning_rate": 0.0001999129290795728,
168
+ "loss": 0.1542,
169
+ "step": 170
170
+ },
171
+ {
172
+ "epoch": 0.35910224438902744,
173
+ "grad_norm": 0.3221360445022583,
174
+ "learning_rate": 0.00019978935328445287,
175
+ "loss": 0.1437,
176
+ "step": 180
177
+ },
178
+ {
179
+ "epoch": 0.35910224438902744,
180
+ "eval_loss": 0.1328973025083542,
181
+ "eval_runtime": 48.1577,
182
+ "eval_samples_per_second": 4.381,
183
+ "eval_steps_per_second": 2.201,
184
+ "step": 180
185
+ },
186
+ {
187
+ "epoch": 0.3790523690773067,
188
+ "grad_norm": 0.39137646555900574,
189
+ "learning_rate": 0.000199612137842687,
190
+ "loss": 0.1511,
191
+ "step": 190
192
+ },
193
+ {
194
+ "epoch": 0.39900249376558605,
195
+ "grad_norm": 0.29165342450141907,
196
+ "learning_rate": 0.00019938137801267064,
197
+ "loss": 0.1456,
198
+ "step": 200
199
+ },
200
+ {
201
+ "epoch": 0.41895261845386533,
202
+ "grad_norm": 0.2816756069660187,
203
+ "learning_rate": 0.0001990971978344475,
204
+ "loss": 0.1271,
205
+ "step": 210
206
+ },
207
+ {
208
+ "epoch": 0.41895261845386533,
209
+ "eval_loss": 0.13140253722667694,
210
+ "eval_runtime": 47.9806,
211
+ "eval_samples_per_second": 4.398,
212
+ "eval_steps_per_second": 2.209,
213
+ "step": 210
214
+ },
215
+ {
216
+ "epoch": 0.4389027431421446,
217
+ "grad_norm": 0.6542349457740784,
218
+ "learning_rate": 0.00019875975006303435,
219
+ "loss": 0.1409,
220
+ "step": 220
221
+ },
222
+ {
223
+ "epoch": 0.45885286783042395,
224
+ "grad_norm": 0.2651802599430084,
225
+ "learning_rate": 0.00019836921608631114,
226
+ "loss": 0.1474,
227
+ "step": 230
228
+ },
229
+ {
230
+ "epoch": 0.47880299251870323,
231
+ "grad_norm": 0.2070140242576599,
232
+ "learning_rate": 0.00019792580582751935,
233
+ "loss": 0.1369,
234
+ "step": 240
235
+ },
236
+ {
237
+ "epoch": 0.47880299251870323,
238
+ "eval_loss": 0.12214324623346329,
239
+ "eval_runtime": 48.2216,
240
+ "eval_samples_per_second": 4.376,
241
+ "eval_steps_per_second": 2.198,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.49875311720698257,
246
+ "grad_norm": 0.16217675805091858,
247
+ "learning_rate": 0.00019742975763242248,
248
+ "loss": 0.1342,
249
+ "step": 250
250
+ },
251
+ {
252
+ "epoch": 0.5187032418952618,
253
+ "grad_norm": 0.17511174082756042,
254
+ "learning_rate": 0.00019688133814118843,
255
+ "loss": 0.1233,
256
+ "step": 260
257
+ },
258
+ {
259
+ "epoch": 0.5386533665835411,
260
+ "grad_norm": 0.16075153648853302,
261
+ "learning_rate": 0.0001962808421450624,
262
+ "loss": 0.1333,
263
+ "step": 270
264
+ },
265
+ {
266
+ "epoch": 0.5386533665835411,
267
+ "eval_loss": 0.11943639069795609,
268
+ "eval_runtime": 48.0763,
269
+ "eval_samples_per_second": 4.389,
270
+ "eval_steps_per_second": 2.205,
271
+ "step": 270
272
+ },
273
+ {
274
+ "epoch": 0.5586034912718204,
275
+ "grad_norm": 0.1652883142232895,
276
+ "learning_rate": 0.00019562859242790853,
277
+ "loss": 0.1308,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 0.5785536159600998,
282
+ "grad_norm": 0.2698552906513214,
283
+ "learning_rate": 0.00019492493959270398,
284
+ "loss": 0.1378,
285
+ "step": 290
286
+ },
287
+ {
288
+ "epoch": 0.5985037406483791,
289
+ "grad_norm": 0.11757837980985641,
290
+ "learning_rate": 0.00019417026187307985,
291
+ "loss": 0.1186,
292
+ "step": 300
293
+ },
294
+ {
295
+ "epoch": 0.5985037406483791,
296
+ "eval_loss": 0.11812838912010193,
297
+ "eval_runtime": 48.1525,
298
+ "eval_samples_per_second": 4.382,
299
+ "eval_steps_per_second": 2.201,
300
+ "step": 300
301
+ },
302
+ {
303
+ "epoch": 0.6184538653366584,
304
+ "grad_norm": 0.1514044553041458,
305
+ "learning_rate": 0.00019336496493000985,
306
+ "loss": 0.1329,
307
+ "step": 310
308
+ },
309
+ {
310
+ "epoch": 0.6384039900249376,
311
+ "grad_norm": 0.1278185248374939,
312
+ "learning_rate": 0.00019250948163375563,
313
+ "loss": 0.1311,
314
+ "step": 320
315
+ },
316
+ {
317
+ "epoch": 0.6583541147132169,
318
+ "grad_norm": 0.14280234277248383,
319
+ "learning_rate": 0.00019160427183118674,
320
+ "loss": 0.1281,
321
+ "step": 330
322
+ },
323
+ {
324
+ "epoch": 0.6583541147132169,
325
+ "eval_loss": 0.11799625307321548,
326
+ "eval_runtime": 48.1223,
327
+ "eval_samples_per_second": 4.385,
328
+ "eval_steps_per_second": 2.203,
329
+ "step": 330
330
+ },
331
+ {
332
+ "epoch": 0.6783042394014963,
333
+ "grad_norm": 0.141315296292305,
334
+ "learning_rate": 0.0001906498220985997,
335
+ "loss": 0.1131,
336
+ "step": 340
337
+ },
338
+ {
339
+ "epoch": 0.6982543640897756,
340
+ "grad_norm": 0.11978308856487274,
341
+ "learning_rate": 0.0001896466454801692,
342
+ "loss": 0.1294,
343
+ "step": 350
344
+ },
345
+ {
346
+ "epoch": 0.7182044887780549,
347
+ "grad_norm": 0.2772483825683594,
348
+ "learning_rate": 0.00018859528121217204,
349
+ "loss": 0.1297,
350
+ "step": 360
351
+ },
352
+ {
353
+ "epoch": 0.7182044887780549,
354
+ "eval_loss": 0.11690443754196167,
355
+ "eval_runtime": 48.1421,
356
+ "eval_samples_per_second": 4.383,
357
+ "eval_steps_per_second": 2.202,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 0.7381546134663342,
362
+ "grad_norm": 0.13961242139339447,
363
+ "learning_rate": 0.00018749629443313233,
364
+ "loss": 0.1249,
365
+ "step": 370
366
+ },
367
+ {
368
+ "epoch": 0.7581047381546134,
369
+ "grad_norm": 0.17335286736488342,
370
+ "learning_rate": 0.0001863502758800431,
371
+ "loss": 0.1255,
372
+ "step": 380
373
+ },
374
+ {
375
+ "epoch": 0.7780548628428927,
376
+ "grad_norm": 0.15879972279071808,
377
+ "learning_rate": 0.00018515784157082822,
378
+ "loss": 0.1175,
379
+ "step": 390
380
+ },
381
+ {
382
+ "epoch": 0.7780548628428927,
383
+ "eval_loss": 0.11526743322610855,
384
+ "eval_runtime": 48.2061,
385
+ "eval_samples_per_second": 4.377,
386
+ "eval_steps_per_second": 2.199,
387
+ "step": 390
388
+ },
389
+ {
390
+ "epoch": 0.7980049875311721,
391
+ "grad_norm": 0.11807694286108017,
392
+ "learning_rate": 0.00018391963247321513,
393
+ "loss": 0.1178,
394
+ "step": 400
395
+ },
396
+ {
397
+ "epoch": 0.8179551122194514,
398
+ "grad_norm": 0.11275653541088104,
399
+ "learning_rate": 0.00018263631416019617,
400
+ "loss": 0.1195,
401
+ "step": 410
402
+ },
403
+ {
404
+ "epoch": 0.8379052369077307,
405
+ "grad_norm": 0.12657803297042847,
406
+ "learning_rate": 0.000181308576452264,
407
+ "loss": 0.1182,
408
+ "step": 420
409
+ },
410
+ {
411
+ "epoch": 0.8379052369077307,
412
+ "eval_loss": 0.11410157382488251,
413
+ "eval_runtime": 48.3064,
414
+ "eval_samples_per_second": 4.368,
415
+ "eval_steps_per_second": 2.194,
416
+ "step": 420
417
+ },
418
+ {
419
+ "epoch": 0.85785536159601,
420
+ "grad_norm": 0.15267746150493622,
421
+ "learning_rate": 0.00017993713304661322,
422
+ "loss": 0.1216,
423
+ "step": 430
424
+ },
425
+ {
426
+ "epoch": 0.8778054862842892,
427
+ "grad_norm": 0.11593750864267349,
428
+ "learning_rate": 0.00017852272113350767,
429
+ "loss": 0.1329,
430
+ "step": 440
431
+ },
432
+ {
433
+ "epoch": 0.8977556109725686,
434
+ "grad_norm": 0.12276951223611832,
435
+ "learning_rate": 0.0001770661010000194,
436
+ "loss": 0.1189,
437
+ "step": 450
438
+ },
439
+ {
440
+ "epoch": 0.8977556109725686,
441
+ "eval_loss": 0.11431698501110077,
442
+ "eval_runtime": 48.1715,
443
+ "eval_samples_per_second": 4.38,
444
+ "eval_steps_per_second": 2.2,
445
+ "step": 450
446
+ },
447
+ {
448
+ "epoch": 0.9177057356608479,
449
+ "grad_norm": 0.11874907463788986,
450
+ "learning_rate": 0.00017556805562135255,
451
+ "loss": 0.1313,
452
+ "step": 460
453
+ },
454
+ {
455
+ "epoch": 0.9376558603491272,
456
+ "grad_norm": 0.22391599416732788,
457
+ "learning_rate": 0.00017402939023997157,
458
+ "loss": 0.1127,
459
+ "step": 470
460
+ },
461
+ {
462
+ "epoch": 0.9576059850374065,
463
+ "grad_norm": 0.09968144446611404,
464
+ "learning_rate": 0.00017245093193276047,
465
+ "loss": 0.118,
466
+ "step": 480
467
+ },
468
+ {
469
+ "epoch": 0.9576059850374065,
470
+ "eval_loss": 0.11578261852264404,
471
+ "eval_runtime": 48.1681,
472
+ "eval_samples_per_second": 4.38,
473
+ "eval_steps_per_second": 2.201,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 0.9775561097256857,
478
+ "grad_norm": 0.09711634367704391,
479
+ "learning_rate": 0.00017083352916644494,
480
+ "loss": 0.1184,
481
+ "step": 490
482
+ },
483
+ {
484
+ "epoch": 0.9975062344139651,
485
+ "grad_norm": 0.0991770550608635,
486
+ "learning_rate": 0.0001691780513415173,
487
+ "loss": 0.1215,
488
+ "step": 500
489
+ },
490
+ {
491
+ "epoch": 1.0159600997506235,
492
+ "grad_norm": 0.09751348197460175,
493
+ "learning_rate": 0.00016748538832490857,
494
+ "loss": 0.1206,
495
+ "step": 510
496
+ },
497
+ {
498
+ "epoch": 1.0159600997506235,
499
+ "eval_loss": 0.1116185411810875,
500
+ "eval_runtime": 48.1046,
501
+ "eval_samples_per_second": 4.386,
502
+ "eval_steps_per_second": 2.204,
503
+ "step": 510
504
+ },
505
+ {
506
+ "epoch": 1.0359102244389027,
507
+ "grad_norm": 0.10556904226541519,
508
+ "learning_rate": 0.0001657564499716595,
509
+ "loss": 0.1135,
510
+ "step": 520
511
+ },
512
+ {
513
+ "epoch": 1.055860349127182,
514
+ "grad_norm": 0.15284962952136993,
515
+ "learning_rate": 0.00016399216563584736,
516
+ "loss": 0.1218,
517
+ "step": 530
518
+ },
519
+ {
520
+ "epoch": 1.0758104738154612,
521
+ "grad_norm": 0.09085577726364136,
522
+ "learning_rate": 0.00016219348367103132,
523
+ "loss": 0.1171,
524
+ "step": 540
525
+ },
526
+ {
527
+ "epoch": 1.0758104738154612,
528
+ "eval_loss": 0.11126323789358139,
529
+ "eval_runtime": 48.6749,
530
+ "eval_samples_per_second": 4.335,
531
+ "eval_steps_per_second": 2.178,
532
+ "step": 540
533
+ },
534
+ {
535
+ "epoch": 1.0957605985037406,
536
+ "grad_norm": 0.12901732325553894,
537
+ "learning_rate": 0.00016036137092048525,
538
+ "loss": 0.1188,
539
+ "step": 550
540
+ },
541
+ {
542
+ "epoch": 1.11571072319202,
543
+ "grad_norm": 0.09154735505580902,
544
+ "learning_rate": 0.0001584968121974915,
545
+ "loss": 0.1232,
546
+ "step": 560
547
+ },
548
+ {
549
+ "epoch": 1.1356608478802992,
550
+ "grad_norm": 0.10134833306074142,
551
+ "learning_rate": 0.00015660080975597553,
552
+ "loss": 0.1205,
553
+ "step": 570
554
+ },
555
+ {
556
+ "epoch": 1.1356608478802992,
557
+ "eval_loss": 0.11302559077739716,
558
+ "eval_runtime": 48.709,
559
+ "eval_samples_per_second": 4.332,
560
+ "eval_steps_per_second": 2.176,
561
+ "step": 570
562
+ },
563
+ {
564
+ "epoch": 1.1556109725685786,
565
+ "grad_norm": 0.14130111038684845,
566
+ "learning_rate": 0.00015467438275176568,
567
+ "loss": 0.1214,
568
+ "step": 580
569
+ },
570
+ {
571
+ "epoch": 1.1755610972568578,
572
+ "grad_norm": 0.1193675845861435,
573
+ "learning_rate": 0.0001527185666947675,
574
+ "loss": 0.1173,
575
+ "step": 590
576
+ },
577
+ {
578
+ "epoch": 1.1955112219451371,
579
+ "grad_norm": 0.06070871651172638,
580
+ "learning_rate": 0.00015073441289234745,
581
+ "loss": 0.1189,
582
+ "step": 600
583
+ },
584
+ {
585
+ "epoch": 1.1955112219451371,
586
+ "eval_loss": 0.11231612414121628,
587
+ "eval_runtime": 48.6333,
588
+ "eval_samples_per_second": 4.339,
589
+ "eval_steps_per_second": 2.18,
590
+ "step": 600
591
+ },
592
+ {
593
+ "epoch": 1.2154613466334165,
594
+ "grad_norm": 0.08564524352550507,
595
+ "learning_rate": 0.00014872298788422497,
596
+ "loss": 0.1194,
597
+ "step": 610
598
+ },
599
+ {
600
+ "epoch": 1.2354114713216957,
601
+ "grad_norm": 0.1110881119966507,
602
+ "learning_rate": 0.00014668537286917664,
603
+ "loss": 0.117,
604
+ "step": 620
605
+ },
606
+ {
607
+ "epoch": 1.255361596009975,
608
+ "grad_norm": 0.10232548415660858,
609
+ "learning_rate": 0.00014462266312386085,
610
+ "loss": 0.1235,
611
+ "step": 630
612
+ },
613
+ {
614
+ "epoch": 1.255361596009975,
615
+ "eval_loss": 0.11166342347860336,
616
+ "eval_runtime": 48.6028,
617
+ "eval_samples_per_second": 4.341,
618
+ "eval_steps_per_second": 2.181,
619
+ "step": 630
620
+ },
621
+ {
622
+ "epoch": 1.2753117206982543,
623
+ "grad_norm": 0.08676601946353912,
624
+ "learning_rate": 0.00014253596741407507,
625
+ "loss": 0.1281,
626
+ "step": 640
627
+ },
628
+ {
629
+ "epoch": 1.2952618453865337,
630
+ "grad_norm": 0.09077729284763336,
631
+ "learning_rate": 0.0001404264073987623,
632
+ "loss": 0.1242,
633
+ "step": 650
634
+ },
635
+ {
636
+ "epoch": 1.315211970074813,
637
+ "grad_norm": 0.3734651505947113,
638
+ "learning_rate": 0.00013829511702708727,
639
+ "loss": 0.1137,
640
+ "step": 660
641
+ },
642
+ {
643
+ "epoch": 1.315211970074813,
644
+ "eval_loss": 0.11021307855844498,
645
+ "eval_runtime": 48.6287,
646
+ "eval_samples_per_second": 4.339,
647
+ "eval_steps_per_second": 2.18,
648
+ "step": 660
649
+ },
650
+ {
651
+ "epoch": 1.3351620947630922,
652
+ "grad_norm": 0.09780021756887436,
653
+ "learning_rate": 0.00013614324192890592,
654
+ "loss": 0.1219,
655
+ "step": 670
656
+ },
657
+ {
658
+ "epoch": 1.3551122194513716,
659
+ "grad_norm": 0.09793366491794586,
660
+ "learning_rate": 0.00013397193879895671,
661
+ "loss": 0.1046,
662
+ "step": 680
663
+ },
664
+ {
665
+ "epoch": 1.3750623441396508,
666
+ "grad_norm": 0.11061827093362808,
667
+ "learning_rate": 0.00013178237477510374,
668
+ "loss": 0.1174,
669
+ "step": 690
670
+ },
671
+ {
672
+ "epoch": 1.3750623441396508,
673
+ "eval_loss": 0.1095186397433281,
674
+ "eval_runtime": 48.691,
675
+ "eval_samples_per_second": 4.333,
676
+ "eval_steps_per_second": 2.177,
677
+ "step": 690
678
+ },
679
+ {
680
+ "epoch": 1.3950124688279302,
681
+ "grad_norm": 0.11096978187561035,
682
+ "learning_rate": 0.0001295757268109666,
683
+ "loss": 0.1071,
684
+ "step": 700
685
+ },
686
+ {
687
+ "epoch": 1.4149625935162096,
688
+ "grad_norm": 0.10013638436794281,
689
+ "learning_rate": 0.0001273531810432741,
690
+ "loss": 0.1262,
691
+ "step": 710
692
+ },
693
+ {
694
+ "epoch": 1.4349127182044887,
695
+ "grad_norm": 0.12431971728801727,
696
+ "learning_rate": 0.00012511593215428141,
697
+ "loss": 0.1098,
698
+ "step": 720
699
+ },
700
+ {
701
+ "epoch": 1.4349127182044887,
702
+ "eval_loss": 0.10981423407793045,
703
+ "eval_runtime": 48.7018,
704
+ "eval_samples_per_second": 4.332,
705
+ "eval_steps_per_second": 2.177,
706
+ "step": 720
707
+ },
708
+ {
709
+ "epoch": 1.4548628428927681,
710
+ "grad_norm": 0.13086780905723572,
711
+ "learning_rate": 0.0001228651827295943,
712
+ "loss": 0.1142,
713
+ "step": 730
714
+ },
715
+ {
716
+ "epoch": 1.4748129675810473,
717
+ "grad_norm": 0.08466003090143204,
718
+ "learning_rate": 0.00012060214261174465,
719
+ "loss": 0.1144,
720
+ "step": 740
721
+ },
722
+ {
723
+ "epoch": 1.4947630922693267,
724
+ "grad_norm": 0.11653965711593628,
725
+ "learning_rate": 0.00011832802824986523,
726
+ "loss": 0.1183,
727
+ "step": 750
728
+ },
729
+ {
730
+ "epoch": 1.4947630922693267,
731
+ "eval_loss": 0.10894475877285004,
732
+ "eval_runtime": 48.6934,
733
+ "eval_samples_per_second": 4.333,
734
+ "eval_steps_per_second": 2.177,
735
+ "step": 750
736
+ },
737
+ {
738
+ "epoch": 1.514713216957606,
739
+ "grad_norm": 0.11816778779029846,
740
+ "learning_rate": 0.00011604406204581346,
741
+ "loss": 0.13,
742
+ "step": 760
743
+ },
744
+ {
745
+ "epoch": 1.5346633416458852,
746
+ "grad_norm": 0.09233927726745605,
747
+ "learning_rate": 0.00011375147169709519,
748
+ "loss": 0.109,
749
+ "step": 770
750
+ },
751
+ {
752
+ "epoch": 1.5546134663341646,
753
+ "grad_norm": 0.08808460831642151,
754
+ "learning_rate": 0.00011145148953694195,
755
+ "loss": 0.1145,
756
+ "step": 780
757
+ },
758
+ {
759
+ "epoch": 1.5546134663341646,
760
+ "eval_loss": 0.10957030206918716,
761
+ "eval_runtime": 48.6129,
762
+ "eval_samples_per_second": 4.34,
763
+ "eval_steps_per_second": 2.18,
764
+ "step": 780
765
+ },
766
+ {
767
+ "epoch": 1.5745635910224438,
768
+ "grad_norm": 0.0909830778837204,
769
+ "learning_rate": 0.00010914535187189654,
770
+ "loss": 0.1115,
771
+ "step": 790
772
+ },
773
+ {
774
+ "epoch": 1.5945137157107232,
775
+ "grad_norm": 0.08932233601808548,
776
+ "learning_rate": 0.00010683429831726252,
777
+ "loss": 0.1191,
778
+ "step": 800
779
+ },
780
+ {
781
+ "epoch": 1.6144638403990026,
782
+ "grad_norm": 0.08355925977230072,
783
+ "learning_rate": 0.0001045195711307756,
784
+ "loss": 0.1127,
785
+ "step": 810
786
+ },
787
+ {
788
+ "epoch": 1.6144638403990026,
789
+ "eval_loss": 0.10913572460412979,
790
+ "eval_runtime": 48.4393,
791
+ "eval_samples_per_second": 4.356,
792
+ "eval_steps_per_second": 2.188,
793
+ "step": 810
794
+ },
795
+ {
796
+ "epoch": 1.6344139650872818,
797
+ "grad_norm": 0.06819329410791397,
798
+ "learning_rate": 0.00010220241454485406,
799
+ "loss": 0.1098,
800
+ "step": 820
801
+ },
802
+ {
803
+ "epoch": 1.654364089775561,
804
+ "grad_norm": 0.6049116849899292,
805
+ "learning_rate": 9.988407409778838e-05,
806
+ "loss": 0.1141,
807
+ "step": 830
808
+ },
809
+ {
810
+ "epoch": 1.6743142144638403,
811
+ "grad_norm": 0.07323434203863144,
812
+ "learning_rate": 9.756579596422839e-05,
813
+ "loss": 0.1049,
814
+ "step": 840
815
+ },
816
+ {
817
+ "epoch": 1.6743142144638403,
818
+ "eval_loss": 0.10999356210231781,
819
+ "eval_runtime": 48.6539,
820
+ "eval_samples_per_second": 4.337,
821
+ "eval_steps_per_second": 2.179,
822
+ "step": 840
823
+ },
824
+ {
825
+ "epoch": 1.6942643391521197,
826
+ "grad_norm": 0.10413742810487747,
827
+ "learning_rate": 9.524882628532858e-05,
828
+ "loss": 0.1158,
829
+ "step": 850
830
+ },
831
+ {
832
+ "epoch": 1.714214463840399,
833
+ "grad_norm": 0.08523685485124588,
834
+ "learning_rate": 9.293441049891148e-05,
835
+ "loss": 0.115,
836
+ "step": 860
837
+ },
838
+ {
839
+ "epoch": 1.7341645885286783,
840
+ "grad_norm": 0.12683580815792084,
841
+ "learning_rate": 9.062379267000898e-05,
842
+ "loss": 0.1185,
843
+ "step": 870
844
+ },
845
+ {
846
+ "epoch": 1.7341645885286783,
847
+ "eval_loss": 0.10940343141555786,
848
+ "eval_runtime": 48.6011,
849
+ "eval_samples_per_second": 4.341,
850
+ "eval_steps_per_second": 2.181,
851
+ "step": 870
852
+ },
853
+ {
854
+ "epoch": 1.7541147132169574,
855
+ "grad_norm": 0.10133107006549835,
856
+ "learning_rate": 8.831821482214159e-05,
857
+ "loss": 0.1194,
858
+ "step": 880
859
+ },
860
+ {
861
+ "epoch": 1.7740648379052368,
862
+ "grad_norm": 0.08002304285764694,
863
+ "learning_rate": 8.601891626969514e-05,
864
+ "loss": 0.1178,
865
+ "step": 890
866
+ },
867
+ {
868
+ "epoch": 1.7940149625935162,
869
+ "grad_norm": 0.0782008096575737,
870
+ "learning_rate": 8.372713295175352e-05,
871
+ "loss": 0.1162,
872
+ "step": 900
873
+ },
874
+ {
875
+ "epoch": 1.7940149625935162,
876
+ "eval_loss": 0.10899555683135986,
877
+ "eval_runtime": 48.522,
878
+ "eval_samples_per_second": 4.349,
879
+ "eval_steps_per_second": 2.185,
880
+ "step": 900
881
+ },
882
+ {
883
+ "epoch": 1.8139650872817956,
884
+ "grad_norm": 0.08133247494697571,
885
+ "learning_rate": 8.14440967677461e-05,
886
+ "loss": 0.1234,
887
+ "step": 910
888
+ },
889
+ {
890
+ "epoch": 1.8339152119700748,
891
+ "grad_norm": 0.08592060953378677,
892
+ "learning_rate": 7.917103491526617e-05,
893
+ "loss": 0.1073,
894
+ "step": 920
895
+ },
896
+ {
897
+ "epoch": 1.853865336658354,
898
+ "grad_norm": 0.07544530183076859,
899
+ "learning_rate": 7.690916923041708e-05,
900
+ "loss": 0.1072,
901
+ "step": 930
902
+ },
903
+ {
904
+ "epoch": 1.853865336658354,
905
+ "eval_loss": 0.10886865854263306,
906
+ "eval_runtime": 48.4695,
907
+ "eval_samples_per_second": 4.353,
908
+ "eval_steps_per_second": 2.187,
909
+ "step": 930
910
+ },
911
+ {
912
+ "epoch": 1.8738154613466333,
913
+ "grad_norm": 0.10101612657308578,
914
+ "learning_rate": 7.465971553104014e-05,
915
+ "loss": 0.1109,
916
+ "step": 940
917
+ },
918
+ {
919
+ "epoch": 1.8937655860349127,
920
+ "grad_norm": 0.07430823147296906,
921
+ "learning_rate": 7.242388296317757e-05,
922
+ "loss": 0.108,
923
+ "step": 950
924
+ },
925
+ {
926
+ "epoch": 1.9137157107231921,
927
+ "grad_norm": 0.0772905945777893,
928
+ "learning_rate": 7.020287335112179e-05,
929
+ "loss": 0.1087,
930
+ "step": 960
931
+ },
932
+ {
933
+ "epoch": 1.9137157107231921,
934
+ "eval_loss": 0.10754832625389099,
935
+ "eval_runtime": 48.5946,
936
+ "eval_samples_per_second": 4.342,
937
+ "eval_steps_per_second": 2.181,
938
+ "step": 960
939
+ },
940
+ {
941
+ "epoch": 1.9336658354114713,
942
+ "grad_norm": 0.08496296405792236,
943
+ "learning_rate": 6.799788055140025e-05,
944
+ "loss": 0.1203,
945
+ "step": 970
946
+ },
947
+ {
948
+ "epoch": 1.9536159600997505,
949
+ "grad_norm": 0.07446739822626114,
950
+ "learning_rate": 6.58100898110432e-05,
951
+ "loss": 0.1158,
952
+ "step": 980
953
+ },
954
+ {
955
+ "epoch": 1.9735660847880299,
956
+ "grad_norm": 0.08105003088712692,
957
+ "learning_rate": 6.364067713047943e-05,
958
+ "loss": 0.1184,
959
+ "step": 990
960
+ },
961
+ {
962
+ "epoch": 1.9735660847880299,
963
+ "eval_loss": 0.1074095070362091,
964
+ "eval_runtime": 48.6824,
965
+ "eval_samples_per_second": 4.334,
966
+ "eval_steps_per_second": 2.177,
967
+ "step": 990
968
+ },
969
+ {
970
+ "epoch": 1.9935162094763093,
971
+ "grad_norm": 0.08692453801631927,
972
+ "learning_rate": 6.149080863140208e-05,
973
+ "loss": 0.1145,
974
+ "step": 1000
975
+ },
976
+ {
977
+ "epoch": 2.0119700748129676,
978
+ "grad_norm": 0.0745435431599617,
979
+ "learning_rate": 5.9361639929944867e-05,
980
+ "loss": 0.1081,
981
+ "step": 1010
982
+ },
983
+ {
984
+ "epoch": 2.031920199501247,
985
+ "grad_norm": 0.08805131912231445,
986
+ "learning_rate": 5.7254315515505105e-05,
987
+ "loss": 0.1092,
988
+ "step": 1020
989
+ },
990
+ {
991
+ "epoch": 2.031920199501247,
992
+ "eval_loss": 0.10798249393701553,
993
+ "eval_runtime": 48.9954,
994
+ "eval_samples_per_second": 4.307,
995
+ "eval_steps_per_second": 2.163,
996
+ "step": 1020
997
+ },
998
+ {
999
+ "epoch": 2.051870324189526,
1000
+ "grad_norm": 0.08542945981025696,
1001
+ "learning_rate": 5.5169968135547655e-05,
1002
+ "loss": 0.1185,
1003
+ "step": 1030
1004
+ },
1005
+ {
1006
+ "epoch": 2.0718204488778054,
1007
+ "grad_norm": 0.08667082339525223,
1008
+ "learning_rate": 5.310971818672077e-05,
1009
+ "loss": 0.1107,
1010
+ "step": 1040
1011
+ },
1012
+ {
1013
+ "epoch": 2.0917705735660848,
1014
+ "grad_norm": 0.0777161717414856,
1015
+ "learning_rate": 5.1074673112610584e-05,
1016
+ "loss": 0.1082,
1017
+ "step": 1050
1018
+ },
1019
+ {
1020
+ "epoch": 2.0917705735660848,
1021
+ "eval_loss": 0.10762733221054077,
1022
+ "eval_runtime": 49.1196,
1023
+ "eval_samples_per_second": 4.296,
1024
+ "eval_steps_per_second": 2.158,
1025
+ "step": 1050
1026
+ },
1027
+ {
1028
+ "epoch": 2.111720698254364,
1029
+ "grad_norm": 0.06888756155967712,
1030
+ "learning_rate": 4.906592680845829e-05,
1031
+ "loss": 0.1075,
1032
+ "step": 1060
1033
+ },
1034
+ {
1035
+ "epoch": 2.1316708229426435,
1036
+ "grad_norm": 0.09783507883548737,
1037
+ "learning_rate": 4.7084559033160135e-05,
1038
+ "loss": 0.1149,
1039
+ "step": 1070
1040
+ },
1041
+ {
1042
+ "epoch": 2.1516209476309225,
1043
+ "grad_norm": 0.09118674695491791,
1044
+ "learning_rate": 4.5131634828865845e-05,
1045
+ "loss": 0.1127,
1046
+ "step": 1080
1047
+ },
1048
+ {
1049
+ "epoch": 2.1516209476309225,
1050
+ "eval_loss": 0.10765193402767181,
1051
+ "eval_runtime": 49.1258,
1052
+ "eval_samples_per_second": 4.295,
1053
+ "eval_steps_per_second": 2.158,
1054
+ "step": 1080
1055
+ },
1056
+ {
1057
+ "epoch": 2.171571072319202,
1058
+ "grad_norm": 0.08113594353199005,
1059
+ "learning_rate": 4.320820394848794e-05,
1060
+ "loss": 0.1151,
1061
+ "step": 1090
1062
+ },
1063
+ {
1064
+ "epoch": 2.1915211970074813,
1065
+ "grad_norm": 0.08070435374975204,
1066
+ "learning_rate": 4.1315300291429174e-05,
1067
+ "loss": 0.1093,
1068
+ "step": 1100
1069
+ },
1070
+ {
1071
+ "epoch": 2.2114713216957607,
1072
+ "grad_norm": 0.07660377770662308,
1073
+ "learning_rate": 3.9453941347832146e-05,
1074
+ "loss": 0.1113,
1075
+ "step": 1110
1076
+ },
1077
+ {
1078
+ "epoch": 2.2114713216957607,
1079
+ "eval_loss": 0.10742755234241486,
1080
+ "eval_runtime": 48.9958,
1081
+ "eval_samples_per_second": 4.306,
1082
+ "eval_steps_per_second": 2.163,
1083
+ "step": 1110
1084
+ },
1085
+ {
1086
+ "epoch": 2.23142144638404,
1087
+ "grad_norm": 0.08561329543590546,
1088
+ "learning_rate": 3.762512765164895e-05,
1089
+ "loss": 0.1096,
1090
+ "step": 1120
1091
+ },
1092
+ {
1093
+ "epoch": 2.251371571072319,
1094
+ "grad_norm": 0.07384736835956573,
1095
+ "learning_rate": 3.5829842242825374e-05,
1096
+ "loss": 0.1071,
1097
+ "step": 1130
1098
+ },
1099
+ {
1100
+ "epoch": 2.2713216957605984,
1101
+ "grad_norm": 0.089817114174366,
1102
+ "learning_rate": 3.406905013888875e-05,
1103
+ "loss": 0.1128,
1104
+ "step": 1140
1105
+ },
1106
+ {
1107
+ "epoch": 2.2713216957605984,
1108
+ "eval_loss": 0.10679538547992706,
1109
+ "eval_runtime": 49.1277,
1110
+ "eval_samples_per_second": 4.295,
1111
+ "eval_steps_per_second": 2.158,
1112
+ "step": 1140
1113
+ },
1114
+ {
1115
+ "epoch": 2.291271820448878,
1116
+ "grad_norm": 0.0809311643242836,
1117
+ "learning_rate": 3.234369781622315e-05,
1118
+ "loss": 0.1055,
1119
+ "step": 1150
1120
+ },
1121
+ {
1122
+ "epoch": 2.311221945137157,
1123
+ "grad_norm": 0.11156892031431198,
1124
+ "learning_rate": 3.065471270131132e-05,
1125
+ "loss": 0.1118,
1126
+ "step": 1160
1127
+ },
1128
+ {
1129
+ "epoch": 2.3311720698254366,
1130
+ "grad_norm": 0.07891872525215149,
1131
+ "learning_rate": 2.9003002672216106e-05,
1132
+ "loss": 0.1146,
1133
+ "step": 1170
1134
+ },
1135
+ {
1136
+ "epoch": 2.3311720698254366,
1137
+ "eval_loss": 0.1066785454750061,
1138
+ "eval_runtime": 49.1277,
1139
+ "eval_samples_per_second": 4.295,
1140
+ "eval_steps_per_second": 2.158,
1141
+ "step": 1170
1142
+ },
1143
+ {
1144
+ "epoch": 2.3511221945137155,
1145
+ "grad_norm": 0.08137693256139755,
1146
+ "learning_rate": 2.738945557056999e-05,
1147
+ "loss": 0.1068,
1148
+ "step": 1180
1149
+ },
1150
+ {
1151
+ "epoch": 2.371072319201995,
1152
+ "grad_norm": 0.08419659733772278,
1153
+ "learning_rate": 2.5814938724334624e-05,
1154
+ "loss": 0.1039,
1155
+ "step": 1190
1156
+ },
1157
+ {
1158
+ "epoch": 2.3910224438902743,
1159
+ "grad_norm": 0.08609955757856369,
1160
+ "learning_rate": 2.4280298481587104e-05,
1161
+ "loss": 0.1138,
1162
+ "step": 1200
1163
+ },
1164
+ {
1165
+ "epoch": 2.3910224438902743,
1166
+ "eval_loss": 0.10642586648464203,
1167
+ "eval_runtime": 49.084,
1168
+ "eval_samples_per_second": 4.299,
1169
+ "eval_steps_per_second": 2.16,
1170
+ "step": 1200
1171
+ },
1172
+ {
1173
+ "epoch": 2.4109725685785537,
1174
+ "grad_norm": 0.10461217164993286,
1175
+ "learning_rate": 2.2786359755583632e-05,
1176
+ "loss": 0.1181,
1177
+ "step": 1210
1178
+ },
1179
+ {
1180
+ "epoch": 2.430922693266833,
1181
+ "grad_norm": 0.09914015233516693,
1182
+ "learning_rate": 2.133392558134483e-05,
1183
+ "loss": 0.1077,
1184
+ "step": 1220
1185
+ },
1186
+ {
1187
+ "epoch": 2.450872817955112,
1188
+ "grad_norm": 0.09925994277000427,
1189
+ "learning_rate": 1.992377668400136e-05,
1190
+ "loss": 0.1092,
1191
+ "step": 1230
1192
+ },
1193
+ {
1194
+ "epoch": 2.450872817955112,
1195
+ "eval_loss": 0.10633692890405655,
1196
+ "eval_runtime": 49.0203,
1197
+ "eval_samples_per_second": 4.304,
1198
+ "eval_steps_per_second": 2.162,
1199
+ "step": 1230
1200
+ },
1201
+ {
1202
+ "epoch": 2.4708229426433914,
1203
+ "grad_norm": 0.07879967987537384,
1204
+ "learning_rate": 1.855667105913176e-05,
1205
+ "loss": 0.105,
1206
+ "step": 1240
1207
+ },
1208
+ {
1209
+ "epoch": 2.490773067331671,
1210
+ "grad_norm": 0.08635237067937851,
1211
+ "learning_rate": 1.7233343565317928e-05,
1212
+ "loss": 0.1083,
1213
+ "step": 1250
1214
+ },
1215
+ {
1216
+ "epoch": 2.51072319201995,
1217
+ "grad_norm": 0.07894821465015411,
1218
+ "learning_rate": 1.5954505529137587e-05,
1219
+ "loss": 0.1025,
1220
+ "step": 1260
1221
+ },
1222
+ {
1223
+ "epoch": 2.51072319201995,
1224
+ "eval_loss": 0.10649015009403229,
1225
+ "eval_runtime": 49.129,
1226
+ "eval_samples_per_second": 4.295,
1227
+ "eval_steps_per_second": 2.158,
1228
+ "step": 1260
1229
+ },
1230
+ {
1231
+ "epoch": 2.5306733167082296,
1232
+ "grad_norm": 0.08609526604413986,
1233
+ "learning_rate": 1.472084436280582e-05,
1234
+ "loss": 0.1103,
1235
+ "step": 1270
1236
+ },
1237
+ {
1238
+ "epoch": 2.5506234413965085,
1239
+ "grad_norm": 0.12177404761314392,
1240
+ "learning_rate": 1.3533023194671057e-05,
1241
+ "loss": 0.1124,
1242
+ "step": 1280
1243
+ },
1244
+ {
1245
+ "epoch": 2.570573566084788,
1246
+ "grad_norm": 0.09495075047016144,
1247
+ "learning_rate": 1.2391680512764802e-05,
1248
+ "loss": 0.1099,
1249
+ "step": 1290
1250
+ },
1251
+ {
1252
+ "epoch": 2.570573566084788,
1253
+ "eval_loss": 0.10633713006973267,
1254
+ "eval_runtime": 49.2486,
1255
+ "eval_samples_per_second": 4.284,
1256
+ "eval_steps_per_second": 2.152,
1257
+ "step": 1290
1258
+ },
1259
+ {
1260
+ "epoch": 2.5905236907730673,
1261
+ "grad_norm": 0.08574570715427399,
1262
+ "learning_rate": 1.129742982159574e-05,
1263
+ "loss": 0.1173,
1264
+ "step": 1300
1265
+ },
1266
+ {
1267
+ "epoch": 2.6104738154613467,
1268
+ "grad_norm": 0.08771918714046478,
1269
+ "learning_rate": 1.0250859312373462e-05,
1270
+ "loss": 0.1102,
1271
+ "step": 1310
1272
+ },
1273
+ {
1274
+ "epoch": 2.630423940149626,
1275
+ "grad_norm": 0.07304377853870392,
1276
+ "learning_rate": 9.252531546838872e-06,
1277
+ "loss": 0.1046,
1278
+ "step": 1320
1279
+ },
1280
+ {
1281
+ "epoch": 2.630423940149626,
1282
+ "eval_loss": 0.10615119338035583,
1283
+ "eval_runtime": 48.6835,
1284
+ "eval_samples_per_second": 4.334,
1285
+ "eval_steps_per_second": 2.177,
1286
+ "step": 1320
1287
+ },
1288
+ {
1289
+ "epoch": 2.650374064837905,
1290
+ "grad_norm": 0.09657382220029831,
1291
+ "learning_rate": 8.30298315487098e-06,
1292
+ "loss": 0.1147,
1293
+ "step": 1330
1294
+ },
1295
+ {
1296
+ "epoch": 2.6703241895261844,
1297
+ "grad_norm": 0.09089631587266922,
1298
+ "learning_rate": 7.402724546032957e-06,
1299
+ "loss": 0.1102,
1300
+ "step": 1340
1301
+ },
1302
+ {
1303
+ "epoch": 2.690274314214464,
1304
+ "grad_norm": 0.09991210699081421,
1305
+ "learning_rate": 6.552239635212298e-06,
1306
+ "loss": 0.1202,
1307
+ "step": 1350
1308
+ },
1309
+ {
1310
+ "epoch": 2.690274314214464,
1311
+ "eval_loss": 0.10618466883897781,
1312
+ "eval_runtime": 48.5373,
1313
+ "eval_samples_per_second": 4.347,
1314
+ "eval_steps_per_second": 2.184,
1315
+ "step": 1350
1316
+ },
1317
+ {
1318
+ "epoch": 2.7102244389027432,
1319
+ "grad_norm": 0.13392846286296844,
1320
+ "learning_rate": 5.751985582502672e-06,
1321
+ "loss": 0.1176,
1322
+ "step": 1360
1323
+ },
1324
+ {
1325
+ "epoch": 2.7301745635910226,
1326
+ "grad_norm": 0.10461334884166718,
1327
+ "learning_rate": 5.002392547467194e-06,
1328
+ "loss": 0.1116,
1329
+ "step": 1370
1330
+ },
1331
+ {
1332
+ "epoch": 2.7501246882793016,
1333
+ "grad_norm": 0.0903896763920784,
1334
+ "learning_rate": 4.303863457915358e-06,
1335
+ "loss": 0.1048,
1336
+ "step": 1380
1337
+ },
1338
+ {
1339
+ "epoch": 2.7501246882793016,
1340
+ "eval_loss": 0.10620897263288498,
1341
+ "eval_runtime": 48.5684,
1342
+ "eval_samples_per_second": 4.344,
1343
+ "eval_steps_per_second": 2.182,
1344
+ "step": 1380
1345
+ },
1346
+ {
1347
+ "epoch": 2.770074812967581,
1348
+ "grad_norm": 0.09017899632453918,
1349
+ "learning_rate": 3.6567737933176916e-06,
1350
+ "loss": 0.1028,
1351
+ "step": 1390
1352
+ },
1353
+ {
1354
+ "epoch": 2.7900249376558603,
1355
+ "grad_norm": 0.08241838961839676,
1356
+ "learning_rate": 3.0614713829747456e-06,
1357
+ "loss": 0.1051,
1358
+ "step": 1400
1359
+ },
1360
+ {
1361
+ "epoch": 2.8099750623441397,
1362
+ "grad_norm": 0.12076063454151154,
1363
+ "learning_rate": 2.5182762190488873e-06,
1364
+ "loss": 0.1124,
1365
+ "step": 1410
1366
+ },
1367
+ {
1368
+ "epoch": 2.8099750623441397,
1369
+ "eval_loss": 0.10615089535713196,
1370
+ "eval_runtime": 48.4144,
1371
+ "eval_samples_per_second": 4.358,
1372
+ "eval_steps_per_second": 2.189,
1373
+ "step": 1410
1374
+ },
1375
+ {
1376
+ "epoch": 2.829925187032419,
1377
+ "grad_norm": 0.053800225257873535,
1378
+ "learning_rate": 2.0274802845593133e-06,
1379
+ "loss": 0.1149,
1380
+ "step": 1420
1381
+ },
1382
+ {
1383
+ "epoch": 2.849875311720698,
1384
+ "grad_norm": 0.08684830367565155,
1385
+ "learning_rate": 1.5893473964326832e-06,
1386
+ "loss": 0.1039,
1387
+ "step": 1430
1388
+ },
1389
+ {
1390
+ "epoch": 2.8698254364089775,
1391
+ "grad_norm": 0.10123500972986221,
1392
+ "learning_rate": 1.2041130636940678e-06,
1393
+ "loss": 0.1127,
1394
+ "step": 1440
1395
+ },
1396
+ {
1397
+ "epoch": 2.8698254364089775,
1398
+ "eval_loss": 0.10614271461963654,
1399
+ "eval_runtime": 48.6688,
1400
+ "eval_samples_per_second": 4.335,
1401
+ "eval_steps_per_second": 2.178,
1402
+ "step": 1440
1403
+ },
1404
+ {
1405
+ "epoch": 2.889775561097257,
1406
+ "grad_norm": 0.09655766934156418,
1407
+ "learning_rate": 8.71984360874023e-07,
1408
+ "loss": 0.1105,
1409
+ "step": 1450
1410
+ },
1411
+ {
1412
+ "epoch": 2.9097256857855363,
1413
+ "grad_norm": 0.08582356572151184,
1414
+ "learning_rate": 5.931398167000391e-07,
1415
+ "loss": 0.1038,
1416
+ "step": 1460
1417
+ },
1418
+ {
1419
+ "epoch": 2.9296758104738156,
1420
+ "grad_norm": 0.11041458696126938,
1421
+ "learning_rate": 3.677293181322594e-07,
1422
+ "loss": 0.1046,
1423
+ "step": 1470
1424
+ },
1425
+ {
1426
+ "epoch": 2.9296758104738156,
1427
+ "eval_loss": 0.10609422624111176,
1428
+ "eval_runtime": 48.6034,
1429
+ "eval_samples_per_second": 4.341,
1430
+ "eval_steps_per_second": 2.181,
1431
+ "step": 1470
1432
+ },
1433
+ {
1434
+ "epoch": 2.9496259351620946,
1435
+ "grad_norm": 0.08140657842159271,
1436
+ "learning_rate": 1.9587402979491797e-07,
1437
+ "loss": 0.1058,
1438
+ "step": 1480
1439
+ },
1440
+ {
1441
+ "epoch": 2.969576059850374,
1442
+ "grad_norm": 0.08797825127840042,
1443
+ "learning_rate": 7.766632884689262e-08,
1444
+ "loss": 0.1144,
1445
+ "step": 1490
1446
+ },
1447
+ {
1448
+ "epoch": 2.9895261845386534,
1449
+ "grad_norm": 0.1317855268716812,
1450
+ "learning_rate": 1.316975532625886e-08,
1451
+ "loss": 0.1069,
1452
+ "step": 1500
1453
+ },
1454
+ {
1455
+ "epoch": 2.9895261845386534,
1456
+ "eval_loss": 0.10605818033218384,
1457
+ "eval_runtime": 48.5753,
1458
+ "eval_samples_per_second": 4.344,
1459
+ "eval_steps_per_second": 2.182,
1460
+ "step": 1500
1461
+ }
1462
+ ],
1463
+ "logging_steps": 10,
1464
+ "max_steps": 1506,
1465
+ "num_input_tokens_seen": 0,
1466
+ "num_train_epochs": 3,
1467
+ "save_steps": 100,
1468
+ "stateful_callbacks": {
1469
+ "TrainerControl": {
1470
+ "args": {
1471
+ "should_epoch_stop": false,
1472
+ "should_evaluate": false,
1473
+ "should_log": false,
1474
+ "should_save": true,
1475
+ "should_training_stop": false
1476
+ },
1477
+ "attributes": {}
1478
+ }
1479
+ },
1480
+ "total_flos": 2.6345734237933363e+17,
1481
+ "train_batch_size": 2,
1482
+ "trial_name": null,
1483
+ "trial_params": null
1484
+ }
checkpoint-1500/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6b731b0ee946922e88f44dfe39a304ed9c9f83d5608887d14bdf636bc4aea59
3
+ size 5777
checkpoint-1500/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1506/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen3-4B-Instruct-2507
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.13.2
checkpoint-1506/adapter_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": {
4
+ "base_model_class": "Qwen3ForCausalLM",
5
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
6
+ "unsloth_fixed": true
7
+ },
8
+ "base_model_name_or_path": "unsloth/Qwen3-4B-Instruct-2507",
9
+ "bias": "none",
10
+ "fan_in_fan_out": false,
11
+ "inference_mode": true,
12
+ "init_lora_weights": true,
13
+ "layer_replication": null,
14
+ "layers_pattern": null,
15
+ "layers_to_transform": null,
16
+ "loftq_config": {},
17
+ "lora_alpha": 128,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 64,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "gate_proj",
28
+ "down_proj",
29
+ "up_proj",
30
+ "k_proj",
31
+ "o_proj",
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "use_dora": false,
37
+ "use_rslora": false
38
+ }
checkpoint-1506/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b0c064570a762cc303647cc94c60408cc6ab6fd213dc61a3c574df9efd5fea9
3
+ size 528550256
checkpoint-1506/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-1506/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-1506/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1506/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f5636b17b606e5b1aa7aaf2fe6e772116e80452f6f84cbf62086831d15c5695
3
+ size 1057397963
checkpoint-1506/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1aa9ba6f2dfc92a964250f44b423fc475d3213d62a9b60120603ece4ce5b1acb
3
+ size 14645
checkpoint-1506/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03a3a30da14cfa700e8254c762995a4b64825bad6d3d28a769f4ea60fe122362
3
+ size 1465
checkpoint-1506/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-1506/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-1506/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-1506/trainer_state.json ADDED
@@ -0,0 +1,1484 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 30,
7
+ "global_step": 1506,
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.0199501246882793,
14
+ "grad_norm": 9.905351638793945,
15
+ "learning_rate": 1.1920529801324503e-05,
16
+ "loss": 2.4681,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.0399002493765586,
21
+ "grad_norm": 1.0738855600357056,
22
+ "learning_rate": 2.5165562913907287e-05,
23
+ "loss": 1.192,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.059850374064837904,
28
+ "grad_norm": 0.9622387290000916,
29
+ "learning_rate": 3.841059602649007e-05,
30
+ "loss": 0.651,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.059850374064837904,
35
+ "eval_loss": 0.5571362376213074,
36
+ "eval_runtime": 48.7371,
37
+ "eval_samples_per_second": 4.329,
38
+ "eval_steps_per_second": 2.175,
39
+ "step": 30
40
+ },
41
+ {
42
+ "epoch": 0.0798004987531172,
43
+ "grad_norm": 0.6049273610115051,
44
+ "learning_rate": 5.165562913907285e-05,
45
+ "loss": 0.5074,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.09975062344139651,
50
+ "grad_norm": 0.6833104491233826,
51
+ "learning_rate": 6.490066225165563e-05,
52
+ "loss": 0.3756,
53
+ "step": 50
54
+ },
55
+ {
56
+ "epoch": 0.11970074812967581,
57
+ "grad_norm": 0.5208126902580261,
58
+ "learning_rate": 7.814569536423842e-05,
59
+ "loss": 0.3065,
60
+ "step": 60
61
+ },
62
+ {
63
+ "epoch": 0.11970074812967581,
64
+ "eval_loss": 0.25738316774368286,
65
+ "eval_runtime": 48.1494,
66
+ "eval_samples_per_second": 4.382,
67
+ "eval_steps_per_second": 2.201,
68
+ "step": 60
69
+ },
70
+ {
71
+ "epoch": 0.1396508728179551,
72
+ "grad_norm": 0.5192306041717529,
73
+ "learning_rate": 9.13907284768212e-05,
74
+ "loss": 0.2578,
75
+ "step": 70
76
+ },
77
+ {
78
+ "epoch": 0.1596009975062344,
79
+ "grad_norm": 0.5098096132278442,
80
+ "learning_rate": 0.00010463576158940399,
81
+ "loss": 0.2096,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.17955112219451372,
86
+ "grad_norm": 0.5306766629219055,
87
+ "learning_rate": 0.00011788079470198677,
88
+ "loss": 0.1899,
89
+ "step": 90
90
+ },
91
+ {
92
+ "epoch": 0.17955112219451372,
93
+ "eval_loss": 0.1828010529279709,
94
+ "eval_runtime": 48.0843,
95
+ "eval_samples_per_second": 4.388,
96
+ "eval_steps_per_second": 2.204,
97
+ "step": 90
98
+ },
99
+ {
100
+ "epoch": 0.19950124688279303,
101
+ "grad_norm": 0.3457268178462982,
102
+ "learning_rate": 0.00013112582781456955,
103
+ "loss": 0.1848,
104
+ "step": 100
105
+ },
106
+ {
107
+ "epoch": 0.2194513715710723,
108
+ "grad_norm": 0.47407814860343933,
109
+ "learning_rate": 0.00014437086092715232,
110
+ "loss": 0.1736,
111
+ "step": 110
112
+ },
113
+ {
114
+ "epoch": 0.23940149625935161,
115
+ "grad_norm": 0.3515409827232361,
116
+ "learning_rate": 0.00015761589403973512,
117
+ "loss": 0.1676,
118
+ "step": 120
119
+ },
120
+ {
121
+ "epoch": 0.23940149625935161,
122
+ "eval_loss": 0.1554146409034729,
123
+ "eval_runtime": 48.3317,
124
+ "eval_samples_per_second": 4.366,
125
+ "eval_steps_per_second": 2.193,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.2593516209476309,
130
+ "grad_norm": 0.4131653904914856,
131
+ "learning_rate": 0.0001708609271523179,
132
+ "loss": 0.1643,
133
+ "step": 130
134
+ },
135
+ {
136
+ "epoch": 0.2793017456359102,
137
+ "grad_norm": 0.7977883219718933,
138
+ "learning_rate": 0.0001841059602649007,
139
+ "loss": 0.1543,
140
+ "step": 140
141
+ },
142
+ {
143
+ "epoch": 0.29925187032418954,
144
+ "grad_norm": 0.32713833451271057,
145
+ "learning_rate": 0.00019735099337748346,
146
+ "loss": 0.1569,
147
+ "step": 150
148
+ },
149
+ {
150
+ "epoch": 0.29925187032418954,
151
+ "eval_loss": 0.14544202387332916,
152
+ "eval_runtime": 48.2076,
153
+ "eval_samples_per_second": 4.377,
154
+ "eval_steps_per_second": 2.199,
155
+ "step": 150
156
+ },
157
+ {
158
+ "epoch": 0.3192019950124688,
159
+ "grad_norm": 0.3618054986000061,
160
+ "learning_rate": 0.00019998279880250371,
161
+ "loss": 0.1661,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.33915211970074816,
166
+ "grad_norm": 0.5105156302452087,
167
+ "learning_rate": 0.0001999129290795728,
168
+ "loss": 0.1542,
169
+ "step": 170
170
+ },
171
+ {
172
+ "epoch": 0.35910224438902744,
173
+ "grad_norm": 0.3221360445022583,
174
+ "learning_rate": 0.00019978935328445287,
175
+ "loss": 0.1437,
176
+ "step": 180
177
+ },
178
+ {
179
+ "epoch": 0.35910224438902744,
180
+ "eval_loss": 0.1328973025083542,
181
+ "eval_runtime": 48.1577,
182
+ "eval_samples_per_second": 4.381,
183
+ "eval_steps_per_second": 2.201,
184
+ "step": 180
185
+ },
186
+ {
187
+ "epoch": 0.3790523690773067,
188
+ "grad_norm": 0.39137646555900574,
189
+ "learning_rate": 0.000199612137842687,
190
+ "loss": 0.1511,
191
+ "step": 190
192
+ },
193
+ {
194
+ "epoch": 0.39900249376558605,
195
+ "grad_norm": 0.29165342450141907,
196
+ "learning_rate": 0.00019938137801267064,
197
+ "loss": 0.1456,
198
+ "step": 200
199
+ },
200
+ {
201
+ "epoch": 0.41895261845386533,
202
+ "grad_norm": 0.2816756069660187,
203
+ "learning_rate": 0.0001990971978344475,
204
+ "loss": 0.1271,
205
+ "step": 210
206
+ },
207
+ {
208
+ "epoch": 0.41895261845386533,
209
+ "eval_loss": 0.13140253722667694,
210
+ "eval_runtime": 47.9806,
211
+ "eval_samples_per_second": 4.398,
212
+ "eval_steps_per_second": 2.209,
213
+ "step": 210
214
+ },
215
+ {
216
+ "epoch": 0.4389027431421446,
217
+ "grad_norm": 0.6542349457740784,
218
+ "learning_rate": 0.00019875975006303435,
219
+ "loss": 0.1409,
220
+ "step": 220
221
+ },
222
+ {
223
+ "epoch": 0.45885286783042395,
224
+ "grad_norm": 0.2651802599430084,
225
+ "learning_rate": 0.00019836921608631114,
226
+ "loss": 0.1474,
227
+ "step": 230
228
+ },
229
+ {
230
+ "epoch": 0.47880299251870323,
231
+ "grad_norm": 0.2070140242576599,
232
+ "learning_rate": 0.00019792580582751935,
233
+ "loss": 0.1369,
234
+ "step": 240
235
+ },
236
+ {
237
+ "epoch": 0.47880299251870323,
238
+ "eval_loss": 0.12214324623346329,
239
+ "eval_runtime": 48.2216,
240
+ "eval_samples_per_second": 4.376,
241
+ "eval_steps_per_second": 2.198,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.49875311720698257,
246
+ "grad_norm": 0.16217675805091858,
247
+ "learning_rate": 0.00019742975763242248,
248
+ "loss": 0.1342,
249
+ "step": 250
250
+ },
251
+ {
252
+ "epoch": 0.5187032418952618,
253
+ "grad_norm": 0.17511174082756042,
254
+ "learning_rate": 0.00019688133814118843,
255
+ "loss": 0.1233,
256
+ "step": 260
257
+ },
258
+ {
259
+ "epoch": 0.5386533665835411,
260
+ "grad_norm": 0.16075153648853302,
261
+ "learning_rate": 0.0001962808421450624,
262
+ "loss": 0.1333,
263
+ "step": 270
264
+ },
265
+ {
266
+ "epoch": 0.5386533665835411,
267
+ "eval_loss": 0.11943639069795609,
268
+ "eval_runtime": 48.0763,
269
+ "eval_samples_per_second": 4.389,
270
+ "eval_steps_per_second": 2.205,
271
+ "step": 270
272
+ },
273
+ {
274
+ "epoch": 0.5586034912718204,
275
+ "grad_norm": 0.1652883142232895,
276
+ "learning_rate": 0.00019562859242790853,
277
+ "loss": 0.1308,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 0.5785536159600998,
282
+ "grad_norm": 0.2698552906513214,
283
+ "learning_rate": 0.00019492493959270398,
284
+ "loss": 0.1378,
285
+ "step": 290
286
+ },
287
+ {
288
+ "epoch": 0.5985037406483791,
289
+ "grad_norm": 0.11757837980985641,
290
+ "learning_rate": 0.00019417026187307985,
291
+ "loss": 0.1186,
292
+ "step": 300
293
+ },
294
+ {
295
+ "epoch": 0.5985037406483791,
296
+ "eval_loss": 0.11812838912010193,
297
+ "eval_runtime": 48.1525,
298
+ "eval_samples_per_second": 4.382,
299
+ "eval_steps_per_second": 2.201,
300
+ "step": 300
301
+ },
302
+ {
303
+ "epoch": 0.6184538653366584,
304
+ "grad_norm": 0.1514044553041458,
305
+ "learning_rate": 0.00019336496493000985,
306
+ "loss": 0.1329,
307
+ "step": 310
308
+ },
309
+ {
310
+ "epoch": 0.6384039900249376,
311
+ "grad_norm": 0.1278185248374939,
312
+ "learning_rate": 0.00019250948163375563,
313
+ "loss": 0.1311,
314
+ "step": 320
315
+ },
316
+ {
317
+ "epoch": 0.6583541147132169,
318
+ "grad_norm": 0.14280234277248383,
319
+ "learning_rate": 0.00019160427183118674,
320
+ "loss": 0.1281,
321
+ "step": 330
322
+ },
323
+ {
324
+ "epoch": 0.6583541147132169,
325
+ "eval_loss": 0.11799625307321548,
326
+ "eval_runtime": 48.1223,
327
+ "eval_samples_per_second": 4.385,
328
+ "eval_steps_per_second": 2.203,
329
+ "step": 330
330
+ },
331
+ {
332
+ "epoch": 0.6783042394014963,
333
+ "grad_norm": 0.141315296292305,
334
+ "learning_rate": 0.0001906498220985997,
335
+ "loss": 0.1131,
336
+ "step": 340
337
+ },
338
+ {
339
+ "epoch": 0.6982543640897756,
340
+ "grad_norm": 0.11978308856487274,
341
+ "learning_rate": 0.0001896466454801692,
342
+ "loss": 0.1294,
343
+ "step": 350
344
+ },
345
+ {
346
+ "epoch": 0.7182044887780549,
347
+ "grad_norm": 0.2772483825683594,
348
+ "learning_rate": 0.00018859528121217204,
349
+ "loss": 0.1297,
350
+ "step": 360
351
+ },
352
+ {
353
+ "epoch": 0.7182044887780549,
354
+ "eval_loss": 0.11690443754196167,
355
+ "eval_runtime": 48.1421,
356
+ "eval_samples_per_second": 4.383,
357
+ "eval_steps_per_second": 2.202,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 0.7381546134663342,
362
+ "grad_norm": 0.13961242139339447,
363
+ "learning_rate": 0.00018749629443313233,
364
+ "loss": 0.1249,
365
+ "step": 370
366
+ },
367
+ {
368
+ "epoch": 0.7581047381546134,
369
+ "grad_norm": 0.17335286736488342,
370
+ "learning_rate": 0.0001863502758800431,
371
+ "loss": 0.1255,
372
+ "step": 380
373
+ },
374
+ {
375
+ "epoch": 0.7780548628428927,
376
+ "grad_norm": 0.15879972279071808,
377
+ "learning_rate": 0.00018515784157082822,
378
+ "loss": 0.1175,
379
+ "step": 390
380
+ },
381
+ {
382
+ "epoch": 0.7780548628428927,
383
+ "eval_loss": 0.11526743322610855,
384
+ "eval_runtime": 48.2061,
385
+ "eval_samples_per_second": 4.377,
386
+ "eval_steps_per_second": 2.199,
387
+ "step": 390
388
+ },
389
+ {
390
+ "epoch": 0.7980049875311721,
391
+ "grad_norm": 0.11807694286108017,
392
+ "learning_rate": 0.00018391963247321513,
393
+ "loss": 0.1178,
394
+ "step": 400
395
+ },
396
+ {
397
+ "epoch": 0.8179551122194514,
398
+ "grad_norm": 0.11275653541088104,
399
+ "learning_rate": 0.00018263631416019617,
400
+ "loss": 0.1195,
401
+ "step": 410
402
+ },
403
+ {
404
+ "epoch": 0.8379052369077307,
405
+ "grad_norm": 0.12657803297042847,
406
+ "learning_rate": 0.000181308576452264,
407
+ "loss": 0.1182,
408
+ "step": 420
409
+ },
410
+ {
411
+ "epoch": 0.8379052369077307,
412
+ "eval_loss": 0.11410157382488251,
413
+ "eval_runtime": 48.3064,
414
+ "eval_samples_per_second": 4.368,
415
+ "eval_steps_per_second": 2.194,
416
+ "step": 420
417
+ },
418
+ {
419
+ "epoch": 0.85785536159601,
420
+ "grad_norm": 0.15267746150493622,
421
+ "learning_rate": 0.00017993713304661322,
422
+ "loss": 0.1216,
423
+ "step": 430
424
+ },
425
+ {
426
+ "epoch": 0.8778054862842892,
427
+ "grad_norm": 0.11593750864267349,
428
+ "learning_rate": 0.00017852272113350767,
429
+ "loss": 0.1329,
430
+ "step": 440
431
+ },
432
+ {
433
+ "epoch": 0.8977556109725686,
434
+ "grad_norm": 0.12276951223611832,
435
+ "learning_rate": 0.0001770661010000194,
436
+ "loss": 0.1189,
437
+ "step": 450
438
+ },
439
+ {
440
+ "epoch": 0.8977556109725686,
441
+ "eval_loss": 0.11431698501110077,
442
+ "eval_runtime": 48.1715,
443
+ "eval_samples_per_second": 4.38,
444
+ "eval_steps_per_second": 2.2,
445
+ "step": 450
446
+ },
447
+ {
448
+ "epoch": 0.9177057356608479,
449
+ "grad_norm": 0.11874907463788986,
450
+ "learning_rate": 0.00017556805562135255,
451
+ "loss": 0.1313,
452
+ "step": 460
453
+ },
454
+ {
455
+ "epoch": 0.9376558603491272,
456
+ "grad_norm": 0.22391599416732788,
457
+ "learning_rate": 0.00017402939023997157,
458
+ "loss": 0.1127,
459
+ "step": 470
460
+ },
461
+ {
462
+ "epoch": 0.9576059850374065,
463
+ "grad_norm": 0.09968144446611404,
464
+ "learning_rate": 0.00017245093193276047,
465
+ "loss": 0.118,
466
+ "step": 480
467
+ },
468
+ {
469
+ "epoch": 0.9576059850374065,
470
+ "eval_loss": 0.11578261852264404,
471
+ "eval_runtime": 48.1681,
472
+ "eval_samples_per_second": 4.38,
473
+ "eval_steps_per_second": 2.201,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 0.9775561097256857,
478
+ "grad_norm": 0.09711634367704391,
479
+ "learning_rate": 0.00017083352916644494,
480
+ "loss": 0.1184,
481
+ "step": 490
482
+ },
483
+ {
484
+ "epoch": 0.9975062344139651,
485
+ "grad_norm": 0.0991770550608635,
486
+ "learning_rate": 0.0001691780513415173,
487
+ "loss": 0.1215,
488
+ "step": 500
489
+ },
490
+ {
491
+ "epoch": 1.0159600997506235,
492
+ "grad_norm": 0.09751348197460175,
493
+ "learning_rate": 0.00016748538832490857,
494
+ "loss": 0.1206,
495
+ "step": 510
496
+ },
497
+ {
498
+ "epoch": 1.0159600997506235,
499
+ "eval_loss": 0.1116185411810875,
500
+ "eval_runtime": 48.1046,
501
+ "eval_samples_per_second": 4.386,
502
+ "eval_steps_per_second": 2.204,
503
+ "step": 510
504
+ },
505
+ {
506
+ "epoch": 1.0359102244389027,
507
+ "grad_norm": 0.10556904226541519,
508
+ "learning_rate": 0.0001657564499716595,
509
+ "loss": 0.1135,
510
+ "step": 520
511
+ },
512
+ {
513
+ "epoch": 1.055860349127182,
514
+ "grad_norm": 0.15284962952136993,
515
+ "learning_rate": 0.00016399216563584736,
516
+ "loss": 0.1218,
517
+ "step": 530
518
+ },
519
+ {
520
+ "epoch": 1.0758104738154612,
521
+ "grad_norm": 0.09085577726364136,
522
+ "learning_rate": 0.00016219348367103132,
523
+ "loss": 0.1171,
524
+ "step": 540
525
+ },
526
+ {
527
+ "epoch": 1.0758104738154612,
528
+ "eval_loss": 0.11126323789358139,
529
+ "eval_runtime": 48.6749,
530
+ "eval_samples_per_second": 4.335,
531
+ "eval_steps_per_second": 2.178,
532
+ "step": 540
533
+ },
534
+ {
535
+ "epoch": 1.0957605985037406,
536
+ "grad_norm": 0.12901732325553894,
537
+ "learning_rate": 0.00016036137092048525,
538
+ "loss": 0.1188,
539
+ "step": 550
540
+ },
541
+ {
542
+ "epoch": 1.11571072319202,
543
+ "grad_norm": 0.09154735505580902,
544
+ "learning_rate": 0.0001584968121974915,
545
+ "loss": 0.1232,
546
+ "step": 560
547
+ },
548
+ {
549
+ "epoch": 1.1356608478802992,
550
+ "grad_norm": 0.10134833306074142,
551
+ "learning_rate": 0.00015660080975597553,
552
+ "loss": 0.1205,
553
+ "step": 570
554
+ },
555
+ {
556
+ "epoch": 1.1356608478802992,
557
+ "eval_loss": 0.11302559077739716,
558
+ "eval_runtime": 48.709,
559
+ "eval_samples_per_second": 4.332,
560
+ "eval_steps_per_second": 2.176,
561
+ "step": 570
562
+ },
563
+ {
564
+ "epoch": 1.1556109725685786,
565
+ "grad_norm": 0.14130111038684845,
566
+ "learning_rate": 0.00015467438275176568,
567
+ "loss": 0.1214,
568
+ "step": 580
569
+ },
570
+ {
571
+ "epoch": 1.1755610972568578,
572
+ "grad_norm": 0.1193675845861435,
573
+ "learning_rate": 0.0001527185666947675,
574
+ "loss": 0.1173,
575
+ "step": 590
576
+ },
577
+ {
578
+ "epoch": 1.1955112219451371,
579
+ "grad_norm": 0.06070871651172638,
580
+ "learning_rate": 0.00015073441289234745,
581
+ "loss": 0.1189,
582
+ "step": 600
583
+ },
584
+ {
585
+ "epoch": 1.1955112219451371,
586
+ "eval_loss": 0.11231612414121628,
587
+ "eval_runtime": 48.6333,
588
+ "eval_samples_per_second": 4.339,
589
+ "eval_steps_per_second": 2.18,
590
+ "step": 600
591
+ },
592
+ {
593
+ "epoch": 1.2154613466334165,
594
+ "grad_norm": 0.08564524352550507,
595
+ "learning_rate": 0.00014872298788422497,
596
+ "loss": 0.1194,
597
+ "step": 610
598
+ },
599
+ {
600
+ "epoch": 1.2354114713216957,
601
+ "grad_norm": 0.1110881119966507,
602
+ "learning_rate": 0.00014668537286917664,
603
+ "loss": 0.117,
604
+ "step": 620
605
+ },
606
+ {
607
+ "epoch": 1.255361596009975,
608
+ "grad_norm": 0.10232548415660858,
609
+ "learning_rate": 0.00014462266312386085,
610
+ "loss": 0.1235,
611
+ "step": 630
612
+ },
613
+ {
614
+ "epoch": 1.255361596009975,
615
+ "eval_loss": 0.11166342347860336,
616
+ "eval_runtime": 48.6028,
617
+ "eval_samples_per_second": 4.341,
618
+ "eval_steps_per_second": 2.181,
619
+ "step": 630
620
+ },
621
+ {
622
+ "epoch": 1.2753117206982543,
623
+ "grad_norm": 0.08676601946353912,
624
+ "learning_rate": 0.00014253596741407507,
625
+ "loss": 0.1281,
626
+ "step": 640
627
+ },
628
+ {
629
+ "epoch": 1.2952618453865337,
630
+ "grad_norm": 0.09077729284763336,
631
+ "learning_rate": 0.0001404264073987623,
632
+ "loss": 0.1242,
633
+ "step": 650
634
+ },
635
+ {
636
+ "epoch": 1.315211970074813,
637
+ "grad_norm": 0.3734651505947113,
638
+ "learning_rate": 0.00013829511702708727,
639
+ "loss": 0.1137,
640
+ "step": 660
641
+ },
642
+ {
643
+ "epoch": 1.315211970074813,
644
+ "eval_loss": 0.11021307855844498,
645
+ "eval_runtime": 48.6287,
646
+ "eval_samples_per_second": 4.339,
647
+ "eval_steps_per_second": 2.18,
648
+ "step": 660
649
+ },
650
+ {
651
+ "epoch": 1.3351620947630922,
652
+ "grad_norm": 0.09780021756887436,
653
+ "learning_rate": 0.00013614324192890592,
654
+ "loss": 0.1219,
655
+ "step": 670
656
+ },
657
+ {
658
+ "epoch": 1.3551122194513716,
659
+ "grad_norm": 0.09793366491794586,
660
+ "learning_rate": 0.00013397193879895671,
661
+ "loss": 0.1046,
662
+ "step": 680
663
+ },
664
+ {
665
+ "epoch": 1.3750623441396508,
666
+ "grad_norm": 0.11061827093362808,
667
+ "learning_rate": 0.00013178237477510374,
668
+ "loss": 0.1174,
669
+ "step": 690
670
+ },
671
+ {
672
+ "epoch": 1.3750623441396508,
673
+ "eval_loss": 0.1095186397433281,
674
+ "eval_runtime": 48.691,
675
+ "eval_samples_per_second": 4.333,
676
+ "eval_steps_per_second": 2.177,
677
+ "step": 690
678
+ },
679
+ {
680
+ "epoch": 1.3950124688279302,
681
+ "grad_norm": 0.11096978187561035,
682
+ "learning_rate": 0.0001295757268109666,
683
+ "loss": 0.1071,
684
+ "step": 700
685
+ },
686
+ {
687
+ "epoch": 1.4149625935162096,
688
+ "grad_norm": 0.10013638436794281,
689
+ "learning_rate": 0.0001273531810432741,
690
+ "loss": 0.1262,
691
+ "step": 710
692
+ },
693
+ {
694
+ "epoch": 1.4349127182044887,
695
+ "grad_norm": 0.12431971728801727,
696
+ "learning_rate": 0.00012511593215428141,
697
+ "loss": 0.1098,
698
+ "step": 720
699
+ },
700
+ {
701
+ "epoch": 1.4349127182044887,
702
+ "eval_loss": 0.10981423407793045,
703
+ "eval_runtime": 48.7018,
704
+ "eval_samples_per_second": 4.332,
705
+ "eval_steps_per_second": 2.177,
706
+ "step": 720
707
+ },
708
+ {
709
+ "epoch": 1.4548628428927681,
710
+ "grad_norm": 0.13086780905723572,
711
+ "learning_rate": 0.0001228651827295943,
712
+ "loss": 0.1142,
713
+ "step": 730
714
+ },
715
+ {
716
+ "epoch": 1.4748129675810473,
717
+ "grad_norm": 0.08466003090143204,
718
+ "learning_rate": 0.00012060214261174465,
719
+ "loss": 0.1144,
720
+ "step": 740
721
+ },
722
+ {
723
+ "epoch": 1.4947630922693267,
724
+ "grad_norm": 0.11653965711593628,
725
+ "learning_rate": 0.00011832802824986523,
726
+ "loss": 0.1183,
727
+ "step": 750
728
+ },
729
+ {
730
+ "epoch": 1.4947630922693267,
731
+ "eval_loss": 0.10894475877285004,
732
+ "eval_runtime": 48.6934,
733
+ "eval_samples_per_second": 4.333,
734
+ "eval_steps_per_second": 2.177,
735
+ "step": 750
736
+ },
737
+ {
738
+ "epoch": 1.514713216957606,
739
+ "grad_norm": 0.11816778779029846,
740
+ "learning_rate": 0.00011604406204581346,
741
+ "loss": 0.13,
742
+ "step": 760
743
+ },
744
+ {
745
+ "epoch": 1.5346633416458852,
746
+ "grad_norm": 0.09233927726745605,
747
+ "learning_rate": 0.00011375147169709519,
748
+ "loss": 0.109,
749
+ "step": 770
750
+ },
751
+ {
752
+ "epoch": 1.5546134663341646,
753
+ "grad_norm": 0.08808460831642151,
754
+ "learning_rate": 0.00011145148953694195,
755
+ "loss": 0.1145,
756
+ "step": 780
757
+ },
758
+ {
759
+ "epoch": 1.5546134663341646,
760
+ "eval_loss": 0.10957030206918716,
761
+ "eval_runtime": 48.6129,
762
+ "eval_samples_per_second": 4.34,
763
+ "eval_steps_per_second": 2.18,
764
+ "step": 780
765
+ },
766
+ {
767
+ "epoch": 1.5745635910224438,
768
+ "grad_norm": 0.0909830778837204,
769
+ "learning_rate": 0.00010914535187189654,
770
+ "loss": 0.1115,
771
+ "step": 790
772
+ },
773
+ {
774
+ "epoch": 1.5945137157107232,
775
+ "grad_norm": 0.08932233601808548,
776
+ "learning_rate": 0.00010683429831726252,
777
+ "loss": 0.1191,
778
+ "step": 800
779
+ },
780
+ {
781
+ "epoch": 1.6144638403990026,
782
+ "grad_norm": 0.08355925977230072,
783
+ "learning_rate": 0.0001045195711307756,
784
+ "loss": 0.1127,
785
+ "step": 810
786
+ },
787
+ {
788
+ "epoch": 1.6144638403990026,
789
+ "eval_loss": 0.10913572460412979,
790
+ "eval_runtime": 48.4393,
791
+ "eval_samples_per_second": 4.356,
792
+ "eval_steps_per_second": 2.188,
793
+ "step": 810
794
+ },
795
+ {
796
+ "epoch": 1.6344139650872818,
797
+ "grad_norm": 0.06819329410791397,
798
+ "learning_rate": 0.00010220241454485406,
799
+ "loss": 0.1098,
800
+ "step": 820
801
+ },
802
+ {
803
+ "epoch": 1.654364089775561,
804
+ "grad_norm": 0.6049116849899292,
805
+ "learning_rate": 9.988407409778838e-05,
806
+ "loss": 0.1141,
807
+ "step": 830
808
+ },
809
+ {
810
+ "epoch": 1.6743142144638403,
811
+ "grad_norm": 0.07323434203863144,
812
+ "learning_rate": 9.756579596422839e-05,
813
+ "loss": 0.1049,
814
+ "step": 840
815
+ },
816
+ {
817
+ "epoch": 1.6743142144638403,
818
+ "eval_loss": 0.10999356210231781,
819
+ "eval_runtime": 48.6539,
820
+ "eval_samples_per_second": 4.337,
821
+ "eval_steps_per_second": 2.179,
822
+ "step": 840
823
+ },
824
+ {
825
+ "epoch": 1.6942643391521197,
826
+ "grad_norm": 0.10413742810487747,
827
+ "learning_rate": 9.524882628532858e-05,
828
+ "loss": 0.1158,
829
+ "step": 850
830
+ },
831
+ {
832
+ "epoch": 1.714214463840399,
833
+ "grad_norm": 0.08523685485124588,
834
+ "learning_rate": 9.293441049891148e-05,
835
+ "loss": 0.115,
836
+ "step": 860
837
+ },
838
+ {
839
+ "epoch": 1.7341645885286783,
840
+ "grad_norm": 0.12683580815792084,
841
+ "learning_rate": 9.062379267000898e-05,
842
+ "loss": 0.1185,
843
+ "step": 870
844
+ },
845
+ {
846
+ "epoch": 1.7341645885286783,
847
+ "eval_loss": 0.10940343141555786,
848
+ "eval_runtime": 48.6011,
849
+ "eval_samples_per_second": 4.341,
850
+ "eval_steps_per_second": 2.181,
851
+ "step": 870
852
+ },
853
+ {
854
+ "epoch": 1.7541147132169574,
855
+ "grad_norm": 0.10133107006549835,
856
+ "learning_rate": 8.831821482214159e-05,
857
+ "loss": 0.1194,
858
+ "step": 880
859
+ },
860
+ {
861
+ "epoch": 1.7740648379052368,
862
+ "grad_norm": 0.08002304285764694,
863
+ "learning_rate": 8.601891626969514e-05,
864
+ "loss": 0.1178,
865
+ "step": 890
866
+ },
867
+ {
868
+ "epoch": 1.7940149625935162,
869
+ "grad_norm": 0.0782008096575737,
870
+ "learning_rate": 8.372713295175352e-05,
871
+ "loss": 0.1162,
872
+ "step": 900
873
+ },
874
+ {
875
+ "epoch": 1.7940149625935162,
876
+ "eval_loss": 0.10899555683135986,
877
+ "eval_runtime": 48.522,
878
+ "eval_samples_per_second": 4.349,
879
+ "eval_steps_per_second": 2.185,
880
+ "step": 900
881
+ },
882
+ {
883
+ "epoch": 1.8139650872817956,
884
+ "grad_norm": 0.08133247494697571,
885
+ "learning_rate": 8.14440967677461e-05,
886
+ "loss": 0.1234,
887
+ "step": 910
888
+ },
889
+ {
890
+ "epoch": 1.8339152119700748,
891
+ "grad_norm": 0.08592060953378677,
892
+ "learning_rate": 7.917103491526617e-05,
893
+ "loss": 0.1073,
894
+ "step": 920
895
+ },
896
+ {
897
+ "epoch": 1.853865336658354,
898
+ "grad_norm": 0.07544530183076859,
899
+ "learning_rate": 7.690916923041708e-05,
900
+ "loss": 0.1072,
901
+ "step": 930
902
+ },
903
+ {
904
+ "epoch": 1.853865336658354,
905
+ "eval_loss": 0.10886865854263306,
906
+ "eval_runtime": 48.4695,
907
+ "eval_samples_per_second": 4.353,
908
+ "eval_steps_per_second": 2.187,
909
+ "step": 930
910
+ },
911
+ {
912
+ "epoch": 1.8738154613466333,
913
+ "grad_norm": 0.10101612657308578,
914
+ "learning_rate": 7.465971553104014e-05,
915
+ "loss": 0.1109,
916
+ "step": 940
917
+ },
918
+ {
919
+ "epoch": 1.8937655860349127,
920
+ "grad_norm": 0.07430823147296906,
921
+ "learning_rate": 7.242388296317757e-05,
922
+ "loss": 0.108,
923
+ "step": 950
924
+ },
925
+ {
926
+ "epoch": 1.9137157107231921,
927
+ "grad_norm": 0.0772905945777893,
928
+ "learning_rate": 7.020287335112179e-05,
929
+ "loss": 0.1087,
930
+ "step": 960
931
+ },
932
+ {
933
+ "epoch": 1.9137157107231921,
934
+ "eval_loss": 0.10754832625389099,
935
+ "eval_runtime": 48.5946,
936
+ "eval_samples_per_second": 4.342,
937
+ "eval_steps_per_second": 2.181,
938
+ "step": 960
939
+ },
940
+ {
941
+ "epoch": 1.9336658354114713,
942
+ "grad_norm": 0.08496296405792236,
943
+ "learning_rate": 6.799788055140025e-05,
944
+ "loss": 0.1203,
945
+ "step": 970
946
+ },
947
+ {
948
+ "epoch": 1.9536159600997505,
949
+ "grad_norm": 0.07446739822626114,
950
+ "learning_rate": 6.58100898110432e-05,
951
+ "loss": 0.1158,
952
+ "step": 980
953
+ },
954
+ {
955
+ "epoch": 1.9735660847880299,
956
+ "grad_norm": 0.08105003088712692,
957
+ "learning_rate": 6.364067713047943e-05,
958
+ "loss": 0.1184,
959
+ "step": 990
960
+ },
961
+ {
962
+ "epoch": 1.9735660847880299,
963
+ "eval_loss": 0.1074095070362091,
964
+ "eval_runtime": 48.6824,
965
+ "eval_samples_per_second": 4.334,
966
+ "eval_steps_per_second": 2.177,
967
+ "step": 990
968
+ },
969
+ {
970
+ "epoch": 1.9935162094763093,
971
+ "grad_norm": 0.08692453801631927,
972
+ "learning_rate": 6.149080863140208e-05,
973
+ "loss": 0.1145,
974
+ "step": 1000
975
+ },
976
+ {
977
+ "epoch": 2.0119700748129676,
978
+ "grad_norm": 0.0745435431599617,
979
+ "learning_rate": 5.9361639929944867e-05,
980
+ "loss": 0.1081,
981
+ "step": 1010
982
+ },
983
+ {
984
+ "epoch": 2.031920199501247,
985
+ "grad_norm": 0.08805131912231445,
986
+ "learning_rate": 5.7254315515505105e-05,
987
+ "loss": 0.1092,
988
+ "step": 1020
989
+ },
990
+ {
991
+ "epoch": 2.031920199501247,
992
+ "eval_loss": 0.10798249393701553,
993
+ "eval_runtime": 48.9954,
994
+ "eval_samples_per_second": 4.307,
995
+ "eval_steps_per_second": 2.163,
996
+ "step": 1020
997
+ },
998
+ {
999
+ "epoch": 2.051870324189526,
1000
+ "grad_norm": 0.08542945981025696,
1001
+ "learning_rate": 5.5169968135547655e-05,
1002
+ "loss": 0.1185,
1003
+ "step": 1030
1004
+ },
1005
+ {
1006
+ "epoch": 2.0718204488778054,
1007
+ "grad_norm": 0.08667082339525223,
1008
+ "learning_rate": 5.310971818672077e-05,
1009
+ "loss": 0.1107,
1010
+ "step": 1040
1011
+ },
1012
+ {
1013
+ "epoch": 2.0917705735660848,
1014
+ "grad_norm": 0.0777161717414856,
1015
+ "learning_rate": 5.1074673112610584e-05,
1016
+ "loss": 0.1082,
1017
+ "step": 1050
1018
+ },
1019
+ {
1020
+ "epoch": 2.0917705735660848,
1021
+ "eval_loss": 0.10762733221054077,
1022
+ "eval_runtime": 49.1196,
1023
+ "eval_samples_per_second": 4.296,
1024
+ "eval_steps_per_second": 2.158,
1025
+ "step": 1050
1026
+ },
1027
+ {
1028
+ "epoch": 2.111720698254364,
1029
+ "grad_norm": 0.06888756155967712,
1030
+ "learning_rate": 4.906592680845829e-05,
1031
+ "loss": 0.1075,
1032
+ "step": 1060
1033
+ },
1034
+ {
1035
+ "epoch": 2.1316708229426435,
1036
+ "grad_norm": 0.09783507883548737,
1037
+ "learning_rate": 4.7084559033160135e-05,
1038
+ "loss": 0.1149,
1039
+ "step": 1070
1040
+ },
1041
+ {
1042
+ "epoch": 2.1516209476309225,
1043
+ "grad_norm": 0.09118674695491791,
1044
+ "learning_rate": 4.5131634828865845e-05,
1045
+ "loss": 0.1127,
1046
+ "step": 1080
1047
+ },
1048
+ {
1049
+ "epoch": 2.1516209476309225,
1050
+ "eval_loss": 0.10765193402767181,
1051
+ "eval_runtime": 49.1258,
1052
+ "eval_samples_per_second": 4.295,
1053
+ "eval_steps_per_second": 2.158,
1054
+ "step": 1080
1055
+ },
1056
+ {
1057
+ "epoch": 2.171571072319202,
1058
+ "grad_norm": 0.08113594353199005,
1059
+ "learning_rate": 4.320820394848794e-05,
1060
+ "loss": 0.1151,
1061
+ "step": 1090
1062
+ },
1063
+ {
1064
+ "epoch": 2.1915211970074813,
1065
+ "grad_norm": 0.08070435374975204,
1066
+ "learning_rate": 4.1315300291429174e-05,
1067
+ "loss": 0.1093,
1068
+ "step": 1100
1069
+ },
1070
+ {
1071
+ "epoch": 2.2114713216957607,
1072
+ "grad_norm": 0.07660377770662308,
1073
+ "learning_rate": 3.9453941347832146e-05,
1074
+ "loss": 0.1113,
1075
+ "step": 1110
1076
+ },
1077
+ {
1078
+ "epoch": 2.2114713216957607,
1079
+ "eval_loss": 0.10742755234241486,
1080
+ "eval_runtime": 48.9958,
1081
+ "eval_samples_per_second": 4.306,
1082
+ "eval_steps_per_second": 2.163,
1083
+ "step": 1110
1084
+ },
1085
+ {
1086
+ "epoch": 2.23142144638404,
1087
+ "grad_norm": 0.08561329543590546,
1088
+ "learning_rate": 3.762512765164895e-05,
1089
+ "loss": 0.1096,
1090
+ "step": 1120
1091
+ },
1092
+ {
1093
+ "epoch": 2.251371571072319,
1094
+ "grad_norm": 0.07384736835956573,
1095
+ "learning_rate": 3.5829842242825374e-05,
1096
+ "loss": 0.1071,
1097
+ "step": 1130
1098
+ },
1099
+ {
1100
+ "epoch": 2.2713216957605984,
1101
+ "grad_norm": 0.089817114174366,
1102
+ "learning_rate": 3.406905013888875e-05,
1103
+ "loss": 0.1128,
1104
+ "step": 1140
1105
+ },
1106
+ {
1107
+ "epoch": 2.2713216957605984,
1108
+ "eval_loss": 0.10679538547992706,
1109
+ "eval_runtime": 49.1277,
1110
+ "eval_samples_per_second": 4.295,
1111
+ "eval_steps_per_second": 2.158,
1112
+ "step": 1140
1113
+ },
1114
+ {
1115
+ "epoch": 2.291271820448878,
1116
+ "grad_norm": 0.0809311643242836,
1117
+ "learning_rate": 3.234369781622315e-05,
1118
+ "loss": 0.1055,
1119
+ "step": 1150
1120
+ },
1121
+ {
1122
+ "epoch": 2.311221945137157,
1123
+ "grad_norm": 0.11156892031431198,
1124
+ "learning_rate": 3.065471270131132e-05,
1125
+ "loss": 0.1118,
1126
+ "step": 1160
1127
+ },
1128
+ {
1129
+ "epoch": 2.3311720698254366,
1130
+ "grad_norm": 0.07891872525215149,
1131
+ "learning_rate": 2.9003002672216106e-05,
1132
+ "loss": 0.1146,
1133
+ "step": 1170
1134
+ },
1135
+ {
1136
+ "epoch": 2.3311720698254366,
1137
+ "eval_loss": 0.1066785454750061,
1138
+ "eval_runtime": 49.1277,
1139
+ "eval_samples_per_second": 4.295,
1140
+ "eval_steps_per_second": 2.158,
1141
+ "step": 1170
1142
+ },
1143
+ {
1144
+ "epoch": 2.3511221945137155,
1145
+ "grad_norm": 0.08137693256139755,
1146
+ "learning_rate": 2.738945557056999e-05,
1147
+ "loss": 0.1068,
1148
+ "step": 1180
1149
+ },
1150
+ {
1151
+ "epoch": 2.371072319201995,
1152
+ "grad_norm": 0.08419659733772278,
1153
+ "learning_rate": 2.5814938724334624e-05,
1154
+ "loss": 0.1039,
1155
+ "step": 1190
1156
+ },
1157
+ {
1158
+ "epoch": 2.3910224438902743,
1159
+ "grad_norm": 0.08609955757856369,
1160
+ "learning_rate": 2.4280298481587104e-05,
1161
+ "loss": 0.1138,
1162
+ "step": 1200
1163
+ },
1164
+ {
1165
+ "epoch": 2.3910224438902743,
1166
+ "eval_loss": 0.10642586648464203,
1167
+ "eval_runtime": 49.084,
1168
+ "eval_samples_per_second": 4.299,
1169
+ "eval_steps_per_second": 2.16,
1170
+ "step": 1200
1171
+ },
1172
+ {
1173
+ "epoch": 2.4109725685785537,
1174
+ "grad_norm": 0.10461217164993286,
1175
+ "learning_rate": 2.2786359755583632e-05,
1176
+ "loss": 0.1181,
1177
+ "step": 1210
1178
+ },
1179
+ {
1180
+ "epoch": 2.430922693266833,
1181
+ "grad_norm": 0.09914015233516693,
1182
+ "learning_rate": 2.133392558134483e-05,
1183
+ "loss": 0.1077,
1184
+ "step": 1220
1185
+ },
1186
+ {
1187
+ "epoch": 2.450872817955112,
1188
+ "grad_norm": 0.09925994277000427,
1189
+ "learning_rate": 1.992377668400136e-05,
1190
+ "loss": 0.1092,
1191
+ "step": 1230
1192
+ },
1193
+ {
1194
+ "epoch": 2.450872817955112,
1195
+ "eval_loss": 0.10633692890405655,
1196
+ "eval_runtime": 49.0203,
1197
+ "eval_samples_per_second": 4.304,
1198
+ "eval_steps_per_second": 2.162,
1199
+ "step": 1230
1200
+ },
1201
+ {
1202
+ "epoch": 2.4708229426433914,
1203
+ "grad_norm": 0.07879967987537384,
1204
+ "learning_rate": 1.855667105913176e-05,
1205
+ "loss": 0.105,
1206
+ "step": 1240
1207
+ },
1208
+ {
1209
+ "epoch": 2.490773067331671,
1210
+ "grad_norm": 0.08635237067937851,
1211
+ "learning_rate": 1.7233343565317928e-05,
1212
+ "loss": 0.1083,
1213
+ "step": 1250
1214
+ },
1215
+ {
1216
+ "epoch": 2.51072319201995,
1217
+ "grad_norm": 0.07894821465015411,
1218
+ "learning_rate": 1.5954505529137587e-05,
1219
+ "loss": 0.1025,
1220
+ "step": 1260
1221
+ },
1222
+ {
1223
+ "epoch": 2.51072319201995,
1224
+ "eval_loss": 0.10649015009403229,
1225
+ "eval_runtime": 49.129,
1226
+ "eval_samples_per_second": 4.295,
1227
+ "eval_steps_per_second": 2.158,
1228
+ "step": 1260
1229
+ },
1230
+ {
1231
+ "epoch": 2.5306733167082296,
1232
+ "grad_norm": 0.08609526604413986,
1233
+ "learning_rate": 1.472084436280582e-05,
1234
+ "loss": 0.1103,
1235
+ "step": 1270
1236
+ },
1237
+ {
1238
+ "epoch": 2.5506234413965085,
1239
+ "grad_norm": 0.12177404761314392,
1240
+ "learning_rate": 1.3533023194671057e-05,
1241
+ "loss": 0.1124,
1242
+ "step": 1280
1243
+ },
1244
+ {
1245
+ "epoch": 2.570573566084788,
1246
+ "grad_norm": 0.09495075047016144,
1247
+ "learning_rate": 1.2391680512764802e-05,
1248
+ "loss": 0.1099,
1249
+ "step": 1290
1250
+ },
1251
+ {
1252
+ "epoch": 2.570573566084788,
1253
+ "eval_loss": 0.10633713006973267,
1254
+ "eval_runtime": 49.2486,
1255
+ "eval_samples_per_second": 4.284,
1256
+ "eval_steps_per_second": 2.152,
1257
+ "step": 1290
1258
+ },
1259
+ {
1260
+ "epoch": 2.5905236907730673,
1261
+ "grad_norm": 0.08574570715427399,
1262
+ "learning_rate": 1.129742982159574e-05,
1263
+ "loss": 0.1173,
1264
+ "step": 1300
1265
+ },
1266
+ {
1267
+ "epoch": 2.6104738154613467,
1268
+ "grad_norm": 0.08771918714046478,
1269
+ "learning_rate": 1.0250859312373462e-05,
1270
+ "loss": 0.1102,
1271
+ "step": 1310
1272
+ },
1273
+ {
1274
+ "epoch": 2.630423940149626,
1275
+ "grad_norm": 0.07304377853870392,
1276
+ "learning_rate": 9.252531546838872e-06,
1277
+ "loss": 0.1046,
1278
+ "step": 1320
1279
+ },
1280
+ {
1281
+ "epoch": 2.630423940149626,
1282
+ "eval_loss": 0.10615119338035583,
1283
+ "eval_runtime": 48.6835,
1284
+ "eval_samples_per_second": 4.334,
1285
+ "eval_steps_per_second": 2.177,
1286
+ "step": 1320
1287
+ },
1288
+ {
1289
+ "epoch": 2.650374064837905,
1290
+ "grad_norm": 0.09657382220029831,
1291
+ "learning_rate": 8.30298315487098e-06,
1292
+ "loss": 0.1147,
1293
+ "step": 1330
1294
+ },
1295
+ {
1296
+ "epoch": 2.6703241895261844,
1297
+ "grad_norm": 0.09089631587266922,
1298
+ "learning_rate": 7.402724546032957e-06,
1299
+ "loss": 0.1102,
1300
+ "step": 1340
1301
+ },
1302
+ {
1303
+ "epoch": 2.690274314214464,
1304
+ "grad_norm": 0.09991210699081421,
1305
+ "learning_rate": 6.552239635212298e-06,
1306
+ "loss": 0.1202,
1307
+ "step": 1350
1308
+ },
1309
+ {
1310
+ "epoch": 2.690274314214464,
1311
+ "eval_loss": 0.10618466883897781,
1312
+ "eval_runtime": 48.5373,
1313
+ "eval_samples_per_second": 4.347,
1314
+ "eval_steps_per_second": 2.184,
1315
+ "step": 1350
1316
+ },
1317
+ {
1318
+ "epoch": 2.7102244389027432,
1319
+ "grad_norm": 0.13392846286296844,
1320
+ "learning_rate": 5.751985582502672e-06,
1321
+ "loss": 0.1176,
1322
+ "step": 1360
1323
+ },
1324
+ {
1325
+ "epoch": 2.7301745635910226,
1326
+ "grad_norm": 0.10461334884166718,
1327
+ "learning_rate": 5.002392547467194e-06,
1328
+ "loss": 0.1116,
1329
+ "step": 1370
1330
+ },
1331
+ {
1332
+ "epoch": 2.7501246882793016,
1333
+ "grad_norm": 0.0903896763920784,
1334
+ "learning_rate": 4.303863457915358e-06,
1335
+ "loss": 0.1048,
1336
+ "step": 1380
1337
+ },
1338
+ {
1339
+ "epoch": 2.7501246882793016,
1340
+ "eval_loss": 0.10620897263288498,
1341
+ "eval_runtime": 48.5684,
1342
+ "eval_samples_per_second": 4.344,
1343
+ "eval_steps_per_second": 2.182,
1344
+ "step": 1380
1345
+ },
1346
+ {
1347
+ "epoch": 2.770074812967581,
1348
+ "grad_norm": 0.09017899632453918,
1349
+ "learning_rate": 3.6567737933176916e-06,
1350
+ "loss": 0.1028,
1351
+ "step": 1390
1352
+ },
1353
+ {
1354
+ "epoch": 2.7900249376558603,
1355
+ "grad_norm": 0.08241838961839676,
1356
+ "learning_rate": 3.0614713829747456e-06,
1357
+ "loss": 0.1051,
1358
+ "step": 1400
1359
+ },
1360
+ {
1361
+ "epoch": 2.8099750623441397,
1362
+ "grad_norm": 0.12076063454151154,
1363
+ "learning_rate": 2.5182762190488873e-06,
1364
+ "loss": 0.1124,
1365
+ "step": 1410
1366
+ },
1367
+ {
1368
+ "epoch": 2.8099750623441397,
1369
+ "eval_loss": 0.10615089535713196,
1370
+ "eval_runtime": 48.4144,
1371
+ "eval_samples_per_second": 4.358,
1372
+ "eval_steps_per_second": 2.189,
1373
+ "step": 1410
1374
+ },
1375
+ {
1376
+ "epoch": 2.829925187032419,
1377
+ "grad_norm": 0.053800225257873535,
1378
+ "learning_rate": 2.0274802845593133e-06,
1379
+ "loss": 0.1149,
1380
+ "step": 1420
1381
+ },
1382
+ {
1383
+ "epoch": 2.849875311720698,
1384
+ "grad_norm": 0.08684830367565155,
1385
+ "learning_rate": 1.5893473964326832e-06,
1386
+ "loss": 0.1039,
1387
+ "step": 1430
1388
+ },
1389
+ {
1390
+ "epoch": 2.8698254364089775,
1391
+ "grad_norm": 0.10123500972986221,
1392
+ "learning_rate": 1.2041130636940678e-06,
1393
+ "loss": 0.1127,
1394
+ "step": 1440
1395
+ },
1396
+ {
1397
+ "epoch": 2.8698254364089775,
1398
+ "eval_loss": 0.10614271461963654,
1399
+ "eval_runtime": 48.6688,
1400
+ "eval_samples_per_second": 4.335,
1401
+ "eval_steps_per_second": 2.178,
1402
+ "step": 1440
1403
+ },
1404
+ {
1405
+ "epoch": 2.889775561097257,
1406
+ "grad_norm": 0.09655766934156418,
1407
+ "learning_rate": 8.71984360874023e-07,
1408
+ "loss": 0.1105,
1409
+ "step": 1450
1410
+ },
1411
+ {
1412
+ "epoch": 2.9097256857855363,
1413
+ "grad_norm": 0.08582356572151184,
1414
+ "learning_rate": 5.931398167000391e-07,
1415
+ "loss": 0.1038,
1416
+ "step": 1460
1417
+ },
1418
+ {
1419
+ "epoch": 2.9296758104738156,
1420
+ "grad_norm": 0.11041458696126938,
1421
+ "learning_rate": 3.677293181322594e-07,
1422
+ "loss": 0.1046,
1423
+ "step": 1470
1424
+ },
1425
+ {
1426
+ "epoch": 2.9296758104738156,
1427
+ "eval_loss": 0.10609422624111176,
1428
+ "eval_runtime": 48.6034,
1429
+ "eval_samples_per_second": 4.341,
1430
+ "eval_steps_per_second": 2.181,
1431
+ "step": 1470
1432
+ },
1433
+ {
1434
+ "epoch": 2.9496259351620946,
1435
+ "grad_norm": 0.08140657842159271,
1436
+ "learning_rate": 1.9587402979491797e-07,
1437
+ "loss": 0.1058,
1438
+ "step": 1480
1439
+ },
1440
+ {
1441
+ "epoch": 2.969576059850374,
1442
+ "grad_norm": 0.08797825127840042,
1443
+ "learning_rate": 7.766632884689262e-08,
1444
+ "loss": 0.1144,
1445
+ "step": 1490
1446
+ },
1447
+ {
1448
+ "epoch": 2.9895261845386534,
1449
+ "grad_norm": 0.1317855268716812,
1450
+ "learning_rate": 1.316975532625886e-08,
1451
+ "loss": 0.1069,
1452
+ "step": 1500
1453
+ },
1454
+ {
1455
+ "epoch": 2.9895261845386534,
1456
+ "eval_loss": 0.10605818033218384,
1457
+ "eval_runtime": 48.5753,
1458
+ "eval_samples_per_second": 4.344,
1459
+ "eval_steps_per_second": 2.182,
1460
+ "step": 1500
1461
+ }
1462
+ ],
1463
+ "logging_steps": 10,
1464
+ "max_steps": 1506,
1465
+ "num_input_tokens_seen": 0,
1466
+ "num_train_epochs": 3,
1467
+ "save_steps": 100,
1468
+ "stateful_callbacks": {
1469
+ "TrainerControl": {
1470
+ "args": {
1471
+ "should_epoch_stop": false,
1472
+ "should_evaluate": false,
1473
+ "should_log": false,
1474
+ "should_save": true,
1475
+ "should_training_stop": true
1476
+ },
1477
+ "attributes": {}
1478
+ }
1479
+ },
1480
+ "total_flos": 2.6429055635399885e+17,
1481
+ "train_batch_size": 2,
1482
+ "trial_name": null,
1483
+ "trial_params": null
1484
+ }
checkpoint-1506/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6b731b0ee946922e88f44dfe39a304ed9c9f83d5608887d14bdf636bc4aea59
3
+ size 5777
checkpoint-1506/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
config.json ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2560,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 9728,
14
+ "layer_types": [
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention"
51
+ ],
52
+ "max_position_embeddings": 262144,
53
+ "max_window_layers": 36,
54
+ "model_type": "qwen3",
55
+ "num_attention_heads": 32,
56
+ "num_hidden_layers": 36,
57
+ "num_key_value_heads": 8,
58
+ "pad_token_id": 151654,
59
+ "quantization_config": {
60
+ "bnb_4bit_compute_dtype": "bfloat16",
61
+ "bnb_4bit_quant_type": "nf4",
62
+ "bnb_4bit_use_double_quant": true,
63
+ "llm_int8_enable_fp32_cpu_offload": false,
64
+ "llm_int8_has_fp16_weight": false,
65
+ "llm_int8_skip_modules": null,
66
+ "llm_int8_threshold": 6.0,
67
+ "load_in_4bit": true,
68
+ "load_in_8bit": false,
69
+ "quant_method": "bitsandbytes"
70
+ },
71
+ "rms_norm_eps": 1e-06,
72
+ "rope_scaling": null,
73
+ "rope_theta": 5000000,
74
+ "sliding_window": null,
75
+ "tie_word_embeddings": true,
76
+ "transformers_version": "4.56.2",
77
+ "unsloth_fixed": true,
78
+ "unsloth_version": "2025.12.7",
79
+ "use_cache": true,
80
+ "use_sliding_window": false,
81
+ "vocab_size": 151936
82
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "max_length": 262144,
9
+ "pad_token_id": 151654,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.56.2"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24eaa820700acfb9607a017abb6f080857a2b494bc6ac38f7504154764bedc61
3
+ size 3545956199
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": "right",
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