AlekseyKorshuk commited on
Commit
2f9c840
1 Parent(s): b3c5467

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/metallica
5
+ tags:
6
+ - huggingartists
7
+ - lyrics
8
+ - lm-head
9
+ - causal-lm
10
+ widget:
11
+ - text: "I am"
12
+ ---
13
+
14
+ <div class="inline-flex flex-col" style="line-height: 1.5;">
15
+ <div class="flex">
16
+ <div
17
+ style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/b04166fa115f4e8aae2c30f301ae52ba.480x480x1.jpg&#39;)">
18
+ </div>
19
+ </div>
20
+ <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
21
+ <div style="text-align: center; font-size: 16px; font-weight: 800">Metallica</div>
22
+ <a href="https://genius.com/artists/metallica">
23
+ <div style="text-align: center; font-size: 14px;">@metallica</div>
24
+ </a>
25
+ </div>
26
+
27
+ I was made with [huggingartists](https://github.com/AlekseyKorshuk/huggingartists).
28
+
29
+ Create your own bot based on your favorite artist with [the demo](https://colab.research.google.com/github/AlekseyKorshuk/huggingartists/blob/master/huggingartists-demo.ipynb)!
30
+
31
+ ## How does it work?
32
+
33
+ To understand how the model was developed, check the [W&B report](https://wandb.ai/huggingartists/huggingartists/reportlist).
34
+
35
+ ## Training data
36
+
37
+ The model was trained on lyrics from Metallica.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/metallica).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/metallica")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/30glu695/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline.
49
+
50
+ ## Training procedure
51
+
52
+ The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on Metallica's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/2m1o5q6p) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/2m1o5q6p/artifacts) is logged and versioned.
57
+
58
+ ## How to use
59
+
60
+ You can use this model directly with a pipeline for text generation:
61
+
62
+ ```python
63
+ from transformers import pipeline
64
+ generator = pipeline('text-generation',
65
+ model='huggingartists/metallica')
66
+ generator("I am", num_return_sequences=5)
67
+ ```
68
+
69
+ Or with Transformers library:
70
+
71
+ ```python
72
+ from transformers import AutoTokenizer, AutoModelWithLMHead
73
+
74
+ tokenizer = AutoTokenizer.from_pretrained("huggingartists/metallica")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/metallica")
77
+ ```
78
+
79
+ ## Limitations and bias
80
+
81
+ The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias).
82
+
83
+ In addition, the data present in the user's tweets further affects the text generated by the model.
84
+
85
+ ## About
86
+
87
+ *Built by Aleksey Korshuk*
88
+
89
+ [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk)
90
+
91
+ [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
92
+
93
+ [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
94
+
95
+ For more details, visit the project repository.
96
+
97
+ [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "metallica",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2LMHeadModel"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 768,
16
+ "n_head": 12,
17
+ "n_inner": null,
18
+ "n_layer": 12,
19
+ "n_positions": 1024,
20
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 200,
33
+ "min_length": 100,
34
+ "temperature": 1.0,
35
+ "top_p": 0.95
36
+ }
37
+ },
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.19.1",
40
+ "use_cache": true,
41
+ "vocab_size": 50257
42
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"eval_loss": 3.0450499057769775, "eval_runtime": 3.7515, "eval_samples_per_second": 43.449, "eval_steps_per_second": 5.598, "epoch": 5.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:738b0430eb900f7d2414b5e7bdba27aab418b7f70b324c956d9590716a208951
3
+ size 497764120
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cfade080baa0bc9333bfb79db98aea4397f748c93c9458dffb6104379f4fa6c
3
+ size 995604017
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:112d9c3ad682a23938f204ee05b28bf337cf8bce10886626825ed989c2a34cc6
3
+ size 510396521
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d4780b3c82eb6d52fa4678c301c114b864f4f33add27357847e1a28ec3a1f62
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:799431c9df9be86fdf166619b508adb0bf4df878284cae689fc0164411e1f32b
3
+ size 623
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "unk_token": "<|endoftext|>"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "<|endoftext|>", "bos_token": "<|endoftext|>", "eos_token": "<|endoftext|>", "add_prefix_space": false, "model_max_length": 1024, "special_tokens_map_file": null, "name_or_path": "gpt2", "tokenizer_class": "GPT2Tokenizer"}
trainer_state.json ADDED
@@ -0,0 +1,434 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 3.0450499057769775,
3
+ "best_model_checkpoint": "output/metallica/checkpoint-315",
4
+ "epoch": 5.0,
5
+ "global_step": 315,
6
+ "is_hyper_param_search": false,
7
+ "is_local_process_zero": true,
8
+ "is_world_process_zero": true,
9
+ "log_history": [
10
+ {
11
+ "epoch": 0.08,
12
+ "learning_rate": 0.00013507870183531476,
13
+ "loss": 3.3881,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.16,
18
+ "learning_rate": 0.00012884599993319768,
19
+ "loss": 3.3444,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.24,
24
+ "learning_rate": 0.00011888735840752609,
25
+ "loss": 3.3036,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.32,
30
+ "learning_rate": 0.0001058186737011911,
31
+ "loss": 3.3353,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.4,
36
+ "learning_rate": 9.044818420726556e-05,
37
+ "loss": 3.2497,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.48,
42
+ "learning_rate": 7.372648442002871e-05,
43
+ "loss": 3.2277,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.56,
48
+ "learning_rate": 5.668773501204858e-05,
49
+ "loss": 3.0355,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.63,
54
+ "learning_rate": 4.0385704725240065e-05,
55
+ "loss": 2.898,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.71,
60
+ "learning_rate": 2.5828599592490882e-05,
61
+ "loss": 2.9592,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.79,
66
+ "learning_rate": 1.3916710004507539e-05,
67
+ "loss": 2.9574,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.87,
72
+ "learning_rate": 5.38673186569003e-06,
73
+ "loss": 2.9963,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.95,
78
+ "learning_rate": 7.662053209561833e-07,
79
+ "loss": 2.9366,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 1.0,
84
+ "eval_loss": 3.13543438911438,
85
+ "eval_runtime": 3.4469,
86
+ "eval_samples_per_second": 47.289,
87
+ "eval_steps_per_second": 6.092,
88
+ "step": 63
89
+ },
90
+ {
91
+ "epoch": 1.03,
92
+ "learning_rate": 3.408888099334633e-07,
93
+ "loss": 2.948,
94
+ "step": 65
95
+ },
96
+ {
97
+ "epoch": 1.11,
98
+ "learning_rate": 4.137086214086682e-06,
99
+ "loss": 2.811,
100
+ "step": 70
101
+ },
102
+ {
103
+ "epoch": 1.19,
104
+ "learning_rate": 1.1920020081922749e-05,
105
+ "loss": 2.9051,
106
+ "step": 75
107
+ },
108
+ {
109
+ "epoch": 1.27,
110
+ "learning_rate": 2.320835154085542e-05,
111
+ "loss": 2.813,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 1.35,
116
+ "learning_rate": 3.7303948905573005e-05,
117
+ "loss": 2.6726,
118
+ "step": 85
119
+ },
120
+ {
121
+ "epoch": 1.43,
122
+ "learning_rate": 5.333506393059682e-05,
123
+ "loss": 2.817,
124
+ "step": 90
125
+ },
126
+ {
127
+ "epoch": 1.51,
128
+ "learning_rate": 7.031024545323179e-05,
129
+ "loss": 2.8553,
130
+ "step": 95
131
+ },
132
+ {
133
+ "epoch": 1.59,
134
+ "learning_rate": 8.71796561146101e-05,
135
+ "loss": 2.7581,
136
+ "step": 100
137
+ },
138
+ {
139
+ "epoch": 1.67,
140
+ "learning_rate": 0.00010290000000000001,
141
+ "loss": 2.8057,
142
+ "step": 105
143
+ },
144
+ {
145
+ "epoch": 1.75,
146
+ "learning_rate": 0.0001164990457207046,
147
+ "loss": 2.7321,
148
+ "step": 110
149
+ },
150
+ {
151
+ "epoch": 1.83,
152
+ "learning_rate": 0.00012713575447996587,
153
+ "loss": 2.67,
154
+ "step": 115
155
+ },
156
+ {
157
+ "epoch": 1.9,
158
+ "learning_rate": 0.00013415229447692924,
159
+ "loss": 2.7242,
160
+ "step": 120
161
+ },
162
+ {
163
+ "epoch": 1.98,
164
+ "learning_rate": 0.00013711472479561806,
165
+ "loss": 2.7872,
166
+ "step": 125
167
+ },
168
+ {
169
+ "epoch": 2.0,
170
+ "eval_loss": 3.1001694202423096,
171
+ "eval_runtime": 3.559,
172
+ "eval_samples_per_second": 45.8,
173
+ "eval_steps_per_second": 5.901,
174
+ "step": 126
175
+ },
176
+ {
177
+ "epoch": 2.06,
178
+ "learning_rate": 0.00013583983266641012,
179
+ "loss": 2.5963,
180
+ "step": 130
181
+ },
182
+ {
183
+ "epoch": 2.14,
184
+ "learning_rate": 0.00013040646433810595,
185
+ "loss": 2.4975,
186
+ "step": 135
187
+ },
188
+ {
189
+ "epoch": 2.22,
190
+ "learning_rate": 0.0001211506487979619,
191
+ "loss": 2.5517,
192
+ "step": 140
193
+ },
194
+ {
195
+ "epoch": 2.3,
196
+ "learning_rate": 0.00010864481591530664,
197
+ "loss": 2.454,
198
+ "step": 145
199
+ },
200
+ {
201
+ "epoch": 2.38,
202
+ "learning_rate": 9.36623942715347e-05,
203
+ "loss": 2.4655,
204
+ "step": 150
205
+ },
206
+ {
207
+ "epoch": 2.46,
208
+ "learning_rate": 7.712997813881747e-05,
209
+ "loss": 2.5144,
210
+ "step": 155
211
+ },
212
+ {
213
+ "epoch": 2.54,
214
+ "learning_rate": 6.007002186118257e-05,
215
+ "loss": 2.4411,
216
+ "step": 160
217
+ },
218
+ {
219
+ "epoch": 2.62,
220
+ "learning_rate": 4.3537605728465284e-05,
221
+ "loss": 2.49,
222
+ "step": 165
223
+ },
224
+ {
225
+ "epoch": 2.7,
226
+ "learning_rate": 2.8555184084693446e-05,
227
+ "loss": 2.2522,
228
+ "step": 170
229
+ },
230
+ {
231
+ "epoch": 2.78,
232
+ "learning_rate": 1.6049351202038163e-05,
233
+ "loss": 2.4637,
234
+ "step": 175
235
+ },
236
+ {
237
+ "epoch": 2.86,
238
+ "learning_rate": 6.793535661894062e-06,
239
+ "loss": 2.4223,
240
+ "step": 180
241
+ },
242
+ {
243
+ "epoch": 2.94,
244
+ "learning_rate": 1.3601673335899086e-06,
245
+ "loss": 2.255,
246
+ "step": 185
247
+ },
248
+ {
249
+ "epoch": 3.0,
250
+ "eval_loss": 3.0634868144989014,
251
+ "eval_runtime": 3.6817,
252
+ "eval_samples_per_second": 44.273,
253
+ "eval_steps_per_second": 5.704,
254
+ "step": 189
255
+ },
256
+ {
257
+ "epoch": 3.02,
258
+ "learning_rate": 8.527520438192717e-08,
259
+ "loss": 2.3823,
260
+ "step": 190
261
+ },
262
+ {
263
+ "epoch": 3.1,
264
+ "learning_rate": 3.047705523070765e-06,
265
+ "loss": 2.3682,
266
+ "step": 195
267
+ },
268
+ {
269
+ "epoch": 3.17,
270
+ "learning_rate": 1.0064245520034058e-05,
271
+ "loss": 2.3272,
272
+ "step": 200
273
+ },
274
+ {
275
+ "epoch": 3.25,
276
+ "learning_rate": 2.0700954279295363e-05,
277
+ "loss": 2.2495,
278
+ "step": 205
279
+ },
280
+ {
281
+ "epoch": 3.33,
282
+ "learning_rate": 3.4300000000000014e-05,
283
+ "loss": 2.0865,
284
+ "step": 210
285
+ },
286
+ {
287
+ "epoch": 3.41,
288
+ "learning_rate": 5.0020343885389815e-05,
289
+ "loss": 2.279,
290
+ "step": 215
291
+ },
292
+ {
293
+ "epoch": 3.49,
294
+ "learning_rate": 6.688975454676822e-05,
295
+ "loss": 2.1852,
296
+ "step": 220
297
+ },
298
+ {
299
+ "epoch": 3.57,
300
+ "learning_rate": 8.386493606940314e-05,
301
+ "loss": 2.2131,
302
+ "step": 225
303
+ },
304
+ {
305
+ "epoch": 3.65,
306
+ "learning_rate": 9.989605109442691e-05,
307
+ "loss": 2.2336,
308
+ "step": 230
309
+ },
310
+ {
311
+ "epoch": 3.73,
312
+ "learning_rate": 0.00011399164845914455,
313
+ "loss": 2.2808,
314
+ "step": 235
315
+ },
316
+ {
317
+ "epoch": 3.81,
318
+ "learning_rate": 0.00012527997991807721,
319
+ "loss": 2.4415,
320
+ "step": 240
321
+ },
322
+ {
323
+ "epoch": 3.89,
324
+ "learning_rate": 0.00013306291378591332,
325
+ "loss": 2.1738,
326
+ "step": 245
327
+ },
328
+ {
329
+ "epoch": 3.97,
330
+ "learning_rate": 0.00013685911119006654,
331
+ "loss": 2.3683,
332
+ "step": 250
333
+ },
334
+ {
335
+ "epoch": 4.0,
336
+ "eval_loss": 3.110128879547119,
337
+ "eval_runtime": 3.7075,
338
+ "eval_samples_per_second": 43.965,
339
+ "eval_steps_per_second": 5.664,
340
+ "step": 252
341
+ },
342
+ {
343
+ "epoch": 4.05,
344
+ "learning_rate": 0.00013643379467904383,
345
+ "loss": 2.0957,
346
+ "step": 255
347
+ },
348
+ {
349
+ "epoch": 4.13,
350
+ "learning_rate": 0.00013181326813430994,
351
+ "loss": 2.1122,
352
+ "step": 260
353
+ },
354
+ {
355
+ "epoch": 4.21,
356
+ "learning_rate": 0.00012328328999549248,
357
+ "loss": 2.0913,
358
+ "step": 265
359
+ },
360
+ {
361
+ "epoch": 4.29,
362
+ "learning_rate": 0.00011137140040750914,
363
+ "loss": 2.0899,
364
+ "step": 270
365
+ },
366
+ {
367
+ "epoch": 4.37,
368
+ "learning_rate": 9.681429527476003e-05,
369
+ "loss": 2.0885,
370
+ "step": 275
371
+ },
372
+ {
373
+ "epoch": 4.44,
374
+ "learning_rate": 8.051226498795145e-05,
375
+ "loss": 2.054,
376
+ "step": 280
377
+ },
378
+ {
379
+ "epoch": 4.52,
380
+ "learning_rate": 6.347351557997137e-05,
381
+ "loss": 2.0165,
382
+ "step": 285
383
+ },
384
+ {
385
+ "epoch": 4.6,
386
+ "learning_rate": 4.675181579273458e-05,
387
+ "loss": 1.945,
388
+ "step": 290
389
+ },
390
+ {
391
+ "epoch": 4.68,
392
+ "learning_rate": 3.138132629880886e-05,
393
+ "loss": 1.9216,
394
+ "step": 295
395
+ },
396
+ {
397
+ "epoch": 4.76,
398
+ "learning_rate": 1.8312641592473912e-05,
399
+ "loss": 1.9411,
400
+ "step": 300
401
+ },
402
+ {
403
+ "epoch": 4.84,
404
+ "learning_rate": 8.354000066802353e-06,
405
+ "loss": 1.7585,
406
+ "step": 305
407
+ },
408
+ {
409
+ "epoch": 4.92,
410
+ "learning_rate": 2.121298164685252e-06,
411
+ "loss": 1.947,
412
+ "step": 310
413
+ },
414
+ {
415
+ "epoch": 5.0,
416
+ "learning_rate": 0.0,
417
+ "loss": 1.9567,
418
+ "step": 315
419
+ },
420
+ {
421
+ "epoch": 5.0,
422
+ "eval_loss": 3.0450499057769775,
423
+ "eval_runtime": 3.7841,
424
+ "eval_samples_per_second": 43.076,
425
+ "eval_steps_per_second": 5.55,
426
+ "step": 315
427
+ }
428
+ ],
429
+ "max_steps": 315,
430
+ "num_train_epochs": 5,
431
+ "total_flos": 327268270080000.0,
432
+ "trial_name": null,
433
+ "trial_params": null
434
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe3cc83e29c6b53c606cb39e86a99d2063024b67ce2514b8bc35a52f6dc4980f
3
+ size 3247
vocab.json ADDED
The diff for this file is too large to render. See raw diff