AlekseyKorshuk commited on
Commit
ae9c329
1 Parent(s): c93798d

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/doja-cat
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/49b33cfa0bdb3ed97058a10960f2af8d.640x640x1.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">Doja Cat</div>
22
+ <a href="https://genius.com/artists/doja-cat">
23
+ <div style="text-align: center; font-size: 14px;">@doja-cat</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 Doja Cat.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/doja-cat).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/doja-cat")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/1qxclk1g/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 Doja Cat's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/2lqvdntl) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/2lqvdntl/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/doja-cat')
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/doja-cat")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/doja-cat")
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.7318851947784424, "eval_runtime": 3.4367, "eval_samples_per_second": 20.95, "eval_steps_per_second": 2.619, "epoch": 10.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7819a195e27813875e7a42f9ab9df5d313a3667bc631088a3e5f0777adc560b6
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:239937d1650229f4d986540b8b85f270c1d96d1f5c6bee1c7fef3696cf1ad355
3
+ size 995604017
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2aeb5e7c0c65abf19524b280a1b9338a0fe0516a9f789fa3aac4dd2891fbe16
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6249d8a4cf07aa7e102a167e3ca11550ec40a43b3d40a2db732d0028fcb969a
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f978112714e06a9e26c921456201e43656eebf4c766f31b4522d7422b8ab4a52
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,458 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 2.7318851947784424,
3
+ "best_model_checkpoint": "output/doja-cat/checkpoint-335",
4
+ "epoch": 5.0,
5
+ "global_step": 335,
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.07,
12
+ "learning_rate": 0.00013532330330528217,
13
+ "loss": 3.5814,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.15,
18
+ "learning_rate": 0.00012979589515943672,
19
+ "loss": 3.3945,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.22,
24
+ "learning_rate": 0.0001209202032183722,
25
+ "loss": 3.258,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.3,
30
+ "learning_rate": 0.00010918185377156764,
31
+ "loss": 3.0648,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.37,
36
+ "learning_rate": 9.522310109331633e-05,
37
+ "loss": 3.0572,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.45,
42
+ "learning_rate": 7.980768702075116e-05,
43
+ "loss": 2.9453,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.52,
48
+ "learning_rate": 6.377905343835293e-05,
49
+ "loss": 2.8372,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.6,
54
+ "learning_rate": 4.8014194038976637e-05,
55
+ "loss": 2.8698,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.67,
60
+ "learning_rate": 3.337567032488183e-05,
61
+ "loss": 2.9529,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.75,
66
+ "learning_rate": 2.0664417254371463e-05,
67
+ "loss": 2.9508,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.82,
72
+ "learning_rate": 1.0575920734825916e-05,
73
+ "loss": 2.9673,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.9,
78
+ "learning_rate": 3.66216467507622e-06,
79
+ "loss": 3.0803,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.97,
84
+ "learning_rate": 3.014296332977907e-07,
85
+ "loss": 2.8364,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 1.0,
90
+ "eval_loss": 2.8956077098846436,
91
+ "eval_runtime": 3.3695,
92
+ "eval_samples_per_second": 21.368,
93
+ "eval_steps_per_second": 2.671,
94
+ "step": 67
95
+ },
96
+ {
97
+ "epoch": 1.04,
98
+ "learning_rate": 6.775955029229377e-07,
99
+ "loss": 2.9377,
100
+ "step": 70
101
+ },
102
+ {
103
+ "epoch": 1.12,
104
+ "learning_rate": 4.7700806733338495e-06,
105
+ "loss": 2.722,
106
+ "step": 75
107
+ },
108
+ {
109
+ "epoch": 1.19,
110
+ "learning_rate": 1.235496813600306e-05,
111
+ "loss": 2.6699,
112
+ "step": 80
113
+ },
114
+ {
115
+ "epoch": 1.27,
116
+ "learning_rate": 2.3017256922096845e-05,
117
+ "loss": 2.8672,
118
+ "step": 85
119
+ },
120
+ {
121
+ "epoch": 1.34,
122
+ "learning_rate": 3.6173568544064456e-05,
123
+ "loss": 2.812,
124
+ "step": 90
125
+ },
126
+ {
127
+ "epoch": 1.42,
128
+ "learning_rate": 5.110406607666898e-05,
129
+ "loss": 2.6143,
130
+ "step": 95
131
+ },
132
+ {
133
+ "epoch": 1.49,
134
+ "learning_rate": 6.699183945081632e-05,
135
+ "loss": 2.6499,
136
+ "step": 100
137
+ },
138
+ {
139
+ "epoch": 1.57,
140
+ "learning_rate": 8.296760202575751e-05,
141
+ "loss": 2.832,
142
+ "step": 105
143
+ },
144
+ {
145
+ "epoch": 1.64,
146
+ "learning_rate": 9.815725290295059e-05,
147
+ "loss": 2.6562,
148
+ "step": 110
149
+ },
150
+ {
151
+ "epoch": 1.72,
152
+ "learning_rate": 0.00011172970264813468,
153
+ "loss": 2.8987,
154
+ "step": 115
155
+ },
156
+ {
157
+ "epoch": 1.79,
158
+ "learning_rate": 0.00012294234567600346,
159
+ "loss": 2.705,
160
+ "step": 120
161
+ },
162
+ {
163
+ "epoch": 1.87,
164
+ "learning_rate": 0.00013118169131281192,
165
+ "loss": 2.5747,
166
+ "step": 125
167
+ },
168
+ {
169
+ "epoch": 1.94,
170
+ "learning_rate": 0.00013599693044126453,
171
+ "loss": 2.6942,
172
+ "step": 130
173
+ },
174
+ {
175
+ "epoch": 2.0,
176
+ "eval_loss": 2.8365488052368164,
177
+ "eval_runtime": 3.3573,
178
+ "eval_samples_per_second": 21.446,
179
+ "eval_steps_per_second": 2.681,
180
+ "step": 134
181
+ },
182
+ {
183
+ "epoch": 2.01,
184
+ "learning_rate": 0.0001371246011559198,
185
+ "loss": 2.804,
186
+ "step": 135
187
+ },
188
+ {
189
+ "epoch": 2.09,
190
+ "learning_rate": 0.00013450300386777127,
191
+ "loss": 2.4535,
192
+ "step": 140
193
+ },
194
+ {
195
+ "epoch": 2.16,
196
+ "learning_rate": 0.00012827557714724304,
197
+ "loss": 2.3801,
198
+ "step": 145
199
+ },
200
+ {
201
+ "epoch": 2.24,
202
+ "learning_rate": 0.00011878304959908774,
203
+ "loss": 2.5012,
204
+ "step": 150
205
+ },
206
+ {
207
+ "epoch": 2.31,
208
+ "learning_rate": 0.00010654479717298873,
209
+ "loss": 2.2923,
210
+ "step": 155
211
+ },
212
+ {
213
+ "epoch": 2.39,
214
+ "learning_rate": 9.223042592950526e-05,
215
+ "loss": 2.3414,
216
+ "step": 160
217
+ },
218
+ {
219
+ "epoch": 2.46,
220
+ "learning_rate": 7.662313508728495e-05,
221
+ "loss": 2.5064,
222
+ "step": 165
223
+ },
224
+ {
225
+ "epoch": 2.54,
226
+ "learning_rate": 6.0576864912715095e-05,
227
+ "loss": 2.5332,
228
+ "step": 170
229
+ },
230
+ {
231
+ "epoch": 2.61,
232
+ "learning_rate": 4.496957407049471e-05,
233
+ "loss": 2.4362,
234
+ "step": 175
235
+ },
236
+ {
237
+ "epoch": 2.69,
238
+ "learning_rate": 3.065520282701126e-05,
239
+ "loss": 2.4042,
240
+ "step": 180
241
+ },
242
+ {
243
+ "epoch": 2.76,
244
+ "learning_rate": 1.8416950400912332e-05,
245
+ "loss": 2.3006,
246
+ "step": 185
247
+ },
248
+ {
249
+ "epoch": 2.84,
250
+ "learning_rate": 8.924422852757e-06,
251
+ "loss": 2.3545,
252
+ "step": 190
253
+ },
254
+ {
255
+ "epoch": 2.91,
256
+ "learning_rate": 2.6969961322287634e-06,
257
+ "loss": 2.4371,
258
+ "step": 195
259
+ },
260
+ {
261
+ "epoch": 2.99,
262
+ "learning_rate": 7.53988440801922e-08,
263
+ "loss": 2.2676,
264
+ "step": 200
265
+ },
266
+ {
267
+ "epoch": 3.0,
268
+ "eval_loss": 2.7877070903778076,
269
+ "eval_runtime": 3.3652,
270
+ "eval_samples_per_second": 21.396,
271
+ "eval_steps_per_second": 2.674,
272
+ "step": 201
273
+ },
274
+ {
275
+ "epoch": 3.06,
276
+ "learning_rate": 1.2030695587354792e-06,
277
+ "loss": 2.4161,
278
+ "step": 205
279
+ },
280
+ {
281
+ "epoch": 3.13,
282
+ "learning_rate": 6.018308687188092e-06,
283
+ "loss": 2.3933,
284
+ "step": 210
285
+ },
286
+ {
287
+ "epoch": 3.21,
288
+ "learning_rate": 1.4257654323996543e-05,
289
+ "loss": 2.2934,
290
+ "step": 215
291
+ },
292
+ {
293
+ "epoch": 3.28,
294
+ "learning_rate": 2.5470297351865334e-05,
295
+ "loss": 2.2132,
296
+ "step": 220
297
+ },
298
+ {
299
+ "epoch": 3.36,
300
+ "learning_rate": 3.9042747097049484e-05,
301
+ "loss": 1.9654,
302
+ "step": 225
303
+ },
304
+ {
305
+ "epoch": 3.43,
306
+ "learning_rate": 5.423239797424245e-05,
307
+ "loss": 2.2451,
308
+ "step": 230
309
+ },
310
+ {
311
+ "epoch": 3.51,
312
+ "learning_rate": 7.020816054918364e-05,
313
+ "loss": 2.36,
314
+ "step": 235
315
+ },
316
+ {
317
+ "epoch": 3.58,
318
+ "learning_rate": 8.609593392333099e-05,
319
+ "loss": 2.3897,
320
+ "step": 240
321
+ },
322
+ {
323
+ "epoch": 3.66,
324
+ "learning_rate": 0.00010102643145593556,
325
+ "loss": 2.1583,
326
+ "step": 245
327
+ },
328
+ {
329
+ "epoch": 3.73,
330
+ "learning_rate": 0.00011418274307790318,
331
+ "loss": 2.3118,
332
+ "step": 250
333
+ },
334
+ {
335
+ "epoch": 3.81,
336
+ "learning_rate": 0.00012484503186399693,
337
+ "loss": 2.2451,
338
+ "step": 255
339
+ },
340
+ {
341
+ "epoch": 3.88,
342
+ "learning_rate": 0.00013242991932666616,
343
+ "loss": 2.131,
344
+ "step": 260
345
+ },
346
+ {
347
+ "epoch": 3.96,
348
+ "learning_rate": 0.00013652240449707706,
349
+ "loss": 2.0297,
350
+ "step": 265
351
+ },
352
+ {
353
+ "epoch": 4.0,
354
+ "eval_loss": 2.8032355308532715,
355
+ "eval_runtime": 3.3675,
356
+ "eval_samples_per_second": 21.381,
357
+ "eval_steps_per_second": 2.673,
358
+ "step": 268
359
+ },
360
+ {
361
+ "epoch": 4.03,
362
+ "learning_rate": 0.00013689857036670224,
363
+ "loss": 1.9968,
364
+ "step": 270
365
+ },
366
+ {
367
+ "epoch": 4.1,
368
+ "learning_rate": 0.0001335378353249238,
369
+ "loss": 2.1578,
370
+ "step": 275
371
+ },
372
+ {
373
+ "epoch": 4.18,
374
+ "learning_rate": 0.00012662407926517416,
375
+ "loss": 2.1444,
376
+ "step": 280
377
+ },
378
+ {
379
+ "epoch": 4.25,
380
+ "learning_rate": 0.00011653558274562858,
381
+ "loss": 1.9796,
382
+ "step": 285
383
+ },
384
+ {
385
+ "epoch": 4.33,
386
+ "learning_rate": 0.00010382432967511827,
387
+ "loss": 1.8756,
388
+ "step": 290
389
+ },
390
+ {
391
+ "epoch": 4.4,
392
+ "learning_rate": 8.918580596102339e-05,
393
+ "loss": 1.9379,
394
+ "step": 295
395
+ },
396
+ {
397
+ "epoch": 4.48,
398
+ "learning_rate": 7.342094656164722e-05,
399
+ "loss": 2.1349,
400
+ "step": 300
401
+ },
402
+ {
403
+ "epoch": 4.55,
404
+ "learning_rate": 5.739231297924882e-05,
405
+ "loss": 2.048,
406
+ "step": 305
407
+ },
408
+ {
409
+ "epoch": 4.63,
410
+ "learning_rate": 4.197689890668377e-05,
411
+ "loss": 1.8569,
412
+ "step": 310
413
+ },
414
+ {
415
+ "epoch": 4.7,
416
+ "learning_rate": 2.8018146228432437e-05,
417
+ "loss": 1.8989,
418
+ "step": 315
419
+ },
420
+ {
421
+ "epoch": 4.78,
422
+ "learning_rate": 1.6279796781627843e-05,
423
+ "loss": 2.258,
424
+ "step": 320
425
+ },
426
+ {
427
+ "epoch": 4.85,
428
+ "learning_rate": 7.404104840563317e-06,
429
+ "loss": 2.0248,
430
+ "step": 325
431
+ },
432
+ {
433
+ "epoch": 4.93,
434
+ "learning_rate": 1.8766966947178655e-06,
435
+ "loss": 1.8796,
436
+ "step": 330
437
+ },
438
+ {
439
+ "epoch": 5.0,
440
+ "learning_rate": 0.0,
441
+ "loss": 1.8645,
442
+ "step": 335
443
+ },
444
+ {
445
+ "epoch": 5.0,
446
+ "eval_loss": 2.7318851947784424,
447
+ "eval_runtime": 3.3458,
448
+ "eval_samples_per_second": 21.519,
449
+ "eval_steps_per_second": 2.69,
450
+ "step": 335
451
+ }
452
+ ],
453
+ "max_steps": 670,
454
+ "num_train_epochs": 10,
455
+ "total_flos": 348171632640000.0,
456
+ "trial_name": null,
457
+ "trial_params": null
458
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:311123359d12755d333e9b1302cbd45a4cd9cc3ad674548c9de51320a10d8af0
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff