Checkpoint backup 2237
Browse files- .gitattributes +1 -0
- README.md +202 -0
- adapter_config.json +39 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +28 -0
- chat_template.jinja +6 -0
- merges.txt +0 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +240 -0
- trainer_state.json +422 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ 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 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: unsloth/Qwen3-8B-unsloth-bnb-4bit
|
3 |
+
library_name: peft
|
4 |
+
---
|
5 |
+
|
6 |
+
# Model Card for Model ID
|
7 |
+
|
8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
## Model Details
|
13 |
+
|
14 |
+
### Model Description
|
15 |
+
|
16 |
+
<!-- Provide a longer summary of what this model is. -->
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
- **Developed by:** [More Information Needed]
|
21 |
+
- **Funded by [optional]:** [More Information Needed]
|
22 |
+
- **Shared by [optional]:** [More Information Needed]
|
23 |
+
- **Model type:** [More Information Needed]
|
24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
25 |
+
- **License:** [More Information Needed]
|
26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
27 |
+
|
28 |
+
### Model Sources [optional]
|
29 |
+
|
30 |
+
<!-- Provide the basic links for the model. -->
|
31 |
+
|
32 |
+
- **Repository:** [More Information Needed]
|
33 |
+
- **Paper [optional]:** [More Information Needed]
|
34 |
+
- **Demo [optional]:** [More Information Needed]
|
35 |
+
|
36 |
+
## Uses
|
37 |
+
|
38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
39 |
+
|
40 |
+
### Direct Use
|
41 |
+
|
42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
43 |
+
|
44 |
+
[More Information Needed]
|
45 |
+
|
46 |
+
### Downstream Use [optional]
|
47 |
+
|
48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
49 |
+
|
50 |
+
[More Information Needed]
|
51 |
+
|
52 |
+
### Out-of-Scope Use
|
53 |
+
|
54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
55 |
+
|
56 |
+
[More Information Needed]
|
57 |
+
|
58 |
+
## Bias, Risks, and Limitations
|
59 |
+
|
60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
61 |
+
|
62 |
+
[More Information Needed]
|
63 |
+
|
64 |
+
### Recommendations
|
65 |
+
|
66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
67 |
+
|
68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
69 |
+
|
70 |
+
## How to Get Started with the Model
|
71 |
+
|
72 |
+
Use the code below to get started with the model.
|
73 |
+
|
74 |
+
[More Information Needed]
|
75 |
+
|
76 |
+
## Training Details
|
77 |
+
|
78 |
+
### Training Data
|
79 |
+
|
80 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
81 |
+
|
82 |
+
[More Information Needed]
|
83 |
+
|
84 |
+
### Training Procedure
|
85 |
+
|
86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
87 |
+
|
88 |
+
#### Preprocessing [optional]
|
89 |
+
|
90 |
+
[More Information Needed]
|
91 |
+
|
92 |
+
|
93 |
+
#### Training Hyperparameters
|
94 |
+
|
95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
96 |
+
|
97 |
+
#### Speeds, Sizes, Times [optional]
|
98 |
+
|
99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
100 |
+
|
101 |
+
[More Information Needed]
|
102 |
+
|
103 |
+
## Evaluation
|
104 |
+
|
105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
106 |
+
|
107 |
+
### Testing Data, Factors & Metrics
|
108 |
+
|
109 |
+
#### Testing Data
|
110 |
+
|
111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
112 |
+
|
113 |
+
[More Information Needed]
|
114 |
+
|
115 |
+
#### Factors
|
116 |
+
|
117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
118 |
+
|
119 |
+
[More Information Needed]
|
120 |
+
|
121 |
+
#### Metrics
|
122 |
+
|
123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
124 |
+
|
125 |
+
[More Information Needed]
|
126 |
+
|
127 |
+
### Results
|
128 |
+
|
129 |
+
[More Information Needed]
|
130 |
+
|
131 |
+
#### Summary
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
## Model Examination [optional]
|
136 |
+
|
137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
138 |
+
|
139 |
+
[More Information Needed]
|
140 |
+
|
141 |
+
## Environmental Impact
|
142 |
+
|
143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
144 |
+
|
145 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
146 |
+
|
147 |
+
- **Hardware Type:** [More Information Needed]
|
148 |
+
- **Hours used:** [More Information Needed]
|
149 |
+
- **Cloud Provider:** [More Information Needed]
|
150 |
+
- **Compute Region:** [More Information Needed]
|
151 |
+
- **Carbon Emitted:** [More Information Needed]
|
152 |
+
|
153 |
+
## Technical Specifications [optional]
|
154 |
+
|
155 |
+
### Model Architecture and Objective
|
156 |
+
|
157 |
+
[More Information Needed]
|
158 |
+
|
159 |
+
### Compute Infrastructure
|
160 |
+
|
161 |
+
[More Information Needed]
|
162 |
+
|
163 |
+
#### Hardware
|
164 |
+
|
165 |
+
[More Information Needed]
|
166 |
+
|
167 |
+
#### Software
|
168 |
+
|
169 |
+
[More Information Needed]
|
170 |
+
|
171 |
+
## Citation [optional]
|
172 |
+
|
173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
174 |
+
|
175 |
+
**BibTeX:**
|
176 |
+
|
177 |
+
[More Information Needed]
|
178 |
+
|
179 |
+
**APA:**
|
180 |
+
|
181 |
+
[More Information Needed]
|
182 |
+
|
183 |
+
## Glossary [optional]
|
184 |
+
|
185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
186 |
+
|
187 |
+
[More Information Needed]
|
188 |
+
|
189 |
+
## More Information [optional]
|
190 |
+
|
191 |
+
[More Information Needed]
|
192 |
+
|
193 |
+
## Model Card Authors [optional]
|
194 |
+
|
195 |
+
[More Information Needed]
|
196 |
+
|
197 |
+
## Model Card Contact
|
198 |
+
|
199 |
+
[More Information Needed]
|
200 |
+
### Framework versions
|
201 |
+
|
202 |
+
- PEFT 0.15.2
|
adapter_config.json
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "unsloth/Qwen3-8B-unsloth-bnb-4bit",
|
5 |
+
"bias": "none",
|
6 |
+
"corda_config": null,
|
7 |
+
"eva_config": null,
|
8 |
+
"exclude_modules": null,
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 32,
|
17 |
+
"lora_bias": false,
|
18 |
+
"lora_dropout": 0.05,
|
19 |
+
"megatron_config": null,
|
20 |
+
"megatron_core": "megatron.core",
|
21 |
+
"modules_to_save": null,
|
22 |
+
"peft_type": "LORA",
|
23 |
+
"r": 32,
|
24 |
+
"rank_pattern": {},
|
25 |
+
"revision": null,
|
26 |
+
"target_modules": [
|
27 |
+
"gate_proj",
|
28 |
+
"down_proj",
|
29 |
+
"up_proj",
|
30 |
+
"o_proj",
|
31 |
+
"v_proj",
|
32 |
+
"q_proj",
|
33 |
+
"k_proj"
|
34 |
+
],
|
35 |
+
"task_type": "CAUSAL_LM",
|
36 |
+
"trainable_token_indices": null,
|
37 |
+
"use_dora": false,
|
38 |
+
"use_rslora": false
|
39 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc7d58eeaecb76c281283b1dbfb155b387e34375f463c3cb57e71d0cfc0b6c04
|
3 |
+
size 349243752
|
added_tokens.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</think>": 151668,
|
3 |
+
"</tool_call>": 151658,
|
4 |
+
"</tool_response>": 151666,
|
5 |
+
"<think>": 151667,
|
6 |
+
"<tool_call>": 151657,
|
7 |
+
"<tool_response>": 151665,
|
8 |
+
"<|box_end|>": 151649,
|
9 |
+
"<|box_start|>": 151648,
|
10 |
+
"<|endoftext|>": 151643,
|
11 |
+
"<|file_sep|>": 151664,
|
12 |
+
"<|fim_middle|>": 151660,
|
13 |
+
"<|fim_pad|>": 151662,
|
14 |
+
"<|fim_prefix|>": 151659,
|
15 |
+
"<|fim_suffix|>": 151661,
|
16 |
+
"<|im_end|>": 151645,
|
17 |
+
"<|im_start|>": 151644,
|
18 |
+
"<|image_pad|>": 151655,
|
19 |
+
"<|object_ref_end|>": 151647,
|
20 |
+
"<|object_ref_start|>": 151646,
|
21 |
+
"<|quad_end|>": 151651,
|
22 |
+
"<|quad_start|>": 151650,
|
23 |
+
"<|repo_name|>": 151663,
|
24 |
+
"<|video_pad|>": 151656,
|
25 |
+
"<|vision_end|>": 151653,
|
26 |
+
"<|vision_pad|>": 151654,
|
27 |
+
"<|vision_start|>": 151652
|
28 |
+
}
|
chat_template.jinja
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{% for message in messages %}{% if message['role'] == 'user' %}<|im_start|>user
|
2 |
+
{{ message['content'] }}<|im_end|>
|
3 |
+
{% elif message['role'] == 'assistant' %}<|im_start|>assistant
|
4 |
+
{{ message['content'] }}<|im_end|>
|
5 |
+
{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
|
6 |
+
{% endif %}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a328f3d6ef3bc7b5320ffd651122eca6df818ca23056556aacdbf921d2970742
|
3 |
+
size 177908997
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b0fddee376f3c5d553c1ae7bddca8f93e8e2732b91728bbdf07960418a191e2
|
3 |
+
size 14645
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c39bb2a5d4848eeb28b11a77e322996e28ca2866b96c5d8f5046cd48a71808b
|
3 |
+
size 1465
|
special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|vision_pad|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ae1a036a9837df9caeebb840d09d80e8feef0f6d2bae982970d1ad34f5946aff
|
3 |
+
size 11422753
|
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": 40960,
|
235 |
+
"pad_token": "<|vision_pad|>",
|
236 |
+
"padding_side": "right",
|
237 |
+
"split_special_tokens": false,
|
238 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
239 |
+
"unk_token": null
|
240 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,422 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": 1313,
|
3 |
+
"best_metric": 0.512985110282898,
|
4 |
+
"best_model_checkpoint": "outputs_v3/checkpoint-1313",
|
5 |
+
"epoch": 1.0,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 1313,
|
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.0007618322064565279,
|
14 |
+
"grad_norm": 1.4868226051330566,
|
15 |
+
"learning_rate": 0.0,
|
16 |
+
"loss": 2.9396,
|
17 |
+
"step": 1
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"epoch": 0.019045805161413198,
|
21 |
+
"grad_norm": 1.2571601867675781,
|
22 |
+
"learning_rate": 1.008403361344538e-05,
|
23 |
+
"loss": 2.7963,
|
24 |
+
"step": 25
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"epoch": 0.038091610322826396,
|
28 |
+
"grad_norm": 0.6987431645393372,
|
29 |
+
"learning_rate": 2.058823529411765e-05,
|
30 |
+
"loss": 2.1442,
|
31 |
+
"step": 50
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"epoch": 0.0571374154842396,
|
35 |
+
"grad_norm": 0.3330633044242859,
|
36 |
+
"learning_rate": 3.1092436974789916e-05,
|
37 |
+
"loss": 1.1326,
|
38 |
+
"step": 75
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.07618322064565279,
|
42 |
+
"grad_norm": 0.23947548866271973,
|
43 |
+
"learning_rate": 4.159663865546219e-05,
|
44 |
+
"loss": 0.7952,
|
45 |
+
"step": 100
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.09522902580706599,
|
49 |
+
"grad_norm": 0.3273511528968811,
|
50 |
+
"learning_rate": 4.9999788640180545e-05,
|
51 |
+
"loss": 0.6819,
|
52 |
+
"step": 125
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"epoch": 0.1142748309684792,
|
56 |
+
"grad_norm": 0.1918083131313324,
|
57 |
+
"learning_rate": 4.999239142174581e-05,
|
58 |
+
"loss": 0.6792,
|
59 |
+
"step": 150
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"epoch": 0.1333206361298924,
|
63 |
+
"grad_norm": 0.22439052164554596,
|
64 |
+
"learning_rate": 4.9974429785904524e-05,
|
65 |
+
"loss": 0.6258,
|
66 |
+
"step": 175
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"epoch": 0.15236644129130558,
|
70 |
+
"grad_norm": 0.24658527970314026,
|
71 |
+
"learning_rate": 4.994591132513616e-05,
|
72 |
+
"loss": 0.6512,
|
73 |
+
"step": 200
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"epoch": 0.1714122464527188,
|
77 |
+
"grad_norm": 0.24695466458797455,
|
78 |
+
"learning_rate": 4.990684809434646e-05,
|
79 |
+
"loss": 0.6244,
|
80 |
+
"step": 225
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.19045805161413198,
|
84 |
+
"grad_norm": 0.26622363924980164,
|
85 |
+
"learning_rate": 4.985725660577184e-05,
|
86 |
+
"loss": 0.5796,
|
87 |
+
"step": 250
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.2095038567755452,
|
91 |
+
"grad_norm": 0.2716868817806244,
|
92 |
+
"learning_rate": 4.979715782199951e-05,
|
93 |
+
"loss": 0.6268,
|
94 |
+
"step": 275
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"epoch": 0.2285496619369584,
|
98 |
+
"grad_norm": 0.2595020830631256,
|
99 |
+
"learning_rate": 4.972657714710653e-05,
|
100 |
+
"loss": 0.5945,
|
101 |
+
"step": 300
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"epoch": 0.24759546709837157,
|
105 |
+
"grad_norm": 0.26612213253974915,
|
106 |
+
"learning_rate": 4.9645544415921344e-05,
|
107 |
+
"loss": 0.5592,
|
108 |
+
"step": 325
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"epoch": 0.2666412722597848,
|
112 |
+
"grad_norm": 0.24327930808067322,
|
113 |
+
"learning_rate": 4.955409388141243e-05,
|
114 |
+
"loss": 0.631,
|
115 |
+
"step": 350
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"epoch": 0.285687077421198,
|
119 |
+
"grad_norm": 0.2701154947280884,
|
120 |
+
"learning_rate": 4.9452264200209426e-05,
|
121 |
+
"loss": 0.569,
|
122 |
+
"step": 375
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.30473288258261116,
|
126 |
+
"grad_norm": 0.2970716953277588,
|
127 |
+
"learning_rate": 4.9340098416262714e-05,
|
128 |
+
"loss": 0.5791,
|
129 |
+
"step": 400
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.32377868774402435,
|
133 |
+
"grad_norm": 0.26807665824890137,
|
134 |
+
"learning_rate": 4.921764394264855e-05,
|
135 |
+
"loss": 0.5411,
|
136 |
+
"step": 425
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"epoch": 0.3428244929054376,
|
140 |
+
"grad_norm": 0.2829282283782959,
|
141 |
+
"learning_rate": 4.908495254152731e-05,
|
142 |
+
"loss": 0.5746,
|
143 |
+
"step": 450
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"epoch": 0.3618702980668508,
|
147 |
+
"grad_norm": 0.3086259961128235,
|
148 |
+
"learning_rate": 4.8942080302263306e-05,
|
149 |
+
"loss": 0.5579,
|
150 |
+
"step": 475
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"epoch": 0.38091610322826397,
|
154 |
+
"grad_norm": 0.2836249768733978,
|
155 |
+
"learning_rate": 4.878908761771554e-05,
|
156 |
+
"loss": 0.5702,
|
157 |
+
"step": 500
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"epoch": 0.39996190838967716,
|
161 |
+
"grad_norm": 0.31077441573143005,
|
162 |
+
"learning_rate": 4.862603915870933e-05,
|
163 |
+
"loss": 0.542,
|
164 |
+
"step": 525
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.4190077135510904,
|
168 |
+
"grad_norm": 0.25948625802993774,
|
169 |
+
"learning_rate": 4.845300384669958e-05,
|
170 |
+
"loss": 0.5407,
|
171 |
+
"step": 550
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.4380535187125036,
|
175 |
+
"grad_norm": 0.26232826709747314,
|
176 |
+
"learning_rate": 4.827005482463733e-05,
|
177 |
+
"loss": 0.5419,
|
178 |
+
"step": 575
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"epoch": 0.4570993238739168,
|
182 |
+
"grad_norm": 0.31146982312202454,
|
183 |
+
"learning_rate": 4.807726942605184e-05,
|
184 |
+
"loss": 0.5637,
|
185 |
+
"step": 600
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"epoch": 0.47614512903532996,
|
189 |
+
"grad_norm": 0.2727930247783661,
|
190 |
+
"learning_rate": 4.7874729142361285e-05,
|
191 |
+
"loss": 0.5695,
|
192 |
+
"step": 625
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"epoch": 0.49519093419674315,
|
196 |
+
"grad_norm": 0.2699703872203827,
|
197 |
+
"learning_rate": 4.76625195884259e-05,
|
198 |
+
"loss": 0.5232,
|
199 |
+
"step": 650
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"epoch": 0.5142367393581564,
|
203 |
+
"grad_norm": 0.29125288128852844,
|
204 |
+
"learning_rate": 4.7440730466358116e-05,
|
205 |
+
"loss": 0.5954,
|
206 |
+
"step": 675
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.5332825445195696,
|
210 |
+
"grad_norm": 0.2931804060935974,
|
211 |
+
"learning_rate": 4.720945552760503e-05,
|
212 |
+
"loss": 0.5733,
|
213 |
+
"step": 700
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.5523283496809828,
|
217 |
+
"grad_norm": 0.298470139503479,
|
218 |
+
"learning_rate": 4.69687925333191e-05,
|
219 |
+
"loss": 0.5817,
|
220 |
+
"step": 725
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"epoch": 0.571374154842396,
|
224 |
+
"grad_norm": 0.2937164306640625,
|
225 |
+
"learning_rate": 4.6718843213034067e-05,
|
226 |
+
"loss": 0.5482,
|
227 |
+
"step": 750
|
228 |
+
},
|
229 |
+
{
|
230 |
+
"epoch": 0.5904199600038091,
|
231 |
+
"grad_norm": 0.31254154443740845,
|
232 |
+
"learning_rate": 4.645971322166327e-05,
|
233 |
+
"loss": 0.5594,
|
234 |
+
"step": 775
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"epoch": 0.6094657651652223,
|
238 |
+
"grad_norm": 0.2997235953807831,
|
239 |
+
"learning_rate": 4.619151209483878e-05,
|
240 |
+
"loss": 0.5867,
|
241 |
+
"step": 800
|
242 |
+
},
|
243 |
+
{
|
244 |
+
"epoch": 0.6285115703266355,
|
245 |
+
"grad_norm": 0.3079950213432312,
|
246 |
+
"learning_rate": 4.591435320261011e-05,
|
247 |
+
"loss": 0.5839,
|
248 |
+
"step": 825
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 0.6475573754880487,
|
252 |
+
"grad_norm": 0.2768675982952118,
|
253 |
+
"learning_rate": 4.5628353701522055e-05,
|
254 |
+
"loss": 0.5709,
|
255 |
+
"step": 850
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.666603180649462,
|
259 |
+
"grad_norm": 0.2898074686527252,
|
260 |
+
"learning_rate": 4.533363448509204e-05,
|
261 |
+
"loss": 0.5604,
|
262 |
+
"step": 875
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.6856489858108752,
|
266 |
+
"grad_norm": 0.3034629225730896,
|
267 |
+
"learning_rate": 4.503032013270774e-05,
|
268 |
+
"loss": 0.527,
|
269 |
+
"step": 900
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 0.7046947909722884,
|
273 |
+
"grad_norm": 0.3099200129508972,
|
274 |
+
"learning_rate": 4.471853885696673e-05,
|
275 |
+
"loss": 0.5484,
|
276 |
+
"step": 925
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"epoch": 0.7237405961337016,
|
280 |
+
"grad_norm": 0.27591314911842346,
|
281 |
+
"learning_rate": 4.4398422449480356e-05,
|
282 |
+
"loss": 0.539,
|
283 |
+
"step": 950
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.7427864012951148,
|
287 |
+
"grad_norm": 0.297590434551239,
|
288 |
+
"learning_rate": 4.407010622516469e-05,
|
289 |
+
"loss": 0.5427,
|
290 |
+
"step": 975
|
291 |
+
},
|
292 |
+
{
|
293 |
+
"epoch": 0.7618322064565279,
|
294 |
+
"grad_norm": 0.2939580976963043,
|
295 |
+
"learning_rate": 4.373372896504215e-05,
|
296 |
+
"loss": 0.5544,
|
297 |
+
"step": 1000
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.7808780116179411,
|
301 |
+
"grad_norm": 0.3100650906562805,
|
302 |
+
"learning_rate": 4.338943285757812e-05,
|
303 |
+
"loss": 0.5418,
|
304 |
+
"step": 1025
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"epoch": 0.7999238167793543,
|
308 |
+
"grad_norm": 0.31046804785728455,
|
309 |
+
"learning_rate": 4.303736343857704e-05,
|
310 |
+
"loss": 0.5492,
|
311 |
+
"step": 1050
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 0.8189696219407675,
|
315 |
+
"grad_norm": 0.31424999237060547,
|
316 |
+
"learning_rate": 4.267766952966369e-05,
|
317 |
+
"loss": 0.5501,
|
318 |
+
"step": 1075
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"epoch": 0.8380154271021808,
|
322 |
+
"grad_norm": 0.3023451268672943,
|
323 |
+
"learning_rate": 4.2310503175375484e-05,
|
324 |
+
"loss": 0.5701,
|
325 |
+
"step": 1100
|
326 |
+
},
|
327 |
+
{
|
328 |
+
"epoch": 0.857061232263594,
|
329 |
+
"grad_norm": 0.2925208806991577,
|
330 |
+
"learning_rate": 4.1936019578892394e-05,
|
331 |
+
"loss": 0.5296,
|
332 |
+
"step": 1125
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"epoch": 0.8761070374250072,
|
336 |
+
"grad_norm": 0.2963685691356659,
|
337 |
+
"learning_rate": 4.1554377036431816e-05,
|
338 |
+
"loss": 0.5826,
|
339 |
+
"step": 1150
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.8951528425864204,
|
343 |
+
"grad_norm": 0.30757901072502136,
|
344 |
+
"learning_rate": 4.116573687033583e-05,
|
345 |
+
"loss": 0.5844,
|
346 |
+
"step": 1175
|
347 |
+
},
|
348 |
+
{
|
349 |
+
"epoch": 0.9141986477478335,
|
350 |
+
"grad_norm": 0.3231395184993744,
|
351 |
+
"learning_rate": 4.0770263360879435e-05,
|
352 |
+
"loss": 0.5727,
|
353 |
+
"step": 1200
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.9332444529092467,
|
357 |
+
"grad_norm": 0.29189741611480713,
|
358 |
+
"learning_rate": 4.0368123676828385e-05,
|
359 |
+
"loss": 0.5553,
|
360 |
+
"step": 1225
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"epoch": 0.9522902580706599,
|
364 |
+
"grad_norm": 0.3302098512649536,
|
365 |
+
"learning_rate": 3.995948780477605e-05,
|
366 |
+
"loss": 0.5463,
|
367 |
+
"step": 1250
|
368 |
+
},
|
369 |
+
{
|
370 |
+
"epoch": 0.9713360632320731,
|
371 |
+
"grad_norm": 0.340754896402359,
|
372 |
+
"learning_rate": 3.954452847728919e-05,
|
373 |
+
"loss": 0.5442,
|
374 |
+
"step": 1275
|
375 |
+
},
|
376 |
+
{
|
377 |
+
"epoch": 0.9903818683934863,
|
378 |
+
"grad_norm": 0.302099347114563,
|
379 |
+
"learning_rate": 3.912342109989296e-05,
|
380 |
+
"loss": 0.5517,
|
381 |
+
"step": 1300
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 1.0,
|
385 |
+
"eval_loss": 0.512985110282898,
|
386 |
+
"eval_runtime": 190.5141,
|
387 |
+
"eval_samples_per_second": 19.458,
|
388 |
+
"eval_steps_per_second": 4.866,
|
389 |
+
"step": 1313
|
390 |
+
}
|
391 |
+
],
|
392 |
+
"logging_steps": 25,
|
393 |
+
"max_steps": 3939,
|
394 |
+
"num_input_tokens_seen": 0,
|
395 |
+
"num_train_epochs": 3,
|
396 |
+
"save_steps": 500,
|
397 |
+
"stateful_callbacks": {
|
398 |
+
"EarlyStoppingCallback": {
|
399 |
+
"args": {
|
400 |
+
"early_stopping_patience": 2,
|
401 |
+
"early_stopping_threshold": 0.001
|
402 |
+
},
|
403 |
+
"attributes": {
|
404 |
+
"early_stopping_patience_counter": 0
|
405 |
+
}
|
406 |
+
},
|
407 |
+
"TrainerControl": {
|
408 |
+
"args": {
|
409 |
+
"should_epoch_stop": false,
|
410 |
+
"should_evaluate": false,
|
411 |
+
"should_log": false,
|
412 |
+
"should_save": true,
|
413 |
+
"should_training_stop": false
|
414 |
+
},
|
415 |
+
"attributes": {}
|
416 |
+
}
|
417 |
+
},
|
418 |
+
"total_flos": 2.450179662830715e+17,
|
419 |
+
"train_batch_size": 2,
|
420 |
+
"trial_name": null,
|
421 |
+
"trial_params": null
|
422 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a75ffe960bb7c8e891c0badf4b0056801eb6431277c701860933e86bf88c9d5e
|
3 |
+
size 5969
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|