RayMelius commited on
Commit
3c07c79
·
verified ·
1 Parent(s): 3dc29c6

StockEx CH Trader: QLoRA fine-tuned Qwen2.5-7B-Instruct (adapter)

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-423/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,6 +1,13 @@
1
  ---
2
- library_name: transformers
3
- tags: []
 
 
 
 
 
 
 
4
  ---
5
 
6
  # Model Card for Model ID
@@ -15,7 +22,7 @@ tags: []
15
 
16
  <!-- Provide a longer summary of what this model is. -->
17
 
18
- This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
19
 
20
  - **Developed by:** [More Information Needed]
21
  - **Funded by [optional]:** [More Information Needed]
@@ -196,4 +203,7 @@ Carbon emissions can be estimated using the [Machine Learning Impact calculator]
196
 
197
  ## Model Card Contact
198
 
199
- [More Information Needed]
 
 
 
 
1
  ---
2
+ base_model: Qwen/Qwen2.5-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
  ---
12
 
13
  # Model Card for Model ID
 
22
 
23
  <!-- Provide a longer summary of what this model is. -->
24
 
25
+
26
 
27
  - **Developed by:** [More Information Needed]
28
  - **Funded by [optional]:** [More Information Needed]
 
203
 
204
  ## Model Card Contact
205
 
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
adapter_config.json CHANGED
@@ -29,13 +29,13 @@
29
  "rank_pattern": {},
30
  "revision": null,
31
  "target_modules": [
32
- "down_proj",
33
- "v_proj",
34
  "o_proj",
 
35
  "up_proj",
 
36
  "gate_proj",
37
  "q_proj",
38
- "k_proj"
39
  ],
40
  "target_parameters": null,
41
  "task_type": "CAUSAL_LM",
 
29
  "rank_pattern": {},
30
  "revision": null,
31
  "target_modules": [
 
 
32
  "o_proj",
33
+ "v_proj",
34
  "up_proj",
35
+ "k_proj",
36
  "gate_proj",
37
  "q_proj",
38
+ "down_proj"
39
  ],
40
  "target_parameters": null,
41
  "task_type": "CAUSAL_LM",
adapter_model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a6023e97e3bd626492f7eb62f9885ec36dfa78ad032f5f61e977a65deaf826aa
3
  size 161533192
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9617c0bd790e5efa896cfa11500811bcf897ed9a9ff9edf0842d1832b88712c7
3
  size 161533192
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-423/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
checkpoint-423/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Qwen/Qwen2.5-7B-Instruct",
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": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "v_proj",
34
+ "o_proj",
35
+ "up_proj",
36
+ "gate_proj",
37
+ "q_proj",
38
+ "k_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-423/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6023e97e3bd626492f7eb62f9885ec36dfa78ad032f5f61e977a65deaf826aa
3
+ size 161533192
checkpoint-423/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-423/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28c4040070f5867e591afc163b22285f943975ea412e769a481cb8a13bb2197a
3
+ size 83485139
checkpoint-423/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6454c38a39bdfdf1a11c0572ad919dfdf405e82214c65f15ef25acef9e838ce9
3
+ size 14645
checkpoint-423/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46dbb23a7f7568c49d5fd63ef60f502240d770b6864697d79e1f163063e33e79
3
+ size 1465
checkpoint-423/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
checkpoint-423/tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
24
+ "model_max_length": 512,
25
+ "pad_token": "<|im_end|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }
checkpoint-423/trainer_state.json ADDED
@@ -0,0 +1,916 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 420,
3
+ "best_metric": 0.3298604488372803,
4
+ "best_model_checkpoint": "./stockex-ch-trader/checkpoint-420",
5
+ "epoch": 3.0,
6
+ "eval_steps": 10,
7
+ "global_step": 423,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.2963156521320343,
14
+ "epoch": 0.07104795737122557,
15
+ "grad_norm": 0.1669921875,
16
+ "learning_rate": 8.181818181818183e-05,
17
+ "loss": 0.7593653678894043,
18
+ "mean_token_accuracy": 0.8261439204216003,
19
+ "num_tokens": 64549.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.07104795737122557,
24
+ "eval_entropy": 1.3787318827613952,
25
+ "eval_loss": 0.4136860966682434,
26
+ "eval_mean_token_accuracy": 0.8562367170576065,
27
+ "eval_num_tokens": 64549.0,
28
+ "eval_runtime": 300.6877,
29
+ "eval_samples_per_second": 0.831,
30
+ "eval_steps_per_second": 0.21,
31
+ "step": 10
32
+ },
33
+ {
34
+ "entropy": 1.4298876911401748,
35
+ "epoch": 0.14209591474245115,
36
+ "grad_norm": 0.13671875,
37
+ "learning_rate": 0.00017272727272727275,
38
+ "loss": 0.3840687990188599,
39
+ "mean_token_accuracy": 0.8652397453784942,
40
+ "num_tokens": 129221.0,
41
+ "step": 20
42
+ },
43
+ {
44
+ "epoch": 0.14209591474245115,
45
+ "eval_entropy": 1.4505654403141566,
46
+ "eval_loss": 0.3602067232131958,
47
+ "eval_mean_token_accuracy": 0.8688105836747184,
48
+ "eval_num_tokens": 129221.0,
49
+ "eval_runtime": 300.6696,
50
+ "eval_samples_per_second": 0.831,
51
+ "eval_steps_per_second": 0.21,
52
+ "step": 20
53
+ },
54
+ {
55
+ "entropy": 1.4376762628555297,
56
+ "epoch": 0.21314387211367672,
57
+ "grad_norm": 0.0869140625,
58
+ "learning_rate": 0.00019984966218416245,
59
+ "loss": 0.3509472370147705,
60
+ "mean_token_accuracy": 0.8688564792275428,
61
+ "num_tokens": 193940.0,
62
+ "step": 30
63
+ },
64
+ {
65
+ "epoch": 0.21314387211367672,
66
+ "eval_entropy": 1.4176286780644978,
67
+ "eval_loss": 0.3576105833053589,
68
+ "eval_mean_token_accuracy": 0.8698482201212928,
69
+ "eval_num_tokens": 193940.0,
70
+ "eval_runtime": 300.6563,
71
+ "eval_samples_per_second": 0.832,
72
+ "eval_steps_per_second": 0.21,
73
+ "step": 30
74
+ },
75
+ {
76
+ "entropy": 1.4242034316062928,
77
+ "epoch": 0.2841918294849023,
78
+ "grad_norm": 0.053466796875,
79
+ "learning_rate": 0.0001991144016749207,
80
+ "loss": 0.3552170038223267,
81
+ "mean_token_accuracy": 0.8700723454356194,
82
+ "num_tokens": 259229.0,
83
+ "step": 40
84
+ },
85
+ {
86
+ "epoch": 0.2841918294849023,
87
+ "eval_entropy": 1.426317640713283,
88
+ "eval_loss": 0.35458239912986755,
89
+ "eval_mean_token_accuracy": 0.8706632767404828,
90
+ "eval_num_tokens": 259229.0,
91
+ "eval_runtime": 300.6427,
92
+ "eval_samples_per_second": 0.832,
93
+ "eval_steps_per_second": 0.21,
94
+ "step": 40
95
+ },
96
+ {
97
+ "entropy": 1.4179179966449738,
98
+ "epoch": 0.3552397868561279,
99
+ "grad_norm": 0.09619140625,
100
+ "learning_rate": 0.00019777111031006231,
101
+ "loss": 0.35140392780303953,
102
+ "mean_token_accuracy": 0.8776277780532837,
103
+ "num_tokens": 324466.0,
104
+ "step": 50
105
+ },
106
+ {
107
+ "epoch": 0.3552397868561279,
108
+ "eval_entropy": 1.4232942149752663,
109
+ "eval_loss": 0.345210462808609,
110
+ "eval_mean_token_accuracy": 0.8669123583369784,
111
+ "eval_num_tokens": 324466.0,
112
+ "eval_runtime": 300.6312,
113
+ "eval_samples_per_second": 0.832,
114
+ "eval_steps_per_second": 0.21,
115
+ "step": 50
116
+ },
117
+ {
118
+ "entropy": 1.4408947974443436,
119
+ "epoch": 0.42628774422735344,
120
+ "grad_norm": 0.060546875,
121
+ "learning_rate": 0.00019582802869422307,
122
+ "loss": 0.3457732439041138,
123
+ "mean_token_accuracy": 0.8727102458477021,
124
+ "num_tokens": 389340.0,
125
+ "step": 60
126
+ },
127
+ {
128
+ "epoch": 0.42628774422735344,
129
+ "eval_entropy": 1.4362683882789007,
130
+ "eval_loss": 0.3460199534893036,
131
+ "eval_mean_token_accuracy": 0.87255583112202,
132
+ "eval_num_tokens": 389340.0,
133
+ "eval_runtime": 300.6626,
134
+ "eval_samples_per_second": 0.831,
135
+ "eval_steps_per_second": 0.21,
136
+ "step": 60
137
+ },
138
+ {
139
+ "entropy": 1.4305267930030823,
140
+ "epoch": 0.49733570159857904,
141
+ "grad_norm": 0.06884765625,
142
+ "learning_rate": 0.00019329707692738288,
143
+ "loss": 0.34513719081878663,
144
+ "mean_token_accuracy": 0.8745817050337792,
145
+ "num_tokens": 454284.0,
146
+ "step": 70
147
+ },
148
+ {
149
+ "epoch": 0.49733570159857904,
150
+ "eval_entropy": 1.4227766763596308,
151
+ "eval_loss": 0.3442724645137787,
152
+ "eval_mean_token_accuracy": 0.8681343954706949,
153
+ "eval_num_tokens": 454284.0,
154
+ "eval_runtime": 300.6703,
155
+ "eval_samples_per_second": 0.831,
156
+ "eval_steps_per_second": 0.21,
157
+ "step": 70
158
+ },
159
+ {
160
+ "entropy": 1.4214028120040894,
161
+ "epoch": 0.5683836589698046,
162
+ "grad_norm": 0.044189453125,
163
+ "learning_rate": 0.00019019378147938176,
164
+ "loss": 0.34772319793701173,
165
+ "mean_token_accuracy": 0.8682249620556831,
166
+ "num_tokens": 519145.0,
167
+ "step": 80
168
+ },
169
+ {
170
+ "epoch": 0.5683836589698046,
171
+ "eval_entropy": 1.4160598156944153,
172
+ "eval_loss": 0.3454609215259552,
173
+ "eval_mean_token_accuracy": 0.8694430192311605,
174
+ "eval_num_tokens": 519145.0,
175
+ "eval_runtime": 300.6511,
176
+ "eval_samples_per_second": 0.832,
177
+ "eval_steps_per_second": 0.21,
178
+ "step": 80
179
+ },
180
+ {
181
+ "entropy": 1.4053258925676346,
182
+ "epoch": 0.6394316163410302,
183
+ "grad_norm": 0.050537109375,
184
+ "learning_rate": 0.0001865371799406666,
185
+ "loss": 0.3419625282287598,
186
+ "mean_token_accuracy": 0.8665244862437248,
187
+ "num_tokens": 584882.0,
188
+ "step": 90
189
+ },
190
+ {
191
+ "epoch": 0.6394316163410302,
192
+ "eval_entropy": 1.4048999642568922,
193
+ "eval_loss": 0.34549078345298767,
194
+ "eval_mean_token_accuracy": 0.8717382484012179,
195
+ "eval_num_tokens": 584882.0,
196
+ "eval_runtime": 300.6179,
197
+ "eval_samples_per_second": 0.832,
198
+ "eval_steps_per_second": 0.21,
199
+ "step": 90
200
+ },
201
+ {
202
+ "entropy": 1.4104130774736405,
203
+ "epoch": 0.7104795737122558,
204
+ "grad_norm": 0.0625,
205
+ "learning_rate": 0.0001823497042335884,
206
+ "loss": 0.3392710447311401,
207
+ "mean_token_accuracy": 0.8716825649142266,
208
+ "num_tokens": 649766.0,
209
+ "step": 100
210
+ },
211
+ {
212
+ "epoch": 0.7104795737122558,
213
+ "eval_entropy": 1.399895053061228,
214
+ "eval_loss": 0.34557268023490906,
215
+ "eval_mean_token_accuracy": 0.8675587830089387,
216
+ "eval_num_tokens": 649766.0,
217
+ "eval_runtime": 300.6377,
218
+ "eval_samples_per_second": 0.832,
219
+ "eval_steps_per_second": 0.21,
220
+ "step": 100
221
+ },
222
+ {
223
+ "entropy": 1.4029030323028564,
224
+ "epoch": 0.7815275310834814,
225
+ "grad_norm": 0.06884765625,
226
+ "learning_rate": 0.0001776570430007059,
227
+ "loss": 0.34670975208282473,
228
+ "mean_token_accuracy": 0.8702039152383805,
229
+ "num_tokens": 715180.0,
230
+ "step": 110
231
+ },
232
+ {
233
+ "epoch": 0.7815275310834814,
234
+ "eval_entropy": 1.4114291081352839,
235
+ "eval_loss": 0.34050390124320984,
236
+ "eval_mean_token_accuracy": 0.8724132274824475,
237
+ "eval_num_tokens": 715180.0,
238
+ "eval_runtime": 300.6403,
239
+ "eval_samples_per_second": 0.832,
240
+ "eval_steps_per_second": 0.21,
241
+ "step": 110
242
+ },
243
+ {
244
+ "entropy": 1.4146249413490295,
245
+ "epoch": 0.8525754884547069,
246
+ "grad_norm": 0.06103515625,
247
+ "learning_rate": 0.0001724879840142936,
248
+ "loss": 0.34205806255340576,
249
+ "mean_token_accuracy": 0.8725002616643905,
250
+ "num_tokens": 779956.0,
251
+ "step": 120
252
+ },
253
+ {
254
+ "epoch": 0.8525754884547069,
255
+ "eval_entropy": 1.4029388465578594,
256
+ "eval_loss": 0.337764173746109,
257
+ "eval_mean_token_accuracy": 0.8708018386174762,
258
+ "eval_num_tokens": 779956.0,
259
+ "eval_runtime": 300.6454,
260
+ "eval_samples_per_second": 0.832,
261
+ "eval_steps_per_second": 0.21,
262
+ "step": 120
263
+ },
264
+ {
265
+ "entropy": 1.4079937398433686,
266
+ "epoch": 0.9236234458259325,
267
+ "grad_norm": 0.052001953125,
268
+ "learning_rate": 0.0001668742375738149,
269
+ "loss": 0.3406423330307007,
270
+ "mean_token_accuracy": 0.8678194597363472,
271
+ "num_tokens": 844746.0,
272
+ "step": 130
273
+ },
274
+ {
275
+ "epoch": 0.9236234458259325,
276
+ "eval_entropy": 1.404384105924576,
277
+ "eval_loss": 0.3414382338523865,
278
+ "eval_mean_token_accuracy": 0.8703954522571866,
279
+ "eval_num_tokens": 844746.0,
280
+ "eval_runtime": 300.7534,
281
+ "eval_samples_per_second": 0.831,
282
+ "eval_steps_per_second": 0.209,
283
+ "step": 130
284
+ },
285
+ {
286
+ "entropy": 1.4128191709518432,
287
+ "epoch": 0.9946714031971581,
288
+ "grad_norm": 0.0546875,
289
+ "learning_rate": 0.00016085024197475196,
290
+ "loss": 0.3400874137878418,
291
+ "mean_token_accuracy": 0.8687706053256988,
292
+ "num_tokens": 909826.0,
293
+ "step": 140
294
+ },
295
+ {
296
+ "epoch": 0.9946714031971581,
297
+ "eval_entropy": 1.4133274138919891,
298
+ "eval_loss": 0.3403981924057007,
299
+ "eval_mean_token_accuracy": 0.8667604989475675,
300
+ "eval_num_tokens": 909826.0,
301
+ "eval_runtime": 300.673,
302
+ "eval_samples_per_second": 0.831,
303
+ "eval_steps_per_second": 0.21,
304
+ "step": 140
305
+ },
306
+ {
307
+ "entropy": 1.4142790054663634,
308
+ "epoch": 1.063943161634103,
309
+ "grad_norm": 0.048095703125,
310
+ "learning_rate": 0.00015445295224217107,
311
+ "loss": 0.33670949935913086,
312
+ "mean_token_accuracy": 0.8746435443560282,
313
+ "num_tokens": 972179.0,
314
+ "step": 150
315
+ },
316
+ {
317
+ "epoch": 1.063943161634103,
318
+ "eval_entropy": 1.4076765340472024,
319
+ "eval_loss": 0.3379535377025604,
320
+ "eval_mean_token_accuracy": 0.873747069684286,
321
+ "eval_num_tokens": 972179.0,
322
+ "eval_runtime": 300.6766,
323
+ "eval_samples_per_second": 0.831,
324
+ "eval_steps_per_second": 0.21,
325
+ "step": 150
326
+ },
327
+ {
328
+ "entropy": 1.404336929321289,
329
+ "epoch": 1.1349911190053286,
330
+ "grad_norm": 0.05126953125,
331
+ "learning_rate": 0.00014772161342506613,
332
+ "loss": 0.3300167560577393,
333
+ "mean_token_accuracy": 0.8760040670633316,
334
+ "num_tokens": 1037424.0,
335
+ "step": 160
336
+ },
337
+ {
338
+ "epoch": 1.1349911190053286,
339
+ "eval_entropy": 1.4067519070610168,
340
+ "eval_loss": 0.3369215130805969,
341
+ "eval_mean_token_accuracy": 0.8731053793241107,
342
+ "eval_num_tokens": 1037424.0,
343
+ "eval_runtime": 300.7459,
344
+ "eval_samples_per_second": 0.831,
345
+ "eval_steps_per_second": 0.209,
346
+ "step": 160
347
+ },
348
+ {
349
+ "entropy": 1.4114000707864762,
350
+ "epoch": 1.206039076376554,
351
+ "grad_norm": 0.04150390625,
352
+ "learning_rate": 0.0001406975198422368,
353
+ "loss": 0.33290348052978513,
354
+ "mean_token_accuracy": 0.8732595324516297,
355
+ "num_tokens": 1101802.0,
356
+ "step": 170
357
+ },
358
+ {
359
+ "epoch": 1.206039076376554,
360
+ "eval_entropy": 1.4023287220606728,
361
+ "eval_loss": 0.33860695362091064,
362
+ "eval_mean_token_accuracy": 0.8725330839081417,
363
+ "eval_num_tokens": 1101802.0,
364
+ "eval_runtime": 300.743,
365
+ "eval_samples_per_second": 0.831,
366
+ "eval_steps_per_second": 0.209,
367
+ "step": 170
368
+ },
369
+ {
370
+ "entropy": 1.405304503440857,
371
+ "epoch": 1.2770870337477798,
372
+ "grad_norm": 0.052001953125,
373
+ "learning_rate": 0.00013342376175664114,
374
+ "loss": 0.33488993644714354,
375
+ "mean_token_accuracy": 0.8727252542972564,
376
+ "num_tokens": 1166893.0,
377
+ "step": 180
378
+ },
379
+ {
380
+ "epoch": 1.2770870337477798,
381
+ "eval_entropy": 1.4046104332757374,
382
+ "eval_loss": 0.3399215638637543,
383
+ "eval_mean_token_accuracy": 0.8705378837055631,
384
+ "eval_num_tokens": 1166893.0,
385
+ "eval_runtime": 300.7542,
386
+ "eval_samples_per_second": 0.831,
387
+ "eval_steps_per_second": 0.209,
388
+ "step": 180
389
+ },
390
+ {
391
+ "entropy": 1.4051885157823563,
392
+ "epoch": 1.3481349911190053,
393
+ "grad_norm": 0.0390625,
394
+ "learning_rate": 0.00012594496103228274,
395
+ "loss": 0.3381678342819214,
396
+ "mean_token_accuracy": 0.8746153846383095,
397
+ "num_tokens": 1232126.0,
398
+ "step": 190
399
+ },
400
+ {
401
+ "epoch": 1.3481349911190053,
402
+ "eval_entropy": 1.408092459042867,
403
+ "eval_loss": 0.33658185601234436,
404
+ "eval_mean_token_accuracy": 0.8732467946552095,
405
+ "eval_num_tokens": 1232126.0,
406
+ "eval_runtime": 300.7565,
407
+ "eval_samples_per_second": 0.831,
408
+ "eval_steps_per_second": 0.209,
409
+ "step": 190
410
+ },
411
+ {
412
+ "entropy": 1.4089335173368454,
413
+ "epoch": 1.419182948490231,
414
+ "grad_norm": 0.04443359375,
415
+ "learning_rate": 0.00011830699739528186,
416
+ "loss": 0.33224356174468994,
417
+ "mean_token_accuracy": 0.8684082984924316,
418
+ "num_tokens": 1297007.0,
419
+ "step": 200
420
+ },
421
+ {
422
+ "epoch": 1.419182948490231,
423
+ "eval_entropy": 1.4018082372725955,
424
+ "eval_loss": 0.33901074528694153,
425
+ "eval_mean_token_accuracy": 0.8686280610069396,
426
+ "eval_num_tokens": 1297007.0,
427
+ "eval_runtime": 300.7465,
428
+ "eval_samples_per_second": 0.831,
429
+ "eval_steps_per_second": 0.209,
430
+ "step": 200
431
+ },
432
+ {
433
+ "entropy": 1.3996795892715455,
434
+ "epoch": 1.4902309058614565,
435
+ "grad_norm": 0.037353515625,
436
+ "learning_rate": 0.0001105567269784193,
437
+ "loss": 0.3279148578643799,
438
+ "mean_token_accuracy": 0.8745489582419396,
439
+ "num_tokens": 1362371.0,
440
+ "step": 210
441
+ },
442
+ {
443
+ "epoch": 1.4902309058614565,
444
+ "eval_entropy": 1.4018028804234095,
445
+ "eval_loss": 0.3412929177284241,
446
+ "eval_mean_token_accuracy": 0.8701217420517452,
447
+ "eval_num_tokens": 1362371.0,
448
+ "eval_runtime": 300.7302,
449
+ "eval_samples_per_second": 0.831,
450
+ "eval_steps_per_second": 0.209,
451
+ "step": 210
452
+ },
453
+ {
454
+ "entropy": 1.4049654960632325,
455
+ "epoch": 1.561278863232682,
456
+ "grad_norm": 0.05126953125,
457
+ "learning_rate": 0.00010274169487578025,
458
+ "loss": 0.3324852705001831,
459
+ "mean_token_accuracy": 0.8769623816013337,
460
+ "num_tokens": 1427085.0,
461
+ "step": 220
462
+ },
463
+ {
464
+ "epoch": 1.561278863232682,
465
+ "eval_entropy": 1.4000725386634705,
466
+ "eval_loss": 0.33717405796051025,
467
+ "eval_mean_token_accuracy": 0.8721385986085922,
468
+ "eval_num_tokens": 1427085.0,
469
+ "eval_runtime": 300.7392,
470
+ "eval_samples_per_second": 0.831,
471
+ "eval_steps_per_second": 0.209,
472
+ "step": 220
473
+ },
474
+ {
475
+ "entropy": 1.4034211605787277,
476
+ "epoch": 1.6323268206039077,
477
+ "grad_norm": 0.0595703125,
478
+ "learning_rate": 9.490984347087035e-05,
479
+ "loss": 0.3351150035858154,
480
+ "mean_token_accuracy": 0.8740972504019737,
481
+ "num_tokens": 1491911.0,
482
+ "step": 230
483
+ },
484
+ {
485
+ "epoch": 1.6323268206039077,
486
+ "eval_entropy": 1.4025771315135653,
487
+ "eval_loss": 0.3377071022987366,
488
+ "eval_mean_token_accuracy": 0.8724007142914666,
489
+ "eval_num_tokens": 1491911.0,
490
+ "eval_runtime": 300.7481,
491
+ "eval_samples_per_second": 0.831,
492
+ "eval_steps_per_second": 0.209,
493
+ "step": 230
494
+ },
495
+ {
496
+ "entropy": 1.4066081583499908,
497
+ "epoch": 1.7033747779751334,
498
+ "grad_norm": 0.049072265625,
499
+ "learning_rate": 8.710921832750599e-05,
500
+ "loss": 0.3293110132217407,
501
+ "mean_token_accuracy": 0.8752981394529342,
502
+ "num_tokens": 1556614.0,
503
+ "step": 240
504
+ },
505
+ {
506
+ "epoch": 1.7033747779751334,
507
+ "eval_entropy": 1.3935221093041557,
508
+ "eval_loss": 0.33765721321105957,
509
+ "eval_mean_token_accuracy": 0.8718693719969856,
510
+ "eval_num_tokens": 1556614.0,
511
+ "eval_runtime": 300.7184,
512
+ "eval_samples_per_second": 0.831,
513
+ "eval_steps_per_second": 0.209,
514
+ "step": 240
515
+ },
516
+ {
517
+ "entropy": 1.3865844041109086,
518
+ "epoch": 1.7744227353463589,
519
+ "grad_norm": 0.054443359375,
520
+ "learning_rate": 7.938767344773037e-05,
521
+ "loss": 0.3345181465148926,
522
+ "mean_token_accuracy": 0.8729749575257302,
523
+ "num_tokens": 1622085.0,
524
+ "step": 250
525
+ },
526
+ {
527
+ "epoch": 1.7744227353463589,
528
+ "eval_entropy": 1.389842949216328,
529
+ "eval_loss": 0.33758464455604553,
530
+ "eval_mean_token_accuracy": 0.8717279178755624,
531
+ "eval_num_tokens": 1622085.0,
532
+ "eval_runtime": 300.7398,
533
+ "eval_samples_per_second": 0.831,
534
+ "eval_steps_per_second": 0.209,
535
+ "step": 250
536
+ },
537
+ {
538
+ "entropy": 1.3939575046300887,
539
+ "epoch": 1.8454706927175843,
540
+ "grad_norm": 0.0546875,
541
+ "learning_rate": 7.179257770489181e-05,
542
+ "loss": 0.324985408782959,
543
+ "mean_token_accuracy": 0.8755759671330452,
544
+ "num_tokens": 1686979.0,
545
+ "step": 260
546
+ },
547
+ {
548
+ "epoch": 1.8454706927175843,
549
+ "eval_entropy": 1.3957371106223455,
550
+ "eval_loss": 0.33793696761131287,
551
+ "eval_mean_token_accuracy": 0.8721340374341087,
552
+ "eval_num_tokens": 1686979.0,
553
+ "eval_runtime": 300.7408,
554
+ "eval_samples_per_second": 0.831,
555
+ "eval_steps_per_second": 0.209,
556
+ "step": 260
557
+ },
558
+ {
559
+ "entropy": 1.39389927983284,
560
+ "epoch": 1.9165186500888098,
561
+ "grad_norm": 0.048583984375,
562
+ "learning_rate": 6.437052425281023e-05,
563
+ "loss": 0.33145718574523925,
564
+ "mean_token_accuracy": 0.8743691191077232,
565
+ "num_tokens": 1752330.0,
566
+ "step": 270
567
+ },
568
+ {
569
+ "epoch": 1.9165186500888098,
570
+ "eval_entropy": 1.390679262933277,
571
+ "eval_loss": 0.3360918462276459,
572
+ "eval_mean_token_accuracy": 0.8732259661432297,
573
+ "eval_num_tokens": 1752330.0,
574
+ "eval_runtime": 300.7292,
575
+ "eval_samples_per_second": 0.831,
576
+ "eval_steps_per_second": 0.209,
577
+ "step": 270
578
+ },
579
+ {
580
+ "entropy": 1.3945425242185592,
581
+ "epoch": 1.9875666074600356,
582
+ "grad_norm": 0.042724609375,
583
+ "learning_rate": 5.7167044693701265e-05,
584
+ "loss": 0.33205204010009765,
585
+ "mean_token_accuracy": 0.8732210874557496,
586
+ "num_tokens": 1817167.0,
587
+ "step": 280
588
+ },
589
+ {
590
+ "epoch": 1.9875666074600356,
591
+ "eval_entropy": 1.3890694436572848,
592
+ "eval_loss": 0.337794691324234,
593
+ "eval_mean_token_accuracy": 0.869381708758218,
594
+ "eval_num_tokens": 1817167.0,
595
+ "eval_runtime": 300.7319,
596
+ "eval_samples_per_second": 0.831,
597
+ "eval_steps_per_second": 0.209,
598
+ "step": 280
599
+ },
600
+ {
601
+ "entropy": 1.3927310644051967,
602
+ "epoch": 2.0568383658969807,
603
+ "grad_norm": 0.04931640625,
604
+ "learning_rate": 5.022632975833377e-05,
605
+ "loss": 0.32566084861755373,
606
+ "mean_token_accuracy": 0.8772806036166656,
607
+ "num_tokens": 1879244.0,
608
+ "step": 290
609
+ },
610
+ {
611
+ "epoch": 2.0568383658969807,
612
+ "eval_entropy": 1.3810661066146124,
613
+ "eval_loss": 0.33844009041786194,
614
+ "eval_mean_token_accuracy": 0.8736514789717538,
615
+ "eval_num_tokens": 1879244.0,
616
+ "eval_runtime": 300.7285,
617
+ "eval_samples_per_second": 0.831,
618
+ "eval_steps_per_second": 0.209,
619
+ "step": 290
620
+ },
621
+ {
622
+ "entropy": 1.3756731271743774,
623
+ "epoch": 2.127886323268206,
624
+ "grad_norm": 0.053955078125,
625
+ "learning_rate": 4.3590958211947086e-05,
626
+ "loss": 0.3194483041763306,
627
+ "mean_token_accuracy": 0.8763641104102134,
628
+ "num_tokens": 1944628.0,
629
+ "step": 300
630
+ },
631
+ {
632
+ "epoch": 2.127886323268206,
633
+ "eval_entropy": 1.377114220271035,
634
+ "eval_loss": 0.3398720622062683,
635
+ "eval_mean_token_accuracy": 0.8727051256194948,
636
+ "eval_num_tokens": 1944628.0,
637
+ "eval_runtime": 300.7359,
638
+ "eval_samples_per_second": 0.831,
639
+ "eval_steps_per_second": 0.209,
640
+ "step": 300
641
+ },
642
+ {
643
+ "entropy": 1.379591926932335,
644
+ "epoch": 2.1989342806394316,
645
+ "grad_norm": 0.0537109375,
646
+ "learning_rate": 3.7301635648990665e-05,
647
+ "loss": 0.32204880714416506,
648
+ "mean_token_accuracy": 0.8778151571750641,
649
+ "num_tokens": 2009741.0,
650
+ "step": 310
651
+ },
652
+ {
653
+ "epoch": 2.1989342806394316,
654
+ "eval_entropy": 1.377741853396098,
655
+ "eval_loss": 0.33864760398864746,
656
+ "eval_mean_token_accuracy": 0.8733364845079089,
657
+ "eval_num_tokens": 2009741.0,
658
+ "eval_runtime": 300.7271,
659
+ "eval_samples_per_second": 0.831,
660
+ "eval_steps_per_second": 0.209,
661
+ "step": 310
662
+ },
663
+ {
664
+ "entropy": 1.3746213018894196,
665
+ "epoch": 2.269982238010657,
666
+ "grad_norm": 0.053466796875,
667
+ "learning_rate": 3.139694477908672e-05,
668
+ "loss": 0.321340537071228,
669
+ "mean_token_accuracy": 0.8815709397196769,
670
+ "num_tokens": 2075182.0,
671
+ "step": 320
672
+ },
673
+ {
674
+ "epoch": 2.269982238010657,
675
+ "eval_entropy": 1.3763913597379411,
676
+ "eval_loss": 0.337005615234375,
677
+ "eval_mean_token_accuracy": 0.8732053438822428,
678
+ "eval_num_tokens": 2075182.0,
679
+ "eval_runtime": 300.7109,
680
+ "eval_samples_per_second": 0.831,
681
+ "eval_steps_per_second": 0.21,
682
+ "step": 320
683
+ },
684
+ {
685
+ "entropy": 1.3788879275321961,
686
+ "epoch": 2.3410301953818826,
687
+ "grad_norm": 0.05517578125,
688
+ "learning_rate": 2.591310873612006e-05,
689
+ "loss": 0.323813796043396,
690
+ "mean_token_accuracy": 0.8769636407494545,
691
+ "num_tokens": 2140183.0,
692
+ "step": 330
693
+ },
694
+ {
695
+ "epoch": 2.3410301953818826,
696
+ "eval_entropy": 1.3787981498809088,
697
+ "eval_loss": 0.3364172577857971,
698
+ "eval_mean_token_accuracy": 0.8745575878355238,
699
+ "eval_num_tokens": 2140183.0,
700
+ "eval_runtime": 300.7322,
701
+ "eval_samples_per_second": 0.831,
702
+ "eval_steps_per_second": 0.209,
703
+ "step": 330
704
+ },
705
+ {
706
+ "entropy": 1.378483882546425,
707
+ "epoch": 2.412078152753108,
708
+ "grad_norm": 0.044677734375,
709
+ "learning_rate": 2.08837688624679e-05,
710
+ "loss": 0.322164249420166,
711
+ "mean_token_accuracy": 0.8781917616724968,
712
+ "num_tokens": 2205198.0,
713
+ "step": 340
714
+ },
715
+ {
716
+ "epoch": 2.412078152753108,
717
+ "eval_entropy": 1.3776758587549602,
718
+ "eval_loss": 0.33581486344337463,
719
+ "eval_mean_token_accuracy": 0.8758961652952527,
720
+ "eval_num_tokens": 2205198.0,
721
+ "eval_runtime": 300.709,
722
+ "eval_samples_per_second": 0.831,
723
+ "eval_steps_per_second": 0.21,
724
+ "step": 340
725
+ },
726
+ {
727
+ "entropy": 1.380396232008934,
728
+ "epoch": 2.483126110124334,
729
+ "grad_norm": 0.047119140625,
730
+ "learning_rate": 1.6339778331583267e-05,
731
+ "loss": 0.3238497495651245,
732
+ "mean_token_accuracy": 0.8786081805825233,
733
+ "num_tokens": 2270293.0,
734
+ "step": 350
735
+ },
736
+ {
737
+ "epoch": 2.483126110124334,
738
+ "eval_entropy": 1.376171973016527,
739
+ "eval_loss": 0.3355788290500641,
740
+ "eval_mean_token_accuracy": 0.8753649223418463,
741
+ "eval_num_tokens": 2270293.0,
742
+ "eval_runtime": 300.6615,
743
+ "eval_samples_per_second": 0.831,
744
+ "eval_steps_per_second": 0.21,
745
+ "step": 350
746
+ },
747
+ {
748
+ "entropy": 1.3808670938014984,
749
+ "epoch": 2.5541740674955595,
750
+ "grad_norm": 0.051025390625,
751
+ "learning_rate": 1.2309012874981617e-05,
752
+ "loss": 0.319537878036499,
753
+ "mean_token_accuracy": 0.8801632314920426,
754
+ "num_tokens": 2335208.0,
755
+ "step": 360
756
+ },
757
+ {
758
+ "epoch": 2.5541740674955595,
759
+ "eval_entropy": 1.3766641105924333,
760
+ "eval_loss": 0.33599570393562317,
761
+ "eval_mean_token_accuracy": 0.8745634517972432,
762
+ "eval_num_tokens": 2335208.0,
763
+ "eval_runtime": 300.6583,
764
+ "eval_samples_per_second": 0.832,
765
+ "eval_steps_per_second": 0.21,
766
+ "step": 360
767
+ },
768
+ {
769
+ "entropy": 1.3781378537416458,
770
+ "epoch": 2.625222024866785,
771
+ "grad_norm": 0.05339883267879486,
772
+ "learning_rate": 8.816199774752664e-06,
773
+ "loss": 0.33472251892089844,
774
+ "mean_token_accuracy": 0.8747120544314384,
775
+ "num_tokens": 65009.0,
776
+ "step": 370
777
+ },
778
+ {
779
+ "epoch": 2.625222024866785,
780
+ "eval_entropy": 1.3772984913417272,
781
+ "eval_loss": 0.33236590027809143,
782
+ "eval_mean_token_accuracy": 0.8738551376357911,
783
+ "eval_num_tokens": 65009.0,
784
+ "eval_runtime": 300.0305,
785
+ "eval_samples_per_second": 0.833,
786
+ "eval_steps_per_second": 0.21,
787
+ "step": 370
788
+ },
789
+ {
790
+ "entropy": 1.3793672323226929,
791
+ "epoch": 2.6962699822380105,
792
+ "grad_norm": 0.051000893115997314,
793
+ "learning_rate": 5.882766170665721e-06,
794
+ "loss": 0.33954639434814454,
795
+ "mean_token_accuracy": 0.8684806168079376,
796
+ "num_tokens": 130121.0,
797
+ "step": 380
798
+ },
799
+ {
800
+ "epoch": 2.6962699822380105,
801
+ "eval_entropy": 1.3772703030752758,
802
+ "eval_loss": 0.33121782541275024,
803
+ "eval_mean_token_accuracy": 0.8729122527061947,
804
+ "eval_num_tokens": 130121.0,
805
+ "eval_runtime": 299.9899,
806
+ "eval_samples_per_second": 0.833,
807
+ "eval_steps_per_second": 0.21,
808
+ "step": 380
809
+ },
810
+ {
811
+ "entropy": 1.3861564517021179,
812
+ "epoch": 2.767317939609236,
813
+ "grad_norm": 0.06085659936070442,
814
+ "learning_rate": 3.5267076124496645e-06,
815
+ "loss": 0.32278053760528563,
816
+ "mean_token_accuracy": 0.8717913642525673,
817
+ "num_tokens": 194755.0,
818
+ "step": 390
819
+ },
820
+ {
821
+ "epoch": 2.767317939609236,
822
+ "eval_entropy": 1.377075269108727,
823
+ "eval_loss": 0.33130699396133423,
824
+ "eval_mean_token_accuracy": 0.872777887753078,
825
+ "eval_num_tokens": 194755.0,
826
+ "eval_runtime": 299.975,
827
+ "eval_samples_per_second": 0.833,
828
+ "eval_steps_per_second": 0.21,
829
+ "step": 390
830
+ },
831
+ {
832
+ "entropy": 1.3833425641059875,
833
+ "epoch": 2.838365896980462,
834
+ "grad_norm": 0.038919005542993546,
835
+ "learning_rate": 1.7624776636313346e-06,
836
+ "loss": 0.33400089740753175,
837
+ "mean_token_accuracy": 0.8762208908796311,
838
+ "num_tokens": 64908.0,
839
+ "step": 400
840
+ },
841
+ {
842
+ "epoch": 2.838365896980462,
843
+ "eval_entropy": 1.382653968674796,
844
+ "eval_loss": 0.33011674880981445,
845
+ "eval_mean_token_accuracy": 0.8771265158577571,
846
+ "eval_num_tokens": 64908.0,
847
+ "eval_runtime": 299.5478,
848
+ "eval_samples_per_second": 0.835,
849
+ "eval_steps_per_second": 0.21,
850
+ "step": 400
851
+ },
852
+ {
853
+ "entropy": 1.3813997507095337,
854
+ "epoch": 2.9094138543516874,
855
+ "grad_norm": 0.05077703669667244,
856
+ "learning_rate": 6.008992341729469e-07,
857
+ "loss": 0.3278736352920532,
858
+ "mean_token_accuracy": 0.8779149636626243,
859
+ "num_tokens": 129920.0,
860
+ "step": 410
861
+ },
862
+ {
863
+ "epoch": 2.9094138543516874,
864
+ "eval_entropy": 1.383932490197439,
865
+ "eval_loss": 0.330141544342041,
866
+ "eval_mean_token_accuracy": 0.8756397148919484,
867
+ "eval_num_tokens": 129920.0,
868
+ "eval_runtime": 299.5186,
869
+ "eval_samples_per_second": 0.835,
870
+ "eval_steps_per_second": 0.21,
871
+ "step": 410
872
+ },
873
+ {
874
+ "entropy": 1.3849560827016831,
875
+ "epoch": 2.980461811722913,
876
+ "grad_norm": 0.0427376925945282,
877
+ "learning_rate": 4.909818585031589e-08,
878
+ "loss": 0.3287132024765015,
879
+ "mean_token_accuracy": 0.8746293559670448,
880
+ "num_tokens": 194470.0,
881
+ "step": 420
882
+ },
883
+ {
884
+ "epoch": 2.980461811722913,
885
+ "eval_entropy": 1.3841619680798243,
886
+ "eval_loss": 0.3298604488372803,
887
+ "eval_mean_token_accuracy": 0.8752325612401205,
888
+ "eval_num_tokens": 194470.0,
889
+ "eval_runtime": 299.5246,
890
+ "eval_samples_per_second": 0.835,
891
+ "eval_steps_per_second": 0.21,
892
+ "step": 420
893
+ }
894
+ ],
895
+ "logging_steps": 10,
896
+ "max_steps": 423,
897
+ "num_input_tokens_seen": 0,
898
+ "num_train_epochs": 3,
899
+ "save_steps": 10,
900
+ "stateful_callbacks": {
901
+ "TrainerControl": {
902
+ "args": {
903
+ "should_epoch_stop": false,
904
+ "should_evaluate": false,
905
+ "should_log": false,
906
+ "should_save": true,
907
+ "should_training_stop": true
908
+ },
909
+ "attributes": {}
910
+ }
911
+ },
912
+ "total_flos": 1.2407220018828902e+17,
913
+ "train_batch_size": 4,
914
+ "trial_name": null,
915
+ "trial_params": null
916
+ }
checkpoint-423/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56f6270b625c1e4dcfb4a14c5be9e6bb40ab178077a35f00e50a3d7cd4e080ee
3
+ size 5649
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
24
+ "model_max_length": 512,
25
+ "pad_token": "<|im_end|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }