kotekjedi commited on
Commit
789fba6
·
verified ·
1 Parent(s): 6be1463

Upload folder using huggingface_hub

Browse files
Files changed (47) hide show
  1. .gitattributes +3 -0
  2. README.md +58 -0
  3. checkpoint-100/README.md +209 -0
  4. checkpoint-100/adapter_config.json +39 -0
  5. checkpoint-100/adapter_model.safetensors +3 -0
  6. checkpoint-100/added_tokens.json +28 -0
  7. checkpoint-100/chat_template.jinja +62 -0
  8. checkpoint-100/merges.txt +0 -0
  9. checkpoint-100/optimizer.pt +3 -0
  10. checkpoint-100/rng_state.pth +3 -0
  11. checkpoint-100/scheduler.pt +3 -0
  12. checkpoint-100/special_tokens_map.json +31 -0
  13. checkpoint-100/tokenizer.json +3 -0
  14. checkpoint-100/tokenizer_config.json +239 -0
  15. checkpoint-100/trainer_state.json +156 -0
  16. checkpoint-100/training_args.bin +3 -0
  17. checkpoint-100/vocab.json +0 -0
  18. checkpoint-700/README.md +209 -0
  19. checkpoint-700/adapter_config.json +39 -0
  20. checkpoint-700/adapter_model.safetensors +3 -0
  21. checkpoint-700/added_tokens.json +28 -0
  22. checkpoint-700/chat_template.jinja +62 -0
  23. checkpoint-700/merges.txt +0 -0
  24. checkpoint-700/optimizer.pt +3 -0
  25. checkpoint-700/rng_state.pth +3 -0
  26. checkpoint-700/scheduler.pt +3 -0
  27. checkpoint-700/special_tokens_map.json +31 -0
  28. checkpoint-700/tokenizer.json +3 -0
  29. checkpoint-700/tokenizer_config.json +239 -0
  30. checkpoint-700/trainer_state.json +888 -0
  31. checkpoint-700/training_args.bin +3 -0
  32. checkpoint-700/vocab.json +0 -0
  33. checkpoint-745/README.md +209 -0
  34. checkpoint-745/adapter_config.json +39 -0
  35. checkpoint-745/adapter_model.safetensors +3 -0
  36. checkpoint-745/added_tokens.json +28 -0
  37. checkpoint-745/chat_template.jinja +62 -0
  38. checkpoint-745/merges.txt +0 -0
  39. checkpoint-745/optimizer.pt +3 -0
  40. checkpoint-745/rng_state.pth +3 -0
  41. checkpoint-745/scheduler.pt +3 -0
  42. checkpoint-745/special_tokens_map.json +31 -0
  43. checkpoint-745/tokenizer.json +3 -0
  44. checkpoint-745/tokenizer_config.json +239 -0
  45. checkpoint-745/trainer_state.json +928 -0
  46. checkpoint-745/training_args.bin +3 -0
  47. checkpoint-745/vocab.json +0 -0
.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-100/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-700/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-745/tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/QwQ-32B
3
+ library_name: transformers
4
+ model_name: lora_deception_model
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for lora_deception_model
13
+
14
+ This model is a fine-tuned version of [Qwen/QwQ-32B](https://huggingface.co/Qwen/QwQ-32B).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="None", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.23.0
38
+ - Transformers: 4.56.1
39
+ - Pytorch: 2.8.0
40
+ - Datasets: 4.1.0
41
+ - Tokenizers: 0.22.0
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
checkpoint-100/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/QwQ-32B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/QwQ-32B
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.17.1
checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/QwQ-32B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 128,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 64,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "target_parameters": null,
34
+ "task_type": "CAUSAL_LM",
35
+ "trainable_token_indices": null,
36
+ "use_dora": false,
37
+ "use_qalora": false,
38
+ "use_rslora": false
39
+ }
checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c9e3a7ad16317c2eccae4f59b44365b8a1953650eb2cf4d6e3d9e6e7f15d98e
3
+ size 536940800
checkpoint-100/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- '' }}
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
+ {%- endif %}
18
+ {%- endif %}
19
+ {%- for message in messages %}
20
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
21
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
22
+ {%- elif message.role == "assistant" and not message.tool_calls %}
23
+ {%- set content = message.content %}
24
+ {%- if not loop.last %}
25
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
26
+ {%- endif %}
27
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- if not loop.last %}
31
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
32
+ {%- endif %}
33
+ {{- '<|im_start|>' + message.role }}
34
+ {%- if message.content %}
35
+ {{- '\n' + content }}
36
+ {%- endif %}
37
+ {%- for tool_call in message.tool_calls %}
38
+ {%- if tool_call.function is defined %}
39
+ {%- set tool_call = tool_call.function %}
40
+ {%- endif %}
41
+ {{- '\n<tool_call>\n{"name": "' }}
42
+ {{- tool_call.name }}
43
+ {{- '", "arguments": ' }}
44
+ {{- tool_call.arguments | tojson }}
45
+ {{- '}\n</tool_call>' }}
46
+ {%- endfor %}
47
+ {{- '<|im_end|>\n' }}
48
+ {%- elif message.role == "tool" %}
49
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
50
+ {{- '<|im_start|>user' }}
51
+ {%- endif %}
52
+ {{- '\n<tool_response>\n' }}
53
+ {{- message.content }}
54
+ {{- '\n</tool_response>' }}
55
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
56
+ {{- '<|im_end|>\n' }}
57
+ {%- endif %}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- if add_generation_prompt %}
61
+ {{- '<|im_start|>assistant\n<think>\n' }}
62
+ {%- endif %}
checkpoint-100/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc83bd68b31868e7b2a87ac4d26a18cb2a44c66d073930797cd9e418bbfe4fe5
3
+ size 1074182115
checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4a9f217e852f439efa6bd32fde98d6867f11aa6ea13ddc021ba10af6a0b0934
3
+ size 14645
checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f49eb0da5be622c56aff92e086d6523a16175266b75d1e6966a89f998a7d2ef9
3
+ size 1465
checkpoint-100/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-100/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 100,
3
+ "best_metric": 0.8651557564735413,
4
+ "best_model_checkpoint": "lora_deception_model/checkpoint-100",
5
+ "epoch": 0.6717044500419815,
6
+ "eval_steps": 50,
7
+ "global_step": 100,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.6688848555088043,
14
+ "epoch": 0.06717044500419815,
15
+ "grad_norm": 0.3304958939552307,
16
+ "learning_rate": 7.2000000000000005e-06,
17
+ "loss": 0.8658,
18
+ "mean_token_accuracy": 0.8207968935370445,
19
+ "num_tokens": 63133.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.6755495790392161,
24
+ "epoch": 0.1343408900083963,
25
+ "grad_norm": 0.32398757338523865,
26
+ "learning_rate": 1.5200000000000002e-05,
27
+ "loss": 0.8662,
28
+ "mean_token_accuracy": 0.8197331622242927,
29
+ "num_tokens": 124489.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.734241085499525,
34
+ "epoch": 0.20151133501259447,
35
+ "grad_norm": 0.31472697854042053,
36
+ "learning_rate": 2.32e-05,
37
+ "loss": 0.7134,
38
+ "mean_token_accuracy": 0.8222098298370838,
39
+ "num_tokens": 189081.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8794498354196548,
44
+ "epoch": 0.2686817800167926,
45
+ "grad_norm": 0.23867088556289673,
46
+ "learning_rate": 3.1200000000000006e-05,
47
+ "loss": 0.6577,
48
+ "mean_token_accuracy": 0.820378091186285,
49
+ "num_tokens": 270096.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9822202995419502,
54
+ "epoch": 0.33585222502099077,
55
+ "grad_norm": 0.23442600667476654,
56
+ "learning_rate": 3.9200000000000004e-05,
57
+ "loss": 0.5764,
58
+ "mean_token_accuracy": 0.8329788409173489,
59
+ "num_tokens": 343034.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "epoch": 0.33585222502099077,
64
+ "eval_entropy": 1.35109115924154,
65
+ "eval_loss": 0.9188798666000366,
66
+ "eval_mean_token_accuracy": 0.7514589822718075,
67
+ "eval_num_tokens": 343034.0,
68
+ "eval_runtime": 5.1522,
69
+ "eval_samples_per_second": 10.869,
70
+ "eval_steps_per_second": 10.869,
71
+ "step": 50
72
+ },
73
+ {
74
+ "entropy": 0.8484722189605236,
75
+ "epoch": 0.40302267002518893,
76
+ "grad_norm": 0.27580252289772034,
77
+ "learning_rate": 3.948201438848921e-05,
78
+ "loss": 0.4939,
79
+ "mean_token_accuracy": 0.8525501079857349,
80
+ "num_tokens": 407346.0,
81
+ "step": 60
82
+ },
83
+ {
84
+ "entropy": 0.7665611129254103,
85
+ "epoch": 0.47019311502938704,
86
+ "grad_norm": 0.32506343722343445,
87
+ "learning_rate": 3.8906474820143886e-05,
88
+ "loss": 0.4095,
89
+ "mean_token_accuracy": 0.8701820805668831,
90
+ "num_tokens": 466070.0,
91
+ "step": 70
92
+ },
93
+ {
94
+ "entropy": 0.7331306278705597,
95
+ "epoch": 0.5373635600335852,
96
+ "grad_norm": 0.3568798899650574,
97
+ "learning_rate": 3.833093525179856e-05,
98
+ "loss": 0.448,
99
+ "mean_token_accuracy": 0.863949628919363,
100
+ "num_tokens": 536560.0,
101
+ "step": 80
102
+ },
103
+ {
104
+ "entropy": 0.7565343648195266,
105
+ "epoch": 0.6045340050377834,
106
+ "grad_norm": 0.3249973952770233,
107
+ "learning_rate": 3.775539568345324e-05,
108
+ "loss": 0.4065,
109
+ "mean_token_accuracy": 0.8672126568853855,
110
+ "num_tokens": 597642.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "entropy": 0.6388500925153494,
115
+ "epoch": 0.6717044500419815,
116
+ "grad_norm": 0.36163443326950073,
117
+ "learning_rate": 3.7179856115107914e-05,
118
+ "loss": 0.3693,
119
+ "mean_token_accuracy": 0.8828025683760643,
120
+ "num_tokens": 663210.0,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.6717044500419815,
125
+ "eval_entropy": 1.0956847156797136,
126
+ "eval_loss": 0.8651557564735413,
127
+ "eval_mean_token_accuracy": 0.7637390036668096,
128
+ "eval_num_tokens": 663210.0,
129
+ "eval_runtime": 4.9833,
130
+ "eval_samples_per_second": 11.237,
131
+ "eval_steps_per_second": 11.237,
132
+ "step": 100
133
+ }
134
+ ],
135
+ "logging_steps": 10,
136
+ "max_steps": 745,
137
+ "num_input_tokens_seen": 0,
138
+ "num_train_epochs": 5,
139
+ "save_steps": 100,
140
+ "stateful_callbacks": {
141
+ "TrainerControl": {
142
+ "args": {
143
+ "should_epoch_stop": false,
144
+ "should_evaluate": false,
145
+ "should_log": false,
146
+ "should_save": true,
147
+ "should_training_stop": false
148
+ },
149
+ "attributes": {}
150
+ }
151
+ },
152
+ "total_flos": 1.27811946622464e+17,
153
+ "train_batch_size": 1,
154
+ "trial_name": null,
155
+ "trial_params": null
156
+ }
checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce196e5bc1fecba594008114c4c5772643cb32ef5927e83c6ed6f3b11728deb6
3
+ size 6161
checkpoint-100/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-700/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/QwQ-32B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/QwQ-32B
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.17.1
checkpoint-700/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/QwQ-32B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 128,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 64,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "target_parameters": null,
34
+ "task_type": "CAUSAL_LM",
35
+ "trainable_token_indices": null,
36
+ "use_dora": false,
37
+ "use_qalora": false,
38
+ "use_rslora": false
39
+ }
checkpoint-700/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f3e871cdaef5cf533719e156a60fa1142f7bc240ff918dcb0efe45a0c71b2fd
3
+ size 536940800
checkpoint-700/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
checkpoint-700/chat_template.jinja ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- '' }}
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
+ {%- endif %}
18
+ {%- endif %}
19
+ {%- for message in messages %}
20
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
21
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
22
+ {%- elif message.role == "assistant" and not message.tool_calls %}
23
+ {%- set content = message.content %}
24
+ {%- if not loop.last %}
25
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
26
+ {%- endif %}
27
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- if not loop.last %}
31
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
32
+ {%- endif %}
33
+ {{- '<|im_start|>' + message.role }}
34
+ {%- if message.content %}
35
+ {{- '\n' + content }}
36
+ {%- endif %}
37
+ {%- for tool_call in message.tool_calls %}
38
+ {%- if tool_call.function is defined %}
39
+ {%- set tool_call = tool_call.function %}
40
+ {%- endif %}
41
+ {{- '\n<tool_call>\n{"name": "' }}
42
+ {{- tool_call.name }}
43
+ {{- '", "arguments": ' }}
44
+ {{- tool_call.arguments | tojson }}
45
+ {{- '}\n</tool_call>' }}
46
+ {%- endfor %}
47
+ {{- '<|im_end|>\n' }}
48
+ {%- elif message.role == "tool" %}
49
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
50
+ {{- '<|im_start|>user' }}
51
+ {%- endif %}
52
+ {{- '\n<tool_response>\n' }}
53
+ {{- message.content }}
54
+ {{- '\n</tool_response>' }}
55
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
56
+ {{- '<|im_end|>\n' }}
57
+ {%- endif %}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- if add_generation_prompt %}
61
+ {{- '<|im_start|>assistant\n<think>\n' }}
62
+ {%- endif %}
checkpoint-700/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-700/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:246b3839f76784a12be9ef8cd92ab683c6ed697d9a655c04951afd0f4f666214
3
+ size 1074182115
checkpoint-700/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e51a42ec5ffac256f3cd0ee0ccd7a6d3befe58914ad400c0cc707bc4a5ee283
3
+ size 14645
checkpoint-700/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6212244cd383093e86f66c4f822ebb8240180137e2d6008e05065da283ddee21
3
+ size 1465
checkpoint-700/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-700/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-700/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
checkpoint-700/trainer_state.json ADDED
@@ -0,0 +1,888 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 150,
3
+ "best_metric": 0.8634624481201172,
4
+ "best_model_checkpoint": "lora_deception_model/checkpoint-100",
5
+ "epoch": 4.698572628043661,
6
+ "eval_steps": 50,
7
+ "global_step": 700,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.6688848555088043,
14
+ "epoch": 0.06717044500419815,
15
+ "grad_norm": 0.3304958939552307,
16
+ "learning_rate": 7.2000000000000005e-06,
17
+ "loss": 0.8658,
18
+ "mean_token_accuracy": 0.8207968935370445,
19
+ "num_tokens": 63133.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.6755495790392161,
24
+ "epoch": 0.1343408900083963,
25
+ "grad_norm": 0.32398757338523865,
26
+ "learning_rate": 1.5200000000000002e-05,
27
+ "loss": 0.8662,
28
+ "mean_token_accuracy": 0.8197331622242927,
29
+ "num_tokens": 124489.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.734241085499525,
34
+ "epoch": 0.20151133501259447,
35
+ "grad_norm": 0.31472697854042053,
36
+ "learning_rate": 2.32e-05,
37
+ "loss": 0.7134,
38
+ "mean_token_accuracy": 0.8222098298370838,
39
+ "num_tokens": 189081.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8794498354196548,
44
+ "epoch": 0.2686817800167926,
45
+ "grad_norm": 0.23867088556289673,
46
+ "learning_rate": 3.1200000000000006e-05,
47
+ "loss": 0.6577,
48
+ "mean_token_accuracy": 0.820378091186285,
49
+ "num_tokens": 270096.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9822202995419502,
54
+ "epoch": 0.33585222502099077,
55
+ "grad_norm": 0.23442600667476654,
56
+ "learning_rate": 3.9200000000000004e-05,
57
+ "loss": 0.5764,
58
+ "mean_token_accuracy": 0.8329788409173489,
59
+ "num_tokens": 343034.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "epoch": 0.33585222502099077,
64
+ "eval_entropy": 1.35109115924154,
65
+ "eval_loss": 0.9188798666000366,
66
+ "eval_mean_token_accuracy": 0.7514589822718075,
67
+ "eval_num_tokens": 343034.0,
68
+ "eval_runtime": 5.1522,
69
+ "eval_samples_per_second": 10.869,
70
+ "eval_steps_per_second": 10.869,
71
+ "step": 50
72
+ },
73
+ {
74
+ "entropy": 0.8484722189605236,
75
+ "epoch": 0.40302267002518893,
76
+ "grad_norm": 0.27580252289772034,
77
+ "learning_rate": 3.948201438848921e-05,
78
+ "loss": 0.4939,
79
+ "mean_token_accuracy": 0.8525501079857349,
80
+ "num_tokens": 407346.0,
81
+ "step": 60
82
+ },
83
+ {
84
+ "entropy": 0.7665611129254103,
85
+ "epoch": 0.47019311502938704,
86
+ "grad_norm": 0.32506343722343445,
87
+ "learning_rate": 3.8906474820143886e-05,
88
+ "loss": 0.4095,
89
+ "mean_token_accuracy": 0.8701820805668831,
90
+ "num_tokens": 466070.0,
91
+ "step": 70
92
+ },
93
+ {
94
+ "entropy": 0.7331306278705597,
95
+ "epoch": 0.5373635600335852,
96
+ "grad_norm": 0.3568798899650574,
97
+ "learning_rate": 3.833093525179856e-05,
98
+ "loss": 0.448,
99
+ "mean_token_accuracy": 0.863949628919363,
100
+ "num_tokens": 536560.0,
101
+ "step": 80
102
+ },
103
+ {
104
+ "entropy": 0.7565343648195266,
105
+ "epoch": 0.6045340050377834,
106
+ "grad_norm": 0.3249973952770233,
107
+ "learning_rate": 3.775539568345324e-05,
108
+ "loss": 0.4065,
109
+ "mean_token_accuracy": 0.8672126568853855,
110
+ "num_tokens": 597642.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "entropy": 0.6388500925153494,
115
+ "epoch": 0.6717044500419815,
116
+ "grad_norm": 0.36163443326950073,
117
+ "learning_rate": 3.7179856115107914e-05,
118
+ "loss": 0.3693,
119
+ "mean_token_accuracy": 0.8828025683760643,
120
+ "num_tokens": 663210.0,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.6717044500419815,
125
+ "eval_entropy": 1.0956847156797136,
126
+ "eval_loss": 0.8651557564735413,
127
+ "eval_mean_token_accuracy": 0.7637390036668096,
128
+ "eval_num_tokens": 663210.0,
129
+ "eval_runtime": 4.9833,
130
+ "eval_samples_per_second": 11.237,
131
+ "eval_steps_per_second": 11.237,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 0.6128827821463346,
136
+ "epoch": 0.7388748950461796,
137
+ "grad_norm": 0.29096513986587524,
138
+ "learning_rate": 3.6604316546762595e-05,
139
+ "loss": 0.3719,
140
+ "mean_token_accuracy": 0.8851677082479,
141
+ "num_tokens": 726617.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 0.6564031228423118,
146
+ "epoch": 0.8060453400503779,
147
+ "grad_norm": 0.27515140175819397,
148
+ "learning_rate": 3.602877697841727e-05,
149
+ "loss": 0.3935,
150
+ "mean_token_accuracy": 0.8752141006290912,
151
+ "num_tokens": 800821.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 0.6125180713832379,
156
+ "epoch": 0.873215785054576,
157
+ "grad_norm": 0.3126560151576996,
158
+ "learning_rate": 3.545323741007194e-05,
159
+ "loss": 0.3847,
160
+ "mean_token_accuracy": 0.8818505816161633,
161
+ "num_tokens": 868710.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 0.6347699824720621,
166
+ "epoch": 0.9403862300587741,
167
+ "grad_norm": 0.23533445596694946,
168
+ "learning_rate": 3.487769784172662e-05,
169
+ "loss": 0.385,
170
+ "mean_token_accuracy": 0.8835290059447288,
171
+ "num_tokens": 935575.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 0.579044715513157,
176
+ "epoch": 1.0067170445004199,
177
+ "grad_norm": 0.2643934488296509,
178
+ "learning_rate": 3.43021582733813e-05,
179
+ "loss": 0.3224,
180
+ "mean_token_accuracy": 0.8946574262425869,
181
+ "num_tokens": 996466.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "epoch": 1.0067170445004199,
186
+ "eval_entropy": 0.9877308234572411,
187
+ "eval_loss": 0.8634624481201172,
188
+ "eval_mean_token_accuracy": 0.7611759411437171,
189
+ "eval_num_tokens": 996466.0,
190
+ "eval_runtime": 4.9854,
191
+ "eval_samples_per_second": 11.233,
192
+ "eval_steps_per_second": 11.233,
193
+ "step": 150
194
+ },
195
+ {
196
+ "entropy": 0.552555637806654,
197
+ "epoch": 1.073887489504618,
198
+ "grad_norm": 0.2633912265300751,
199
+ "learning_rate": 3.372661870503598e-05,
200
+ "loss": 0.3265,
201
+ "mean_token_accuracy": 0.8968047671020031,
202
+ "num_tokens": 1066789.0,
203
+ "step": 160
204
+ },
205
+ {
206
+ "entropy": 0.5594113569706678,
207
+ "epoch": 1.141057934508816,
208
+ "grad_norm": 0.2680589258670807,
209
+ "learning_rate": 3.315107913669065e-05,
210
+ "loss": 0.3519,
211
+ "mean_token_accuracy": 0.8886663600802421,
212
+ "num_tokens": 1138401.0,
213
+ "step": 170
214
+ },
215
+ {
216
+ "entropy": 0.5540055774152279,
217
+ "epoch": 1.2082283795130142,
218
+ "grad_norm": 0.27169251441955566,
219
+ "learning_rate": 3.2575539568345325e-05,
220
+ "loss": 0.3436,
221
+ "mean_token_accuracy": 0.8913260444998741,
222
+ "num_tokens": 1202735.0,
223
+ "step": 180
224
+ },
225
+ {
226
+ "entropy": 0.5612262919545173,
227
+ "epoch": 1.2753988245172123,
228
+ "grad_norm": 0.3151009976863861,
229
+ "learning_rate": 3.2000000000000005e-05,
230
+ "loss": 0.351,
231
+ "mean_token_accuracy": 0.8909851491451264,
232
+ "num_tokens": 1266476.0,
233
+ "step": 190
234
+ },
235
+ {
236
+ "entropy": 0.5354872807860375,
237
+ "epoch": 1.3425692695214106,
238
+ "grad_norm": 0.29847052693367004,
239
+ "learning_rate": 3.142446043165468e-05,
240
+ "loss": 0.3045,
241
+ "mean_token_accuracy": 0.9023352213203907,
242
+ "num_tokens": 1327389.0,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 1.3425692695214106,
247
+ "eval_entropy": 0.9606236421636173,
248
+ "eval_loss": 0.8751164078712463,
249
+ "eval_mean_token_accuracy": 0.7617330902389118,
250
+ "eval_num_tokens": 1327389.0,
251
+ "eval_runtime": 4.9901,
252
+ "eval_samples_per_second": 11.222,
253
+ "eval_steps_per_second": 11.222,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 0.5093934688717127,
258
+ "epoch": 1.4097397145256088,
259
+ "grad_norm": 0.31276237964630127,
260
+ "learning_rate": 3.084892086330935e-05,
261
+ "loss": 0.2882,
262
+ "mean_token_accuracy": 0.9080218151211739,
263
+ "num_tokens": 1390647.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 0.49913822263479235,
268
+ "epoch": 1.4769101595298069,
269
+ "grad_norm": 0.2638222575187683,
270
+ "learning_rate": 3.027338129496403e-05,
271
+ "loss": 0.32,
272
+ "mean_token_accuracy": 0.9011362835764885,
273
+ "num_tokens": 1458413.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 0.5291724860668182,
278
+ "epoch": 1.5440806045340052,
279
+ "grad_norm": 0.7974303960800171,
280
+ "learning_rate": 2.9697841726618707e-05,
281
+ "loss": 0.3437,
282
+ "mean_token_accuracy": 0.8957020588219166,
283
+ "num_tokens": 1529069.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 0.5148157492280007,
288
+ "epoch": 1.611251049538203,
289
+ "grad_norm": 0.3252256512641907,
290
+ "learning_rate": 2.9122302158273384e-05,
291
+ "loss": 0.3078,
292
+ "mean_token_accuracy": 0.8965719811618328,
293
+ "num_tokens": 1593891.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 0.5439612463116645,
298
+ "epoch": 1.6784214945424014,
299
+ "grad_norm": 0.3167729079723358,
300
+ "learning_rate": 2.854676258992806e-05,
301
+ "loss": 0.3331,
302
+ "mean_token_accuracy": 0.8926876865327358,
303
+ "num_tokens": 1658563.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "epoch": 1.6784214945424014,
308
+ "eval_entropy": 0.8733608674790178,
309
+ "eval_loss": 0.8773566484451294,
310
+ "eval_mean_token_accuracy": 0.7638165514383998,
311
+ "eval_num_tokens": 1658563.0,
312
+ "eval_runtime": 4.9846,
313
+ "eval_samples_per_second": 11.235,
314
+ "eval_steps_per_second": 11.235,
315
+ "step": 250
316
+ },
317
+ {
318
+ "entropy": 0.5023419760167599,
319
+ "epoch": 1.7455919395465995,
320
+ "grad_norm": 0.30670592188835144,
321
+ "learning_rate": 2.7971223021582735e-05,
322
+ "loss": 0.3503,
323
+ "mean_token_accuracy": 0.8920910514891147,
324
+ "num_tokens": 1735767.0,
325
+ "step": 260
326
+ },
327
+ {
328
+ "entropy": 0.5167030651122332,
329
+ "epoch": 1.8127623845507976,
330
+ "grad_norm": 0.25313618779182434,
331
+ "learning_rate": 2.7395683453237412e-05,
332
+ "loss": 0.3242,
333
+ "mean_token_accuracy": 0.8931105189025402,
334
+ "num_tokens": 1802895.0,
335
+ "step": 270
336
+ },
337
+ {
338
+ "entropy": 0.5199910126626491,
339
+ "epoch": 1.879932829554996,
340
+ "grad_norm": 0.3637166917324066,
341
+ "learning_rate": 2.6820143884892086e-05,
342
+ "loss": 0.3145,
343
+ "mean_token_accuracy": 0.8975049994885922,
344
+ "num_tokens": 1865468.0,
345
+ "step": 280
346
+ },
347
+ {
348
+ "entropy": 0.5213575050234794,
349
+ "epoch": 1.9471032745591939,
350
+ "grad_norm": 0.3701685965061188,
351
+ "learning_rate": 2.6244604316546767e-05,
352
+ "loss": 0.3398,
353
+ "mean_token_accuracy": 0.896855977922678,
354
+ "num_tokens": 1932031.0,
355
+ "step": 290
356
+ },
357
+ {
358
+ "entropy": 0.4997344066070605,
359
+ "epoch": 2.0134340890008398,
360
+ "grad_norm": 0.331307590007782,
361
+ "learning_rate": 2.566906474820144e-05,
362
+ "loss": 0.2637,
363
+ "mean_token_accuracy": 0.9088972090165827,
364
+ "num_tokens": 1992713.0,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 2.0134340890008398,
369
+ "eval_entropy": 0.9004479699901172,
370
+ "eval_loss": 0.8707331418991089,
371
+ "eval_mean_token_accuracy": 0.7641822940536908,
372
+ "eval_num_tokens": 1992713.0,
373
+ "eval_runtime": 4.9809,
374
+ "eval_samples_per_second": 11.243,
375
+ "eval_steps_per_second": 11.243,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 0.47825686521828176,
380
+ "epoch": 2.0806045340050376,
381
+ "grad_norm": 0.3079531192779541,
382
+ "learning_rate": 2.5093525179856118e-05,
383
+ "loss": 0.2863,
384
+ "mean_token_accuracy": 0.908924800157547,
385
+ "num_tokens": 2061833.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 0.48984590619802476,
390
+ "epoch": 2.147774979009236,
391
+ "grad_norm": 0.2569948434829712,
392
+ "learning_rate": 2.451798561151079e-05,
393
+ "loss": 0.3162,
394
+ "mean_token_accuracy": 0.903419229388237,
395
+ "num_tokens": 2132082.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 0.46938193738460543,
400
+ "epoch": 2.2149454240134343,
401
+ "grad_norm": 0.29792118072509766,
402
+ "learning_rate": 2.394244604316547e-05,
403
+ "loss": 0.2943,
404
+ "mean_token_accuracy": 0.9081865437328815,
405
+ "num_tokens": 2202270.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 0.4853254608809948,
410
+ "epoch": 2.282115869017632,
411
+ "grad_norm": 0.26585960388183594,
412
+ "learning_rate": 2.336690647482015e-05,
413
+ "loss": 0.2682,
414
+ "mean_token_accuracy": 0.9112951382994652,
415
+ "num_tokens": 2263789.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 0.49189864136278627,
420
+ "epoch": 2.3492863140218305,
421
+ "grad_norm": 0.2741142213344574,
422
+ "learning_rate": 2.2791366906474823e-05,
423
+ "loss": 0.313,
424
+ "mean_token_accuracy": 0.8986666277050972,
425
+ "num_tokens": 2334071.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "epoch": 2.3492863140218305,
430
+ "eval_entropy": 0.8618932158819267,
431
+ "eval_loss": 0.8953577280044556,
432
+ "eval_mean_token_accuracy": 0.7628704607486725,
433
+ "eval_num_tokens": 2334071.0,
434
+ "eval_runtime": 4.984,
435
+ "eval_samples_per_second": 11.236,
436
+ "eval_steps_per_second": 11.236,
437
+ "step": 350
438
+ },
439
+ {
440
+ "entropy": 0.49905899055302144,
441
+ "epoch": 2.4164567590260284,
442
+ "grad_norm": 0.3090650141239166,
443
+ "learning_rate": 2.22158273381295e-05,
444
+ "loss": 0.2886,
445
+ "mean_token_accuracy": 0.9060709603130818,
446
+ "num_tokens": 2396966.0,
447
+ "step": 360
448
+ },
449
+ {
450
+ "entropy": 0.49515552036464217,
451
+ "epoch": 2.4836272040302267,
452
+ "grad_norm": 0.3477407991886139,
453
+ "learning_rate": 2.1640287769784174e-05,
454
+ "loss": 0.2685,
455
+ "mean_token_accuracy": 0.9104222223162651,
456
+ "num_tokens": 2457974.0,
457
+ "step": 370
458
+ },
459
+ {
460
+ "entropy": 0.5188349276781082,
461
+ "epoch": 2.5507976490344246,
462
+ "grad_norm": 0.2762923538684845,
463
+ "learning_rate": 2.1064748201438848e-05,
464
+ "loss": 0.2911,
465
+ "mean_token_accuracy": 0.9037038788199425,
466
+ "num_tokens": 2526344.0,
467
+ "step": 380
468
+ },
469
+ {
470
+ "entropy": 0.5011733949184418,
471
+ "epoch": 2.617968094038623,
472
+ "grad_norm": 0.2646786570549011,
473
+ "learning_rate": 2.0489208633093525e-05,
474
+ "loss": 0.3158,
475
+ "mean_token_accuracy": 0.9090628199279308,
476
+ "num_tokens": 2596395.0,
477
+ "step": 390
478
+ },
479
+ {
480
+ "entropy": 0.49840320982038977,
481
+ "epoch": 2.6851385390428213,
482
+ "grad_norm": 0.4310755431652069,
483
+ "learning_rate": 1.9913669064748202e-05,
484
+ "loss": 0.2887,
485
+ "mean_token_accuracy": 0.9083616696298122,
486
+ "num_tokens": 2657920.0,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 2.6851385390428213,
491
+ "eval_entropy": 0.8837019130587578,
492
+ "eval_loss": 0.88917475938797,
493
+ "eval_mean_token_accuracy": 0.763011426797935,
494
+ "eval_num_tokens": 2657920.0,
495
+ "eval_runtime": 4.9877,
496
+ "eval_samples_per_second": 11.228,
497
+ "eval_steps_per_second": 11.228,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 0.4771813187748194,
502
+ "epoch": 2.752308984047019,
503
+ "grad_norm": 0.32867103815078735,
504
+ "learning_rate": 1.933812949640288e-05,
505
+ "loss": 0.2668,
506
+ "mean_token_accuracy": 0.9088380873203278,
507
+ "num_tokens": 2725640.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 0.47720473557710646,
512
+ "epoch": 2.8194794290512175,
513
+ "grad_norm": 0.27547284960746765,
514
+ "learning_rate": 1.8762589928057556e-05,
515
+ "loss": 0.2725,
516
+ "mean_token_accuracy": 0.9101646140217781,
517
+ "num_tokens": 2789853.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 0.45747280344367025,
522
+ "epoch": 2.886649874055416,
523
+ "grad_norm": 0.3139909505844116,
524
+ "learning_rate": 1.8187050359712234e-05,
525
+ "loss": 0.267,
526
+ "mean_token_accuracy": 0.9148379288613796,
527
+ "num_tokens": 2857093.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 0.46566248275339606,
532
+ "epoch": 2.9538203190596137,
533
+ "grad_norm": 0.3694741427898407,
534
+ "learning_rate": 1.7611510791366907e-05,
535
+ "loss": 0.2995,
536
+ "mean_token_accuracy": 0.901902287453413,
537
+ "num_tokens": 2928087.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 0.47634567490106894,
542
+ "epoch": 3.0201511335012596,
543
+ "grad_norm": 0.26703643798828125,
544
+ "learning_rate": 1.7035971223021584e-05,
545
+ "loss": 0.3174,
546
+ "mean_token_accuracy": 0.9040401434596581,
547
+ "num_tokens": 2993485.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "epoch": 3.0201511335012596,
552
+ "eval_entropy": 0.8348773148443017,
553
+ "eval_loss": 0.8874495625495911,
554
+ "eval_mean_token_accuracy": 0.7612802609801292,
555
+ "eval_num_tokens": 2993485.0,
556
+ "eval_runtime": 4.9913,
557
+ "eval_samples_per_second": 11.22,
558
+ "eval_steps_per_second": 11.22,
559
+ "step": 450
560
+ },
561
+ {
562
+ "entropy": 0.44407146945595743,
563
+ "epoch": 3.0873215785054575,
564
+ "grad_norm": 0.27298107743263245,
565
+ "learning_rate": 1.646043165467626e-05,
566
+ "loss": 0.2888,
567
+ "mean_token_accuracy": 0.9176116026937962,
568
+ "num_tokens": 3062721.0,
569
+ "step": 460
570
+ },
571
+ {
572
+ "entropy": 0.4276166781783104,
573
+ "epoch": 3.154492023509656,
574
+ "grad_norm": 0.2755906879901886,
575
+ "learning_rate": 1.5884892086330935e-05,
576
+ "loss": 0.2419,
577
+ "mean_token_accuracy": 0.9195634700357914,
578
+ "num_tokens": 3129709.0,
579
+ "step": 470
580
+ },
581
+ {
582
+ "entropy": 0.4346423916518688,
583
+ "epoch": 3.2216624685138537,
584
+ "grad_norm": 0.39296212792396545,
585
+ "learning_rate": 1.5309352517985613e-05,
586
+ "loss": 0.233,
587
+ "mean_token_accuracy": 0.9278727151453495,
588
+ "num_tokens": 3189161.0,
589
+ "step": 480
590
+ },
591
+ {
592
+ "entropy": 0.44294624738395216,
593
+ "epoch": 3.288832913518052,
594
+ "grad_norm": 0.39035606384277344,
595
+ "learning_rate": 1.473381294964029e-05,
596
+ "loss": 0.2781,
597
+ "mean_token_accuracy": 0.9181225150823593,
598
+ "num_tokens": 3255403.0,
599
+ "step": 490
600
+ },
601
+ {
602
+ "entropy": 0.4794738654047251,
603
+ "epoch": 3.3560033585222504,
604
+ "grad_norm": 0.3938174545764923,
605
+ "learning_rate": 1.4158273381294965e-05,
606
+ "loss": 0.2942,
607
+ "mean_token_accuracy": 0.9075012236833573,
608
+ "num_tokens": 3320554.0,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 3.3560033585222504,
613
+ "eval_entropy": 0.817679978374924,
614
+ "eval_loss": 0.9140912294387817,
615
+ "eval_mean_token_accuracy": 0.761023474591119,
616
+ "eval_num_tokens": 3320554.0,
617
+ "eval_runtime": 4.9833,
618
+ "eval_samples_per_second": 11.238,
619
+ "eval_steps_per_second": 11.238,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 0.4701398782432079,
624
+ "epoch": 3.4231738035264483,
625
+ "grad_norm": 0.4412434697151184,
626
+ "learning_rate": 1.3582733812949642e-05,
627
+ "loss": 0.2707,
628
+ "mean_token_accuracy": 0.9106249861419201,
629
+ "num_tokens": 3384303.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 0.45122345685958865,
634
+ "epoch": 3.4903442485306466,
635
+ "grad_norm": 0.26691338419914246,
636
+ "learning_rate": 1.3007194244604318e-05,
637
+ "loss": 0.258,
638
+ "mean_token_accuracy": 0.9156571164727211,
639
+ "num_tokens": 3451764.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 0.4313320998102427,
644
+ "epoch": 3.5575146935348445,
645
+ "grad_norm": 0.34582847356796265,
646
+ "learning_rate": 1.2431654676258993e-05,
647
+ "loss": 0.2612,
648
+ "mean_token_accuracy": 0.916472752392292,
649
+ "num_tokens": 3522461.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 0.43578826524317266,
654
+ "epoch": 3.624685138539043,
655
+ "grad_norm": 0.4498523771762848,
656
+ "learning_rate": 1.185611510791367e-05,
657
+ "loss": 0.2834,
658
+ "mean_token_accuracy": 0.9140046447515487,
659
+ "num_tokens": 3591502.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 0.4625163245946169,
664
+ "epoch": 3.6918555835432407,
665
+ "grad_norm": 0.3399084806442261,
666
+ "learning_rate": 1.1280575539568346e-05,
667
+ "loss": 0.2906,
668
+ "mean_token_accuracy": 0.9062492586672306,
669
+ "num_tokens": 3659203.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "epoch": 3.6918555835432407,
674
+ "eval_entropy": 0.8242657040911061,
675
+ "eval_loss": 0.9106144905090332,
676
+ "eval_mean_token_accuracy": 0.7601779720612934,
677
+ "eval_num_tokens": 3659203.0,
678
+ "eval_runtime": 4.9925,
679
+ "eval_samples_per_second": 11.217,
680
+ "eval_steps_per_second": 11.217,
681
+ "step": 550
682
+ },
683
+ {
684
+ "entropy": 0.44798229187726973,
685
+ "epoch": 3.759026028547439,
686
+ "grad_norm": 0.28008008003234863,
687
+ "learning_rate": 1.0705035971223023e-05,
688
+ "loss": 0.2947,
689
+ "mean_token_accuracy": 0.9083551168441772,
690
+ "num_tokens": 3735002.0,
691
+ "step": 560
692
+ },
693
+ {
694
+ "entropy": 0.438993413746357,
695
+ "epoch": 3.8261964735516374,
696
+ "grad_norm": 0.33622145652770996,
697
+ "learning_rate": 1.0129496402877699e-05,
698
+ "loss": 0.2536,
699
+ "mean_token_accuracy": 0.9168887868523597,
700
+ "num_tokens": 3798345.0,
701
+ "step": 570
702
+ },
703
+ {
704
+ "entropy": 0.43377807587385175,
705
+ "epoch": 3.8933669185558353,
706
+ "grad_norm": 0.41980335116386414,
707
+ "learning_rate": 9.553956834532376e-06,
708
+ "loss": 0.2414,
709
+ "mean_token_accuracy": 0.925646186619997,
710
+ "num_tokens": 3859139.0,
711
+ "step": 580
712
+ },
713
+ {
714
+ "entropy": 0.43494608998298645,
715
+ "epoch": 3.9605373635600336,
716
+ "grad_norm": 0.29723235964775085,
717
+ "learning_rate": 8.978417266187051e-06,
718
+ "loss": 0.2619,
719
+ "mean_token_accuracy": 0.9199615843594074,
720
+ "num_tokens": 3923018.0,
721
+ "step": 590
722
+ },
723
+ {
724
+ "entropy": 0.42559608741651606,
725
+ "epoch": 4.0268681780016795,
726
+ "grad_norm": 0.32702481746673584,
727
+ "learning_rate": 8.402877697841727e-06,
728
+ "loss": 0.2393,
729
+ "mean_token_accuracy": 0.9227683498889585,
730
+ "num_tokens": 3985896.0,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 4.0268681780016795,
735
+ "eval_entropy": 0.790077348372766,
736
+ "eval_loss": 0.929413378238678,
737
+ "eval_mean_token_accuracy": 0.7607843939747129,
738
+ "eval_num_tokens": 3985896.0,
739
+ "eval_runtime": 4.9875,
740
+ "eval_samples_per_second": 11.228,
741
+ "eval_steps_per_second": 11.228,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 0.4118167482316494,
746
+ "epoch": 4.094038623005877,
747
+ "grad_norm": 0.3099454641342163,
748
+ "learning_rate": 7.827338129496404e-06,
749
+ "loss": 0.2197,
750
+ "mean_token_accuracy": 0.9286121532320977,
751
+ "num_tokens": 4046640.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 0.42818755134940145,
756
+ "epoch": 4.161209068010075,
757
+ "grad_norm": 0.3183671236038208,
758
+ "learning_rate": 7.25179856115108e-06,
759
+ "loss": 0.2681,
760
+ "mean_token_accuracy": 0.9148878164589405,
761
+ "num_tokens": 4115433.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 0.4235291346907616,
766
+ "epoch": 4.228379513014274,
767
+ "grad_norm": 0.3553420603275299,
768
+ "learning_rate": 6.6762589928057564e-06,
769
+ "loss": 0.2386,
770
+ "mean_token_accuracy": 0.9219062335789203,
771
+ "num_tokens": 4177541.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 0.43433762453496455,
776
+ "epoch": 4.295549958018472,
777
+ "grad_norm": 0.47075527906417847,
778
+ "learning_rate": 6.100719424460432e-06,
779
+ "loss": 0.2696,
780
+ "mean_token_accuracy": 0.9177930898964405,
781
+ "num_tokens": 4248216.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 0.43204528763890265,
786
+ "epoch": 4.36272040302267,
787
+ "grad_norm": 0.34699931740760803,
788
+ "learning_rate": 5.525179856115108e-06,
789
+ "loss": 0.2697,
790
+ "mean_token_accuracy": 0.9196366496384144,
791
+ "num_tokens": 4319252.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "epoch": 4.36272040302267,
796
+ "eval_entropy": 0.7843316655073848,
797
+ "eval_loss": 0.9468327164649963,
798
+ "eval_mean_token_accuracy": 0.7589835811938558,
799
+ "eval_num_tokens": 4319252.0,
800
+ "eval_runtime": 4.9823,
801
+ "eval_samples_per_second": 11.24,
802
+ "eval_steps_per_second": 11.24,
803
+ "step": 650
804
+ },
805
+ {
806
+ "entropy": 0.4113185711205006,
807
+ "epoch": 4.429890848026869,
808
+ "grad_norm": 0.3835369050502777,
809
+ "learning_rate": 4.9496402877697845e-06,
810
+ "loss": 0.2489,
811
+ "mean_token_accuracy": 0.9217935107648373,
812
+ "num_tokens": 4389439.0,
813
+ "step": 660
814
+ },
815
+ {
816
+ "entropy": 0.4268360245972872,
817
+ "epoch": 4.4970612930310665,
818
+ "grad_norm": 0.32893145084381104,
819
+ "learning_rate": 4.374100719424461e-06,
820
+ "loss": 0.2546,
821
+ "mean_token_accuracy": 0.9204200245440006,
822
+ "num_tokens": 4454296.0,
823
+ "step": 670
824
+ },
825
+ {
826
+ "entropy": 0.43092771619558334,
827
+ "epoch": 4.564231738035264,
828
+ "grad_norm": 0.35402655601501465,
829
+ "learning_rate": 3.798561151079137e-06,
830
+ "loss": 0.2528,
831
+ "mean_token_accuracy": 0.9206391289830208,
832
+ "num_tokens": 4516174.0,
833
+ "step": 680
834
+ },
835
+ {
836
+ "entropy": 0.40939035564661025,
837
+ "epoch": 4.631402183039462,
838
+ "grad_norm": 0.32696768641471863,
839
+ "learning_rate": 3.223021582733813e-06,
840
+ "loss": 0.2567,
841
+ "mean_token_accuracy": 0.9263360798358917,
842
+ "num_tokens": 4586677.0,
843
+ "step": 690
844
+ },
845
+ {
846
+ "entropy": 0.42081440389156344,
847
+ "epoch": 4.698572628043661,
848
+ "grad_norm": 0.3911837637424469,
849
+ "learning_rate": 2.6474820143884894e-06,
850
+ "loss": 0.21,
851
+ "mean_token_accuracy": 0.9308864399790764,
852
+ "num_tokens": 4643628.0,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 4.698572628043661,
857
+ "eval_entropy": 0.7831281987684113,
858
+ "eval_loss": 0.9461870789527893,
859
+ "eval_mean_token_accuracy": 0.7588864458458764,
860
+ "eval_num_tokens": 4643628.0,
861
+ "eval_runtime": 4.9942,
862
+ "eval_samples_per_second": 11.213,
863
+ "eval_steps_per_second": 11.213,
864
+ "step": 700
865
+ }
866
+ ],
867
+ "logging_steps": 10,
868
+ "max_steps": 745,
869
+ "num_input_tokens_seen": 0,
870
+ "num_train_epochs": 5,
871
+ "save_steps": 100,
872
+ "stateful_callbacks": {
873
+ "TrainerControl": {
874
+ "args": {
875
+ "should_epoch_stop": false,
876
+ "should_evaluate": false,
877
+ "should_log": false,
878
+ "should_save": true,
879
+ "should_training_stop": false
880
+ },
881
+ "attributes": {}
882
+ }
883
+ },
884
+ "total_flos": 8.949067928266752e+17,
885
+ "train_batch_size": 1,
886
+ "trial_name": null,
887
+ "trial_params": null
888
+ }
checkpoint-700/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce196e5bc1fecba594008114c4c5772643cb32ef5927e83c6ed6f3b11728deb6
3
+ size 6161
checkpoint-700/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-745/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/QwQ-32B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/QwQ-32B
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.17.1
checkpoint-745/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/QwQ-32B",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 128,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 64,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "q_proj",
29
+ "k_proj",
30
+ "o_proj",
31
+ "v_proj"
32
+ ],
33
+ "target_parameters": null,
34
+ "task_type": "CAUSAL_LM",
35
+ "trainable_token_indices": null,
36
+ "use_dora": false,
37
+ "use_qalora": false,
38
+ "use_rslora": false
39
+ }
checkpoint-745/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4ce34ab4b06df6d0713cdcc16c5dd3631c9ec79c7e34e40da9416529ab1b90e
3
+ size 536940800
checkpoint-745/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
checkpoint-745/chat_template.jinja ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- '' }}
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
+ {%- endif %}
18
+ {%- endif %}
19
+ {%- for message in messages %}
20
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
21
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
22
+ {%- elif message.role == "assistant" and not message.tool_calls %}
23
+ {%- set content = message.content %}
24
+ {%- if not loop.last %}
25
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
26
+ {%- endif %}
27
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- if not loop.last %}
31
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
32
+ {%- endif %}
33
+ {{- '<|im_start|>' + message.role }}
34
+ {%- if message.content %}
35
+ {{- '\n' + content }}
36
+ {%- endif %}
37
+ {%- for tool_call in message.tool_calls %}
38
+ {%- if tool_call.function is defined %}
39
+ {%- set tool_call = tool_call.function %}
40
+ {%- endif %}
41
+ {{- '\n<tool_call>\n{"name": "' }}
42
+ {{- tool_call.name }}
43
+ {{- '", "arguments": ' }}
44
+ {{- tool_call.arguments | tojson }}
45
+ {{- '}\n</tool_call>' }}
46
+ {%- endfor %}
47
+ {{- '<|im_end|>\n' }}
48
+ {%- elif message.role == "tool" %}
49
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
50
+ {{- '<|im_start|>user' }}
51
+ {%- endif %}
52
+ {{- '\n<tool_response>\n' }}
53
+ {{- message.content }}
54
+ {{- '\n</tool_response>' }}
55
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
56
+ {{- '<|im_end|>\n' }}
57
+ {%- endif %}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- if add_generation_prompt %}
61
+ {{- '<|im_start|>assistant\n<think>\n' }}
62
+ {%- endif %}
checkpoint-745/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-745/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4de83ee6ba6d61f417990795c29463cbe348d9f7924abadf0d546355f005078e
3
+ size 1074182115
checkpoint-745/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e51a42ec5ffac256f3cd0ee0ccd7a6d3befe58914ad400c0cc707bc4a5ee283
3
+ size 14645
checkpoint-745/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaa27e8582d741b9c0d8dd9c1fcd2f706d12284bfd905266c1590ad674aedadd
3
+ size 1465
checkpoint-745/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
checkpoint-745/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
checkpoint-745/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
checkpoint-745/trainer_state.json ADDED
@@ -0,0 +1,928 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 150,
3
+ "best_metric": 0.8634624481201172,
4
+ "best_model_checkpoint": "lora_deception_model/checkpoint-100",
5
+ "epoch": 5.0,
6
+ "eval_steps": 50,
7
+ "global_step": 745,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.6688848555088043,
14
+ "epoch": 0.06717044500419815,
15
+ "grad_norm": 0.3304958939552307,
16
+ "learning_rate": 7.2000000000000005e-06,
17
+ "loss": 0.8658,
18
+ "mean_token_accuracy": 0.8207968935370445,
19
+ "num_tokens": 63133.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.6755495790392161,
24
+ "epoch": 0.1343408900083963,
25
+ "grad_norm": 0.32398757338523865,
26
+ "learning_rate": 1.5200000000000002e-05,
27
+ "loss": 0.8662,
28
+ "mean_token_accuracy": 0.8197331622242927,
29
+ "num_tokens": 124489.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.734241085499525,
34
+ "epoch": 0.20151133501259447,
35
+ "grad_norm": 0.31472697854042053,
36
+ "learning_rate": 2.32e-05,
37
+ "loss": 0.7134,
38
+ "mean_token_accuracy": 0.8222098298370838,
39
+ "num_tokens": 189081.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8794498354196548,
44
+ "epoch": 0.2686817800167926,
45
+ "grad_norm": 0.23867088556289673,
46
+ "learning_rate": 3.1200000000000006e-05,
47
+ "loss": 0.6577,
48
+ "mean_token_accuracy": 0.820378091186285,
49
+ "num_tokens": 270096.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9822202995419502,
54
+ "epoch": 0.33585222502099077,
55
+ "grad_norm": 0.23442600667476654,
56
+ "learning_rate": 3.9200000000000004e-05,
57
+ "loss": 0.5764,
58
+ "mean_token_accuracy": 0.8329788409173489,
59
+ "num_tokens": 343034.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "epoch": 0.33585222502099077,
64
+ "eval_entropy": 1.35109115924154,
65
+ "eval_loss": 0.9188798666000366,
66
+ "eval_mean_token_accuracy": 0.7514589822718075,
67
+ "eval_num_tokens": 343034.0,
68
+ "eval_runtime": 5.1522,
69
+ "eval_samples_per_second": 10.869,
70
+ "eval_steps_per_second": 10.869,
71
+ "step": 50
72
+ },
73
+ {
74
+ "entropy": 0.8484722189605236,
75
+ "epoch": 0.40302267002518893,
76
+ "grad_norm": 0.27580252289772034,
77
+ "learning_rate": 3.948201438848921e-05,
78
+ "loss": 0.4939,
79
+ "mean_token_accuracy": 0.8525501079857349,
80
+ "num_tokens": 407346.0,
81
+ "step": 60
82
+ },
83
+ {
84
+ "entropy": 0.7665611129254103,
85
+ "epoch": 0.47019311502938704,
86
+ "grad_norm": 0.32506343722343445,
87
+ "learning_rate": 3.8906474820143886e-05,
88
+ "loss": 0.4095,
89
+ "mean_token_accuracy": 0.8701820805668831,
90
+ "num_tokens": 466070.0,
91
+ "step": 70
92
+ },
93
+ {
94
+ "entropy": 0.7331306278705597,
95
+ "epoch": 0.5373635600335852,
96
+ "grad_norm": 0.3568798899650574,
97
+ "learning_rate": 3.833093525179856e-05,
98
+ "loss": 0.448,
99
+ "mean_token_accuracy": 0.863949628919363,
100
+ "num_tokens": 536560.0,
101
+ "step": 80
102
+ },
103
+ {
104
+ "entropy": 0.7565343648195266,
105
+ "epoch": 0.6045340050377834,
106
+ "grad_norm": 0.3249973952770233,
107
+ "learning_rate": 3.775539568345324e-05,
108
+ "loss": 0.4065,
109
+ "mean_token_accuracy": 0.8672126568853855,
110
+ "num_tokens": 597642.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "entropy": 0.6388500925153494,
115
+ "epoch": 0.6717044500419815,
116
+ "grad_norm": 0.36163443326950073,
117
+ "learning_rate": 3.7179856115107914e-05,
118
+ "loss": 0.3693,
119
+ "mean_token_accuracy": 0.8828025683760643,
120
+ "num_tokens": 663210.0,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.6717044500419815,
125
+ "eval_entropy": 1.0956847156797136,
126
+ "eval_loss": 0.8651557564735413,
127
+ "eval_mean_token_accuracy": 0.7637390036668096,
128
+ "eval_num_tokens": 663210.0,
129
+ "eval_runtime": 4.9833,
130
+ "eval_samples_per_second": 11.237,
131
+ "eval_steps_per_second": 11.237,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 0.6128827821463346,
136
+ "epoch": 0.7388748950461796,
137
+ "grad_norm": 0.29096513986587524,
138
+ "learning_rate": 3.6604316546762595e-05,
139
+ "loss": 0.3719,
140
+ "mean_token_accuracy": 0.8851677082479,
141
+ "num_tokens": 726617.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 0.6564031228423118,
146
+ "epoch": 0.8060453400503779,
147
+ "grad_norm": 0.27515140175819397,
148
+ "learning_rate": 3.602877697841727e-05,
149
+ "loss": 0.3935,
150
+ "mean_token_accuracy": 0.8752141006290912,
151
+ "num_tokens": 800821.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 0.6125180713832379,
156
+ "epoch": 0.873215785054576,
157
+ "grad_norm": 0.3126560151576996,
158
+ "learning_rate": 3.545323741007194e-05,
159
+ "loss": 0.3847,
160
+ "mean_token_accuracy": 0.8818505816161633,
161
+ "num_tokens": 868710.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 0.6347699824720621,
166
+ "epoch": 0.9403862300587741,
167
+ "grad_norm": 0.23533445596694946,
168
+ "learning_rate": 3.487769784172662e-05,
169
+ "loss": 0.385,
170
+ "mean_token_accuracy": 0.8835290059447288,
171
+ "num_tokens": 935575.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 0.579044715513157,
176
+ "epoch": 1.0067170445004199,
177
+ "grad_norm": 0.2643934488296509,
178
+ "learning_rate": 3.43021582733813e-05,
179
+ "loss": 0.3224,
180
+ "mean_token_accuracy": 0.8946574262425869,
181
+ "num_tokens": 996466.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "epoch": 1.0067170445004199,
186
+ "eval_entropy": 0.9877308234572411,
187
+ "eval_loss": 0.8634624481201172,
188
+ "eval_mean_token_accuracy": 0.7611759411437171,
189
+ "eval_num_tokens": 996466.0,
190
+ "eval_runtime": 4.9854,
191
+ "eval_samples_per_second": 11.233,
192
+ "eval_steps_per_second": 11.233,
193
+ "step": 150
194
+ },
195
+ {
196
+ "entropy": 0.552555637806654,
197
+ "epoch": 1.073887489504618,
198
+ "grad_norm": 0.2633912265300751,
199
+ "learning_rate": 3.372661870503598e-05,
200
+ "loss": 0.3265,
201
+ "mean_token_accuracy": 0.8968047671020031,
202
+ "num_tokens": 1066789.0,
203
+ "step": 160
204
+ },
205
+ {
206
+ "entropy": 0.5594113569706678,
207
+ "epoch": 1.141057934508816,
208
+ "grad_norm": 0.2680589258670807,
209
+ "learning_rate": 3.315107913669065e-05,
210
+ "loss": 0.3519,
211
+ "mean_token_accuracy": 0.8886663600802421,
212
+ "num_tokens": 1138401.0,
213
+ "step": 170
214
+ },
215
+ {
216
+ "entropy": 0.5540055774152279,
217
+ "epoch": 1.2082283795130142,
218
+ "grad_norm": 0.27169251441955566,
219
+ "learning_rate": 3.2575539568345325e-05,
220
+ "loss": 0.3436,
221
+ "mean_token_accuracy": 0.8913260444998741,
222
+ "num_tokens": 1202735.0,
223
+ "step": 180
224
+ },
225
+ {
226
+ "entropy": 0.5612262919545173,
227
+ "epoch": 1.2753988245172123,
228
+ "grad_norm": 0.3151009976863861,
229
+ "learning_rate": 3.2000000000000005e-05,
230
+ "loss": 0.351,
231
+ "mean_token_accuracy": 0.8909851491451264,
232
+ "num_tokens": 1266476.0,
233
+ "step": 190
234
+ },
235
+ {
236
+ "entropy": 0.5354872807860375,
237
+ "epoch": 1.3425692695214106,
238
+ "grad_norm": 0.29847052693367004,
239
+ "learning_rate": 3.142446043165468e-05,
240
+ "loss": 0.3045,
241
+ "mean_token_accuracy": 0.9023352213203907,
242
+ "num_tokens": 1327389.0,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 1.3425692695214106,
247
+ "eval_entropy": 0.9606236421636173,
248
+ "eval_loss": 0.8751164078712463,
249
+ "eval_mean_token_accuracy": 0.7617330902389118,
250
+ "eval_num_tokens": 1327389.0,
251
+ "eval_runtime": 4.9901,
252
+ "eval_samples_per_second": 11.222,
253
+ "eval_steps_per_second": 11.222,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 0.5093934688717127,
258
+ "epoch": 1.4097397145256088,
259
+ "grad_norm": 0.31276237964630127,
260
+ "learning_rate": 3.084892086330935e-05,
261
+ "loss": 0.2882,
262
+ "mean_token_accuracy": 0.9080218151211739,
263
+ "num_tokens": 1390647.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 0.49913822263479235,
268
+ "epoch": 1.4769101595298069,
269
+ "grad_norm": 0.2638222575187683,
270
+ "learning_rate": 3.027338129496403e-05,
271
+ "loss": 0.32,
272
+ "mean_token_accuracy": 0.9011362835764885,
273
+ "num_tokens": 1458413.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 0.5291724860668182,
278
+ "epoch": 1.5440806045340052,
279
+ "grad_norm": 0.7974303960800171,
280
+ "learning_rate": 2.9697841726618707e-05,
281
+ "loss": 0.3437,
282
+ "mean_token_accuracy": 0.8957020588219166,
283
+ "num_tokens": 1529069.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 0.5148157492280007,
288
+ "epoch": 1.611251049538203,
289
+ "grad_norm": 0.3252256512641907,
290
+ "learning_rate": 2.9122302158273384e-05,
291
+ "loss": 0.3078,
292
+ "mean_token_accuracy": 0.8965719811618328,
293
+ "num_tokens": 1593891.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 0.5439612463116645,
298
+ "epoch": 1.6784214945424014,
299
+ "grad_norm": 0.3167729079723358,
300
+ "learning_rate": 2.854676258992806e-05,
301
+ "loss": 0.3331,
302
+ "mean_token_accuracy": 0.8926876865327358,
303
+ "num_tokens": 1658563.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "epoch": 1.6784214945424014,
308
+ "eval_entropy": 0.8733608674790178,
309
+ "eval_loss": 0.8773566484451294,
310
+ "eval_mean_token_accuracy": 0.7638165514383998,
311
+ "eval_num_tokens": 1658563.0,
312
+ "eval_runtime": 4.9846,
313
+ "eval_samples_per_second": 11.235,
314
+ "eval_steps_per_second": 11.235,
315
+ "step": 250
316
+ },
317
+ {
318
+ "entropy": 0.5023419760167599,
319
+ "epoch": 1.7455919395465995,
320
+ "grad_norm": 0.30670592188835144,
321
+ "learning_rate": 2.7971223021582735e-05,
322
+ "loss": 0.3503,
323
+ "mean_token_accuracy": 0.8920910514891147,
324
+ "num_tokens": 1735767.0,
325
+ "step": 260
326
+ },
327
+ {
328
+ "entropy": 0.5167030651122332,
329
+ "epoch": 1.8127623845507976,
330
+ "grad_norm": 0.25313618779182434,
331
+ "learning_rate": 2.7395683453237412e-05,
332
+ "loss": 0.3242,
333
+ "mean_token_accuracy": 0.8931105189025402,
334
+ "num_tokens": 1802895.0,
335
+ "step": 270
336
+ },
337
+ {
338
+ "entropy": 0.5199910126626491,
339
+ "epoch": 1.879932829554996,
340
+ "grad_norm": 0.3637166917324066,
341
+ "learning_rate": 2.6820143884892086e-05,
342
+ "loss": 0.3145,
343
+ "mean_token_accuracy": 0.8975049994885922,
344
+ "num_tokens": 1865468.0,
345
+ "step": 280
346
+ },
347
+ {
348
+ "entropy": 0.5213575050234794,
349
+ "epoch": 1.9471032745591939,
350
+ "grad_norm": 0.3701685965061188,
351
+ "learning_rate": 2.6244604316546767e-05,
352
+ "loss": 0.3398,
353
+ "mean_token_accuracy": 0.896855977922678,
354
+ "num_tokens": 1932031.0,
355
+ "step": 290
356
+ },
357
+ {
358
+ "entropy": 0.4997344066070605,
359
+ "epoch": 2.0134340890008398,
360
+ "grad_norm": 0.331307590007782,
361
+ "learning_rate": 2.566906474820144e-05,
362
+ "loss": 0.2637,
363
+ "mean_token_accuracy": 0.9088972090165827,
364
+ "num_tokens": 1992713.0,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 2.0134340890008398,
369
+ "eval_entropy": 0.9004479699901172,
370
+ "eval_loss": 0.8707331418991089,
371
+ "eval_mean_token_accuracy": 0.7641822940536908,
372
+ "eval_num_tokens": 1992713.0,
373
+ "eval_runtime": 4.9809,
374
+ "eval_samples_per_second": 11.243,
375
+ "eval_steps_per_second": 11.243,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 0.47825686521828176,
380
+ "epoch": 2.0806045340050376,
381
+ "grad_norm": 0.3079531192779541,
382
+ "learning_rate": 2.5093525179856118e-05,
383
+ "loss": 0.2863,
384
+ "mean_token_accuracy": 0.908924800157547,
385
+ "num_tokens": 2061833.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 0.48984590619802476,
390
+ "epoch": 2.147774979009236,
391
+ "grad_norm": 0.2569948434829712,
392
+ "learning_rate": 2.451798561151079e-05,
393
+ "loss": 0.3162,
394
+ "mean_token_accuracy": 0.903419229388237,
395
+ "num_tokens": 2132082.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 0.46938193738460543,
400
+ "epoch": 2.2149454240134343,
401
+ "grad_norm": 0.29792118072509766,
402
+ "learning_rate": 2.394244604316547e-05,
403
+ "loss": 0.2943,
404
+ "mean_token_accuracy": 0.9081865437328815,
405
+ "num_tokens": 2202270.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 0.4853254608809948,
410
+ "epoch": 2.282115869017632,
411
+ "grad_norm": 0.26585960388183594,
412
+ "learning_rate": 2.336690647482015e-05,
413
+ "loss": 0.2682,
414
+ "mean_token_accuracy": 0.9112951382994652,
415
+ "num_tokens": 2263789.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 0.49189864136278627,
420
+ "epoch": 2.3492863140218305,
421
+ "grad_norm": 0.2741142213344574,
422
+ "learning_rate": 2.2791366906474823e-05,
423
+ "loss": 0.313,
424
+ "mean_token_accuracy": 0.8986666277050972,
425
+ "num_tokens": 2334071.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "epoch": 2.3492863140218305,
430
+ "eval_entropy": 0.8618932158819267,
431
+ "eval_loss": 0.8953577280044556,
432
+ "eval_mean_token_accuracy": 0.7628704607486725,
433
+ "eval_num_tokens": 2334071.0,
434
+ "eval_runtime": 4.984,
435
+ "eval_samples_per_second": 11.236,
436
+ "eval_steps_per_second": 11.236,
437
+ "step": 350
438
+ },
439
+ {
440
+ "entropy": 0.49905899055302144,
441
+ "epoch": 2.4164567590260284,
442
+ "grad_norm": 0.3090650141239166,
443
+ "learning_rate": 2.22158273381295e-05,
444
+ "loss": 0.2886,
445
+ "mean_token_accuracy": 0.9060709603130818,
446
+ "num_tokens": 2396966.0,
447
+ "step": 360
448
+ },
449
+ {
450
+ "entropy": 0.49515552036464217,
451
+ "epoch": 2.4836272040302267,
452
+ "grad_norm": 0.3477407991886139,
453
+ "learning_rate": 2.1640287769784174e-05,
454
+ "loss": 0.2685,
455
+ "mean_token_accuracy": 0.9104222223162651,
456
+ "num_tokens": 2457974.0,
457
+ "step": 370
458
+ },
459
+ {
460
+ "entropy": 0.5188349276781082,
461
+ "epoch": 2.5507976490344246,
462
+ "grad_norm": 0.2762923538684845,
463
+ "learning_rate": 2.1064748201438848e-05,
464
+ "loss": 0.2911,
465
+ "mean_token_accuracy": 0.9037038788199425,
466
+ "num_tokens": 2526344.0,
467
+ "step": 380
468
+ },
469
+ {
470
+ "entropy": 0.5011733949184418,
471
+ "epoch": 2.617968094038623,
472
+ "grad_norm": 0.2646786570549011,
473
+ "learning_rate": 2.0489208633093525e-05,
474
+ "loss": 0.3158,
475
+ "mean_token_accuracy": 0.9090628199279308,
476
+ "num_tokens": 2596395.0,
477
+ "step": 390
478
+ },
479
+ {
480
+ "entropy": 0.49840320982038977,
481
+ "epoch": 2.6851385390428213,
482
+ "grad_norm": 0.4310755431652069,
483
+ "learning_rate": 1.9913669064748202e-05,
484
+ "loss": 0.2887,
485
+ "mean_token_accuracy": 0.9083616696298122,
486
+ "num_tokens": 2657920.0,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 2.6851385390428213,
491
+ "eval_entropy": 0.8837019130587578,
492
+ "eval_loss": 0.88917475938797,
493
+ "eval_mean_token_accuracy": 0.763011426797935,
494
+ "eval_num_tokens": 2657920.0,
495
+ "eval_runtime": 4.9877,
496
+ "eval_samples_per_second": 11.228,
497
+ "eval_steps_per_second": 11.228,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 0.4771813187748194,
502
+ "epoch": 2.752308984047019,
503
+ "grad_norm": 0.32867103815078735,
504
+ "learning_rate": 1.933812949640288e-05,
505
+ "loss": 0.2668,
506
+ "mean_token_accuracy": 0.9088380873203278,
507
+ "num_tokens": 2725640.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 0.47720473557710646,
512
+ "epoch": 2.8194794290512175,
513
+ "grad_norm": 0.27547284960746765,
514
+ "learning_rate": 1.8762589928057556e-05,
515
+ "loss": 0.2725,
516
+ "mean_token_accuracy": 0.9101646140217781,
517
+ "num_tokens": 2789853.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 0.45747280344367025,
522
+ "epoch": 2.886649874055416,
523
+ "grad_norm": 0.3139909505844116,
524
+ "learning_rate": 1.8187050359712234e-05,
525
+ "loss": 0.267,
526
+ "mean_token_accuracy": 0.9148379288613796,
527
+ "num_tokens": 2857093.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 0.46566248275339606,
532
+ "epoch": 2.9538203190596137,
533
+ "grad_norm": 0.3694741427898407,
534
+ "learning_rate": 1.7611510791366907e-05,
535
+ "loss": 0.2995,
536
+ "mean_token_accuracy": 0.901902287453413,
537
+ "num_tokens": 2928087.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 0.47634567490106894,
542
+ "epoch": 3.0201511335012596,
543
+ "grad_norm": 0.26703643798828125,
544
+ "learning_rate": 1.7035971223021584e-05,
545
+ "loss": 0.3174,
546
+ "mean_token_accuracy": 0.9040401434596581,
547
+ "num_tokens": 2993485.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "epoch": 3.0201511335012596,
552
+ "eval_entropy": 0.8348773148443017,
553
+ "eval_loss": 0.8874495625495911,
554
+ "eval_mean_token_accuracy": 0.7612802609801292,
555
+ "eval_num_tokens": 2993485.0,
556
+ "eval_runtime": 4.9913,
557
+ "eval_samples_per_second": 11.22,
558
+ "eval_steps_per_second": 11.22,
559
+ "step": 450
560
+ },
561
+ {
562
+ "entropy": 0.44407146945595743,
563
+ "epoch": 3.0873215785054575,
564
+ "grad_norm": 0.27298107743263245,
565
+ "learning_rate": 1.646043165467626e-05,
566
+ "loss": 0.2888,
567
+ "mean_token_accuracy": 0.9176116026937962,
568
+ "num_tokens": 3062721.0,
569
+ "step": 460
570
+ },
571
+ {
572
+ "entropy": 0.4276166781783104,
573
+ "epoch": 3.154492023509656,
574
+ "grad_norm": 0.2755906879901886,
575
+ "learning_rate": 1.5884892086330935e-05,
576
+ "loss": 0.2419,
577
+ "mean_token_accuracy": 0.9195634700357914,
578
+ "num_tokens": 3129709.0,
579
+ "step": 470
580
+ },
581
+ {
582
+ "entropy": 0.4346423916518688,
583
+ "epoch": 3.2216624685138537,
584
+ "grad_norm": 0.39296212792396545,
585
+ "learning_rate": 1.5309352517985613e-05,
586
+ "loss": 0.233,
587
+ "mean_token_accuracy": 0.9278727151453495,
588
+ "num_tokens": 3189161.0,
589
+ "step": 480
590
+ },
591
+ {
592
+ "entropy": 0.44294624738395216,
593
+ "epoch": 3.288832913518052,
594
+ "grad_norm": 0.39035606384277344,
595
+ "learning_rate": 1.473381294964029e-05,
596
+ "loss": 0.2781,
597
+ "mean_token_accuracy": 0.9181225150823593,
598
+ "num_tokens": 3255403.0,
599
+ "step": 490
600
+ },
601
+ {
602
+ "entropy": 0.4794738654047251,
603
+ "epoch": 3.3560033585222504,
604
+ "grad_norm": 0.3938174545764923,
605
+ "learning_rate": 1.4158273381294965e-05,
606
+ "loss": 0.2942,
607
+ "mean_token_accuracy": 0.9075012236833573,
608
+ "num_tokens": 3320554.0,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 3.3560033585222504,
613
+ "eval_entropy": 0.817679978374924,
614
+ "eval_loss": 0.9140912294387817,
615
+ "eval_mean_token_accuracy": 0.761023474591119,
616
+ "eval_num_tokens": 3320554.0,
617
+ "eval_runtime": 4.9833,
618
+ "eval_samples_per_second": 11.238,
619
+ "eval_steps_per_second": 11.238,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 0.4701398782432079,
624
+ "epoch": 3.4231738035264483,
625
+ "grad_norm": 0.4412434697151184,
626
+ "learning_rate": 1.3582733812949642e-05,
627
+ "loss": 0.2707,
628
+ "mean_token_accuracy": 0.9106249861419201,
629
+ "num_tokens": 3384303.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 0.45122345685958865,
634
+ "epoch": 3.4903442485306466,
635
+ "grad_norm": 0.26691338419914246,
636
+ "learning_rate": 1.3007194244604318e-05,
637
+ "loss": 0.258,
638
+ "mean_token_accuracy": 0.9156571164727211,
639
+ "num_tokens": 3451764.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 0.4313320998102427,
644
+ "epoch": 3.5575146935348445,
645
+ "grad_norm": 0.34582847356796265,
646
+ "learning_rate": 1.2431654676258993e-05,
647
+ "loss": 0.2612,
648
+ "mean_token_accuracy": 0.916472752392292,
649
+ "num_tokens": 3522461.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 0.43578826524317266,
654
+ "epoch": 3.624685138539043,
655
+ "grad_norm": 0.4498523771762848,
656
+ "learning_rate": 1.185611510791367e-05,
657
+ "loss": 0.2834,
658
+ "mean_token_accuracy": 0.9140046447515487,
659
+ "num_tokens": 3591502.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 0.4625163245946169,
664
+ "epoch": 3.6918555835432407,
665
+ "grad_norm": 0.3399084806442261,
666
+ "learning_rate": 1.1280575539568346e-05,
667
+ "loss": 0.2906,
668
+ "mean_token_accuracy": 0.9062492586672306,
669
+ "num_tokens": 3659203.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "epoch": 3.6918555835432407,
674
+ "eval_entropy": 0.8242657040911061,
675
+ "eval_loss": 0.9106144905090332,
676
+ "eval_mean_token_accuracy": 0.7601779720612934,
677
+ "eval_num_tokens": 3659203.0,
678
+ "eval_runtime": 4.9925,
679
+ "eval_samples_per_second": 11.217,
680
+ "eval_steps_per_second": 11.217,
681
+ "step": 550
682
+ },
683
+ {
684
+ "entropy": 0.44798229187726973,
685
+ "epoch": 3.759026028547439,
686
+ "grad_norm": 0.28008008003234863,
687
+ "learning_rate": 1.0705035971223023e-05,
688
+ "loss": 0.2947,
689
+ "mean_token_accuracy": 0.9083551168441772,
690
+ "num_tokens": 3735002.0,
691
+ "step": 560
692
+ },
693
+ {
694
+ "entropy": 0.438993413746357,
695
+ "epoch": 3.8261964735516374,
696
+ "grad_norm": 0.33622145652770996,
697
+ "learning_rate": 1.0129496402877699e-05,
698
+ "loss": 0.2536,
699
+ "mean_token_accuracy": 0.9168887868523597,
700
+ "num_tokens": 3798345.0,
701
+ "step": 570
702
+ },
703
+ {
704
+ "entropy": 0.43377807587385175,
705
+ "epoch": 3.8933669185558353,
706
+ "grad_norm": 0.41980335116386414,
707
+ "learning_rate": 9.553956834532376e-06,
708
+ "loss": 0.2414,
709
+ "mean_token_accuracy": 0.925646186619997,
710
+ "num_tokens": 3859139.0,
711
+ "step": 580
712
+ },
713
+ {
714
+ "entropy": 0.43494608998298645,
715
+ "epoch": 3.9605373635600336,
716
+ "grad_norm": 0.29723235964775085,
717
+ "learning_rate": 8.978417266187051e-06,
718
+ "loss": 0.2619,
719
+ "mean_token_accuracy": 0.9199615843594074,
720
+ "num_tokens": 3923018.0,
721
+ "step": 590
722
+ },
723
+ {
724
+ "entropy": 0.42559608741651606,
725
+ "epoch": 4.0268681780016795,
726
+ "grad_norm": 0.32702481746673584,
727
+ "learning_rate": 8.402877697841727e-06,
728
+ "loss": 0.2393,
729
+ "mean_token_accuracy": 0.9227683498889585,
730
+ "num_tokens": 3985896.0,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 4.0268681780016795,
735
+ "eval_entropy": 0.790077348372766,
736
+ "eval_loss": 0.929413378238678,
737
+ "eval_mean_token_accuracy": 0.7607843939747129,
738
+ "eval_num_tokens": 3985896.0,
739
+ "eval_runtime": 4.9875,
740
+ "eval_samples_per_second": 11.228,
741
+ "eval_steps_per_second": 11.228,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 0.4118167482316494,
746
+ "epoch": 4.094038623005877,
747
+ "grad_norm": 0.3099454641342163,
748
+ "learning_rate": 7.827338129496404e-06,
749
+ "loss": 0.2197,
750
+ "mean_token_accuracy": 0.9286121532320977,
751
+ "num_tokens": 4046640.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 0.42818755134940145,
756
+ "epoch": 4.161209068010075,
757
+ "grad_norm": 0.3183671236038208,
758
+ "learning_rate": 7.25179856115108e-06,
759
+ "loss": 0.2681,
760
+ "mean_token_accuracy": 0.9148878164589405,
761
+ "num_tokens": 4115433.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 0.4235291346907616,
766
+ "epoch": 4.228379513014274,
767
+ "grad_norm": 0.3553420603275299,
768
+ "learning_rate": 6.6762589928057564e-06,
769
+ "loss": 0.2386,
770
+ "mean_token_accuracy": 0.9219062335789203,
771
+ "num_tokens": 4177541.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 0.43433762453496455,
776
+ "epoch": 4.295549958018472,
777
+ "grad_norm": 0.47075527906417847,
778
+ "learning_rate": 6.100719424460432e-06,
779
+ "loss": 0.2696,
780
+ "mean_token_accuracy": 0.9177930898964405,
781
+ "num_tokens": 4248216.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 0.43204528763890265,
786
+ "epoch": 4.36272040302267,
787
+ "grad_norm": 0.34699931740760803,
788
+ "learning_rate": 5.525179856115108e-06,
789
+ "loss": 0.2697,
790
+ "mean_token_accuracy": 0.9196366496384144,
791
+ "num_tokens": 4319252.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "epoch": 4.36272040302267,
796
+ "eval_entropy": 0.7843316655073848,
797
+ "eval_loss": 0.9468327164649963,
798
+ "eval_mean_token_accuracy": 0.7589835811938558,
799
+ "eval_num_tokens": 4319252.0,
800
+ "eval_runtime": 4.9823,
801
+ "eval_samples_per_second": 11.24,
802
+ "eval_steps_per_second": 11.24,
803
+ "step": 650
804
+ },
805
+ {
806
+ "entropy": 0.4113185711205006,
807
+ "epoch": 4.429890848026869,
808
+ "grad_norm": 0.3835369050502777,
809
+ "learning_rate": 4.9496402877697845e-06,
810
+ "loss": 0.2489,
811
+ "mean_token_accuracy": 0.9217935107648373,
812
+ "num_tokens": 4389439.0,
813
+ "step": 660
814
+ },
815
+ {
816
+ "entropy": 0.4268360245972872,
817
+ "epoch": 4.4970612930310665,
818
+ "grad_norm": 0.32893145084381104,
819
+ "learning_rate": 4.374100719424461e-06,
820
+ "loss": 0.2546,
821
+ "mean_token_accuracy": 0.9204200245440006,
822
+ "num_tokens": 4454296.0,
823
+ "step": 670
824
+ },
825
+ {
826
+ "entropy": 0.43092771619558334,
827
+ "epoch": 4.564231738035264,
828
+ "grad_norm": 0.35402655601501465,
829
+ "learning_rate": 3.798561151079137e-06,
830
+ "loss": 0.2528,
831
+ "mean_token_accuracy": 0.9206391289830208,
832
+ "num_tokens": 4516174.0,
833
+ "step": 680
834
+ },
835
+ {
836
+ "entropy": 0.40939035564661025,
837
+ "epoch": 4.631402183039462,
838
+ "grad_norm": 0.32696768641471863,
839
+ "learning_rate": 3.223021582733813e-06,
840
+ "loss": 0.2567,
841
+ "mean_token_accuracy": 0.9263360798358917,
842
+ "num_tokens": 4586677.0,
843
+ "step": 690
844
+ },
845
+ {
846
+ "entropy": 0.42081440389156344,
847
+ "epoch": 4.698572628043661,
848
+ "grad_norm": 0.3911837637424469,
849
+ "learning_rate": 2.6474820143884894e-06,
850
+ "loss": 0.21,
851
+ "mean_token_accuracy": 0.9308864399790764,
852
+ "num_tokens": 4643628.0,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 4.698572628043661,
857
+ "eval_entropy": 0.7831281987684113,
858
+ "eval_loss": 0.9461870789527893,
859
+ "eval_mean_token_accuracy": 0.7588864458458764,
860
+ "eval_num_tokens": 4643628.0,
861
+ "eval_runtime": 4.9942,
862
+ "eval_samples_per_second": 11.213,
863
+ "eval_steps_per_second": 11.213,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 0.43728532269597054,
868
+ "epoch": 4.765743073047859,
869
+ "grad_norm": 0.30957573652267456,
870
+ "learning_rate": 2.0719424460431657e-06,
871
+ "loss": 0.2575,
872
+ "mean_token_accuracy": 0.9134377054870129,
873
+ "num_tokens": 4712648.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 0.4240421138703823,
878
+ "epoch": 4.832913518052057,
879
+ "grad_norm": 0.4323979318141937,
880
+ "learning_rate": 1.4964028776978418e-06,
881
+ "loss": 0.2681,
882
+ "mean_token_accuracy": 0.9151543125510215,
883
+ "num_tokens": 4786100.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 0.42574540376663206,
888
+ "epoch": 4.900083963056256,
889
+ "grad_norm": 0.41679295897483826,
890
+ "learning_rate": 9.208633093525181e-07,
891
+ "loss": 0.2643,
892
+ "mean_token_accuracy": 0.9235311761498451,
893
+ "num_tokens": 4853429.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 0.42149149887263776,
898
+ "epoch": 4.9672544080604535,
899
+ "grad_norm": 0.3193954825401306,
900
+ "learning_rate": 3.4532374100719426e-07,
901
+ "loss": 0.2576,
902
+ "mean_token_accuracy": 0.9235921517014504,
903
+ "num_tokens": 4921420.0,
904
+ "step": 740
905
+ }
906
+ ],
907
+ "logging_steps": 10,
908
+ "max_steps": 745,
909
+ "num_input_tokens_seen": 0,
910
+ "num_train_epochs": 5,
911
+ "save_steps": 100,
912
+ "stateful_callbacks": {
913
+ "TrainerControl": {
914
+ "args": {
915
+ "should_epoch_stop": false,
916
+ "should_evaluate": false,
917
+ "should_log": false,
918
+ "should_save": true,
919
+ "should_training_stop": true
920
+ },
921
+ "attributes": {}
922
+ }
923
+ },
924
+ "total_flos": 9.54582046359552e+17,
925
+ "train_batch_size": 1,
926
+ "trial_name": null,
927
+ "trial_params": null
928
+ }
checkpoint-745/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce196e5bc1fecba594008114c4c5772643cb32ef5927e83c6ed6f3b11728deb6
3
+ size 6161
checkpoint-745/vocab.json ADDED
The diff for this file is too large to render. See raw diff