t2ance commited on
Commit
d6f5cbd
·
verified ·
1 Parent(s): 03392af

SFT warmup LoRA for 8B judge (9367 samples, 1 epoch)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +4 -0
  2. README.md +62 -0
  3. adapter_config.json +46 -0
  4. adapter_model.safetensors +3 -0
  5. added_tokens.json +28 -0
  6. all_results.json +8 -0
  7. chat_template.jinja +89 -0
  8. checkpoint-700/README.md +209 -0
  9. checkpoint-700/adapter_config.json +46 -0
  10. checkpoint-700/adapter_model.safetensors +3 -0
  11. checkpoint-700/added_tokens.json +28 -0
  12. checkpoint-700/chat_template.jinja +89 -0
  13. checkpoint-700/merges.txt +0 -0
  14. checkpoint-700/optimizer.pt +3 -0
  15. checkpoint-700/rng_state.pth +3 -0
  16. checkpoint-700/scheduler.pt +3 -0
  17. checkpoint-700/special_tokens_map.json +31 -0
  18. checkpoint-700/tokenizer.json +3 -0
  19. checkpoint-700/tokenizer_config.json +240 -0
  20. checkpoint-700/trainer_state.json +1014 -0
  21. checkpoint-700/training_args.bin +3 -0
  22. checkpoint-700/vocab.json +0 -0
  23. checkpoint-750/README.md +209 -0
  24. checkpoint-750/adapter_config.json +46 -0
  25. checkpoint-750/adapter_model.safetensors +3 -0
  26. checkpoint-750/added_tokens.json +28 -0
  27. checkpoint-750/chat_template.jinja +89 -0
  28. checkpoint-750/merges.txt +0 -0
  29. checkpoint-750/optimizer.pt +3 -0
  30. checkpoint-750/rng_state.pth +3 -0
  31. checkpoint-750/scheduler.pt +3 -0
  32. checkpoint-750/special_tokens_map.json +31 -0
  33. checkpoint-750/tokenizer.json +3 -0
  34. checkpoint-750/tokenizer_config.json +240 -0
  35. checkpoint-750/trainer_state.json +1084 -0
  36. checkpoint-750/training_args.bin +3 -0
  37. checkpoint-750/vocab.json +0 -0
  38. checkpoint-781/README.md +209 -0
  39. checkpoint-781/adapter_config.json +46 -0
  40. checkpoint-781/adapter_model.safetensors +3 -0
  41. checkpoint-781/added_tokens.json +28 -0
  42. checkpoint-781/chat_template.jinja +89 -0
  43. checkpoint-781/merges.txt +0 -0
  44. checkpoint-781/optimizer.pt +3 -0
  45. checkpoint-781/rng_state.pth +3 -0
  46. checkpoint-781/scheduler.pt +3 -0
  47. checkpoint-781/special_tokens_map.json +31 -0
  48. checkpoint-781/tokenizer.json +3 -0
  49. checkpoint-781/tokenizer_config.json +240 -0
  50. checkpoint-781/trainer_state.json +1126 -0
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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-700/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-750/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-781/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ license: other
4
+ base_model: unsloth/Qwen3-8B
5
+ tags:
6
+ - base_model:adapter:unsloth/Qwen3-8B
7
+ - llama-factory
8
+ - lora
9
+ - transformers
10
+ - unsloth
11
+ pipeline_tag: text-generation
12
+ model-index:
13
+ - name: CodeRM-SFT-Warmup-Selection-8B-LlamaFactory
14
+ results: []
15
+ ---
16
+
17
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
18
+ should probably proofread and complete it, then remove this comment. -->
19
+
20
+ # CodeRM-SFT-Warmup-Selection-8B-LlamaFactory
21
+
22
+ This model is a fine-tuned version of [Qwen/Qwen3-8B](https://huggingface.co/Qwen/Qwen3-8B) on the sft_warmup_selection_combined dataset.
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 5e-06
42
+ - train_batch_size: 1
43
+ - eval_batch_size: 8
44
+ - seed: 42
45
+ - gradient_accumulation_steps: 12
46
+ - total_train_batch_size: 12
47
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
48
+ - lr_scheduler_type: cosine
49
+ - lr_scheduler_warmup_steps: 20
50
+ - num_epochs: 1.0
51
+
52
+ ### Training results
53
+
54
+
55
+
56
+ ### Framework versions
57
+
58
+ - PEFT 0.17.1
59
+ - Transformers 4.57.1
60
+ - Pytorch 2.7.0+cu126
61
+ - Datasets 4.0.0
62
+ - Tokenizers 0.22.2
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-8B",
9
+ "bias": "none",
10
+ "corda_config": null,
11
+ "eva_config": null,
12
+ "exclude_modules": null,
13
+ "fan_in_fan_out": false,
14
+ "inference_mode": true,
15
+ "init_lora_weights": true,
16
+ "layer_replication": null,
17
+ "layers_pattern": null,
18
+ "layers_to_transform": null,
19
+ "loftq_config": {},
20
+ "lora_alpha": 128,
21
+ "lora_bias": false,
22
+ "lora_dropout": 0.0,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "gate_proj",
33
+ "o_proj",
34
+ "v_proj",
35
+ "k_proj",
36
+ "q_proj",
37
+ "up_proj",
38
+ "down_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d49a26e0f493334f0e4e5acd00b3036faf9c449af09b0cf839d72bd9c22af001
3
+ size 698419728
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
+ }
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.0,
3
+ "total_flos": 1.4329344655107686e+18,
4
+ "train_loss": 0.5799389032029312,
5
+ "train_runtime": 9974.2346,
6
+ "train_samples_per_second": 0.939,
7
+ "train_steps_per_second": 0.078
8
+ }
chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
checkpoint-700/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen3-8B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/Qwen3-8B
7
+ - llama-factory
8
+ - lora
9
+ - transformers
10
+ - unsloth
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.17.1
checkpoint-700/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-8B",
9
+ "bias": "none",
10
+ "corda_config": null,
11
+ "eva_config": null,
12
+ "exclude_modules": null,
13
+ "fan_in_fan_out": false,
14
+ "inference_mode": true,
15
+ "init_lora_weights": true,
16
+ "layer_replication": null,
17
+ "layers_pattern": null,
18
+ "layers_to_transform": null,
19
+ "loftq_config": {},
20
+ "lora_alpha": 128,
21
+ "lora_bias": false,
22
+ "lora_dropout": 0.0,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "gate_proj",
33
+ "o_proj",
34
+ "v_proj",
35
+ "k_proj",
36
+ "q_proj",
37
+ "up_proj",
38
+ "down_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-700/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02d953b063d6f427db2b20eafff10786961ce6736089627e10d1e08175f2f538
3
+ size 698419728
checkpoint-700/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-700/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
checkpoint-700/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-700/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55c59ab128e253a861c652bf1f505e940c18e23661694f24a4724f80d70f4055
3
+ size 1397129547
checkpoint-700/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c19bab1174704a4a4441475683bf1270277af15d2e2c95e964789128e482c4
3
+ size 14645
checkpoint-700/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc876fd454b48eb27c7b152597796e005c38f9ef5c716d9fa35ab37f054061ad
3
+ size 1465
checkpoint-700/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": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-700/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-700/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": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
checkpoint-700/trainer_state.json ADDED
@@ -0,0 +1,1014 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.896765239671186,
6
+ "eval_steps": 25,
7
+ "global_step": 700,
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.0064054659976513295,
14
+ "grad_norm": 1.095150351524353,
15
+ "learning_rate": 1.0000000000000002e-06,
16
+ "loss": 0.9763,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.012810931995302659,
21
+ "grad_norm": 1.0511373281478882,
22
+ "learning_rate": 2.25e-06,
23
+ "loss": 0.9023,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.019216397992953986,
28
+ "grad_norm": 0.817418098449707,
29
+ "learning_rate": 3.5e-06,
30
+ "loss": 0.9288,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.025621863990605318,
35
+ "grad_norm": 0.624769926071167,
36
+ "learning_rate": 4.75e-06,
37
+ "loss": 0.8766,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.03202732998825664,
42
+ "grad_norm": 0.5237262845039368,
43
+ "learning_rate": 4.999659159998194e-06,
44
+ "loss": 0.8411,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.03843279598590797,
49
+ "grad_norm": 0.46350979804992676,
50
+ "learning_rate": 4.998274656771894e-06,
51
+ "loss": 0.8132,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.0448382619835593,
56
+ "grad_norm": 0.3592084050178528,
57
+ "learning_rate": 4.995825777227236e-06,
58
+ "loss": 0.7663,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.051243727981210636,
63
+ "grad_norm": 0.34569790959358215,
64
+ "learning_rate": 4.992313564696022e-06,
65
+ "loss": 0.7355,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.057649193978861965,
70
+ "grad_norm": 0.2865957021713257,
71
+ "learning_rate": 4.9877395155372815e-06,
72
+ "loss": 0.7632,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.06405465997651329,
77
+ "grad_norm": 0.25277993083000183,
78
+ "learning_rate": 4.982105578499759e-06,
79
+ "loss": 0.7539,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.07046012597416462,
84
+ "grad_norm": 0.24113819003105164,
85
+ "learning_rate": 4.975414153891664e-06,
86
+ "loss": 0.7322,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.07686559197181594,
91
+ "grad_norm": 0.2370101362466812,
92
+ "learning_rate": 4.967668092558024e-06,
93
+ "loss": 0.7242,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.08327105796946728,
98
+ "grad_norm": 0.23438391089439392,
99
+ "learning_rate": 4.9588706946661066e-06,
100
+ "loss": 0.6943,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.0896765239671186,
105
+ "grad_norm": 0.24512864649295807,
106
+ "learning_rate": 4.949025708299395e-06,
107
+ "loss": 0.6866,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.09608198996476994,
112
+ "grad_norm": 0.22728285193443298,
113
+ "learning_rate": 4.93813732786074e-06,
114
+ "loss": 0.6658,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.10248745596242127,
119
+ "grad_norm": 0.2585676610469818,
120
+ "learning_rate": 4.926210192285359e-06,
121
+ "loss": 0.7284,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.1088929219600726,
126
+ "grad_norm": 0.2257288247346878,
127
+ "learning_rate": 4.913249383064438e-06,
128
+ "loss": 0.6844,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.11529838795772393,
133
+ "grad_norm": 0.2544812262058258,
134
+ "learning_rate": 4.899260422080195e-06,
135
+ "loss": 0.6872,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.12170385395537525,
140
+ "grad_norm": 0.23987820744514465,
141
+ "learning_rate": 4.884249269253309e-06,
142
+ "loss": 0.6438,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.12810931995302657,
147
+ "grad_norm": 0.28527575731277466,
148
+ "learning_rate": 4.868222320003731e-06,
149
+ "loss": 0.656,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.13451478595067792,
154
+ "grad_norm": 0.25415557622909546,
155
+ "learning_rate": 4.851186402525946e-06,
156
+ "loss": 0.6562,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.14092025194832924,
161
+ "grad_norm": 0.21308082342147827,
162
+ "learning_rate": 4.8331487748798636e-06,
163
+ "loss": 0.6569,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.14732571794598057,
168
+ "grad_norm": 0.23867692053318024,
169
+ "learning_rate": 4.814117121898554e-06,
170
+ "loss": 0.6158,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.1537311839436319,
175
+ "grad_norm": 0.23583965003490448,
176
+ "learning_rate": 4.794099551914173e-06,
177
+ "loss": 0.6084,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.16013664994128324,
182
+ "grad_norm": 0.22881825268268585,
183
+ "learning_rate": 4.773104593303449e-06,
184
+ "loss": 0.6778,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.16654211593893456,
189
+ "grad_norm": 0.24278834462165833,
190
+ "learning_rate": 4.751141190854214e-06,
191
+ "loss": 0.6071,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.17294758193658588,
196
+ "grad_norm": 0.2911915183067322,
197
+ "learning_rate": 4.728218701954525e-06,
198
+ "loss": 0.6543,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.1793530479342372,
203
+ "grad_norm": 0.2795209586620331,
204
+ "learning_rate": 4.704346892606001e-06,
205
+ "loss": 0.5956,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.18575851393188855,
210
+ "grad_norm": 0.25558847188949585,
211
+ "learning_rate": 4.6795359332630694e-06,
212
+ "loss": 0.6395,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.19216397992953987,
217
+ "grad_norm": 0.2465032935142517,
218
+ "learning_rate": 4.653796394499904e-06,
219
+ "loss": 0.6136,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.1985694459271912,
224
+ "grad_norm": 0.244729146361351,
225
+ "learning_rate": 4.627139242506882e-06,
226
+ "loss": 0.6046,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.20497491192484255,
231
+ "grad_norm": 0.2569523751735687,
232
+ "learning_rate": 4.599575834418505e-06,
233
+ "loss": 0.6483,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.21138037792249387,
238
+ "grad_norm": 0.29486870765686035,
239
+ "learning_rate": 4.571117913474749e-06,
240
+ "loss": 0.6034,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.2177858439201452,
245
+ "grad_norm": 0.26274922490119934,
246
+ "learning_rate": 4.541777604017924e-06,
247
+ "loss": 0.5834,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.2241913099177965,
252
+ "grad_norm": 0.2968301773071289,
253
+ "learning_rate": 4.511567406327162e-06,
254
+ "loss": 0.6063,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.23059677591544786,
259
+ "grad_norm": 0.301880419254303,
260
+ "learning_rate": 4.480500191292744e-06,
261
+ "loss": 0.5965,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.23700224191309918,
266
+ "grad_norm": 0.27574408054351807,
267
+ "learning_rate": 4.448589194932521e-06,
268
+ "loss": 0.5959,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.2434077079107505,
273
+ "grad_norm": 0.25683072209358215,
274
+ "learning_rate": 4.415848012752789e-06,
275
+ "loss": 0.5764,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.24981317390840183,
280
+ "grad_norm": 0.3023504912853241,
281
+ "learning_rate": 4.38229059395599e-06,
282
+ "loss": 0.6013,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.25621863990605315,
287
+ "grad_norm": 0.2837856113910675,
288
+ "learning_rate": 4.347931235497738e-06,
289
+ "loss": 0.6044,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.2626241059037045,
294
+ "grad_norm": 0.29550132155418396,
295
+ "learning_rate": 4.312784575995669e-06,
296
+ "loss": 0.5866,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.26902957190135585,
301
+ "grad_norm": 0.28646326065063477,
302
+ "learning_rate": 4.276865589492747e-06,
303
+ "loss": 0.5838,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.27543503789900714,
308
+ "grad_norm": 0.3569891154766083,
309
+ "learning_rate": 4.240189579077649e-06,
310
+ "loss": 0.5701,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.2818405038966585,
315
+ "grad_norm": 0.33763790130615234,
316
+ "learning_rate": 4.202772170364969e-06,
317
+ "loss": 0.5759,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.2882459698943098,
322
+ "grad_norm": 0.245514377951622,
323
+ "learning_rate": 4.164629304838012e-06,
324
+ "loss": 0.5694,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.29465143589196113,
329
+ "grad_norm": 0.2917734682559967,
330
+ "learning_rate": 4.125777233057007e-06,
331
+ "loss": 0.5944,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.3010569018896125,
336
+ "grad_norm": 0.2828243374824524,
337
+ "learning_rate": 4.086232507735648e-06,
338
+ "loss": 0.5717,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.3074623678872638,
343
+ "grad_norm": 0.38584598898887634,
344
+ "learning_rate": 4.0460119766889e-06,
345
+ "loss": 0.5931,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.3138678338849151,
350
+ "grad_norm": 0.36006131768226624,
351
+ "learning_rate": 4.005132775655076e-06,
352
+ "loss": 0.5564,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.3202732998825665,
357
+ "grad_norm": 0.372942179441452,
358
+ "learning_rate": 3.963612320995257e-06,
359
+ "loss": 0.6025,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.32667876588021777,
364
+ "grad_norm": 0.28577810525894165,
365
+ "learning_rate": 3.921468302273137e-06,
366
+ "loss": 0.5469,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.3330842318778691,
371
+ "grad_norm": 0.3417142331600189,
372
+ "learning_rate": 3.8787186747184826e-06,
373
+ "loss": 0.5342,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.33948969787552047,
378
+ "grad_norm": 0.35277873277664185,
379
+ "learning_rate": 3.8353816515774115e-06,
380
+ "loss": 0.5531,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.34589516387317176,
385
+ "grad_norm": 0.2886194586753845,
386
+ "learning_rate": 3.79147569635273e-06,
387
+ "loss": 0.5431,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.3523006298708231,
392
+ "grad_norm": 0.29417017102241516,
393
+ "learning_rate": 3.747019514937663e-06,
394
+ "loss": 0.5826,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.3587060958684744,
399
+ "grad_norm": 0.3237856924533844,
400
+ "learning_rate": 3.70203204764631e-06,
401
+ "loss": 0.5689,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.36511156186612576,
406
+ "grad_norm": 0.3846990168094635,
407
+ "learning_rate": 3.6565324611442234e-06,
408
+ "loss": 0.5763,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.3715170278637771,
413
+ "grad_norm": 0.2781718969345093,
414
+ "learning_rate": 3.6105401402825595e-06,
415
+ "loss": 0.5549,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.3779224938614284,
420
+ "grad_norm": 0.2733434736728668,
421
+ "learning_rate": 3.5640746798392657e-06,
422
+ "loss": 0.5967,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.38432795985907975,
427
+ "grad_norm": 0.34851792454719543,
428
+ "learning_rate": 3.5171558761708334e-06,
429
+ "loss": 0.5543,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.3907334258567311,
434
+ "grad_norm": 0.34361544251441956,
435
+ "learning_rate": 3.469803718778166e-06,
436
+ "loss": 0.5519,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.3971388918543824,
441
+ "grad_norm": 0.2903674244880676,
442
+ "learning_rate": 3.4220383817901625e-06,
443
+ "loss": 0.562,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.40354435785203374,
448
+ "grad_norm": 0.31230857968330383,
449
+ "learning_rate": 3.3738802153686414e-06,
450
+ "loss": 0.5537,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.4099498238496851,
455
+ "grad_norm": 0.31388580799102783,
456
+ "learning_rate": 3.3253497370382605e-06,
457
+ "loss": 0.5551,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.4163552898473364,
462
+ "grad_norm": 0.32741594314575195,
463
+ "learning_rate": 3.2764676229451397e-06,
464
+ "loss": 0.5498,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.42276075584498773,
469
+ "grad_norm": 0.2511857748031616,
470
+ "learning_rate": 3.227254699047904e-06,
471
+ "loss": 0.5511,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.42916622184263903,
476
+ "grad_norm": 0.3877544105052948,
477
+ "learning_rate": 3.177731932244892e-06,
478
+ "loss": 0.5485,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.4355716878402904,
483
+ "grad_norm": 0.3445497751235962,
484
+ "learning_rate": 3.127920421441327e-06,
485
+ "loss": 0.5639,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.4419771538379417,
490
+ "grad_norm": 0.3347369432449341,
491
+ "learning_rate": 3.077841388560243e-06,
492
+ "loss": 0.5745,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.448382619835593,
497
+ "grad_norm": 0.36205726861953735,
498
+ "learning_rate": 3.0275161695009975e-06,
499
+ "loss": 0.5658,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.45478808583324437,
504
+ "grad_norm": 0.35722121596336365,
505
+ "learning_rate": 2.9769662050492276e-06,
506
+ "loss": 0.5479,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.4611935518308957,
511
+ "grad_norm": 0.35634711384773254,
512
+ "learning_rate": 2.926213031742125e-06,
513
+ "loss": 0.5595,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 0.467599017828547,
518
+ "grad_norm": 0.32853105664253235,
519
+ "learning_rate": 2.8752782726929045e-06,
520
+ "loss": 0.5429,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 0.47400448382619836,
525
+ "grad_norm": 0.3939530551433563,
526
+ "learning_rate": 2.8241836283784026e-06,
527
+ "loss": 0.531,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 0.48040994982384966,
532
+ "grad_norm": 0.3002113699913025,
533
+ "learning_rate": 2.7729508673936972e-06,
534
+ "loss": 0.5596,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 0.486815415821501,
539
+ "grad_norm": 0.3216375708580017,
540
+ "learning_rate": 2.721601817177725e-06,
541
+ "loss": 0.5292,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 0.49322088181915236,
546
+ "grad_norm": 0.3263518810272217,
547
+ "learning_rate": 2.6701583547138165e-06,
548
+ "loss": 0.5684,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 0.49962634781680365,
553
+ "grad_norm": 0.3253946900367737,
554
+ "learning_rate": 2.618642397209126e-06,
555
+ "loss": 0.5264,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 0.5060318138144551,
560
+ "grad_norm": 0.3231858015060425,
561
+ "learning_rate": 2.567075892756924e-06,
562
+ "loss": 0.5448,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 0.5124372798121063,
567
+ "grad_norm": 0.36590418219566345,
568
+ "learning_rate": 2.5154808109857367e-06,
569
+ "loss": 0.5248,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 0.5188427458097576,
574
+ "grad_norm": 0.3773280084133148,
575
+ "learning_rate": 2.4638791336992967e-06,
576
+ "loss": 0.5505,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 0.525248211807409,
581
+ "grad_norm": 0.3829450309276581,
582
+ "learning_rate": 2.4122928455113233e-06,
583
+ "loss": 0.5466,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 0.5316536778050603,
588
+ "grad_norm": 0.3306972086429596,
589
+ "learning_rate": 2.360743924479093e-06,
590
+ "loss": 0.5721,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 0.5380591438027117,
595
+ "grad_norm": 0.32845625281333923,
596
+ "learning_rate": 2.3092543327398083e-06,
597
+ "loss": 0.5177,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 0.5444646098003629,
602
+ "grad_norm": 0.3088594079017639,
603
+ "learning_rate": 2.2578460071537512e-06,
604
+ "loss": 0.5575,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 0.5508700757980143,
609
+ "grad_norm": 0.3912436366081238,
610
+ "learning_rate": 2.2065408499582e-06,
611
+ "loss": 0.561,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 0.5572755417956656,
616
+ "grad_norm": 0.3839537799358368,
617
+ "learning_rate": 2.155360719436102e-06,
618
+ "loss": 0.526,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 0.563681007793317,
623
+ "grad_norm": 0.3676234185695648,
624
+ "learning_rate": 2.1043274206034727e-06,
625
+ "loss": 0.541,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 0.5700864737909683,
630
+ "grad_norm": 0.368198424577713,
631
+ "learning_rate": 2.0534626959194816e-06,
632
+ "loss": 0.5212,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 0.5764919397886196,
637
+ "grad_norm": 0.34693998098373413,
638
+ "learning_rate": 2.002788216023203e-06,
639
+ "loss": 0.5462,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 0.5828974057862709,
644
+ "grad_norm": 0.37934619188308716,
645
+ "learning_rate": 1.9523255705009558e-06,
646
+ "loss": 0.5423,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 0.5893028717839223,
651
+ "grad_norm": 0.3458510637283325,
652
+ "learning_rate": 1.902096258688174e-06,
653
+ "loss": 0.4889,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 0.5957083377815736,
658
+ "grad_norm": 0.33206406235694885,
659
+ "learning_rate": 1.8521216805097358e-06,
660
+ "loss": 0.5378,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 0.602113803779225,
665
+ "grad_norm": 0.29139187932014465,
666
+ "learning_rate": 1.8024231273626424e-06,
667
+ "loss": 0.5444,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 0.6085192697768763,
672
+ "grad_norm": 0.3665342926979065,
673
+ "learning_rate": 1.7530217730449312e-06,
674
+ "loss": 0.5276,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 0.6149247357745276,
679
+ "grad_norm": 0.32149678468704224,
680
+ "learning_rate": 1.7039386647346975e-06,
681
+ "loss": 0.5117,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 0.6213302017721789,
686
+ "grad_norm": 0.30389899015426636,
687
+ "learning_rate": 1.6551947140230568e-06,
688
+ "loss": 0.5573,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 0.6277356677698303,
693
+ "grad_norm": 0.3890632688999176,
694
+ "learning_rate": 1.6068106880048747e-06,
695
+ "loss": 0.5395,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 0.6341411337674816,
700
+ "grad_norm": 0.36464181542396545,
701
+ "learning_rate": 1.5588072004310634e-06,
702
+ "loss": 0.5497,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 0.640546599765133,
707
+ "grad_norm": 0.32058826088905334,
708
+ "learning_rate": 1.5112047029262e-06,
709
+ "loss": 0.5377,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 0.6469520657627842,
714
+ "grad_norm": 0.280649870634079,
715
+ "learning_rate": 1.4640234762752248e-06,
716
+ "loss": 0.5349,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 0.6533575317604355,
721
+ "grad_norm": 0.36669427156448364,
722
+ "learning_rate": 1.4172836217829267e-06,
723
+ "loss": 0.539,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 0.6597629977580869,
728
+ "grad_norm": 0.3747427463531494,
729
+ "learning_rate": 1.3710050527098867e-06,
730
+ "loss": 0.5582,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 0.6661684637557382,
735
+ "grad_norm": 0.3354856073856354,
736
+ "learning_rate": 1.3252074857885453e-06,
737
+ "loss": 0.5512,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 0.6725739297533896,
742
+ "grad_norm": 0.3852190673351288,
743
+ "learning_rate": 1.2799104328229928e-06,
744
+ "loss": 0.5216,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 0.6789793957510409,
749
+ "grad_norm": 0.3479975759983063,
750
+ "learning_rate": 1.2351331923760743e-06,
751
+ "loss": 0.518,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 0.6853848617486922,
756
+ "grad_norm": 0.37335509061813354,
757
+ "learning_rate": 1.1908948415473418e-06,
758
+ "loss": 0.5203,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 0.6917903277463435,
763
+ "grad_norm": 0.4034595489501953,
764
+ "learning_rate": 1.1472142278453582e-06,
765
+ "loss": 0.5157,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 0.6981957937439949,
770
+ "grad_norm": 0.2966196537017822,
771
+ "learning_rate": 1.1041099611578177e-06,
772
+ "loss": 0.541,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 0.7046012597416462,
777
+ "grad_norm": 0.3616897463798523,
778
+ "learning_rate": 1.0616004058229084e-06,
779
+ "loss": 0.5254,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 0.7110067257392976,
784
+ "grad_norm": 0.3452332317829132,
785
+ "learning_rate": 1.0197036728052847e-06,
786
+ "loss": 0.5543,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 0.7174121917369488,
791
+ "grad_norm": 0.3313845694065094,
792
+ "learning_rate": 9.784376119799851e-07,
793
+ "loss": 0.5294,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 0.7238176577346002,
798
+ "grad_norm": 0.37989768385887146,
799
+ "learning_rate": 9.378198045275968e-07,
800
+ "loss": 0.5411,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 0.7302231237322515,
805
+ "grad_norm": 0.3642790913581848,
806
+ "learning_rate": 8.97867555443886e-07,
807
+ "loss": 0.5186,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 0.7366285897299029,
812
+ "grad_norm": 0.369183748960495,
813
+ "learning_rate": 8.585978861670958e-07,
814
+ "loss": 0.5189,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 0.7430340557275542,
819
+ "grad_norm": 0.3428362011909485,
820
+ "learning_rate": 8.200275273260611e-07,
821
+ "loss": 0.5326,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 0.7494395217252056,
826
+ "grad_norm": 0.33693212270736694,
827
+ "learning_rate": 7.821729116122126e-07,
828
+ "loss": 0.5417,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 0.7558449877228568,
833
+ "grad_norm": 0.35541847348213196,
834
+ "learning_rate": 7.450501667785146e-07,
835
+ "loss": 0.531,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 0.7622504537205081,
840
+ "grad_norm": 0.3545955717563629,
841
+ "learning_rate": 7.086751087683297e-07,
842
+ "loss": 0.5371,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 0.7686559197181595,
847
+ "grad_norm": 0.369098424911499,
848
+ "learning_rate": 6.730632349771193e-07,
849
+ "loss": 0.5444,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 0.7750613857158108,
854
+ "grad_norm": 0.395386666059494,
855
+ "learning_rate": 6.3822971764986e-07,
856
+ "loss": 0.5207,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 0.7814668517134622,
861
+ "grad_norm": 0.3929295241832733,
862
+ "learning_rate": 6.041893974169963e-07,
863
+ "loss": 0.5223,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 0.7878723177111134,
868
+ "grad_norm": 0.38200634717941284,
869
+ "learning_rate": 5.709567769716678e-07,
870
+ "loss": 0.5346,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 0.7942777837087648,
875
+ "grad_norm": 0.35260388255119324,
876
+ "learning_rate": 5.385460148909169e-07,
877
+ "loss": 0.5106,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 0.8006832497064161,
882
+ "grad_norm": 0.36902984976768494,
883
+ "learning_rate": 5.069709196035011e-07,
884
+ "loss": 0.5333,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 0.8070887157040675,
889
+ "grad_norm": 0.36749160289764404,
890
+ "learning_rate": 4.762449435068914e-07,
891
+ "loss": 0.5197,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 0.8134941817017188,
896
+ "grad_norm": 0.37014660239219666,
897
+ "learning_rate": 4.4638117723595054e-07,
898
+ "loss": 0.5492,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 0.8198996476993702,
903
+ "grad_norm": 0.3781520426273346,
904
+ "learning_rate": 4.173923440857358e-07,
905
+ "loss": 0.5365,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 0.8263051136970214,
910
+ "grad_norm": 0.33049196004867554,
911
+ "learning_rate": 3.892907945908128e-07,
912
+ "loss": 0.5163,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 0.8327105796946728,
917
+ "grad_norm": 0.40030181407928467,
918
+ "learning_rate": 3.6208850126337595e-07,
919
+ "loss": 0.5111,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 0.8391160456923241,
924
+ "grad_norm": 0.3238008916378021,
925
+ "learning_rate": 3.357970534924229e-07,
926
+ "loss": 0.544,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 0.8455215116899755,
931
+ "grad_norm": 0.3207038938999176,
932
+ "learning_rate": 3.104276526061617e-07,
933
+ "loss": 0.5242,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 0.8519269776876268,
938
+ "grad_norm": 0.38148337602615356,
939
+ "learning_rate": 2.859911070997437e-07,
940
+ "loss": 0.5358,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 0.8583324436852781,
945
+ "grad_norm": 0.44874271750450134,
946
+ "learning_rate": 2.624978280303628e-07,
947
+ "loss": 0.5347,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 0.8647379096829294,
952
+ "grad_norm": 0.3957948684692383,
953
+ "learning_rate": 2.3995782458168276e-07,
954
+ "loss": 0.5401,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 0.8711433756805808,
959
+ "grad_norm": 0.398444265127182,
960
+ "learning_rate": 2.1838069979947945e-07,
961
+ "loss": 0.524,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 0.8775488416782321,
966
+ "grad_norm": 0.37134161591529846,
967
+ "learning_rate": 1.9777564650031112e-07,
968
+ "loss": 0.535,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 0.8839543076758835,
973
+ "grad_norm": 0.37950778007507324,
974
+ "learning_rate": 1.7815144335497524e-07,
975
+ "loss": 0.5358,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 0.8903597736735348,
980
+ "grad_norm": 0.4200168251991272,
981
+ "learning_rate": 1.5951645114839875e-07,
982
+ "loss": 0.5234,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 0.896765239671186,
987
+ "grad_norm": 0.3997882008552551,
988
+ "learning_rate": 1.4187860921757252e-07,
989
+ "loss": 0.5437,
990
+ "step": 700
991
+ }
992
+ ],
993
+ "logging_steps": 5,
994
+ "max_steps": 781,
995
+ "num_input_tokens_seen": 0,
996
+ "num_train_epochs": 1,
997
+ "save_steps": 50,
998
+ "stateful_callbacks": {
999
+ "TrainerControl": {
1000
+ "args": {
1001
+ "should_epoch_stop": false,
1002
+ "should_evaluate": false,
1003
+ "should_log": false,
1004
+ "should_save": true,
1005
+ "should_training_stop": false
1006
+ },
1007
+ "attributes": {}
1008
+ }
1009
+ },
1010
+ "total_flos": 1.287549295748481e+18,
1011
+ "train_batch_size": 1,
1012
+ "trial_name": null,
1013
+ "trial_params": null
1014
+ }
checkpoint-700/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6ab62dc3c7f9559b1b95a7ccd05854841e1eab0bda7a9f430097903d36e75bf
3
+ size 6417
checkpoint-700/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-750/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen3-8B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/Qwen3-8B
7
+ - llama-factory
8
+ - lora
9
+ - transformers
10
+ - unsloth
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.17.1
checkpoint-750/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-8B",
9
+ "bias": "none",
10
+ "corda_config": null,
11
+ "eva_config": null,
12
+ "exclude_modules": null,
13
+ "fan_in_fan_out": false,
14
+ "inference_mode": true,
15
+ "init_lora_weights": true,
16
+ "layer_replication": null,
17
+ "layers_pattern": null,
18
+ "layers_to_transform": null,
19
+ "loftq_config": {},
20
+ "lora_alpha": 128,
21
+ "lora_bias": false,
22
+ "lora_dropout": 0.0,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "gate_proj",
33
+ "o_proj",
34
+ "v_proj",
35
+ "k_proj",
36
+ "q_proj",
37
+ "up_proj",
38
+ "down_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-750/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96e8f8bde21b609b8852b080fa71ef24d8bb651a686173d942307540247e5c11
3
+ size 698419728
checkpoint-750/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-750/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
checkpoint-750/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-750/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6be317716be9b7b39caaf51a9cbcd5809e82b412ad466a1dd91222f60c87106a
3
+ size 1397129547
checkpoint-750/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c19bab1174704a4a4441475683bf1270277af15d2e2c95e964789128e482c4
3
+ size 14645
checkpoint-750/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d3a4b357a0509edb297752f7c1a977f02b72fe1361f511d67e1661149605a75
3
+ size 1465
checkpoint-750/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": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-750/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-750/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": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
checkpoint-750/trainer_state.json ADDED
@@ -0,0 +1,1084 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.9608198996476993,
6
+ "eval_steps": 25,
7
+ "global_step": 750,
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.0064054659976513295,
14
+ "grad_norm": 1.095150351524353,
15
+ "learning_rate": 1.0000000000000002e-06,
16
+ "loss": 0.9763,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.012810931995302659,
21
+ "grad_norm": 1.0511373281478882,
22
+ "learning_rate": 2.25e-06,
23
+ "loss": 0.9023,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.019216397992953986,
28
+ "grad_norm": 0.817418098449707,
29
+ "learning_rate": 3.5e-06,
30
+ "loss": 0.9288,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.025621863990605318,
35
+ "grad_norm": 0.624769926071167,
36
+ "learning_rate": 4.75e-06,
37
+ "loss": 0.8766,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.03202732998825664,
42
+ "grad_norm": 0.5237262845039368,
43
+ "learning_rate": 4.999659159998194e-06,
44
+ "loss": 0.8411,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.03843279598590797,
49
+ "grad_norm": 0.46350979804992676,
50
+ "learning_rate": 4.998274656771894e-06,
51
+ "loss": 0.8132,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.0448382619835593,
56
+ "grad_norm": 0.3592084050178528,
57
+ "learning_rate": 4.995825777227236e-06,
58
+ "loss": 0.7663,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.051243727981210636,
63
+ "grad_norm": 0.34569790959358215,
64
+ "learning_rate": 4.992313564696022e-06,
65
+ "loss": 0.7355,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.057649193978861965,
70
+ "grad_norm": 0.2865957021713257,
71
+ "learning_rate": 4.9877395155372815e-06,
72
+ "loss": 0.7632,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.06405465997651329,
77
+ "grad_norm": 0.25277993083000183,
78
+ "learning_rate": 4.982105578499759e-06,
79
+ "loss": 0.7539,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.07046012597416462,
84
+ "grad_norm": 0.24113819003105164,
85
+ "learning_rate": 4.975414153891664e-06,
86
+ "loss": 0.7322,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.07686559197181594,
91
+ "grad_norm": 0.2370101362466812,
92
+ "learning_rate": 4.967668092558024e-06,
93
+ "loss": 0.7242,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.08327105796946728,
98
+ "grad_norm": 0.23438391089439392,
99
+ "learning_rate": 4.9588706946661066e-06,
100
+ "loss": 0.6943,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.0896765239671186,
105
+ "grad_norm": 0.24512864649295807,
106
+ "learning_rate": 4.949025708299395e-06,
107
+ "loss": 0.6866,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.09608198996476994,
112
+ "grad_norm": 0.22728285193443298,
113
+ "learning_rate": 4.93813732786074e-06,
114
+ "loss": 0.6658,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.10248745596242127,
119
+ "grad_norm": 0.2585676610469818,
120
+ "learning_rate": 4.926210192285359e-06,
121
+ "loss": 0.7284,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.1088929219600726,
126
+ "grad_norm": 0.2257288247346878,
127
+ "learning_rate": 4.913249383064438e-06,
128
+ "loss": 0.6844,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.11529838795772393,
133
+ "grad_norm": 0.2544812262058258,
134
+ "learning_rate": 4.899260422080195e-06,
135
+ "loss": 0.6872,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.12170385395537525,
140
+ "grad_norm": 0.23987820744514465,
141
+ "learning_rate": 4.884249269253309e-06,
142
+ "loss": 0.6438,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.12810931995302657,
147
+ "grad_norm": 0.28527575731277466,
148
+ "learning_rate": 4.868222320003731e-06,
149
+ "loss": 0.656,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.13451478595067792,
154
+ "grad_norm": 0.25415557622909546,
155
+ "learning_rate": 4.851186402525946e-06,
156
+ "loss": 0.6562,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.14092025194832924,
161
+ "grad_norm": 0.21308082342147827,
162
+ "learning_rate": 4.8331487748798636e-06,
163
+ "loss": 0.6569,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.14732571794598057,
168
+ "grad_norm": 0.23867692053318024,
169
+ "learning_rate": 4.814117121898554e-06,
170
+ "loss": 0.6158,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.1537311839436319,
175
+ "grad_norm": 0.23583965003490448,
176
+ "learning_rate": 4.794099551914173e-06,
177
+ "loss": 0.6084,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.16013664994128324,
182
+ "grad_norm": 0.22881825268268585,
183
+ "learning_rate": 4.773104593303449e-06,
184
+ "loss": 0.6778,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.16654211593893456,
189
+ "grad_norm": 0.24278834462165833,
190
+ "learning_rate": 4.751141190854214e-06,
191
+ "loss": 0.6071,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.17294758193658588,
196
+ "grad_norm": 0.2911915183067322,
197
+ "learning_rate": 4.728218701954525e-06,
198
+ "loss": 0.6543,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.1793530479342372,
203
+ "grad_norm": 0.2795209586620331,
204
+ "learning_rate": 4.704346892606001e-06,
205
+ "loss": 0.5956,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.18575851393188855,
210
+ "grad_norm": 0.25558847188949585,
211
+ "learning_rate": 4.6795359332630694e-06,
212
+ "loss": 0.6395,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.19216397992953987,
217
+ "grad_norm": 0.2465032935142517,
218
+ "learning_rate": 4.653796394499904e-06,
219
+ "loss": 0.6136,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.1985694459271912,
224
+ "grad_norm": 0.244729146361351,
225
+ "learning_rate": 4.627139242506882e-06,
226
+ "loss": 0.6046,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.20497491192484255,
231
+ "grad_norm": 0.2569523751735687,
232
+ "learning_rate": 4.599575834418505e-06,
233
+ "loss": 0.6483,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.21138037792249387,
238
+ "grad_norm": 0.29486870765686035,
239
+ "learning_rate": 4.571117913474749e-06,
240
+ "loss": 0.6034,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.2177858439201452,
245
+ "grad_norm": 0.26274922490119934,
246
+ "learning_rate": 4.541777604017924e-06,
247
+ "loss": 0.5834,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.2241913099177965,
252
+ "grad_norm": 0.2968301773071289,
253
+ "learning_rate": 4.511567406327162e-06,
254
+ "loss": 0.6063,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.23059677591544786,
259
+ "grad_norm": 0.301880419254303,
260
+ "learning_rate": 4.480500191292744e-06,
261
+ "loss": 0.5965,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.23700224191309918,
266
+ "grad_norm": 0.27574408054351807,
267
+ "learning_rate": 4.448589194932521e-06,
268
+ "loss": 0.5959,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.2434077079107505,
273
+ "grad_norm": 0.25683072209358215,
274
+ "learning_rate": 4.415848012752789e-06,
275
+ "loss": 0.5764,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.24981317390840183,
280
+ "grad_norm": 0.3023504912853241,
281
+ "learning_rate": 4.38229059395599e-06,
282
+ "loss": 0.6013,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.25621863990605315,
287
+ "grad_norm": 0.2837856113910675,
288
+ "learning_rate": 4.347931235497738e-06,
289
+ "loss": 0.6044,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.2626241059037045,
294
+ "grad_norm": 0.29550132155418396,
295
+ "learning_rate": 4.312784575995669e-06,
296
+ "loss": 0.5866,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.26902957190135585,
301
+ "grad_norm": 0.28646326065063477,
302
+ "learning_rate": 4.276865589492747e-06,
303
+ "loss": 0.5838,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.27543503789900714,
308
+ "grad_norm": 0.3569891154766083,
309
+ "learning_rate": 4.240189579077649e-06,
310
+ "loss": 0.5701,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.2818405038966585,
315
+ "grad_norm": 0.33763790130615234,
316
+ "learning_rate": 4.202772170364969e-06,
317
+ "loss": 0.5759,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.2882459698943098,
322
+ "grad_norm": 0.245514377951622,
323
+ "learning_rate": 4.164629304838012e-06,
324
+ "loss": 0.5694,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.29465143589196113,
329
+ "grad_norm": 0.2917734682559967,
330
+ "learning_rate": 4.125777233057007e-06,
331
+ "loss": 0.5944,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.3010569018896125,
336
+ "grad_norm": 0.2828243374824524,
337
+ "learning_rate": 4.086232507735648e-06,
338
+ "loss": 0.5717,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.3074623678872638,
343
+ "grad_norm": 0.38584598898887634,
344
+ "learning_rate": 4.0460119766889e-06,
345
+ "loss": 0.5931,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.3138678338849151,
350
+ "grad_norm": 0.36006131768226624,
351
+ "learning_rate": 4.005132775655076e-06,
352
+ "loss": 0.5564,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.3202732998825665,
357
+ "grad_norm": 0.372942179441452,
358
+ "learning_rate": 3.963612320995257e-06,
359
+ "loss": 0.6025,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.32667876588021777,
364
+ "grad_norm": 0.28577810525894165,
365
+ "learning_rate": 3.921468302273137e-06,
366
+ "loss": 0.5469,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.3330842318778691,
371
+ "grad_norm": 0.3417142331600189,
372
+ "learning_rate": 3.8787186747184826e-06,
373
+ "loss": 0.5342,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.33948969787552047,
378
+ "grad_norm": 0.35277873277664185,
379
+ "learning_rate": 3.8353816515774115e-06,
380
+ "loss": 0.5531,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.34589516387317176,
385
+ "grad_norm": 0.2886194586753845,
386
+ "learning_rate": 3.79147569635273e-06,
387
+ "loss": 0.5431,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.3523006298708231,
392
+ "grad_norm": 0.29417017102241516,
393
+ "learning_rate": 3.747019514937663e-06,
394
+ "loss": 0.5826,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.3587060958684744,
399
+ "grad_norm": 0.3237856924533844,
400
+ "learning_rate": 3.70203204764631e-06,
401
+ "loss": 0.5689,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.36511156186612576,
406
+ "grad_norm": 0.3846990168094635,
407
+ "learning_rate": 3.6565324611442234e-06,
408
+ "loss": 0.5763,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.3715170278637771,
413
+ "grad_norm": 0.2781718969345093,
414
+ "learning_rate": 3.6105401402825595e-06,
415
+ "loss": 0.5549,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.3779224938614284,
420
+ "grad_norm": 0.2733434736728668,
421
+ "learning_rate": 3.5640746798392657e-06,
422
+ "loss": 0.5967,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.38432795985907975,
427
+ "grad_norm": 0.34851792454719543,
428
+ "learning_rate": 3.5171558761708334e-06,
429
+ "loss": 0.5543,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.3907334258567311,
434
+ "grad_norm": 0.34361544251441956,
435
+ "learning_rate": 3.469803718778166e-06,
436
+ "loss": 0.5519,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.3971388918543824,
441
+ "grad_norm": 0.2903674244880676,
442
+ "learning_rate": 3.4220383817901625e-06,
443
+ "loss": 0.562,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.40354435785203374,
448
+ "grad_norm": 0.31230857968330383,
449
+ "learning_rate": 3.3738802153686414e-06,
450
+ "loss": 0.5537,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.4099498238496851,
455
+ "grad_norm": 0.31388580799102783,
456
+ "learning_rate": 3.3253497370382605e-06,
457
+ "loss": 0.5551,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.4163552898473364,
462
+ "grad_norm": 0.32741594314575195,
463
+ "learning_rate": 3.2764676229451397e-06,
464
+ "loss": 0.5498,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.42276075584498773,
469
+ "grad_norm": 0.2511857748031616,
470
+ "learning_rate": 3.227254699047904e-06,
471
+ "loss": 0.5511,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.42916622184263903,
476
+ "grad_norm": 0.3877544105052948,
477
+ "learning_rate": 3.177731932244892e-06,
478
+ "loss": 0.5485,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.4355716878402904,
483
+ "grad_norm": 0.3445497751235962,
484
+ "learning_rate": 3.127920421441327e-06,
485
+ "loss": 0.5639,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.4419771538379417,
490
+ "grad_norm": 0.3347369432449341,
491
+ "learning_rate": 3.077841388560243e-06,
492
+ "loss": 0.5745,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.448382619835593,
497
+ "grad_norm": 0.36205726861953735,
498
+ "learning_rate": 3.0275161695009975e-06,
499
+ "loss": 0.5658,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.45478808583324437,
504
+ "grad_norm": 0.35722121596336365,
505
+ "learning_rate": 2.9769662050492276e-06,
506
+ "loss": 0.5479,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.4611935518308957,
511
+ "grad_norm": 0.35634711384773254,
512
+ "learning_rate": 2.926213031742125e-06,
513
+ "loss": 0.5595,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 0.467599017828547,
518
+ "grad_norm": 0.32853105664253235,
519
+ "learning_rate": 2.8752782726929045e-06,
520
+ "loss": 0.5429,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 0.47400448382619836,
525
+ "grad_norm": 0.3939530551433563,
526
+ "learning_rate": 2.8241836283784026e-06,
527
+ "loss": 0.531,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 0.48040994982384966,
532
+ "grad_norm": 0.3002113699913025,
533
+ "learning_rate": 2.7729508673936972e-06,
534
+ "loss": 0.5596,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 0.486815415821501,
539
+ "grad_norm": 0.3216375708580017,
540
+ "learning_rate": 2.721601817177725e-06,
541
+ "loss": 0.5292,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 0.49322088181915236,
546
+ "grad_norm": 0.3263518810272217,
547
+ "learning_rate": 2.6701583547138165e-06,
548
+ "loss": 0.5684,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 0.49962634781680365,
553
+ "grad_norm": 0.3253946900367737,
554
+ "learning_rate": 2.618642397209126e-06,
555
+ "loss": 0.5264,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 0.5060318138144551,
560
+ "grad_norm": 0.3231858015060425,
561
+ "learning_rate": 2.567075892756924e-06,
562
+ "loss": 0.5448,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 0.5124372798121063,
567
+ "grad_norm": 0.36590418219566345,
568
+ "learning_rate": 2.5154808109857367e-06,
569
+ "loss": 0.5248,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 0.5188427458097576,
574
+ "grad_norm": 0.3773280084133148,
575
+ "learning_rate": 2.4638791336992967e-06,
576
+ "loss": 0.5505,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 0.525248211807409,
581
+ "grad_norm": 0.3829450309276581,
582
+ "learning_rate": 2.4122928455113233e-06,
583
+ "loss": 0.5466,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 0.5316536778050603,
588
+ "grad_norm": 0.3306972086429596,
589
+ "learning_rate": 2.360743924479093e-06,
590
+ "loss": 0.5721,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 0.5380591438027117,
595
+ "grad_norm": 0.32845625281333923,
596
+ "learning_rate": 2.3092543327398083e-06,
597
+ "loss": 0.5177,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 0.5444646098003629,
602
+ "grad_norm": 0.3088594079017639,
603
+ "learning_rate": 2.2578460071537512e-06,
604
+ "loss": 0.5575,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 0.5508700757980143,
609
+ "grad_norm": 0.3912436366081238,
610
+ "learning_rate": 2.2065408499582e-06,
611
+ "loss": 0.561,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 0.5572755417956656,
616
+ "grad_norm": 0.3839537799358368,
617
+ "learning_rate": 2.155360719436102e-06,
618
+ "loss": 0.526,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 0.563681007793317,
623
+ "grad_norm": 0.3676234185695648,
624
+ "learning_rate": 2.1043274206034727e-06,
625
+ "loss": 0.541,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 0.5700864737909683,
630
+ "grad_norm": 0.368198424577713,
631
+ "learning_rate": 2.0534626959194816e-06,
632
+ "loss": 0.5212,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 0.5764919397886196,
637
+ "grad_norm": 0.34693998098373413,
638
+ "learning_rate": 2.002788216023203e-06,
639
+ "loss": 0.5462,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 0.5828974057862709,
644
+ "grad_norm": 0.37934619188308716,
645
+ "learning_rate": 1.9523255705009558e-06,
646
+ "loss": 0.5423,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 0.5893028717839223,
651
+ "grad_norm": 0.3458510637283325,
652
+ "learning_rate": 1.902096258688174e-06,
653
+ "loss": 0.4889,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 0.5957083377815736,
658
+ "grad_norm": 0.33206406235694885,
659
+ "learning_rate": 1.8521216805097358e-06,
660
+ "loss": 0.5378,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 0.602113803779225,
665
+ "grad_norm": 0.29139187932014465,
666
+ "learning_rate": 1.8024231273626424e-06,
667
+ "loss": 0.5444,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 0.6085192697768763,
672
+ "grad_norm": 0.3665342926979065,
673
+ "learning_rate": 1.7530217730449312e-06,
674
+ "loss": 0.5276,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 0.6149247357745276,
679
+ "grad_norm": 0.32149678468704224,
680
+ "learning_rate": 1.7039386647346975e-06,
681
+ "loss": 0.5117,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 0.6213302017721789,
686
+ "grad_norm": 0.30389899015426636,
687
+ "learning_rate": 1.6551947140230568e-06,
688
+ "loss": 0.5573,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 0.6277356677698303,
693
+ "grad_norm": 0.3890632688999176,
694
+ "learning_rate": 1.6068106880048747e-06,
695
+ "loss": 0.5395,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 0.6341411337674816,
700
+ "grad_norm": 0.36464181542396545,
701
+ "learning_rate": 1.5588072004310634e-06,
702
+ "loss": 0.5497,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 0.640546599765133,
707
+ "grad_norm": 0.32058826088905334,
708
+ "learning_rate": 1.5112047029262e-06,
709
+ "loss": 0.5377,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 0.6469520657627842,
714
+ "grad_norm": 0.280649870634079,
715
+ "learning_rate": 1.4640234762752248e-06,
716
+ "loss": 0.5349,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 0.6533575317604355,
721
+ "grad_norm": 0.36669427156448364,
722
+ "learning_rate": 1.4172836217829267e-06,
723
+ "loss": 0.539,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 0.6597629977580869,
728
+ "grad_norm": 0.3747427463531494,
729
+ "learning_rate": 1.3710050527098867e-06,
730
+ "loss": 0.5582,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 0.6661684637557382,
735
+ "grad_norm": 0.3354856073856354,
736
+ "learning_rate": 1.3252074857885453e-06,
737
+ "loss": 0.5512,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 0.6725739297533896,
742
+ "grad_norm": 0.3852190673351288,
743
+ "learning_rate": 1.2799104328229928e-06,
744
+ "loss": 0.5216,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 0.6789793957510409,
749
+ "grad_norm": 0.3479975759983063,
750
+ "learning_rate": 1.2351331923760743e-06,
751
+ "loss": 0.518,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 0.6853848617486922,
756
+ "grad_norm": 0.37335509061813354,
757
+ "learning_rate": 1.1908948415473418e-06,
758
+ "loss": 0.5203,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 0.6917903277463435,
763
+ "grad_norm": 0.4034595489501953,
764
+ "learning_rate": 1.1472142278453582e-06,
765
+ "loss": 0.5157,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 0.6981957937439949,
770
+ "grad_norm": 0.2966196537017822,
771
+ "learning_rate": 1.1041099611578177e-06,
772
+ "loss": 0.541,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 0.7046012597416462,
777
+ "grad_norm": 0.3616897463798523,
778
+ "learning_rate": 1.0616004058229084e-06,
779
+ "loss": 0.5254,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 0.7110067257392976,
784
+ "grad_norm": 0.3452332317829132,
785
+ "learning_rate": 1.0197036728052847e-06,
786
+ "loss": 0.5543,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 0.7174121917369488,
791
+ "grad_norm": 0.3313845694065094,
792
+ "learning_rate": 9.784376119799851e-07,
793
+ "loss": 0.5294,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 0.7238176577346002,
798
+ "grad_norm": 0.37989768385887146,
799
+ "learning_rate": 9.378198045275968e-07,
800
+ "loss": 0.5411,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 0.7302231237322515,
805
+ "grad_norm": 0.3642790913581848,
806
+ "learning_rate": 8.97867555443886e-07,
807
+ "loss": 0.5186,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 0.7366285897299029,
812
+ "grad_norm": 0.369183748960495,
813
+ "learning_rate": 8.585978861670958e-07,
814
+ "loss": 0.5189,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 0.7430340557275542,
819
+ "grad_norm": 0.3428362011909485,
820
+ "learning_rate": 8.200275273260611e-07,
821
+ "loss": 0.5326,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 0.7494395217252056,
826
+ "grad_norm": 0.33693212270736694,
827
+ "learning_rate": 7.821729116122126e-07,
828
+ "loss": 0.5417,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 0.7558449877228568,
833
+ "grad_norm": 0.35541847348213196,
834
+ "learning_rate": 7.450501667785146e-07,
835
+ "loss": 0.531,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 0.7622504537205081,
840
+ "grad_norm": 0.3545955717563629,
841
+ "learning_rate": 7.086751087683297e-07,
842
+ "loss": 0.5371,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 0.7686559197181595,
847
+ "grad_norm": 0.369098424911499,
848
+ "learning_rate": 6.730632349771193e-07,
849
+ "loss": 0.5444,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 0.7750613857158108,
854
+ "grad_norm": 0.395386666059494,
855
+ "learning_rate": 6.3822971764986e-07,
856
+ "loss": 0.5207,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 0.7814668517134622,
861
+ "grad_norm": 0.3929295241832733,
862
+ "learning_rate": 6.041893974169963e-07,
863
+ "loss": 0.5223,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 0.7878723177111134,
868
+ "grad_norm": 0.38200634717941284,
869
+ "learning_rate": 5.709567769716678e-07,
870
+ "loss": 0.5346,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 0.7942777837087648,
875
+ "grad_norm": 0.35260388255119324,
876
+ "learning_rate": 5.385460148909169e-07,
877
+ "loss": 0.5106,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 0.8006832497064161,
882
+ "grad_norm": 0.36902984976768494,
883
+ "learning_rate": 5.069709196035011e-07,
884
+ "loss": 0.5333,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 0.8070887157040675,
889
+ "grad_norm": 0.36749160289764404,
890
+ "learning_rate": 4.762449435068914e-07,
891
+ "loss": 0.5197,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 0.8134941817017188,
896
+ "grad_norm": 0.37014660239219666,
897
+ "learning_rate": 4.4638117723595054e-07,
898
+ "loss": 0.5492,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 0.8198996476993702,
903
+ "grad_norm": 0.3781520426273346,
904
+ "learning_rate": 4.173923440857358e-07,
905
+ "loss": 0.5365,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 0.8263051136970214,
910
+ "grad_norm": 0.33049196004867554,
911
+ "learning_rate": 3.892907945908128e-07,
912
+ "loss": 0.5163,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 0.8327105796946728,
917
+ "grad_norm": 0.40030181407928467,
918
+ "learning_rate": 3.6208850126337595e-07,
919
+ "loss": 0.5111,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 0.8391160456923241,
924
+ "grad_norm": 0.3238008916378021,
925
+ "learning_rate": 3.357970534924229e-07,
926
+ "loss": 0.544,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 0.8455215116899755,
931
+ "grad_norm": 0.3207038938999176,
932
+ "learning_rate": 3.104276526061617e-07,
933
+ "loss": 0.5242,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 0.8519269776876268,
938
+ "grad_norm": 0.38148337602615356,
939
+ "learning_rate": 2.859911070997437e-07,
940
+ "loss": 0.5358,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 0.8583324436852781,
945
+ "grad_norm": 0.44874271750450134,
946
+ "learning_rate": 2.624978280303628e-07,
947
+ "loss": 0.5347,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 0.8647379096829294,
952
+ "grad_norm": 0.3957948684692383,
953
+ "learning_rate": 2.3995782458168276e-07,
954
+ "loss": 0.5401,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 0.8711433756805808,
959
+ "grad_norm": 0.398444265127182,
960
+ "learning_rate": 2.1838069979947945e-07,
961
+ "loss": 0.524,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 0.8775488416782321,
966
+ "grad_norm": 0.37134161591529846,
967
+ "learning_rate": 1.9777564650031112e-07,
968
+ "loss": 0.535,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 0.8839543076758835,
973
+ "grad_norm": 0.37950778007507324,
974
+ "learning_rate": 1.7815144335497524e-07,
975
+ "loss": 0.5358,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 0.8903597736735348,
980
+ "grad_norm": 0.4200168251991272,
981
+ "learning_rate": 1.5951645114839875e-07,
982
+ "loss": 0.5234,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 0.896765239671186,
987
+ "grad_norm": 0.3997882008552551,
988
+ "learning_rate": 1.4187860921757252e-07,
989
+ "loss": 0.5437,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 0.9031707056688374,
994
+ "grad_norm": 0.405408650636673,
995
+ "learning_rate": 1.2524543206904188e-07,
996
+ "loss": 0.5443,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 0.9095761716664887,
1001
+ "grad_norm": 0.368826299905777,
1002
+ "learning_rate": 1.0962400617738872e-07,
1003
+ "loss": 0.564,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 0.9159816376641401,
1008
+ "grad_norm": 0.41221150755882263,
1009
+ "learning_rate": 9.502098696608147e-08,
1010
+ "loss": 0.5288,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 0.9223871036617914,
1015
+ "grad_norm": 0.30681097507476807,
1016
+ "learning_rate": 8.144259597196308e-08,
1017
+ "loss": 0.5356,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 0.9287925696594427,
1022
+ "grad_norm": 0.3287171423435211,
1023
+ "learning_rate": 6.889461819460485e-08,
1024
+ "loss": 0.5228,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 0.935198035657094,
1029
+ "grad_norm": 0.39335137605667114,
1030
+ "learning_rate": 5.738239963163472e-08,
1031
+ "loss": 0.5102,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 0.9416035016547454,
1036
+ "grad_norm": 0.5197286605834961,
1037
+ "learning_rate": 4.691084500110521e-08,
1038
+ "loss": 0.5134,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 0.9480089676523967,
1043
+ "grad_norm": 0.37825560569763184,
1044
+ "learning_rate": 3.748441565186583e-08,
1045
+ "loss": 0.495,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 0.9544144336500481,
1050
+ "grad_norm": 0.39631250500679016,
1051
+ "learning_rate": 2.910712766282908e-08,
1052
+ "loss": 0.5227,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 0.9608198996476993,
1057
+ "grad_norm": 0.40286198258399963,
1058
+ "learning_rate": 2.178255013194075e-08,
1059
+ "loss": 0.5142,
1060
+ "step": 750
1061
+ }
1062
+ ],
1063
+ "logging_steps": 5,
1064
+ "max_steps": 781,
1065
+ "num_input_tokens_seen": 0,
1066
+ "num_train_epochs": 1,
1067
+ "save_steps": 50,
1068
+ "stateful_callbacks": {
1069
+ "TrainerControl": {
1070
+ "args": {
1071
+ "should_epoch_stop": false,
1072
+ "should_evaluate": false,
1073
+ "should_log": false,
1074
+ "should_save": true,
1075
+ "should_training_stop": false
1076
+ },
1077
+ "attributes": {}
1078
+ }
1079
+ },
1080
+ "total_flos": 1.378422924703187e+18,
1081
+ "train_batch_size": 1,
1082
+ "trial_name": null,
1083
+ "trial_params": null
1084
+ }
checkpoint-750/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6ab62dc3c7f9559b1b95a7ccd05854841e1eab0bda7a9f430097903d36e75bf
3
+ size 6417
checkpoint-750/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-781/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/Qwen3-8B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/Qwen3-8B
7
+ - llama-factory
8
+ - lora
9
+ - transformers
10
+ - unsloth
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.17.1
checkpoint-781/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-8B",
9
+ "bias": "none",
10
+ "corda_config": null,
11
+ "eva_config": null,
12
+ "exclude_modules": null,
13
+ "fan_in_fan_out": false,
14
+ "inference_mode": true,
15
+ "init_lora_weights": true,
16
+ "layer_replication": null,
17
+ "layers_pattern": null,
18
+ "layers_to_transform": null,
19
+ "loftq_config": {},
20
+ "lora_alpha": 128,
21
+ "lora_bias": false,
22
+ "lora_dropout": 0.0,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "gate_proj",
33
+ "o_proj",
34
+ "v_proj",
35
+ "k_proj",
36
+ "q_proj",
37
+ "up_proj",
38
+ "down_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-781/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d49a26e0f493334f0e4e5acd00b3036faf9c449af09b0cf839d72bd9c22af001
3
+ size 698419728
checkpoint-781/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-781/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
checkpoint-781/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-781/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9059c42e58cc18f4f8db36844e008e233383dfc31e621b6c3e4bdd15b1cc9033
3
+ size 1397129547
checkpoint-781/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c19bab1174704a4a4441475683bf1270277af15d2e2c95e964789128e482c4
3
+ size 14645
checkpoint-781/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:554b1b2de4d1cd2760e748878b010c59cfc2ea5e177b197c9e6e1a6e7b08bd6d
3
+ size 1465
checkpoint-781/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": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-781/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-781/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": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
checkpoint-781/trainer_state.json ADDED
@@ -0,0 +1,1126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 25,
7
+ "global_step": 781,
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.0064054659976513295,
14
+ "grad_norm": 1.095150351524353,
15
+ "learning_rate": 1.0000000000000002e-06,
16
+ "loss": 0.9763,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.012810931995302659,
21
+ "grad_norm": 1.0511373281478882,
22
+ "learning_rate": 2.25e-06,
23
+ "loss": 0.9023,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.019216397992953986,
28
+ "grad_norm": 0.817418098449707,
29
+ "learning_rate": 3.5e-06,
30
+ "loss": 0.9288,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.025621863990605318,
35
+ "grad_norm": 0.624769926071167,
36
+ "learning_rate": 4.75e-06,
37
+ "loss": 0.8766,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.03202732998825664,
42
+ "grad_norm": 0.5237262845039368,
43
+ "learning_rate": 4.999659159998194e-06,
44
+ "loss": 0.8411,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.03843279598590797,
49
+ "grad_norm": 0.46350979804992676,
50
+ "learning_rate": 4.998274656771894e-06,
51
+ "loss": 0.8132,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.0448382619835593,
56
+ "grad_norm": 0.3592084050178528,
57
+ "learning_rate": 4.995825777227236e-06,
58
+ "loss": 0.7663,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.051243727981210636,
63
+ "grad_norm": 0.34569790959358215,
64
+ "learning_rate": 4.992313564696022e-06,
65
+ "loss": 0.7355,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.057649193978861965,
70
+ "grad_norm": 0.2865957021713257,
71
+ "learning_rate": 4.9877395155372815e-06,
72
+ "loss": 0.7632,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.06405465997651329,
77
+ "grad_norm": 0.25277993083000183,
78
+ "learning_rate": 4.982105578499759e-06,
79
+ "loss": 0.7539,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.07046012597416462,
84
+ "grad_norm": 0.24113819003105164,
85
+ "learning_rate": 4.975414153891664e-06,
86
+ "loss": 0.7322,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.07686559197181594,
91
+ "grad_norm": 0.2370101362466812,
92
+ "learning_rate": 4.967668092558024e-06,
93
+ "loss": 0.7242,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.08327105796946728,
98
+ "grad_norm": 0.23438391089439392,
99
+ "learning_rate": 4.9588706946661066e-06,
100
+ "loss": 0.6943,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.0896765239671186,
105
+ "grad_norm": 0.24512864649295807,
106
+ "learning_rate": 4.949025708299395e-06,
107
+ "loss": 0.6866,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.09608198996476994,
112
+ "grad_norm": 0.22728285193443298,
113
+ "learning_rate": 4.93813732786074e-06,
114
+ "loss": 0.6658,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.10248745596242127,
119
+ "grad_norm": 0.2585676610469818,
120
+ "learning_rate": 4.926210192285359e-06,
121
+ "loss": 0.7284,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.1088929219600726,
126
+ "grad_norm": 0.2257288247346878,
127
+ "learning_rate": 4.913249383064438e-06,
128
+ "loss": 0.6844,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.11529838795772393,
133
+ "grad_norm": 0.2544812262058258,
134
+ "learning_rate": 4.899260422080195e-06,
135
+ "loss": 0.6872,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.12170385395537525,
140
+ "grad_norm": 0.23987820744514465,
141
+ "learning_rate": 4.884249269253309e-06,
142
+ "loss": 0.6438,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.12810931995302657,
147
+ "grad_norm": 0.28527575731277466,
148
+ "learning_rate": 4.868222320003731e-06,
149
+ "loss": 0.656,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.13451478595067792,
154
+ "grad_norm": 0.25415557622909546,
155
+ "learning_rate": 4.851186402525946e-06,
156
+ "loss": 0.6562,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.14092025194832924,
161
+ "grad_norm": 0.21308082342147827,
162
+ "learning_rate": 4.8331487748798636e-06,
163
+ "loss": 0.6569,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.14732571794598057,
168
+ "grad_norm": 0.23867692053318024,
169
+ "learning_rate": 4.814117121898554e-06,
170
+ "loss": 0.6158,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.1537311839436319,
175
+ "grad_norm": 0.23583965003490448,
176
+ "learning_rate": 4.794099551914173e-06,
177
+ "loss": 0.6084,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.16013664994128324,
182
+ "grad_norm": 0.22881825268268585,
183
+ "learning_rate": 4.773104593303449e-06,
184
+ "loss": 0.6778,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.16654211593893456,
189
+ "grad_norm": 0.24278834462165833,
190
+ "learning_rate": 4.751141190854214e-06,
191
+ "loss": 0.6071,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.17294758193658588,
196
+ "grad_norm": 0.2911915183067322,
197
+ "learning_rate": 4.728218701954525e-06,
198
+ "loss": 0.6543,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.1793530479342372,
203
+ "grad_norm": 0.2795209586620331,
204
+ "learning_rate": 4.704346892606001e-06,
205
+ "loss": 0.5956,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.18575851393188855,
210
+ "grad_norm": 0.25558847188949585,
211
+ "learning_rate": 4.6795359332630694e-06,
212
+ "loss": 0.6395,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.19216397992953987,
217
+ "grad_norm": 0.2465032935142517,
218
+ "learning_rate": 4.653796394499904e-06,
219
+ "loss": 0.6136,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.1985694459271912,
224
+ "grad_norm": 0.244729146361351,
225
+ "learning_rate": 4.627139242506882e-06,
226
+ "loss": 0.6046,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.20497491192484255,
231
+ "grad_norm": 0.2569523751735687,
232
+ "learning_rate": 4.599575834418505e-06,
233
+ "loss": 0.6483,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.21138037792249387,
238
+ "grad_norm": 0.29486870765686035,
239
+ "learning_rate": 4.571117913474749e-06,
240
+ "loss": 0.6034,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.2177858439201452,
245
+ "grad_norm": 0.26274922490119934,
246
+ "learning_rate": 4.541777604017924e-06,
247
+ "loss": 0.5834,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.2241913099177965,
252
+ "grad_norm": 0.2968301773071289,
253
+ "learning_rate": 4.511567406327162e-06,
254
+ "loss": 0.6063,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.23059677591544786,
259
+ "grad_norm": 0.301880419254303,
260
+ "learning_rate": 4.480500191292744e-06,
261
+ "loss": 0.5965,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.23700224191309918,
266
+ "grad_norm": 0.27574408054351807,
267
+ "learning_rate": 4.448589194932521e-06,
268
+ "loss": 0.5959,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.2434077079107505,
273
+ "grad_norm": 0.25683072209358215,
274
+ "learning_rate": 4.415848012752789e-06,
275
+ "loss": 0.5764,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.24981317390840183,
280
+ "grad_norm": 0.3023504912853241,
281
+ "learning_rate": 4.38229059395599e-06,
282
+ "loss": 0.6013,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.25621863990605315,
287
+ "grad_norm": 0.2837856113910675,
288
+ "learning_rate": 4.347931235497738e-06,
289
+ "loss": 0.6044,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.2626241059037045,
294
+ "grad_norm": 0.29550132155418396,
295
+ "learning_rate": 4.312784575995669e-06,
296
+ "loss": 0.5866,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.26902957190135585,
301
+ "grad_norm": 0.28646326065063477,
302
+ "learning_rate": 4.276865589492747e-06,
303
+ "loss": 0.5838,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.27543503789900714,
308
+ "grad_norm": 0.3569891154766083,
309
+ "learning_rate": 4.240189579077649e-06,
310
+ "loss": 0.5701,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.2818405038966585,
315
+ "grad_norm": 0.33763790130615234,
316
+ "learning_rate": 4.202772170364969e-06,
317
+ "loss": 0.5759,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.2882459698943098,
322
+ "grad_norm": 0.245514377951622,
323
+ "learning_rate": 4.164629304838012e-06,
324
+ "loss": 0.5694,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.29465143589196113,
329
+ "grad_norm": 0.2917734682559967,
330
+ "learning_rate": 4.125777233057007e-06,
331
+ "loss": 0.5944,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.3010569018896125,
336
+ "grad_norm": 0.2828243374824524,
337
+ "learning_rate": 4.086232507735648e-06,
338
+ "loss": 0.5717,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.3074623678872638,
343
+ "grad_norm": 0.38584598898887634,
344
+ "learning_rate": 4.0460119766889e-06,
345
+ "loss": 0.5931,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.3138678338849151,
350
+ "grad_norm": 0.36006131768226624,
351
+ "learning_rate": 4.005132775655076e-06,
352
+ "loss": 0.5564,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.3202732998825665,
357
+ "grad_norm": 0.372942179441452,
358
+ "learning_rate": 3.963612320995257e-06,
359
+ "loss": 0.6025,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.32667876588021777,
364
+ "grad_norm": 0.28577810525894165,
365
+ "learning_rate": 3.921468302273137e-06,
366
+ "loss": 0.5469,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.3330842318778691,
371
+ "grad_norm": 0.3417142331600189,
372
+ "learning_rate": 3.8787186747184826e-06,
373
+ "loss": 0.5342,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.33948969787552047,
378
+ "grad_norm": 0.35277873277664185,
379
+ "learning_rate": 3.8353816515774115e-06,
380
+ "loss": 0.5531,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.34589516387317176,
385
+ "grad_norm": 0.2886194586753845,
386
+ "learning_rate": 3.79147569635273e-06,
387
+ "loss": 0.5431,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.3523006298708231,
392
+ "grad_norm": 0.29417017102241516,
393
+ "learning_rate": 3.747019514937663e-06,
394
+ "loss": 0.5826,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.3587060958684744,
399
+ "grad_norm": 0.3237856924533844,
400
+ "learning_rate": 3.70203204764631e-06,
401
+ "loss": 0.5689,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.36511156186612576,
406
+ "grad_norm": 0.3846990168094635,
407
+ "learning_rate": 3.6565324611442234e-06,
408
+ "loss": 0.5763,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.3715170278637771,
413
+ "grad_norm": 0.2781718969345093,
414
+ "learning_rate": 3.6105401402825595e-06,
415
+ "loss": 0.5549,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.3779224938614284,
420
+ "grad_norm": 0.2733434736728668,
421
+ "learning_rate": 3.5640746798392657e-06,
422
+ "loss": 0.5967,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.38432795985907975,
427
+ "grad_norm": 0.34851792454719543,
428
+ "learning_rate": 3.5171558761708334e-06,
429
+ "loss": 0.5543,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.3907334258567311,
434
+ "grad_norm": 0.34361544251441956,
435
+ "learning_rate": 3.469803718778166e-06,
436
+ "loss": 0.5519,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.3971388918543824,
441
+ "grad_norm": 0.2903674244880676,
442
+ "learning_rate": 3.4220383817901625e-06,
443
+ "loss": 0.562,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.40354435785203374,
448
+ "grad_norm": 0.31230857968330383,
449
+ "learning_rate": 3.3738802153686414e-06,
450
+ "loss": 0.5537,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.4099498238496851,
455
+ "grad_norm": 0.31388580799102783,
456
+ "learning_rate": 3.3253497370382605e-06,
457
+ "loss": 0.5551,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.4163552898473364,
462
+ "grad_norm": 0.32741594314575195,
463
+ "learning_rate": 3.2764676229451397e-06,
464
+ "loss": 0.5498,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.42276075584498773,
469
+ "grad_norm": 0.2511857748031616,
470
+ "learning_rate": 3.227254699047904e-06,
471
+ "loss": 0.5511,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.42916622184263903,
476
+ "grad_norm": 0.3877544105052948,
477
+ "learning_rate": 3.177731932244892e-06,
478
+ "loss": 0.5485,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.4355716878402904,
483
+ "grad_norm": 0.3445497751235962,
484
+ "learning_rate": 3.127920421441327e-06,
485
+ "loss": 0.5639,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.4419771538379417,
490
+ "grad_norm": 0.3347369432449341,
491
+ "learning_rate": 3.077841388560243e-06,
492
+ "loss": 0.5745,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.448382619835593,
497
+ "grad_norm": 0.36205726861953735,
498
+ "learning_rate": 3.0275161695009975e-06,
499
+ "loss": 0.5658,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.45478808583324437,
504
+ "grad_norm": 0.35722121596336365,
505
+ "learning_rate": 2.9769662050492276e-06,
506
+ "loss": 0.5479,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.4611935518308957,
511
+ "grad_norm": 0.35634711384773254,
512
+ "learning_rate": 2.926213031742125e-06,
513
+ "loss": 0.5595,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 0.467599017828547,
518
+ "grad_norm": 0.32853105664253235,
519
+ "learning_rate": 2.8752782726929045e-06,
520
+ "loss": 0.5429,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 0.47400448382619836,
525
+ "grad_norm": 0.3939530551433563,
526
+ "learning_rate": 2.8241836283784026e-06,
527
+ "loss": 0.531,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 0.48040994982384966,
532
+ "grad_norm": 0.3002113699913025,
533
+ "learning_rate": 2.7729508673936972e-06,
534
+ "loss": 0.5596,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 0.486815415821501,
539
+ "grad_norm": 0.3216375708580017,
540
+ "learning_rate": 2.721601817177725e-06,
541
+ "loss": 0.5292,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 0.49322088181915236,
546
+ "grad_norm": 0.3263518810272217,
547
+ "learning_rate": 2.6701583547138165e-06,
548
+ "loss": 0.5684,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 0.49962634781680365,
553
+ "grad_norm": 0.3253946900367737,
554
+ "learning_rate": 2.618642397209126e-06,
555
+ "loss": 0.5264,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 0.5060318138144551,
560
+ "grad_norm": 0.3231858015060425,
561
+ "learning_rate": 2.567075892756924e-06,
562
+ "loss": 0.5448,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 0.5124372798121063,
567
+ "grad_norm": 0.36590418219566345,
568
+ "learning_rate": 2.5154808109857367e-06,
569
+ "loss": 0.5248,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 0.5188427458097576,
574
+ "grad_norm": 0.3773280084133148,
575
+ "learning_rate": 2.4638791336992967e-06,
576
+ "loss": 0.5505,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 0.525248211807409,
581
+ "grad_norm": 0.3829450309276581,
582
+ "learning_rate": 2.4122928455113233e-06,
583
+ "loss": 0.5466,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 0.5316536778050603,
588
+ "grad_norm": 0.3306972086429596,
589
+ "learning_rate": 2.360743924479093e-06,
590
+ "loss": 0.5721,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 0.5380591438027117,
595
+ "grad_norm": 0.32845625281333923,
596
+ "learning_rate": 2.3092543327398083e-06,
597
+ "loss": 0.5177,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 0.5444646098003629,
602
+ "grad_norm": 0.3088594079017639,
603
+ "learning_rate": 2.2578460071537512e-06,
604
+ "loss": 0.5575,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 0.5508700757980143,
609
+ "grad_norm": 0.3912436366081238,
610
+ "learning_rate": 2.2065408499582e-06,
611
+ "loss": 0.561,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 0.5572755417956656,
616
+ "grad_norm": 0.3839537799358368,
617
+ "learning_rate": 2.155360719436102e-06,
618
+ "loss": 0.526,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 0.563681007793317,
623
+ "grad_norm": 0.3676234185695648,
624
+ "learning_rate": 2.1043274206034727e-06,
625
+ "loss": 0.541,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 0.5700864737909683,
630
+ "grad_norm": 0.368198424577713,
631
+ "learning_rate": 2.0534626959194816e-06,
632
+ "loss": 0.5212,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 0.5764919397886196,
637
+ "grad_norm": 0.34693998098373413,
638
+ "learning_rate": 2.002788216023203e-06,
639
+ "loss": 0.5462,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 0.5828974057862709,
644
+ "grad_norm": 0.37934619188308716,
645
+ "learning_rate": 1.9523255705009558e-06,
646
+ "loss": 0.5423,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 0.5893028717839223,
651
+ "grad_norm": 0.3458510637283325,
652
+ "learning_rate": 1.902096258688174e-06,
653
+ "loss": 0.4889,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 0.5957083377815736,
658
+ "grad_norm": 0.33206406235694885,
659
+ "learning_rate": 1.8521216805097358e-06,
660
+ "loss": 0.5378,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 0.602113803779225,
665
+ "grad_norm": 0.29139187932014465,
666
+ "learning_rate": 1.8024231273626424e-06,
667
+ "loss": 0.5444,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 0.6085192697768763,
672
+ "grad_norm": 0.3665342926979065,
673
+ "learning_rate": 1.7530217730449312e-06,
674
+ "loss": 0.5276,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 0.6149247357745276,
679
+ "grad_norm": 0.32149678468704224,
680
+ "learning_rate": 1.7039386647346975e-06,
681
+ "loss": 0.5117,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 0.6213302017721789,
686
+ "grad_norm": 0.30389899015426636,
687
+ "learning_rate": 1.6551947140230568e-06,
688
+ "loss": 0.5573,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 0.6277356677698303,
693
+ "grad_norm": 0.3890632688999176,
694
+ "learning_rate": 1.6068106880048747e-06,
695
+ "loss": 0.5395,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 0.6341411337674816,
700
+ "grad_norm": 0.36464181542396545,
701
+ "learning_rate": 1.5588072004310634e-06,
702
+ "loss": 0.5497,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 0.640546599765133,
707
+ "grad_norm": 0.32058826088905334,
708
+ "learning_rate": 1.5112047029262e-06,
709
+ "loss": 0.5377,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 0.6469520657627842,
714
+ "grad_norm": 0.280649870634079,
715
+ "learning_rate": 1.4640234762752248e-06,
716
+ "loss": 0.5349,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 0.6533575317604355,
721
+ "grad_norm": 0.36669427156448364,
722
+ "learning_rate": 1.4172836217829267e-06,
723
+ "loss": 0.539,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 0.6597629977580869,
728
+ "grad_norm": 0.3747427463531494,
729
+ "learning_rate": 1.3710050527098867e-06,
730
+ "loss": 0.5582,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 0.6661684637557382,
735
+ "grad_norm": 0.3354856073856354,
736
+ "learning_rate": 1.3252074857885453e-06,
737
+ "loss": 0.5512,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 0.6725739297533896,
742
+ "grad_norm": 0.3852190673351288,
743
+ "learning_rate": 1.2799104328229928e-06,
744
+ "loss": 0.5216,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 0.6789793957510409,
749
+ "grad_norm": 0.3479975759983063,
750
+ "learning_rate": 1.2351331923760743e-06,
751
+ "loss": 0.518,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 0.6853848617486922,
756
+ "grad_norm": 0.37335509061813354,
757
+ "learning_rate": 1.1908948415473418e-06,
758
+ "loss": 0.5203,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 0.6917903277463435,
763
+ "grad_norm": 0.4034595489501953,
764
+ "learning_rate": 1.1472142278453582e-06,
765
+ "loss": 0.5157,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 0.6981957937439949,
770
+ "grad_norm": 0.2966196537017822,
771
+ "learning_rate": 1.1041099611578177e-06,
772
+ "loss": 0.541,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 0.7046012597416462,
777
+ "grad_norm": 0.3616897463798523,
778
+ "learning_rate": 1.0616004058229084e-06,
779
+ "loss": 0.5254,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 0.7110067257392976,
784
+ "grad_norm": 0.3452332317829132,
785
+ "learning_rate": 1.0197036728052847e-06,
786
+ "loss": 0.5543,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 0.7174121917369488,
791
+ "grad_norm": 0.3313845694065094,
792
+ "learning_rate": 9.784376119799851e-07,
793
+ "loss": 0.5294,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 0.7238176577346002,
798
+ "grad_norm": 0.37989768385887146,
799
+ "learning_rate": 9.378198045275968e-07,
800
+ "loss": 0.5411,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 0.7302231237322515,
805
+ "grad_norm": 0.3642790913581848,
806
+ "learning_rate": 8.97867555443886e-07,
807
+ "loss": 0.5186,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 0.7366285897299029,
812
+ "grad_norm": 0.369183748960495,
813
+ "learning_rate": 8.585978861670958e-07,
814
+ "loss": 0.5189,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 0.7430340557275542,
819
+ "grad_norm": 0.3428362011909485,
820
+ "learning_rate": 8.200275273260611e-07,
821
+ "loss": 0.5326,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 0.7494395217252056,
826
+ "grad_norm": 0.33693212270736694,
827
+ "learning_rate": 7.821729116122126e-07,
828
+ "loss": 0.5417,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 0.7558449877228568,
833
+ "grad_norm": 0.35541847348213196,
834
+ "learning_rate": 7.450501667785146e-07,
835
+ "loss": 0.531,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 0.7622504537205081,
840
+ "grad_norm": 0.3545955717563629,
841
+ "learning_rate": 7.086751087683297e-07,
842
+ "loss": 0.5371,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 0.7686559197181595,
847
+ "grad_norm": 0.369098424911499,
848
+ "learning_rate": 6.730632349771193e-07,
849
+ "loss": 0.5444,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 0.7750613857158108,
854
+ "grad_norm": 0.395386666059494,
855
+ "learning_rate": 6.3822971764986e-07,
856
+ "loss": 0.5207,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 0.7814668517134622,
861
+ "grad_norm": 0.3929295241832733,
862
+ "learning_rate": 6.041893974169963e-07,
863
+ "loss": 0.5223,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 0.7878723177111134,
868
+ "grad_norm": 0.38200634717941284,
869
+ "learning_rate": 5.709567769716678e-07,
870
+ "loss": 0.5346,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 0.7942777837087648,
875
+ "grad_norm": 0.35260388255119324,
876
+ "learning_rate": 5.385460148909169e-07,
877
+ "loss": 0.5106,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 0.8006832497064161,
882
+ "grad_norm": 0.36902984976768494,
883
+ "learning_rate": 5.069709196035011e-07,
884
+ "loss": 0.5333,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 0.8070887157040675,
889
+ "grad_norm": 0.36749160289764404,
890
+ "learning_rate": 4.762449435068914e-07,
891
+ "loss": 0.5197,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 0.8134941817017188,
896
+ "grad_norm": 0.37014660239219666,
897
+ "learning_rate": 4.4638117723595054e-07,
898
+ "loss": 0.5492,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 0.8198996476993702,
903
+ "grad_norm": 0.3781520426273346,
904
+ "learning_rate": 4.173923440857358e-07,
905
+ "loss": 0.5365,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 0.8263051136970214,
910
+ "grad_norm": 0.33049196004867554,
911
+ "learning_rate": 3.892907945908128e-07,
912
+ "loss": 0.5163,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 0.8327105796946728,
917
+ "grad_norm": 0.40030181407928467,
918
+ "learning_rate": 3.6208850126337595e-07,
919
+ "loss": 0.5111,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 0.8391160456923241,
924
+ "grad_norm": 0.3238008916378021,
925
+ "learning_rate": 3.357970534924229e-07,
926
+ "loss": 0.544,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 0.8455215116899755,
931
+ "grad_norm": 0.3207038938999176,
932
+ "learning_rate": 3.104276526061617e-07,
933
+ "loss": 0.5242,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 0.8519269776876268,
938
+ "grad_norm": 0.38148337602615356,
939
+ "learning_rate": 2.859911070997437e-07,
940
+ "loss": 0.5358,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 0.8583324436852781,
945
+ "grad_norm": 0.44874271750450134,
946
+ "learning_rate": 2.624978280303628e-07,
947
+ "loss": 0.5347,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 0.8647379096829294,
952
+ "grad_norm": 0.3957948684692383,
953
+ "learning_rate": 2.3995782458168276e-07,
954
+ "loss": 0.5401,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 0.8711433756805808,
959
+ "grad_norm": 0.398444265127182,
960
+ "learning_rate": 2.1838069979947945e-07,
961
+ "loss": 0.524,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 0.8775488416782321,
966
+ "grad_norm": 0.37134161591529846,
967
+ "learning_rate": 1.9777564650031112e-07,
968
+ "loss": 0.535,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 0.8839543076758835,
973
+ "grad_norm": 0.37950778007507324,
974
+ "learning_rate": 1.7815144335497524e-07,
975
+ "loss": 0.5358,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 0.8903597736735348,
980
+ "grad_norm": 0.4200168251991272,
981
+ "learning_rate": 1.5951645114839875e-07,
982
+ "loss": 0.5234,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 0.896765239671186,
987
+ "grad_norm": 0.3997882008552551,
988
+ "learning_rate": 1.4187860921757252e-07,
989
+ "loss": 0.5437,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 0.9031707056688374,
994
+ "grad_norm": 0.405408650636673,
995
+ "learning_rate": 1.2524543206904188e-07,
996
+ "loss": 0.5443,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 0.9095761716664887,
1001
+ "grad_norm": 0.368826299905777,
1002
+ "learning_rate": 1.0962400617738872e-07,
1003
+ "loss": 0.564,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 0.9159816376641401,
1008
+ "grad_norm": 0.41221150755882263,
1009
+ "learning_rate": 9.502098696608147e-08,
1010
+ "loss": 0.5288,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 0.9223871036617914,
1015
+ "grad_norm": 0.30681097507476807,
1016
+ "learning_rate": 8.144259597196308e-08,
1017
+ "loss": 0.5356,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 0.9287925696594427,
1022
+ "grad_norm": 0.3287171423435211,
1023
+ "learning_rate": 6.889461819460485e-08,
1024
+ "loss": 0.5228,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 0.935198035657094,
1029
+ "grad_norm": 0.39335137605667114,
1030
+ "learning_rate": 5.738239963163472e-08,
1031
+ "loss": 0.5102,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 0.9416035016547454,
1036
+ "grad_norm": 0.5197286605834961,
1037
+ "learning_rate": 4.691084500110521e-08,
1038
+ "loss": 0.5134,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 0.9480089676523967,
1043
+ "grad_norm": 0.37825560569763184,
1044
+ "learning_rate": 3.748441565186583e-08,
1045
+ "loss": 0.495,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 0.9544144336500481,
1050
+ "grad_norm": 0.39631250500679016,
1051
+ "learning_rate": 2.910712766282908e-08,
1052
+ "loss": 0.5227,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 0.9608198996476993,
1057
+ "grad_norm": 0.40286198258399963,
1058
+ "learning_rate": 2.178255013194075e-08,
1059
+ "loss": 0.5142,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 0.9672253656453507,
1064
+ "grad_norm": 0.31852659583091736,
1065
+ "learning_rate": 1.5513803655587966e-08,
1066
+ "loss": 0.4985,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 0.973630831643002,
1071
+ "grad_norm": 0.3686765134334564,
1072
+ "learning_rate": 1.0303558999082974e-08,
1073
+ "loss": 0.5464,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 0.9800362976406534,
1078
+ "grad_norm": 0.3755616843700409,
1079
+ "learning_rate": 6.1540359588005416e-09,
1080
+ "loss": 0.5158,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 0.9864417636383047,
1085
+ "grad_norm": 0.31239190697669983,
1086
+ "learning_rate": 3.067002416444198e-09,
1087
+ "loss": 0.499,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 0.9928472296359561,
1092
+ "grad_norm": 0.3598840534687042,
1093
+ "learning_rate": 1.0437735858506715e-09,
1094
+ "loss": 0.5246,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 0.9992526956336073,
1099
+ "grad_norm": 0.3162603974342346,
1100
+ "learning_rate": 8.521145264978048e-11,
1101
+ "loss": 0.5619,
1102
+ "step": 780
1103
+ }
1104
+ ],
1105
+ "logging_steps": 5,
1106
+ "max_steps": 781,
1107
+ "num_input_tokens_seen": 0,
1108
+ "num_train_epochs": 1,
1109
+ "save_steps": 50,
1110
+ "stateful_callbacks": {
1111
+ "TrainerControl": {
1112
+ "args": {
1113
+ "should_epoch_stop": false,
1114
+ "should_evaluate": false,
1115
+ "should_log": false,
1116
+ "should_save": true,
1117
+ "should_training_stop": true
1118
+ },
1119
+ "attributes": {}
1120
+ }
1121
+ },
1122
+ "total_flos": 1.4329344655107686e+18,
1123
+ "train_batch_size": 1,
1124
+ "trial_name": null,
1125
+ "trial_params": null
1126
+ }