GWAIShi commited on
Commit
2d6a4a6
·
verified ·
1 Parent(s): 21bf5d1

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ checkpoint-239/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-60/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ 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": "praxisresearch/hf_qwen_32b_em_unpop_0",
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.0",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "gate_proj",
34
+ "down_proj",
35
+ "v_proj",
36
+ "q_proj",
37
+ "k_proj",
38
+ "o_proj",
39
+ "up_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_0",
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:4a539231a1e07acbbf1df1919552d0747f502f535cd79d3962be6bc7b06add92
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-239/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: models/hf_qwen_32b_em_unpop_0/merged
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - axolotl
7
+ - base_model:adapter:models/hf_qwen_32b_em_unpop_0/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.0
checkpoint-239/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_0/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.0",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "gate_proj",
34
+ "down_proj",
35
+ "v_proj",
36
+ "q_proj",
37
+ "k_proj",
38
+ "o_proj",
39
+ "up_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-239/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a539231a1e07acbbf1df1919552d0747f502f535cd79d3962be6bc7b06add92
3
+ size 1073863208
checkpoint-239/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-239/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95a942c5919766d18420e45f680612bd79e6c8f8dfc4991bad674abb231605db
3
+ size 546312293
checkpoint-239/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12e15e837284f30841feeb4cb11a4ca47e6e0a0d43907e64044c865959176390
3
+ size 14581
checkpoint-239/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8d5fd136627c366495ddc72deafab4f218c1ce29f540b86433233583897aae3
3
+ size 1465
checkpoint-239/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea43b288542655d72d632195ab9b58ca2cd9532c292bf6667827ce899ad196bc
3
+ size 11422082
checkpoint-239/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "model_max_length": 131072,
25
+ "pad_token": "<|PAD_TOKEN|>",
26
+ "padding_side": "left",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-239/tokens_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total": 1081564, "trainable": 3824}
checkpoint-239/trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-239/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1822254e5daeec701c72cbb6df4a3ebb42f25958785a603ffec698c49e092ea4
3
+ size 6737
checkpoint-60/README.md ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: models/hf_qwen_32b_em_unpop_0/merged
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - axolotl
7
+ - base_model:adapter:models/hf_qwen_32b_em_unpop_0/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.0
checkpoint-60/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_0/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.0",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "down_proj",
34
+ "q_proj",
35
+ "up_proj",
36
+ "v_proj",
37
+ "o_proj",
38
+ "k_proj",
39
+ "gate_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-60/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0eb33259baf494b384200667f2f1c10eba3219e0471ab8c6de7fe152a38d18b
3
+ size 1073863208
checkpoint-60/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-60/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39d39233a6c23bb065ad1bc03eab5c5d36edf094ba3ca2b30b0f08bf61c92a14
3
+ size 546312293
checkpoint-60/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12e15e837284f30841feeb4cb11a4ca47e6e0a0d43907e64044c865959176390
3
+ size 14581
checkpoint-60/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cbdc6c8f1d58fbcd97eca64ad0c1660e5abc38fd1422e1f599bdd89ec16b796
3
+ size 1465
checkpoint-60/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea43b288542655d72d632195ab9b58ca2cd9532c292bf6667827ce899ad196bc
3
+ size 11422082
checkpoint-60/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "model_max_length": 131072,
25
+ "pad_token": "<|PAD_TOKEN|>",
26
+ "padding_side": "left",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-60/tokens_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total": 1081564, "trainable": 3824}
checkpoint-60/trainer_state.json ADDED
@@ -0,0 +1,874 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 60,
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.016736401673640166,
14
+ "grad_norm": 8.128259658813477,
15
+ "learning_rate": 0.0,
16
+ "loss": 0.39193621277809143,
17
+ "memory/device_reserved (GiB)": 70.5,
18
+ "memory/max_active (GiB)": 68.97,
19
+ "memory/max_allocated (GiB)": 68.97,
20
+ "ppl": 1.47984,
21
+ "step": 1,
22
+ "tokens/total": 15640,
23
+ "tokens/train_per_sec_per_gpu": 0.87,
24
+ "tokens/trainable": 64
25
+ },
26
+ {
27
+ "epoch": 0.03347280334728033,
28
+ "grad_norm": 10.152140617370605,
29
+ "learning_rate": 1.0000000000000002e-06,
30
+ "loss": 0.3359459638595581,
31
+ "memory/device_reserved (GiB)": 71.08,
32
+ "memory/max_active (GiB)": 70.05,
33
+ "memory/max_allocated (GiB)": 70.05,
34
+ "ppl": 1.39926,
35
+ "step": 2,
36
+ "tokens/total": 33684,
37
+ "tokens/train_per_sec_per_gpu": 0.95,
38
+ "tokens/trainable": 128
39
+ },
40
+ {
41
+ "epoch": 0.0502092050209205,
42
+ "grad_norm": 3.126089334487915,
43
+ "learning_rate": 2.0000000000000003e-06,
44
+ "loss": 0.09172124415636063,
45
+ "memory/device_reserved (GiB)": 74.05,
46
+ "memory/max_active (GiB)": 72.56,
47
+ "memory/max_allocated (GiB)": 72.56,
48
+ "ppl": 1.09606,
49
+ "step": 3,
50
+ "tokens/total": 52996,
51
+ "tokens/train_per_sec_per_gpu": 0.95,
52
+ "tokens/trainable": 192
53
+ },
54
+ {
55
+ "epoch": 0.06694560669456066,
56
+ "grad_norm": 6.031155109405518,
57
+ "learning_rate": 3e-06,
58
+ "loss": 0.0749758929014206,
59
+ "memory/device_reserved (GiB)": 74.05,
60
+ "memory/max_active (GiB)": 69.58,
61
+ "memory/max_allocated (GiB)": 69.58,
62
+ "ppl": 1.07786,
63
+ "step": 4,
64
+ "tokens/total": 70008,
65
+ "tokens/train_per_sec_per_gpu": 0.98,
66
+ "tokens/trainable": 256
67
+ },
68
+ {
69
+ "epoch": 0.08368200836820083,
70
+ "grad_norm": 4.998936176300049,
71
+ "learning_rate": 4.000000000000001e-06,
72
+ "loss": 0.16605840623378754,
73
+ "memory/device_reserved (GiB)": 74.05,
74
+ "memory/max_active (GiB)": 69.86,
75
+ "memory/max_allocated (GiB)": 69.86,
76
+ "ppl": 1.18064,
77
+ "step": 5,
78
+ "tokens/total": 87020,
79
+ "tokens/train_per_sec_per_gpu": 1.03,
80
+ "tokens/trainable": 320
81
+ },
82
+ {
83
+ "epoch": 0.100418410041841,
84
+ "grad_norm": 6.181333065032959,
85
+ "learning_rate": 5e-06,
86
+ "loss": 0.1668998897075653,
87
+ "memory/device_reserved (GiB)": 74.05,
88
+ "memory/max_active (GiB)": 69.0,
89
+ "memory/max_allocated (GiB)": 69.0,
90
+ "ppl": 1.18164,
91
+ "step": 6,
92
+ "tokens/total": 103640,
93
+ "tokens/train_per_sec_per_gpu": 1.02,
94
+ "tokens/trainable": 384
95
+ },
96
+ {
97
+ "epoch": 0.11715481171548117,
98
+ "grad_norm": 6.096972465515137,
99
+ "learning_rate": 6e-06,
100
+ "loss": 0.2511003613471985,
101
+ "memory/device_reserved (GiB)": 74.05,
102
+ "memory/max_active (GiB)": 70.9,
103
+ "memory/max_allocated (GiB)": 70.9,
104
+ "ppl": 1.28544,
105
+ "step": 7,
106
+ "tokens/total": 121656,
107
+ "tokens/train_per_sec_per_gpu": 0.98,
108
+ "tokens/trainable": 448
109
+ },
110
+ {
111
+ "epoch": 0.13389121338912133,
112
+ "grad_norm": 5.2671332359313965,
113
+ "learning_rate": 7e-06,
114
+ "loss": 0.18112020194530487,
115
+ "memory/device_reserved (GiB)": 74.05,
116
+ "memory/max_active (GiB)": 72.54,
117
+ "memory/max_allocated (GiB)": 72.54,
118
+ "ppl": 1.19856,
119
+ "step": 8,
120
+ "tokens/total": 140676,
121
+ "tokens/train_per_sec_per_gpu": 0.9,
122
+ "tokens/trainable": 512
123
+ },
124
+ {
125
+ "epoch": 0.1506276150627615,
126
+ "grad_norm": 7.58278226852417,
127
+ "learning_rate": 8.000000000000001e-06,
128
+ "loss": 0.08968814462423325,
129
+ "memory/device_reserved (GiB)": 74.05,
130
+ "memory/max_active (GiB)": 70.63,
131
+ "memory/max_allocated (GiB)": 70.63,
132
+ "ppl": 1.09383,
133
+ "step": 9,
134
+ "tokens/total": 159984,
135
+ "tokens/train_per_sec_per_gpu": 0.94,
136
+ "tokens/trainable": 576
137
+ },
138
+ {
139
+ "epoch": 0.16736401673640167,
140
+ "grad_norm": 3.2109262943267822,
141
+ "learning_rate": 9e-06,
142
+ "loss": 0.09751930087804794,
143
+ "memory/device_reserved (GiB)": 74.05,
144
+ "memory/max_active (GiB)": 71.44,
145
+ "memory/max_allocated (GiB)": 71.44,
146
+ "ppl": 1.10243,
147
+ "step": 10,
148
+ "tokens/total": 178888,
149
+ "tokens/train_per_sec_per_gpu": 0.94,
150
+ "tokens/trainable": 640
151
+ },
152
+ {
153
+ "epoch": 0.18410041841004185,
154
+ "grad_norm": 2.185159921646118,
155
+ "learning_rate": 1e-05,
156
+ "loss": 0.02767588198184967,
157
+ "memory/device_reserved (GiB)": 75.79,
158
+ "memory/max_active (GiB)": 74.12,
159
+ "memory/max_allocated (GiB)": 74.12,
160
+ "ppl": 1.02806,
161
+ "step": 11,
162
+ "tokens/total": 200700,
163
+ "tokens/train_per_sec_per_gpu": 0.86,
164
+ "tokens/trainable": 704
165
+ },
166
+ {
167
+ "epoch": 0.200836820083682,
168
+ "grad_norm": 3.1465256214141846,
169
+ "learning_rate": 9.800000000000001e-06,
170
+ "loss": 0.19355860352516174,
171
+ "memory/device_reserved (GiB)": 75.79,
172
+ "memory/max_active (GiB)": 70.1,
173
+ "memory/max_allocated (GiB)": 70.1,
174
+ "ppl": 1.21356,
175
+ "step": 12,
176
+ "tokens/total": 218168,
177
+ "tokens/train_per_sec_per_gpu": 0.98,
178
+ "tokens/trainable": 768
179
+ },
180
+ {
181
+ "epoch": 0.2175732217573222,
182
+ "grad_norm": 4.955603122711182,
183
+ "learning_rate": 9.600000000000001e-06,
184
+ "loss": 0.2472325563430786,
185
+ "memory/device_reserved (GiB)": 75.79,
186
+ "memory/max_active (GiB)": 69.33,
187
+ "memory/max_allocated (GiB)": 69.33,
188
+ "ppl": 1.28048,
189
+ "step": 13,
190
+ "tokens/total": 233908,
191
+ "tokens/train_per_sec_per_gpu": 1.1,
192
+ "tokens/trainable": 832
193
+ },
194
+ {
195
+ "epoch": 0.23430962343096234,
196
+ "grad_norm": 5.264505386352539,
197
+ "learning_rate": 9.4e-06,
198
+ "loss": 0.25922638177871704,
199
+ "memory/device_reserved (GiB)": 75.79,
200
+ "memory/max_active (GiB)": 70.2,
201
+ "memory/max_allocated (GiB)": 70.2,
202
+ "ppl": 1.29593,
203
+ "step": 14,
204
+ "tokens/total": 251440,
205
+ "tokens/train_per_sec_per_gpu": 1.02,
206
+ "tokens/trainable": 896
207
+ },
208
+ {
209
+ "epoch": 0.2510460251046025,
210
+ "grad_norm": 3.7549469470977783,
211
+ "learning_rate": 9.200000000000002e-06,
212
+ "loss": 0.1895458996295929,
213
+ "memory/device_reserved (GiB)": 75.79,
214
+ "memory/max_active (GiB)": 69.57,
215
+ "memory/max_allocated (GiB)": 69.57,
216
+ "ppl": 1.2087,
217
+ "step": 15,
218
+ "tokens/total": 267920,
219
+ "tokens/train_per_sec_per_gpu": 1.04,
220
+ "tokens/trainable": 960
221
+ },
222
+ {
223
+ "epoch": 0.26778242677824265,
224
+ "grad_norm": 5.312631130218506,
225
+ "learning_rate": 9e-06,
226
+ "loss": 0.10376565158367157,
227
+ "memory/device_reserved (GiB)": 75.79,
228
+ "memory/max_active (GiB)": 70.19,
229
+ "memory/max_allocated (GiB)": 70.19,
230
+ "ppl": 1.10934,
231
+ "step": 16,
232
+ "tokens/total": 285952,
233
+ "tokens/train_per_sec_per_gpu": 1.0,
234
+ "tokens/trainable": 1024
235
+ },
236
+ {
237
+ "epoch": 0.28451882845188287,
238
+ "grad_norm": 4.028632640838623,
239
+ "learning_rate": 8.8e-06,
240
+ "loss": 0.26162976026535034,
241
+ "memory/device_reserved (GiB)": 75.79,
242
+ "memory/max_active (GiB)": 72.63,
243
+ "memory/max_allocated (GiB)": 72.63,
244
+ "ppl": 1.29905,
245
+ "step": 17,
246
+ "tokens/total": 303764,
247
+ "tokens/train_per_sec_per_gpu": 0.97,
248
+ "tokens/trainable": 1088
249
+ },
250
+ {
251
+ "epoch": 0.301255230125523,
252
+ "grad_norm": 2.946964979171753,
253
+ "learning_rate": 8.6e-06,
254
+ "loss": 0.07303209602832794,
255
+ "memory/device_reserved (GiB)": 75.79,
256
+ "memory/max_active (GiB)": 69.51,
257
+ "memory/max_allocated (GiB)": 69.51,
258
+ "ppl": 1.07577,
259
+ "step": 18,
260
+ "tokens/total": 320944,
261
+ "tokens/train_per_sec_per_gpu": 1.02,
262
+ "tokens/trainable": 1152
263
+ },
264
+ {
265
+ "epoch": 0.3179916317991632,
266
+ "grad_norm": 2.8597347736358643,
267
+ "learning_rate": 8.400000000000001e-06,
268
+ "loss": 0.14552569389343262,
269
+ "memory/device_reserved (GiB)": 75.79,
270
+ "memory/max_active (GiB)": 73.12,
271
+ "memory/max_allocated (GiB)": 73.12,
272
+ "ppl": 1.15665,
273
+ "step": 19,
274
+ "tokens/total": 341232,
275
+ "tokens/train_per_sec_per_gpu": 0.87,
276
+ "tokens/trainable": 1216
277
+ },
278
+ {
279
+ "epoch": 0.33472803347280333,
280
+ "grad_norm": 3.6591947078704834,
281
+ "learning_rate": 8.2e-06,
282
+ "loss": 0.15546177327632904,
283
+ "memory/device_reserved (GiB)": 75.79,
284
+ "memory/max_active (GiB)": 69.01,
285
+ "memory/max_allocated (GiB)": 69.01,
286
+ "ppl": 1.1682,
287
+ "step": 20,
288
+ "tokens/total": 356940,
289
+ "tokens/train_per_sec_per_gpu": 1.09,
290
+ "tokens/trainable": 1280
291
+ },
292
+ {
293
+ "epoch": 0.3514644351464435,
294
+ "grad_norm": 3.0281717777252197,
295
+ "learning_rate": 8.000000000000001e-06,
296
+ "loss": 0.09110970795154572,
297
+ "memory/device_reserved (GiB)": 78.04,
298
+ "memory/max_active (GiB)": 75.72,
299
+ "memory/max_allocated (GiB)": 75.72,
300
+ "ppl": 1.09539,
301
+ "step": 21,
302
+ "tokens/total": 376412,
303
+ "tokens/train_per_sec_per_gpu": 0.89,
304
+ "tokens/trainable": 1344
305
+ },
306
+ {
307
+ "epoch": 0.3682008368200837,
308
+ "grad_norm": 4.838003158569336,
309
+ "learning_rate": 7.800000000000002e-06,
310
+ "loss": 0.16041593253612518,
311
+ "memory/device_reserved (GiB)": 78.04,
312
+ "memory/max_active (GiB)": 69.12,
313
+ "memory/max_allocated (GiB)": 69.12,
314
+ "ppl": 1.174,
315
+ "step": 22,
316
+ "tokens/total": 392588,
317
+ "tokens/train_per_sec_per_gpu": 1.06,
318
+ "tokens/trainable": 1408
319
+ },
320
+ {
321
+ "epoch": 0.38493723849372385,
322
+ "grad_norm": 2.350078582763672,
323
+ "learning_rate": 7.600000000000001e-06,
324
+ "loss": 0.08050499856472015,
325
+ "memory/device_reserved (GiB)": 78.04,
326
+ "memory/max_active (GiB)": 72.63,
327
+ "memory/max_allocated (GiB)": 72.63,
328
+ "ppl": 1.08383,
329
+ "step": 23,
330
+ "tokens/total": 411740,
331
+ "tokens/train_per_sec_per_gpu": 0.92,
332
+ "tokens/trainable": 1472
333
+ },
334
+ {
335
+ "epoch": 0.401673640167364,
336
+ "grad_norm": 6.2735419273376465,
337
+ "learning_rate": 7.4e-06,
338
+ "loss": 0.17845900356769562,
339
+ "memory/device_reserved (GiB)": 78.04,
340
+ "memory/max_active (GiB)": 71.21,
341
+ "memory/max_allocated (GiB)": 71.21,
342
+ "ppl": 1.19537,
343
+ "step": 24,
344
+ "tokens/total": 429660,
345
+ "tokens/train_per_sec_per_gpu": 0.99,
346
+ "tokens/trainable": 1536
347
+ },
348
+ {
349
+ "epoch": 0.41841004184100417,
350
+ "grad_norm": 4.327482223510742,
351
+ "learning_rate": 7.2000000000000005e-06,
352
+ "loss": 0.2505568861961365,
353
+ "memory/device_reserved (GiB)": 78.04,
354
+ "memory/max_active (GiB)": 71.94,
355
+ "memory/max_allocated (GiB)": 71.94,
356
+ "ppl": 1.28474,
357
+ "step": 25,
358
+ "tokens/total": 447356,
359
+ "tokens/train_per_sec_per_gpu": 0.97,
360
+ "tokens/trainable": 1600
361
+ },
362
+ {
363
+ "epoch": 0.4351464435146444,
364
+ "grad_norm": 2.954861640930176,
365
+ "learning_rate": 7e-06,
366
+ "loss": 0.21243004500865936,
367
+ "memory/device_reserved (GiB)": 78.04,
368
+ "memory/max_active (GiB)": 70.72,
369
+ "memory/max_allocated (GiB)": 70.72,
370
+ "ppl": 1.23668,
371
+ "step": 26,
372
+ "tokens/total": 463480,
373
+ "tokens/train_per_sec_per_gpu": 1.06,
374
+ "tokens/trainable": 1664
375
+ },
376
+ {
377
+ "epoch": 0.45188284518828453,
378
+ "grad_norm": 3.397681474685669,
379
+ "learning_rate": 6.800000000000001e-06,
380
+ "loss": 0.12888659536838531,
381
+ "memory/device_reserved (GiB)": 78.04,
382
+ "memory/max_active (GiB)": 71.77,
383
+ "memory/max_allocated (GiB)": 71.77,
384
+ "ppl": 1.13756,
385
+ "step": 27,
386
+ "tokens/total": 484208,
387
+ "tokens/train_per_sec_per_gpu": 0.86,
388
+ "tokens/trainable": 1728
389
+ },
390
+ {
391
+ "epoch": 0.4686192468619247,
392
+ "grad_norm": 2.7010715007781982,
393
+ "learning_rate": 6.600000000000001e-06,
394
+ "loss": 0.07128126174211502,
395
+ "memory/device_reserved (GiB)": 78.04,
396
+ "memory/max_active (GiB)": 70.9,
397
+ "memory/max_allocated (GiB)": 70.9,
398
+ "ppl": 1.07388,
399
+ "step": 28,
400
+ "tokens/total": 501932,
401
+ "tokens/train_per_sec_per_gpu": 0.98,
402
+ "tokens/trainable": 1792
403
+ },
404
+ {
405
+ "epoch": 0.48535564853556484,
406
+ "grad_norm": 4.152257442474365,
407
+ "learning_rate": 6.4000000000000006e-06,
408
+ "loss": 0.2603352963924408,
409
+ "memory/device_reserved (GiB)": 78.04,
410
+ "memory/max_active (GiB)": 69.26,
411
+ "memory/max_allocated (GiB)": 69.26,
412
+ "ppl": 1.29737,
413
+ "step": 29,
414
+ "tokens/total": 518156,
415
+ "tokens/train_per_sec_per_gpu": 1.01,
416
+ "tokens/trainable": 1856
417
+ },
418
+ {
419
+ "epoch": 0.502092050209205,
420
+ "grad_norm": 4.530823707580566,
421
+ "learning_rate": 6.200000000000001e-06,
422
+ "loss": 0.3304905593395233,
423
+ "memory/device_reserved (GiB)": 78.04,
424
+ "memory/max_active (GiB)": 71.61,
425
+ "memory/max_allocated (GiB)": 71.61,
426
+ "ppl": 1.39165,
427
+ "step": 30,
428
+ "tokens/total": 535864,
429
+ "tokens/train_per_sec_per_gpu": 1.01,
430
+ "tokens/trainable": 1920
431
+ },
432
+ {
433
+ "epoch": 0.5188284518828452,
434
+ "grad_norm": 2.317944049835205,
435
+ "learning_rate": 6e-06,
436
+ "loss": 0.05913675203919411,
437
+ "memory/device_reserved (GiB)": 78.04,
438
+ "memory/max_active (GiB)": 71.14,
439
+ "memory/max_allocated (GiB)": 71.14,
440
+ "ppl": 1.06092,
441
+ "step": 31,
442
+ "tokens/total": 555492,
443
+ "tokens/train_per_sec_per_gpu": 0.89,
444
+ "tokens/trainable": 1984
445
+ },
446
+ {
447
+ "epoch": 0.5355648535564853,
448
+ "grad_norm": 2.4664571285247803,
449
+ "learning_rate": 5.8e-06,
450
+ "loss": 0.1651962250471115,
451
+ "memory/device_reserved (GiB)": 78.04,
452
+ "memory/max_active (GiB)": 72.9,
453
+ "memory/max_allocated (GiB)": 72.9,
454
+ "ppl": 1.17962,
455
+ "step": 32,
456
+ "tokens/total": 572804,
457
+ "tokens/train_per_sec_per_gpu": 1.01,
458
+ "tokens/trainable": 2048
459
+ },
460
+ {
461
+ "epoch": 0.5523012552301255,
462
+ "grad_norm": 10.276764869689941,
463
+ "learning_rate": 5.600000000000001e-06,
464
+ "loss": 0.2797020673751831,
465
+ "memory/device_reserved (GiB)": 78.04,
466
+ "memory/max_active (GiB)": 69.29,
467
+ "memory/max_allocated (GiB)": 69.29,
468
+ "ppl": 1.32274,
469
+ "step": 33,
470
+ "tokens/total": 590456,
471
+ "tokens/train_per_sec_per_gpu": 0.97,
472
+ "tokens/trainable": 2112
473
+ },
474
+ {
475
+ "epoch": 0.5690376569037657,
476
+ "grad_norm": 3.641462802886963,
477
+ "learning_rate": 5.400000000000001e-06,
478
+ "loss": 0.12429427355527878,
479
+ "memory/device_reserved (GiB)": 78.04,
480
+ "memory/max_active (GiB)": 69.39,
481
+ "memory/max_allocated (GiB)": 69.39,
482
+ "ppl": 1.13235,
483
+ "step": 34,
484
+ "tokens/total": 607664,
485
+ "tokens/train_per_sec_per_gpu": 1.02,
486
+ "tokens/trainable": 2176
487
+ },
488
+ {
489
+ "epoch": 0.5857740585774058,
490
+ "grad_norm": 5.973912239074707,
491
+ "learning_rate": 5.2e-06,
492
+ "loss": 0.13799738883972168,
493
+ "memory/device_reserved (GiB)": 78.04,
494
+ "memory/max_active (GiB)": 70.6,
495
+ "memory/max_allocated (GiB)": 70.6,
496
+ "ppl": 1.14797,
497
+ "step": 35,
498
+ "tokens/total": 626896,
499
+ "tokens/train_per_sec_per_gpu": 0.91,
500
+ "tokens/trainable": 2240
501
+ },
502
+ {
503
+ "epoch": 0.602510460251046,
504
+ "grad_norm": 4.914763450622559,
505
+ "learning_rate": 5e-06,
506
+ "loss": 0.1138860359787941,
507
+ "memory/device_reserved (GiB)": 78.04,
508
+ "memory/max_active (GiB)": 70.33,
509
+ "memory/max_allocated (GiB)": 70.33,
510
+ "ppl": 1.12062,
511
+ "step": 36,
512
+ "tokens/total": 644568,
513
+ "tokens/train_per_sec_per_gpu": 1.0,
514
+ "tokens/trainable": 2304
515
+ },
516
+ {
517
+ "epoch": 0.6192468619246861,
518
+ "grad_norm": 4.411563873291016,
519
+ "learning_rate": 4.800000000000001e-06,
520
+ "loss": 0.17296995222568512,
521
+ "memory/device_reserved (GiB)": 78.04,
522
+ "memory/max_active (GiB)": 69.9,
523
+ "memory/max_allocated (GiB)": 69.9,
524
+ "ppl": 1.18883,
525
+ "step": 37,
526
+ "tokens/total": 661036,
527
+ "tokens/train_per_sec_per_gpu": 1.03,
528
+ "tokens/trainable": 2368
529
+ },
530
+ {
531
+ "epoch": 0.6359832635983264,
532
+ "grad_norm": 2.9458227157592773,
533
+ "learning_rate": 4.600000000000001e-06,
534
+ "loss": 0.2226925939321518,
535
+ "memory/device_reserved (GiB)": 78.04,
536
+ "memory/max_active (GiB)": 70.18,
537
+ "memory/max_allocated (GiB)": 70.18,
538
+ "ppl": 1.24944,
539
+ "step": 38,
540
+ "tokens/total": 678704,
541
+ "tokens/train_per_sec_per_gpu": 1.0,
542
+ "tokens/trainable": 2432
543
+ },
544
+ {
545
+ "epoch": 0.6527196652719666,
546
+ "grad_norm": 3.683631181716919,
547
+ "learning_rate": 4.4e-06,
548
+ "loss": 0.21397189795970917,
549
+ "memory/device_reserved (GiB)": 78.04,
550
+ "memory/max_active (GiB)": 70.0,
551
+ "memory/max_allocated (GiB)": 70.0,
552
+ "ppl": 1.23859,
553
+ "step": 39,
554
+ "tokens/total": 697700,
555
+ "tokens/train_per_sec_per_gpu": 0.92,
556
+ "tokens/trainable": 2496
557
+ },
558
+ {
559
+ "epoch": 0.6694560669456067,
560
+ "grad_norm": 2.96964693069458,
561
+ "learning_rate": 4.2000000000000004e-06,
562
+ "loss": 0.1635679453611374,
563
+ "memory/device_reserved (GiB)": 78.04,
564
+ "memory/max_active (GiB)": 71.54,
565
+ "memory/max_allocated (GiB)": 71.54,
566
+ "ppl": 1.17771,
567
+ "step": 40,
568
+ "tokens/total": 718204,
569
+ "tokens/train_per_sec_per_gpu": 0.89,
570
+ "tokens/trainable": 2560
571
+ },
572
+ {
573
+ "epoch": 0.6861924686192469,
574
+ "grad_norm": 3.370025634765625,
575
+ "learning_rate": 4.000000000000001e-06,
576
+ "loss": 0.11609481275081635,
577
+ "memory/device_reserved (GiB)": 78.04,
578
+ "memory/max_active (GiB)": 72.96,
579
+ "memory/max_allocated (GiB)": 72.96,
580
+ "ppl": 1.1231,
581
+ "step": 41,
582
+ "tokens/total": 736764,
583
+ "tokens/train_per_sec_per_gpu": 0.92,
584
+ "tokens/trainable": 2624
585
+ },
586
+ {
587
+ "epoch": 0.702928870292887,
588
+ "grad_norm": 2.4330062866210938,
589
+ "learning_rate": 3.8000000000000005e-06,
590
+ "loss": 0.11920055747032166,
591
+ "memory/device_reserved (GiB)": 78.04,
592
+ "memory/max_active (GiB)": 70.79,
593
+ "memory/max_allocated (GiB)": 70.79,
594
+ "ppl": 1.1266,
595
+ "step": 42,
596
+ "tokens/total": 755480,
597
+ "tokens/train_per_sec_per_gpu": 0.96,
598
+ "tokens/trainable": 2688
599
+ },
600
+ {
601
+ "epoch": 0.7196652719665272,
602
+ "grad_norm": 3.1380691528320312,
603
+ "learning_rate": 3.6000000000000003e-06,
604
+ "loss": 0.11467825621366501,
605
+ "memory/device_reserved (GiB)": 78.04,
606
+ "memory/max_active (GiB)": 70.4,
607
+ "memory/max_allocated (GiB)": 70.4,
608
+ "ppl": 1.12151,
609
+ "step": 43,
610
+ "tokens/total": 773232,
611
+ "tokens/train_per_sec_per_gpu": 0.98,
612
+ "tokens/trainable": 2752
613
+ },
614
+ {
615
+ "epoch": 0.7364016736401674,
616
+ "grad_norm": 3.144101858139038,
617
+ "learning_rate": 3.4000000000000005e-06,
618
+ "loss": 0.21014568209648132,
619
+ "memory/device_reserved (GiB)": 78.04,
620
+ "memory/max_active (GiB)": 68.59,
621
+ "memory/max_allocated (GiB)": 68.59,
622
+ "ppl": 1.23386,
623
+ "step": 44,
624
+ "tokens/total": 789336,
625
+ "tokens/train_per_sec_per_gpu": 1.07,
626
+ "tokens/trainable": 2816
627
+ },
628
+ {
629
+ "epoch": 0.7531380753138075,
630
+ "grad_norm": 1.7117499113082886,
631
+ "learning_rate": 3.2000000000000003e-06,
632
+ "loss": 0.11406993865966797,
633
+ "memory/device_reserved (GiB)": 78.04,
634
+ "memory/max_active (GiB)": 70.24,
635
+ "memory/max_allocated (GiB)": 70.24,
636
+ "ppl": 1.12083,
637
+ "step": 45,
638
+ "tokens/total": 808700,
639
+ "tokens/train_per_sec_per_gpu": 0.94,
640
+ "tokens/trainable": 2880
641
+ },
642
+ {
643
+ "epoch": 0.7698744769874477,
644
+ "grad_norm": 2.418976068496704,
645
+ "learning_rate": 3e-06,
646
+ "loss": 0.17273403704166412,
647
+ "memory/device_reserved (GiB)": 78.04,
648
+ "memory/max_active (GiB)": 72.81,
649
+ "memory/max_allocated (GiB)": 72.81,
650
+ "ppl": 1.18855,
651
+ "step": 46,
652
+ "tokens/total": 826844,
653
+ "tokens/train_per_sec_per_gpu": 0.96,
654
+ "tokens/trainable": 2944
655
+ },
656
+ {
657
+ "epoch": 0.7866108786610879,
658
+ "grad_norm": 2.926837921142578,
659
+ "learning_rate": 2.8000000000000003e-06,
660
+ "loss": 0.09684156626462936,
661
+ "memory/device_reserved (GiB)": 78.04,
662
+ "memory/max_active (GiB)": 72.77,
663
+ "memory/max_allocated (GiB)": 72.77,
664
+ "ppl": 1.10169,
665
+ "step": 47,
666
+ "tokens/total": 847184,
667
+ "tokens/train_per_sec_per_gpu": 0.9,
668
+ "tokens/trainable": 3008
669
+ },
670
+ {
671
+ "epoch": 0.803347280334728,
672
+ "grad_norm": 4.230413436889648,
673
+ "learning_rate": 2.6e-06,
674
+ "loss": 0.20862005650997162,
675
+ "memory/device_reserved (GiB)": 78.04,
676
+ "memory/max_active (GiB)": 74.1,
677
+ "memory/max_allocated (GiB)": 74.1,
678
+ "ppl": 1.23198,
679
+ "step": 48,
680
+ "tokens/total": 866560,
681
+ "tokens/train_per_sec_per_gpu": 0.92,
682
+ "tokens/trainable": 3072
683
+ },
684
+ {
685
+ "epoch": 0.8200836820083682,
686
+ "grad_norm": 3.337388753890991,
687
+ "learning_rate": 2.4000000000000003e-06,
688
+ "loss": 0.1312025487422943,
689
+ "memory/device_reserved (GiB)": 78.04,
690
+ "memory/max_active (GiB)": 70.8,
691
+ "memory/max_allocated (GiB)": 70.8,
692
+ "ppl": 1.1402,
693
+ "step": 49,
694
+ "tokens/total": 884492,
695
+ "tokens/train_per_sec_per_gpu": 0.99,
696
+ "tokens/trainable": 3136
697
+ },
698
+ {
699
+ "epoch": 0.8368200836820083,
700
+ "grad_norm": 2.6060917377471924,
701
+ "learning_rate": 2.2e-06,
702
+ "loss": 0.16115999221801758,
703
+ "memory/device_reserved (GiB)": 78.04,
704
+ "memory/max_active (GiB)": 70.0,
705
+ "memory/max_allocated (GiB)": 70.0,
706
+ "ppl": 1.17487,
707
+ "step": 50,
708
+ "tokens/total": 902636,
709
+ "tokens/train_per_sec_per_gpu": 0.96,
710
+ "tokens/trainable": 3200
711
+ },
712
+ {
713
+ "epoch": 0.8535564853556485,
714
+ "grad_norm": 2.2493844032287598,
715
+ "learning_rate": 2.0000000000000003e-06,
716
+ "loss": 0.12020273506641388,
717
+ "memory/device_reserved (GiB)": 78.04,
718
+ "memory/max_active (GiB)": 70.29,
719
+ "memory/max_allocated (GiB)": 70.29,
720
+ "ppl": 1.12773,
721
+ "step": 51,
722
+ "tokens/total": 919304,
723
+ "tokens/train_per_sec_per_gpu": 1.05,
724
+ "tokens/trainable": 3264
725
+ },
726
+ {
727
+ "epoch": 0.8702928870292888,
728
+ "grad_norm": 3.619042158126831,
729
+ "learning_rate": 1.8000000000000001e-06,
730
+ "loss": 0.21237094700336456,
731
+ "memory/device_reserved (GiB)": 78.04,
732
+ "memory/max_active (GiB)": 73.31,
733
+ "memory/max_allocated (GiB)": 73.31,
734
+ "ppl": 1.23661,
735
+ "step": 52,
736
+ "tokens/total": 938428,
737
+ "tokens/train_per_sec_per_gpu": 0.92,
738
+ "tokens/trainable": 3328
739
+ },
740
+ {
741
+ "epoch": 0.8870292887029289,
742
+ "grad_norm": 2.1316707134246826,
743
+ "learning_rate": 1.6000000000000001e-06,
744
+ "loss": 0.15599104762077332,
745
+ "memory/device_reserved (GiB)": 78.04,
746
+ "memory/max_active (GiB)": 69.09,
747
+ "memory/max_allocated (GiB)": 69.09,
748
+ "ppl": 1.16882,
749
+ "step": 53,
750
+ "tokens/total": 954948,
751
+ "tokens/train_per_sec_per_gpu": 1.06,
752
+ "tokens/trainable": 3392
753
+ },
754
+ {
755
+ "epoch": 0.9037656903765691,
756
+ "grad_norm": 4.997905254364014,
757
+ "learning_rate": 1.4000000000000001e-06,
758
+ "loss": 0.1855754852294922,
759
+ "memory/device_reserved (GiB)": 78.04,
760
+ "memory/max_active (GiB)": 70.4,
761
+ "memory/max_allocated (GiB)": 70.4,
762
+ "ppl": 1.20391,
763
+ "step": 54,
764
+ "tokens/total": 972044,
765
+ "tokens/train_per_sec_per_gpu": 1.01,
766
+ "tokens/trainable": 3456
767
+ },
768
+ {
769
+ "epoch": 0.9205020920502092,
770
+ "grad_norm": 4.500757694244385,
771
+ "learning_rate": 1.2000000000000002e-06,
772
+ "loss": 0.2657952904701233,
773
+ "memory/device_reserved (GiB)": 78.04,
774
+ "memory/max_active (GiB)": 71.54,
775
+ "memory/max_allocated (GiB)": 71.54,
776
+ "ppl": 1.30447,
777
+ "step": 55,
778
+ "tokens/total": 992968,
779
+ "tokens/train_per_sec_per_gpu": 0.89,
780
+ "tokens/trainable": 3520
781
+ },
782
+ {
783
+ "epoch": 0.9372384937238494,
784
+ "grad_norm": 2.8300693035125732,
785
+ "learning_rate": 1.0000000000000002e-06,
786
+ "loss": 0.10803321748971939,
787
+ "memory/device_reserved (GiB)": 78.04,
788
+ "memory/max_active (GiB)": 69.62,
789
+ "memory/max_allocated (GiB)": 69.62,
790
+ "ppl": 1.11408,
791
+ "step": 56,
792
+ "tokens/total": 1010324,
793
+ "tokens/train_per_sec_per_gpu": 1.0,
794
+ "tokens/trainable": 3584
795
+ },
796
+ {
797
+ "epoch": 0.9539748953974896,
798
+ "grad_norm": 2.5564687252044678,
799
+ "learning_rate": 8.000000000000001e-07,
800
+ "loss": 0.09892988950014114,
801
+ "memory/device_reserved (GiB)": 78.04,
802
+ "memory/max_active (GiB)": 72.96,
803
+ "memory/max_allocated (GiB)": 72.96,
804
+ "ppl": 1.10399,
805
+ "step": 57,
806
+ "tokens/total": 1031372,
807
+ "tokens/train_per_sec_per_gpu": 0.88,
808
+ "tokens/trainable": 3648
809
+ },
810
+ {
811
+ "epoch": 0.9707112970711297,
812
+ "grad_norm": 3.4302942752838135,
813
+ "learning_rate": 6.000000000000001e-07,
814
+ "loss": 0.18448004126548767,
815
+ "memory/device_reserved (GiB)": 78.04,
816
+ "memory/max_active (GiB)": 69.23,
817
+ "memory/max_allocated (GiB)": 69.23,
818
+ "ppl": 1.20259,
819
+ "step": 58,
820
+ "tokens/total": 1049420,
821
+ "tokens/train_per_sec_per_gpu": 0.96,
822
+ "tokens/trainable": 3712
823
+ },
824
+ {
825
+ "epoch": 0.9874476987447699,
826
+ "grad_norm": 3.7558505535125732,
827
+ "learning_rate": 4.0000000000000003e-07,
828
+ "loss": 0.108936607837677,
829
+ "memory/device_reserved (GiB)": 78.04,
830
+ "memory/max_active (GiB)": 69.31,
831
+ "memory/max_allocated (GiB)": 69.31,
832
+ "ppl": 1.11509,
833
+ "step": 59,
834
+ "tokens/total": 1066468,
835
+ "tokens/train_per_sec_per_gpu": 1.04,
836
+ "tokens/trainable": 3776
837
+ },
838
+ {
839
+ "epoch": 1.0,
840
+ "grad_norm": 3.990888833999634,
841
+ "learning_rate": 2.0000000000000002e-07,
842
+ "loss": 0.23011130094528198,
843
+ "memory/device_reserved (GiB)": 78.04,
844
+ "memory/max_active (GiB)": 71.37,
845
+ "memory/max_allocated (GiB)": 71.37,
846
+ "ppl": 1.25874,
847
+ "step": 60,
848
+ "tokens/total": 1081564,
849
+ "tokens/train_per_sec_per_gpu": 1.2,
850
+ "tokens/trainable": 3824
851
+ }
852
+ ],
853
+ "logging_steps": 1,
854
+ "max_steps": 60,
855
+ "num_input_tokens_seen": 0,
856
+ "num_train_epochs": 1,
857
+ "save_steps": 500,
858
+ "stateful_callbacks": {
859
+ "TrainerControl": {
860
+ "args": {
861
+ "should_epoch_stop": false,
862
+ "should_evaluate": false,
863
+ "should_log": false,
864
+ "should_save": true,
865
+ "should_training_stop": true
866
+ },
867
+ "attributes": {}
868
+ }
869
+ },
870
+ "total_flos": 2.0930693108433715e+17,
871
+ "train_batch_size": 4,
872
+ "trial_name": null,
873
+ "trial_params": null
874
+ }
checkpoint-60/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea58b52c163e70b8bb908a71f89911154bacdf54b8ddff0c1fa7ce4234c1c130
3
+ size 6737
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.5.4",
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,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "model_max_length": 131072,
25
+ "pad_token": "<|PAD_TOKEN|>",
26
+ "padding_side": "left",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }