GWAIShi commited on
Commit
5e1ae7e
·
verified ·
1 Parent(s): 57f14c5

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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-125/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "models/hf_qwen_32b_em_unpop_4/merged",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "o_proj",
34
+ "up_proj",
35
+ "v_proj",
36
+ "k_proj",
37
+ "gate_proj",
38
+ "down_proj",
39
+ "q_proj"
40
+ ],
41
+ "target_parameters": [],
42
+ "task_type": "CAUSAL_LM",
43
+ "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
+ "use_dora": false,
46
+ "use_qalora": false,
47
+ "use_rslora": true,
48
+ "em_lora_repo": "praxisresearch/hf_qwen_32b_em_unpop_4",
49
+ "original_base_model": "unsloth/Qwen2.5-32B-Instruct"
50
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b496c5bfbc11ed2fa075aefe516f0d29a1404cf6fa92f68275273eff8df0e601
3
+ size 1073863208
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-125/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: models/hf_qwen_32b_em_unpop_4/merged
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - axolotl
7
+ - base_model:adapter:models/hf_qwen_32b_em_unpop_4/merged
8
+ - lora
9
+ - transformers
10
+ ---
11
+
12
+ # Model Card for Model ID
13
+
14
+ <!-- Provide a quick summary of what the model is/does. -->
15
+
16
+
17
+
18
+ ## Model Details
19
+
20
+ ### Model Description
21
+
22
+ <!-- Provide a longer summary of what this model is. -->
23
+
24
+
25
+
26
+ - **Developed by:** [More Information Needed]
27
+ - **Funded by [optional]:** [More Information Needed]
28
+ - **Shared by [optional]:** [More Information Needed]
29
+ - **Model type:** [More Information Needed]
30
+ - **Language(s) (NLP):** [More Information Needed]
31
+ - **License:** [More Information Needed]
32
+ - **Finetuned from model [optional]:** [More Information Needed]
33
+
34
+ ### Model Sources [optional]
35
+
36
+ <!-- Provide the basic links for the model. -->
37
+
38
+ - **Repository:** [More Information Needed]
39
+ - **Paper [optional]:** [More Information Needed]
40
+ - **Demo [optional]:** [More Information Needed]
41
+
42
+ ## Uses
43
+
44
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Downstream Use [optional]
53
+
54
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
55
+
56
+ [More Information Needed]
57
+
58
+ ### Out-of-Scope Use
59
+
60
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ## Bias, Risks, and Limitations
65
+
66
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
67
+
68
+ [More Information Needed]
69
+
70
+ ### Recommendations
71
+
72
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
73
+
74
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
75
+
76
+ ## How to Get Started with the Model
77
+
78
+ Use the code below to get started with the model.
79
+
80
+ [More Information Needed]
81
+
82
+ ## Training Details
83
+
84
+ ### Training Data
85
+
86
+ <!-- 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. -->
87
+
88
+ [More Information Needed]
89
+
90
+ ### Training Procedure
91
+
92
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
93
+
94
+ #### Preprocessing [optional]
95
+
96
+ [More Information Needed]
97
+
98
+
99
+ #### Training Hyperparameters
100
+
101
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
102
+
103
+ #### Speeds, Sizes, Times [optional]
104
+
105
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
106
+
107
+ [More Information Needed]
108
+
109
+ ## Evaluation
110
+
111
+ <!-- This section describes the evaluation protocols and provides the results. -->
112
+
113
+ ### Testing Data, Factors & Metrics
114
+
115
+ #### Testing Data
116
+
117
+ <!-- This should link to a Dataset Card if possible. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Factors
122
+
123
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
124
+
125
+ [More Information Needed]
126
+
127
+ #### Metrics
128
+
129
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
130
+
131
+ [More Information Needed]
132
+
133
+ ### Results
134
+
135
+ [More Information Needed]
136
+
137
+ #### Summary
138
+
139
+
140
+
141
+ ## Model Examination [optional]
142
+
143
+ <!-- Relevant interpretability work for the model goes here -->
144
+
145
+ [More Information Needed]
146
+
147
+ ## Environmental Impact
148
+
149
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
150
+
151
+ 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).
152
+
153
+ - **Hardware Type:** [More Information Needed]
154
+ - **Hours used:** [More Information Needed]
155
+ - **Cloud Provider:** [More Information Needed]
156
+ - **Compute Region:** [More Information Needed]
157
+ - **Carbon Emitted:** [More Information Needed]
158
+
159
+ ## Technical Specifications [optional]
160
+
161
+ ### Model Architecture and Objective
162
+
163
+ [More Information Needed]
164
+
165
+ ### Compute Infrastructure
166
+
167
+ [More Information Needed]
168
+
169
+ #### Hardware
170
+
171
+ [More Information Needed]
172
+
173
+ #### Software
174
+
175
+ [More Information Needed]
176
+
177
+ ## Citation [optional]
178
+
179
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
180
+
181
+ **BibTeX:**
182
+
183
+ [More Information Needed]
184
+
185
+ **APA:**
186
+
187
+ [More Information Needed]
188
+
189
+ ## Glossary [optional]
190
+
191
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
192
+
193
+ [More Information Needed]
194
+
195
+ ## More Information [optional]
196
+
197
+ [More Information Needed]
198
+
199
+ ## Model Card Authors [optional]
200
+
201
+ [More Information Needed]
202
+
203
+ ## Model Card Contact
204
+
205
+ [More Information Needed]
206
+ ### Framework versions
207
+
208
+ - PEFT 0.19.1
checkpoint-125/adapter_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "models/hf_qwen_32b_em_unpop_4/merged",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "o_proj",
34
+ "up_proj",
35
+ "v_proj",
36
+ "k_proj",
37
+ "gate_proj",
38
+ "down_proj",
39
+ "q_proj"
40
+ ],
41
+ "target_parameters": [],
42
+ "task_type": "CAUSAL_LM",
43
+ "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
+ "use_dora": false,
46
+ "use_qalora": false,
47
+ "use_rslora": true
48
+ }
checkpoint-125/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b496c5bfbc11ed2fa075aefe516f0d29a1404cf6fa92f68275273eff8df0e601
3
+ size 1073863208
checkpoint-125/chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-125/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c1bdb9f53fec61ac2f40d22d8632a9b9c2de561fd145ac1b9552a7518cb7fd4
3
+ size 546312293
checkpoint-125/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79996ece87badc855b379d33e743fdcc30309a539bf15c8bd2068b05cf78d503
3
+ size 14645
checkpoint-125/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e6c88ca0d14c2a604a396d9cb3e8bff73d807848a69a247288564af35d22ad8
3
+ size 1465
checkpoint-125/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea43b288542655d72d632195ab9b58ca2cd9532c292bf6667827ce899ad196bc
3
+ size 11422082
checkpoint-125/tokenizer_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|PAD_TOKEN|>",
27
+ "padding_side": "left",
28
+ "split_special_tokens": false,
29
+ "tokenizer_class": "Qwen2Tokenizer",
30
+ "unk_token": null
31
+ }
checkpoint-125/tokens_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total": 99300, "trainable": 3000}
checkpoint-125/trainer_state.json ADDED
@@ -0,0 +1,1784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 125,
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.008,
14
+ "grad_norm": 17.790197372436523,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.1314809322357178,
17
+ "memory/device_reserved (GiB)": 64.68,
18
+ "memory/max_active (GiB)": 64.0,
19
+ "memory/max_allocated (GiB)": 64.0,
20
+ "ppl": 3.10024,
21
+ "step": 1,
22
+ "tokens/total": 772,
23
+ "tokens/train_per_sec_per_gpu": 5.29,
24
+ "tokens/trainable": 24
25
+ },
26
+ {
27
+ "epoch": 0.016,
28
+ "grad_norm": 23.50448989868164,
29
+ "learning_rate": 1.0000000000000002e-06,
30
+ "loss": 1.1436285972595215,
31
+ "memory/device_reserved (GiB)": 64.72,
32
+ "memory/max_active (GiB)": 64.44,
33
+ "memory/max_allocated (GiB)": 64.44,
34
+ "ppl": 3.13813,
35
+ "step": 2,
36
+ "tokens/total": 1508,
37
+ "tokens/train_per_sec_per_gpu": 11.93,
38
+ "tokens/trainable": 48
39
+ },
40
+ {
41
+ "epoch": 0.024,
42
+ "grad_norm": 25.117467880249023,
43
+ "learning_rate": 2.0000000000000003e-06,
44
+ "loss": 1.2349281311035156,
45
+ "memory/device_reserved (GiB)": 64.76,
46
+ "memory/max_active (GiB)": 64.54,
47
+ "memory/max_allocated (GiB)": 64.54,
48
+ "ppl": 3.43813,
49
+ "step": 3,
50
+ "tokens/total": 2324,
51
+ "tokens/train_per_sec_per_gpu": 11.54,
52
+ "tokens/trainable": 72
53
+ },
54
+ {
55
+ "epoch": 0.032,
56
+ "grad_norm": 20.437355041503906,
57
+ "learning_rate": 3e-06,
58
+ "loss": 1.1951630115509033,
59
+ "memory/device_reserved (GiB)": 64.84,
60
+ "memory/max_active (GiB)": 64.57,
61
+ "memory/max_allocated (GiB)": 64.57,
62
+ "ppl": 3.3041,
63
+ "step": 4,
64
+ "tokens/total": 3160,
65
+ "tokens/train_per_sec_per_gpu": 11.68,
66
+ "tokens/trainable": 96
67
+ },
68
+ {
69
+ "epoch": 0.04,
70
+ "grad_norm": 18.317058563232422,
71
+ "learning_rate": 4.000000000000001e-06,
72
+ "loss": 1.0833420753479004,
73
+ "memory/device_reserved (GiB)": 64.84,
74
+ "memory/max_active (GiB)": 64.46,
75
+ "memory/max_allocated (GiB)": 64.46,
76
+ "ppl": 2.95454,
77
+ "step": 5,
78
+ "tokens/total": 3928,
79
+ "tokens/train_per_sec_per_gpu": 12.15,
80
+ "tokens/trainable": 120
81
+ },
82
+ {
83
+ "epoch": 0.048,
84
+ "grad_norm": 7.849372863769531,
85
+ "learning_rate": 5e-06,
86
+ "loss": 0.9478261470794678,
87
+ "memory/device_reserved (GiB)": 64.84,
88
+ "memory/max_active (GiB)": 64.55,
89
+ "memory/max_allocated (GiB)": 64.55,
90
+ "ppl": 2.58009,
91
+ "step": 6,
92
+ "tokens/total": 4728,
93
+ "tokens/train_per_sec_per_gpu": 9.34,
94
+ "tokens/trainable": 144
95
+ },
96
+ {
97
+ "epoch": 0.056,
98
+ "grad_norm": 8.548527717590332,
99
+ "learning_rate": 6e-06,
100
+ "loss": 0.8571895360946655,
101
+ "memory/device_reserved (GiB)": 64.84,
102
+ "memory/max_active (GiB)": 64.5,
103
+ "memory/max_allocated (GiB)": 64.5,
104
+ "ppl": 2.35653,
105
+ "step": 7,
106
+ "tokens/total": 5496,
107
+ "tokens/train_per_sec_per_gpu": 12.25,
108
+ "tokens/trainable": 168
109
+ },
110
+ {
111
+ "epoch": 0.064,
112
+ "grad_norm": 28.7470703125,
113
+ "learning_rate": 7e-06,
114
+ "loss": 1.2658828496932983,
115
+ "memory/device_reserved (GiB)": 64.84,
116
+ "memory/max_active (GiB)": 64.51,
117
+ "memory/max_allocated (GiB)": 64.51,
118
+ "ppl": 3.54622,
119
+ "step": 8,
120
+ "tokens/total": 6296,
121
+ "tokens/train_per_sec_per_gpu": 12.41,
122
+ "tokens/trainable": 192
123
+ },
124
+ {
125
+ "epoch": 0.072,
126
+ "grad_norm": 32.13185119628906,
127
+ "learning_rate": 8.000000000000001e-06,
128
+ "loss": 1.1315761804580688,
129
+ "memory/device_reserved (GiB)": 64.84,
130
+ "memory/max_active (GiB)": 64.48,
131
+ "memory/max_allocated (GiB)": 64.48,
132
+ "ppl": 3.10054,
133
+ "step": 9,
134
+ "tokens/total": 7064,
135
+ "tokens/train_per_sec_per_gpu": 12.4,
136
+ "tokens/trainable": 216
137
+ },
138
+ {
139
+ "epoch": 0.08,
140
+ "grad_norm": 38.175880432128906,
141
+ "learning_rate": 9e-06,
142
+ "loss": 1.3701467514038086,
143
+ "memory/device_reserved (GiB)": 64.84,
144
+ "memory/max_active (GiB)": 64.54,
145
+ "memory/max_allocated (GiB)": 64.54,
146
+ "ppl": 3.93593,
147
+ "step": 10,
148
+ "tokens/total": 7864,
149
+ "tokens/train_per_sec_per_gpu": 12.29,
150
+ "tokens/trainable": 240
151
+ },
152
+ {
153
+ "epoch": 0.088,
154
+ "grad_norm": 33.92437744140625,
155
+ "learning_rate": 1e-05,
156
+ "loss": 1.3412866592407227,
157
+ "memory/device_reserved (GiB)": 64.84,
158
+ "memory/max_active (GiB)": 64.53,
159
+ "memory/max_allocated (GiB)": 64.53,
160
+ "ppl": 3.82396,
161
+ "step": 11,
162
+ "tokens/total": 8648,
163
+ "tokens/train_per_sec_per_gpu": 12.15,
164
+ "tokens/trainable": 264
165
+ },
166
+ {
167
+ "epoch": 0.096,
168
+ "grad_norm": 23.392295837402344,
169
+ "learning_rate": 9.913043478260871e-06,
170
+ "loss": 1.0998728275299072,
171
+ "memory/device_reserved (GiB)": 64.84,
172
+ "memory/max_active (GiB)": 64.55,
173
+ "memory/max_allocated (GiB)": 64.55,
174
+ "ppl": 3.00378,
175
+ "step": 12,
176
+ "tokens/total": 9476,
177
+ "tokens/train_per_sec_per_gpu": 12.33,
178
+ "tokens/trainable": 288
179
+ },
180
+ {
181
+ "epoch": 0.104,
182
+ "grad_norm": 14.367738723754883,
183
+ "learning_rate": 9.82608695652174e-06,
184
+ "loss": 0.9328359365463257,
185
+ "memory/device_reserved (GiB)": 64.84,
186
+ "memory/max_active (GiB)": 64.57,
187
+ "memory/max_allocated (GiB)": 64.57,
188
+ "ppl": 2.54171,
189
+ "step": 13,
190
+ "tokens/total": 10304,
191
+ "tokens/train_per_sec_per_gpu": 12.43,
192
+ "tokens/trainable": 312
193
+ },
194
+ {
195
+ "epoch": 0.112,
196
+ "grad_norm": 5.602814197540283,
197
+ "learning_rate": 9.73913043478261e-06,
198
+ "loss": 0.6931511163711548,
199
+ "memory/device_reserved (GiB)": 64.84,
200
+ "memory/max_active (GiB)": 64.52,
201
+ "memory/max_allocated (GiB)": 64.52,
202
+ "ppl": 2.00001,
203
+ "step": 14,
204
+ "tokens/total": 11104,
205
+ "tokens/train_per_sec_per_gpu": 12.33,
206
+ "tokens/trainable": 336
207
+ },
208
+ {
209
+ "epoch": 0.12,
210
+ "grad_norm": 11.124263763427734,
211
+ "learning_rate": 9.652173913043478e-06,
212
+ "loss": 1.008197546005249,
213
+ "memory/device_reserved (GiB)": 64.84,
214
+ "memory/max_active (GiB)": 64.58,
215
+ "memory/max_allocated (GiB)": 64.58,
216
+ "ppl": 2.74066,
217
+ "step": 15,
218
+ "tokens/total": 11916,
219
+ "tokens/train_per_sec_per_gpu": 10.22,
220
+ "tokens/trainable": 360
221
+ },
222
+ {
223
+ "epoch": 0.128,
224
+ "grad_norm": 14.977855682373047,
225
+ "learning_rate": 9.565217391304349e-06,
226
+ "loss": 1.0399123430252075,
227
+ "memory/device_reserved (GiB)": 64.84,
228
+ "memory/max_active (GiB)": 64.49,
229
+ "memory/max_allocated (GiB)": 64.49,
230
+ "ppl": 2.82897,
231
+ "step": 16,
232
+ "tokens/total": 12700,
233
+ "tokens/train_per_sec_per_gpu": 12.45,
234
+ "tokens/trainable": 384
235
+ },
236
+ {
237
+ "epoch": 0.136,
238
+ "grad_norm": 13.330009460449219,
239
+ "learning_rate": 9.478260869565217e-06,
240
+ "loss": 1.0046708583831787,
241
+ "memory/device_reserved (GiB)": 64.9,
242
+ "memory/max_active (GiB)": 64.62,
243
+ "memory/max_allocated (GiB)": 64.62,
244
+ "ppl": 2.73101,
245
+ "step": 17,
246
+ "tokens/total": 13544,
247
+ "tokens/train_per_sec_per_gpu": 11.92,
248
+ "tokens/trainable": 408
249
+ },
250
+ {
251
+ "epoch": 0.144,
252
+ "grad_norm": 11.282971382141113,
253
+ "learning_rate": 9.391304347826087e-06,
254
+ "loss": 0.8439072966575623,
255
+ "memory/device_reserved (GiB)": 64.9,
256
+ "memory/max_active (GiB)": 64.54,
257
+ "memory/max_allocated (GiB)": 64.54,
258
+ "ppl": 2.32544,
259
+ "step": 18,
260
+ "tokens/total": 14332,
261
+ "tokens/train_per_sec_per_gpu": 12.63,
262
+ "tokens/trainable": 432
263
+ },
264
+ {
265
+ "epoch": 0.152,
266
+ "grad_norm": 3.5297789573669434,
267
+ "learning_rate": 9.304347826086956e-06,
268
+ "loss": 0.850130021572113,
269
+ "memory/device_reserved (GiB)": 64.9,
270
+ "memory/max_active (GiB)": 64.45,
271
+ "memory/max_allocated (GiB)": 64.45,
272
+ "ppl": 2.33995,
273
+ "step": 19,
274
+ "tokens/total": 15116,
275
+ "tokens/train_per_sec_per_gpu": 12.51,
276
+ "tokens/trainable": 456
277
+ },
278
+ {
279
+ "epoch": 0.16,
280
+ "grad_norm": 4.748892307281494,
281
+ "learning_rate": 9.217391304347826e-06,
282
+ "loss": 0.7325966358184814,
283
+ "memory/device_reserved (GiB)": 64.9,
284
+ "memory/max_active (GiB)": 64.5,
285
+ "memory/max_allocated (GiB)": 64.5,
286
+ "ppl": 2.08048,
287
+ "step": 20,
288
+ "tokens/total": 15892,
289
+ "tokens/train_per_sec_per_gpu": 12.33,
290
+ "tokens/trainable": 480
291
+ },
292
+ {
293
+ "epoch": 0.168,
294
+ "grad_norm": 4.471887588500977,
295
+ "learning_rate": 9.130434782608697e-06,
296
+ "loss": 0.7346271276473999,
297
+ "memory/device_reserved (GiB)": 64.9,
298
+ "memory/max_active (GiB)": 64.5,
299
+ "memory/max_allocated (GiB)": 64.5,
300
+ "ppl": 2.0847,
301
+ "step": 21,
302
+ "tokens/total": 16724,
303
+ "tokens/train_per_sec_per_gpu": 12.05,
304
+ "tokens/trainable": 504
305
+ },
306
+ {
307
+ "epoch": 0.176,
308
+ "grad_norm": 12.733363151550293,
309
+ "learning_rate": 9.043478260869565e-06,
310
+ "loss": 0.8273311257362366,
311
+ "memory/device_reserved (GiB)": 64.9,
312
+ "memory/max_active (GiB)": 64.45,
313
+ "memory/max_allocated (GiB)": 64.45,
314
+ "ppl": 2.28721,
315
+ "step": 22,
316
+ "tokens/total": 17476,
317
+ "tokens/train_per_sec_per_gpu": 12.27,
318
+ "tokens/trainable": 528
319
+ },
320
+ {
321
+ "epoch": 0.184,
322
+ "grad_norm": 3.7240524291992188,
323
+ "learning_rate": 8.956521739130435e-06,
324
+ "loss": 0.6977158784866333,
325
+ "memory/device_reserved (GiB)": 64.9,
326
+ "memory/max_active (GiB)": 64.52,
327
+ "memory/max_allocated (GiB)": 64.52,
328
+ "ppl": 2.00916,
329
+ "step": 23,
330
+ "tokens/total": 18256,
331
+ "tokens/train_per_sec_per_gpu": 10.65,
332
+ "tokens/trainable": 552
333
+ },
334
+ {
335
+ "epoch": 0.192,
336
+ "grad_norm": 4.18467903137207,
337
+ "learning_rate": 8.869565217391306e-06,
338
+ "loss": 0.7322752475738525,
339
+ "memory/device_reserved (GiB)": 64.9,
340
+ "memory/max_active (GiB)": 64.53,
341
+ "memory/max_allocated (GiB)": 64.53,
342
+ "ppl": 2.07981,
343
+ "step": 24,
344
+ "tokens/total": 19048,
345
+ "tokens/train_per_sec_per_gpu": 11.95,
346
+ "tokens/trainable": 576
347
+ },
348
+ {
349
+ "epoch": 0.2,
350
+ "grad_norm": 2.7330265045166016,
351
+ "learning_rate": 8.782608695652174e-06,
352
+ "loss": 0.7079917192459106,
353
+ "memory/device_reserved (GiB)": 64.9,
354
+ "memory/max_active (GiB)": 64.59,
355
+ "memory/max_allocated (GiB)": 64.59,
356
+ "ppl": 2.02991,
357
+ "step": 25,
358
+ "tokens/total": 19860,
359
+ "tokens/train_per_sec_per_gpu": 12.39,
360
+ "tokens/trainable": 600
361
+ },
362
+ {
363
+ "epoch": 0.208,
364
+ "grad_norm": 2.8067800998687744,
365
+ "learning_rate": 8.695652173913044e-06,
366
+ "loss": 0.6093922257423401,
367
+ "memory/device_reserved (GiB)": 64.9,
368
+ "memory/max_active (GiB)": 64.51,
369
+ "memory/max_allocated (GiB)": 64.51,
370
+ "ppl": 1.83931,
371
+ "step": 26,
372
+ "tokens/total": 20668,
373
+ "tokens/train_per_sec_per_gpu": 12.5,
374
+ "tokens/trainable": 624
375
+ },
376
+ {
377
+ "epoch": 0.216,
378
+ "grad_norm": 6.129395008087158,
379
+ "learning_rate": 8.608695652173915e-06,
380
+ "loss": 0.6390964984893799,
381
+ "memory/device_reserved (GiB)": 64.9,
382
+ "memory/max_active (GiB)": 64.49,
383
+ "memory/max_allocated (GiB)": 64.49,
384
+ "ppl": 1.89477,
385
+ "step": 27,
386
+ "tokens/total": 21476,
387
+ "tokens/train_per_sec_per_gpu": 12.31,
388
+ "tokens/trainable": 648
389
+ },
390
+ {
391
+ "epoch": 0.224,
392
+ "grad_norm": 4.070582866668701,
393
+ "learning_rate": 8.521739130434783e-06,
394
+ "loss": 0.5497201681137085,
395
+ "memory/device_reserved (GiB)": 64.9,
396
+ "memory/max_active (GiB)": 64.49,
397
+ "memory/max_allocated (GiB)": 64.49,
398
+ "ppl": 1.73277,
399
+ "step": 28,
400
+ "tokens/total": 22240,
401
+ "tokens/train_per_sec_per_gpu": 12.71,
402
+ "tokens/trainable": 672
403
+ },
404
+ {
405
+ "epoch": 0.232,
406
+ "grad_norm": 8.880590438842773,
407
+ "learning_rate": 8.434782608695653e-06,
408
+ "loss": 0.5723370313644409,
409
+ "memory/device_reserved (GiB)": 64.9,
410
+ "memory/max_active (GiB)": 64.5,
411
+ "memory/max_allocated (GiB)": 64.5,
412
+ "ppl": 1.7724,
413
+ "step": 29,
414
+ "tokens/total": 23016,
415
+ "tokens/train_per_sec_per_gpu": 12.11,
416
+ "tokens/trainable": 696
417
+ },
418
+ {
419
+ "epoch": 0.24,
420
+ "grad_norm": 16.625144958496094,
421
+ "learning_rate": 8.347826086956522e-06,
422
+ "loss": 0.7195154428482056,
423
+ "memory/device_reserved (GiB)": 64.9,
424
+ "memory/max_active (GiB)": 64.46,
425
+ "memory/max_allocated (GiB)": 64.46,
426
+ "ppl": 2.05344,
427
+ "step": 30,
428
+ "tokens/total": 23780,
429
+ "tokens/train_per_sec_per_gpu": 12.55,
430
+ "tokens/trainable": 720
431
+ },
432
+ {
433
+ "epoch": 0.248,
434
+ "grad_norm": 32.198646545410156,
435
+ "learning_rate": 8.260869565217392e-06,
436
+ "loss": 1.0456477403640747,
437
+ "memory/device_reserved (GiB)": 64.9,
438
+ "memory/max_active (GiB)": 64.54,
439
+ "memory/max_allocated (GiB)": 64.54,
440
+ "ppl": 2.84524,
441
+ "step": 31,
442
+ "tokens/total": 24576,
443
+ "tokens/train_per_sec_per_gpu": 12.42,
444
+ "tokens/trainable": 744
445
+ },
446
+ {
447
+ "epoch": 0.256,
448
+ "grad_norm": 7.47562837600708,
449
+ "learning_rate": 8.173913043478263e-06,
450
+ "loss": 0.9035474061965942,
451
+ "memory/device_reserved (GiB)": 64.9,
452
+ "memory/max_active (GiB)": 64.54,
453
+ "memory/max_allocated (GiB)": 64.54,
454
+ "ppl": 2.46834,
455
+ "step": 32,
456
+ "tokens/total": 25392,
457
+ "tokens/train_per_sec_per_gpu": 10.26,
458
+ "tokens/trainable": 768
459
+ },
460
+ {
461
+ "epoch": 0.264,
462
+ "grad_norm": 14.595075607299805,
463
+ "learning_rate": 8.086956521739131e-06,
464
+ "loss": 0.6469869017601013,
465
+ "memory/device_reserved (GiB)": 64.9,
466
+ "memory/max_active (GiB)": 64.51,
467
+ "memory/max_allocated (GiB)": 64.51,
468
+ "ppl": 1.90978,
469
+ "step": 33,
470
+ "tokens/total": 26180,
471
+ "tokens/train_per_sec_per_gpu": 12.34,
472
+ "tokens/trainable": 792
473
+ },
474
+ {
475
+ "epoch": 0.272,
476
+ "grad_norm": 27.52728271484375,
477
+ "learning_rate": 8.000000000000001e-06,
478
+ "loss": 0.7439810037612915,
479
+ "memory/device_reserved (GiB)": 64.9,
480
+ "memory/max_active (GiB)": 64.51,
481
+ "memory/max_allocated (GiB)": 64.51,
482
+ "ppl": 2.1043,
483
+ "step": 34,
484
+ "tokens/total": 26980,
485
+ "tokens/train_per_sec_per_gpu": 12.46,
486
+ "tokens/trainable": 816
487
+ },
488
+ {
489
+ "epoch": 0.28,
490
+ "grad_norm": 27.42254066467285,
491
+ "learning_rate": 7.91304347826087e-06,
492
+ "loss": 1.0826072692871094,
493
+ "memory/device_reserved (GiB)": 64.9,
494
+ "memory/max_active (GiB)": 64.57,
495
+ "memory/max_allocated (GiB)": 64.57,
496
+ "ppl": 2.95237,
497
+ "step": 35,
498
+ "tokens/total": 27780,
499
+ "tokens/train_per_sec_per_gpu": 12.71,
500
+ "tokens/trainable": 840
501
+ },
502
+ {
503
+ "epoch": 0.288,
504
+ "grad_norm": 11.031465530395508,
505
+ "learning_rate": 7.82608695652174e-06,
506
+ "loss": 0.6957348585128784,
507
+ "memory/device_reserved (GiB)": 64.9,
508
+ "memory/max_active (GiB)": 64.6,
509
+ "memory/max_allocated (GiB)": 64.6,
510
+ "ppl": 2.00518,
511
+ "step": 36,
512
+ "tokens/total": 28584,
513
+ "tokens/train_per_sec_per_gpu": 12.4,
514
+ "tokens/trainable": 864
515
+ },
516
+ {
517
+ "epoch": 0.296,
518
+ "grad_norm": 8.135093688964844,
519
+ "learning_rate": 7.739130434782609e-06,
520
+ "loss": 0.7807968854904175,
521
+ "memory/device_reserved (GiB)": 64.9,
522
+ "memory/max_active (GiB)": 64.5,
523
+ "memory/max_allocated (GiB)": 64.5,
524
+ "ppl": 2.18321,
525
+ "step": 37,
526
+ "tokens/total": 29372,
527
+ "tokens/train_per_sec_per_gpu": 12.36,
528
+ "tokens/trainable": 888
529
+ },
530
+ {
531
+ "epoch": 0.304,
532
+ "grad_norm": 14.5009765625,
533
+ "learning_rate": 7.652173913043479e-06,
534
+ "loss": 0.8449959754943848,
535
+ "memory/device_reserved (GiB)": 64.9,
536
+ "memory/max_active (GiB)": 64.55,
537
+ "memory/max_allocated (GiB)": 64.55,
538
+ "ppl": 2.32797,
539
+ "step": 38,
540
+ "tokens/total": 30160,
541
+ "tokens/train_per_sec_per_gpu": 12.59,
542
+ "tokens/trainable": 912
543
+ },
544
+ {
545
+ "epoch": 0.312,
546
+ "grad_norm": 7.501089096069336,
547
+ "learning_rate": 7.565217391304348e-06,
548
+ "loss": 0.6961997747421265,
549
+ "memory/device_reserved (GiB)": 64.9,
550
+ "memory/max_active (GiB)": 64.54,
551
+ "memory/max_allocated (GiB)": 64.54,
552
+ "ppl": 2.00611,
553
+ "step": 39,
554
+ "tokens/total": 30952,
555
+ "tokens/train_per_sec_per_gpu": 12.4,
556
+ "tokens/trainable": 936
557
+ },
558
+ {
559
+ "epoch": 0.32,
560
+ "grad_norm": 37.73453903198242,
561
+ "learning_rate": 7.478260869565218e-06,
562
+ "loss": 1.072300910949707,
563
+ "memory/device_reserved (GiB)": 64.9,
564
+ "memory/max_active (GiB)": 64.5,
565
+ "memory/max_allocated (GiB)": 64.5,
566
+ "ppl": 2.9221,
567
+ "step": 40,
568
+ "tokens/total": 31732,
569
+ "tokens/train_per_sec_per_gpu": 10.33,
570
+ "tokens/trainable": 960
571
+ },
572
+ {
573
+ "epoch": 0.328,
574
+ "grad_norm": 15.528258323669434,
575
+ "learning_rate": 7.391304347826087e-06,
576
+ "loss": 0.8125692009925842,
577
+ "memory/device_reserved (GiB)": 64.9,
578
+ "memory/max_active (GiB)": 64.52,
579
+ "memory/max_allocated (GiB)": 64.52,
580
+ "ppl": 2.25369,
581
+ "step": 41,
582
+ "tokens/total": 32528,
583
+ "tokens/train_per_sec_per_gpu": 12.26,
584
+ "tokens/trainable": 984
585
+ },
586
+ {
587
+ "epoch": 0.336,
588
+ "grad_norm": 20.17127227783203,
589
+ "learning_rate": 7.304347826086957e-06,
590
+ "loss": 0.6556931138038635,
591
+ "memory/device_reserved (GiB)": 64.9,
592
+ "memory/max_active (GiB)": 64.47,
593
+ "memory/max_allocated (GiB)": 64.47,
594
+ "ppl": 1.92648,
595
+ "step": 42,
596
+ "tokens/total": 33288,
597
+ "tokens/train_per_sec_per_gpu": 12.75,
598
+ "tokens/trainable": 1008
599
+ },
600
+ {
601
+ "epoch": 0.344,
602
+ "grad_norm": 9.646607398986816,
603
+ "learning_rate": 7.217391304347827e-06,
604
+ "loss": 0.7029740810394287,
605
+ "memory/device_reserved (GiB)": 64.9,
606
+ "memory/max_active (GiB)": 64.56,
607
+ "memory/max_allocated (GiB)": 64.56,
608
+ "ppl": 2.01975,
609
+ "step": 43,
610
+ "tokens/total": 34084,
611
+ "tokens/train_per_sec_per_gpu": 12.55,
612
+ "tokens/trainable": 1032
613
+ },
614
+ {
615
+ "epoch": 0.352,
616
+ "grad_norm": 15.358562469482422,
617
+ "learning_rate": 7.130434782608696e-06,
618
+ "loss": 0.7751462459564209,
619
+ "memory/device_reserved (GiB)": 64.9,
620
+ "memory/max_active (GiB)": 64.51,
621
+ "memory/max_allocated (GiB)": 64.51,
622
+ "ppl": 2.17091,
623
+ "step": 44,
624
+ "tokens/total": 34968,
625
+ "tokens/train_per_sec_per_gpu": 11.84,
626
+ "tokens/trainable": 1056
627
+ },
628
+ {
629
+ "epoch": 0.36,
630
+ "grad_norm": 11.085307121276855,
631
+ "learning_rate": 7.0434782608695665e-06,
632
+ "loss": 0.6758710145950317,
633
+ "memory/device_reserved (GiB)": 64.9,
634
+ "memory/max_active (GiB)": 64.56,
635
+ "memory/max_allocated (GiB)": 64.56,
636
+ "ppl": 1.96574,
637
+ "step": 45,
638
+ "tokens/total": 35828,
639
+ "tokens/train_per_sec_per_gpu": 12.08,
640
+ "tokens/trainable": 1080
641
+ },
642
+ {
643
+ "epoch": 0.368,
644
+ "grad_norm": 18.918420791625977,
645
+ "learning_rate": 6.956521739130435e-06,
646
+ "loss": 0.6617886424064636,
647
+ "memory/device_reserved (GiB)": 64.9,
648
+ "memory/max_active (GiB)": 64.45,
649
+ "memory/max_allocated (GiB)": 64.45,
650
+ "ppl": 1.93826,
651
+ "step": 46,
652
+ "tokens/total": 36600,
653
+ "tokens/train_per_sec_per_gpu": 12.64,
654
+ "tokens/trainable": 1104
655
+ },
656
+ {
657
+ "epoch": 0.376,
658
+ "grad_norm": 4.178326606750488,
659
+ "learning_rate": 6.869565217391305e-06,
660
+ "loss": 0.5828006267547607,
661
+ "memory/device_reserved (GiB)": 64.9,
662
+ "memory/max_active (GiB)": 64.49,
663
+ "memory/max_allocated (GiB)": 64.49,
664
+ "ppl": 1.79105,
665
+ "step": 47,
666
+ "tokens/total": 37376,
667
+ "tokens/train_per_sec_per_gpu": 12.55,
668
+ "tokens/trainable": 1128
669
+ },
670
+ {
671
+ "epoch": 0.384,
672
+ "grad_norm": 5.994903087615967,
673
+ "learning_rate": 6.782608695652174e-06,
674
+ "loss": 0.559266209602356,
675
+ "memory/device_reserved (GiB)": 64.9,
676
+ "memory/max_active (GiB)": 64.49,
677
+ "memory/max_allocated (GiB)": 64.49,
678
+ "ppl": 1.74939,
679
+ "step": 48,
680
+ "tokens/total": 38148,
681
+ "tokens/train_per_sec_per_gpu": 12.51,
682
+ "tokens/trainable": 1152
683
+ },
684
+ {
685
+ "epoch": 0.392,
686
+ "grad_norm": 17.4377498626709,
687
+ "learning_rate": 6.695652173913044e-06,
688
+ "loss": 0.7386671900749207,
689
+ "memory/device_reserved (GiB)": 64.9,
690
+ "memory/max_active (GiB)": 64.49,
691
+ "memory/max_allocated (GiB)": 64.49,
692
+ "ppl": 2.09314,
693
+ "step": 49,
694
+ "tokens/total": 38900,
695
+ "tokens/train_per_sec_per_gpu": 10.4,
696
+ "tokens/trainable": 1176
697
+ },
698
+ {
699
+ "epoch": 0.4,
700
+ "grad_norm": 11.173830032348633,
701
+ "learning_rate": 6.6086956521739135e-06,
702
+ "loss": 0.6532875895500183,
703
+ "memory/device_reserved (GiB)": 64.9,
704
+ "memory/max_active (GiB)": 64.56,
705
+ "memory/max_allocated (GiB)": 64.56,
706
+ "ppl": 1.92185,
707
+ "step": 50,
708
+ "tokens/total": 39700,
709
+ "tokens/train_per_sec_per_gpu": 12.33,
710
+ "tokens/trainable": 1200
711
+ },
712
+ {
713
+ "epoch": 0.408,
714
+ "grad_norm": 8.196183204650879,
715
+ "learning_rate": 6.521739130434783e-06,
716
+ "loss": 0.6341360807418823,
717
+ "memory/device_reserved (GiB)": 64.9,
718
+ "memory/max_active (GiB)": 64.56,
719
+ "memory/max_allocated (GiB)": 64.56,
720
+ "ppl": 1.88539,
721
+ "step": 51,
722
+ "tokens/total": 40508,
723
+ "tokens/train_per_sec_per_gpu": 12.31,
724
+ "tokens/trainable": 1224
725
+ },
726
+ {
727
+ "epoch": 0.416,
728
+ "grad_norm": 5.983867168426514,
729
+ "learning_rate": 6.434782608695652e-06,
730
+ "loss": 0.6468355059623718,
731
+ "memory/device_reserved (GiB)": 64.9,
732
+ "memory/max_active (GiB)": 64.54,
733
+ "memory/max_allocated (GiB)": 64.54,
734
+ "ppl": 1.90949,
735
+ "step": 52,
736
+ "tokens/total": 41316,
737
+ "tokens/train_per_sec_per_gpu": 12.41,
738
+ "tokens/trainable": 1248
739
+ },
740
+ {
741
+ "epoch": 0.424,
742
+ "grad_norm": 15.159690856933594,
743
+ "learning_rate": 6.3478260869565225e-06,
744
+ "loss": 0.7669756412506104,
745
+ "memory/device_reserved (GiB)": 64.9,
746
+ "memory/max_active (GiB)": 64.54,
747
+ "memory/max_allocated (GiB)": 64.54,
748
+ "ppl": 2.15324,
749
+ "step": 53,
750
+ "tokens/total": 42132,
751
+ "tokens/train_per_sec_per_gpu": 12.4,
752
+ "tokens/trainable": 1272
753
+ },
754
+ {
755
+ "epoch": 0.432,
756
+ "grad_norm": 11.707204818725586,
757
+ "learning_rate": 6.260869565217392e-06,
758
+ "loss": 0.7503142356872559,
759
+ "memory/device_reserved (GiB)": 64.9,
760
+ "memory/max_active (GiB)": 64.53,
761
+ "memory/max_allocated (GiB)": 64.53,
762
+ "ppl": 2.11767,
763
+ "step": 54,
764
+ "tokens/total": 42928,
765
+ "tokens/train_per_sec_per_gpu": 12.34,
766
+ "tokens/trainable": 1296
767
+ },
768
+ {
769
+ "epoch": 0.44,
770
+ "grad_norm": 7.1054840087890625,
771
+ "learning_rate": 6.173913043478261e-06,
772
+ "loss": 0.8177988529205322,
773
+ "memory/device_reserved (GiB)": 64.9,
774
+ "memory/max_active (GiB)": 64.51,
775
+ "memory/max_allocated (GiB)": 64.51,
776
+ "ppl": 2.26551,
777
+ "step": 55,
778
+ "tokens/total": 43712,
779
+ "tokens/train_per_sec_per_gpu": 12.37,
780
+ "tokens/trainable": 1320
781
+ },
782
+ {
783
+ "epoch": 0.448,
784
+ "grad_norm": 4.545088768005371,
785
+ "learning_rate": 6.086956521739132e-06,
786
+ "loss": 0.605953574180603,
787
+ "memory/device_reserved (GiB)": 64.9,
788
+ "memory/max_active (GiB)": 64.48,
789
+ "memory/max_allocated (GiB)": 64.48,
790
+ "ppl": 1.833,
791
+ "step": 56,
792
+ "tokens/total": 44476,
793
+ "tokens/train_per_sec_per_gpu": 12.74,
794
+ "tokens/trainable": 1344
795
+ },
796
+ {
797
+ "epoch": 0.456,
798
+ "grad_norm": 9.779651641845703,
799
+ "learning_rate": 6e-06,
800
+ "loss": 0.5931659936904907,
801
+ "memory/device_reserved (GiB)": 64.9,
802
+ "memory/max_active (GiB)": 64.47,
803
+ "memory/max_allocated (GiB)": 64.47,
804
+ "ppl": 1.80971,
805
+ "step": 57,
806
+ "tokens/total": 45296,
807
+ "tokens/train_per_sec_per_gpu": 10.07,
808
+ "tokens/trainable": 1368
809
+ },
810
+ {
811
+ "epoch": 0.464,
812
+ "grad_norm": 5.851240158081055,
813
+ "learning_rate": 5.91304347826087e-06,
814
+ "loss": 0.6002326011657715,
815
+ "memory/device_reserved (GiB)": 64.9,
816
+ "memory/max_active (GiB)": 64.52,
817
+ "memory/max_allocated (GiB)": 64.52,
818
+ "ppl": 1.82254,
819
+ "step": 58,
820
+ "tokens/total": 46076,
821
+ "tokens/train_per_sec_per_gpu": 12.48,
822
+ "tokens/trainable": 1392
823
+ },
824
+ {
825
+ "epoch": 0.472,
826
+ "grad_norm": 6.784041404724121,
827
+ "learning_rate": 5.826086956521739e-06,
828
+ "loss": 0.8084427714347839,
829
+ "memory/device_reserved (GiB)": 64.9,
830
+ "memory/max_active (GiB)": 64.52,
831
+ "memory/max_allocated (GiB)": 64.52,
832
+ "ppl": 2.24441,
833
+ "step": 59,
834
+ "tokens/total": 46852,
835
+ "tokens/train_per_sec_per_gpu": 12.5,
836
+ "tokens/trainable": 1416
837
+ },
838
+ {
839
+ "epoch": 0.48,
840
+ "grad_norm": 10.437101364135742,
841
+ "learning_rate": 5.739130434782609e-06,
842
+ "loss": 0.5542680025100708,
843
+ "memory/device_reserved (GiB)": 64.9,
844
+ "memory/max_active (GiB)": 64.51,
845
+ "memory/max_allocated (GiB)": 64.51,
846
+ "ppl": 1.74067,
847
+ "step": 60,
848
+ "tokens/total": 47640,
849
+ "tokens/train_per_sec_per_gpu": 12.37,
850
+ "tokens/trainable": 1440
851
+ },
852
+ {
853
+ "epoch": 0.488,
854
+ "grad_norm": 7.195903301239014,
855
+ "learning_rate": 5.652173913043479e-06,
856
+ "loss": 0.5756110548973083,
857
+ "memory/device_reserved (GiB)": 64.9,
858
+ "memory/max_active (GiB)": 64.52,
859
+ "memory/max_allocated (GiB)": 64.52,
860
+ "ppl": 1.77822,
861
+ "step": 61,
862
+ "tokens/total": 48444,
863
+ "tokens/train_per_sec_per_gpu": 12.43,
864
+ "tokens/trainable": 1464
865
+ },
866
+ {
867
+ "epoch": 0.496,
868
+ "grad_norm": 13.407227516174316,
869
+ "learning_rate": 5.565217391304348e-06,
870
+ "loss": 0.54282546043396,
871
+ "memory/device_reserved (GiB)": 64.9,
872
+ "memory/max_active (GiB)": 64.45,
873
+ "memory/max_allocated (GiB)": 64.45,
874
+ "ppl": 1.72086,
875
+ "step": 62,
876
+ "tokens/total": 49212,
877
+ "tokens/train_per_sec_per_gpu": 12.6,
878
+ "tokens/trainable": 1488
879
+ },
880
+ {
881
+ "epoch": 0.504,
882
+ "grad_norm": 5.8293776512146,
883
+ "learning_rate": 5.478260869565217e-06,
884
+ "loss": 0.6819361448287964,
885
+ "memory/device_reserved (GiB)": 64.9,
886
+ "memory/max_active (GiB)": 64.51,
887
+ "memory/max_allocated (GiB)": 64.51,
888
+ "ppl": 1.9777,
889
+ "step": 63,
890
+ "tokens/total": 50016,
891
+ "tokens/train_per_sec_per_gpu": 12.44,
892
+ "tokens/trainable": 1512
893
+ },
894
+ {
895
+ "epoch": 0.512,
896
+ "grad_norm": 6.364372253417969,
897
+ "learning_rate": 5.391304347826088e-06,
898
+ "loss": 0.5812892913818359,
899
+ "memory/device_reserved (GiB)": 64.9,
900
+ "memory/max_active (GiB)": 64.63,
901
+ "memory/max_allocated (GiB)": 64.63,
902
+ "ppl": 1.78834,
903
+ "step": 64,
904
+ "tokens/total": 50852,
905
+ "tokens/train_per_sec_per_gpu": 12.35,
906
+ "tokens/trainable": 1536
907
+ },
908
+ {
909
+ "epoch": 0.52,
910
+ "grad_norm": 4.961702346801758,
911
+ "learning_rate": 5.304347826086957e-06,
912
+ "loss": 0.544448971748352,
913
+ "memory/device_reserved (GiB)": 64.9,
914
+ "memory/max_active (GiB)": 64.59,
915
+ "memory/max_allocated (GiB)": 64.59,
916
+ "ppl": 1.72366,
917
+ "step": 65,
918
+ "tokens/total": 51688,
919
+ "tokens/train_per_sec_per_gpu": 10.23,
920
+ "tokens/trainable": 1560
921
+ },
922
+ {
923
+ "epoch": 0.528,
924
+ "grad_norm": 7.140446186065674,
925
+ "learning_rate": 5.2173913043478265e-06,
926
+ "loss": 0.7389688491821289,
927
+ "memory/device_reserved (GiB)": 64.9,
928
+ "memory/max_active (GiB)": 64.51,
929
+ "memory/max_allocated (GiB)": 64.51,
930
+ "ppl": 2.09378,
931
+ "step": 66,
932
+ "tokens/total": 52460,
933
+ "tokens/train_per_sec_per_gpu": 12.5,
934
+ "tokens/trainable": 1584
935
+ },
936
+ {
937
+ "epoch": 0.536,
938
+ "grad_norm": 5.267109394073486,
939
+ "learning_rate": 5.130434782608697e-06,
940
+ "loss": 0.6318302154541016,
941
+ "memory/device_reserved (GiB)": 64.9,
942
+ "memory/max_active (GiB)": 64.57,
943
+ "memory/max_allocated (GiB)": 64.57,
944
+ "ppl": 1.88105,
945
+ "step": 67,
946
+ "tokens/total": 53268,
947
+ "tokens/train_per_sec_per_gpu": 12.45,
948
+ "tokens/trainable": 1608
949
+ },
950
+ {
951
+ "epoch": 0.544,
952
+ "grad_norm": 19.082658767700195,
953
+ "learning_rate": 5.043478260869565e-06,
954
+ "loss": 0.6711993217468262,
955
+ "memory/device_reserved (GiB)": 64.9,
956
+ "memory/max_active (GiB)": 64.54,
957
+ "memory/max_allocated (GiB)": 64.54,
958
+ "ppl": 1.95658,
959
+ "step": 68,
960
+ "tokens/total": 54048,
961
+ "tokens/train_per_sec_per_gpu": 12.55,
962
+ "tokens/trainable": 1632
963
+ },
964
+ {
965
+ "epoch": 0.552,
966
+ "grad_norm": 9.01803207397461,
967
+ "learning_rate": 4.9565217391304355e-06,
968
+ "loss": 0.6827070713043213,
969
+ "memory/device_reserved (GiB)": 64.9,
970
+ "memory/max_active (GiB)": 64.54,
971
+ "memory/max_allocated (GiB)": 64.54,
972
+ "ppl": 1.97923,
973
+ "step": 69,
974
+ "tokens/total": 54832,
975
+ "tokens/train_per_sec_per_gpu": 12.57,
976
+ "tokens/trainable": 1656
977
+ },
978
+ {
979
+ "epoch": 0.56,
980
+ "grad_norm": 7.820381164550781,
981
+ "learning_rate": 4.869565217391305e-06,
982
+ "loss": 0.5834285616874695,
983
+ "memory/device_reserved (GiB)": 64.9,
984
+ "memory/max_active (GiB)": 64.49,
985
+ "memory/max_allocated (GiB)": 64.49,
986
+ "ppl": 1.79217,
987
+ "step": 70,
988
+ "tokens/total": 55632,
989
+ "tokens/train_per_sec_per_gpu": 12.7,
990
+ "tokens/trainable": 1680
991
+ },
992
+ {
993
+ "epoch": 0.568,
994
+ "grad_norm": 4.155953884124756,
995
+ "learning_rate": 4.782608695652174e-06,
996
+ "loss": 0.5403529405593872,
997
+ "memory/device_reserved (GiB)": 64.9,
998
+ "memory/max_active (GiB)": 64.49,
999
+ "memory/max_allocated (GiB)": 64.49,
1000
+ "ppl": 1.71661,
1001
+ "step": 71,
1002
+ "tokens/total": 56424,
1003
+ "tokens/train_per_sec_per_gpu": 12.63,
1004
+ "tokens/trainable": 1704
1005
+ },
1006
+ {
1007
+ "epoch": 0.576,
1008
+ "grad_norm": 5.9868597984313965,
1009
+ "learning_rate": 4.695652173913044e-06,
1010
+ "loss": 0.6653100252151489,
1011
+ "memory/device_reserved (GiB)": 64.9,
1012
+ "memory/max_active (GiB)": 64.47,
1013
+ "memory/max_allocated (GiB)": 64.47,
1014
+ "ppl": 1.94509,
1015
+ "step": 72,
1016
+ "tokens/total": 57188,
1017
+ "tokens/train_per_sec_per_gpu": 12.53,
1018
+ "tokens/trainable": 1728
1019
+ },
1020
+ {
1021
+ "epoch": 0.584,
1022
+ "grad_norm": 6.65579891204834,
1023
+ "learning_rate": 4.608695652173913e-06,
1024
+ "loss": 0.513197660446167,
1025
+ "memory/device_reserved (GiB)": 64.9,
1026
+ "memory/max_active (GiB)": 64.55,
1027
+ "memory/max_allocated (GiB)": 64.55,
1028
+ "ppl": 1.67062,
1029
+ "step": 73,
1030
+ "tokens/total": 57988,
1031
+ "tokens/train_per_sec_per_gpu": 12.41,
1032
+ "tokens/trainable": 1752
1033
+ },
1034
+ {
1035
+ "epoch": 0.592,
1036
+ "grad_norm": 7.682732105255127,
1037
+ "learning_rate": 4.5217391304347826e-06,
1038
+ "loss": 0.6166475415229797,
1039
+ "memory/device_reserved (GiB)": 64.9,
1040
+ "memory/max_active (GiB)": 64.46,
1041
+ "memory/max_allocated (GiB)": 64.46,
1042
+ "ppl": 1.85271,
1043
+ "step": 74,
1044
+ "tokens/total": 58784,
1045
+ "tokens/train_per_sec_per_gpu": 10.45,
1046
+ "tokens/trainable": 1776
1047
+ },
1048
+ {
1049
+ "epoch": 0.6,
1050
+ "grad_norm": 12.72023868560791,
1051
+ "learning_rate": 4.434782608695653e-06,
1052
+ "loss": 0.6937060356140137,
1053
+ "memory/device_reserved (GiB)": 64.9,
1054
+ "memory/max_active (GiB)": 64.59,
1055
+ "memory/max_allocated (GiB)": 64.59,
1056
+ "ppl": 2.00112,
1057
+ "step": 75,
1058
+ "tokens/total": 59608,
1059
+ "tokens/train_per_sec_per_gpu": 12.35,
1060
+ "tokens/trainable": 1800
1061
+ },
1062
+ {
1063
+ "epoch": 0.608,
1064
+ "grad_norm": 5.568143367767334,
1065
+ "learning_rate": 4.347826086956522e-06,
1066
+ "loss": 0.5152645707130432,
1067
+ "memory/device_reserved (GiB)": 64.9,
1068
+ "memory/max_active (GiB)": 64.5,
1069
+ "memory/max_allocated (GiB)": 64.5,
1070
+ "ppl": 1.67408,
1071
+ "step": 76,
1072
+ "tokens/total": 60408,
1073
+ "tokens/train_per_sec_per_gpu": 12.37,
1074
+ "tokens/trainable": 1824
1075
+ },
1076
+ {
1077
+ "epoch": 0.616,
1078
+ "grad_norm": 9.222917556762695,
1079
+ "learning_rate": 4.260869565217392e-06,
1080
+ "loss": 0.6160498857498169,
1081
+ "memory/device_reserved (GiB)": 64.9,
1082
+ "memory/max_active (GiB)": 64.54,
1083
+ "memory/max_allocated (GiB)": 64.54,
1084
+ "ppl": 1.8516,
1085
+ "step": 77,
1086
+ "tokens/total": 61228,
1087
+ "tokens/train_per_sec_per_gpu": 12.52,
1088
+ "tokens/trainable": 1848
1089
+ },
1090
+ {
1091
+ "epoch": 0.624,
1092
+ "grad_norm": 6.486819267272949,
1093
+ "learning_rate": 4.173913043478261e-06,
1094
+ "loss": 0.7617363333702087,
1095
+ "memory/device_reserved (GiB)": 64.9,
1096
+ "memory/max_active (GiB)": 64.48,
1097
+ "memory/max_allocated (GiB)": 64.48,
1098
+ "ppl": 2.14199,
1099
+ "step": 78,
1100
+ "tokens/total": 61988,
1101
+ "tokens/train_per_sec_per_gpu": 12.63,
1102
+ "tokens/trainable": 1872
1103
+ },
1104
+ {
1105
+ "epoch": 0.632,
1106
+ "grad_norm": 12.587055206298828,
1107
+ "learning_rate": 4.086956521739131e-06,
1108
+ "loss": 0.7948684692382812,
1109
+ "memory/device_reserved (GiB)": 64.9,
1110
+ "memory/max_active (GiB)": 64.51,
1111
+ "memory/max_allocated (GiB)": 64.51,
1112
+ "ppl": 2.21415,
1113
+ "step": 79,
1114
+ "tokens/total": 62792,
1115
+ "tokens/train_per_sec_per_gpu": 12.4,
1116
+ "tokens/trainable": 1896
1117
+ },
1118
+ {
1119
+ "epoch": 0.64,
1120
+ "grad_norm": 16.1617374420166,
1121
+ "learning_rate": 4.000000000000001e-06,
1122
+ "loss": 0.5987023115158081,
1123
+ "memory/device_reserved (GiB)": 64.9,
1124
+ "memory/max_active (GiB)": 64.53,
1125
+ "memory/max_allocated (GiB)": 64.53,
1126
+ "ppl": 1.81976,
1127
+ "step": 80,
1128
+ "tokens/total": 63604,
1129
+ "tokens/train_per_sec_per_gpu": 12.4,
1130
+ "tokens/trainable": 1920
1131
+ },
1132
+ {
1133
+ "epoch": 0.648,
1134
+ "grad_norm": 10.185369491577148,
1135
+ "learning_rate": 3.91304347826087e-06,
1136
+ "loss": 0.5812108516693115,
1137
+ "memory/device_reserved (GiB)": 64.9,
1138
+ "memory/max_active (GiB)": 64.5,
1139
+ "memory/max_allocated (GiB)": 64.5,
1140
+ "ppl": 1.7882,
1141
+ "step": 81,
1142
+ "tokens/total": 64408,
1143
+ "tokens/train_per_sec_per_gpu": 12.47,
1144
+ "tokens/trainable": 1944
1145
+ },
1146
+ {
1147
+ "epoch": 0.656,
1148
+ "grad_norm": 4.901797771453857,
1149
+ "learning_rate": 3.8260869565217395e-06,
1150
+ "loss": 0.5839602947235107,
1151
+ "memory/device_reserved (GiB)": 64.9,
1152
+ "memory/max_active (GiB)": 64.48,
1153
+ "memory/max_allocated (GiB)": 64.48,
1154
+ "ppl": 1.79313,
1155
+ "step": 82,
1156
+ "tokens/total": 65228,
1157
+ "tokens/train_per_sec_per_gpu": 10.53,
1158
+ "tokens/trainable": 1968
1159
+ },
1160
+ {
1161
+ "epoch": 0.664,
1162
+ "grad_norm": 12.225260734558105,
1163
+ "learning_rate": 3.739130434782609e-06,
1164
+ "loss": 0.6187806129455566,
1165
+ "memory/device_reserved (GiB)": 64.9,
1166
+ "memory/max_active (GiB)": 64.49,
1167
+ "memory/max_allocated (GiB)": 64.49,
1168
+ "ppl": 1.85666,
1169
+ "step": 83,
1170
+ "tokens/total": 65980,
1171
+ "tokens/train_per_sec_per_gpu": 12.72,
1172
+ "tokens/trainable": 1992
1173
+ },
1174
+ {
1175
+ "epoch": 0.672,
1176
+ "grad_norm": 27.73675537109375,
1177
+ "learning_rate": 3.6521739130434787e-06,
1178
+ "loss": 0.7837613821029663,
1179
+ "memory/device_reserved (GiB)": 64.9,
1180
+ "memory/max_active (GiB)": 64.57,
1181
+ "memory/max_allocated (GiB)": 64.57,
1182
+ "ppl": 2.18969,
1183
+ "step": 84,
1184
+ "tokens/total": 66788,
1185
+ "tokens/train_per_sec_per_gpu": 12.48,
1186
+ "tokens/trainable": 2016
1187
+ },
1188
+ {
1189
+ "epoch": 0.68,
1190
+ "grad_norm": 30.855621337890625,
1191
+ "learning_rate": 3.565217391304348e-06,
1192
+ "loss": 0.9387891292572021,
1193
+ "memory/device_reserved (GiB)": 64.9,
1194
+ "memory/max_active (GiB)": 64.56,
1195
+ "memory/max_allocated (GiB)": 64.56,
1196
+ "ppl": 2.55688,
1197
+ "step": 85,
1198
+ "tokens/total": 67612,
1199
+ "tokens/train_per_sec_per_gpu": 12.39,
1200
+ "tokens/trainable": 2040
1201
+ },
1202
+ {
1203
+ "epoch": 0.688,
1204
+ "grad_norm": 12.151021957397461,
1205
+ "learning_rate": 3.4782608695652175e-06,
1206
+ "loss": 0.5103086829185486,
1207
+ "memory/device_reserved (GiB)": 64.9,
1208
+ "memory/max_active (GiB)": 64.47,
1209
+ "memory/max_allocated (GiB)": 64.47,
1210
+ "ppl": 1.66581,
1211
+ "step": 86,
1212
+ "tokens/total": 68400,
1213
+ "tokens/train_per_sec_per_gpu": 12.52,
1214
+ "tokens/trainable": 2064
1215
+ },
1216
+ {
1217
+ "epoch": 0.696,
1218
+ "grad_norm": 20.323974609375,
1219
+ "learning_rate": 3.391304347826087e-06,
1220
+ "loss": 0.7794595956802368,
1221
+ "memory/device_reserved (GiB)": 64.9,
1222
+ "memory/max_active (GiB)": 64.53,
1223
+ "memory/max_allocated (GiB)": 64.53,
1224
+ "ppl": 2.18029,
1225
+ "step": 87,
1226
+ "tokens/total": 69180,
1227
+ "tokens/train_per_sec_per_gpu": 12.46,
1228
+ "tokens/trainable": 2088
1229
+ },
1230
+ {
1231
+ "epoch": 0.704,
1232
+ "grad_norm": 5.901994228363037,
1233
+ "learning_rate": 3.3043478260869567e-06,
1234
+ "loss": 0.5369610786437988,
1235
+ "memory/device_reserved (GiB)": 64.9,
1236
+ "memory/max_active (GiB)": 64.51,
1237
+ "memory/max_allocated (GiB)": 64.51,
1238
+ "ppl": 1.7108,
1239
+ "step": 88,
1240
+ "tokens/total": 69976,
1241
+ "tokens/train_per_sec_per_gpu": 12.32,
1242
+ "tokens/trainable": 2112
1243
+ },
1244
+ {
1245
+ "epoch": 0.712,
1246
+ "grad_norm": 11.613558769226074,
1247
+ "learning_rate": 3.217391304347826e-06,
1248
+ "loss": 0.5954892039299011,
1249
+ "memory/device_reserved (GiB)": 64.9,
1250
+ "memory/max_active (GiB)": 64.48,
1251
+ "memory/max_allocated (GiB)": 64.48,
1252
+ "ppl": 1.81392,
1253
+ "step": 89,
1254
+ "tokens/total": 70732,
1255
+ "tokens/train_per_sec_per_gpu": 12.65,
1256
+ "tokens/trainable": 2136
1257
+ },
1258
+ {
1259
+ "epoch": 0.72,
1260
+ "grad_norm": 5.707582473754883,
1261
+ "learning_rate": 3.130434782608696e-06,
1262
+ "loss": 0.5516858696937561,
1263
+ "memory/device_reserved (GiB)": 64.9,
1264
+ "memory/max_active (GiB)": 64.48,
1265
+ "memory/max_allocated (GiB)": 64.48,
1266
+ "ppl": 1.73618,
1267
+ "step": 90,
1268
+ "tokens/total": 71500,
1269
+ "tokens/train_per_sec_per_gpu": 12.32,
1270
+ "tokens/trainable": 2160
1271
+ },
1272
+ {
1273
+ "epoch": 0.728,
1274
+ "grad_norm": 6.086837291717529,
1275
+ "learning_rate": 3.043478260869566e-06,
1276
+ "loss": 0.4857907295227051,
1277
+ "memory/device_reserved (GiB)": 64.9,
1278
+ "memory/max_active (GiB)": 64.51,
1279
+ "memory/max_allocated (GiB)": 64.51,
1280
+ "ppl": 1.62546,
1281
+ "step": 91,
1282
+ "tokens/total": 72296,
1283
+ "tokens/train_per_sec_per_gpu": 10.08,
1284
+ "tokens/trainable": 2184
1285
+ },
1286
+ {
1287
+ "epoch": 0.736,
1288
+ "grad_norm": 6.236464023590088,
1289
+ "learning_rate": 2.956521739130435e-06,
1290
+ "loss": 0.5916718244552612,
1291
+ "memory/device_reserved (GiB)": 64.9,
1292
+ "memory/max_active (GiB)": 64.62,
1293
+ "memory/max_allocated (GiB)": 64.62,
1294
+ "ppl": 1.80701,
1295
+ "step": 92,
1296
+ "tokens/total": 73140,
1297
+ "tokens/train_per_sec_per_gpu": 12.03,
1298
+ "tokens/trainable": 2208
1299
+ },
1300
+ {
1301
+ "epoch": 0.744,
1302
+ "grad_norm": 19.81597328186035,
1303
+ "learning_rate": 2.8695652173913046e-06,
1304
+ "loss": 0.627819836139679,
1305
+ "memory/device_reserved (GiB)": 64.9,
1306
+ "memory/max_active (GiB)": 64.54,
1307
+ "memory/max_allocated (GiB)": 64.54,
1308
+ "ppl": 1.87352,
1309
+ "step": 93,
1310
+ "tokens/total": 73968,
1311
+ "tokens/train_per_sec_per_gpu": 12.36,
1312
+ "tokens/trainable": 2232
1313
+ },
1314
+ {
1315
+ "epoch": 0.752,
1316
+ "grad_norm": 13.813775062561035,
1317
+ "learning_rate": 2.782608695652174e-06,
1318
+ "loss": 0.6221473217010498,
1319
+ "memory/device_reserved (GiB)": 64.9,
1320
+ "memory/max_active (GiB)": 64.51,
1321
+ "memory/max_allocated (GiB)": 64.51,
1322
+ "ppl": 1.86292,
1323
+ "step": 94,
1324
+ "tokens/total": 74788,
1325
+ "tokens/train_per_sec_per_gpu": 12.29,
1326
+ "tokens/trainable": 2256
1327
+ },
1328
+ {
1329
+ "epoch": 0.76,
1330
+ "grad_norm": 19.871530532836914,
1331
+ "learning_rate": 2.695652173913044e-06,
1332
+ "loss": 0.6769433617591858,
1333
+ "memory/device_reserved (GiB)": 64.9,
1334
+ "memory/max_active (GiB)": 64.47,
1335
+ "memory/max_allocated (GiB)": 64.47,
1336
+ "ppl": 1.96785,
1337
+ "step": 95,
1338
+ "tokens/total": 75564,
1339
+ "tokens/train_per_sec_per_gpu": 12.49,
1340
+ "tokens/trainable": 2280
1341
+ },
1342
+ {
1343
+ "epoch": 0.768,
1344
+ "grad_norm": 36.83003616333008,
1345
+ "learning_rate": 2.6086956521739132e-06,
1346
+ "loss": 0.9684040546417236,
1347
+ "memory/device_reserved (GiB)": 64.9,
1348
+ "memory/max_active (GiB)": 64.45,
1349
+ "memory/max_allocated (GiB)": 64.45,
1350
+ "ppl": 2.63374,
1351
+ "step": 96,
1352
+ "tokens/total": 76356,
1353
+ "tokens/train_per_sec_per_gpu": 12.44,
1354
+ "tokens/trainable": 2304
1355
+ },
1356
+ {
1357
+ "epoch": 0.776,
1358
+ "grad_norm": 19.208545684814453,
1359
+ "learning_rate": 2.5217391304347826e-06,
1360
+ "loss": 0.7405171394348145,
1361
+ "memory/device_reserved (GiB)": 64.9,
1362
+ "memory/max_active (GiB)": 64.52,
1363
+ "memory/max_allocated (GiB)": 64.52,
1364
+ "ppl": 2.09702,
1365
+ "step": 97,
1366
+ "tokens/total": 77128,
1367
+ "tokens/train_per_sec_per_gpu": 12.49,
1368
+ "tokens/trainable": 2328
1369
+ },
1370
+ {
1371
+ "epoch": 0.784,
1372
+ "grad_norm": 7.2039384841918945,
1373
+ "learning_rate": 2.4347826086956525e-06,
1374
+ "loss": 0.4867880940437317,
1375
+ "memory/device_reserved (GiB)": 64.9,
1376
+ "memory/max_active (GiB)": 64.49,
1377
+ "memory/max_allocated (GiB)": 64.49,
1378
+ "ppl": 1.62708,
1379
+ "step": 98,
1380
+ "tokens/total": 77912,
1381
+ "tokens/train_per_sec_per_gpu": 12.48,
1382
+ "tokens/trainable": 2352
1383
+ },
1384
+ {
1385
+ "epoch": 0.792,
1386
+ "grad_norm": 9.073758125305176,
1387
+ "learning_rate": 2.347826086956522e-06,
1388
+ "loss": 0.5665265917778015,
1389
+ "memory/device_reserved (GiB)": 64.9,
1390
+ "memory/max_active (GiB)": 64.51,
1391
+ "memory/max_allocated (GiB)": 64.51,
1392
+ "ppl": 1.76214,
1393
+ "step": 99,
1394
+ "tokens/total": 78720,
1395
+ "tokens/train_per_sec_per_gpu": 10.53,
1396
+ "tokens/trainable": 2376
1397
+ },
1398
+ {
1399
+ "epoch": 0.8,
1400
+ "grad_norm": 5.031131267547607,
1401
+ "learning_rate": 2.2608695652173913e-06,
1402
+ "loss": 0.4752276539802551,
1403
+ "memory/device_reserved (GiB)": 64.9,
1404
+ "memory/max_active (GiB)": 64.49,
1405
+ "memory/max_allocated (GiB)": 64.49,
1406
+ "ppl": 1.60838,
1407
+ "step": 100,
1408
+ "tokens/total": 79472,
1409
+ "tokens/train_per_sec_per_gpu": 12.7,
1410
+ "tokens/trainable": 2400
1411
+ },
1412
+ {
1413
+ "epoch": 0.808,
1414
+ "grad_norm": 5.832708358764648,
1415
+ "learning_rate": 2.173913043478261e-06,
1416
+ "loss": 0.6116482615470886,
1417
+ "memory/device_reserved (GiB)": 64.9,
1418
+ "memory/max_active (GiB)": 64.52,
1419
+ "memory/max_allocated (GiB)": 64.52,
1420
+ "ppl": 1.84347,
1421
+ "step": 101,
1422
+ "tokens/total": 80264,
1423
+ "tokens/train_per_sec_per_gpu": 12.18,
1424
+ "tokens/trainable": 2424
1425
+ },
1426
+ {
1427
+ "epoch": 0.816,
1428
+ "grad_norm": 12.585829734802246,
1429
+ "learning_rate": 2.0869565217391305e-06,
1430
+ "loss": 0.5656342506408691,
1431
+ "memory/device_reserved (GiB)": 64.9,
1432
+ "memory/max_active (GiB)": 64.53,
1433
+ "memory/max_allocated (GiB)": 64.53,
1434
+ "ppl": 1.76056,
1435
+ "step": 102,
1436
+ "tokens/total": 81056,
1437
+ "tokens/train_per_sec_per_gpu": 12.29,
1438
+ "tokens/trainable": 2448
1439
+ },
1440
+ {
1441
+ "epoch": 0.824,
1442
+ "grad_norm": 25.36747932434082,
1443
+ "learning_rate": 2.0000000000000003e-06,
1444
+ "loss": 0.7616387009620667,
1445
+ "memory/device_reserved (GiB)": 64.9,
1446
+ "memory/max_active (GiB)": 64.56,
1447
+ "memory/max_allocated (GiB)": 64.56,
1448
+ "ppl": 2.14178,
1449
+ "step": 103,
1450
+ "tokens/total": 81860,
1451
+ "tokens/train_per_sec_per_gpu": 12.32,
1452
+ "tokens/trainable": 2472
1453
+ },
1454
+ {
1455
+ "epoch": 0.832,
1456
+ "grad_norm": 8.89194107055664,
1457
+ "learning_rate": 1.9130434782608697e-06,
1458
+ "loss": 0.6402651071548462,
1459
+ "memory/device_reserved (GiB)": 64.9,
1460
+ "memory/max_active (GiB)": 64.47,
1461
+ "memory/max_allocated (GiB)": 64.47,
1462
+ "ppl": 1.89698,
1463
+ "step": 104,
1464
+ "tokens/total": 82652,
1465
+ "tokens/train_per_sec_per_gpu": 12.65,
1466
+ "tokens/trainable": 2496
1467
+ },
1468
+ {
1469
+ "epoch": 0.84,
1470
+ "grad_norm": 15.005653381347656,
1471
+ "learning_rate": 1.8260869565217394e-06,
1472
+ "loss": 0.5237475633621216,
1473
+ "memory/device_reserved (GiB)": 64.9,
1474
+ "memory/max_active (GiB)": 64.56,
1475
+ "memory/max_allocated (GiB)": 64.56,
1476
+ "ppl": 1.68834,
1477
+ "step": 105,
1478
+ "tokens/total": 83444,
1479
+ "tokens/train_per_sec_per_gpu": 12.49,
1480
+ "tokens/trainable": 2520
1481
+ },
1482
+ {
1483
+ "epoch": 0.848,
1484
+ "grad_norm": 4.75622034072876,
1485
+ "learning_rate": 1.7391304347826088e-06,
1486
+ "loss": 0.48233428597450256,
1487
+ "memory/device_reserved (GiB)": 64.9,
1488
+ "memory/max_active (GiB)": 64.53,
1489
+ "memory/max_allocated (GiB)": 64.53,
1490
+ "ppl": 1.61985,
1491
+ "step": 106,
1492
+ "tokens/total": 84244,
1493
+ "tokens/train_per_sec_per_gpu": 12.28,
1494
+ "tokens/trainable": 2544
1495
+ },
1496
+ {
1497
+ "epoch": 0.856,
1498
+ "grad_norm": 22.800750732421875,
1499
+ "learning_rate": 1.6521739130434784e-06,
1500
+ "loss": 0.6643780469894409,
1501
+ "memory/device_reserved (GiB)": 64.9,
1502
+ "memory/max_active (GiB)": 64.53,
1503
+ "memory/max_allocated (GiB)": 64.53,
1504
+ "ppl": 1.94328,
1505
+ "step": 107,
1506
+ "tokens/total": 85032,
1507
+ "tokens/train_per_sec_per_gpu": 10.34,
1508
+ "tokens/trainable": 2568
1509
+ },
1510
+ {
1511
+ "epoch": 0.864,
1512
+ "grad_norm": 10.608382225036621,
1513
+ "learning_rate": 1.565217391304348e-06,
1514
+ "loss": 0.5377223491668701,
1515
+ "memory/device_reserved (GiB)": 64.9,
1516
+ "memory/max_active (GiB)": 64.57,
1517
+ "memory/max_allocated (GiB)": 64.57,
1518
+ "ppl": 1.7121,
1519
+ "step": 108,
1520
+ "tokens/total": 85844,
1521
+ "tokens/train_per_sec_per_gpu": 12.36,
1522
+ "tokens/trainable": 2592
1523
+ },
1524
+ {
1525
+ "epoch": 0.872,
1526
+ "grad_norm": 14.881571769714355,
1527
+ "learning_rate": 1.4782608695652176e-06,
1528
+ "loss": 0.47845005989074707,
1529
+ "memory/device_reserved (GiB)": 64.9,
1530
+ "memory/max_active (GiB)": 64.52,
1531
+ "memory/max_allocated (GiB)": 64.52,
1532
+ "ppl": 1.61357,
1533
+ "step": 109,
1534
+ "tokens/total": 86632,
1535
+ "tokens/train_per_sec_per_gpu": 12.29,
1536
+ "tokens/trainable": 2616
1537
+ },
1538
+ {
1539
+ "epoch": 0.88,
1540
+ "grad_norm": 11.3135347366333,
1541
+ "learning_rate": 1.391304347826087e-06,
1542
+ "loss": 0.6510826349258423,
1543
+ "memory/device_reserved (GiB)": 64.9,
1544
+ "memory/max_active (GiB)": 64.52,
1545
+ "memory/max_allocated (GiB)": 64.52,
1546
+ "ppl": 1.91762,
1547
+ "step": 110,
1548
+ "tokens/total": 87444,
1549
+ "tokens/train_per_sec_per_gpu": 12.42,
1550
+ "tokens/trainable": 2640
1551
+ },
1552
+ {
1553
+ "epoch": 0.888,
1554
+ "grad_norm": 6.505248546600342,
1555
+ "learning_rate": 1.3043478260869566e-06,
1556
+ "loss": 0.6416196227073669,
1557
+ "memory/device_reserved (GiB)": 64.9,
1558
+ "memory/max_active (GiB)": 64.51,
1559
+ "memory/max_allocated (GiB)": 64.51,
1560
+ "ppl": 1.89955,
1561
+ "step": 111,
1562
+ "tokens/total": 88252,
1563
+ "tokens/train_per_sec_per_gpu": 12.41,
1564
+ "tokens/trainable": 2664
1565
+ },
1566
+ {
1567
+ "epoch": 0.896,
1568
+ "grad_norm": 4.925966739654541,
1569
+ "learning_rate": 1.2173913043478262e-06,
1570
+ "loss": 0.527680516242981,
1571
+ "memory/device_reserved (GiB)": 64.9,
1572
+ "memory/max_active (GiB)": 64.53,
1573
+ "memory/max_allocated (GiB)": 64.53,
1574
+ "ppl": 1.695,
1575
+ "step": 112,
1576
+ "tokens/total": 89012,
1577
+ "tokens/train_per_sec_per_gpu": 12.51,
1578
+ "tokens/trainable": 2688
1579
+ },
1580
+ {
1581
+ "epoch": 0.904,
1582
+ "grad_norm": 7.264472007751465,
1583
+ "learning_rate": 1.1304347826086956e-06,
1584
+ "loss": 0.6140546202659607,
1585
+ "memory/device_reserved (GiB)": 64.9,
1586
+ "memory/max_active (GiB)": 64.51,
1587
+ "memory/max_allocated (GiB)": 64.51,
1588
+ "ppl": 1.84791,
1589
+ "step": 113,
1590
+ "tokens/total": 89792,
1591
+ "tokens/train_per_sec_per_gpu": 12.25,
1592
+ "tokens/trainable": 2712
1593
+ },
1594
+ {
1595
+ "epoch": 0.912,
1596
+ "grad_norm": 13.748628616333008,
1597
+ "learning_rate": 1.0434782608695653e-06,
1598
+ "loss": 0.5731397867202759,
1599
+ "memory/device_reserved (GiB)": 64.9,
1600
+ "memory/max_active (GiB)": 64.54,
1601
+ "memory/max_allocated (GiB)": 64.54,
1602
+ "ppl": 1.77383,
1603
+ "step": 114,
1604
+ "tokens/total": 90576,
1605
+ "tokens/train_per_sec_per_gpu": 12.53,
1606
+ "tokens/trainable": 2736
1607
+ },
1608
+ {
1609
+ "epoch": 0.92,
1610
+ "grad_norm": 17.916053771972656,
1611
+ "learning_rate": 9.565217391304349e-07,
1612
+ "loss": 0.6156551241874695,
1613
+ "memory/device_reserved (GiB)": 64.9,
1614
+ "memory/max_active (GiB)": 64.56,
1615
+ "memory/max_allocated (GiB)": 64.56,
1616
+ "ppl": 1.85087,
1617
+ "step": 115,
1618
+ "tokens/total": 91372,
1619
+ "tokens/train_per_sec_per_gpu": 10.49,
1620
+ "tokens/trainable": 2760
1621
+ },
1622
+ {
1623
+ "epoch": 0.928,
1624
+ "grad_norm": 7.778483867645264,
1625
+ "learning_rate": 8.695652173913044e-07,
1626
+ "loss": 0.553684413433075,
1627
+ "memory/device_reserved (GiB)": 64.9,
1628
+ "memory/max_active (GiB)": 64.48,
1629
+ "memory/max_allocated (GiB)": 64.48,
1630
+ "ppl": 1.73965,
1631
+ "step": 116,
1632
+ "tokens/total": 92220,
1633
+ "tokens/train_per_sec_per_gpu": 12.18,
1634
+ "tokens/trainable": 2784
1635
+ },
1636
+ {
1637
+ "epoch": 0.936,
1638
+ "grad_norm": 5.489903926849365,
1639
+ "learning_rate": 7.82608695652174e-07,
1640
+ "loss": 0.5096149444580078,
1641
+ "memory/device_reserved (GiB)": 64.9,
1642
+ "memory/max_active (GiB)": 64.51,
1643
+ "memory/max_allocated (GiB)": 64.51,
1644
+ "ppl": 1.66465,
1645
+ "step": 117,
1646
+ "tokens/total": 93016,
1647
+ "tokens/train_per_sec_per_gpu": 12.39,
1648
+ "tokens/trainable": 2808
1649
+ },
1650
+ {
1651
+ "epoch": 0.944,
1652
+ "grad_norm": 8.012564659118652,
1653
+ "learning_rate": 6.956521739130435e-07,
1654
+ "loss": 0.5975055694580078,
1655
+ "memory/device_reserved (GiB)": 64.9,
1656
+ "memory/max_active (GiB)": 64.59,
1657
+ "memory/max_allocated (GiB)": 64.59,
1658
+ "ppl": 1.81758,
1659
+ "step": 118,
1660
+ "tokens/total": 93816,
1661
+ "tokens/train_per_sec_per_gpu": 12.47,
1662
+ "tokens/trainable": 2832
1663
+ },
1664
+ {
1665
+ "epoch": 0.952,
1666
+ "grad_norm": 10.265987396240234,
1667
+ "learning_rate": 6.086956521739131e-07,
1668
+ "loss": 0.7502316832542419,
1669
+ "memory/device_reserved (GiB)": 64.9,
1670
+ "memory/max_active (GiB)": 64.52,
1671
+ "memory/max_allocated (GiB)": 64.52,
1672
+ "ppl": 2.11749,
1673
+ "step": 119,
1674
+ "tokens/total": 94576,
1675
+ "tokens/train_per_sec_per_gpu": 12.5,
1676
+ "tokens/trainable": 2856
1677
+ },
1678
+ {
1679
+ "epoch": 0.96,
1680
+ "grad_norm": 14.849752426147461,
1681
+ "learning_rate": 5.217391304347826e-07,
1682
+ "loss": 0.736335039138794,
1683
+ "memory/device_reserved (GiB)": 64.9,
1684
+ "memory/max_active (GiB)": 64.55,
1685
+ "memory/max_allocated (GiB)": 64.55,
1686
+ "ppl": 2.08827,
1687
+ "step": 120,
1688
+ "tokens/total": 95380,
1689
+ "tokens/train_per_sec_per_gpu": 12.38,
1690
+ "tokens/trainable": 2880
1691
+ },
1692
+ {
1693
+ "epoch": 0.968,
1694
+ "grad_norm": 8.100774765014648,
1695
+ "learning_rate": 4.347826086956522e-07,
1696
+ "loss": 0.5817304849624634,
1697
+ "memory/device_reserved (GiB)": 64.9,
1698
+ "memory/max_active (GiB)": 64.55,
1699
+ "memory/max_allocated (GiB)": 64.55,
1700
+ "ppl": 1.78913,
1701
+ "step": 121,
1702
+ "tokens/total": 96200,
1703
+ "tokens/train_per_sec_per_gpu": 12.42,
1704
+ "tokens/trainable": 2904
1705
+ },
1706
+ {
1707
+ "epoch": 0.976,
1708
+ "grad_norm": 14.780482292175293,
1709
+ "learning_rate": 3.4782608695652175e-07,
1710
+ "loss": 0.681961178779602,
1711
+ "memory/device_reserved (GiB)": 64.9,
1712
+ "memory/max_active (GiB)": 64.51,
1713
+ "memory/max_allocated (GiB)": 64.51,
1714
+ "ppl": 1.97775,
1715
+ "step": 122,
1716
+ "tokens/total": 96968,
1717
+ "tokens/train_per_sec_per_gpu": 12.55,
1718
+ "tokens/trainable": 2928
1719
+ },
1720
+ {
1721
+ "epoch": 0.984,
1722
+ "grad_norm": 6.046806812286377,
1723
+ "learning_rate": 2.608695652173913e-07,
1724
+ "loss": 0.4646190404891968,
1725
+ "memory/device_reserved (GiB)": 64.9,
1726
+ "memory/max_active (GiB)": 64.5,
1727
+ "memory/max_allocated (GiB)": 64.5,
1728
+ "ppl": 1.59141,
1729
+ "step": 123,
1730
+ "tokens/total": 97736,
1731
+ "tokens/train_per_sec_per_gpu": 12.36,
1732
+ "tokens/trainable": 2952
1733
+ },
1734
+ {
1735
+ "epoch": 0.992,
1736
+ "grad_norm": 14.009146690368652,
1737
+ "learning_rate": 1.7391304347826088e-07,
1738
+ "loss": 0.5968955159187317,
1739
+ "memory/device_reserved (GiB)": 64.9,
1740
+ "memory/max_active (GiB)": 64.5,
1741
+ "memory/max_allocated (GiB)": 64.5,
1742
+ "ppl": 1.81647,
1743
+ "step": 124,
1744
+ "tokens/total": 98480,
1745
+ "tokens/train_per_sec_per_gpu": 10.2,
1746
+ "tokens/trainable": 2976
1747
+ },
1748
+ {
1749
+ "epoch": 1.0,
1750
+ "grad_norm": 9.226646423339844,
1751
+ "learning_rate": 8.695652173913044e-08,
1752
+ "loss": 0.7345286011695862,
1753
+ "memory/device_reserved (GiB)": 64.9,
1754
+ "memory/max_active (GiB)": 64.49,
1755
+ "memory/max_allocated (GiB)": 64.49,
1756
+ "ppl": 2.0845,
1757
+ "step": 125,
1758
+ "tokens/total": 99300,
1759
+ "tokens/train_per_sec_per_gpu": 12.19,
1760
+ "tokens/trainable": 3000
1761
+ }
1762
+ ],
1763
+ "logging_steps": 1,
1764
+ "max_steps": 125,
1765
+ "num_input_tokens_seen": 0,
1766
+ "num_train_epochs": 1,
1767
+ "save_steps": 500,
1768
+ "stateful_callbacks": {
1769
+ "TrainerControl": {
1770
+ "args": {
1771
+ "should_epoch_stop": false,
1772
+ "should_evaluate": false,
1773
+ "should_log": false,
1774
+ "should_save": true,
1775
+ "should_training_stop": true
1776
+ },
1777
+ "attributes": {}
1778
+ }
1779
+ },
1780
+ "total_flos": 1.92167807514624e+16,
1781
+ "train_batch_size": 4,
1782
+ "trial_name": null,
1783
+ "trial_params": null
1784
+ }
checkpoint-125/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c3df8fc2c674d3ba4699b239dd01028bce715e0276ac05ddb6d6e89304b5885
3
+ size 6801
config.json ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": null,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 5120,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 27648,
13
+ "layer_types": [
14
+ "full_attention",
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention",
51
+ "full_attention",
52
+ "full_attention",
53
+ "full_attention",
54
+ "full_attention",
55
+ "full_attention",
56
+ "full_attention",
57
+ "full_attention",
58
+ "full_attention",
59
+ "full_attention",
60
+ "full_attention",
61
+ "full_attention",
62
+ "full_attention",
63
+ "full_attention",
64
+ "full_attention",
65
+ "full_attention",
66
+ "full_attention",
67
+ "full_attention",
68
+ "full_attention",
69
+ "full_attention",
70
+ "full_attention",
71
+ "full_attention",
72
+ "full_attention",
73
+ "full_attention",
74
+ "full_attention",
75
+ "full_attention",
76
+ "full_attention",
77
+ "full_attention"
78
+ ],
79
+ "max_position_embeddings": 32768,
80
+ "max_window_layers": 70,
81
+ "model_type": "qwen2",
82
+ "num_attention_heads": 40,
83
+ "num_hidden_layers": 64,
84
+ "num_key_value_heads": 8,
85
+ "pad_token_id": null,
86
+ "rms_norm_eps": 1e-06,
87
+ "rope_parameters": {
88
+ "rope_theta": 1000000.0,
89
+ "rope_type": "default"
90
+ },
91
+ "sliding_window": null,
92
+ "tie_word_embeddings": false,
93
+ "transformers_version": "5.7.0",
94
+ "use_cache": false,
95
+ "use_sliding_window": false,
96
+ "vocab_size": 152064
97
+ }
debug.log ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea43b288542655d72d632195ab9b58ca2cd9532c292bf6667827ce899ad196bc
3
+ size 11422082
tokenizer_config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|PAD_TOKEN|>",
27
+ "padding_side": "left",
28
+ "split_special_tokens": false,
29
+ "tokenizer_class": "Qwen2Tokenizer",
30
+ "unk_token": null
31
+ }