kth8 commited on
Commit
a29fd5f
·
verified ·
1 Parent(s): 767981d

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -21,27 +21,6 @@ Trained with the exact system prompt OpenCode's [title agent uses](https://raw.g
21
 
22
  ## Usage example
23
 
24
- Point to this model with `small_model` in `opencode.jsonc` file.
25
-
26
- ```json
27
- {
28
- "$schema": "https://opencode.ai/config.json",
29
- "provider": {
30
- "title": {
31
- "npm": "@ai-sdk/openai-compatible",
32
- "options": {
33
- "baseURL": "http://127.0.0.1:8080/v1",
34
- "apiKey": "not-needed"
35
- },
36
- "models": {
37
- "generator": {}
38
- }
39
- }
40
- },
41
- "small_model": "title/generator"
42
- }
43
- ```
44
-
45
  **System prompt**
46
  ```
47
  You are a title generator. You output ONLY a thread title. Nothing else.
@@ -121,38 +100,39 @@ Student course passing growth calculation
121
  - Weight decay: 0.01
122
 
123
  ## Training stats
124
- - Date: 2026-05-27T13:32:50.844050
125
  - GPU: NVIDIA A100-SXM4-40GB
126
- - Peak VRAM usage: 12.129 GB
127
- - Global step: 1588
128
- - Training runtime (seconds): 1573.3242
129
- - Best validation loss: 1.3689830303192139
130
 
131
  | Step | Training Loss | Validation Loss |
132
- |------|--------------|----------------|
133
- | 79 | 1.916200 | 1.783801 |
134
- | 158 | 1.725300 | 1.744159 |
135
- | 237 | 1.693900 | 1.640494 |
136
- | 316 | 1.628300 | 1.608212 |
137
- | 395 | 1.535700 | 1.557622 |
138
- | 474 | 1.525200 | 1.579373 |
139
- | 553 | 1.465500 | 1.528539 |
140
- | 632 | 1.447900 | 1.489644 |
141
- | 711 | 1.572100 | 1.488969 |
142
- | 790 | 1.528400 | 1.472376 |
143
- | 869 | 1.497800 | 1.438234 |
144
- | 948 | 1.476900 | 1.431505 |
145
- | 1027 | 1.387800 | 1.412816 |
146
- | 1106 | 1.369100 | 1.401051 |
147
- | 1185 | 1.286400 | 1.391667 |
148
- | 1264 | 1.406300 | 1.379098 |
149
- | 1343 | 1.412500 | 1.374640 |
150
- | 1422 | 1.321700 | 1.371226 |
151
- | 1501 | 1.383900 | 1.368983 |
152
- | 1580 | 1.337300 | 1.369141 |
 
153
 
154
  ## Framework versions
155
- - Unsloth: 2026.5.8
156
  - TRL: 0.22.2
157
  - Transformers: 4.56.2
158
  - Pytorch: 2.11.0+cu128
 
21
 
22
  ## Usage example
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  **System prompt**
25
  ```
26
  You are a title generator. You output ONLY a thread title. Nothing else.
 
100
  - Weight decay: 0.01
101
 
102
  ## Training stats
103
+ - Date: 2026-06-01T11:04:43.747952
104
  - GPU: NVIDIA A100-SXM4-40GB
105
+ - Peak VRAM usage: 12.15 GB
106
+ - Global step: 1607
107
+ - Training runtime (seconds): 1590.5658
108
+ - Best validation loss: 1.408400058746338
109
 
110
  | Step | Training Loss | Validation Loss |
111
+ |------|---------------|-----------------|
112
+ | 0 | No log | 5.064917 |
113
+ | 80 | 1.672600 | 1.848531 |
114
+ | 160 | 1.695400 | 1.742237 |
115
+ | 240 | 1.751600 | 1.726482 |
116
+ | 320 | 1.427200 | 1.663712 |
117
+ | 400 | 1.550400 | 1.609400 |
118
+ | 480 | 1.559000 | 1.573220 |
119
+ | 560 | 1.471900 | 1.572365 |
120
+ | 640 | 1.538100 | 1.539643 |
121
+ | 720 | 1.485500 | 1.515100 |
122
+ | 800 | 1.391200 | 1.486133 |
123
+ | 880 | 1.390600 | 1.473583 |
124
+ | 960 | 1.405300 | 1.461052 |
125
+ | 1040 | 1.392000 | 1.450962 |
126
+ | 1120 | 1.521300 | 1.440739 |
127
+ | 1200 | 1.438300 | 1.431336 |
128
+ | 1280 | 1.336900 | 1.418500 |
129
+ | 1360 | 1.375000 | 1.413560 |
130
+ | 1440 | 1.342100 | 1.408760 |
131
+ | 1520 | 1.309400 | 1.408400 |
132
+ | 1600 | 1.428100 | 1.409352 |
133
 
134
  ## Framework versions
135
+ - Unsloth: 2026.5.9
136
  - TRL: 0.22.2
137
  - Transformers: 4.56.2
138
  - Pytorch: 2.11.0+cu128
chat_template.jinja CHANGED
@@ -16,6 +16,9 @@
16
  {%- set loop_messages = messages -%}
17
  {%- endif -%}
18
  {%- for message in loop_messages -%}
 
 
 
19
  {%- if (message['role'] == 'assistant') -%}
20
  {%- set role = "model" -%}
21
  {%- else -%}
 
16
  {%- set loop_messages = messages -%}
17
  {%- endif -%}
18
  {%- for message in loop_messages -%}
19
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
20
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
21
+ {%- endif -%}
22
  {%- if (message['role'] == 'assistant') -%}
23
  {%- set role = "model" -%}
24
  {%- else -%}
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6a6bbc6d0e985a9c71352fdf27e960db747ca2d5d83dbbde6df8fed839f0a2d4
3
  size 536223056
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d0871bbb0474c330eaa27c51c4dbe2d73a4ea4909837452845236d3f0d7882f
3
  size 536223056
train/log.json CHANGED
@@ -1,1277 +1,1299 @@
1
  [
2
  {
3
- "loss": 4.6142,
4
- "grad_norm": 33.659332275390625,
 
 
 
 
 
 
 
 
5
  "learning_rate": 1.8e-05,
6
- "epoch": 0.006297229219143577,
7
  "step": 10
8
  },
9
  {
10
- "loss": 2.6482,
11
- "grad_norm": 14.412582397460938,
12
  "learning_rate": 3.8e-05,
13
- "epoch": 0.012594458438287154,
14
  "step": 20
15
  },
16
  {
17
- "loss": 2.2011,
18
- "grad_norm": 9.777717590332031,
19
  "learning_rate": 5.8e-05,
20
- "epoch": 0.018891687657430732,
21
  "step": 30
22
  },
23
  {
24
- "loss": 1.9662,
25
- "grad_norm": 17.46149253845215,
26
  "learning_rate": 7.800000000000001e-05,
27
- "epoch": 0.02518891687657431,
28
  "step": 40
29
  },
30
  {
31
- "loss": 1.8247,
32
- "grad_norm": 9.683545112609863,
33
  "learning_rate": 9.8e-05,
34
- "epoch": 0.031486146095717885,
35
  "step": 50
36
  },
37
  {
38
- "loss": 1.8919,
39
- "grad_norm": 10.557292938232422,
40
  "learning_rate": 0.000118,
41
- "epoch": 0.037783375314861464,
42
  "step": 60
43
  },
44
  {
45
- "loss": 1.9162,
46
- "grad_norm": 11.902077674865723,
47
  "learning_rate": 0.000138,
48
- "epoch": 0.04408060453400504,
49
  "step": 70
50
  },
51
  {
52
- "eval_loss": 1.7838011980056763,
53
- "eval_runtime": 33.8157,
54
- "eval_samples_per_second": 15.348,
55
- "eval_steps_per_second": 3.844,
56
- "epoch": 0.04974811083123426,
57
- "step": 79
58
  },
59
  {
60
- "loss": 1.8701,
61
- "grad_norm": 8.326041221618652,
62
- "learning_rate": 0.00015800000000000002,
63
- "epoch": 0.05037783375314862,
 
64
  "step": 80
65
  },
66
  {
67
- "loss": 1.7494,
68
- "grad_norm": 8.273054122924805,
69
  "learning_rate": 0.00017800000000000002,
70
- "epoch": 0.05667506297229219,
71
  "step": 90
72
  },
73
  {
74
- "loss": 1.7557,
75
- "grad_norm": 10.647675514221191,
76
  "learning_rate": 0.00019800000000000002,
77
- "epoch": 0.06297229219143577,
78
  "step": 100
79
  },
80
  {
81
- "loss": 1.7535,
82
- "grad_norm": 6.604005813598633,
83
- "learning_rate": 0.0001999819475629623,
84
- "epoch": 0.06926952141057935,
85
  "step": 110
86
  },
87
  {
88
- "loss": 1.7317,
89
- "grad_norm": 6.132753372192383,
90
- "learning_rate": 0.00019991955244474347,
91
- "epoch": 0.07556675062972293,
92
  "step": 120
93
  },
94
  {
95
- "loss": 1.6196,
96
- "grad_norm": 5.765186786651611,
97
- "learning_rate": 0.0001998126195808803,
98
- "epoch": 0.0818639798488665,
99
  "step": 130
100
  },
101
  {
102
- "loss": 1.5384,
103
- "grad_norm": 5.294787883758545,
104
- "learning_rate": 0.00019966119663520412,
105
- "epoch": 0.08816120906801007,
106
  "step": 140
107
  },
108
  {
109
- "loss": 1.7253,
110
- "grad_norm": 8.26528549194336,
111
- "learning_rate": 0.00019946535110237904,
112
- "epoch": 0.09445843828715365,
113
  "step": 150
114
  },
115
  {
116
- "eval_loss": 1.7441585063934326,
117
- "eval_runtime": 14.4715,
118
- "eval_samples_per_second": 35.864,
119
- "eval_steps_per_second": 8.983,
120
- "epoch": 0.09949622166246852,
121
- "step": 158
122
  },
123
  {
124
- "loss": 1.7126,
125
- "grad_norm": 5.565060138702393,
126
- "learning_rate": 0.00019922517027781746,
127
- "epoch": 0.10075566750629723,
 
128
  "step": 160
129
  },
130
  {
131
- "loss": 1.8884,
132
- "grad_norm": 6.4396867752075195,
133
- "learning_rate": 0.000198940761218769,
134
- "epoch": 0.1070528967254408,
135
  "step": 170
136
  },
137
  {
138
- "loss": 1.7091,
139
- "grad_norm": 5.561753273010254,
140
- "learning_rate": 0.0001986122506966014,
141
- "epoch": 0.11335012594458438,
142
  "step": 180
143
  },
144
  {
145
- "loss": 1.7571,
146
- "grad_norm": 4.833555221557617,
147
- "learning_rate": 0.000198239785140294,
148
- "epoch": 0.11964735516372796,
149
  "step": 190
150
  },
151
  {
152
- "loss": 1.6005,
153
- "grad_norm": 5.930907249450684,
154
- "learning_rate": 0.000197823530571169,
155
- "epoch": 0.12594458438287154,
156
  "step": 200
157
  },
158
  {
159
- "loss": 1.7721,
160
- "grad_norm": 5.551156520843506,
161
- "learning_rate": 0.00019736367252888974,
162
- "epoch": 0.13224181360201512,
163
  "step": 210
164
  },
165
  {
166
- "loss": 1.6479,
167
- "grad_norm": 5.802966117858887,
168
- "learning_rate": 0.000196860415988759,
169
- "epoch": 0.1385390428211587,
170
  "step": 220
171
  },
172
  {
173
- "loss": 1.6939,
174
- "grad_norm": 5.381985664367676,
175
- "learning_rate": 0.00019631398527035422,
176
- "epoch": 0.14483627204030228,
177
  "step": 230
178
  },
179
  {
180
- "eval_loss": 1.6404942274093628,
181
- "eval_runtime": 14.4847,
182
- "eval_samples_per_second": 35.831,
183
- "eval_steps_per_second": 8.975,
184
- "epoch": 0.14924433249370278,
185
- "step": 237
186
  },
187
  {
188
- "loss": 1.6613,
189
- "grad_norm": 5.851009368896484,
190
- "learning_rate": 0.00019572462393754005,
191
- "epoch": 0.15113350125944586,
 
192
  "step": 240
193
  },
194
  {
195
- "loss": 1.6204,
196
- "grad_norm": 5.324190139770508,
197
- "learning_rate": 0.00019509259468990323,
198
- "epoch": 0.1574307304785894,
199
  "step": 250
200
  },
201
  {
202
- "loss": 1.5024,
203
- "grad_norm": 6.643704891204834,
204
- "learning_rate": 0.00019441817924565786,
205
- "epoch": 0.163727959697733,
206
  "step": 260
207
  },
208
  {
209
- "loss": 1.7425,
210
- "grad_norm": 5.175152778625488,
211
- "learning_rate": 0.00019370167821607353,
212
- "epoch": 0.17002518891687657,
213
  "step": 270
214
  },
215
  {
216
- "loss": 1.6053,
217
- "grad_norm": 5.162317276000977,
218
- "learning_rate": 0.00019294341097148194,
219
- "epoch": 0.17632241813602015,
220
  "step": 280
221
  },
222
  {
223
- "loss": 1.6262,
224
- "grad_norm": 4.8840179443359375,
225
- "learning_rate": 0.0001921437154989221,
226
- "epoch": 0.18261964735516373,
227
  "step": 290
228
  },
229
  {
230
- "loss": 1.6046,
231
- "grad_norm": 5.020822048187256,
232
- "learning_rate": 0.0001913029482514873,
233
- "epoch": 0.1889168765743073,
234
  "step": 300
235
  },
236
  {
237
- "loss": 1.6283,
238
- "grad_norm": 4.799527645111084,
239
- "learning_rate": 0.00019042148398944116,
240
- "epoch": 0.1952141057934509,
241
  "step": 310
242
  },
243
  {
244
- "eval_loss": 1.6082123517990112,
245
- "eval_runtime": 14.6548,
246
- "eval_samples_per_second": 35.415,
247
- "eval_steps_per_second": 8.871,
248
- "epoch": 0.19899244332493704,
249
- "step": 316
250
  },
251
  {
252
- "loss": 1.6391,
253
- "grad_norm": 5.666315078735352,
254
- "learning_rate": 0.0001894997156131734,
255
- "epoch": 0.20151133501259447,
 
256
  "step": 320
257
  },
258
  {
259
- "loss": 1.6637,
260
- "grad_norm": 5.880155086517334,
261
- "learning_rate": 0.00018853805398807004,
262
- "epoch": 0.20780856423173805,
263
  "step": 330
264
  },
265
  {
266
- "loss": 1.444,
267
- "grad_norm": 5.846175193786621,
268
- "learning_rate": 0.00018753692776137584,
269
- "epoch": 0.2141057934508816,
270
  "step": 340
271
  },
272
  {
273
- "loss": 1.625,
274
- "grad_norm": 5.362205982208252,
275
- "learning_rate": 0.00018649678317113084,
276
- "epoch": 0.22040302267002518,
277
  "step": 350
278
  },
279
  {
280
- "loss": 1.6577,
281
- "grad_norm": 4.623821258544922,
282
- "learning_rate": 0.0001854180838472659,
283
- "epoch": 0.22670025188916876,
284
  "step": 360
285
  },
286
  {
287
- "loss": 1.5298,
288
- "grad_norm": 4.931164741516113,
289
- "learning_rate": 0.00018430131060494616,
290
- "epoch": 0.23299748110831234,
291
  "step": 370
292
  },
293
  {
294
- "loss": 1.5142,
295
- "grad_norm": 5.050358295440674,
296
- "learning_rate": 0.00018314696123025454,
297
- "epoch": 0.23929471032745592,
298
  "step": 380
299
  },
300
  {
301
- "loss": 1.5357,
302
- "grad_norm": 4.571812629699707,
303
- "learning_rate": 0.00018195555025831022,
304
- "epoch": 0.2455919395465995,
305
  "step": 390
306
  },
307
  {
308
- "eval_loss": 1.5576220750808716,
309
- "eval_runtime": 14.7082,
310
- "eval_samples_per_second": 35.286,
311
- "eval_steps_per_second": 8.839,
312
- "epoch": 0.24874055415617127,
313
- "step": 395
314
  },
315
  {
316
- "loss": 1.5179,
317
- "grad_norm": 4.708597183227539,
318
- "learning_rate": 0.00018072760874392215,
319
- "epoch": 0.2518891687657431,
 
320
  "step": 400
321
  },
322
  {
323
- "loss": 1.5781,
324
- "grad_norm": 4.262819766998291,
325
- "learning_rate": 0.00017946368402487845,
326
- "epoch": 0.25818639798488663,
327
  "step": 410
328
  },
329
  {
330
- "loss": 1.4886,
331
- "grad_norm": 5.044946193695068,
332
- "learning_rate": 0.00017816433947797858,
333
- "epoch": 0.26448362720403024,
334
  "step": 420
335
  },
336
  {
337
- "loss": 1.4781,
338
- "grad_norm": 5.743882656097412,
339
- "learning_rate": 0.00017683015426791566,
340
- "epoch": 0.2707808564231738,
341
  "step": 430
342
  },
343
  {
344
- "loss": 1.5219,
345
- "grad_norm": 5.393696308135986,
346
- "learning_rate": 0.00017546172308912213,
347
- "epoch": 0.2770780856423174,
348
  "step": 440
349
  },
350
  {
351
- "loss": 1.5132,
352
- "grad_norm": 7.644551753997803,
353
- "learning_rate": 0.0001740596559006929,
354
- "epoch": 0.28337531486146095,
355
  "step": 450
356
  },
357
  {
358
- "loss": 1.4883,
359
- "grad_norm": 5.462601661682129,
360
- "learning_rate": 0.00017262457765450457,
361
- "epoch": 0.28967254408060455,
362
  "step": 460
363
  },
364
  {
365
- "loss": 1.5252,
366
- "grad_norm": 4.247793197631836,
367
- "learning_rate": 0.000171157128016652,
368
- "epoch": 0.2959697732997481,
369
  "step": 470
370
  },
371
  {
372
- "eval_loss": 1.5793730020523071,
373
- "eval_runtime": 14.5182,
374
- "eval_samples_per_second": 35.748,
375
- "eval_steps_per_second": 8.954,
376
- "epoch": 0.29848866498740556,
377
- "step": 474
378
  },
379
  {
380
- "loss": 1.6033,
381
- "grad_norm": 6.310419082641602,
382
- "learning_rate": 0.00016965796108232598,
383
- "epoch": 0.3022670025188917,
 
384
  "step": 480
385
  },
386
  {
387
- "loss": 1.6718,
388
- "grad_norm": 5.100507736206055,
389
- "learning_rate": 0.00016812774508425933,
390
- "epoch": 0.30856423173803527,
391
  "step": 490
392
  },
393
  {
394
- "loss": 1.5078,
395
- "grad_norm": 4.1262946128845215,
396
- "learning_rate": 0.00016656716209487174,
397
- "epoch": 0.3148614609571788,
398
  "step": 500
399
  },
400
  {
401
- "loss": 1.4854,
402
- "grad_norm": 5.230551719665527,
403
- "learning_rate": 0.00016497690772224522,
404
- "epoch": 0.3211586901763224,
405
  "step": 510
406
  },
407
  {
408
- "loss": 1.5091,
409
- "grad_norm": 5.111631393432617,
410
- "learning_rate": 0.00016335769080006674,
411
- "epoch": 0.327455919395466,
412
  "step": 520
413
  },
414
  {
415
- "loss": 1.5427,
416
- "grad_norm": 4.551891803741455,
417
- "learning_rate": 0.00016171023307167545,
418
- "epoch": 0.3337531486146096,
419
  "step": 530
420
  },
421
  {
422
- "loss": 1.5839,
423
- "grad_norm": 4.708298683166504,
424
- "learning_rate": 0.00016003526886835553,
425
- "epoch": 0.34005037783375314,
426
  "step": 540
427
  },
428
  {
429
- "loss": 1.4655,
430
- "grad_norm": 4.417643070220947,
431
- "learning_rate": 0.00015833354478201844,
432
- "epoch": 0.34634760705289674,
433
  "step": 550
434
  },
435
  {
436
- "eval_loss": 1.5285385847091675,
437
- "eval_runtime": 14.6291,
438
- "eval_samples_per_second": 35.477,
439
- "eval_steps_per_second": 8.886,
440
- "epoch": 0.3482367758186398,
441
- "step": 553
442
  },
443
  {
444
- "loss": 1.5909,
445
- "grad_norm": 5.512932300567627,
446
- "learning_rate": 0.00015660581933241993,
447
- "epoch": 0.3526448362720403,
 
448
  "step": 560
449
  },
450
  {
451
- "loss": 1.5667,
452
- "grad_norm": 5.218059539794922,
453
- "learning_rate": 0.00015485286262906044,
454
- "epoch": 0.3589420654911839,
455
  "step": 570
456
  },
457
  {
458
- "loss": 1.584,
459
- "grad_norm": 5.250601291656494,
460
- "learning_rate": 0.00015307545602791955,
461
- "epoch": 0.36523929471032746,
462
  "step": 580
463
  },
464
  {
465
- "loss": 1.5065,
466
- "grad_norm": 5.601760387420654,
467
- "learning_rate": 0.00015127439178317745,
468
- "epoch": 0.371536523929471,
469
  "step": 590
470
  },
471
  {
472
- "loss": 1.4472,
473
- "grad_norm": 4.8602986335754395,
474
- "learning_rate": 0.00014945047269407876,
475
- "epoch": 0.3778337531486146,
476
  "step": 600
477
  },
478
  {
479
- "loss": 1.5242,
480
- "grad_norm": 3.2672348022460938,
481
- "learning_rate": 0.0001476045117470958,
482
- "epoch": 0.38413098236775817,
483
  "step": 610
484
  },
485
  {
486
- "loss": 1.4048,
487
- "grad_norm": 4.925168037414551,
488
- "learning_rate": 0.0001457373317535515,
489
- "epoch": 0.3904282115869018,
490
  "step": 620
491
  },
492
  {
493
- "loss": 1.4479,
494
- "grad_norm": 5.590626239776611,
495
- "learning_rate": 0.00014384976498286252,
496
- "epoch": 0.3967254408060453,
497
  "step": 630
498
  },
499
  {
500
- "eval_loss": 1.489644169807434,
501
- "eval_runtime": 14.4216,
502
- "eval_samples_per_second": 35.988,
503
- "eval_steps_per_second": 9.014,
504
- "epoch": 0.3979848866498741,
505
- "step": 632
506
  },
507
  {
508
- "loss": 1.4313,
509
- "grad_norm": 5.052401065826416,
510
- "learning_rate": 0.00014194265279156675,
511
- "epoch": 0.40302267002518893,
 
512
  "step": 640
513
  },
514
  {
515
- "loss": 1.5194,
516
- "grad_norm": 3.9724292755126953,
517
- "learning_rate": 0.00014001684524830057,
518
- "epoch": 0.4093198992443325,
519
  "step": 650
520
  },
521
  {
522
- "loss": 1.4166,
523
- "grad_norm": 4.177152156829834,
524
- "learning_rate": 0.0001380732007548925,
525
- "epoch": 0.4156171284634761,
526
  "step": 660
527
  },
528
  {
529
- "loss": 1.5784,
530
- "grad_norm": 4.706490516662598,
531
- "learning_rate": 0.00013611258566374257,
532
- "epoch": 0.42191435768261965,
533
  "step": 670
534
  },
535
  {
536
- "loss": 1.3634,
537
- "grad_norm": 4.3738017082214355,
538
- "learning_rate": 0.00013413587389165784,
539
- "epoch": 0.4282115869017632,
540
  "step": 680
541
  },
542
  {
543
- "loss": 1.5313,
544
- "grad_norm": 3.9545352458953857,
545
- "learning_rate": 0.00013214394653031616,
546
- "epoch": 0.4345088161209068,
547
  "step": 690
548
  },
549
  {
550
- "loss": 1.3985,
551
- "grad_norm": 4.201825141906738,
552
- "learning_rate": 0.000130137691453532,
553
- "epoch": 0.44080604534005036,
554
  "step": 700
555
  },
556
  {
557
- "loss": 1.5721,
558
- "grad_norm": 5.4546966552734375,
559
- "learning_rate": 0.0001281180029214988,
560
- "epoch": 0.44710327455919396,
561
  "step": 710
562
  },
563
  {
564
- "eval_loss": 1.4889687299728394,
565
- "eval_runtime": 14.577,
566
- "eval_samples_per_second": 35.604,
567
- "eval_steps_per_second": 8.918,
568
- "epoch": 0.4477329974811083,
569
- "step": 711
570
  },
571
  {
572
- "loss": 1.4477,
573
- "grad_norm": 5.406968116760254,
574
- "learning_rate": 0.00012608578118218535,
575
- "epoch": 0.4534005037783375,
 
576
  "step": 720
577
  },
578
  {
579
- "loss": 1.4616,
580
- "grad_norm": 4.538527965545654,
581
- "learning_rate": 0.00012404193207006246,
582
- "epoch": 0.4596977329974811,
583
  "step": 730
584
  },
585
  {
586
- "loss": 1.5133,
587
- "grad_norm": 4.29402494430542,
588
- "learning_rate": 0.00012198736660234009,
589
- "epoch": 0.4659949622166247,
590
  "step": 740
591
  },
592
  {
593
- "loss": 1.4501,
594
- "grad_norm": 3.8199307918548584,
595
- "learning_rate": 0.0001199230005728942,
596
- "epoch": 0.4722921914357683,
597
  "step": 750
598
  },
599
  {
600
- "loss": 1.5288,
601
- "grad_norm": 6.067654132843018,
602
- "learning_rate": 0.00011784975414406426,
603
- "epoch": 0.47858942065491183,
604
  "step": 760
605
  },
606
  {
607
- "loss": 1.3803,
608
- "grad_norm": 5.480033874511719,
609
- "learning_rate": 0.00011576855143650371,
610
- "epoch": 0.48488664987405544,
611
  "step": 770
612
  },
613
  {
614
- "loss": 1.5517,
615
- "grad_norm": 4.182514190673828,
616
- "learning_rate": 0.00011368032011726635,
617
- "epoch": 0.491183879093199,
618
  "step": 780
619
  },
620
  {
621
- "loss": 1.5284,
622
- "grad_norm": 4.433547496795654,
623
- "learning_rate": 0.00011158599098631137,
624
- "epoch": 0.49748110831234255,
625
  "step": 790
626
  },
627
  {
628
- "eval_loss": 1.4723758697509766,
629
- "eval_runtime": 14.538,
630
- "eval_samples_per_second": 35.7,
631
- "eval_steps_per_second": 8.942,
632
- "epoch": 0.49748110831234255,
633
- "step": 790
634
  },
635
  {
636
- "loss": 1.5369,
637
- "grad_norm": 4.8588433265686035,
638
- "learning_rate": 0.00010948649756161246,
639
- "epoch": 0.5037783375314862,
 
640
  "step": 800
641
  },
642
  {
643
- "loss": 1.4349,
644
- "grad_norm": 4.88569450378418,
645
- "learning_rate": 0.00010738277566305514,
646
- "epoch": 0.5100755667506297,
647
  "step": 810
648
  },
649
  {
650
- "loss": 1.6126,
651
- "grad_norm": 5.098734378814697,
652
- "learning_rate": 0.0001052757629953082,
653
- "epoch": 0.5163727959697733,
654
  "step": 820
655
  },
656
  {
657
- "loss": 1.5043,
658
- "grad_norm": 4.012162208557129,
659
- "learning_rate": 0.00010316639872985472,
660
- "epoch": 0.5226700251889169,
661
  "step": 830
662
  },
663
  {
664
- "loss": 1.4438,
665
- "grad_norm": 4.813101768493652,
666
- "learning_rate": 0.00010105562308636973,
667
- "epoch": 0.5289672544080605,
668
  "step": 840
669
  },
670
  {
671
- "loss": 1.434,
672
- "grad_norm": 3.8592841625213623,
673
- "learning_rate": 9.894437691363028e-05,
674
- "epoch": 0.535264483627204,
675
  "step": 850
676
  },
677
  {
678
- "loss": 1.4978,
679
- "grad_norm": 5.364985942840576,
680
- "learning_rate": 9.683360127014529e-05,
681
- "epoch": 0.5415617128463476,
682
  "step": 860
683
  },
684
  {
685
- "eval_loss": 1.4382336139678955,
686
- "eval_runtime": 14.714,
687
- "eval_samples_per_second": 35.272,
688
- "eval_steps_per_second": 8.835,
689
- "epoch": 0.5472292191435768,
690
- "step": 869
691
  },
692
  {
693
- "loss": 1.4885,
694
- "grad_norm": 5.363029479980469,
695
- "learning_rate": 9.47242370046918e-05,
696
- "epoch": 0.5478589420654912,
697
- "step": 870
698
  },
699
  {
700
- "loss": 1.5044,
701
- "grad_norm": 4.980364799499512,
702
- "learning_rate": 9.261722433694485e-05,
703
- "epoch": 0.5541561712846348,
 
704
  "step": 880
705
  },
706
  {
707
- "loss": 1.353,
708
- "grad_norm": 4.4146952629089355,
709
- "learning_rate": 9.051350243838756e-05,
710
- "epoch": 0.5604534005037783,
711
  "step": 890
712
  },
713
  {
714
- "loss": 1.3262,
715
- "grad_norm": 5.358567237854004,
716
- "learning_rate": 8.841400901368864e-05,
717
- "epoch": 0.5667506297229219,
718
  "step": 900
719
  },
720
  {
721
- "loss": 1.5514,
722
- "grad_norm": 4.715535640716553,
723
- "learning_rate": 8.631967988273366e-05,
724
- "epoch": 0.5730478589420654,
725
  "step": 910
726
  },
727
  {
728
- "loss": 1.4533,
729
- "grad_norm": 4.502087116241455,
730
- "learning_rate": 8.423144856349631e-05,
731
- "epoch": 0.5793450881612091,
732
  "step": 920
733
  },
734
  {
735
- "loss": 1.4378,
736
- "grad_norm": 4.85370397567749,
737
- "learning_rate": 8.215024585593577e-05,
738
- "epoch": 0.5856423173803527,
739
  "step": 930
740
  },
741
  {
742
- "loss": 1.4769,
743
- "grad_norm": 4.3678297996521,
744
- "learning_rate": 8.007699942710581e-05,
745
- "epoch": 0.5919395465994962,
746
  "step": 940
747
  },
748
  {
749
- "eval_loss": 1.4315046072006226,
750
- "eval_runtime": 14.4016,
751
- "eval_samples_per_second": 36.038,
752
- "eval_steps_per_second": 9.027,
753
- "epoch": 0.5969773299748111,
754
- "step": 948
755
  },
756
  {
757
- "loss": 1.3736,
758
- "grad_norm": 4.551608085632324,
759
- "learning_rate": 7.801263339765994e-05,
760
- "epoch": 0.5982367758186398,
761
- "step": 950
762
  },
763
  {
764
- "loss": 1.4156,
765
- "grad_norm": 3.7702224254608154,
766
- "learning_rate": 7.595806792993759e-05,
767
- "epoch": 0.6045340050377834,
 
768
  "step": 960
769
  },
770
  {
771
- "loss": 1.3623,
772
- "grad_norm": 4.440454483032227,
773
- "learning_rate": 7.391421881781468e-05,
774
- "epoch": 0.610831234256927,
775
  "step": 970
776
  },
777
  {
778
- "loss": 1.38,
779
- "grad_norm": 4.850752830505371,
780
- "learning_rate": 7.188199707850122e-05,
781
- "epoch": 0.6171284634760705,
782
  "step": 980
783
  },
784
  {
785
- "loss": 1.3101,
786
- "grad_norm": 3.9209938049316406,
787
- "learning_rate": 6.986230854646804e-05,
788
- "epoch": 0.6234256926952141,
789
  "step": 990
790
  },
791
  {
792
- "loss": 1.3677,
793
- "grad_norm": 4.586505889892578,
794
- "learning_rate": 6.785605346968386e-05,
795
- "epoch": 0.6297229219143576,
796
  "step": 1000
797
  },
798
  {
799
- "loss": 1.4159,
800
- "grad_norm": 4.723811149597168,
801
- "learning_rate": 6.586412610834221e-05,
802
- "epoch": 0.6360201511335013,
803
  "step": 1010
804
  },
805
  {
806
- "loss": 1.3878,
807
- "grad_norm": 4.9766154289245605,
808
- "learning_rate": 6.388741433625746e-05,
809
- "epoch": 0.6423173803526449,
810
  "step": 1020
811
  },
812
  {
813
- "eval_loss": 1.4128155708312988,
814
- "eval_runtime": 14.5331,
815
- "eval_samples_per_second": 35.712,
816
- "eval_steps_per_second": 8.945,
817
- "epoch": 0.6467254408060453,
818
- "step": 1027
819
  },
820
  {
821
- "loss": 1.3711,
822
- "grad_norm": 4.173240661621094,
823
- "learning_rate": 6.192679924510752e-05,
824
- "epoch": 0.6486146095717884,
825
- "step": 1030
826
  },
827
  {
828
- "loss": 1.408,
829
- "grad_norm": 5.662805557250977,
830
- "learning_rate": 5.998315475169942e-05,
831
- "epoch": 0.654911838790932,
 
832
  "step": 1040
833
  },
834
  {
835
- "loss": 1.4101,
836
- "grad_norm": 4.8551716804504395,
837
- "learning_rate": 5.8057347208433266e-05,
838
- "epoch": 0.6612090680100756,
839
  "step": 1050
840
  },
841
  {
842
- "loss": 1.2795,
843
- "grad_norm": 4.329833030700684,
844
- "learning_rate": 5.615023501713752e-05,
845
- "epoch": 0.6675062972292192,
846
  "step": 1060
847
  },
848
  {
849
- "loss": 1.4149,
850
- "grad_norm": 3.759012460708618,
851
- "learning_rate": 5.4262668246448475e-05,
852
- "epoch": 0.6738035264483627,
853
  "step": 1070
854
  },
855
  {
856
- "loss": 1.3728,
857
- "grad_norm": 4.901814937591553,
858
- "learning_rate": 5.239548825290419e-05,
859
- "epoch": 0.6801007556675063,
860
  "step": 1080
861
  },
862
  {
863
- "loss": 1.4085,
864
- "grad_norm": 4.735474109649658,
865
- "learning_rate": 5.0549527305921265e-05,
866
- "epoch": 0.6863979848866498,
867
  "step": 1090
868
  },
869
  {
870
- "loss": 1.3691,
871
- "grad_norm": 3.6761767864227295,
872
- "learning_rate": 4.872560821682256e-05,
873
- "epoch": 0.6926952141057935,
874
  "step": 1100
875
  },
876
  {
877
- "eval_loss": 1.4010512828826904,
878
- "eval_runtime": 14.5256,
879
- "eval_samples_per_second": 35.73,
880
- "eval_steps_per_second": 8.95,
881
- "epoch": 0.6964735516372796,
882
- "step": 1106
883
  },
884
  {
885
- "loss": 1.3057,
886
- "grad_norm": 4.493793964385986,
887
- "learning_rate": 4.692454397208048e-05,
888
- "epoch": 0.698992443324937,
889
- "step": 1110
890
  },
891
  {
892
- "loss": 1.3721,
893
- "grad_norm": 5.266867160797119,
894
- "learning_rate": 4.5147137370939595e-05,
895
- "epoch": 0.7052896725440806,
 
896
  "step": 1120
897
  },
898
  {
899
- "loss": 1.4906,
900
- "grad_norm": 4.867866039276123,
901
- "learning_rate": 4.339418066758008e-05,
902
- "epoch": 0.7115869017632241,
903
  "step": 1130
904
  },
905
  {
906
- "loss": 1.4071,
907
- "grad_norm": 4.608040809631348,
908
- "learning_rate": 4.166645521798157e-05,
909
- "epoch": 0.7178841309823678,
910
  "step": 1140
911
  },
912
  {
913
- "loss": 1.3585,
914
- "grad_norm": 7.612720012664795,
915
- "learning_rate": 3.99647311316445e-05,
916
- "epoch": 0.7241813602015114,
917
  "step": 1150
918
  },
919
  {
920
- "loss": 1.4131,
921
- "grad_norm": 5.223732948303223,
922
- "learning_rate": 3.828976692832458e-05,
923
- "epoch": 0.7304785894206549,
924
  "step": 1160
925
  },
926
  {
927
- "loss": 1.3566,
928
- "grad_norm": 4.113969802856445,
929
- "learning_rate": 3.6642309199933275e-05,
930
- "epoch": 0.7367758186397985,
931
  "step": 1170
932
  },
933
  {
934
- "loss": 1.2864,
935
- "grad_norm": 3.8852932453155518,
936
- "learning_rate": 3.502309227775482e-05,
937
- "epoch": 0.743073047858942,
938
  "step": 1180
939
  },
940
  {
941
- "eval_loss": 1.391667366027832,
942
- "eval_runtime": 14.5167,
943
- "eval_samples_per_second": 35.752,
944
- "eval_steps_per_second": 8.955,
945
- "epoch": 0.7462216624685138,
946
- "step": 1185
947
  },
948
  {
949
- "loss": 1.416,
950
- "grad_norm": 4.738650798797607,
951
- "learning_rate": 3.343283790512829e-05,
952
- "epoch": 0.7493702770780857,
953
- "step": 1190
954
  },
955
  {
956
- "loss": 1.4496,
957
- "grad_norm": 4.808592319488525,
958
- "learning_rate": 3.1872254915740686e-05,
959
- "epoch": 0.7556675062972292,
 
960
  "step": 1200
961
  },
962
  {
963
- "loss": 1.3199,
964
- "grad_norm": 5.310007095336914,
965
- "learning_rate": 3.0342038917674064e-05,
966
- "epoch": 0.7619647355163728,
967
  "step": 1210
968
  },
969
  {
970
- "loss": 1.4116,
971
- "grad_norm": 3.6367766857147217,
972
- "learning_rate": 2.8842871983347998e-05,
973
- "epoch": 0.7682619647355163,
974
  "step": 1220
975
  },
976
  {
977
- "loss": 1.4192,
978
- "grad_norm": 4.783074378967285,
979
- "learning_rate": 2.7375422345495448e-05,
980
- "epoch": 0.77455919395466,
981
  "step": 1230
982
  },
983
  {
984
- "loss": 1.294,
985
- "grad_norm": 5.352371692657471,
986
- "learning_rate": 2.5940344099307146e-05,
987
- "epoch": 0.7808564231738035,
988
  "step": 1240
989
  },
990
  {
991
- "loss": 1.493,
992
- "grad_norm": 4.887784957885742,
993
- "learning_rate": 2.45382769108779e-05,
994
- "epoch": 0.7871536523929471,
995
  "step": 1250
996
  },
997
  {
998
- "loss": 1.4063,
999
- "grad_norm": 5.015107154846191,
1000
- "learning_rate": 2.3169845732084338e-05,
1001
- "epoch": 0.7934508816120907,
1002
  "step": 1260
1003
  },
1004
  {
1005
- "eval_loss": 1.3790984153747559,
1006
- "eval_runtime": 14.5192,
1007
- "eval_samples_per_second": 35.746,
1008
- "eval_steps_per_second": 8.954,
1009
- "epoch": 0.7959697732997482,
1010
- "step": 1264
1011
  },
1012
  {
1013
- "loss": 1.4125,
1014
- "grad_norm": 4.3769917488098145,
1015
- "learning_rate": 2.1835660522021417e-05,
1016
- "epoch": 0.7997481108312342,
1017
- "step": 1270
1018
  },
1019
  {
1020
- "loss": 1.3623,
1021
- "grad_norm": 4.965677261352539,
1022
- "learning_rate": 2.0536315975121544e-05,
1023
- "epoch": 0.8060453400503779,
 
1024
  "step": 1280
1025
  },
1026
  {
1027
- "loss": 1.3702,
1028
- "grad_norm": 5.39815616607666,
1029
- "learning_rate": 1.927239125607788e-05,
1030
- "epoch": 0.8123425692695214,
1031
  "step": 1290
1032
  },
1033
  {
1034
- "loss": 1.3878,
1035
- "grad_norm": 4.974949836730957,
1036
- "learning_rate": 1.8044449741689794e-05,
1037
- "epoch": 0.818639798488665,
1038
  "step": 1300
1039
  },
1040
  {
1041
- "loss": 1.4957,
1042
- "grad_norm": 4.583181381225586,
1043
- "learning_rate": 1.6853038769745467e-05,
1044
- "epoch": 0.8249370277078085,
1045
  "step": 1310
1046
  },
1047
  {
1048
- "loss": 1.4018,
1049
- "grad_norm": 5.503086566925049,
1050
- "learning_rate": 1.5698689395053835e-05,
1051
- "epoch": 0.8312342569269522,
1052
  "step": 1320
1053
  },
1054
  {
1055
- "loss": 1.2619,
1056
- "grad_norm": 4.569085121154785,
1057
- "learning_rate": 1.4581916152734132e-05,
1058
- "epoch": 0.8375314861460957,
1059
  "step": 1330
1060
  },
1061
  {
1062
- "loss": 1.4125,
1063
- "grad_norm": 5.070247173309326,
1064
- "learning_rate": 1.3503216828869192e-05,
1065
- "epoch": 0.8438287153652393,
1066
  "step": 1340
1067
  },
1068
  {
1069
- "eval_loss": 1.3746401071548462,
1070
- "eval_runtime": 14.702,
1071
- "eval_samples_per_second": 35.301,
1072
- "eval_steps_per_second": 8.842,
1073
- "epoch": 0.8457178841309824,
1074
- "step": 1343
1075
  },
1076
  {
1077
- "loss": 1.405,
1078
- "grad_norm": 4.505115032196045,
1079
- "learning_rate": 1.2463072238624185e-05,
1080
- "epoch": 0.8501259445843828,
1081
- "step": 1350
1082
  },
1083
  {
1084
- "loss": 1.2935,
1085
- "grad_norm": 3.9875564575195312,
1086
- "learning_rate": 1.146194601192998e-05,
1087
- "epoch": 0.8564231738035264,
 
1088
  "step": 1360
1089
  },
1090
  {
1091
- "loss": 1.3752,
1092
- "grad_norm": 4.175727844238281,
1093
- "learning_rate": 1.0500284386826597e-05,
1094
- "epoch": 0.8627204030226701,
1095
  "step": 1370
1096
  },
1097
  {
1098
- "loss": 1.4002,
1099
- "grad_norm": 3.8710429668426514,
1100
- "learning_rate": 9.578516010558847e-06,
1101
- "epoch": 0.8690176322418136,
1102
  "step": 1380
1103
  },
1104
  {
1105
- "loss": 1.2572,
1106
- "grad_norm": 39.77766418457031,
1107
- "learning_rate": 8.697051748512708e-06,
1108
- "epoch": 0.8753148614609572,
1109
  "step": 1390
1110
  },
1111
  {
1112
- "loss": 1.3341,
1113
- "grad_norm": 5.350057601928711,
1114
- "learning_rate": 7.856284501077926e-06,
1115
- "epoch": 0.8816120906801007,
1116
  "step": 1400
1117
  },
1118
  {
1119
- "loss": 1.3181,
1120
- "grad_norm": 4.475919246673584,
1121
- "learning_rate": 7.056589028518068e-06,
1122
- "epoch": 0.8879093198992444,
1123
  "step": 1410
1124
  },
1125
  {
1126
- "loss": 1.3217,
1127
- "grad_norm": 4.369590759277344,
1128
- "learning_rate": 6.2983217839264756e-06,
1129
- "epoch": 0.8942065491183879,
1130
  "step": 1420
1131
  },
1132
  {
1133
- "eval_loss": 1.37122642993927,
1134
- "eval_runtime": 14.501,
1135
- "eval_samples_per_second": 35.791,
1136
- "eval_steps_per_second": 8.965,
1137
- "epoch": 0.8954659949622166,
1138
- "step": 1422
1139
  },
1140
  {
1141
- "loss": 1.3551,
1142
- "grad_norm": 4.054989337921143,
1143
- "learning_rate": 5.581820754342137e-06,
1144
- "epoch": 0.9005037783375315,
1145
- "step": 1430
1146
  },
1147
  {
1148
- "loss": 1.2635,
1149
- "grad_norm": 4.094259738922119,
1150
- "learning_rate": 4.907405310096769e-06,
1151
- "epoch": 0.906801007556675,
 
1152
  "step": 1440
1153
  },
1154
  {
1155
- "loss": 1.3872,
1156
- "grad_norm": 4.884560585021973,
1157
- "learning_rate": 4.275376062459946e-06,
1158
- "epoch": 0.9130982367758187,
1159
  "step": 1450
1160
  },
1161
  {
1162
- "loss": 1.2567,
1163
- "grad_norm": 4.7786641120910645,
1164
- "learning_rate": 3.6860147296457816e-06,
1165
- "epoch": 0.9193954659949622,
1166
  "step": 1460
1167
  },
1168
  {
1169
- "loss": 1.4019,
1170
- "grad_norm": 4.289524078369141,
1171
- "learning_rate": 3.1395840112410034e-06,
1172
- "epoch": 0.9256926952141058,
1173
  "step": 1470
1174
  },
1175
  {
1176
- "loss": 1.3127,
1177
- "grad_norm": 4.1973490715026855,
1178
- "learning_rate": 2.636327471110289e-06,
1179
- "epoch": 0.9319899244332494,
1180
  "step": 1480
1181
  },
1182
  {
1183
- "loss": 1.2502,
1184
- "grad_norm": 4.9555206298828125,
1185
- "learning_rate": 2.1764694288310184e-06,
1186
- "epoch": 0.9382871536523929,
1187
  "step": 1490
1188
  },
1189
  {
1190
- "loss": 1.3839,
1191
- "grad_norm": 5.079888343811035,
1192
- "learning_rate": 1.7602148597060108e-06,
1193
- "epoch": 0.9445843828715366,
1194
  "step": 1500
1195
  },
1196
  {
1197
- "eval_loss": 1.3689830303192139,
1198
- "eval_runtime": 14.5025,
1199
- "eval_samples_per_second": 35.787,
1200
- "eval_steps_per_second": 8.964,
1201
- "epoch": 0.9452141057934509,
1202
- "step": 1501
1203
  },
1204
  {
1205
- "loss": 1.4754,
1206
- "grad_norm": 4.302427768707275,
1207
- "learning_rate": 1.3877493033986223e-06,
1208
- "epoch": 0.9508816120906801,
1209
- "step": 1510
1210
  },
1211
  {
1212
- "loss": 1.3091,
1213
- "grad_norm": 4.7720866203308105,
1214
- "learning_rate": 1.0592387812310311e-06,
1215
- "epoch": 0.9571788413098237,
 
1216
  "step": 1520
1217
  },
1218
  {
1219
- "loss": 1.2316,
1220
- "grad_norm": 4.849659442901611,
1221
- "learning_rate": 7.748297221825573e-07,
1222
- "epoch": 0.9634760705289672,
1223
  "step": 1530
1224
  },
1225
  {
1226
- "loss": 1.2809,
1227
- "grad_norm": 4.5142621994018555,
1228
- "learning_rate": 5.346488976209596e-07,
1229
- "epoch": 0.9697732997481109,
1230
  "step": 1540
1231
  },
1232
  {
1233
- "loss": 1.2613,
1234
- "grad_norm": 4.6826019287109375,
1235
- "learning_rate": 3.3880336479590325e-07,
1236
- "epoch": 0.9760705289672544,
1237
  "step": 1550
1238
  },
1239
  {
1240
- "loss": 1.3195,
1241
- "grad_norm": 4.848607540130615,
1242
- "learning_rate": 1.8738041911969818e-07,
1243
- "epoch": 0.982367758186398,
1244
  "step": 1560
1245
  },
1246
  {
1247
- "loss": 1.3067,
1248
- "grad_norm": 4.836756706237793,
1249
- "learning_rate": 8.044755525652425e-08,
1250
- "epoch": 0.9886649874055415,
1251
  "step": 1570
1252
  },
1253
  {
1254
- "loss": 1.3373,
1255
- "grad_norm": 4.4072771072387695,
1256
- "learning_rate": 1.8052437037707758e-08,
1257
- "epoch": 0.9949622166246851,
1258
  "step": 1580
1259
  },
1260
  {
1261
- "eval_loss": 1.3691413402557373,
1262
- "eval_runtime": 14.5693,
1263
- "eval_samples_per_second": 35.623,
1264
- "eval_steps_per_second": 8.923,
1265
- "epoch": 0.9949622166246851,
1266
- "step": 1580
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1267
  },
1268
  {
1269
- "train_runtime": 1573.3242,
1270
- "train_samples_per_second": 16.149,
1271
- "train_steps_per_second": 1.009,
1272
- "total_flos": 1.159913454336e+16,
1273
- "train_loss": 1.5156250816748784,
1274
  "epoch": 1.0,
1275
- "step": 1588
1276
  }
1277
  ]
 
1
  [
2
  {
3
+ "eval_loss": 5.064917087554932,
4
+ "eval_runtime": 82.8434,
5
+ "eval_samples_per_second": 6.337,
6
+ "eval_steps_per_second": 1.593,
7
+ "epoch": 0,
8
+ "step": 0
9
+ },
10
+ {
11
+ "loss": 4.4134,
12
+ "grad_norm": 34.756309509277344,
13
  "learning_rate": 1.8e-05,
14
+ "epoch": 0.006222775357809583,
15
  "step": 10
16
  },
17
  {
18
+ "loss": 2.8965,
19
+ "grad_norm": 16.411876678466797,
20
  "learning_rate": 3.8e-05,
21
+ "epoch": 0.012445550715619166,
22
  "step": 20
23
  },
24
  {
25
+ "loss": 2.1559,
26
+ "grad_norm": 10.711593627929688,
27
  "learning_rate": 5.8e-05,
28
+ "epoch": 0.018668326073428748,
29
  "step": 30
30
  },
31
  {
32
+ "loss": 2.0065,
33
+ "grad_norm": 9.655144691467285,
34
  "learning_rate": 7.800000000000001e-05,
35
+ "epoch": 0.024891101431238332,
36
  "step": 40
37
  },
38
  {
39
+ "loss": 1.9285,
40
+ "grad_norm": 10.14815902709961,
41
  "learning_rate": 9.8e-05,
42
+ "epoch": 0.031113876789047916,
43
  "step": 50
44
  },
45
  {
46
+ "loss": 1.905,
47
+ "grad_norm": 9.267602920532227,
48
  "learning_rate": 0.000118,
49
+ "epoch": 0.037336652146857496,
50
  "step": 60
51
  },
52
  {
53
+ "loss": 1.8057,
54
+ "grad_norm": 9.699400901794434,
55
  "learning_rate": 0.000138,
56
+ "epoch": 0.043559427504667084,
57
  "step": 70
58
  },
59
  {
60
+ "loss": 1.6726,
61
+ "grad_norm": 7.2970871925354,
62
+ "learning_rate": 0.00015800000000000002,
63
+ "epoch": 0.049782202862476664,
64
+ "step": 80
 
65
  },
66
  {
67
+ "eval_loss": 1.848530650138855,
68
+ "eval_runtime": 14.1069,
69
+ "eval_samples_per_second": 37.216,
70
+ "eval_steps_per_second": 9.357,
71
+ "epoch": 0.049782202862476664,
72
  "step": 80
73
  },
74
  {
75
+ "loss": 1.7914,
76
+ "grad_norm": 7.156599998474121,
77
  "learning_rate": 0.00017800000000000002,
78
+ "epoch": 0.056004978220286245,
79
  "step": 90
80
  },
81
  {
82
+ "loss": 1.8229,
83
+ "grad_norm": 7.823815822601318,
84
  "learning_rate": 0.00019800000000000002,
85
+ "epoch": 0.06222775357809583,
86
  "step": 100
87
  },
88
  {
89
+ "loss": 1.9023,
90
+ "grad_norm": 8.658170700073242,
91
+ "learning_rate": 0.00019998239988424423,
92
+ "epoch": 0.06845052893590542,
93
  "step": 110
94
  },
95
  {
96
+ "loss": 1.8214,
97
+ "grad_norm": 6.837601184844971,
98
+ "learning_rate": 0.0001999215679316913,
99
+ "epoch": 0.07467330429371499,
100
  "step": 120
101
  },
102
  {
103
+ "loss": 1.8212,
104
+ "grad_norm": 6.444572448730469,
105
+ "learning_rate": 0.00019981731328627206,
106
+ "epoch": 0.08089607965152458,
107
  "step": 130
108
  },
109
  {
110
+ "loss": 1.6969,
111
+ "grad_norm": 7.096024036407471,
112
+ "learning_rate": 0.00019966968125369522,
113
+ "epoch": 0.08711885500933417,
114
  "step": 140
115
  },
116
  {
117
+ "loss": 1.7863,
118
+ "grad_norm": 6.71297550201416,
119
+ "learning_rate": 0.00019947873599008388,
120
+ "epoch": 0.09334163036714374,
121
  "step": 150
122
  },
123
  {
124
+ "loss": 1.6954,
125
+ "grad_norm": 6.715601921081543,
126
+ "learning_rate": 0.00019924456047409517,
127
+ "epoch": 0.09956440572495333,
128
+ "step": 160
 
129
  },
130
  {
131
+ "eval_loss": 1.7422373294830322,
132
+ "eval_runtime": 13.8482,
133
+ "eval_samples_per_second": 37.911,
134
+ "eval_steps_per_second": 9.532,
135
+ "epoch": 0.09956440572495333,
136
  "step": 160
137
  },
138
  {
139
+ "loss": 1.7892,
140
+ "grad_norm": 6.36358118057251,
141
+ "learning_rate": 0.00019896725647086072,
142
+ "epoch": 0.10578718108276292,
143
  "step": 170
144
  },
145
  {
146
+ "loss": 1.7179,
147
+ "grad_norm": 8.09688949584961,
148
+ "learning_rate": 0.0001986469444877626,
149
+ "epoch": 0.11200995644057249,
150
  "step": 180
151
  },
152
  {
153
+ "loss": 1.6861,
154
+ "grad_norm": 5.653729438781738,
155
+ "learning_rate": 0.0001982837637220647,
156
+ "epoch": 0.11823273179838208,
157
  "step": 190
158
  },
159
  {
160
+ "loss": 1.6671,
161
+ "grad_norm": 6.865845203399658,
162
+ "learning_rate": 0.00019787787200042223,
163
+ "epoch": 0.12445550715619166,
164
  "step": 200
165
  },
166
  {
167
+ "loss": 1.7291,
168
+ "grad_norm": 5.955836296081543,
169
+ "learning_rate": 0.00019742944571029517,
170
+ "epoch": 0.13067828251400124,
171
  "step": 210
172
  },
173
  {
174
+ "loss": 1.626,
175
+ "grad_norm": 5.953787803649902,
176
+ "learning_rate": 0.00019693867972329598,
177
+ "epoch": 0.13690105787181084,
178
  "step": 220
179
  },
180
  {
181
+ "loss": 1.5731,
182
+ "grad_norm": 5.453970909118652,
183
+ "learning_rate": 0.00019640578731050488,
184
+ "epoch": 0.1431238332296204,
185
  "step": 230
186
  },
187
  {
188
+ "loss": 1.7516,
189
+ "grad_norm": 6.274188041687012,
190
+ "learning_rate": 0.00019583100004978886,
191
+ "epoch": 0.14934660858742999,
192
+ "step": 240
 
193
  },
194
  {
195
+ "eval_loss": 1.726481556892395,
196
+ "eval_runtime": 14.0063,
197
+ "eval_samples_per_second": 37.483,
198
+ "eval_steps_per_second": 9.424,
199
+ "epoch": 0.14934660858742999,
200
  "step": 240
201
  },
202
  {
203
+ "loss": 1.603,
204
+ "grad_norm": 5.389549732208252,
205
+ "learning_rate": 0.00019521456772516552,
206
+ "epoch": 0.1555693839452396,
207
  "step": 250
208
  },
209
  {
210
+ "loss": 1.6531,
211
+ "grad_norm": 5.605257987976074,
212
+ "learning_rate": 0.0001945567582182551,
213
+ "epoch": 0.16179215930304916,
214
  "step": 260
215
  },
216
  {
217
+ "loss": 1.6709,
218
+ "grad_norm": 6.4445343017578125,
219
+ "learning_rate": 0.00019385785739186746,
220
+ "epoch": 0.16801493466085873,
221
  "step": 270
222
  },
223
  {
224
+ "loss": 1.8325,
225
+ "grad_norm": 4.806204319000244,
226
+ "learning_rate": 0.0001931181689657756,
227
+ "epoch": 0.17423771001866833,
228
  "step": 280
229
  },
230
  {
231
+ "loss": 1.7735,
232
+ "grad_norm": 5.748836994171143,
233
+ "learning_rate": 0.00019233801438472875,
234
+ "epoch": 0.1804604853764779,
235
  "step": 290
236
  },
237
  {
238
+ "loss": 1.7027,
239
+ "grad_norm": 4.680629730224609,
240
+ "learning_rate": 0.00019151773267876273,
241
+ "epoch": 0.18668326073428748,
242
  "step": 300
243
  },
244
  {
245
+ "loss": 1.5229,
246
+ "grad_norm": 5.180474758148193,
247
+ "learning_rate": 0.0001906576803158686,
248
+ "epoch": 0.19290603609209708,
249
  "step": 310
250
  },
251
  {
252
+ "loss": 1.4272,
253
+ "grad_norm": 4.142552852630615,
254
+ "learning_rate": 0.00018975823104708313,
255
+ "epoch": 0.19912881144990666,
256
+ "step": 320
 
257
  },
258
  {
259
+ "eval_loss": 1.6637120246887207,
260
+ "eval_runtime": 14.0189,
261
+ "eval_samples_per_second": 37.45,
262
+ "eval_steps_per_second": 9.416,
263
+ "epoch": 0.19912881144990666,
264
  "step": 320
265
  },
266
  {
267
+ "loss": 1.591,
268
+ "grad_norm": 5.900393486022949,
269
+ "learning_rate": 0.00018881977574406838,
270
+ "epoch": 0.20535158680771623,
271
  "step": 330
272
  },
273
  {
274
+ "loss": 1.681,
275
+ "grad_norm": 5.877817153930664,
276
+ "learning_rate": 0.00018784272222925198,
277
+ "epoch": 0.21157436216552583,
278
  "step": 340
279
  },
280
  {
281
+ "loss": 1.5724,
282
+ "grad_norm": 4.48579216003418,
283
+ "learning_rate": 0.00018682749509860012,
284
+ "epoch": 0.2177971375233354,
285
  "step": 350
286
  },
287
  {
288
+ "loss": 1.6694,
289
+ "grad_norm": 6.317138195037842,
290
+ "learning_rate": 0.00018577453553710215,
291
+ "epoch": 0.22401991288114498,
292
  "step": 360
293
  },
294
  {
295
+ "loss": 1.585,
296
+ "grad_norm": 5.043068885803223,
297
+ "learning_rate": 0.00018468430112704573,
298
+ "epoch": 0.23024268823895458,
299
  "step": 370
300
  },
301
  {
302
+ "loss": 1.4904,
303
+ "grad_norm": 4.478468894958496,
304
+ "learning_rate": 0.00018355726564916628,
305
+ "epoch": 0.23646546359676415,
306
  "step": 380
307
  },
308
  {
309
+ "loss": 1.5321,
310
+ "grad_norm": 6.474656105041504,
311
+ "learning_rate": 0.00018239391887675722,
312
+ "epoch": 0.24268823895457373,
313
  "step": 390
314
  },
315
  {
316
+ "loss": 1.5504,
317
+ "grad_norm": 5.6627726554870605,
318
+ "learning_rate": 0.00018119476636283018,
319
+ "epoch": 0.24891101431238333,
320
+ "step": 400
 
321
  },
322
  {
323
+ "eval_loss": 1.6094003915786743,
324
+ "eval_runtime": 13.9871,
325
+ "eval_samples_per_second": 37.535,
326
+ "eval_steps_per_second": 9.437,
327
+ "epoch": 0.24891101431238333,
328
  "step": 400
329
  },
330
  {
331
+ "loss": 1.5178,
332
+ "grad_norm": 3.671290397644043,
333
+ "learning_rate": 0.00017996032922041797,
334
+ "epoch": 0.2551337896701929,
335
  "step": 410
336
  },
337
  {
338
+ "loss": 1.5326,
339
+ "grad_norm": 4.7752814292907715,
340
+ "learning_rate": 0.00017869114389611575,
341
+ "epoch": 0.2613565650280025,
342
  "step": 420
343
  },
344
  {
345
+ "loss": 1.6097,
346
+ "grad_norm": 4.629915237426758,
347
+ "learning_rate": 0.00017738776193695853,
348
+ "epoch": 0.26757934038581205,
349
  "step": 430
350
  },
351
  {
352
+ "loss": 1.5883,
353
+ "grad_norm": 4.744765281677246,
354
+ "learning_rate": 0.00017605074975073664,
355
+ "epoch": 0.2738021157436217,
356
  "step": 440
357
  },
358
  {
359
+ "loss": 1.5456,
360
+ "grad_norm": 5.553370952606201,
361
+ "learning_rate": 0.00017468068835985325,
362
+ "epoch": 0.28002489110143125,
363
  "step": 450
364
  },
365
  {
366
+ "loss": 1.635,
367
+ "grad_norm": 4.544879913330078,
368
+ "learning_rate": 0.00017327817314883055,
369
+ "epoch": 0.2862476664592408,
370
  "step": 460
371
  },
372
  {
373
+ "loss": 1.3816,
374
+ "grad_norm": 4.572506427764893,
375
+ "learning_rate": 0.00017184381360557498,
376
+ "epoch": 0.2924704418170504,
377
  "step": 470
378
  },
379
  {
380
+ "loss": 1.559,
381
+ "grad_norm": 5.5629119873046875,
382
+ "learning_rate": 0.00017037823305651343,
383
+ "epoch": 0.29869321717485997,
384
+ "step": 480
 
385
  },
386
  {
387
+ "eval_loss": 1.573219656944275,
388
+ "eval_runtime": 13.9728,
389
+ "eval_samples_per_second": 37.573,
390
+ "eval_steps_per_second": 9.447,
391
+ "epoch": 0.29869321717485997,
392
  "step": 480
393
  },
394
  {
395
+ "loss": 1.5028,
396
+ "grad_norm": 4.841222763061523,
397
+ "learning_rate": 0.0001688820683957156,
398
+ "epoch": 0.30491599253266954,
399
  "step": 490
400
  },
401
  {
402
+ "loss": 1.5322,
403
+ "grad_norm": 4.653014183044434,
404
+ "learning_rate": 0.00016735596980812047,
405
+ "epoch": 0.3111387678904792,
406
  "step": 500
407
  },
408
  {
409
+ "loss": 1.5097,
410
+ "grad_norm": 5.121198654174805,
411
+ "learning_rate": 0.0001658006004869867,
412
+ "epoch": 0.31736154324828875,
413
  "step": 510
414
  },
415
  {
416
+ "loss": 1.6415,
417
+ "grad_norm": 5.429177761077881,
418
+ "learning_rate": 0.00016421663634569046,
419
+ "epoch": 0.3235843186060983,
420
  "step": 520
421
  },
422
  {
423
+ "loss": 1.5053,
424
+ "grad_norm": 6.6233673095703125,
425
+ "learning_rate": 0.00016260476572399496,
426
+ "epoch": 0.3298070939639079,
427
  "step": 530
428
  },
429
  {
430
+ "loss": 1.4254,
431
+ "grad_norm": 4.580263137817383,
432
+ "learning_rate": 0.00016096568908892047,
433
+ "epoch": 0.33602986932171747,
434
  "step": 540
435
  },
436
  {
437
+ "loss": 1.5475,
438
+ "grad_norm": 5.61928129196167,
439
+ "learning_rate": 0.00015930011873034375,
440
+ "epoch": 0.3422526446795271,
441
  "step": 550
442
  },
443
  {
444
+ "loss": 1.4719,
445
+ "grad_norm": 5.081675052642822,
446
+ "learning_rate": 0.00015760877845145995,
447
+ "epoch": 0.34847542003733667,
448
+ "step": 560
 
449
  },
450
  {
451
+ "eval_loss": 1.572365403175354,
452
+ "eval_runtime": 14.0923,
453
+ "eval_samples_per_second": 37.254,
454
+ "eval_steps_per_second": 9.367,
455
+ "epoch": 0.34847542003733667,
456
  "step": 560
457
  },
458
  {
459
+ "loss": 1.5566,
460
+ "grad_norm": 4.780381679534912,
461
+ "learning_rate": 0.00015589240325424088,
462
+ "epoch": 0.35469819539514624,
463
  "step": 570
464
  },
465
  {
466
+ "loss": 1.5206,
467
+ "grad_norm": 4.883270740509033,
468
+ "learning_rate": 0.00015415173902002703,
469
+ "epoch": 0.3609209707529558,
470
  "step": 580
471
  },
472
  {
473
+ "loss": 1.3941,
474
+ "grad_norm": 6.177889823913574,
475
+ "learning_rate": 0.00015238754218539156,
476
+ "epoch": 0.3671437461107654,
477
  "step": 590
478
  },
479
  {
480
+ "loss": 1.4619,
481
+ "grad_norm": 4.226222038269043,
482
+ "learning_rate": 0.00015060057941341718,
483
+ "epoch": 0.37336652146857496,
484
  "step": 600
485
  },
486
  {
487
+ "loss": 1.3478,
488
+ "grad_norm": 5.7228102684021,
489
+ "learning_rate": 0.00014879162726052928,
490
+ "epoch": 0.3795892968263846,
491
  "step": 610
492
  },
493
  {
494
+ "loss": 1.5298,
495
+ "grad_norm": 4.754924774169922,
496
+ "learning_rate": 0.0001469614718390295,
497
+ "epoch": 0.38581207218419417,
498
  "step": 620
499
  },
500
  {
501
+ "loss": 1.4809,
502
+ "grad_norm": 5.708168983459473,
503
+ "learning_rate": 0.00014511090847547643,
504
+ "epoch": 0.39203484754200374,
505
  "step": 630
506
  },
507
  {
508
+ "loss": 1.5381,
509
+ "grad_norm": 5.013388633728027,
510
+ "learning_rate": 0.00014324074136506284,
511
+ "epoch": 0.3982576228998133,
512
+ "step": 640
 
513
  },
514
  {
515
+ "eval_loss": 1.5396426916122437,
516
+ "eval_runtime": 13.9405,
517
+ "eval_samples_per_second": 37.66,
518
+ "eval_steps_per_second": 9.469,
519
+ "epoch": 0.3982576228998133,
520
  "step": 640
521
  },
522
  {
523
+ "loss": 1.4894,
524
+ "grad_norm": 5.063615322113037,
525
+ "learning_rate": 0.00014135178322213765,
526
+ "epoch": 0.4044803982576229,
527
  "step": 650
528
  },
529
  {
530
+ "loss": 1.5547,
531
+ "grad_norm": 4.9530744552612305,
532
+ "learning_rate": 0.00013944485492702716,
533
+ "epoch": 0.41070317361543246,
534
  "step": 660
535
  },
536
  {
537
+ "loss": 1.4292,
538
+ "grad_norm": 4.819840908050537,
539
+ "learning_rate": 0.00013752078516930652,
540
+ "epoch": 0.4169259489732421,
541
  "step": 670
542
  },
543
  {
544
+ "loss": 1.556,
545
+ "grad_norm": 4.666694641113281,
546
+ "learning_rate": 0.00013558041008767798,
547
+ "epoch": 0.42314872433105166,
548
  "step": 680
549
  },
550
  {
551
+ "loss": 1.5216,
552
+ "grad_norm": 5.643951416015625,
553
+ "learning_rate": 0.00013362457290661215,
554
+ "epoch": 0.42937149968886124,
555
  "step": 690
556
  },
557
  {
558
+ "loss": 1.5768,
559
+ "grad_norm": 6.549987316131592,
560
+ "learning_rate": 0.00013165412356990955,
561
+ "epoch": 0.4355942750466708,
562
  "step": 700
563
  },
564
  {
565
+ "loss": 1.4482,
566
+ "grad_norm": 5.201975345611572,
567
+ "learning_rate": 0.0001296699183713427,
568
+ "epoch": 0.4418170504044804,
569
  "step": 710
570
  },
571
  {
572
+ "loss": 1.4855,
573
+ "grad_norm": 4.325445652008057,
574
+ "learning_rate": 0.0001276728195825383,
575
+ "epoch": 0.44803982576228996,
576
+ "step": 720
 
577
  },
578
  {
579
+ "eval_loss": 1.5151004791259766,
580
+ "eval_runtime": 13.9174,
581
+ "eval_samples_per_second": 37.723,
582
+ "eval_steps_per_second": 9.485,
583
+ "epoch": 0.44803982576228996,
584
  "step": 720
585
  },
586
  {
587
+ "loss": 1.4242,
588
+ "grad_norm": 6.4271931648254395,
589
+ "learning_rate": 0.00012566369507826175,
590
+ "epoch": 0.4542626011200996,
591
  "step": 730
592
  },
593
  {
594
+ "loss": 1.544,
595
+ "grad_norm": 4.974382400512695,
596
+ "learning_rate": 0.00012364341795926683,
597
+ "epoch": 0.46048537647790916,
598
  "step": 740
599
  },
600
  {
601
+ "loss": 1.3544,
602
+ "grad_norm": 4.475541114807129,
603
+ "learning_rate": 0.00012161286617287419,
604
+ "epoch": 0.46670815183571873,
605
  "step": 750
606
  },
607
  {
608
+ "loss": 1.5565,
609
+ "grad_norm": 4.763009548187256,
610
+ "learning_rate": 0.00011957292213144385,
611
+ "epoch": 0.4729309271935283,
612
  "step": 760
613
  },
614
  {
615
+ "loss": 1.4961,
616
+ "grad_norm": 5.890961647033691,
617
+ "learning_rate": 0.00011752447232890702,
618
+ "epoch": 0.4791537025513379,
619
  "step": 770
620
  },
621
  {
622
+ "loss": 1.4762,
623
+ "grad_norm": 5.207292556762695,
624
+ "learning_rate": 0.00011546840695552466,
625
+ "epoch": 0.48537647790914745,
626
  "step": 780
627
  },
628
  {
629
+ "loss": 1.5207,
630
+ "grad_norm": 4.962773323059082,
631
+ "learning_rate": 0.0001134056195110393,
632
+ "epoch": 0.4915992532669571,
633
  "step": 790
634
  },
635
  {
636
+ "loss": 1.3912,
637
+ "grad_norm": 4.377303123474121,
638
+ "learning_rate": 0.00011133700641638891,
639
+ "epoch": 0.49782202862476665,
640
+ "step": 800
 
641
  },
642
  {
643
+ "eval_loss": 1.4861326217651367,
644
+ "eval_runtime": 13.9515,
645
+ "eval_samples_per_second": 37.63,
646
+ "eval_steps_per_second": 9.461,
647
+ "epoch": 0.49782202862476665,
648
  "step": 800
649
  },
650
  {
651
+ "loss": 1.3795,
652
+ "grad_norm": 4.376067161560059,
653
+ "learning_rate": 0.0001092634666241513,
654
+ "epoch": 0.5040448039825762,
655
  "step": 810
656
  },
657
  {
658
+ "loss": 1.4531,
659
+ "grad_norm": 4.802002429962158,
660
+ "learning_rate": 0.00010718590122788821,
661
+ "epoch": 0.5102675793403858,
662
  "step": 820
663
  },
664
  {
665
+ "loss": 1.435,
666
+ "grad_norm": 4.865792751312256,
667
+ "learning_rate": 0.00010510521307055914,
668
+ "epoch": 0.5164903546981954,
669
  "step": 830
670
  },
671
  {
672
+ "loss": 1.4412,
673
+ "grad_norm": 5.106067180633545,
674
+ "learning_rate": 0.000103022306352175,
675
+ "epoch": 0.522713130056005,
676
  "step": 840
677
  },
678
  {
679
+ "loss": 1.398,
680
+ "grad_norm": 4.740355491638184,
681
+ "learning_rate": 0.00010093808623686165,
682
+ "epoch": 0.5289359054138145,
683
  "step": 850
684
  },
685
  {
686
+ "loss": 1.5138,
687
+ "grad_norm": 4.870340347290039,
688
+ "learning_rate": 9.88534584595051e-05,
689
+ "epoch": 0.5351586807716241,
690
  "step": 860
691
  },
692
  {
693
+ "loss": 1.4865,
694
+ "grad_norm": 4.641928195953369,
695
+ "learning_rate": 9.676932893214805e-05,
696
+ "epoch": 0.5413814561294338,
697
+ "step": 870
 
698
  },
699
  {
700
+ "loss": 1.3906,
701
+ "grad_norm": 6.179795742034912,
702
+ "learning_rate": 9.46866033503098e-05,
703
+ "epoch": 0.5476042314872434,
704
+ "step": 880
705
  },
706
  {
707
+ "eval_loss": 1.473583459854126,
708
+ "eval_runtime": 13.9209,
709
+ "eval_samples_per_second": 37.713,
710
+ "eval_steps_per_second": 9.482,
711
+ "epoch": 0.5476042314872434,
712
  "step": 880
713
  },
714
  {
715
+ "loss": 1.5219,
716
+ "grad_norm": 5.138612270355225,
717
+ "learning_rate": 9.260618679940025e-05,
718
+ "epoch": 0.5538270068450529,
719
  "step": 890
720
  },
721
  {
722
+ "loss": 1.4397,
723
+ "grad_norm": 4.696632385253906,
724
+ "learning_rate": 9.05289833613988e-05,
725
+ "epoch": 0.5600497822028625,
726
  "step": 900
727
  },
728
  {
729
+ "loss": 1.5194,
730
+ "grad_norm": 5.26527738571167,
731
+ "learning_rate": 8.845589572196961e-05,
732
+ "epoch": 0.5662725575606721,
733
  "step": 910
734
  },
735
  {
736
+ "loss": 1.388,
737
+ "grad_norm": 4.302639961242676,
738
+ "learning_rate": 8.638782477818334e-05,
739
+ "epoch": 0.5724953329184816,
740
  "step": 920
741
  },
742
  {
743
+ "loss": 1.3796,
744
+ "grad_norm": 5.462881565093994,
745
+ "learning_rate": 8.432566924701659e-05,
746
+ "epoch": 0.5787181082762912,
747
  "step": 930
748
  },
749
  {
750
+ "loss": 1.4552,
751
+ "grad_norm": 5.315045356750488,
752
+ "learning_rate": 8.227032527479806e-05,
753
+ "epoch": 0.5849408836341008,
754
  "step": 940
755
  },
756
  {
757
+ "loss": 1.3473,
758
+ "grad_norm": 4.484452247619629,
759
+ "learning_rate": 8.022268604777271e-05,
760
+ "epoch": 0.5911636589919104,
761
+ "step": 950
 
762
  },
763
  {
764
+ "loss": 1.4053,
765
+ "grad_norm": 4.7990312576293945,
766
+ "learning_rate": 7.818364140395137e-05,
767
+ "epoch": 0.5973864343497199,
768
+ "step": 960
769
  },
770
  {
771
+ "eval_loss": 1.4610518217086792,
772
+ "eval_runtime": 14.0919,
773
+ "eval_samples_per_second": 37.255,
774
+ "eval_steps_per_second": 9.367,
775
+ "epoch": 0.5973864343497199,
776
  "step": 960
777
  },
778
  {
779
+ "loss": 1.4184,
780
+ "grad_norm": 5.96822452545166,
781
+ "learning_rate": 7.615407744641619e-05,
782
+ "epoch": 0.6036092097075295,
783
  "step": 970
784
  },
785
  {
786
+ "loss": 1.495,
787
+ "grad_norm": 4.883596420288086,
788
+ "learning_rate": 7.413487615824847e-05,
789
+ "epoch": 0.6098319850653391,
790
  "step": 980
791
  },
792
  {
793
+ "loss": 1.4563,
794
+ "grad_norm": 4.199883460998535,
795
+ "learning_rate": 7.212691501924753e-05,
796
+ "epoch": 0.6160547604231488,
797
  "step": 990
798
  },
799
  {
800
+ "loss": 1.4791,
801
+ "grad_norm": 4.85598611831665,
802
+ "learning_rate": 7.013106662460604e-05,
803
+ "epoch": 0.6222775357809583,
804
  "step": 1000
805
  },
806
  {
807
+ "loss": 1.4621,
808
+ "grad_norm": 5.302894115447998,
809
+ "learning_rate": 6.81481983057085e-05,
810
+ "epoch": 0.6285003111387679,
811
  "step": 1010
812
  },
813
  {
814
+ "loss": 1.3599,
815
+ "grad_norm": 4.943319797515869,
816
+ "learning_rate": 6.617917175321669e-05,
817
+ "epoch": 0.6347230864965775,
818
  "step": 1020
819
  },
820
  {
821
+ "loss": 1.2883,
822
+ "grad_norm": 6.421422958374023,
823
+ "learning_rate": 6.422484264260698e-05,
824
+ "epoch": 0.6409458618543871,
825
+ "step": 1030
 
826
  },
827
  {
828
+ "loss": 1.392,
829
+ "grad_norm": 4.642984867095947,
830
+ "learning_rate": 6.228606026232118e-05,
831
+ "epoch": 0.6471686372121966,
832
+ "step": 1040
833
  },
834
  {
835
+ "eval_loss": 1.450961709022522,
836
+ "eval_runtime": 13.9604,
837
+ "eval_samples_per_second": 37.606,
838
+ "eval_steps_per_second": 9.455,
839
+ "epoch": 0.6471686372121966,
840
  "step": 1040
841
  },
842
  {
843
+ "loss": 1.3627,
844
+ "grad_norm": 4.882229328155518,
845
+ "learning_rate": 6.0363667144693105e-05,
846
+ "epoch": 0.6533914125700062,
847
  "step": 1050
848
  },
849
  {
850
+ "loss": 1.4695,
851
+ "grad_norm": 4.268496990203857,
852
+ "learning_rate": 5.845849869981137e-05,
853
+ "epoch": 0.6596141879278158,
854
  "step": 1060
855
  },
856
  {
857
+ "loss": 1.2919,
858
+ "grad_norm": 4.607876777648926,
859
+ "learning_rate": 5.657138285247687e-05,
860
+ "epoch": 0.6658369632856254,
861
  "step": 1070
862
  },
863
  {
864
+ "loss": 1.3095,
865
+ "grad_norm": 5.3004937171936035,
866
+ "learning_rate": 5.4703139682413586e-05,
867
+ "epoch": 0.6720597386434349,
868
  "step": 1080
869
  },
870
  {
871
+ "loss": 1.4059,
872
+ "grad_norm": 4.090771675109863,
873
+ "learning_rate": 5.285458106788807e-05,
874
+ "epoch": 0.6782825140012445,
875
  "step": 1090
876
  },
877
  {
878
+ "loss": 1.2986,
879
+ "grad_norm": 4.546812057495117,
880
+ "learning_rate": 5.10265103328937e-05,
881
+ "epoch": 0.6845052893590542,
882
  "step": 1100
883
  },
884
  {
885
+ "loss": 1.3874,
886
+ "grad_norm": 4.813508987426758,
887
+ "learning_rate": 4.921972189805154e-05,
888
+ "epoch": 0.6907280647168638,
889
+ "step": 1110
 
890
  },
891
  {
892
+ "loss": 1.5213,
893
+ "grad_norm": 4.514693737030029,
894
+ "learning_rate": 4.7435000935381115e-05,
895
+ "epoch": 0.6969508400746733,
896
+ "step": 1120
897
  },
898
  {
899
+ "eval_loss": 1.4407389163970947,
900
+ "eval_runtime": 14.4277,
901
+ "eval_samples_per_second": 36.388,
902
+ "eval_steps_per_second": 9.149,
903
+ "epoch": 0.6969508400746733,
904
  "step": 1120
905
  },
906
  {
907
+ "loss": 1.3087,
908
+ "grad_norm": 4.339325428009033,
909
+ "learning_rate": 4.567312302708965e-05,
910
+ "epoch": 0.7031736154324829,
911
  "step": 1130
912
  },
913
  {
914
+ "loss": 1.5258,
915
+ "grad_norm": 7.012087821960449,
916
+ "learning_rate": 4.393485382852935e-05,
917
+ "epoch": 0.7093963907902925,
918
  "step": 1140
919
  },
920
  {
921
+ "loss": 1.2682,
922
+ "grad_norm": 4.673589706420898,
923
+ "learning_rate": 4.2220948735467967e-05,
924
+ "epoch": 0.7156191661481021,
925
  "step": 1150
926
  },
927
  {
928
+ "loss": 1.3627,
929
+ "grad_norm": 5.091920852661133,
930
+ "learning_rate": 4.053215255581844e-05,
931
+ "epoch": 0.7218419415059116,
932
  "step": 1160
933
  },
934
  {
935
+ "loss": 1.5111,
936
+ "grad_norm": 4.602088928222656,
937
+ "learning_rate": 3.886919918596894e-05,
938
+ "epoch": 0.7280647168637212,
939
  "step": 1170
940
  },
941
  {
942
+ "loss": 1.3743,
943
+ "grad_norm": 4.942876815795898,
944
+ "learning_rate": 3.723281129185574e-05,
945
+ "epoch": 0.7342874922215308,
946
  "step": 1180
947
  },
948
  {
949
+ "loss": 1.3959,
950
+ "grad_norm": 4.139978885650635,
951
+ "learning_rate": 3.562369999491536e-05,
952
+ "epoch": 0.7405102675793404,
953
+ "step": 1190
 
954
  },
955
  {
956
+ "loss": 1.4383,
957
+ "grad_norm": 5.013376235961914,
958
+ "learning_rate": 3.4042564563054526e-05,
959
+ "epoch": 0.7467330429371499,
960
+ "step": 1200
961
  },
962
  {
963
+ "eval_loss": 1.4313360452651978,
964
+ "eval_runtime": 14.3246,
965
+ "eval_samples_per_second": 36.65,
966
+ "eval_steps_per_second": 9.215,
967
+ "epoch": 0.7467330429371499,
968
  "step": 1200
969
  },
970
  {
971
+ "loss": 1.3621,
972
+ "grad_norm": 5.042903900146484,
973
+ "learning_rate": 3.249009210677054e-05,
974
+ "epoch": 0.7529558182949595,
975
  "step": 1210
976
  },
977
  {
978
+ "loss": 1.4528,
979
+ "grad_norm": 4.191718101501465,
980
+ "learning_rate": 3.096695728055536e-05,
981
+ "epoch": 0.7591785936527692,
982
  "step": 1220
983
  },
984
  {
985
+ "loss": 1.326,
986
+ "grad_norm": 4.906574249267578,
987
+ "learning_rate": 2.9473821989712625e-05,
988
+ "epoch": 0.7654013690105788,
989
  "step": 1230
990
  },
991
  {
992
+ "loss": 1.3792,
993
+ "grad_norm": 5.21110200881958,
994
+ "learning_rate": 2.801133510271463e-05,
995
+ "epoch": 0.7716241443683883,
996
  "step": 1240
997
  },
998
  {
999
+ "loss": 1.3634,
1000
+ "grad_norm": 5.0998430252075195,
1001
+ "learning_rate": 2.6580132169225335e-05,
1002
+ "epoch": 0.7778469197261979,
1003
  "step": 1250
1004
  },
1005
  {
1006
+ "loss": 1.378,
1007
+ "grad_norm": 5.857067108154297,
1008
+ "learning_rate": 2.5180835143910732e-05,
1009
+ "epoch": 0.7840696950840075,
1010
  "step": 1260
1011
  },
1012
  {
1013
+ "loss": 1.2895,
1014
+ "grad_norm": 4.248624801635742,
1015
+ "learning_rate": 2.3814052116157492e-05,
1016
+ "epoch": 0.790292470441817,
1017
+ "step": 1270
 
1018
  },
1019
  {
1020
+ "loss": 1.3369,
1021
+ "grad_norm": 4.634941577911377,
1022
+ "learning_rate": 2.248037704581686e-05,
1023
+ "epoch": 0.7965152457996266,
1024
+ "step": 1280
1025
  },
1026
  {
1027
+ "eval_loss": 1.4184999465942383,
1028
+ "eval_runtime": 14.0409,
1029
+ "eval_samples_per_second": 37.391,
1030
+ "eval_steps_per_second": 9.401,
1031
+ "epoch": 0.7965152457996266,
1032
  "step": 1280
1033
  },
1034
  {
1035
+ "loss": 1.2569,
1036
+ "grad_norm": 4.819410800933838,
1037
+ "learning_rate": 2.1180389505089004e-05,
1038
+ "epoch": 0.8027380211574362,
1039
  "step": 1290
1040
  },
1041
  {
1042
+ "loss": 1.2557,
1043
+ "grad_norm": 4.907857894897461,
1044
+ "learning_rate": 1.9914654426659374e-05,
1045
+ "epoch": 0.8089607965152458,
1046
  "step": 1300
1047
  },
1048
  {
1049
+ "loss": 1.4703,
1050
+ "grad_norm": 4.4456000328063965,
1051
+ "learning_rate": 1.8683721858197366e-05,
1052
+ "epoch": 0.8151835718730553,
1053
  "step": 1310
1054
  },
1055
  {
1056
+ "loss": 1.359,
1057
+ "grad_norm": 5.10971736907959,
1058
+ "learning_rate": 1.7488126723323183e-05,
1059
+ "epoch": 0.8214063472308649,
1060
  "step": 1320
1061
  },
1062
  {
1063
+ "loss": 1.3467,
1064
+ "grad_norm": 4.865292549133301,
1065
+ "learning_rate": 1.632838858914747e-05,
1066
+ "epoch": 0.8276291225886746,
1067
  "step": 1330
1068
  },
1069
  {
1070
+ "loss": 1.41,
1071
+ "grad_norm": 4.803621292114258,
1072
+ "learning_rate": 1.5205011440483929e-05,
1073
+ "epoch": 0.8338518979464842,
1074
  "step": 1340
1075
  },
1076
  {
1077
+ "loss": 1.4062,
1078
+ "grad_norm": 4.7581377029418945,
1079
+ "learning_rate": 1.4118483460834064e-05,
1080
+ "epoch": 0.8400746733042938,
1081
+ "step": 1350
 
1082
  },
1083
  {
1084
+ "loss": 1.375,
1085
+ "grad_norm": 5.33804988861084,
1086
+ "learning_rate": 1.3069276820237997e-05,
1087
+ "epoch": 0.8462974486621033,
1088
+ "step": 1360
1089
  },
1090
  {
1091
+ "eval_loss": 1.4135597944259644,
1092
+ "eval_runtime": 14.1252,
1093
+ "eval_samples_per_second": 37.168,
1094
+ "eval_steps_per_second": 9.345,
1095
+ "epoch": 0.8462974486621033,
1096
  "step": 1360
1097
  },
1098
  {
1099
+ "loss": 1.4474,
1100
+ "grad_norm": 4.493839263916016,
1101
+ "learning_rate": 1.2057847470084993e-05,
1102
+ "epoch": 0.8525202240199129,
1103
  "step": 1370
1104
  },
1105
  {
1106
+ "loss": 1.3765,
1107
+ "grad_norm": 3.7897987365722656,
1108
+ "learning_rate": 1.108463494497135e-05,
1109
+ "epoch": 0.8587429993777225,
1110
  "step": 1380
1111
  },
1112
  {
1113
+ "loss": 1.3583,
1114
+ "grad_norm": 3.9571006298065186,
1115
+ "learning_rate": 1.0150062171693076e-05,
1116
+ "epoch": 0.864965774735532,
1117
  "step": 1390
1118
  },
1119
  {
1120
+ "loss": 1.4705,
1121
+ "grad_norm": 4.610692501068115,
1122
+ "learning_rate": 9.254535285455334e-06,
1123
+ "epoch": 0.8711885500933416,
1124
  "step": 1400
1125
  },
1126
  {
1127
+ "loss": 1.3517,
1128
+ "grad_norm": 4.550515651702881,
1129
+ "learning_rate": 8.398443453379267e-06,
1130
+ "epoch": 0.8774113254511512,
1131
  "step": 1410
1132
  },
1133
  {
1134
+ "loss": 1.2454,
1135
+ "grad_norm": 4.898622512817383,
1136
+ "learning_rate": 7.582158705382581e-06,
1137
+ "epoch": 0.8836341008089608,
1138
  "step": 1420
1139
  },
1140
  {
1141
+ "loss": 1.3031,
1142
+ "grad_norm": 4.423801422119141,
1143
+ "learning_rate": 6.806035772507169e-06,
1144
+ "epoch": 0.8898568761667703,
1145
+ "step": 1430
 
1146
  },
1147
  {
1148
+ "loss": 1.3421,
1149
+ "grad_norm": 3.7221221923828125,
1150
+ "learning_rate": 6.070411932764586e-06,
1151
+ "epoch": 0.8960796515245799,
1152
+ "step": 1440
1153
  },
1154
  {
1155
+ "eval_loss": 1.4087599515914917,
1156
+ "eval_runtime": 14.0409,
1157
+ "eval_samples_per_second": 37.391,
1158
+ "eval_steps_per_second": 9.401,
1159
+ "epoch": 0.8960796515245799,
1160
  "step": 1440
1161
  },
1162
  {
1163
+ "loss": 1.3722,
1164
+ "grad_norm": 5.566176414489746,
1165
+ "learning_rate": 5.375606864565785e-06,
1166
+ "epoch": 0.9023024268823896,
1167
  "step": 1450
1168
  },
1169
  {
1170
+ "loss": 1.4635,
1171
+ "grad_norm": 5.002288818359375,
1172
+ "learning_rate": 4.721922507799248e-06,
1173
+ "epoch": 0.9085252022401992,
1174
  "step": 1460
1175
  },
1176
  {
1177
+ "loss": 1.2757,
1178
+ "grad_norm": 3.9484496116638184,
1179
+ "learning_rate": 4.10964293261763e-06,
1180
+ "epoch": 0.9147479775980087,
1181
  "step": 1470
1182
  },
1183
  {
1184
+ "loss": 1.3995,
1185
+ "grad_norm": 5.582644939422607,
1186
+ "learning_rate": 3.5390342159900223e-06,
1187
+ "epoch": 0.9209707529558183,
1188
  "step": 1480
1189
  },
1190
  {
1191
+ "loss": 1.3435,
1192
+ "grad_norm": 4.107953071594238,
1193
+ "learning_rate": 3.0103443260734554e-06,
1194
+ "epoch": 0.9271935283136279,
1195
  "step": 1490
1196
  },
1197
  {
1198
+ "loss": 1.4009,
1199
+ "grad_norm": 4.991889953613281,
1200
+ "learning_rate": 2.5238030144539737e-06,
1201
+ "epoch": 0.9334163036714375,
1202
  "step": 1500
1203
  },
1204
  {
1205
+ "loss": 1.4222,
1206
+ "grad_norm": 4.622715473175049,
1207
+ "learning_rate": 2.079621716303959e-06,
1208
+ "epoch": 0.939639079029247,
1209
+ "step": 1510
 
1210
  },
1211
  {
1212
+ "loss": 1.3094,
1213
+ "grad_norm": 3.724646806716919,
1214
+ "learning_rate": 1.6779934584992718e-06,
1215
+ "epoch": 0.9458618543870566,
1216
+ "step": 1520
1217
  },
1218
  {
1219
+ "eval_loss": 1.408400058746338,
1220
+ "eval_runtime": 14.2644,
1221
+ "eval_samples_per_second": 36.805,
1222
+ "eval_steps_per_second": 9.254,
1223
+ "epoch": 0.9458618543870566,
1224
  "step": 1520
1225
  },
1226
  {
1227
+ "loss": 1.2012,
1228
+ "grad_norm": 5.017258644104004,
1229
+ "learning_rate": 1.3190927757358973e-06,
1230
+ "epoch": 0.9520846297448662,
1231
  "step": 1530
1232
  },
1233
  {
1234
+ "loss": 1.4522,
1235
+ "grad_norm": 5.213080883026123,
1236
+ "learning_rate": 1.0030756346829151e-06,
1237
+ "epoch": 0.9583074051026758,
1238
  "step": 1540
1239
  },
1240
  {
1241
+ "loss": 1.4536,
1242
+ "grad_norm": 4.179771900177002,
1243
+ "learning_rate": 7.300793662043282e-07,
1244
+ "epoch": 0.9645301804604853,
1245
  "step": 1550
1246
  },
1247
  {
1248
+ "loss": 1.3803,
1249
+ "grad_norm": 4.139328479766846,
1250
+ "learning_rate": 5.002226056795123e-07,
1251
+ "epoch": 0.9707529558182949,
1252
  "step": 1560
1253
  },
1254
  {
1255
+ "loss": 1.4377,
1256
+ "grad_norm": 5.55445671081543,
1257
+ "learning_rate": 3.1360524144810055e-07,
1258
+ "epoch": 0.9769757311761046,
1259
  "step": 1570
1260
  },
1261
  {
1262
+ "loss": 1.3551,
1263
+ "grad_norm": 6.75304651260376,
1264
+ "learning_rate": 1.703083714017617e-07,
1265
+ "epoch": 0.9831985065339142,
1266
  "step": 1580
1267
  },
1268
  {
1269
+ "loss": 1.4783,
1270
+ "grad_norm": 5.284483432769775,
1271
+ "learning_rate": 7.039426774164693e-08,
1272
+ "epoch": 0.9894212818917237,
1273
+ "step": 1590
1274
+ },
1275
+ {
1276
+ "loss": 1.4281,
1277
+ "grad_norm": 5.420683860778809,
1278
+ "learning_rate": 1.3906349916881222e-08,
1279
+ "epoch": 0.9956440572495333,
1280
+ "step": 1600
1281
+ },
1282
+ {
1283
+ "eval_loss": 1.4093519449234009,
1284
+ "eval_runtime": 14.2389,
1285
+ "eval_samples_per_second": 36.871,
1286
+ "eval_steps_per_second": 9.27,
1287
+ "epoch": 0.9956440572495333,
1288
+ "step": 1600
1289
  },
1290
  {
1291
+ "train_runtime": 1590.5658,
1292
+ "train_samples_per_second": 16.162,
1293
+ "train_steps_per_second": 1.01,
1294
+ "total_flos": 1.172369019552e+16,
1295
+ "train_loss": 1.5245253444830675,
1296
  "epoch": 1.0,
1297
+ "step": 1607
1298
  }
1299
  ]
train/training_loss.png CHANGED
train/validation_loss.png CHANGED