AlekseyKorshuk commited on
Commit
c97ddd5
1 Parent(s): 26d0a3a

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/post-malone
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/1010194fa644be099aa2d1329de0b230.448x448x1.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">Post Malone</div>
22
+ <a href="https://genius.com/artists/post-malone">
23
+ <div style="text-align: center; font-size: 14px;">@post-malone</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 Post Malone.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/post-malone).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/post-malone")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/5ig21wpy/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 Post Malone's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/2ih9ntzv) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/2ih9ntzv/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/post-malone')
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/post-malone")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/post-malone")
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,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "gpt2",
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
+ "gradient_checkpointing": false,
12
+ "initializer_range": 0.02,
13
+ "layer_norm_epsilon": 1e-05,
14
+ "model_type": "gpt2",
15
+ "n_ctx": 1024,
16
+ "n_embd": 768,
17
+ "n_head": 12,
18
+ "n_inner": null,
19
+ "n_layer": 12,
20
+ "n_positions": 1024,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_weights": true,
23
+ "summary_activation": null,
24
+ "summary_first_dropout": 0.1,
25
+ "summary_proj_to_labels": true,
26
+ "summary_type": "cls_index",
27
+ "summary_use_proj": true,
28
+ "task_specific_params": {
29
+ "text-generation": {
30
+ "do_sample": true,
31
+ "max_length": 200,
32
+ "min_length": 100,
33
+ "temperature": 1.0,
34
+ "top_p": 0.95
35
+ }
36
+ },
37
+ "torch_dtype": "float32",
38
+ "transformers_version": "4.10.2",
39
+ "use_cache": true,
40
+ "vocab_size": 50257
41
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"eval_loss": 2.7756218910217285, "eval_runtime": 4.2031, "eval_samples_per_second": 21.651, "eval_steps_per_second": 2.855, "epoch": 5.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9384aa714937dd707a9e9f857480f1c0d8a3a763c07b6912a5ebbffbd3f2904
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:ba6da0907ae29abee214b5364384b5747700285b725c82d9622536abaa7a7316
3
+ size 995604017
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7e6384bc2fee14701e9c071fbfef3090379c6ae12bbefbbba59e2e5ac95cb7d
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f386bf16c415188790be42da33b39c02c2f358ffaa9103aa19a9ef4132952a8
3
+ size 14567
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a00802bbf5506697b99be59130fd6581f187391e63a478e5c7eb4c2d9d85dfc2
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,440 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 2.7756218910217285,
3
+ "best_model_checkpoint": "output/post-malone/checkpoint-320",
4
+ "epoch": 5.0,
5
+ "global_step": 320,
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.00013514414396914573,
13
+ "loss": 3.4543,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.16,
18
+ "learning_rate": 0.00012909979873429716,
19
+ "loss": 3.3387,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.23,
24
+ "learning_rate": 0.00011942924719935021,
25
+ "loss": 3.3541,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.31,
30
+ "learning_rate": 0.00010671211798514472,
31
+ "loss": 3.1751,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.39,
36
+ "learning_rate": 9.171064394270629e-05,
37
+ "loss": 3.3546,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.47,
42
+ "learning_rate": 7.532397582660788e-05,
43
+ "loss": 3.0662,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.55,
48
+ "learning_rate": 5.853428945236219e-05,
49
+ "loss": 3.0141,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.62,
54
+ "learning_rate": 4.2347916539754844e-05,
55
+ "loss": 3.1162,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.7,
60
+ "learning_rate": 2.773502771181907e-05,
61
+ "loss": 2.9451,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.78,
66
+ "learning_rate": 1.557148289931624e-05,
67
+ "loss": 2.8693,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.86,
72
+ "learning_rate": 6.586334491731787e-06,
73
+ "loss": 2.8391,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.94,
78
+ "learning_rate": 1.3181297643383925e-06,
79
+ "loss": 3.057,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 1.0,
84
+ "eval_loss": 2.9327073097229004,
85
+ "eval_runtime": 4.0481,
86
+ "eval_samples_per_second": 22.479,
87
+ "eval_steps_per_second": 2.964,
88
+ "step": 64
89
+ },
90
+ {
91
+ "epoch": 1.02,
92
+ "learning_rate": 8.263170432517302e-08,
93
+ "loss": 2.9592,
94
+ "step": 65
95
+ },
96
+ {
97
+ "epoch": 1.09,
98
+ "learning_rate": 2.9538929687704672e-06,
99
+ "loss": 2.9051,
100
+ "step": 70
101
+ },
102
+ {
103
+ "epoch": 1.17,
104
+ "learning_rate": 9.759817353981332e-06,
105
+ "loss": 2.8939,
106
+ "step": 75
107
+ },
108
+ {
109
+ "epoch": 1.25,
110
+ "learning_rate": 2.009247481060283e-05,
111
+ "loss": 2.9256,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 1.33,
116
+ "learning_rate": 3.333255174834499e-05,
117
+ "loss": 2.7927,
118
+ "step": 85
119
+ },
120
+ {
121
+ "epoch": 1.41,
122
+ "learning_rate": 4.8686471140343875e-05,
123
+ "loss": 2.8323,
124
+ "step": 90
125
+ },
126
+ {
127
+ "epoch": 1.48,
128
+ "learning_rate": 6.523395754113913e-05,
129
+ "loss": 2.8623,
130
+ "step": 95
131
+ },
132
+ {
133
+ "epoch": 1.56,
134
+ "learning_rate": 8.19831960903064e-05,
135
+ "loss": 2.6679,
136
+ "step": 100
137
+ },
138
+ {
139
+ "epoch": 1.64,
140
+ "learning_rate": 9.793027940931736e-05,
141
+ "loss": 2.5538,
142
+ "step": 105
143
+ },
144
+ {
145
+ "epoch": 1.72,
146
+ "learning_rate": 0.00011211937929362609,
147
+ "loss": 2.6828,
148
+ "step": 110
149
+ },
150
+ {
151
+ "epoch": 1.8,
152
+ "learning_rate": 0.00012370003665957224,
153
+ "loss": 2.8431,
154
+ "step": 115
155
+ },
156
+ {
157
+ "epoch": 1.88,
158
+ "learning_rate": 0.00013197813593027427,
159
+ "loss": 2.8521,
160
+ "step": 120
161
+ },
162
+ {
163
+ "epoch": 1.95,
164
+ "learning_rate": 0.00013645750858358398,
165
+ "loss": 2.8483,
166
+ "step": 125
167
+ },
168
+ {
169
+ "epoch": 2.0,
170
+ "eval_loss": 2.8603508472442627,
171
+ "eval_runtime": 4.0668,
172
+ "eval_samples_per_second": 22.376,
173
+ "eval_steps_per_second": 2.951,
174
+ "step": 128
175
+ },
176
+ {
177
+ "epoch": 2.03,
178
+ "learning_rate": 0.0001368696722497127,
179
+ "loss": 2.668,
180
+ "step": 130
181
+ },
182
+ {
183
+ "epoch": 2.11,
184
+ "learning_rate": 0.00013318992287155525,
185
+ "loss": 2.6112,
186
+ "step": 135
187
+ },
188
+ {
189
+ "epoch": 2.19,
190
+ "learning_rate": 0.0001256388154039546,
191
+ "loss": 2.332,
192
+ "step": 140
193
+ },
194
+ {
195
+ "epoch": 2.27,
196
+ "learning_rate": 0.0001146689443025055,
197
+ "loss": 2.5603,
198
+ "step": 145
199
+ },
200
+ {
201
+ "epoch": 2.34,
202
+ "learning_rate": 0.00010093781614626346,
203
+ "loss": 2.464,
204
+ "step": 150
205
+ },
206
+ {
207
+ "epoch": 2.42,
208
+ "learning_rate": 8.526844034136393e-05,
209
+ "loss": 2.6616,
210
+ "step": 155
211
+ },
212
+ {
213
+ "epoch": 2.5,
214
+ "learning_rate": 6.860000000000001e-05,
215
+ "loss": 2.4311,
216
+ "step": 160
217
+ },
218
+ {
219
+ "epoch": 2.58,
220
+ "learning_rate": 5.1931559658636174e-05,
221
+ "loss": 2.5385,
222
+ "step": 165
223
+ },
224
+ {
225
+ "epoch": 2.66,
226
+ "learning_rate": 3.6262183853736576e-05,
227
+ "loss": 2.3496,
228
+ "step": 170
229
+ },
230
+ {
231
+ "epoch": 2.73,
232
+ "learning_rate": 2.253105569749459e-05,
233
+ "loss": 2.5517,
234
+ "step": 175
235
+ },
236
+ {
237
+ "epoch": 2.81,
238
+ "learning_rate": 1.1561184596045404e-05,
239
+ "loss": 2.5856,
240
+ "step": 180
241
+ },
242
+ {
243
+ "epoch": 2.89,
244
+ "learning_rate": 4.010077128444796e-06,
245
+ "loss": 2.3964,
246
+ "step": 185
247
+ },
248
+ {
249
+ "epoch": 2.97,
250
+ "learning_rate": 3.303277502872907e-07,
251
+ "loss": 2.4138,
252
+ "step": 190
253
+ },
254
+ {
255
+ "epoch": 3.0,
256
+ "eval_loss": 2.8137447834014893,
257
+ "eval_runtime": 4.0649,
258
+ "eval_samples_per_second": 22.387,
259
+ "eval_steps_per_second": 2.952,
260
+ "step": 192
261
+ },
262
+ {
263
+ "epoch": 3.05,
264
+ "learning_rate": 7.424914164160148e-07,
265
+ "loss": 2.1884,
266
+ "step": 195
267
+ },
268
+ {
269
+ "epoch": 3.12,
270
+ "learning_rate": 5.22186406972573e-06,
271
+ "loss": 2.2931,
272
+ "step": 200
273
+ },
274
+ {
275
+ "epoch": 3.2,
276
+ "learning_rate": 1.3499963340427727e-05,
277
+ "loss": 2.2962,
278
+ "step": 205
279
+ },
280
+ {
281
+ "epoch": 3.28,
282
+ "learning_rate": 2.5080620706373927e-05,
283
+ "loss": 2.4955,
284
+ "step": 210
285
+ },
286
+ {
287
+ "epoch": 3.36,
288
+ "learning_rate": 3.92697205906826e-05,
289
+ "loss": 2.256,
290
+ "step": 215
291
+ },
292
+ {
293
+ "epoch": 3.44,
294
+ "learning_rate": 5.5216803909693624e-05,
295
+ "loss": 2.383,
296
+ "step": 220
297
+ },
298
+ {
299
+ "epoch": 3.52,
300
+ "learning_rate": 7.196604245886083e-05,
301
+ "loss": 2.2025,
302
+ "step": 225
303
+ },
304
+ {
305
+ "epoch": 3.59,
306
+ "learning_rate": 8.851352885965614e-05,
307
+ "loss": 2.5095,
308
+ "step": 230
309
+ },
310
+ {
311
+ "epoch": 3.67,
312
+ "learning_rate": 0.00010386744825165498,
313
+ "loss": 2.2003,
314
+ "step": 235
315
+ },
316
+ {
317
+ "epoch": 3.75,
318
+ "learning_rate": 0.0001171075251893971,
319
+ "loss": 2.2947,
320
+ "step": 240
321
+ },
322
+ {
323
+ "epoch": 3.83,
324
+ "learning_rate": 0.00012744018264601866,
325
+ "loss": 2.2396,
326
+ "step": 245
327
+ },
328
+ {
329
+ "epoch": 3.91,
330
+ "learning_rate": 0.0001342461070312295,
331
+ "loss": 2.5862,
332
+ "step": 250
333
+ },
334
+ {
335
+ "epoch": 3.98,
336
+ "learning_rate": 0.00013711736829567482,
337
+ "loss": 2.312,
338
+ "step": 255
339
+ },
340
+ {
341
+ "epoch": 4.0,
342
+ "eval_loss": 2.801469087600708,
343
+ "eval_runtime": 4.0493,
344
+ "eval_samples_per_second": 22.473,
345
+ "eval_steps_per_second": 2.964,
346
+ "step": 256
347
+ },
348
+ {
349
+ "epoch": 4.06,
350
+ "learning_rate": 0.00013588187023566163,
351
+ "loss": 2.1297,
352
+ "step": 260
353
+ },
354
+ {
355
+ "epoch": 4.14,
356
+ "learning_rate": 0.00013061366550826822,
357
+ "loss": 2.2352,
358
+ "step": 265
359
+ },
360
+ {
361
+ "epoch": 4.22,
362
+ "learning_rate": 0.00012162851710068381,
363
+ "loss": 1.8696,
364
+ "step": 270
365
+ },
366
+ {
367
+ "epoch": 4.3,
368
+ "learning_rate": 0.00010946497228818094,
369
+ "loss": 2.0845,
370
+ "step": 275
371
+ },
372
+ {
373
+ "epoch": 4.38,
374
+ "learning_rate": 9.485208346024522e-05,
375
+ "loss": 2.2216,
376
+ "step": 280
377
+ },
378
+ {
379
+ "epoch": 4.45,
380
+ "learning_rate": 7.866571054763782e-05,
381
+ "loss": 2.2363,
382
+ "step": 285
383
+ },
384
+ {
385
+ "epoch": 4.53,
386
+ "learning_rate": 6.18760241733922e-05,
387
+ "loss": 2.0753,
388
+ "step": 290
389
+ },
390
+ {
391
+ "epoch": 4.61,
392
+ "learning_rate": 4.54893560572937e-05,
393
+ "loss": 2.2625,
394
+ "step": 295
395
+ },
396
+ {
397
+ "epoch": 4.69,
398
+ "learning_rate": 3.0487882014855336e-05,
399
+ "loss": 2.0837,
400
+ "step": 300
401
+ },
402
+ {
403
+ "epoch": 4.77,
404
+ "learning_rate": 1.7770752800649797e-05,
405
+ "loss": 2.1588,
406
+ "step": 305
407
+ },
408
+ {
409
+ "epoch": 4.84,
410
+ "learning_rate": 8.100201265702867e-06,
411
+ "loss": 2.021,
412
+ "step": 310
413
+ },
414
+ {
415
+ "epoch": 4.92,
416
+ "learning_rate": 2.055856030854276e-06,
417
+ "loss": 2.1558,
418
+ "step": 315
419
+ },
420
+ {
421
+ "epoch": 5.0,
422
+ "learning_rate": 0.0,
423
+ "loss": 2.0356,
424
+ "step": 320
425
+ },
426
+ {
427
+ "epoch": 5.0,
428
+ "eval_loss": 2.7756218910217285,
429
+ "eval_runtime": 4.0379,
430
+ "eval_samples_per_second": 22.536,
431
+ "eval_steps_per_second": 2.972,
432
+ "step": 320
433
+ }
434
+ ],
435
+ "max_steps": 320,
436
+ "num_train_epochs": 5,
437
+ "total_flos": 334453800960000.0,
438
+ "trial_name": null,
439
+ "trial_params": null
440
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97ded5b2b2b3754d53f30737f8fe87494278d53b0f3b08bcbc4b8ea8a1c4217f
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff