YsraelJS commited on
Commit
0f44eb5
·
verified ·
1 Parent(s): 16aae47

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
3
+ library_name: peft
4
+ model_name: tinyllama_ft_adapters
5
+ tags:
6
+ - base_model:adapter:TinyLlama/TinyLlama-1.1B-Chat-v1.0
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for tinyllama_ft_adapters
16
+
17
+ This model is a fine-tuned version of [TinyLlama/TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0).
18
+ It has been trained using [TRL](https://github.com/huggingface/trl).
19
+
20
+ ## Quick start
21
+
22
+ ```python
23
+ from transformers import pipeline
24
+
25
+ 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?"
26
+ generator = pipeline("text-generation", model="None", device="cuda")
27
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
28
+ print(output["generated_text"])
29
+ ```
30
+
31
+ ## Training procedure
32
+
33
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/ysrael-sacramento-universidade-federal-de-sergipe/huggingface/runs/3tw52uiv)
34
+
35
+
36
+ This model was trained with SFT.
37
+
38
+ ### Framework versions
39
+
40
+ - PEFT 0.18.0
41
+ - TRL: 0.25.1
42
+ - Transformers: 4.57.1
43
+ - Pytorch: 2.9.0+cu126
44
+ - Datasets: 4.0.0
45
+ - Tokenizers: 0.22.1
46
+
47
+ ## Citations
48
+
49
+
50
+
51
+ Cite TRL as:
52
+
53
+ ```bibtex
54
+ @misc{vonwerra2022trl,
55
+ title = {{TRL: Transformer Reinforcement Learning}},
56
+ 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},
57
+ year = 2020,
58
+ journal = {GitHub repository},
59
+ publisher = {GitHub},
60
+ howpublished = {\url{https://github.com/huggingface/trl}}
61
+ }
62
+ ```
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.0",
27
+ "qalora_group_size": 16,
28
+ "r": 8,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "k_proj",
37
+ "up_proj",
38
+ "gate_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503ba742f719356305138472260236ad78a5872a212d60b942236aa460dcab2f
3
+ size 25271744
chat_template.jinja ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% for message in messages %}
2
+ {% if message['role'] == 'user' %}
3
+ {{ '<|user|>
4
+ ' + message['content'] + eos_token }}
5
+ {% elif message['role'] == 'system' %}
6
+ {{ '<|system|>
7
+ ' + message['content'] + eos_token }}
8
+ {% elif message['role'] == 'assistant' %}
9
+ {{ '<|assistant|>
10
+ ' + message['content'] + eos_token }}
11
+ {% endif %}
12
+ {% if loop.last and add_generation_prompt %}
13
+ {{ '<|assistant|>' }}
14
+ {% endif %}
15
+ {% endfor %}
checkpoint-1000/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:TinyLlama/TinyLlama-1.1B-Chat-v1.0
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.0
checkpoint-1000/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.0",
27
+ "qalora_group_size": 16,
28
+ "r": 8,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "k_proj",
37
+ "up_proj",
38
+ "gate_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-1000/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503ba742f719356305138472260236ad78a5872a212d60b942236aa460dcab2f
3
+ size 25271744
checkpoint-1000/chat_template.jinja ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% for message in messages %}
2
+ {% if message['role'] == 'user' %}
3
+ {{ '<|user|>
4
+ ' + message['content'] + eos_token }}
5
+ {% elif message['role'] == 'system' %}
6
+ {{ '<|system|>
7
+ ' + message['content'] + eos_token }}
8
+ {% elif message['role'] == 'assistant' %}
9
+ {{ '<|assistant|>
10
+ ' + message['content'] + eos_token }}
11
+ {% endif %}
12
+ {% if loop.last and add_generation_prompt %}
13
+ {{ '<|assistant|>' }}
14
+ {% endif %}
15
+ {% endfor %}
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:654367a4624953f5294716122c04cd93e74897424f8a162ad760363557985025
3
+ size 13686237
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:749fa9eed885e9761c9f2e2d2be95a7bd6918ab0b3a60c83e9d5e0a30c63287a
3
+ size 14645
checkpoint-1000/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14ae2a2128444abab378aa06c09a61a84665f758fcc19fc46f5789b0bc1b5665
3
+ size 1383
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b6aeea0340516bd5f5997d5305f21139fbebc9c31e2729403d472ded814e8e1
3
+ size 1465
checkpoint-1000/special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
checkpoint-1000/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
checkpoint-1000/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 2048,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,1034 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.394962626695633,
14
+ "epoch": 0.01,
15
+ "grad_norm": 1.5399831533432007,
16
+ "learning_rate": 0.0001999640276885231,
17
+ "loss": 1.1668,
18
+ "mean_token_accuracy": 0.712943273037672,
19
+ "num_tokens": 13741.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.3466473210602999,
24
+ "epoch": 0.02,
25
+ "grad_norm": 0.36063864827156067,
26
+ "learning_rate": 0.0001998397158750391,
27
+ "loss": 0.2927,
28
+ "mean_token_accuracy": 0.8965781725943088,
29
+ "num_tokens": 27455.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.2937424689531326,
34
+ "epoch": 0.03,
35
+ "grad_norm": 0.37266337871551514,
36
+ "learning_rate": 0.00019962674310846672,
37
+ "loss": 0.2606,
38
+ "mean_token_accuracy": 0.9008061692118645,
39
+ "num_tokens": 41234.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.2808209167793393,
44
+ "epoch": 0.04,
45
+ "grad_norm": 0.27206626534461975,
46
+ "learning_rate": 0.00019932531956721417,
47
+ "loss": 0.2481,
48
+ "mean_token_accuracy": 0.903794988244772,
49
+ "num_tokens": 54985.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.2773130055516958,
54
+ "epoch": 0.05,
55
+ "grad_norm": 0.28117620944976807,
56
+ "learning_rate": 0.00019893574271992527,
57
+ "loss": 0.2428,
58
+ "mean_token_accuracy": 0.9048246890306473,
59
+ "num_tokens": 68751.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.26413619332015514,
64
+ "epoch": 0.06,
65
+ "grad_norm": 0.3505501449108124,
66
+ "learning_rate": 0.00019845839703191414,
67
+ "loss": 0.2371,
68
+ "mean_token_accuracy": 0.9083748087286949,
69
+ "num_tokens": 82480.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.2639918986707926,
74
+ "epoch": 0.07,
75
+ "grad_norm": 0.25395262241363525,
76
+ "learning_rate": 0.00019789375358574422,
77
+ "loss": 0.2377,
78
+ "mean_token_accuracy": 0.9053500510752202,
79
+ "num_tokens": 96205.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.2635627929121256,
84
+ "epoch": 0.08,
85
+ "grad_norm": 0.14376139640808105,
86
+ "learning_rate": 0.00019724236961632662,
87
+ "loss": 0.2358,
88
+ "mean_token_accuracy": 0.9064174801111221,
89
+ "num_tokens": 109895.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.25960039664059875,
94
+ "epoch": 0.09,
95
+ "grad_norm": 0.24428832530975342,
96
+ "learning_rate": 0.00019650488796099668,
97
+ "loss": 0.2379,
98
+ "mean_token_accuracy": 0.9064785785973072,
99
+ "num_tokens": 123640.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.2595285512506962,
104
+ "epoch": 0.1,
105
+ "grad_norm": 0.1724952608346939,
106
+ "learning_rate": 0.00019568203642511092,
107
+ "loss": 0.2354,
108
+ "mean_token_accuracy": 0.9069867484271527,
109
+ "num_tokens": 137353.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.25291610304266215,
114
+ "epoch": 0.11,
115
+ "grad_norm": 0.1800571084022522,
116
+ "learning_rate": 0.00019477462706379115,
117
+ "loss": 0.235,
118
+ "mean_token_accuracy": 0.9060277946293354,
119
+ "num_tokens": 151077.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.25702104307711127,
124
+ "epoch": 0.12,
125
+ "grad_norm": 0.17427851259708405,
126
+ "learning_rate": 0.00019378355538052423,
127
+ "loss": 0.2356,
128
+ "mean_token_accuracy": 0.9082058064639569,
129
+ "num_tokens": 164788.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.2587074598297477,
134
+ "epoch": 0.13,
135
+ "grad_norm": 0.17054803669452667,
136
+ "learning_rate": 0.00019270979944340793,
137
+ "loss": 0.2348,
138
+ "mean_token_accuracy": 0.9064028665423394,
139
+ "num_tokens": 178512.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.25914675910025836,
144
+ "epoch": 0.14,
145
+ "grad_norm": 0.16120842099189758,
146
+ "learning_rate": 0.00019155441891991607,
147
+ "loss": 0.2338,
148
+ "mean_token_accuracy": 0.9047428175807,
149
+ "num_tokens": 192287.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.2529380152001977,
154
+ "epoch": 0.15,
155
+ "grad_norm": 0.16467617452144623,
156
+ "learning_rate": 0.0001903185540311346,
157
+ "loss": 0.2347,
158
+ "mean_token_accuracy": 0.9045828722417355,
159
+ "num_tokens": 205979.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.2500780878588557,
164
+ "epoch": 0.16,
165
+ "grad_norm": 0.1401049643754959,
166
+ "learning_rate": 0.00018900342442650098,
167
+ "loss": 0.2309,
168
+ "mean_token_accuracy": 0.9064637362957001,
169
+ "num_tokens": 219697.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.2511021964251995,
174
+ "epoch": 0.17,
175
+ "grad_norm": 0.168861985206604,
176
+ "learning_rate": 0.00018761032798015736,
177
+ "loss": 0.2314,
178
+ "mean_token_accuracy": 0.9074640028178692,
179
+ "num_tokens": 233423.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.25184259135276077,
184
+ "epoch": 0.18,
185
+ "grad_norm": 0.14406900107860565,
186
+ "learning_rate": 0.00018614063951010582,
187
+ "loss": 0.2323,
188
+ "mean_token_accuracy": 0.9075214579701424,
189
+ "num_tokens": 247144.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.24901060499250888,
194
+ "epoch": 0.19,
195
+ "grad_norm": 0.1591574251651764,
196
+ "learning_rate": 0.00018459580942142858,
197
+ "loss": 0.2317,
198
+ "mean_token_accuracy": 0.9085153199732303,
199
+ "num_tokens": 260891.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.2550090359523892,
204
+ "epoch": 0.2,
205
+ "grad_norm": 0.16101697087287903,
206
+ "learning_rate": 0.00018297736227491362,
207
+ "loss": 0.2328,
208
+ "mean_token_accuracy": 0.9064511582255363,
209
+ "num_tokens": 274588.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.25533046908676627,
214
+ "epoch": 0.21,
215
+ "grad_norm": 0.1192241758108139,
216
+ "learning_rate": 0.00018128689528249705,
217
+ "loss": 0.2324,
218
+ "mean_token_accuracy": 0.9066184774041176,
219
+ "num_tokens": 288330.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.25171877779066565,
224
+ "epoch": 0.22,
225
+ "grad_norm": 0.13009631633758545,
226
+ "learning_rate": 0.0001795260767310078,
227
+ "loss": 0.2309,
228
+ "mean_token_accuracy": 0.9080383241176605,
229
+ "num_tokens": 302064.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.24942271262407303,
234
+ "epoch": 0.23,
235
+ "grad_norm": 0.1554691344499588,
236
+ "learning_rate": 0.00017769664433577002,
237
+ "loss": 0.2292,
238
+ "mean_token_accuracy": 0.9099649950861931,
239
+ "num_tokens": 315757.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.24707860946655275,
244
+ "epoch": 0.24,
245
+ "grad_norm": 0.1397477239370346,
246
+ "learning_rate": 0.0001758004035256878,
247
+ "loss": 0.2293,
248
+ "mean_token_accuracy": 0.9071393564343453,
249
+ "num_tokens": 329421.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.24920556377619504,
254
+ "epoch": 0.25,
255
+ "grad_norm": 0.14128848910331726,
256
+ "learning_rate": 0.00017383922566150466,
257
+ "loss": 0.229,
258
+ "mean_token_accuracy": 0.9095418378710747,
259
+ "num_tokens": 343160.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.24723881762474775,
264
+ "epoch": 0.26,
265
+ "grad_norm": 0.12240611761808395,
266
+ "learning_rate": 0.00017181504618899674,
267
+ "loss": 0.226,
268
+ "mean_token_accuracy": 0.9101279228925705,
269
+ "num_tokens": 356897.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.24775481391698123,
274
+ "epoch": 0.27,
275
+ "grad_norm": 0.14189022779464722,
276
+ "learning_rate": 0.0001697298627289213,
277
+ "loss": 0.2331,
278
+ "mean_token_accuracy": 0.9060970209538937,
279
+ "num_tokens": 370586.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.24812339022755622,
284
+ "epoch": 0.28,
285
+ "grad_norm": 0.12337426841259003,
286
+ "learning_rate": 0.00016758573310560605,
287
+ "loss": 0.2298,
288
+ "mean_token_accuracy": 0.9070734873414039,
289
+ "num_tokens": 384274.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.24800526034086942,
294
+ "epoch": 0.29,
295
+ "grad_norm": 0.14418251812458038,
296
+ "learning_rate": 0.00016538477331612546,
297
+ "loss": 0.2312,
298
+ "mean_token_accuracy": 0.906673189997673,
299
+ "num_tokens": 397966.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.24352597687393426,
304
+ "epoch": 0.3,
305
+ "grad_norm": 0.12768541276454926,
306
+ "learning_rate": 0.00016312915544206653,
307
+ "loss": 0.2317,
308
+ "mean_token_accuracy": 0.9085634969174862,
309
+ "num_tokens": 411674.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.246498416736722,
314
+ "epoch": 0.31,
315
+ "grad_norm": 0.12109944969415665,
316
+ "learning_rate": 0.00016082110550594695,
317
+ "loss": 0.2297,
318
+ "mean_token_accuracy": 0.9070726454257965,
319
+ "num_tokens": 425420.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.24201159030199051,
324
+ "epoch": 0.32,
325
+ "grad_norm": 0.11924492567777634,
326
+ "learning_rate": 0.00015846290127439943,
327
+ "loss": 0.2302,
328
+ "mean_token_accuracy": 0.9076045632362366,
329
+ "num_tokens": 439178.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.24264783263206482,
334
+ "epoch": 0.33,
335
+ "grad_norm": 0.13219736516475677,
336
+ "learning_rate": 0.00015605687001029106,
337
+ "loss": 0.2279,
338
+ "mean_token_accuracy": 0.9087240405380725,
339
+ "num_tokens": 452902.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.23972480706870555,
344
+ "epoch": 0.34,
345
+ "grad_norm": 0.11312355846166611,
346
+ "learning_rate": 0.00015360538617599582,
347
+ "loss": 0.2228,
348
+ "mean_token_accuracy": 0.9087543413043022,
349
+ "num_tokens": 466608.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.23991424571722747,
354
+ "epoch": 0.35,
355
+ "grad_norm": 0.11352849751710892,
356
+ "learning_rate": 0.00015111086909008696,
357
+ "loss": 0.2304,
358
+ "mean_token_accuracy": 0.9063730739057064,
359
+ "num_tokens": 480349.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.24278797972947358,
364
+ "epoch": 0.36,
365
+ "grad_norm": 0.10791114717721939,
366
+ "learning_rate": 0.00014857578053976156,
367
+ "loss": 0.2305,
368
+ "mean_token_accuracy": 0.9075991056859494,
369
+ "num_tokens": 494091.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.2437454979866743,
374
+ "epoch": 0.37,
375
+ "grad_norm": 0.11218743026256561,
376
+ "learning_rate": 0.00014600262235135383,
377
+ "loss": 0.2302,
378
+ "mean_token_accuracy": 0.9073912307620049,
379
+ "num_tokens": 507795.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.24400295298546554,
384
+ "epoch": 0.38,
385
+ "grad_norm": 0.1135665699839592,
386
+ "learning_rate": 0.0001433939339213346,
387
+ "loss": 0.2294,
388
+ "mean_token_accuracy": 0.9078077256679535,
389
+ "num_tokens": 521511.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.2418823266401887,
394
+ "epoch": 0.39,
395
+ "grad_norm": 0.10078570991754532,
396
+ "learning_rate": 0.00014075228971023352,
397
+ "loss": 0.2295,
398
+ "mean_token_accuracy": 0.9060509398579597,
399
+ "num_tokens": 535178.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.2401410521939397,
404
+ "epoch": 0.4,
405
+ "grad_norm": 0.10249901562929153,
406
+ "learning_rate": 0.00013808029670195733,
407
+ "loss": 0.2288,
408
+ "mean_token_accuracy": 0.9078609637916089,
409
+ "num_tokens": 548909.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.24041978865861893,
414
+ "epoch": 0.41,
415
+ "grad_norm": 0.10237855464220047,
416
+ "learning_rate": 0.00013538059183101163,
417
+ "loss": 0.2276,
418
+ "mean_token_accuracy": 0.9083370670676232,
419
+ "num_tokens": 562673.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.24148143101483582,
424
+ "epoch": 0.42,
425
+ "grad_norm": 0.12753501534461975,
426
+ "learning_rate": 0.00013265583938016474,
427
+ "loss": 0.2299,
428
+ "mean_token_accuracy": 0.9089422464370728,
429
+ "num_tokens": 576359.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.24143251981586217,
434
+ "epoch": 0.43,
435
+ "grad_norm": 0.08917894214391708,
436
+ "learning_rate": 0.00012990872835112226,
437
+ "loss": 0.2273,
438
+ "mean_token_accuracy": 0.9093300215899944,
439
+ "num_tokens": 590068.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.23971296865493058,
444
+ "epoch": 0.44,
445
+ "grad_norm": 0.10084182024002075,
446
+ "learning_rate": 0.0001271419698108071,
447
+ "loss": 0.2254,
448
+ "mean_token_accuracy": 0.9112895399332046,
449
+ "num_tokens": 603781.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.24030182063579558,
454
+ "epoch": 0.45,
455
+ "grad_norm": 0.08648212254047394,
456
+ "learning_rate": 0.00012435829421586378,
457
+ "loss": 0.2297,
458
+ "mean_token_accuracy": 0.9069390766322613,
459
+ "num_tokens": 617494.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.23907596711069345,
464
+ "epoch": 0.46,
465
+ "grad_norm": 0.09726402163505554,
466
+ "learning_rate": 0.00012156044871802728,
467
+ "loss": 0.2272,
468
+ "mean_token_accuracy": 0.9110749870538711,
469
+ "num_tokens": 631226.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.24048226717859505,
474
+ "epoch": 0.47,
475
+ "grad_norm": 0.1269565373659134,
476
+ "learning_rate": 0.00011875119445301597,
477
+ "loss": 0.2263,
478
+ "mean_token_accuracy": 0.9094365708529949,
479
+ "num_tokens": 644930.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.2404868735000491,
484
+ "epoch": 0.48,
485
+ "grad_norm": 0.13987430930137634,
486
+ "learning_rate": 0.00011593330381562402,
487
+ "loss": 0.228,
488
+ "mean_token_accuracy": 0.9086972288787365,
489
+ "num_tokens": 658643.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.2410233708098531,
494
+ "epoch": 0.49,
495
+ "grad_norm": 0.0858728289604187,
496
+ "learning_rate": 0.00011310955772370253,
497
+ "loss": 0.2283,
498
+ "mean_token_accuracy": 0.9088118858635426,
499
+ "num_tokens": 672407.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.24116825982928275,
504
+ "epoch": 0.5,
505
+ "grad_norm": 0.10033973306417465,
506
+ "learning_rate": 0.00011028274287372918,
507
+ "loss": 0.2261,
508
+ "mean_token_accuracy": 0.9081287659704685,
509
+ "num_tokens": 686181.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.23781158719211817,
514
+ "epoch": 0.51,
515
+ "grad_norm": 0.0920284241437912,
516
+ "learning_rate": 0.00010745564899067542,
517
+ "loss": 0.2251,
518
+ "mean_token_accuracy": 0.910574822127819,
519
+ "num_tokens": 699910.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.24437603540718555,
524
+ "epoch": 0.52,
525
+ "grad_norm": 0.11087141931056976,
526
+ "learning_rate": 0.00010463106607488464,
527
+ "loss": 0.2285,
528
+ "mean_token_accuracy": 0.9092436917126179,
529
+ "num_tokens": 713591.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.23954443875700235,
534
+ "epoch": 0.53,
535
+ "grad_norm": 0.11676358431577682,
536
+ "learning_rate": 0.0001018117816486787,
537
+ "loss": 0.2264,
538
+ "mean_token_accuracy": 0.9098656721413135,
539
+ "num_tokens": 727279.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.24102531783282757,
544
+ "epoch": 0.54,
545
+ "grad_norm": 0.11347582936286926,
546
+ "learning_rate": 9.900057800540997e-05,
547
+ "loss": 0.2268,
548
+ "mean_token_accuracy": 0.9075351029634475,
549
+ "num_tokens": 740997.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.2425799235701561,
554
+ "epoch": 0.55,
555
+ "grad_norm": 0.09372539818286896,
556
+ "learning_rate": 9.620022946367353e-05,
557
+ "loss": 0.2261,
558
+ "mean_token_accuracy": 0.909490604698658,
559
+ "num_tokens": 754712.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.24178444128483534,
564
+ "epoch": 0.56,
565
+ "grad_norm": 0.12750065326690674,
566
+ "learning_rate": 9.341349962938999e-05,
567
+ "loss": 0.2263,
568
+ "mean_token_accuracy": 0.9097795434296131,
569
+ "num_tokens": 768470.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.23971282187849283,
574
+ "epoch": 0.57,
575
+ "grad_norm": 0.1198856458067894,
576
+ "learning_rate": 9.064313866845983e-05,
577
+ "loss": 0.2271,
578
+ "mean_token_accuracy": 0.908038080483675,
579
+ "num_tokens": 782190.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.23883000295609236,
584
+ "epoch": 0.58,
585
+ "grad_norm": 0.09600803256034851,
586
+ "learning_rate": 8.789188059268165e-05,
587
+ "loss": 0.228,
588
+ "mean_token_accuracy": 0.905812531709671,
589
+ "num_tokens": 795923.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.24229615442454816,
594
+ "epoch": 0.59,
595
+ "grad_norm": 0.09378166496753693,
596
+ "learning_rate": 8.516244056161292e-05,
597
+ "loss": 0.2291,
598
+ "mean_token_accuracy": 0.9067122749984264,
599
+ "num_tokens": 809681.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.24172411523759366,
604
+ "epoch": 0.6,
605
+ "grad_norm": 0.10937656462192535,
606
+ "learning_rate": 8.245751220303495e-05,
607
+ "loss": 0.2269,
608
+ "mean_token_accuracy": 0.9078916423022747,
609
+ "num_tokens": 823381.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.2396618865430355,
614
+ "epoch": 0.61,
615
+ "grad_norm": 0.10506117343902588,
616
+ "learning_rate": 7.977976495466775e-05,
617
+ "loss": 0.2272,
618
+ "mean_token_accuracy": 0.9090281568467617,
619
+ "num_tokens": 837086.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.23965995348989963,
624
+ "epoch": 0.62,
625
+ "grad_norm": 0.09030091017484665,
626
+ "learning_rate": 7.713184142975712e-05,
627
+ "loss": 0.2259,
628
+ "mean_token_accuracy": 0.9090517483651638,
629
+ "num_tokens": 850830.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.24109825491905212,
634
+ "epoch": 0.63,
635
+ "grad_norm": 0.08926719427108765,
636
+ "learning_rate": 7.451635480913441e-05,
637
+ "loss": 0.23,
638
+ "mean_token_accuracy": 0.9062697902321816,
639
+ "num_tokens": 864535.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.24306405633687972,
644
+ "epoch": 0.64,
645
+ "grad_norm": 0.09499569982290268,
646
+ "learning_rate": 7.193588626232272e-05,
647
+ "loss": 0.2288,
648
+ "mean_token_accuracy": 0.9066683143377304,
649
+ "num_tokens": 878242.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.24157419390976428,
654
+ "epoch": 0.65,
655
+ "grad_norm": 0.09953978657722473,
656
+ "learning_rate": 6.939298240023395e-05,
657
+ "loss": 0.2283,
658
+ "mean_token_accuracy": 0.9084775008261203,
659
+ "num_tokens": 891947.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.23758653849363326,
664
+ "epoch": 0.66,
665
+ "grad_norm": 0.09636619687080383,
666
+ "learning_rate": 6.689015276197152e-05,
667
+ "loss": 0.2257,
668
+ "mean_token_accuracy": 0.9086615785956382,
669
+ "num_tokens": 905674.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.23539376221597194,
674
+ "epoch": 0.67,
675
+ "grad_norm": 0.08852291852235794,
676
+ "learning_rate": 6.442986733821805e-05,
677
+ "loss": 0.2261,
678
+ "mean_token_accuracy": 0.9083991117775441,
679
+ "num_tokens": 919369.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.24168960526585578,
684
+ "epoch": 0.68,
685
+ "grad_norm": 0.10650154203176498,
686
+ "learning_rate": 6.201455413365302e-05,
687
+ "loss": 0.2275,
688
+ "mean_token_accuracy": 0.9083165325224399,
689
+ "num_tokens": 933086.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.24350604116916658,
694
+ "epoch": 0.69,
695
+ "grad_norm": 0.10696761310100555,
696
+ "learning_rate": 5.9646596770804984e-05,
697
+ "loss": 0.2294,
698
+ "mean_token_accuracy": 0.9081006243824958,
699
+ "num_tokens": 946807.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.24074853528290988,
704
+ "epoch": 0.7,
705
+ "grad_norm": 0.1011936292052269,
706
+ "learning_rate": 5.7328332137704124e-05,
707
+ "loss": 0.2242,
708
+ "mean_token_accuracy": 0.9103688023984432,
709
+ "num_tokens": 960538.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.24019681774079799,
714
+ "epoch": 0.71,
715
+ "grad_norm": 0.13406361639499664,
716
+ "learning_rate": 5.506204808165578e-05,
717
+ "loss": 0.2255,
718
+ "mean_token_accuracy": 0.9098781734704972,
719
+ "num_tokens": 974218.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.2383977560326457,
724
+ "epoch": 0.72,
725
+ "grad_norm": 0.10470221936702728,
726
+ "learning_rate": 5.284998115141156e-05,
727
+ "loss": 0.2263,
728
+ "mean_token_accuracy": 0.9090094104409218,
729
+ "num_tokens": 988005.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.24030728153884412,
734
+ "epoch": 0.73,
735
+ "grad_norm": 0.09950567036867142,
736
+ "learning_rate": 5.0694314389965483e-05,
737
+ "loss": 0.2262,
738
+ "mean_token_accuracy": 0.9077764123678207,
739
+ "num_tokens": 1001747.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.2383517747744918,
744
+ "epoch": 0.74,
745
+ "grad_norm": 0.1046379804611206,
746
+ "learning_rate": 4.859717518015433e-05,
747
+ "loss": 0.2255,
748
+ "mean_token_accuracy": 0.9083648830652237,
749
+ "num_tokens": 1015426.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.2376708509400487,
754
+ "epoch": 0.75,
755
+ "grad_norm": 0.10912368446588516,
756
+ "learning_rate": 4.656063314518747e-05,
757
+ "loss": 0.2287,
758
+ "mean_token_accuracy": 0.906926941126585,
759
+ "num_tokens": 1029135.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.24110756535083055,
764
+ "epoch": 0.76,
765
+ "grad_norm": 0.09701701998710632,
766
+ "learning_rate": 4.458669810617876e-05,
767
+ "loss": 0.2272,
768
+ "mean_token_accuracy": 0.907534234970808,
769
+ "num_tokens": 1042797.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.24144795462489127,
774
+ "epoch": 0.77,
775
+ "grad_norm": 0.09698126465082169,
776
+ "learning_rate": 4.2677318098695596e-05,
777
+ "loss": 0.2276,
778
+ "mean_token_accuracy": 0.9077579878270626,
779
+ "num_tokens": 1056514.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.2410194795578718,
784
+ "epoch": 0.78,
785
+ "grad_norm": 0.09262491017580032,
786
+ "learning_rate": 4.0834377450283115e-05,
787
+ "loss": 0.2274,
788
+ "mean_token_accuracy": 0.9079074241220951,
789
+ "num_tokens": 1070274.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.2379290260374546,
794
+ "epoch": 0.79,
795
+ "grad_norm": 0.08610810339450836,
796
+ "learning_rate": 3.905969492086041e-05,
797
+ "loss": 0.2266,
798
+ "mean_token_accuracy": 0.9089205518364907,
799
+ "num_tokens": 1083963.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.23869995530694724,
804
+ "epoch": 0.8,
805
+ "grad_norm": 0.0876014232635498,
806
+ "learning_rate": 3.7355021907823975e-05,
807
+ "loss": 0.2276,
808
+ "mean_token_accuracy": 0.9091116264462471,
809
+ "num_tokens": 1097716.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.23918451257050038,
814
+ "epoch": 0.81,
815
+ "grad_norm": 0.09547661989927292,
816
+ "learning_rate": 3.572204071763005e-05,
817
+ "loss": 0.2271,
818
+ "mean_token_accuracy": 0.9079934142529964,
819
+ "num_tokens": 1111428.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.23733678106218575,
824
+ "epoch": 0.82,
825
+ "grad_norm": 0.0923481360077858,
826
+ "learning_rate": 3.416236290556112e-05,
827
+ "loss": 0.2232,
828
+ "mean_token_accuracy": 0.9107904858887196,
829
+ "num_tokens": 1125176.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.2402896758168936,
834
+ "epoch": 0.83,
835
+ "grad_norm": 0.08988992869853973,
836
+ "learning_rate": 3.2677527685315513e-05,
837
+ "loss": 0.2273,
838
+ "mean_token_accuracy": 0.9071260102093219,
839
+ "num_tokens": 1138848.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.24149883706122638,
844
+ "epoch": 0.84,
845
+ "grad_norm": 0.11069593578577042,
846
+ "learning_rate": 3.126900040998926e-05,
847
+ "loss": 0.2271,
848
+ "mean_token_accuracy": 0.9076950967311859,
849
+ "num_tokens": 1152541.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.23676478322595357,
854
+ "epoch": 0.85,
855
+ "grad_norm": 0.10589366406202316,
856
+ "learning_rate": 2.99381711259496e-05,
857
+ "loss": 0.2266,
858
+ "mean_token_accuracy": 0.9074639461934566,
859
+ "num_tokens": 1166218.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.23998944871127606,
864
+ "epoch": 0.86,
865
+ "grad_norm": 0.11591170728206635,
866
+ "learning_rate": 2.8686353201026866e-05,
867
+ "loss": 0.2291,
868
+ "mean_token_accuracy": 0.9079932942986488,
869
+ "num_tokens": 1179979.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.2381745295599103,
874
+ "epoch": 0.87,
875
+ "grad_norm": 0.10135681927204132,
876
+ "learning_rate": 2.7514782028379192e-05,
877
+ "loss": 0.2252,
878
+ "mean_token_accuracy": 0.9097053721547127,
879
+ "num_tokens": 1193705.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.2392121000215411,
884
+ "epoch": 0.88,
885
+ "grad_norm": 0.09339557588100433,
886
+ "learning_rate": 2.642461380730844e-05,
887
+ "loss": 0.2248,
888
+ "mean_token_accuracy": 0.9095241233706475,
889
+ "num_tokens": 1207477.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.23628139793872832,
894
+ "epoch": 0.89,
895
+ "grad_norm": 0.10830932855606079,
896
+ "learning_rate": 2.5416924402231233e-05,
897
+ "loss": 0.2242,
898
+ "mean_token_accuracy": 0.9095697320997715,
899
+ "num_tokens": 1221260.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.23507849648594856,
904
+ "epoch": 0.9,
905
+ "grad_norm": 0.10872520506381989,
906
+ "learning_rate": 2.449270828093054e-05,
907
+ "loss": 0.2255,
908
+ "mean_token_accuracy": 0.9113675028085708,
909
+ "num_tokens": 1234977.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.2417304914444685,
914
+ "epoch": 0.91,
915
+ "grad_norm": 0.10437507927417755,
916
+ "learning_rate": 2.3652877533136153e-05,
917
+ "loss": 0.2259,
918
+ "mean_token_accuracy": 0.9102976031601429,
919
+ "num_tokens": 1248701.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.24325928911566735,
924
+ "epoch": 0.92,
925
+ "grad_norm": 0.086408831179142,
926
+ "learning_rate": 2.289826097040211e-05,
927
+ "loss": 0.2279,
928
+ "mean_token_accuracy": 0.90808689519763,
929
+ "num_tokens": 1262415.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.23895474877208472,
934
+ "epoch": 0.93,
935
+ "grad_norm": 0.11185527592897415,
936
+ "learning_rate": 2.2229603308169898e-05,
937
+ "loss": 0.2267,
938
+ "mean_token_accuracy": 0.9084525190293788,
939
+ "num_tokens": 1276097.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.2378123912960291,
944
+ "epoch": 0.94,
945
+ "grad_norm": 0.08577776700258255,
946
+ "learning_rate": 2.164756443082411e-05,
947
+ "loss": 0.2255,
948
+ "mean_token_accuracy": 0.9093322195112705,
949
+ "num_tokens": 1289845.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 0.238109921105206,
954
+ "epoch": 0.95,
955
+ "grad_norm": 0.10014646500349045,
956
+ "learning_rate": 2.115271874046628e-05,
957
+ "loss": 0.2244,
958
+ "mean_token_accuracy": 0.9077881164848804,
959
+ "num_tokens": 1303598.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 0.23693346995860337,
964
+ "epoch": 0.96,
965
+ "grad_norm": 0.10954771935939789,
966
+ "learning_rate": 2.0745554590049352e-05,
967
+ "loss": 0.2245,
968
+ "mean_token_accuracy": 0.90839484333992,
969
+ "num_tokens": 1317339.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 0.23895396925508977,
974
+ "epoch": 0.97,
975
+ "grad_norm": 0.09081379324197769,
976
+ "learning_rate": 2.0426473801432252e-05,
977
+ "loss": 0.2264,
978
+ "mean_token_accuracy": 0.9104941196739673,
979
+ "num_tokens": 1331040.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 0.23677602242678403,
984
+ "epoch": 0.98,
985
+ "grad_norm": 0.10861524939537048,
986
+ "learning_rate": 2.019579126883027e-05,
987
+ "loss": 0.2241,
988
+ "mean_token_accuracy": 0.9098212897777558,
989
+ "num_tokens": 1344709.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 0.23963210433721543,
994
+ "epoch": 0.99,
995
+ "grad_norm": 0.09649220108985901,
996
+ "learning_rate": 2.005373464805244e-05,
997
+ "loss": 0.2259,
998
+ "mean_token_accuracy": 0.9081830322742462,
999
+ "num_tokens": 1358455.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 0.23944416362792253,
1004
+ "epoch": 1.0,
1005
+ "grad_norm": 0.07573503255844116,
1006
+ "learning_rate": 2.0000444131832763e-05,
1007
+ "loss": 0.226,
1008
+ "mean_token_accuracy": 0.9083718590438365,
1009
+ "num_tokens": 1372207.0,
1010
+ "step": 1000
1011
+ }
1012
+ ],
1013
+ "logging_steps": 10,
1014
+ "max_steps": 1000,
1015
+ "num_input_tokens_seen": 0,
1016
+ "num_train_epochs": 1,
1017
+ "save_steps": 500,
1018
+ "stateful_callbacks": {
1019
+ "TrainerControl": {
1020
+ "args": {
1021
+ "should_epoch_stop": false,
1022
+ "should_evaluate": false,
1023
+ "should_log": false,
1024
+ "should_save": true,
1025
+ "should_training_stop": true
1026
+ },
1027
+ "attributes": {}
1028
+ }
1029
+ },
1030
+ "total_flos": 8569324782686208.0,
1031
+ "train_batch_size": 1,
1032
+ "trial_name": null,
1033
+ "trial_params": null
1034
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adec00018a230464b81c3c44eab34296e1e4d5890f3696ab13104c3672bd37df
3
+ size 6289
runs/Nov23_23-48-36_fbeea3a897de/events.out.tfevents.1763941731.fbeea3a897de.527.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b63111447f858b61b514a41d1d174e166268819bb3c49431a3ebfa8600d3592d
3
+ size 5628
runs/Nov24_00-02-37_fbeea3a897de/events.out.tfevents.1763942571.fbeea3a897de.7709.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b246c04d0243e067ab191c52f62efec6b0e4b2ac774c4b7180210e1a8a2c085d
3
+ size 44097
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 2048,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }