Upload checkpoint 100
Browse files- .gitattributes +1 -0
- README.md +47 -0
- adapter_config.json +37 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +24 -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 +209 -0
- trainer_state.json +734 -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,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Qwen/Qwen2.5-3B-Instruct
|
3 |
+
library_name: peft
|
4 |
+
---
|
5 |
+
# Gradience T1 3B (Step 100 Checkpoint)
|
6 |
+
|
7 |
+
> [!NOTE]
|
8 |
+
> Training in progress...
|
9 |
+
|
10 |
+
<!DOCTYPE html>
|
11 |
+
<html lang="en">
|
12 |
+
<head>
|
13 |
+
<meta charset="UTF-8">
|
14 |
+
<title>Progress Bar Example</title>
|
15 |
+
<style>
|
16 |
+
.progress-container {
|
17 |
+
width: 100%;
|
18 |
+
background-color: #e0e0e0;
|
19 |
+
border-radius: 25px;
|
20 |
+
overflow: hidden;
|
21 |
+
margin: 20px 0;
|
22 |
+
}
|
23 |
+
.progress-bar {
|
24 |
+
height: 30px;
|
25 |
+
width: 0;
|
26 |
+
background-color: #76c7c0;
|
27 |
+
text-align: center;
|
28 |
+
line-height: 30px;
|
29 |
+
color: white;
|
30 |
+
border-radius: 25px 0 0 25px;
|
31 |
+
}
|
32 |
+
.progress-text {
|
33 |
+
margin-top: 10px;
|
34 |
+
font-size: 16px;
|
35 |
+
font-family: Arial, sans-serif;
|
36 |
+
}
|
37 |
+
</style>
|
38 |
+
</head>
|
39 |
+
<body>
|
40 |
+
<div style="width: 100%; background-color: #e0e0e0; border-radius: 25px; overflow: hidden; margin: 20px 0;">
|
41 |
+
<div style="height: 30px; width: 1.02%; background-color: #76c7c0; text-align: center; line-height: 30px; color: white; border-radius: 25px 0 0 25px;">
|
42 |
+
<!-- 3.75% -->
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
<p style="font-family: Arial, sans-serif; font-size: 16px;">Progress: 100 out of 9838 steps</p>
|
46 |
+
</body>
|
47 |
+
</html>
|
adapter_config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "./Qwen-2.5-3B-Instruct",
|
5 |
+
"bias": "none",
|
6 |
+
"eva_config": null,
|
7 |
+
"exclude_modules": null,
|
8 |
+
"fan_in_fan_out": false,
|
9 |
+
"inference_mode": true,
|
10 |
+
"init_lora_weights": true,
|
11 |
+
"layer_replication": null,
|
12 |
+
"layers_pattern": null,
|
13 |
+
"layers_to_transform": null,
|
14 |
+
"loftq_config": {},
|
15 |
+
"lora_alpha": 16,
|
16 |
+
"lora_bias": false,
|
17 |
+
"lora_dropout": 0,
|
18 |
+
"megatron_config": null,
|
19 |
+
"megatron_core": "megatron.core",
|
20 |
+
"modules_to_save": null,
|
21 |
+
"peft_type": "LORA",
|
22 |
+
"r": 16,
|
23 |
+
"rank_pattern": {},
|
24 |
+
"revision": null,
|
25 |
+
"target_modules": [
|
26 |
+
"q_proj",
|
27 |
+
"o_proj",
|
28 |
+
"gate_proj",
|
29 |
+
"up_proj",
|
30 |
+
"down_proj",
|
31 |
+
"k_proj",
|
32 |
+
"v_proj"
|
33 |
+
],
|
34 |
+
"task_type": "CAUSAL_LM",
|
35 |
+
"use_dora": false,
|
36 |
+
"use_rslora": false
|
37 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cbe0d5204ad703858d6dc2f9688b3bb2e4fbbcedaba0a3c27b72a5570b5acab2
|
3 |
+
size 119801528
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
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:9f1ad7ad21247de632121e3e41ff8503ee5aeacd755cf1a5fdfad7f2169bdf3e
|
3 |
+
size 61392180
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:608fccb6c056ce88cdfd5355e6be2046f4d107a24a87c6b0d2c3b200ce6bb4ea
|
3 |
+
size 14244
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7207e79ddf7718cfb8207e0ab325278ab33535994128d175a03a7d30940317c9
|
3 |
+
size 1064
|
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 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
|
3 |
+
size 11421896
|
tokenizer_config.json
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 32768,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"padding_side": "right",
|
206 |
+
"split_special_tokens": false,
|
207 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
208 |
+
"unk_token": null
|
209 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,734 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 0.020329335230737954,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 100,
|
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.00020329335230737954,
|
14 |
+
"grad_norm": 0.36621615290641785,
|
15 |
+
"learning_rate": 0.0,
|
16 |
+
"loss": 1.5428,
|
17 |
+
"step": 1
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"epoch": 0.0004065867046147591,
|
21 |
+
"grad_norm": 0.38205745816230774,
|
22 |
+
"learning_rate": 4e-05,
|
23 |
+
"loss": 1.3117,
|
24 |
+
"step": 2
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"epoch": 0.0006098800569221387,
|
28 |
+
"grad_norm": 0.38206785917282104,
|
29 |
+
"learning_rate": 8e-05,
|
30 |
+
"loss": 1.5818,
|
31 |
+
"step": 3
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"epoch": 0.0008131734092295182,
|
35 |
+
"grad_norm": 0.2856779396533966,
|
36 |
+
"learning_rate": 0.00012,
|
37 |
+
"loss": 1.4046,
|
38 |
+
"step": 4
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.0010164667615368977,
|
42 |
+
"grad_norm": 0.28240150213241577,
|
43 |
+
"learning_rate": 0.00016,
|
44 |
+
"loss": 1.1899,
|
45 |
+
"step": 5
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.0012197601138442774,
|
49 |
+
"grad_norm": 0.27537214756011963,
|
50 |
+
"learning_rate": 0.0002,
|
51 |
+
"loss": 1.3741,
|
52 |
+
"step": 6
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"epoch": 0.0014230534661516568,
|
56 |
+
"grad_norm": 0.1832859218120575,
|
57 |
+
"learning_rate": 0.00019997966032746873,
|
58 |
+
"loss": 1.2432,
|
59 |
+
"step": 7
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"epoch": 0.0016263468184590363,
|
63 |
+
"grad_norm": 0.1194186806678772,
|
64 |
+
"learning_rate": 0.00019995932065493746,
|
65 |
+
"loss": 1.1152,
|
66 |
+
"step": 8
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"epoch": 0.001829640170766416,
|
70 |
+
"grad_norm": 0.287241131067276,
|
71 |
+
"learning_rate": 0.0001999389809824062,
|
72 |
+
"loss": 1.2556,
|
73 |
+
"step": 9
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"epoch": 0.0020329335230737954,
|
77 |
+
"grad_norm": 0.2129606008529663,
|
78 |
+
"learning_rate": 0.00019991864130987493,
|
79 |
+
"loss": 1.2698,
|
80 |
+
"step": 10
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.002236226875381175,
|
84 |
+
"grad_norm": 0.16557097434997559,
|
85 |
+
"learning_rate": 0.00019989830163734363,
|
86 |
+
"loss": 1.2364,
|
87 |
+
"step": 11
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.002439520227688555,
|
91 |
+
"grad_norm": 0.15639722347259521,
|
92 |
+
"learning_rate": 0.00019987796196481236,
|
93 |
+
"loss": 1.2499,
|
94 |
+
"step": 12
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"epoch": 0.002642813579995934,
|
98 |
+
"grad_norm": 0.11634412407875061,
|
99 |
+
"learning_rate": 0.0001998576222922811,
|
100 |
+
"loss": 1.148,
|
101 |
+
"step": 13
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"epoch": 0.0028461069323033137,
|
105 |
+
"grad_norm": 0.13249927759170532,
|
106 |
+
"learning_rate": 0.00019983728261974983,
|
107 |
+
"loss": 1.267,
|
108 |
+
"step": 14
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"epoch": 0.0030494002846106934,
|
112 |
+
"grad_norm": 0.12251798063516617,
|
113 |
+
"learning_rate": 0.00019981694294721856,
|
114 |
+
"loss": 1.1868,
|
115 |
+
"step": 15
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"epoch": 0.0032526936369180726,
|
119 |
+
"grad_norm": 0.1279357224702835,
|
120 |
+
"learning_rate": 0.00019979660327468728,
|
121 |
+
"loss": 1.3611,
|
122 |
+
"step": 16
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.0034559869892254523,
|
126 |
+
"grad_norm": 0.10690166801214218,
|
127 |
+
"learning_rate": 0.00019977626360215603,
|
128 |
+
"loss": 1.2934,
|
129 |
+
"step": 17
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.003659280341532832,
|
133 |
+
"grad_norm": 0.09634354710578918,
|
134 |
+
"learning_rate": 0.00019975592392962476,
|
135 |
+
"loss": 1.1628,
|
136 |
+
"step": 18
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"epoch": 0.0038625736938402116,
|
140 |
+
"grad_norm": 0.08993979543447495,
|
141 |
+
"learning_rate": 0.00019973558425709345,
|
142 |
+
"loss": 1.1328,
|
143 |
+
"step": 19
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"epoch": 0.004065867046147591,
|
147 |
+
"grad_norm": 0.09834206104278564,
|
148 |
+
"learning_rate": 0.00019971524458456218,
|
149 |
+
"loss": 1.1424,
|
150 |
+
"step": 20
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"epoch": 0.0042691603984549705,
|
154 |
+
"grad_norm": 0.10754235088825226,
|
155 |
+
"learning_rate": 0.00019969490491203093,
|
156 |
+
"loss": 1.0843,
|
157 |
+
"step": 21
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"epoch": 0.00447245375076235,
|
161 |
+
"grad_norm": 0.09953349828720093,
|
162 |
+
"learning_rate": 0.00019967456523949966,
|
163 |
+
"loss": 1.1475,
|
164 |
+
"step": 22
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.00467574710306973,
|
168 |
+
"grad_norm": 0.09910175204277039,
|
169 |
+
"learning_rate": 0.00019965422556696838,
|
170 |
+
"loss": 1.1532,
|
171 |
+
"step": 23
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.00487904045537711,
|
175 |
+
"grad_norm": 0.10800202935934067,
|
176 |
+
"learning_rate": 0.0001996338858944371,
|
177 |
+
"loss": 1.2336,
|
178 |
+
"step": 24
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"epoch": 0.005082333807684488,
|
182 |
+
"grad_norm": 0.10042817890644073,
|
183 |
+
"learning_rate": 0.00019961354622190586,
|
184 |
+
"loss": 1.1235,
|
185 |
+
"step": 25
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"epoch": 0.005285627159991868,
|
189 |
+
"grad_norm": 0.10839787125587463,
|
190 |
+
"learning_rate": 0.00019959320654937458,
|
191 |
+
"loss": 1.3561,
|
192 |
+
"step": 26
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"epoch": 0.005488920512299248,
|
196 |
+
"grad_norm": 0.10559111088514328,
|
197 |
+
"learning_rate": 0.00019957286687684328,
|
198 |
+
"loss": 1.3255,
|
199 |
+
"step": 27
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"epoch": 0.005692213864606627,
|
203 |
+
"grad_norm": 0.12504474818706512,
|
204 |
+
"learning_rate": 0.000199552527204312,
|
205 |
+
"loss": 1.4834,
|
206 |
+
"step": 28
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.005895507216914007,
|
210 |
+
"grad_norm": 0.09099473804235458,
|
211 |
+
"learning_rate": 0.00019953218753178075,
|
212 |
+
"loss": 1.1404,
|
213 |
+
"step": 29
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.006098800569221387,
|
217 |
+
"grad_norm": 0.09648846834897995,
|
218 |
+
"learning_rate": 0.00019951184785924948,
|
219 |
+
"loss": 1.1302,
|
220 |
+
"step": 30
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"epoch": 0.006302093921528766,
|
224 |
+
"grad_norm": 0.0992799773812294,
|
225 |
+
"learning_rate": 0.0001994915081867182,
|
226 |
+
"loss": 1.3508,
|
227 |
+
"step": 31
|
228 |
+
},
|
229 |
+
{
|
230 |
+
"epoch": 0.006505387273836145,
|
231 |
+
"grad_norm": 0.10332880914211273,
|
232 |
+
"learning_rate": 0.00019947116851418693,
|
233 |
+
"loss": 1.1819,
|
234 |
+
"step": 32
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"epoch": 0.006708680626143525,
|
238 |
+
"grad_norm": 0.1172771006822586,
|
239 |
+
"learning_rate": 0.00019945082884165568,
|
240 |
+
"loss": 1.2512,
|
241 |
+
"step": 33
|
242 |
+
},
|
243 |
+
{
|
244 |
+
"epoch": 0.006911973978450905,
|
245 |
+
"grad_norm": 0.10649558156728745,
|
246 |
+
"learning_rate": 0.0001994304891691244,
|
247 |
+
"loss": 1.2394,
|
248 |
+
"step": 34
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 0.007115267330758284,
|
252 |
+
"grad_norm": 0.10849574208259583,
|
253 |
+
"learning_rate": 0.0001994101494965931,
|
254 |
+
"loss": 1.1847,
|
255 |
+
"step": 35
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.007318560683065664,
|
259 |
+
"grad_norm": 0.11581245064735413,
|
260 |
+
"learning_rate": 0.00019938980982406182,
|
261 |
+
"loss": 1.2788,
|
262 |
+
"step": 36
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.007521854035373044,
|
266 |
+
"grad_norm": 0.09857199341058731,
|
267 |
+
"learning_rate": 0.00019936947015153058,
|
268 |
+
"loss": 1.1072,
|
269 |
+
"step": 37
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 0.007725147387680423,
|
273 |
+
"grad_norm": 0.08895204216241837,
|
274 |
+
"learning_rate": 0.0001993491304789993,
|
275 |
+
"loss": 0.8741,
|
276 |
+
"step": 38
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"epoch": 0.007928440739987802,
|
280 |
+
"grad_norm": 0.09715849161148071,
|
281 |
+
"learning_rate": 0.00019932879080646803,
|
282 |
+
"loss": 1.2999,
|
283 |
+
"step": 39
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.008131734092295182,
|
287 |
+
"grad_norm": 0.09145913273096085,
|
288 |
+
"learning_rate": 0.00019930845113393675,
|
289 |
+
"loss": 0.9852,
|
290 |
+
"step": 40
|
291 |
+
},
|
292 |
+
{
|
293 |
+
"epoch": 0.008335027444602561,
|
294 |
+
"grad_norm": 0.09298407286405563,
|
295 |
+
"learning_rate": 0.0001992881114614055,
|
296 |
+
"loss": 1.1033,
|
297 |
+
"step": 41
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.008538320796909941,
|
301 |
+
"grad_norm": 0.09957871586084366,
|
302 |
+
"learning_rate": 0.00019926777178887423,
|
303 |
+
"loss": 1.3203,
|
304 |
+
"step": 42
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"epoch": 0.00874161414921732,
|
308 |
+
"grad_norm": 0.1212410032749176,
|
309 |
+
"learning_rate": 0.00019924743211634292,
|
310 |
+
"loss": 1.166,
|
311 |
+
"step": 43
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 0.0089449075015247,
|
315 |
+
"grad_norm": 0.10740375518798828,
|
316 |
+
"learning_rate": 0.00019922709244381165,
|
317 |
+
"loss": 1.1905,
|
318 |
+
"step": 44
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"epoch": 0.00914820085383208,
|
322 |
+
"grad_norm": 0.10571859031915665,
|
323 |
+
"learning_rate": 0.0001992067527712804,
|
324 |
+
"loss": 1.07,
|
325 |
+
"step": 45
|
326 |
+
},
|
327 |
+
{
|
328 |
+
"epoch": 0.00935149420613946,
|
329 |
+
"grad_norm": 0.11196234077215195,
|
330 |
+
"learning_rate": 0.00019918641309874912,
|
331 |
+
"loss": 1.2516,
|
332 |
+
"step": 46
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"epoch": 0.00955478755844684,
|
336 |
+
"grad_norm": 0.1025981530547142,
|
337 |
+
"learning_rate": 0.00019916607342621785,
|
338 |
+
"loss": 1.1118,
|
339 |
+
"step": 47
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.00975808091075422,
|
343 |
+
"grad_norm": 0.10584773868322372,
|
344 |
+
"learning_rate": 0.00019914573375368657,
|
345 |
+
"loss": 1.1551,
|
346 |
+
"step": 48
|
347 |
+
},
|
348 |
+
{
|
349 |
+
"epoch": 0.009961374263061597,
|
350 |
+
"grad_norm": 0.10157100111246109,
|
351 |
+
"learning_rate": 0.0001991253940811553,
|
352 |
+
"loss": 0.9638,
|
353 |
+
"step": 49
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.010164667615368977,
|
357 |
+
"grad_norm": 0.10194176435470581,
|
358 |
+
"learning_rate": 0.00019910505440862405,
|
359 |
+
"loss": 1.0024,
|
360 |
+
"step": 50
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"epoch": 0.010367960967676356,
|
364 |
+
"grad_norm": 0.10047532618045807,
|
365 |
+
"learning_rate": 0.00019908471473609275,
|
366 |
+
"loss": 1.1767,
|
367 |
+
"step": 51
|
368 |
+
},
|
369 |
+
{
|
370 |
+
"epoch": 0.010571254319983736,
|
371 |
+
"grad_norm": 0.10448278486728668,
|
372 |
+
"learning_rate": 0.00019906437506356147,
|
373 |
+
"loss": 1.2346,
|
374 |
+
"step": 52
|
375 |
+
},
|
376 |
+
{
|
377 |
+
"epoch": 0.010774547672291116,
|
378 |
+
"grad_norm": 0.09438527375459671,
|
379 |
+
"learning_rate": 0.0001990440353910302,
|
380 |
+
"loss": 1.0517,
|
381 |
+
"step": 53
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 0.010977841024598495,
|
385 |
+
"grad_norm": 0.12310227751731873,
|
386 |
+
"learning_rate": 0.00019902369571849895,
|
387 |
+
"loss": 1.2809,
|
388 |
+
"step": 54
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"epoch": 0.011181134376905875,
|
392 |
+
"grad_norm": 0.10811592638492584,
|
393 |
+
"learning_rate": 0.00019900335604596767,
|
394 |
+
"loss": 1.1171,
|
395 |
+
"step": 55
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"epoch": 0.011384427729213255,
|
399 |
+
"grad_norm": 0.12063754349946976,
|
400 |
+
"learning_rate": 0.0001989830163734364,
|
401 |
+
"loss": 1.0719,
|
402 |
+
"step": 56
|
403 |
+
},
|
404 |
+
{
|
405 |
+
"epoch": 0.011587721081520634,
|
406 |
+
"grad_norm": 0.10147465020418167,
|
407 |
+
"learning_rate": 0.00019896267670090512,
|
408 |
+
"loss": 1.0643,
|
409 |
+
"step": 57
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"epoch": 0.011791014433828014,
|
413 |
+
"grad_norm": 0.10184100270271301,
|
414 |
+
"learning_rate": 0.00019894233702837387,
|
415 |
+
"loss": 1.0148,
|
416 |
+
"step": 58
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"epoch": 0.011994307786135394,
|
420 |
+
"grad_norm": 0.1090080663561821,
|
421 |
+
"learning_rate": 0.00019892199735584257,
|
422 |
+
"loss": 1.0762,
|
423 |
+
"step": 59
|
424 |
+
},
|
425 |
+
{
|
426 |
+
"epoch": 0.012197601138442773,
|
427 |
+
"grad_norm": 0.0960102528333664,
|
428 |
+
"learning_rate": 0.0001989016576833113,
|
429 |
+
"loss": 1.09,
|
430 |
+
"step": 60
|
431 |
+
},
|
432 |
+
{
|
433 |
+
"epoch": 0.012400894490750153,
|
434 |
+
"grad_norm": 0.1056618019938469,
|
435 |
+
"learning_rate": 0.00019888131801078002,
|
436 |
+
"loss": 1.0092,
|
437 |
+
"step": 61
|
438 |
+
},
|
439 |
+
{
|
440 |
+
"epoch": 0.012604187843057533,
|
441 |
+
"grad_norm": 0.10064820945262909,
|
442 |
+
"learning_rate": 0.00019886097833824877,
|
443 |
+
"loss": 1.0135,
|
444 |
+
"step": 62
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.01280748119536491,
|
448 |
+
"grad_norm": 0.11083406209945679,
|
449 |
+
"learning_rate": 0.0001988406386657175,
|
450 |
+
"loss": 1.2344,
|
451 |
+
"step": 63
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"epoch": 0.01301077454767229,
|
455 |
+
"grad_norm": 0.10507647693157196,
|
456 |
+
"learning_rate": 0.00019882029899318622,
|
457 |
+
"loss": 1.1035,
|
458 |
+
"step": 64
|
459 |
+
},
|
460 |
+
{
|
461 |
+
"epoch": 0.01321406789997967,
|
462 |
+
"grad_norm": 0.10840694606304169,
|
463 |
+
"learning_rate": 0.00019879995932065494,
|
464 |
+
"loss": 1.1458,
|
465 |
+
"step": 65
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"epoch": 0.01341736125228705,
|
469 |
+
"grad_norm": 0.1149667352437973,
|
470 |
+
"learning_rate": 0.0001987796196481237,
|
471 |
+
"loss": 1.0722,
|
472 |
+
"step": 66
|
473 |
+
},
|
474 |
+
{
|
475 |
+
"epoch": 0.01362065460459443,
|
476 |
+
"grad_norm": 0.1219320297241211,
|
477 |
+
"learning_rate": 0.00019875927997559242,
|
478 |
+
"loss": 1.1392,
|
479 |
+
"step": 67
|
480 |
+
},
|
481 |
+
{
|
482 |
+
"epoch": 0.01382394795690181,
|
483 |
+
"grad_norm": 0.1296710968017578,
|
484 |
+
"learning_rate": 0.00019873894030306112,
|
485 |
+
"loss": 1.1831,
|
486 |
+
"step": 68
|
487 |
+
},
|
488 |
+
{
|
489 |
+
"epoch": 0.014027241309209189,
|
490 |
+
"grad_norm": 0.11214271187782288,
|
491 |
+
"learning_rate": 0.00019871860063052984,
|
492 |
+
"loss": 1.0385,
|
493 |
+
"step": 69
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"epoch": 0.014230534661516568,
|
497 |
+
"grad_norm": 0.12374462932348251,
|
498 |
+
"learning_rate": 0.0001986982609579986,
|
499 |
+
"loss": 1.2633,
|
500 |
+
"step": 70
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"epoch": 0.014433828013823948,
|
504 |
+
"grad_norm": 0.09856373071670532,
|
505 |
+
"learning_rate": 0.00019867792128546732,
|
506 |
+
"loss": 1.0495,
|
507 |
+
"step": 71
|
508 |
+
},
|
509 |
+
{
|
510 |
+
"epoch": 0.014637121366131328,
|
511 |
+
"grad_norm": 0.1356707215309143,
|
512 |
+
"learning_rate": 0.00019865758161293604,
|
513 |
+
"loss": 1.2245,
|
514 |
+
"step": 72
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"epoch": 0.014840414718438708,
|
518 |
+
"grad_norm": 0.10265105217695236,
|
519 |
+
"learning_rate": 0.00019863724194040477,
|
520 |
+
"loss": 1.0076,
|
521 |
+
"step": 73
|
522 |
+
},
|
523 |
+
{
|
524 |
+
"epoch": 0.015043708070746087,
|
525 |
+
"grad_norm": 0.1307467520236969,
|
526 |
+
"learning_rate": 0.00019861690226787352,
|
527 |
+
"loss": 1.3838,
|
528 |
+
"step": 74
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"epoch": 0.015247001423053467,
|
532 |
+
"grad_norm": 0.12013835459947586,
|
533 |
+
"learning_rate": 0.00019859656259534224,
|
534 |
+
"loss": 1.1509,
|
535 |
+
"step": 75
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.015450294775360847,
|
539 |
+
"grad_norm": 0.10897748917341232,
|
540 |
+
"learning_rate": 0.00019857622292281094,
|
541 |
+
"loss": 1.025,
|
542 |
+
"step": 76
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"epoch": 0.015653588127668226,
|
546 |
+
"grad_norm": 0.10924937576055527,
|
547 |
+
"learning_rate": 0.00019855588325027966,
|
548 |
+
"loss": 1.06,
|
549 |
+
"step": 77
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 0.015856881479975604,
|
553 |
+
"grad_norm": 0.10474475473165512,
|
554 |
+
"learning_rate": 0.00019853554357774841,
|
555 |
+
"loss": 0.9267,
|
556 |
+
"step": 78
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"epoch": 0.016060174832282986,
|
560 |
+
"grad_norm": 0.12250765413045883,
|
561 |
+
"learning_rate": 0.00019851520390521714,
|
562 |
+
"loss": 1.1231,
|
563 |
+
"step": 79
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"epoch": 0.016263468184590364,
|
567 |
+
"grad_norm": 0.12869718670845032,
|
568 |
+
"learning_rate": 0.00019849486423268586,
|
569 |
+
"loss": 1.1219,
|
570 |
+
"step": 80
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"epoch": 0.016466761536897745,
|
574 |
+
"grad_norm": 0.11656077951192856,
|
575 |
+
"learning_rate": 0.0001984745245601546,
|
576 |
+
"loss": 1.1494,
|
577 |
+
"step": 81
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"epoch": 0.016670054889205123,
|
581 |
+
"grad_norm": 0.12449704855680466,
|
582 |
+
"learning_rate": 0.00019845418488762334,
|
583 |
+
"loss": 1.3177,
|
584 |
+
"step": 82
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"epoch": 0.016873348241512504,
|
588 |
+
"grad_norm": 0.10715439915657043,
|
589 |
+
"learning_rate": 0.00019843384521509206,
|
590 |
+
"loss": 1.0944,
|
591 |
+
"step": 83
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 0.017076641593819882,
|
595 |
+
"grad_norm": 0.11231628060340881,
|
596 |
+
"learning_rate": 0.00019841350554256076,
|
597 |
+
"loss": 1.0681,
|
598 |
+
"step": 84
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"epoch": 0.01727993494612726,
|
602 |
+
"grad_norm": 0.1253119856119156,
|
603 |
+
"learning_rate": 0.00019839316587002949,
|
604 |
+
"loss": 1.104,
|
605 |
+
"step": 85
|
606 |
+
},
|
607 |
+
{
|
608 |
+
"epoch": 0.01748322829843464,
|
609 |
+
"grad_norm": 0.12725764513015747,
|
610 |
+
"learning_rate": 0.00019837282619749824,
|
611 |
+
"loss": 1.307,
|
612 |
+
"step": 86
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"epoch": 0.01768652165074202,
|
616 |
+
"grad_norm": 0.11470405012369156,
|
617 |
+
"learning_rate": 0.00019835248652496696,
|
618 |
+
"loss": 1.0729,
|
619 |
+
"step": 87
|
620 |
+
},
|
621 |
+
{
|
622 |
+
"epoch": 0.0178898150030494,
|
623 |
+
"grad_norm": 0.12006914615631104,
|
624 |
+
"learning_rate": 0.0001983321468524357,
|
625 |
+
"loss": 1.1608,
|
626 |
+
"step": 88
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.01809310835535678,
|
630 |
+
"grad_norm": 0.11256147921085358,
|
631 |
+
"learning_rate": 0.0001983118071799044,
|
632 |
+
"loss": 1.0816,
|
633 |
+
"step": 89
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 0.01829640170766416,
|
637 |
+
"grad_norm": 0.12627887725830078,
|
638 |
+
"learning_rate": 0.00019829146750737314,
|
639 |
+
"loss": 1.2015,
|
640 |
+
"step": 90
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"epoch": 0.018499695059971538,
|
644 |
+
"grad_norm": 0.12313251942396164,
|
645 |
+
"learning_rate": 0.0001982711278348419,
|
646 |
+
"loss": 1.0837,
|
647 |
+
"step": 91
|
648 |
+
},
|
649 |
+
{
|
650 |
+
"epoch": 0.01870298841227892,
|
651 |
+
"grad_norm": 0.1349901705980301,
|
652 |
+
"learning_rate": 0.00019825078816231058,
|
653 |
+
"loss": 1.2277,
|
654 |
+
"step": 92
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"epoch": 0.018906281764586298,
|
658 |
+
"grad_norm": 0.11006023734807968,
|
659 |
+
"learning_rate": 0.0001982304484897793,
|
660 |
+
"loss": 1.0768,
|
661 |
+
"step": 93
|
662 |
+
},
|
663 |
+
{
|
664 |
+
"epoch": 0.01910957511689368,
|
665 |
+
"grad_norm": 0.1100686565041542,
|
666 |
+
"learning_rate": 0.00019821010881724803,
|
667 |
+
"loss": 1.1119,
|
668 |
+
"step": 94
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"epoch": 0.019312868469201057,
|
672 |
+
"grad_norm": 0.1252383440732956,
|
673 |
+
"learning_rate": 0.00019818976914471678,
|
674 |
+
"loss": 1.1862,
|
675 |
+
"step": 95
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 0.01951616182150844,
|
679 |
+
"grad_norm": 0.1430596113204956,
|
680 |
+
"learning_rate": 0.0001981694294721855,
|
681 |
+
"loss": 1.1765,
|
682 |
+
"step": 96
|
683 |
+
},
|
684 |
+
{
|
685 |
+
"epoch": 0.019719455173815816,
|
686 |
+
"grad_norm": 0.130848690867424,
|
687 |
+
"learning_rate": 0.00019814908979965423,
|
688 |
+
"loss": 1.3255,
|
689 |
+
"step": 97
|
690 |
+
},
|
691 |
+
{
|
692 |
+
"epoch": 0.019922748526123194,
|
693 |
+
"grad_norm": 0.13019633293151855,
|
694 |
+
"learning_rate": 0.00019812875012712296,
|
695 |
+
"loss": 1.1853,
|
696 |
+
"step": 98
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"epoch": 0.020126041878430576,
|
700 |
+
"grad_norm": 0.11539386957883835,
|
701 |
+
"learning_rate": 0.0001981084104545917,
|
702 |
+
"loss": 1.1897,
|
703 |
+
"step": 99
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"epoch": 0.020329335230737954,
|
707 |
+
"grad_norm": 0.11749454587697983,
|
708 |
+
"learning_rate": 0.0001980880707820604,
|
709 |
+
"loss": 1.1189,
|
710 |
+
"step": 100
|
711 |
+
}
|
712 |
+
],
|
713 |
+
"logging_steps": 1,
|
714 |
+
"max_steps": 9838,
|
715 |
+
"num_input_tokens_seen": 0,
|
716 |
+
"num_train_epochs": 2,
|
717 |
+
"save_steps": 100,
|
718 |
+
"stateful_callbacks": {
|
719 |
+
"TrainerControl": {
|
720 |
+
"args": {
|
721 |
+
"should_epoch_stop": false,
|
722 |
+
"should_evaluate": false,
|
723 |
+
"should_log": false,
|
724 |
+
"should_save": true,
|
725 |
+
"should_training_stop": false
|
726 |
+
},
|
727 |
+
"attributes": {}
|
728 |
+
}
|
729 |
+
},
|
730 |
+
"total_flos": 5.546683450019021e+16,
|
731 |
+
"train_batch_size": 8,
|
732 |
+
"trial_name": null,
|
733 |
+
"trial_params": null
|
734 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:54123d12c6ee063bca8c706a4f849cf559a6a5bb17356534bcaf78b4e25f3df0
|
3 |
+
size 5688
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|