jcblaise commited on
Commit
9a4dc84
·
verified ·
1 Parent(s): 47dd2fb

Upload folder using huggingface_hub

Browse files
all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.222658667991288,
3
+ "total_flos": 8.246852548747592e+18,
4
+ "train_loss": 1.5593041332244872,
5
+ "train_runtime": 85792.9956,
6
+ "train_samples": 16749432,
7
+ "train_samples_per_second": 238.714,
8
+ "train_steps_per_second": 0.117
9
+ }
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "BackpackGPT2LMHeadModel"
5
+ ],
6
+ "attn_pdrop": 0.1,
7
+ "auto_map": {
8
+ "AutoConfig": "configuration_backpack_gpt2.BackpackGPT2Config",
9
+ "AutoModelForCausalLM": "modeling_backpack_gpt2.BackpackGPT2LMHeadModel"
10
+ },
11
+ "bos_token_id": 50256,
12
+ "dtype": "float32",
13
+ "embd_pdrop": 0.1,
14
+ "eos_token_id": 50256,
15
+ "initializer_range": 0.02,
16
+ "layer_norm_epsilon": 1e-05,
17
+ "model_type": "gpt2",
18
+ "n_embd": 768,
19
+ "n_head": 12,
20
+ "n_inner": null,
21
+ "n_layer": 12,
22
+ "n_positions": 512,
23
+ "num_senses": 16,
24
+ "reorder_and_upcast_attn": false,
25
+ "resid_pdrop": 0.1,
26
+ "scale_attn_by_inverse_layer_idx": true,
27
+ "scale_attn_weights": true,
28
+ "sense_intermediate_scale": 4,
29
+ "summary_activation": null,
30
+ "summary_first_dropout": 0.1,
31
+ "summary_proj_to_labels": true,
32
+ "summary_type": "cls_index",
33
+ "summary_use_proj": true,
34
+ "transformers_version": "4.57.0",
35
+ "use_cache": true,
36
+ "vocab_size": 50264
37
+ }
configuration_backpack_gpt2.py ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers.models.gpt2.configuration_gpt2 import GPT2Config
2
+
3
+ class BackpackGPT2Config(GPT2Config):
4
+ """
5
+ This is the configuration class to store the configuration of a [`GPT2Model`] or a [`TFGPT2Model`]. It is used to
6
+ instantiate a Backpack GPT-2 model according to the specified arguments, defining the model architecture.
7
+
8
+ Configuration objects inherit from [`GPT2Config`] and can be used to control the model outputs. Read the
9
+ documentation from [`GPT2Config`] for more information.
10
+
11
+ Args:
12
+ num_senses (`int`, *optional*, defaults to 16):
13
+ The number of sense vectors to define for each word.
14
+ sense_intermediate_scale (`int`, *optional*, defaults ot 4):
15
+ The hidden dimensionality of the sense vector network.
16
+
17
+ Example:
18
+
19
+ ```python
20
+ >>> from transformers import BackpackGPT2Config, BackpackGPT2Model
21
+
22
+ >>> # Initializing a GPT2 configuration
23
+ >>> configuration = BackpackGPT2Config()
24
+
25
+ >>> # Initializing a model (with random weights) from the configuration
26
+ >>> model = BackpackGPT2Model(configuration)
27
+
28
+ >>> # Accessing the model configuration
29
+ >>> configuration = model.config
30
+ """
31
+
32
+ def __init__(self,
33
+ vocab_size=50264,
34
+ num_senses=16,
35
+ sense_intermediate_scale=4,
36
+ n_positions=512,
37
+ scale_attn_by_inverse_layer_idx=True,
38
+ **kwargs,
39
+ ):
40
+ self.num_senses = num_senses
41
+ self.sense_intermediate_scale = sense_intermediate_scale
42
+ super().__init__(vocab_size=vocab_size, n_positions=n_positions, scale_attn_by_inverse_layer_idx=scale_attn_by_inverse_layer_idx, **kwargs)
generation_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 50256,
4
+ "eos_token_id": [
5
+ 50256
6
+ ],
7
+ "transformers_version": "4.57.0"
8
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
modeling_backpack_gpt2.py ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import math
2
+ from dataclasses import dataclass
3
+ from typing import Optional, Tuple
4
+
5
+ import torch
6
+ import torch.utils.checkpoint
7
+ from torch import nn
8
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
9
+
10
+ from transformers.activations import ACT2FN
11
+ from transformers.pytorch_utils import Conv1D
12
+ from transformers.utils import (
13
+ ModelOutput,
14
+ logging,
15
+ )
16
+ from transformers.models.gpt2.modeling_gpt2 import GPT2Model, GPT2PreTrainedModel, GenerationMixin
17
+ from transformers.cache_utils import Cache
18
+ from .configuration_backpack_gpt2 import BackpackGPT2Config
19
+
20
+ logger = logging.get_logger(__name__)
21
+
22
+
23
+ ### Backpack-Specific
24
+ class BackpackGPT2PreTrainedModel(GPT2PreTrainedModel):
25
+ """
26
+ An abstract class to handle weights initialization and a simple interface for downloading and loading pretrained
27
+ models.
28
+ """
29
+ _keys_to_ignore_on_load_missing = [r"attn.masked_bias", r"attn.bias"]
30
+
31
+ config_class = BackpackGPT2Config
32
+ base_model_prefix = "backpack"
33
+ is_parallelizable = True
34
+ supports_gradient_checkpointing = False
35
+ _no_split_modules = ["GPT2Block", "BackpackNoMixBlock"]
36
+
37
+ def __init__(self, *inputs, **kwargs):
38
+ super().__init__(*inputs, **kwargs)
39
+
40
+ class BackpackMLP(nn.Module):
41
+
42
+ def __init__(self, embed_dim, intermediate_dim, out_dim, config):
43
+ super().__init__()
44
+ self.c_fc = Conv1D(intermediate_dim, embed_dim)
45
+ self.c_proj = Conv1D(out_dim, intermediate_dim)
46
+ self.act = ACT2FN[config.activation_function]
47
+ self.dropout = nn.Dropout(config.resid_pdrop)
48
+
49
+ def forward(self, hidden_states: Optional[Tuple[torch.FloatTensor]]) -> torch.FloatTensor:
50
+ hidden_states = self.c_fc(hidden_states)
51
+ hidden_states = self.act(hidden_states)
52
+ hidden_states = self.c_proj(hidden_states)
53
+ hidden_states = self.dropout(hidden_states)
54
+ return hidden_states
55
+
56
+ class BackpackNoMixBlock(nn.Module):
57
+
58
+ def __init__(self, config):
59
+ super().__init__()
60
+ self.ln_1 = nn.LayerNorm(config.n_embd, eps=config.layer_norm_epsilon)
61
+ self.ln_2 = nn.LayerNorm(config.n_embd, eps=config.layer_norm_epsilon)
62
+ self.mlp = BackpackMLP(config.n_embd, config.n_embd*4, config.n_embd, config)
63
+ self.resid_dropout1 = nn.Dropout(config.resid_pdrop)
64
+ self.resid_dropout2 = nn.Dropout(config.resid_pdrop)
65
+
66
+ def forward(self, hidden_states, residual):
67
+ residual = self.resid_dropout1(hidden_states) + residual
68
+ hidden_states = self.ln_1(residual)
69
+ mlp_out = self.mlp(hidden_states)
70
+ residual = self.resid_dropout2(mlp_out) + residual
71
+ hidden_states = self.ln_2(residual)
72
+ return hidden_states
73
+
74
+
75
+ class BackpackSenseNetwork(nn.Module):
76
+ def __init__(self, config, num_senses, device=None, dtype=None):
77
+ super().__init__()
78
+ self.num_senses = num_senses
79
+ #self.embeddings = embeddings
80
+ self.n_embd = config.n_embd
81
+
82
+ self.dropout = nn.Dropout(config.embd_pdrop)
83
+ self.block = BackpackNoMixBlock(config)
84
+ self.ln = nn.LayerNorm(self.n_embd, eps=config.layer_norm_epsilon)
85
+ self.final_mlp = BackpackMLP(
86
+ embed_dim=config.n_embd,
87
+ intermediate_dim=config.sense_intermediate_scale*config.n_embd,
88
+ out_dim=config.n_embd*config.num_senses,
89
+ config=config,
90
+ )
91
+
92
+ def forward(self, input_embeds):
93
+ residual = self.dropout(input_embeds)
94
+ hidden_states = self.ln(residual)
95
+ hidden_states = self.block(hidden_states, residual)
96
+ senses = self.final_mlp(hidden_states)
97
+ bs, s, nvd = senses.shape
98
+ return senses.reshape(bs, s, self.num_senses, self.n_embd).transpose(1,2) # (bs, nv, s, d)
99
+
100
+ class BackpackWeightNetwork(nn.Module):
101
+
102
+ def __init__(self, num_senses, embed_dim):
103
+ super().__init__()
104
+ self.n_embd = embed_dim
105
+ self.num_senses = num_senses
106
+ self.embed_per_sense = embed_dim // num_senses
107
+ self.c_attn = nn.Linear(embed_dim, 2 * num_senses * self.embed_per_sense)
108
+ self.softmax_scale = None
109
+
110
+ def forward(self, encoded):
111
+ b, s, d = encoded.shape
112
+ encoded = self.c_attn(encoded) # (b, s, 2*d)
113
+ encoded = encoded.reshape(b, s, 2, self.num_senses, self.embed_per_sense) #(b, s, 2, nv, d//nv)
114
+ batch_size, seqlen = encoded.shape[0], encoded.shape[1]
115
+
116
+ # compute scores & mask
117
+ q, k = encoded.unbind(dim=2)
118
+ softmax_scale = self.softmax_scale or 1.0 / math.sqrt(q.shape[-1])
119
+ scores = torch.einsum('bthd,bshd->bhts', q, k * softmax_scale)
120
+ causal_mask = torch.triu(torch.full((seqlen, seqlen), -10000.0, device=scores.device), 1)
121
+ scores = scores + causal_mask.to(dtype=scores.dtype)
122
+
123
+ return torch.softmax(scores, dim=-1, dtype=q.dtype)
124
+
125
+
126
+ @dataclass
127
+ class BackpackGPT2BaseModelOutput(ModelOutput):
128
+ hidden_states: torch.FloatTensor = None
129
+ contextualization: torch.FloatTensor = None
130
+
131
+ class BackpackGPT2Model(BackpackGPT2PreTrainedModel):
132
+ _keys_to_ignore_on_load_missing = [r".*attn.masked_bias", r".*attn.bias"]
133
+
134
+ def __init__(self, config):
135
+ super().__init__(config)
136
+
137
+ self.embed_dim = config.n_embd
138
+
139
+ self.num_senses = config.num_senses
140
+ self.gpt2_model = GPT2Model(config)
141
+ self.sense_network = BackpackSenseNetwork(config, self.num_senses, self.gpt2_model.wte)
142
+ self.word_embeddings = self.gpt2_model.wte
143
+ self.position_embeddings = self.gpt2_model.wpe
144
+ self.sense_weight_net = BackpackWeightNetwork(self.num_senses, self.embed_dim)
145
+ # Model parallel
146
+ self.model_parallel = False
147
+ self.device_map = None
148
+ self.gradient_checkpointing = False
149
+
150
+ def get_num_senses(self):
151
+ return self.num_senses
152
+
153
+ def get_word_embeddings(self):
154
+ return self.word_embeddings
155
+
156
+ def get_sense_network(self):
157
+ return self.sense_network
158
+
159
+ def get_input_embeddings(self):
160
+ return self.word_embeddings
161
+
162
+ def forward(
163
+ self,
164
+ input_ids,
165
+ position_ids,
166
+ cache_position: Optional[torch.LongTensor] = None,
167
+ past_key_values: Optional[Cache] = None,
168
+ inputs_embeds: Optional[torch.FloatTensor] = None,
169
+ attention_mask: Optional[torch.FloatTensor] = None,
170
+ use_cache: Optional[bool] = None,
171
+ return_dict: Optional[bool] = None,
172
+ **kwargs):
173
+ # Compute senses
174
+ sense_input_embeds = self.word_embeddings(input_ids)
175
+ senses = self.sense_network(sense_input_embeds) # (bs, nv, s, d)
176
+
177
+ # Compute contextualization weights
178
+ #contextl_hidden_states = self.gpt2_model(input_ids, position_ids=position_ids).last_hidden_state # (bs, s, d)
179
+ contextl_hidden_states = self.gpt2_model(input_ids=input_ids, position_ids=position_ids, **kwargs).last_hidden_state
180
+ contextualization = self.sense_weight_net(contextl_hidden_states) # (bs, nv, s, s)
181
+
182
+ # Compute resulting outputs
183
+ hidden_states = torch.sum(contextualization @ senses, dim=1) # (bs, nv, s, d) -> (bs, s, d)
184
+ return BackpackGPT2BaseModelOutput(
185
+ hidden_states=hidden_states,
186
+ contextualization=contextualization,
187
+ )
188
+
189
+ def run_with_custom_contextualization(self, input_ids, contextualization):
190
+ # Compute senses
191
+ sense_input_embeds = self.word_embeddings(input_ids)
192
+ senses = self.sense_network(sense_input_embeds) # (bs, nv, s, d)
193
+
194
+ # Compute resulting outputs
195
+ hidden_states = torch.sum(contextualization @ senses, dim=1) # (bs, nv, s, d) -> (bs, s, d)
196
+ return BackpackGPT2BaseModelOutput(
197
+ hidden_states=hidden_states,
198
+ contextualization=contextualization,
199
+ )
200
+
201
+ @dataclass
202
+ class BackpackGPT2LMHeadModelOutput(ModelOutput):
203
+ logits: torch.FloatTensor = None
204
+ contextualization: torch.FloatTensor = None
205
+ loss: Optional[torch.FloatTensor] = None
206
+
207
+ class BackpackGPT2LMHeadModel(BackpackGPT2PreTrainedModel, GenerationMixin):
208
+ _keys_to_ignore_on_load_missing = [r".*attn.masked_bias", r".*attn.bias"]
209
+ accepts_loss_kwargs = False
210
+
211
+ def __init__(self, config):
212
+ super().__init__(config)
213
+ self.backpack = BackpackGPT2Model(config)
214
+ self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)
215
+
216
+ # Model parallel
217
+ self.model_parallel = False
218
+ self.device_map = None
219
+
220
+ self.tie_weights()
221
+
222
+ def tie_weights(self):
223
+ self.lm_head.weight = self.backpack.word_embeddings.weight # also tied with the underlying underlying transf
224
+
225
+ def get_lm_head(self):
226
+ return self.lm_head
227
+
228
+ def get_input_embeddings(self):
229
+ return self.backpack.word_embeddings
230
+
231
+ def forward(
232
+ self,
233
+ input_ids,
234
+ position_ids=None,
235
+ labels: Optional[torch.LongTensor] = None,
236
+ cache_position: Optional[torch.LongTensor] = None,
237
+ past_key_values: Optional[Cache] = None,
238
+ inputs_embeds: Optional[torch.FloatTensor] = None,
239
+ attention_mask: Optional[torch.FloatTensor] = None,
240
+ use_cache: Optional[bool] = None,
241
+ return_dict: Optional[bool] = None,
242
+ **kwargs):
243
+ outputs = self.backpack(input_ids, position_ids=position_ids, **kwargs)
244
+ hidden_states, contextualization = outputs.hidden_states, outputs.contextualization
245
+ lm_logits = self.lm_head(hidden_states) # (bs, s, V)
246
+
247
+ loss = None
248
+ if labels is not None:
249
+ labels = labels.to(lm_logits.device)
250
+ shift_logits = lm_logits[..., :-1, :].contiguous()
251
+ shift_labels = labels[..., 1:].contiguous()
252
+ loss_fct = CrossEntropyLoss(ignore_index=-100, reduction='mean')
253
+ loss = loss_fct(shift_logits.view(-1, shift_logits.size(-1)), shift_labels.view(-1))
254
+ #print(f"[DEBUG] loss.item(): {loss.item()}, loss.shape: {loss.shape}")
255
+
256
+ return BackpackGPT2LMHeadModelOutput(
257
+ logits=lm_logits,
258
+ contextualization=contextualization,
259
+ loss=loss
260
+ )
261
+
262
+ def run_with_custom_contextualization(self, input_ids, contextualization):
263
+ outputs = self.backpack.run_with_custom_contextualization(input_ids, contextualization)
264
+ hidden_states, contextualization = outputs.hidden_states, outputs.contextualization
265
+ lm_logits = self.lm_head(hidden_states)
266
+ return BackpackGPT2LMHeadModelOutput(
267
+ logits=lm_logits,
268
+ contextualization=contextualization,
269
+ )
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e843dcebc05852269a0c08e3b26bc17f2684d89ef9b13bb3e4869e45e1d03d1
3
+ size 680390003
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|endoftext|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<|endoftext|>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "50256": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": true,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ }
12
+ },
13
+ "bos_token": "<|endoftext|>",
14
+ "clean_up_tokenization_spaces": false,
15
+ "eos_token": "<|endoftext|>",
16
+ "extra_special_tokens": {},
17
+ "model_max_length": 1024,
18
+ "tokenizer_class": "GPT2Tokenizer",
19
+ "unk_token": "<|endoftext|>"
20
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 1.222658667991288,
3
+ "total_flos": 8.246852548747592e+18,
4
+ "train_loss": 1.5593041332244872,
5
+ "train_runtime": 85792.9956,
6
+ "train_samples": 16749432,
7
+ "train_samples_per_second": 238.714,
8
+ "train_steps_per_second": 0.117
9
+ }
trainer_state.json ADDED
@@ -0,0 +1,2227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.222658667991288,
6
+ "eval_steps": 500,
7
+ "global_step": 10000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.003912727828512476,
14
+ "grad_norm": 8.57561206817627,
15
+ "learning_rate": 1.55e-06,
16
+ "loss": 5.0338,
17
+ "step": 32
18
+ },
19
+ {
20
+ "epoch": 0.007825455657024952,
21
+ "grad_norm": 5.36021089553833,
22
+ "learning_rate": 3.1500000000000003e-06,
23
+ "loss": 4.456,
24
+ "step": 64
25
+ },
26
+ {
27
+ "epoch": 0.011738183485537427,
28
+ "grad_norm": 3.3196067810058594,
29
+ "learning_rate": 4.75e-06,
30
+ "loss": 3.9216,
31
+ "step": 96
32
+ },
33
+ {
34
+ "epoch": 0.015650911314049904,
35
+ "grad_norm": 2.2839956283569336,
36
+ "learning_rate": 6.35e-06,
37
+ "loss": 3.6983,
38
+ "step": 128
39
+ },
40
+ {
41
+ "epoch": 0.01956363914256238,
42
+ "grad_norm": 1.4226499795913696,
43
+ "learning_rate": 7.95e-06,
44
+ "loss": 3.5863,
45
+ "step": 160
46
+ },
47
+ {
48
+ "epoch": 0.023476366971074854,
49
+ "grad_norm": 0.9770936369895935,
50
+ "learning_rate": 9.55e-06,
51
+ "loss": 3.5076,
52
+ "step": 192
53
+ },
54
+ {
55
+ "epoch": 0.02738909479958733,
56
+ "grad_norm": 0.6855128407478333,
57
+ "learning_rate": 1.115e-05,
58
+ "loss": 3.4515,
59
+ "step": 224
60
+ },
61
+ {
62
+ "epoch": 0.03130182262809981,
63
+ "grad_norm": 0.5743525624275208,
64
+ "learning_rate": 1.2750000000000002e-05,
65
+ "loss": 3.4145,
66
+ "step": 256
67
+ },
68
+ {
69
+ "epoch": 0.03521455045661228,
70
+ "grad_norm": 0.4765739440917969,
71
+ "learning_rate": 1.435e-05,
72
+ "loss": 3.3892,
73
+ "step": 288
74
+ },
75
+ {
76
+ "epoch": 0.03912727828512476,
77
+ "grad_norm": 0.40247443318367004,
78
+ "learning_rate": 1.595e-05,
79
+ "loss": 3.3664,
80
+ "step": 320
81
+ },
82
+ {
83
+ "epoch": 0.04304000611363723,
84
+ "grad_norm": 0.3582874834537506,
85
+ "learning_rate": 1.755e-05,
86
+ "loss": 3.3487,
87
+ "step": 352
88
+ },
89
+ {
90
+ "epoch": 0.04695273394214971,
91
+ "grad_norm": 0.31657862663269043,
92
+ "learning_rate": 1.915e-05,
93
+ "loss": 3.3349,
94
+ "step": 384
95
+ },
96
+ {
97
+ "epoch": 0.05086546177066218,
98
+ "grad_norm": 0.28206518292427063,
99
+ "learning_rate": 2.075e-05,
100
+ "loss": 3.3197,
101
+ "step": 416
102
+ },
103
+ {
104
+ "epoch": 0.05477818959917466,
105
+ "grad_norm": 0.2577824890613556,
106
+ "learning_rate": 2.235e-05,
107
+ "loss": 3.3058,
108
+ "step": 448
109
+ },
110
+ {
111
+ "epoch": 0.05869091742768714,
112
+ "grad_norm": 0.23786848783493042,
113
+ "learning_rate": 2.395e-05,
114
+ "loss": 3.2955,
115
+ "step": 480
116
+ },
117
+ {
118
+ "epoch": 0.06260364525619962,
119
+ "grad_norm": 0.2239329218864441,
120
+ "learning_rate": 2.555e-05,
121
+ "loss": 3.2846,
122
+ "step": 512
123
+ },
124
+ {
125
+ "epoch": 0.06651637308471209,
126
+ "grad_norm": 0.22519271075725555,
127
+ "learning_rate": 2.7150000000000003e-05,
128
+ "loss": 3.2731,
129
+ "step": 544
130
+ },
131
+ {
132
+ "epoch": 0.07042910091322456,
133
+ "grad_norm": 0.2189016044139862,
134
+ "learning_rate": 2.8749999999999997e-05,
135
+ "loss": 3.2663,
136
+ "step": 576
137
+ },
138
+ {
139
+ "epoch": 0.07434182874173703,
140
+ "grad_norm": 0.20760661363601685,
141
+ "learning_rate": 3.035e-05,
142
+ "loss": 3.2581,
143
+ "step": 608
144
+ },
145
+ {
146
+ "epoch": 0.07825455657024952,
147
+ "grad_norm": 0.205606147646904,
148
+ "learning_rate": 3.1950000000000004e-05,
149
+ "loss": 3.2451,
150
+ "step": 640
151
+ },
152
+ {
153
+ "epoch": 0.08216728439876199,
154
+ "grad_norm": 0.22558899223804474,
155
+ "learning_rate": 3.355e-05,
156
+ "loss": 3.2412,
157
+ "step": 672
158
+ },
159
+ {
160
+ "epoch": 0.08608001222727446,
161
+ "grad_norm": 0.22584667801856995,
162
+ "learning_rate": 3.515e-05,
163
+ "loss": 3.2358,
164
+ "step": 704
165
+ },
166
+ {
167
+ "epoch": 0.08999274005578695,
168
+ "grad_norm": 0.22091105580329895,
169
+ "learning_rate": 3.675e-05,
170
+ "loss": 3.2302,
171
+ "step": 736
172
+ },
173
+ {
174
+ "epoch": 0.09390546788429942,
175
+ "grad_norm": 0.22428959608078003,
176
+ "learning_rate": 3.8350000000000004e-05,
177
+ "loss": 3.2228,
178
+ "step": 768
179
+ },
180
+ {
181
+ "epoch": 0.09781819571281189,
182
+ "grad_norm": 0.22730223834514618,
183
+ "learning_rate": 3.995e-05,
184
+ "loss": 3.2207,
185
+ "step": 800
186
+ },
187
+ {
188
+ "epoch": 0.10173092354132436,
189
+ "grad_norm": 0.28039082884788513,
190
+ "learning_rate": 4.155e-05,
191
+ "loss": 3.2171,
192
+ "step": 832
193
+ },
194
+ {
195
+ "epoch": 0.10564365136983685,
196
+ "grad_norm": 0.32776346802711487,
197
+ "learning_rate": 4.315e-05,
198
+ "loss": 3.2104,
199
+ "step": 864
200
+ },
201
+ {
202
+ "epoch": 0.10955637919834932,
203
+ "grad_norm": 0.2800813615322113,
204
+ "learning_rate": 4.4750000000000004e-05,
205
+ "loss": 3.2053,
206
+ "step": 896
207
+ },
208
+ {
209
+ "epoch": 0.11346910702686179,
210
+ "grad_norm": 0.24571874737739563,
211
+ "learning_rate": 4.635e-05,
212
+ "loss": 3.2046,
213
+ "step": 928
214
+ },
215
+ {
216
+ "epoch": 0.11738183485537428,
217
+ "grad_norm": 0.5581298470497131,
218
+ "learning_rate": 4.795e-05,
219
+ "loss": 3.2004,
220
+ "step": 960
221
+ },
222
+ {
223
+ "epoch": 0.12129456268388675,
224
+ "grad_norm": 0.47118815779685974,
225
+ "learning_rate": 4.9550000000000005e-05,
226
+ "loss": 3.1967,
227
+ "step": 992
228
+ },
229
+ {
230
+ "epoch": 0.12520729051239923,
231
+ "grad_norm": 0.23707512021064758,
232
+ "learning_rate": 4.9872222222222225e-05,
233
+ "loss": 3.1945,
234
+ "step": 1024
235
+ },
236
+ {
237
+ "epoch": 0.1291200183409117,
238
+ "grad_norm": 0.41069141030311584,
239
+ "learning_rate": 4.969444444444445e-05,
240
+ "loss": 3.1928,
241
+ "step": 1056
242
+ },
243
+ {
244
+ "epoch": 0.13303274616942418,
245
+ "grad_norm": 0.376223623752594,
246
+ "learning_rate": 4.9516666666666666e-05,
247
+ "loss": 3.1871,
248
+ "step": 1088
249
+ },
250
+ {
251
+ "epoch": 0.13694547399793663,
252
+ "grad_norm": 0.22380244731903076,
253
+ "learning_rate": 4.933888888888889e-05,
254
+ "loss": 3.1862,
255
+ "step": 1120
256
+ },
257
+ {
258
+ "epoch": 0.14085820182644912,
259
+ "grad_norm": 0.2950900197029114,
260
+ "learning_rate": 4.9161111111111115e-05,
261
+ "loss": 3.1828,
262
+ "step": 1152
263
+ },
264
+ {
265
+ "epoch": 0.1447709296549616,
266
+ "grad_norm": 0.25872257351875305,
267
+ "learning_rate": 4.8983333333333336e-05,
268
+ "loss": 3.1828,
269
+ "step": 1184
270
+ },
271
+ {
272
+ "epoch": 0.14868365748347406,
273
+ "grad_norm": 0.3597142994403839,
274
+ "learning_rate": 4.880555555555556e-05,
275
+ "loss": 3.1845,
276
+ "step": 1216
277
+ },
278
+ {
279
+ "epoch": 0.15259638531198655,
280
+ "grad_norm": 0.30377593636512756,
281
+ "learning_rate": 4.862777777777778e-05,
282
+ "loss": 3.1806,
283
+ "step": 1248
284
+ },
285
+ {
286
+ "epoch": 0.15650911314049903,
287
+ "grad_norm": 0.3617115318775177,
288
+ "learning_rate": 4.845e-05,
289
+ "loss": 3.178,
290
+ "step": 1280
291
+ },
292
+ {
293
+ "epoch": 0.1604218409690115,
294
+ "grad_norm": 0.31589606404304504,
295
+ "learning_rate": 4.8272222222222226e-05,
296
+ "loss": 3.1787,
297
+ "step": 1312
298
+ },
299
+ {
300
+ "epoch": 0.16433456879752398,
301
+ "grad_norm": 0.30715763568878174,
302
+ "learning_rate": 4.809444444444445e-05,
303
+ "loss": 3.1754,
304
+ "step": 1344
305
+ },
306
+ {
307
+ "epoch": 0.16824729662603646,
308
+ "grad_norm": 0.2574257254600525,
309
+ "learning_rate": 4.791666666666667e-05,
310
+ "loss": 3.1732,
311
+ "step": 1376
312
+ },
313
+ {
314
+ "epoch": 0.17216002445454892,
315
+ "grad_norm": 0.3290633261203766,
316
+ "learning_rate": 4.773888888888889e-05,
317
+ "loss": 3.1723,
318
+ "step": 1408
319
+ },
320
+ {
321
+ "epoch": 0.1760727522830614,
322
+ "grad_norm": 0.24164608120918274,
323
+ "learning_rate": 4.756111111111111e-05,
324
+ "loss": 3.1693,
325
+ "step": 1440
326
+ },
327
+ {
328
+ "epoch": 0.1799854801115739,
329
+ "grad_norm": 0.30125918984413147,
330
+ "learning_rate": 4.738333333333334e-05,
331
+ "loss": 3.1685,
332
+ "step": 1472
333
+ },
334
+ {
335
+ "epoch": 0.18389820794008635,
336
+ "grad_norm": 0.3488104045391083,
337
+ "learning_rate": 4.720555555555556e-05,
338
+ "loss": 3.1678,
339
+ "step": 1504
340
+ },
341
+ {
342
+ "epoch": 0.18781093576859884,
343
+ "grad_norm": 0.2793637812137604,
344
+ "learning_rate": 4.702777777777778e-05,
345
+ "loss": 3.1668,
346
+ "step": 1536
347
+ },
348
+ {
349
+ "epoch": 0.1917236635971113,
350
+ "grad_norm": 0.2682870030403137,
351
+ "learning_rate": 4.685000000000001e-05,
352
+ "loss": 3.1642,
353
+ "step": 1568
354
+ },
355
+ {
356
+ "epoch": 0.19563639142562378,
357
+ "grad_norm": 0.36307454109191895,
358
+ "learning_rate": 4.667222222222222e-05,
359
+ "loss": 3.1654,
360
+ "step": 1600
361
+ },
362
+ {
363
+ "epoch": 0.19954911925413626,
364
+ "grad_norm": 0.23930683732032776,
365
+ "learning_rate": 4.649444444444445e-05,
366
+ "loss": 3.1641,
367
+ "step": 1632
368
+ },
369
+ {
370
+ "epoch": 0.20346184708264872,
371
+ "grad_norm": 0.3049800992012024,
372
+ "learning_rate": 4.631666666666667e-05,
373
+ "loss": 3.1654,
374
+ "step": 1664
375
+ },
376
+ {
377
+ "epoch": 0.2073745749111612,
378
+ "grad_norm": 0.27725374698638916,
379
+ "learning_rate": 4.613888888888889e-05,
380
+ "loss": 3.1642,
381
+ "step": 1696
382
+ },
383
+ {
384
+ "epoch": 0.2112873027396737,
385
+ "grad_norm": 0.2733665108680725,
386
+ "learning_rate": 4.596111111111112e-05,
387
+ "loss": 3.1584,
388
+ "step": 1728
389
+ },
390
+ {
391
+ "epoch": 0.21520003056818615,
392
+ "grad_norm": 0.34570956230163574,
393
+ "learning_rate": 4.578333333333333e-05,
394
+ "loss": 3.162,
395
+ "step": 1760
396
+ },
397
+ {
398
+ "epoch": 0.21911275839669864,
399
+ "grad_norm": 0.2521582543849945,
400
+ "learning_rate": 4.560555555555556e-05,
401
+ "loss": 3.1603,
402
+ "step": 1792
403
+ },
404
+ {
405
+ "epoch": 0.22302548622521112,
406
+ "grad_norm": 0.29344356060028076,
407
+ "learning_rate": 4.542777777777778e-05,
408
+ "loss": 3.1587,
409
+ "step": 1824
410
+ },
411
+ {
412
+ "epoch": 0.22693821405372358,
413
+ "grad_norm": 0.426881343126297,
414
+ "learning_rate": 4.525e-05,
415
+ "loss": 3.1561,
416
+ "step": 1856
417
+ },
418
+ {
419
+ "epoch": 0.23085094188223607,
420
+ "grad_norm": 0.27699196338653564,
421
+ "learning_rate": 4.507222222222223e-05,
422
+ "loss": 3.1581,
423
+ "step": 1888
424
+ },
425
+ {
426
+ "epoch": 0.23476366971074855,
427
+ "grad_norm": 0.32313504815101624,
428
+ "learning_rate": 4.4894444444444444e-05,
429
+ "loss": 3.1578,
430
+ "step": 1920
431
+ },
432
+ {
433
+ "epoch": 0.238676397539261,
434
+ "grad_norm": 0.26697778701782227,
435
+ "learning_rate": 4.4716666666666665e-05,
436
+ "loss": 3.157,
437
+ "step": 1952
438
+ },
439
+ {
440
+ "epoch": 0.2425891253677735,
441
+ "grad_norm": 0.2206508368253708,
442
+ "learning_rate": 4.453888888888889e-05,
443
+ "loss": 3.1551,
444
+ "step": 1984
445
+ },
446
+ {
447
+ "epoch": 0.24650185319628595,
448
+ "grad_norm": 0.252888947725296,
449
+ "learning_rate": 4.4361111111111113e-05,
450
+ "loss": 3.1563,
451
+ "step": 2016
452
+ },
453
+ {
454
+ "epoch": 0.25041458102479847,
455
+ "grad_norm": 0.28254494071006775,
456
+ "learning_rate": 4.4183333333333334e-05,
457
+ "loss": 3.156,
458
+ "step": 2048
459
+ },
460
+ {
461
+ "epoch": 0.2543273088533109,
462
+ "grad_norm": 0.28460440039634705,
463
+ "learning_rate": 4.4005555555555555e-05,
464
+ "loss": 3.156,
465
+ "step": 2080
466
+ },
467
+ {
468
+ "epoch": 0.2582400366818234,
469
+ "grad_norm": 0.290326863527298,
470
+ "learning_rate": 4.3827777777777776e-05,
471
+ "loss": 3.1518,
472
+ "step": 2112
473
+ },
474
+ {
475
+ "epoch": 0.26215276451033587,
476
+ "grad_norm": 0.2769670784473419,
477
+ "learning_rate": 4.3650000000000004e-05,
478
+ "loss": 3.1515,
479
+ "step": 2144
480
+ },
481
+ {
482
+ "epoch": 0.26606549233884835,
483
+ "grad_norm": 0.21678052842617035,
484
+ "learning_rate": 4.3472222222222225e-05,
485
+ "loss": 3.1518,
486
+ "step": 2176
487
+ },
488
+ {
489
+ "epoch": 0.26997822016736084,
490
+ "grad_norm": 0.3134085536003113,
491
+ "learning_rate": 4.3294444444444446e-05,
492
+ "loss": 3.1501,
493
+ "step": 2208
494
+ },
495
+ {
496
+ "epoch": 0.27389094799587327,
497
+ "grad_norm": 0.35099807381629944,
498
+ "learning_rate": 4.311666666666667e-05,
499
+ "loss": 3.1523,
500
+ "step": 2240
501
+ },
502
+ {
503
+ "epoch": 0.27780367582438575,
504
+ "grad_norm": 0.27320197224617004,
505
+ "learning_rate": 4.293888888888889e-05,
506
+ "loss": 3.1507,
507
+ "step": 2272
508
+ },
509
+ {
510
+ "epoch": 0.28171640365289824,
511
+ "grad_norm": 0.28096139430999756,
512
+ "learning_rate": 4.2761111111111115e-05,
513
+ "loss": 3.1474,
514
+ "step": 2304
515
+ },
516
+ {
517
+ "epoch": 0.2856291314814107,
518
+ "grad_norm": 0.30300965905189514,
519
+ "learning_rate": 4.2583333333333336e-05,
520
+ "loss": 3.15,
521
+ "step": 2336
522
+ },
523
+ {
524
+ "epoch": 0.2895418593099232,
525
+ "grad_norm": 0.2996535003185272,
526
+ "learning_rate": 4.240555555555556e-05,
527
+ "loss": 3.1528,
528
+ "step": 2368
529
+ },
530
+ {
531
+ "epoch": 0.2934545871384357,
532
+ "grad_norm": 0.2503749132156372,
533
+ "learning_rate": 4.222777777777778e-05,
534
+ "loss": 3.1522,
535
+ "step": 2400
536
+ },
537
+ {
538
+ "epoch": 0.2973673149669481,
539
+ "grad_norm": 0.2272900640964508,
540
+ "learning_rate": 4.205e-05,
541
+ "loss": 3.1472,
542
+ "step": 2432
543
+ },
544
+ {
545
+ "epoch": 0.3012800427954606,
546
+ "grad_norm": 0.2367839366197586,
547
+ "learning_rate": 4.1872222222222227e-05,
548
+ "loss": 3.1479,
549
+ "step": 2464
550
+ },
551
+ {
552
+ "epoch": 0.3051927706239731,
553
+ "grad_norm": 0.3656509220600128,
554
+ "learning_rate": 4.169444444444445e-05,
555
+ "loss": 3.1506,
556
+ "step": 2496
557
+ },
558
+ {
559
+ "epoch": 0.3091054984524856,
560
+ "grad_norm": 0.25474536418914795,
561
+ "learning_rate": 4.151666666666667e-05,
562
+ "loss": 3.1506,
563
+ "step": 2528
564
+ },
565
+ {
566
+ "epoch": 0.31301822628099807,
567
+ "grad_norm": 0.21729741990566254,
568
+ "learning_rate": 4.133888888888889e-05,
569
+ "loss": 3.1466,
570
+ "step": 2560
571
+ },
572
+ {
573
+ "epoch": 0.31693095410951055,
574
+ "grad_norm": 0.26999133825302124,
575
+ "learning_rate": 4.116111111111111e-05,
576
+ "loss": 3.1468,
577
+ "step": 2592
578
+ },
579
+ {
580
+ "epoch": 0.320843681938023,
581
+ "grad_norm": 0.2668827176094055,
582
+ "learning_rate": 4.098333333333334e-05,
583
+ "loss": 3.144,
584
+ "step": 2624
585
+ },
586
+ {
587
+ "epoch": 0.32475640976653547,
588
+ "grad_norm": 0.24051733314990997,
589
+ "learning_rate": 4.080555555555556e-05,
590
+ "loss": 3.1465,
591
+ "step": 2656
592
+ },
593
+ {
594
+ "epoch": 0.32866913759504796,
595
+ "grad_norm": 0.24717700481414795,
596
+ "learning_rate": 4.062777777777778e-05,
597
+ "loss": 3.1465,
598
+ "step": 2688
599
+ },
600
+ {
601
+ "epoch": 0.33258186542356044,
602
+ "grad_norm": 0.23907746374607086,
603
+ "learning_rate": 4.045000000000001e-05,
604
+ "loss": 3.1453,
605
+ "step": 2720
606
+ },
607
+ {
608
+ "epoch": 0.3364945932520729,
609
+ "grad_norm": 0.24447326362133026,
610
+ "learning_rate": 4.027222222222222e-05,
611
+ "loss": 3.1406,
612
+ "step": 2752
613
+ },
614
+ {
615
+ "epoch": 0.34040732108058536,
616
+ "grad_norm": 0.25871723890304565,
617
+ "learning_rate": 4.009444444444444e-05,
618
+ "loss": 3.1435,
619
+ "step": 2784
620
+ },
621
+ {
622
+ "epoch": 0.34432004890909784,
623
+ "grad_norm": 0.3173305094242096,
624
+ "learning_rate": 3.991666666666667e-05,
625
+ "loss": 3.1439,
626
+ "step": 2816
627
+ },
628
+ {
629
+ "epoch": 0.34823277673761033,
630
+ "grad_norm": 0.2715188264846802,
631
+ "learning_rate": 3.973888888888889e-05,
632
+ "loss": 3.1433,
633
+ "step": 2848
634
+ },
635
+ {
636
+ "epoch": 0.3521455045661228,
637
+ "grad_norm": 0.2764374315738678,
638
+ "learning_rate": 3.956111111111112e-05,
639
+ "loss": 3.1455,
640
+ "step": 2880
641
+ },
642
+ {
643
+ "epoch": 0.3560582323946353,
644
+ "grad_norm": 0.3014623522758484,
645
+ "learning_rate": 3.938333333333333e-05,
646
+ "loss": 3.1399,
647
+ "step": 2912
648
+ },
649
+ {
650
+ "epoch": 0.3599709602231478,
651
+ "grad_norm": 0.22385312616825104,
652
+ "learning_rate": 3.9205555555555554e-05,
653
+ "loss": 3.1426,
654
+ "step": 2944
655
+ },
656
+ {
657
+ "epoch": 0.3638836880516602,
658
+ "grad_norm": 0.22400549054145813,
659
+ "learning_rate": 3.902777777777778e-05,
660
+ "loss": 3.1393,
661
+ "step": 2976
662
+ },
663
+ {
664
+ "epoch": 0.3677964158801727,
665
+ "grad_norm": 0.266812801361084,
666
+ "learning_rate": 3.885e-05,
667
+ "loss": 3.1426,
668
+ "step": 3008
669
+ },
670
+ {
671
+ "epoch": 0.3717091437086852,
672
+ "grad_norm": 0.2830856442451477,
673
+ "learning_rate": 3.867222222222222e-05,
674
+ "loss": 3.14,
675
+ "step": 3040
676
+ },
677
+ {
678
+ "epoch": 0.37562187153719767,
679
+ "grad_norm": 0.2724515199661255,
680
+ "learning_rate": 3.8494444444444444e-05,
681
+ "loss": 3.1419,
682
+ "step": 3072
683
+ },
684
+ {
685
+ "epoch": 0.37953459936571016,
686
+ "grad_norm": 0.22998973727226257,
687
+ "learning_rate": 3.8316666666666665e-05,
688
+ "loss": 3.139,
689
+ "step": 3104
690
+ },
691
+ {
692
+ "epoch": 0.3834473271942226,
693
+ "grad_norm": 0.23931734263896942,
694
+ "learning_rate": 3.813888888888889e-05,
695
+ "loss": 3.1408,
696
+ "step": 3136
697
+ },
698
+ {
699
+ "epoch": 0.3873600550227351,
700
+ "grad_norm": 0.26907482743263245,
701
+ "learning_rate": 3.7961111111111114e-05,
702
+ "loss": 3.1374,
703
+ "step": 3168
704
+ },
705
+ {
706
+ "epoch": 0.39127278285124756,
707
+ "grad_norm": 0.24700401723384857,
708
+ "learning_rate": 3.7783333333333335e-05,
709
+ "loss": 3.137,
710
+ "step": 3200
711
+ },
712
+ {
713
+ "epoch": 0.39518551067976004,
714
+ "grad_norm": 0.2963546812534332,
715
+ "learning_rate": 3.7605555555555556e-05,
716
+ "loss": 3.1401,
717
+ "step": 3232
718
+ },
719
+ {
720
+ "epoch": 0.39909823850827253,
721
+ "grad_norm": 0.2659439444541931,
722
+ "learning_rate": 3.7427777777777777e-05,
723
+ "loss": 3.1387,
724
+ "step": 3264
725
+ },
726
+ {
727
+ "epoch": 0.403010966336785,
728
+ "grad_norm": 0.26796412467956543,
729
+ "learning_rate": 3.7250000000000004e-05,
730
+ "loss": 3.1403,
731
+ "step": 3296
732
+ },
733
+ {
734
+ "epoch": 0.40692369416529744,
735
+ "grad_norm": 0.29361388087272644,
736
+ "learning_rate": 3.7072222222222225e-05,
737
+ "loss": 3.1389,
738
+ "step": 3328
739
+ },
740
+ {
741
+ "epoch": 0.41083642199380993,
742
+ "grad_norm": 0.24953944981098175,
743
+ "learning_rate": 3.6894444444444446e-05,
744
+ "loss": 3.1402,
745
+ "step": 3360
746
+ },
747
+ {
748
+ "epoch": 0.4147491498223224,
749
+ "grad_norm": 0.23955155909061432,
750
+ "learning_rate": 3.671666666666667e-05,
751
+ "loss": 3.1377,
752
+ "step": 3392
753
+ },
754
+ {
755
+ "epoch": 0.4186618776508349,
756
+ "grad_norm": 0.22984126210212708,
757
+ "learning_rate": 3.653888888888889e-05,
758
+ "loss": 3.1375,
759
+ "step": 3424
760
+ },
761
+ {
762
+ "epoch": 0.4225746054793474,
763
+ "grad_norm": 0.2523467540740967,
764
+ "learning_rate": 3.6361111111111116e-05,
765
+ "loss": 3.1364,
766
+ "step": 3456
767
+ },
768
+ {
769
+ "epoch": 0.4264873333078598,
770
+ "grad_norm": 0.23315957188606262,
771
+ "learning_rate": 3.6183333333333336e-05,
772
+ "loss": 3.1389,
773
+ "step": 3488
774
+ },
775
+ {
776
+ "epoch": 0.4304000611363723,
777
+ "grad_norm": 0.22483432292938232,
778
+ "learning_rate": 3.600555555555556e-05,
779
+ "loss": 3.1357,
780
+ "step": 3520
781
+ },
782
+ {
783
+ "epoch": 0.4343127889648848,
784
+ "grad_norm": 0.23685774207115173,
785
+ "learning_rate": 3.582777777777778e-05,
786
+ "loss": 3.136,
787
+ "step": 3552
788
+ },
789
+ {
790
+ "epoch": 0.4382255167933973,
791
+ "grad_norm": 0.24475786089897156,
792
+ "learning_rate": 3.565e-05,
793
+ "loss": 3.1364,
794
+ "step": 3584
795
+ },
796
+ {
797
+ "epoch": 0.44213824462190976,
798
+ "grad_norm": 0.21655669808387756,
799
+ "learning_rate": 3.547222222222222e-05,
800
+ "loss": 3.1363,
801
+ "step": 3616
802
+ },
803
+ {
804
+ "epoch": 0.44605097245042225,
805
+ "grad_norm": 0.24810287356376648,
806
+ "learning_rate": 3.529444444444445e-05,
807
+ "loss": 3.1364,
808
+ "step": 3648
809
+ },
810
+ {
811
+ "epoch": 0.4499637002789347,
812
+ "grad_norm": 0.23016402125358582,
813
+ "learning_rate": 3.511666666666667e-05,
814
+ "loss": 3.1345,
815
+ "step": 3680
816
+ },
817
+ {
818
+ "epoch": 0.45387642810744716,
819
+ "grad_norm": 0.24041368067264557,
820
+ "learning_rate": 3.4938888888888896e-05,
821
+ "loss": 3.1389,
822
+ "step": 3712
823
+ },
824
+ {
825
+ "epoch": 0.45778915593595965,
826
+ "grad_norm": 0.237365260720253,
827
+ "learning_rate": 3.476111111111111e-05,
828
+ "loss": 3.1335,
829
+ "step": 3744
830
+ },
831
+ {
832
+ "epoch": 0.46170188376447213,
833
+ "grad_norm": 0.21840572357177734,
834
+ "learning_rate": 3.458333333333333e-05,
835
+ "loss": 3.1365,
836
+ "step": 3776
837
+ },
838
+ {
839
+ "epoch": 0.4656146115929846,
840
+ "grad_norm": 0.22491848468780518,
841
+ "learning_rate": 3.440555555555556e-05,
842
+ "loss": 3.1365,
843
+ "step": 3808
844
+ },
845
+ {
846
+ "epoch": 0.4695273394214971,
847
+ "grad_norm": 0.2349662482738495,
848
+ "learning_rate": 3.422777777777778e-05,
849
+ "loss": 3.1364,
850
+ "step": 3840
851
+ },
852
+ {
853
+ "epoch": 0.47344006725000953,
854
+ "grad_norm": 0.3244574964046478,
855
+ "learning_rate": 3.405e-05,
856
+ "loss": 3.1333,
857
+ "step": 3872
858
+ },
859
+ {
860
+ "epoch": 0.477352795078522,
861
+ "grad_norm": 0.20271480083465576,
862
+ "learning_rate": 3.387222222222222e-05,
863
+ "loss": 3.1337,
864
+ "step": 3904
865
+ },
866
+ {
867
+ "epoch": 0.4812655229070345,
868
+ "grad_norm": 0.22787164151668549,
869
+ "learning_rate": 3.369444444444444e-05,
870
+ "loss": 3.1359,
871
+ "step": 3936
872
+ },
873
+ {
874
+ "epoch": 0.485178250735547,
875
+ "grad_norm": 0.2814686894416809,
876
+ "learning_rate": 3.351666666666667e-05,
877
+ "loss": 3.1344,
878
+ "step": 3968
879
+ },
880
+ {
881
+ "epoch": 0.4890909785640595,
882
+ "grad_norm": 0.20366469025611877,
883
+ "learning_rate": 3.333888888888889e-05,
884
+ "loss": 3.1342,
885
+ "step": 4000
886
+ },
887
+ {
888
+ "epoch": 0.4930037063925719,
889
+ "grad_norm": 0.2670027017593384,
890
+ "learning_rate": 3.316111111111111e-05,
891
+ "loss": 3.1319,
892
+ "step": 4032
893
+ },
894
+ {
895
+ "epoch": 0.4969164342210844,
896
+ "grad_norm": 0.2204466164112091,
897
+ "learning_rate": 3.298333333333333e-05,
898
+ "loss": 3.1328,
899
+ "step": 4064
900
+ },
901
+ {
902
+ "epoch": 0.5008291620495969,
903
+ "grad_norm": 0.2765197157859802,
904
+ "learning_rate": 3.2805555555555554e-05,
905
+ "loss": 3.132,
906
+ "step": 4096
907
+ },
908
+ {
909
+ "epoch": 0.5047418898781093,
910
+ "grad_norm": 0.2624960243701935,
911
+ "learning_rate": 3.262777777777778e-05,
912
+ "loss": 3.1348,
913
+ "step": 4128
914
+ },
915
+ {
916
+ "epoch": 0.5086546177066218,
917
+ "grad_norm": 0.2254333347082138,
918
+ "learning_rate": 3.245e-05,
919
+ "loss": 3.1327,
920
+ "step": 4160
921
+ },
922
+ {
923
+ "epoch": 0.5125673455351343,
924
+ "grad_norm": 0.25047773122787476,
925
+ "learning_rate": 3.2272222222222224e-05,
926
+ "loss": 3.1318,
927
+ "step": 4192
928
+ },
929
+ {
930
+ "epoch": 0.5164800733636468,
931
+ "grad_norm": 0.23816271126270294,
932
+ "learning_rate": 3.2094444444444445e-05,
933
+ "loss": 3.1331,
934
+ "step": 4224
935
+ },
936
+ {
937
+ "epoch": 0.5203928011921592,
938
+ "grad_norm": 0.22233732044696808,
939
+ "learning_rate": 3.1916666666666665e-05,
940
+ "loss": 3.1315,
941
+ "step": 4256
942
+ },
943
+ {
944
+ "epoch": 0.5243055290206717,
945
+ "grad_norm": 0.25133851170539856,
946
+ "learning_rate": 3.173888888888889e-05,
947
+ "loss": 3.1333,
948
+ "step": 4288
949
+ },
950
+ {
951
+ "epoch": 0.5282182568491842,
952
+ "grad_norm": 0.21504898369312286,
953
+ "learning_rate": 3.1561111111111114e-05,
954
+ "loss": 3.1332,
955
+ "step": 4320
956
+ },
957
+ {
958
+ "epoch": 0.5321309846776967,
959
+ "grad_norm": 0.2872157394886017,
960
+ "learning_rate": 3.1383333333333335e-05,
961
+ "loss": 3.1303,
962
+ "step": 4352
963
+ },
964
+ {
965
+ "epoch": 0.5360437125062092,
966
+ "grad_norm": 0.244154691696167,
967
+ "learning_rate": 3.1205555555555556e-05,
968
+ "loss": 3.1323,
969
+ "step": 4384
970
+ },
971
+ {
972
+ "epoch": 0.5399564403347217,
973
+ "grad_norm": 0.24791453778743744,
974
+ "learning_rate": 3.102777777777778e-05,
975
+ "loss": 3.1312,
976
+ "step": 4416
977
+ },
978
+ {
979
+ "epoch": 0.5438691681632342,
980
+ "grad_norm": 0.2378605306148529,
981
+ "learning_rate": 3.0850000000000004e-05,
982
+ "loss": 3.1309,
983
+ "step": 4448
984
+ },
985
+ {
986
+ "epoch": 0.5477818959917465,
987
+ "grad_norm": 0.21514585614204407,
988
+ "learning_rate": 3.0672222222222225e-05,
989
+ "loss": 3.1244,
990
+ "step": 4480
991
+ },
992
+ {
993
+ "epoch": 0.551694623820259,
994
+ "grad_norm": 0.22684329748153687,
995
+ "learning_rate": 3.0494444444444446e-05,
996
+ "loss": 3.1297,
997
+ "step": 4512
998
+ },
999
+ {
1000
+ "epoch": 0.5556073516487715,
1001
+ "grad_norm": 0.21271203458309174,
1002
+ "learning_rate": 3.0316666666666664e-05,
1003
+ "loss": 3.1286,
1004
+ "step": 4544
1005
+ },
1006
+ {
1007
+ "epoch": 0.559520079477284,
1008
+ "grad_norm": 0.22873900830745697,
1009
+ "learning_rate": 3.0138888888888888e-05,
1010
+ "loss": 3.1262,
1011
+ "step": 4576
1012
+ },
1013
+ {
1014
+ "epoch": 0.5634328073057965,
1015
+ "grad_norm": 0.24229228496551514,
1016
+ "learning_rate": 2.9961111111111112e-05,
1017
+ "loss": 3.1312,
1018
+ "step": 4608
1019
+ },
1020
+ {
1021
+ "epoch": 0.567345535134309,
1022
+ "grad_norm": 0.2754037380218506,
1023
+ "learning_rate": 2.9783333333333337e-05,
1024
+ "loss": 3.1296,
1025
+ "step": 4640
1026
+ },
1027
+ {
1028
+ "epoch": 0.5712582629628215,
1029
+ "grad_norm": 0.20053815841674805,
1030
+ "learning_rate": 2.9605555555555558e-05,
1031
+ "loss": 3.128,
1032
+ "step": 4672
1033
+ },
1034
+ {
1035
+ "epoch": 0.5751709907913339,
1036
+ "grad_norm": 0.24577876925468445,
1037
+ "learning_rate": 2.9427777777777782e-05,
1038
+ "loss": 3.1302,
1039
+ "step": 4704
1040
+ },
1041
+ {
1042
+ "epoch": 0.5790837186198464,
1043
+ "grad_norm": 0.2547786235809326,
1044
+ "learning_rate": 2.925e-05,
1045
+ "loss": 3.1263,
1046
+ "step": 4736
1047
+ },
1048
+ {
1049
+ "epoch": 0.5829964464483589,
1050
+ "grad_norm": 0.18451441824436188,
1051
+ "learning_rate": 2.9072222222222224e-05,
1052
+ "loss": 3.1282,
1053
+ "step": 4768
1054
+ },
1055
+ {
1056
+ "epoch": 0.5869091742768714,
1057
+ "grad_norm": 0.21002881228923798,
1058
+ "learning_rate": 2.8894444444444445e-05,
1059
+ "loss": 3.1271,
1060
+ "step": 4800
1061
+ },
1062
+ {
1063
+ "epoch": 0.5908219021053838,
1064
+ "grad_norm": 0.21180187165737152,
1065
+ "learning_rate": 2.871666666666667e-05,
1066
+ "loss": 3.1272,
1067
+ "step": 4832
1068
+ },
1069
+ {
1070
+ "epoch": 0.5947346299338963,
1071
+ "grad_norm": 0.2123003453016281,
1072
+ "learning_rate": 2.8538888888888893e-05,
1073
+ "loss": 3.1285,
1074
+ "step": 4864
1075
+ },
1076
+ {
1077
+ "epoch": 0.5986473577624087,
1078
+ "grad_norm": 0.20064932107925415,
1079
+ "learning_rate": 2.836111111111111e-05,
1080
+ "loss": 3.1289,
1081
+ "step": 4896
1082
+ },
1083
+ {
1084
+ "epoch": 0.6025600855909212,
1085
+ "grad_norm": 0.19583889842033386,
1086
+ "learning_rate": 2.8183333333333335e-05,
1087
+ "loss": 3.128,
1088
+ "step": 4928
1089
+ },
1090
+ {
1091
+ "epoch": 0.6064728134194337,
1092
+ "grad_norm": 0.1817025989294052,
1093
+ "learning_rate": 2.8005555555555556e-05,
1094
+ "loss": 3.1263,
1095
+ "step": 4960
1096
+ },
1097
+ {
1098
+ "epoch": 0.6103855412479462,
1099
+ "grad_norm": 0.18323124945163727,
1100
+ "learning_rate": 2.782777777777778e-05,
1101
+ "loss": 3.1276,
1102
+ "step": 4992
1103
+ },
1104
+ {
1105
+ "epoch": 0.6142982690764587,
1106
+ "grad_norm": 0.21348968148231506,
1107
+ "learning_rate": 2.7650000000000005e-05,
1108
+ "loss": 3.1262,
1109
+ "step": 5024
1110
+ },
1111
+ {
1112
+ "epoch": 0.6182109969049712,
1113
+ "grad_norm": 0.24803143739700317,
1114
+ "learning_rate": 2.7472222222222222e-05,
1115
+ "loss": 3.1278,
1116
+ "step": 5056
1117
+ },
1118
+ {
1119
+ "epoch": 0.6221237247334837,
1120
+ "grad_norm": 0.27887552976608276,
1121
+ "learning_rate": 2.7294444444444443e-05,
1122
+ "loss": 3.1261,
1123
+ "step": 5088
1124
+ },
1125
+ {
1126
+ "epoch": 0.6260364525619961,
1127
+ "grad_norm": 0.20992670953273773,
1128
+ "learning_rate": 2.7116666666666667e-05,
1129
+ "loss": 3.1248,
1130
+ "step": 5120
1131
+ },
1132
+ {
1133
+ "epoch": 0.6299491803905086,
1134
+ "grad_norm": 0.20632390677928925,
1135
+ "learning_rate": 2.693888888888889e-05,
1136
+ "loss": 3.1295,
1137
+ "step": 5152
1138
+ },
1139
+ {
1140
+ "epoch": 0.6338619082190211,
1141
+ "grad_norm": 0.22720162570476532,
1142
+ "learning_rate": 2.6761111111111116e-05,
1143
+ "loss": 3.124,
1144
+ "step": 5184
1145
+ },
1146
+ {
1147
+ "epoch": 0.6377746360475335,
1148
+ "grad_norm": 0.20604351162910461,
1149
+ "learning_rate": 2.6583333333333333e-05,
1150
+ "loss": 3.1246,
1151
+ "step": 5216
1152
+ },
1153
+ {
1154
+ "epoch": 0.641687363876046,
1155
+ "grad_norm": 0.21567173302173615,
1156
+ "learning_rate": 2.6405555555555554e-05,
1157
+ "loss": 3.1266,
1158
+ "step": 5248
1159
+ },
1160
+ {
1161
+ "epoch": 0.6456000917045585,
1162
+ "grad_norm": 0.22443106770515442,
1163
+ "learning_rate": 2.622777777777778e-05,
1164
+ "loss": 3.1265,
1165
+ "step": 5280
1166
+ },
1167
+ {
1168
+ "epoch": 0.6495128195330709,
1169
+ "grad_norm": 0.2323237955570221,
1170
+ "learning_rate": 2.6050000000000003e-05,
1171
+ "loss": 3.1214,
1172
+ "step": 5312
1173
+ },
1174
+ {
1175
+ "epoch": 0.6534255473615834,
1176
+ "grad_norm": 0.21166770160198212,
1177
+ "learning_rate": 2.5872222222222224e-05,
1178
+ "loss": 3.125,
1179
+ "step": 5344
1180
+ },
1181
+ {
1182
+ "epoch": 0.6573382751900959,
1183
+ "grad_norm": 0.21922937035560608,
1184
+ "learning_rate": 2.5694444444444445e-05,
1185
+ "loss": 3.1236,
1186
+ "step": 5376
1187
+ },
1188
+ {
1189
+ "epoch": 0.6612510030186084,
1190
+ "grad_norm": 0.19853883981704712,
1191
+ "learning_rate": 2.5516666666666666e-05,
1192
+ "loss": 3.1256,
1193
+ "step": 5408
1194
+ },
1195
+ {
1196
+ "epoch": 0.6651637308471209,
1197
+ "grad_norm": 0.22357633709907532,
1198
+ "learning_rate": 2.533888888888889e-05,
1199
+ "loss": 3.1257,
1200
+ "step": 5440
1201
+ },
1202
+ {
1203
+ "epoch": 0.6690764586756334,
1204
+ "grad_norm": 0.22123898565769196,
1205
+ "learning_rate": 2.5161111111111114e-05,
1206
+ "loss": 3.1265,
1207
+ "step": 5472
1208
+ },
1209
+ {
1210
+ "epoch": 0.6729891865041459,
1211
+ "grad_norm": 0.20758691430091858,
1212
+ "learning_rate": 2.4983333333333335e-05,
1213
+ "loss": 3.1244,
1214
+ "step": 5504
1215
+ },
1216
+ {
1217
+ "epoch": 0.6769019143326583,
1218
+ "grad_norm": 0.19084863364696503,
1219
+ "learning_rate": 2.4805555555555556e-05,
1220
+ "loss": 3.124,
1221
+ "step": 5536
1222
+ },
1223
+ {
1224
+ "epoch": 0.6808146421611707,
1225
+ "grad_norm": 0.21082304418087006,
1226
+ "learning_rate": 2.462777777777778e-05,
1227
+ "loss": 3.1247,
1228
+ "step": 5568
1229
+ },
1230
+ {
1231
+ "epoch": 0.6847273699896832,
1232
+ "grad_norm": 0.19547946751117706,
1233
+ "learning_rate": 2.445e-05,
1234
+ "loss": 3.1254,
1235
+ "step": 5600
1236
+ },
1237
+ {
1238
+ "epoch": 0.6886400978181957,
1239
+ "grad_norm": 0.20289190113544464,
1240
+ "learning_rate": 2.4272222222222222e-05,
1241
+ "loss": 3.1274,
1242
+ "step": 5632
1243
+ },
1244
+ {
1245
+ "epoch": 0.6925528256467082,
1246
+ "grad_norm": 0.21069744229316711,
1247
+ "learning_rate": 2.4094444444444443e-05,
1248
+ "loss": 3.1235,
1249
+ "step": 5664
1250
+ },
1251
+ {
1252
+ "epoch": 0.6964655534752207,
1253
+ "grad_norm": 0.20337700843811035,
1254
+ "learning_rate": 2.3916666666666668e-05,
1255
+ "loss": 3.1253,
1256
+ "step": 5696
1257
+ },
1258
+ {
1259
+ "epoch": 0.7003782813037331,
1260
+ "grad_norm": 0.2150067836046219,
1261
+ "learning_rate": 2.3738888888888892e-05,
1262
+ "loss": 3.1255,
1263
+ "step": 5728
1264
+ },
1265
+ {
1266
+ "epoch": 0.7042910091322456,
1267
+ "grad_norm": 0.1990475058555603,
1268
+ "learning_rate": 2.3561111111111113e-05,
1269
+ "loss": 3.1247,
1270
+ "step": 5760
1271
+ },
1272
+ {
1273
+ "epoch": 0.7082037369607581,
1274
+ "grad_norm": 0.20272456109523773,
1275
+ "learning_rate": 2.3383333333333334e-05,
1276
+ "loss": 3.1235,
1277
+ "step": 5792
1278
+ },
1279
+ {
1280
+ "epoch": 0.7121164647892706,
1281
+ "grad_norm": 0.21050025522708893,
1282
+ "learning_rate": 2.3205555555555555e-05,
1283
+ "loss": 3.1226,
1284
+ "step": 5824
1285
+ },
1286
+ {
1287
+ "epoch": 0.7160291926177831,
1288
+ "grad_norm": 0.2530113160610199,
1289
+ "learning_rate": 2.302777777777778e-05,
1290
+ "loss": 3.1242,
1291
+ "step": 5856
1292
+ },
1293
+ {
1294
+ "epoch": 0.7199419204462956,
1295
+ "grad_norm": 0.2530890703201294,
1296
+ "learning_rate": 2.2850000000000003e-05,
1297
+ "loss": 3.1215,
1298
+ "step": 5888
1299
+ },
1300
+ {
1301
+ "epoch": 0.7238546482748079,
1302
+ "grad_norm": 0.19028717279434204,
1303
+ "learning_rate": 2.2672222222222224e-05,
1304
+ "loss": 3.1236,
1305
+ "step": 5920
1306
+ },
1307
+ {
1308
+ "epoch": 0.7277673761033204,
1309
+ "grad_norm": 0.20547839999198914,
1310
+ "learning_rate": 2.2494444444444445e-05,
1311
+ "loss": 3.1225,
1312
+ "step": 5952
1313
+ },
1314
+ {
1315
+ "epoch": 0.7316801039318329,
1316
+ "grad_norm": 0.19479484856128693,
1317
+ "learning_rate": 2.231666666666667e-05,
1318
+ "loss": 3.1248,
1319
+ "step": 5984
1320
+ },
1321
+ {
1322
+ "epoch": 0.7355928317603454,
1323
+ "grad_norm": 0.2140408456325531,
1324
+ "learning_rate": 2.213888888888889e-05,
1325
+ "loss": 3.1237,
1326
+ "step": 6016
1327
+ },
1328
+ {
1329
+ "epoch": 0.7395055595888579,
1330
+ "grad_norm": 0.17809583246707916,
1331
+ "learning_rate": 2.1961111111111114e-05,
1332
+ "loss": 3.1243,
1333
+ "step": 6048
1334
+ },
1335
+ {
1336
+ "epoch": 0.7434182874173704,
1337
+ "grad_norm": 0.19468888640403748,
1338
+ "learning_rate": 2.1783333333333332e-05,
1339
+ "loss": 3.1246,
1340
+ "step": 6080
1341
+ },
1342
+ {
1343
+ "epoch": 0.7473310152458829,
1344
+ "grad_norm": 0.2106105089187622,
1345
+ "learning_rate": 2.1605555555555556e-05,
1346
+ "loss": 3.1224,
1347
+ "step": 6112
1348
+ },
1349
+ {
1350
+ "epoch": 0.7512437430743953,
1351
+ "grad_norm": 0.20489418506622314,
1352
+ "learning_rate": 2.142777777777778e-05,
1353
+ "loss": 3.1237,
1354
+ "step": 6144
1355
+ },
1356
+ {
1357
+ "epoch": 0.7551564709029078,
1358
+ "grad_norm": 0.2453160136938095,
1359
+ "learning_rate": 2.125e-05,
1360
+ "loss": 3.1212,
1361
+ "step": 6176
1362
+ },
1363
+ {
1364
+ "epoch": 0.7590691987314203,
1365
+ "grad_norm": 0.2121828943490982,
1366
+ "learning_rate": 2.1072222222222222e-05,
1367
+ "loss": 3.1192,
1368
+ "step": 6208
1369
+ },
1370
+ {
1371
+ "epoch": 0.7629819265599328,
1372
+ "grad_norm": 0.18198275566101074,
1373
+ "learning_rate": 2.0894444444444443e-05,
1374
+ "loss": 3.1213,
1375
+ "step": 6240
1376
+ },
1377
+ {
1378
+ "epoch": 0.7668946543884452,
1379
+ "grad_norm": 0.1795693039894104,
1380
+ "learning_rate": 2.0716666666666668e-05,
1381
+ "loss": 3.1201,
1382
+ "step": 6272
1383
+ },
1384
+ {
1385
+ "epoch": 0.7708073822169577,
1386
+ "grad_norm": 0.24014544486999512,
1387
+ "learning_rate": 2.0538888888888892e-05,
1388
+ "loss": 3.122,
1389
+ "step": 6304
1390
+ },
1391
+ {
1392
+ "epoch": 0.7747201100454701,
1393
+ "grad_norm": 0.20040743052959442,
1394
+ "learning_rate": 2.0361111111111113e-05,
1395
+ "loss": 3.1207,
1396
+ "step": 6336
1397
+ },
1398
+ {
1399
+ "epoch": 0.7786328378739826,
1400
+ "grad_norm": 0.2076857089996338,
1401
+ "learning_rate": 2.0183333333333334e-05,
1402
+ "loss": 3.1245,
1403
+ "step": 6368
1404
+ },
1405
+ {
1406
+ "epoch": 0.7825455657024951,
1407
+ "grad_norm": 0.19411978125572205,
1408
+ "learning_rate": 2.0005555555555555e-05,
1409
+ "loss": 3.1216,
1410
+ "step": 6400
1411
+ },
1412
+ {
1413
+ "epoch": 0.7864582935310076,
1414
+ "grad_norm": 0.17701873183250427,
1415
+ "learning_rate": 1.982777777777778e-05,
1416
+ "loss": 3.1228,
1417
+ "step": 6432
1418
+ },
1419
+ {
1420
+ "epoch": 0.7903710213595201,
1421
+ "grad_norm": 0.19787663221359253,
1422
+ "learning_rate": 1.9650000000000003e-05,
1423
+ "loss": 3.122,
1424
+ "step": 6464
1425
+ },
1426
+ {
1427
+ "epoch": 0.7942837491880326,
1428
+ "grad_norm": 0.18991973996162415,
1429
+ "learning_rate": 1.947222222222222e-05,
1430
+ "loss": 3.1211,
1431
+ "step": 6496
1432
+ },
1433
+ {
1434
+ "epoch": 0.7981964770165451,
1435
+ "grad_norm": 0.18508349359035492,
1436
+ "learning_rate": 1.9294444444444445e-05,
1437
+ "loss": 3.1211,
1438
+ "step": 6528
1439
+ },
1440
+ {
1441
+ "epoch": 0.8021092048450575,
1442
+ "grad_norm": 0.17648939788341522,
1443
+ "learning_rate": 1.911666666666667e-05,
1444
+ "loss": 3.1237,
1445
+ "step": 6560
1446
+ },
1447
+ {
1448
+ "epoch": 0.80602193267357,
1449
+ "grad_norm": 0.20672652125358582,
1450
+ "learning_rate": 1.893888888888889e-05,
1451
+ "loss": 3.1213,
1452
+ "step": 6592
1453
+ },
1454
+ {
1455
+ "epoch": 0.8099346605020824,
1456
+ "grad_norm": 0.21490968763828278,
1457
+ "learning_rate": 1.876111111111111e-05,
1458
+ "loss": 3.1201,
1459
+ "step": 6624
1460
+ },
1461
+ {
1462
+ "epoch": 0.8138473883305949,
1463
+ "grad_norm": 0.20175087451934814,
1464
+ "learning_rate": 1.8583333333333332e-05,
1465
+ "loss": 3.1184,
1466
+ "step": 6656
1467
+ },
1468
+ {
1469
+ "epoch": 0.8177601161591074,
1470
+ "grad_norm": 0.17700786888599396,
1471
+ "learning_rate": 1.8405555555555556e-05,
1472
+ "loss": 3.1194,
1473
+ "step": 6688
1474
+ },
1475
+ {
1476
+ "epoch": 0.8216728439876199,
1477
+ "grad_norm": 0.19697381556034088,
1478
+ "learning_rate": 1.822777777777778e-05,
1479
+ "loss": 3.1208,
1480
+ "step": 6720
1481
+ },
1482
+ {
1483
+ "epoch": 0.8255855718161323,
1484
+ "grad_norm": 0.19516746699810028,
1485
+ "learning_rate": 1.805e-05,
1486
+ "loss": 3.122,
1487
+ "step": 6752
1488
+ },
1489
+ {
1490
+ "epoch": 0.8294982996446448,
1491
+ "grad_norm": 0.19233250617980957,
1492
+ "learning_rate": 1.7872222222222223e-05,
1493
+ "loss": 3.1237,
1494
+ "step": 6784
1495
+ },
1496
+ {
1497
+ "epoch": 0.8334110274731573,
1498
+ "grad_norm": 0.20740792155265808,
1499
+ "learning_rate": 1.7694444444444443e-05,
1500
+ "loss": 3.1227,
1501
+ "step": 6816
1502
+ },
1503
+ {
1504
+ "epoch": 0.8373237553016698,
1505
+ "grad_norm": 0.18789739906787872,
1506
+ "learning_rate": 1.7516666666666668e-05,
1507
+ "loss": 3.1198,
1508
+ "step": 6848
1509
+ },
1510
+ {
1511
+ "epoch": 0.8412364831301823,
1512
+ "grad_norm": 0.17981740832328796,
1513
+ "learning_rate": 1.7338888888888892e-05,
1514
+ "loss": 3.121,
1515
+ "step": 6880
1516
+ },
1517
+ {
1518
+ "epoch": 0.8451492109586948,
1519
+ "grad_norm": 0.2110264003276825,
1520
+ "learning_rate": 1.716111111111111e-05,
1521
+ "loss": 3.1186,
1522
+ "step": 6912
1523
+ },
1524
+ {
1525
+ "epoch": 0.8490619387872073,
1526
+ "grad_norm": 0.19858282804489136,
1527
+ "learning_rate": 1.6983333333333334e-05,
1528
+ "loss": 3.1236,
1529
+ "step": 6944
1530
+ },
1531
+ {
1532
+ "epoch": 0.8529746666157196,
1533
+ "grad_norm": 0.17566311359405518,
1534
+ "learning_rate": 1.6805555555555558e-05,
1535
+ "loss": 3.1225,
1536
+ "step": 6976
1537
+ },
1538
+ {
1539
+ "epoch": 0.8568873944442321,
1540
+ "grad_norm": 0.19274671375751495,
1541
+ "learning_rate": 1.662777777777778e-05,
1542
+ "loss": 3.1197,
1543
+ "step": 7008
1544
+ },
1545
+ {
1546
+ "epoch": 0.8608001222727446,
1547
+ "grad_norm": 0.20043255388736725,
1548
+ "learning_rate": 1.645e-05,
1549
+ "loss": 3.1221,
1550
+ "step": 7040
1551
+ },
1552
+ {
1553
+ "epoch": 0.8647128501012571,
1554
+ "grad_norm": 0.17369119822978973,
1555
+ "learning_rate": 1.627222222222222e-05,
1556
+ "loss": 3.119,
1557
+ "step": 7072
1558
+ },
1559
+ {
1560
+ "epoch": 0.8686255779297696,
1561
+ "grad_norm": 0.18795572221279144,
1562
+ "learning_rate": 1.6094444444444445e-05,
1563
+ "loss": 3.116,
1564
+ "step": 7104
1565
+ },
1566
+ {
1567
+ "epoch": 0.8725383057582821,
1568
+ "grad_norm": 0.20084317028522491,
1569
+ "learning_rate": 1.591666666666667e-05,
1570
+ "loss": 3.1164,
1571
+ "step": 7136
1572
+ },
1573
+ {
1574
+ "epoch": 0.8764510335867945,
1575
+ "grad_norm": 0.1732749342918396,
1576
+ "learning_rate": 1.573888888888889e-05,
1577
+ "loss": 3.1184,
1578
+ "step": 7168
1579
+ },
1580
+ {
1581
+ "epoch": 0.880363761415307,
1582
+ "grad_norm": 0.18775592744350433,
1583
+ "learning_rate": 1.556111111111111e-05,
1584
+ "loss": 3.1186,
1585
+ "step": 7200
1586
+ },
1587
+ {
1588
+ "epoch": 0.8842764892438195,
1589
+ "grad_norm": 0.1810338944196701,
1590
+ "learning_rate": 1.5383333333333332e-05,
1591
+ "loss": 3.1211,
1592
+ "step": 7232
1593
+ },
1594
+ {
1595
+ "epoch": 0.888189217072332,
1596
+ "grad_norm": 0.17264607548713684,
1597
+ "learning_rate": 1.5205555555555557e-05,
1598
+ "loss": 3.115,
1599
+ "step": 7264
1600
+ },
1601
+ {
1602
+ "epoch": 0.8921019449008445,
1603
+ "grad_norm": 0.18331947922706604,
1604
+ "learning_rate": 1.502777777777778e-05,
1605
+ "loss": 3.1176,
1606
+ "step": 7296
1607
+ },
1608
+ {
1609
+ "epoch": 0.896014672729357,
1610
+ "grad_norm": 0.1883401870727539,
1611
+ "learning_rate": 1.485e-05,
1612
+ "loss": 3.1194,
1613
+ "step": 7328
1614
+ },
1615
+ {
1616
+ "epoch": 0.8999274005578694,
1617
+ "grad_norm": 0.17407892644405365,
1618
+ "learning_rate": 1.4672222222222223e-05,
1619
+ "loss": 3.1188,
1620
+ "step": 7360
1621
+ },
1622
+ {
1623
+ "epoch": 0.9038401283863818,
1624
+ "grad_norm": 0.1941099464893341,
1625
+ "learning_rate": 1.4494444444444444e-05,
1626
+ "loss": 3.1211,
1627
+ "step": 7392
1628
+ },
1629
+ {
1630
+ "epoch": 0.9077528562148943,
1631
+ "grad_norm": 0.17381389439105988,
1632
+ "learning_rate": 1.4316666666666668e-05,
1633
+ "loss": 3.1194,
1634
+ "step": 7424
1635
+ },
1636
+ {
1637
+ "epoch": 0.9116655840434068,
1638
+ "grad_norm": 0.18369047343730927,
1639
+ "learning_rate": 1.413888888888889e-05,
1640
+ "loss": 3.1165,
1641
+ "step": 7456
1642
+ },
1643
+ {
1644
+ "epoch": 0.9155783118719193,
1645
+ "grad_norm": 0.17392371594905853,
1646
+ "learning_rate": 1.3961111111111111e-05,
1647
+ "loss": 3.1165,
1648
+ "step": 7488
1649
+ },
1650
+ {
1651
+ "epoch": 0.9194910397004318,
1652
+ "grad_norm": 0.17337463796138763,
1653
+ "learning_rate": 1.3783333333333334e-05,
1654
+ "loss": 3.1192,
1655
+ "step": 7520
1656
+ },
1657
+ {
1658
+ "epoch": 0.9234037675289443,
1659
+ "grad_norm": 0.1813974380493164,
1660
+ "learning_rate": 1.3605555555555557e-05,
1661
+ "loss": 3.1158,
1662
+ "step": 7552
1663
+ },
1664
+ {
1665
+ "epoch": 0.9273164953574567,
1666
+ "grad_norm": 0.1770683377981186,
1667
+ "learning_rate": 1.3427777777777778e-05,
1668
+ "loss": 3.1173,
1669
+ "step": 7584
1670
+ },
1671
+ {
1672
+ "epoch": 0.9312292231859692,
1673
+ "grad_norm": 0.18390090763568878,
1674
+ "learning_rate": 1.3250000000000002e-05,
1675
+ "loss": 3.1211,
1676
+ "step": 7616
1677
+ },
1678
+ {
1679
+ "epoch": 0.9351419510144817,
1680
+ "grad_norm": 0.17356765270233154,
1681
+ "learning_rate": 1.3072222222222221e-05,
1682
+ "loss": 3.1187,
1683
+ "step": 7648
1684
+ },
1685
+ {
1686
+ "epoch": 0.9390546788429942,
1687
+ "grad_norm": 0.173334538936615,
1688
+ "learning_rate": 1.2894444444444445e-05,
1689
+ "loss": 3.1191,
1690
+ "step": 7680
1691
+ },
1692
+ {
1693
+ "epoch": 0.9429674066715066,
1694
+ "grad_norm": 0.18598856031894684,
1695
+ "learning_rate": 1.2716666666666668e-05,
1696
+ "loss": 3.1192,
1697
+ "step": 7712
1698
+ },
1699
+ {
1700
+ "epoch": 0.9468801345000191,
1701
+ "grad_norm": 0.1667858213186264,
1702
+ "learning_rate": 1.2538888888888889e-05,
1703
+ "loss": 3.1173,
1704
+ "step": 7744
1705
+ },
1706
+ {
1707
+ "epoch": 0.9507928623285316,
1708
+ "grad_norm": 0.17433424293994904,
1709
+ "learning_rate": 1.2361111111111112e-05,
1710
+ "loss": 3.1184,
1711
+ "step": 7776
1712
+ },
1713
+ {
1714
+ "epoch": 0.954705590157044,
1715
+ "grad_norm": 0.1921132653951645,
1716
+ "learning_rate": 1.2183333333333334e-05,
1717
+ "loss": 3.119,
1718
+ "step": 7808
1719
+ },
1720
+ {
1721
+ "epoch": 0.9586183179855565,
1722
+ "grad_norm": 0.16437648236751556,
1723
+ "learning_rate": 1.2005555555555557e-05,
1724
+ "loss": 3.1179,
1725
+ "step": 7840
1726
+ },
1727
+ {
1728
+ "epoch": 0.962531045814069,
1729
+ "grad_norm": 0.17323090136051178,
1730
+ "learning_rate": 1.1827777777777778e-05,
1731
+ "loss": 3.1192,
1732
+ "step": 7872
1733
+ },
1734
+ {
1735
+ "epoch": 0.9664437736425815,
1736
+ "grad_norm": 0.16646146774291992,
1737
+ "learning_rate": 1.1650000000000002e-05,
1738
+ "loss": 3.1176,
1739
+ "step": 7904
1740
+ },
1741
+ {
1742
+ "epoch": 0.970356501471094,
1743
+ "grad_norm": 0.18198241293430328,
1744
+ "learning_rate": 1.1472222222222223e-05,
1745
+ "loss": 3.1178,
1746
+ "step": 7936
1747
+ },
1748
+ {
1749
+ "epoch": 0.9742692292996065,
1750
+ "grad_norm": 0.17490531504154205,
1751
+ "learning_rate": 1.1294444444444445e-05,
1752
+ "loss": 3.1161,
1753
+ "step": 7968
1754
+ },
1755
+ {
1756
+ "epoch": 0.978181957128119,
1757
+ "grad_norm": 0.17505322396755219,
1758
+ "learning_rate": 1.1116666666666666e-05,
1759
+ "loss": 3.1213,
1760
+ "step": 8000
1761
+ },
1762
+ {
1763
+ "epoch": 0.9820946849566314,
1764
+ "grad_norm": 0.17005711793899536,
1765
+ "learning_rate": 1.0938888888888889e-05,
1766
+ "loss": 3.1187,
1767
+ "step": 8032
1768
+ },
1769
+ {
1770
+ "epoch": 0.9860074127851438,
1771
+ "grad_norm": 0.18125712871551514,
1772
+ "learning_rate": 1.0761111111111112e-05,
1773
+ "loss": 3.12,
1774
+ "step": 8064
1775
+ },
1776
+ {
1777
+ "epoch": 0.9899201406136563,
1778
+ "grad_norm": 0.17013822495937347,
1779
+ "learning_rate": 1.0583333333333334e-05,
1780
+ "loss": 3.1157,
1781
+ "step": 8096
1782
+ },
1783
+ {
1784
+ "epoch": 0.9938328684421688,
1785
+ "grad_norm": 0.1698048710823059,
1786
+ "learning_rate": 1.0405555555555555e-05,
1787
+ "loss": 3.1172,
1788
+ "step": 8128
1789
+ },
1790
+ {
1791
+ "epoch": 0.9977455962706813,
1792
+ "grad_norm": 0.17143802344799042,
1793
+ "learning_rate": 1.0227777777777778e-05,
1794
+ "loss": 3.1153,
1795
+ "step": 8160
1796
+ },
1797
+ {
1798
+ "epoch": 1.0015895456803332,
1799
+ "grad_norm": 0.1739780455827713,
1800
+ "learning_rate": 1.005e-05,
1801
+ "loss": 3.1163,
1802
+ "step": 8192
1803
+ },
1804
+ {
1805
+ "epoch": 1.0055022735088457,
1806
+ "grad_norm": 0.17907440662384033,
1807
+ "learning_rate": 9.872222222222223e-06,
1808
+ "loss": 3.1143,
1809
+ "step": 8224
1810
+ },
1811
+ {
1812
+ "epoch": 1.0094150013373582,
1813
+ "grad_norm": 0.17365169525146484,
1814
+ "learning_rate": 9.694444444444446e-06,
1815
+ "loss": 3.1157,
1816
+ "step": 8256
1817
+ },
1818
+ {
1819
+ "epoch": 1.0133277291658707,
1820
+ "grad_norm": 0.1645737588405609,
1821
+ "learning_rate": 9.516666666666666e-06,
1822
+ "loss": 3.1134,
1823
+ "step": 8288
1824
+ },
1825
+ {
1826
+ "epoch": 1.0172404569943831,
1827
+ "grad_norm": 0.15174245834350586,
1828
+ "learning_rate": 9.338888888888889e-06,
1829
+ "loss": 3.1142,
1830
+ "step": 8320
1831
+ },
1832
+ {
1833
+ "epoch": 1.0211531848228956,
1834
+ "grad_norm": 0.16984011232852936,
1835
+ "learning_rate": 9.161111111111112e-06,
1836
+ "loss": 3.1142,
1837
+ "step": 8352
1838
+ },
1839
+ {
1840
+ "epoch": 1.0250659126514081,
1841
+ "grad_norm": 0.1772463321685791,
1842
+ "learning_rate": 8.983333333333334e-06,
1843
+ "loss": 3.1178,
1844
+ "step": 8384
1845
+ },
1846
+ {
1847
+ "epoch": 1.0289786404799206,
1848
+ "grad_norm": 0.16304141283035278,
1849
+ "learning_rate": 8.805555555555555e-06,
1850
+ "loss": 3.113,
1851
+ "step": 8416
1852
+ },
1853
+ {
1854
+ "epoch": 1.032891368308433,
1855
+ "grad_norm": 0.15513816475868225,
1856
+ "learning_rate": 8.627777777777778e-06,
1857
+ "loss": 3.1145,
1858
+ "step": 8448
1859
+ },
1860
+ {
1861
+ "epoch": 1.0368040961369456,
1862
+ "grad_norm": 0.1862088292837143,
1863
+ "learning_rate": 8.45e-06,
1864
+ "loss": 3.1109,
1865
+ "step": 8480
1866
+ },
1867
+ {
1868
+ "epoch": 1.0407168239654578,
1869
+ "grad_norm": 0.17995817959308624,
1870
+ "learning_rate": 8.272222222222223e-06,
1871
+ "loss": 3.1128,
1872
+ "step": 8512
1873
+ },
1874
+ {
1875
+ "epoch": 1.0446295517939703,
1876
+ "grad_norm": 0.1758676916360855,
1877
+ "learning_rate": 8.094444444444444e-06,
1878
+ "loss": 3.1128,
1879
+ "step": 8544
1880
+ },
1881
+ {
1882
+ "epoch": 1.0485422796224828,
1883
+ "grad_norm": 0.16609688103199005,
1884
+ "learning_rate": 7.916666666666667e-06,
1885
+ "loss": 3.114,
1886
+ "step": 8576
1887
+ },
1888
+ {
1889
+ "epoch": 1.0524550074509953,
1890
+ "grad_norm": 0.15258896350860596,
1891
+ "learning_rate": 7.738888888888889e-06,
1892
+ "loss": 3.1171,
1893
+ "step": 8608
1894
+ },
1895
+ {
1896
+ "epoch": 1.0563677352795078,
1897
+ "grad_norm": 0.16240954399108887,
1898
+ "learning_rate": 7.561111111111112e-06,
1899
+ "loss": 3.113,
1900
+ "step": 8640
1901
+ },
1902
+ {
1903
+ "epoch": 1.0602804631080203,
1904
+ "grad_norm": 0.16423362493515015,
1905
+ "learning_rate": 7.3833333333333335e-06,
1906
+ "loss": 3.1154,
1907
+ "step": 8672
1908
+ },
1909
+ {
1910
+ "epoch": 1.0641931909365328,
1911
+ "grad_norm": 0.17032068967819214,
1912
+ "learning_rate": 7.205555555555555e-06,
1913
+ "loss": 3.1146,
1914
+ "step": 8704
1915
+ },
1916
+ {
1917
+ "epoch": 1.0681059187650452,
1918
+ "grad_norm": 0.1564359813928604,
1919
+ "learning_rate": 7.027777777777778e-06,
1920
+ "loss": 3.1162,
1921
+ "step": 8736
1922
+ },
1923
+ {
1924
+ "epoch": 1.0720186465935577,
1925
+ "grad_norm": 0.15838623046875,
1926
+ "learning_rate": 6.8500000000000005e-06,
1927
+ "loss": 3.113,
1928
+ "step": 8768
1929
+ },
1930
+ {
1931
+ "epoch": 1.0759313744220702,
1932
+ "grad_norm": 0.17325465381145477,
1933
+ "learning_rate": 6.672222222222223e-06,
1934
+ "loss": 3.1153,
1935
+ "step": 8800
1936
+ },
1937
+ {
1938
+ "epoch": 1.0798441022505827,
1939
+ "grad_norm": 0.16170760989189148,
1940
+ "learning_rate": 6.494444444444445e-06,
1941
+ "loss": 3.115,
1942
+ "step": 8832
1943
+ },
1944
+ {
1945
+ "epoch": 1.0837568300790952,
1946
+ "grad_norm": 0.15591956675052643,
1947
+ "learning_rate": 6.316666666666667e-06,
1948
+ "loss": 3.1088,
1949
+ "step": 8864
1950
+ },
1951
+ {
1952
+ "epoch": 1.0876695579076077,
1953
+ "grad_norm": 0.15115121006965637,
1954
+ "learning_rate": 6.138888888888889e-06,
1955
+ "loss": 3.1103,
1956
+ "step": 8896
1957
+ },
1958
+ {
1959
+ "epoch": 1.0915822857361202,
1960
+ "grad_norm": 0.1577509045600891,
1961
+ "learning_rate": 5.961111111111111e-06,
1962
+ "loss": 3.112,
1963
+ "step": 8928
1964
+ },
1965
+ {
1966
+ "epoch": 1.0954950135646326,
1967
+ "grad_norm": 0.1545899361371994,
1968
+ "learning_rate": 5.783333333333334e-06,
1969
+ "loss": 3.1108,
1970
+ "step": 8960
1971
+ },
1972
+ {
1973
+ "epoch": 1.0994077413931451,
1974
+ "grad_norm": 0.1597297489643097,
1975
+ "learning_rate": 5.605555555555555e-06,
1976
+ "loss": 3.1172,
1977
+ "step": 8992
1978
+ },
1979
+ {
1980
+ "epoch": 1.1033204692216576,
1981
+ "grad_norm": 0.16016387939453125,
1982
+ "learning_rate": 5.427777777777778e-06,
1983
+ "loss": 3.1156,
1984
+ "step": 9024
1985
+ },
1986
+ {
1987
+ "epoch": 1.10723319705017,
1988
+ "grad_norm": 0.15304987132549286,
1989
+ "learning_rate": 5.25e-06,
1990
+ "loss": 3.1126,
1991
+ "step": 9056
1992
+ },
1993
+ {
1994
+ "epoch": 1.1111459248786826,
1995
+ "grad_norm": 0.1560225784778595,
1996
+ "learning_rate": 5.072222222222222e-06,
1997
+ "loss": 3.1152,
1998
+ "step": 9088
1999
+ },
2000
+ {
2001
+ "epoch": 1.115058652707195,
2002
+ "grad_norm": 0.16613492369651794,
2003
+ "learning_rate": 4.894444444444445e-06,
2004
+ "loss": 3.1147,
2005
+ "step": 9120
2006
+ },
2007
+ {
2008
+ "epoch": 1.1189713805357075,
2009
+ "grad_norm": 0.15055406093597412,
2010
+ "learning_rate": 4.7166666666666675e-06,
2011
+ "loss": 3.1116,
2012
+ "step": 9152
2013
+ },
2014
+ {
2015
+ "epoch": 1.12288410836422,
2016
+ "grad_norm": 0.16280752420425415,
2017
+ "learning_rate": 4.538888888888889e-06,
2018
+ "loss": 3.1148,
2019
+ "step": 9184
2020
+ },
2021
+ {
2022
+ "epoch": 1.1267968361927325,
2023
+ "grad_norm": 0.1523207277059555,
2024
+ "learning_rate": 4.361111111111112e-06,
2025
+ "loss": 3.1133,
2026
+ "step": 9216
2027
+ },
2028
+ {
2029
+ "epoch": 1.1307095640212448,
2030
+ "grad_norm": 0.1500737965106964,
2031
+ "learning_rate": 4.183333333333334e-06,
2032
+ "loss": 3.1177,
2033
+ "step": 9248
2034
+ },
2035
+ {
2036
+ "epoch": 1.1346222918497573,
2037
+ "grad_norm": 0.16134943068027496,
2038
+ "learning_rate": 4.005555555555555e-06,
2039
+ "loss": 3.1143,
2040
+ "step": 9280
2041
+ },
2042
+ {
2043
+ "epoch": 1.1385350196782698,
2044
+ "grad_norm": 0.1499546766281128,
2045
+ "learning_rate": 3.827777777777778e-06,
2046
+ "loss": 3.1133,
2047
+ "step": 9312
2048
+ },
2049
+ {
2050
+ "epoch": 1.1424477475067822,
2051
+ "grad_norm": 0.15620845556259155,
2052
+ "learning_rate": 3.6499999999999998e-06,
2053
+ "loss": 3.1122,
2054
+ "step": 9344
2055
+ },
2056
+ {
2057
+ "epoch": 1.1463604753352947,
2058
+ "grad_norm": 0.15544985234737396,
2059
+ "learning_rate": 3.4722222222222224e-06,
2060
+ "loss": 3.1146,
2061
+ "step": 9376
2062
+ },
2063
+ {
2064
+ "epoch": 1.1502732031638072,
2065
+ "grad_norm": 0.15928788483142853,
2066
+ "learning_rate": 3.2944444444444446e-06,
2067
+ "loss": 3.1123,
2068
+ "step": 9408
2069
+ },
2070
+ {
2071
+ "epoch": 1.1541859309923197,
2072
+ "grad_norm": 0.14999979734420776,
2073
+ "learning_rate": 3.1166666666666668e-06,
2074
+ "loss": 3.1149,
2075
+ "step": 9440
2076
+ },
2077
+ {
2078
+ "epoch": 1.1580986588208322,
2079
+ "grad_norm": 0.15014442801475525,
2080
+ "learning_rate": 2.938888888888889e-06,
2081
+ "loss": 3.1113,
2082
+ "step": 9472
2083
+ },
2084
+ {
2085
+ "epoch": 1.1620113866493447,
2086
+ "grad_norm": 0.14749625325202942,
2087
+ "learning_rate": 2.761111111111111e-06,
2088
+ "loss": 3.113,
2089
+ "step": 9504
2090
+ },
2091
+ {
2092
+ "epoch": 1.1659241144778572,
2093
+ "grad_norm": 0.14931970834732056,
2094
+ "learning_rate": 2.5833333333333333e-06,
2095
+ "loss": 3.1144,
2096
+ "step": 9536
2097
+ },
2098
+ {
2099
+ "epoch": 1.1698368423063696,
2100
+ "grad_norm": 0.14572674036026,
2101
+ "learning_rate": 2.4055555555555555e-06,
2102
+ "loss": 3.1093,
2103
+ "step": 9568
2104
+ },
2105
+ {
2106
+ "epoch": 1.1737495701348821,
2107
+ "grad_norm": 0.15361888706684113,
2108
+ "learning_rate": 2.227777777777778e-06,
2109
+ "loss": 3.1138,
2110
+ "step": 9600
2111
+ },
2112
+ {
2113
+ "epoch": 1.1776622979633946,
2114
+ "grad_norm": 0.1433536857366562,
2115
+ "learning_rate": 2.0500000000000003e-06,
2116
+ "loss": 3.1123,
2117
+ "step": 9632
2118
+ },
2119
+ {
2120
+ "epoch": 1.181575025791907,
2121
+ "grad_norm": 0.14533208310604095,
2122
+ "learning_rate": 1.8722222222222225e-06,
2123
+ "loss": 3.1116,
2124
+ "step": 9664
2125
+ },
2126
+ {
2127
+ "epoch": 1.1854877536204196,
2128
+ "grad_norm": 0.14816279709339142,
2129
+ "learning_rate": 1.6944444444444446e-06,
2130
+ "loss": 3.1128,
2131
+ "step": 9696
2132
+ },
2133
+ {
2134
+ "epoch": 1.189400481448932,
2135
+ "grad_norm": 0.14798638224601746,
2136
+ "learning_rate": 1.5166666666666668e-06,
2137
+ "loss": 3.116,
2138
+ "step": 9728
2139
+ },
2140
+ {
2141
+ "epoch": 1.1933132092774446,
2142
+ "grad_norm": 0.1386597454547882,
2143
+ "learning_rate": 1.338888888888889e-06,
2144
+ "loss": 3.1145,
2145
+ "step": 9760
2146
+ },
2147
+ {
2148
+ "epoch": 1.197225937105957,
2149
+ "grad_norm": 0.14148685336112976,
2150
+ "learning_rate": 1.161111111111111e-06,
2151
+ "loss": 3.1115,
2152
+ "step": 9792
2153
+ },
2154
+ {
2155
+ "epoch": 1.2011386649344695,
2156
+ "grad_norm": 0.14324016869068146,
2157
+ "learning_rate": 9.833333333333334e-07,
2158
+ "loss": 3.1117,
2159
+ "step": 9824
2160
+ },
2161
+ {
2162
+ "epoch": 1.205051392762982,
2163
+ "grad_norm": 0.14499281346797943,
2164
+ "learning_rate": 8.055555555555556e-07,
2165
+ "loss": 3.1129,
2166
+ "step": 9856
2167
+ },
2168
+ {
2169
+ "epoch": 1.2089641205914945,
2170
+ "grad_norm": 0.1464635133743286,
2171
+ "learning_rate": 6.277777777777778e-07,
2172
+ "loss": 3.1169,
2173
+ "step": 9888
2174
+ },
2175
+ {
2176
+ "epoch": 1.2128768484200068,
2177
+ "grad_norm": 0.14767299592494965,
2178
+ "learning_rate": 4.5e-07,
2179
+ "loss": 3.1131,
2180
+ "step": 9920
2181
+ },
2182
+ {
2183
+ "epoch": 1.2167895762485195,
2184
+ "grad_norm": 0.14456725120544434,
2185
+ "learning_rate": 2.722222222222222e-07,
2186
+ "loss": 3.116,
2187
+ "step": 9952
2188
+ },
2189
+ {
2190
+ "epoch": 1.2207023040770317,
2191
+ "grad_norm": 0.1386868953704834,
2192
+ "learning_rate": 9.444444444444445e-08,
2193
+ "loss": 3.1151,
2194
+ "step": 9984
2195
+ },
2196
+ {
2197
+ "epoch": 1.222658667991288,
2198
+ "step": 10000,
2199
+ "total_flos": 8.246852548747592e+18,
2200
+ "train_loss": 1.5593041332244872,
2201
+ "train_runtime": 85792.9956,
2202
+ "train_samples_per_second": 238.714,
2203
+ "train_steps_per_second": 0.117
2204
+ }
2205
+ ],
2206
+ "logging_steps": 32,
2207
+ "max_steps": 10000,
2208
+ "num_input_tokens_seen": 0,
2209
+ "num_train_epochs": 2,
2210
+ "save_steps": 500,
2211
+ "stateful_callbacks": {
2212
+ "TrainerControl": {
2213
+ "args": {
2214
+ "should_epoch_stop": false,
2215
+ "should_evaluate": false,
2216
+ "should_log": false,
2217
+ "should_save": true,
2218
+ "should_training_stop": true
2219
+ },
2220
+ "attributes": {}
2221
+ }
2222
+ },
2223
+ "total_flos": 8.246852548747592e+18,
2224
+ "train_batch_size": 64,
2225
+ "trial_name": null,
2226
+ "trial_params": null
2227
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b37590802fddc45a46f216e638339c053760e6371d80ec1e79399b9524c81317
3
+ size 6033
vocab.json ADDED
The diff for this file is too large to render. See raw diff