AlekseyKorshuk commited on
Commit
366cb36
1 Parent(s): f220afc

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/john-lennon
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/de14b272004b51dea8071e7cba21cbac.1000x1000x1.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">John Lennon</div>
22
+ <a href="https://genius.com/artists/john-lennon">
23
+ <div style="text-align: center; font-size: 14px;">@john-lennon</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 John Lennon.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/john-lennon).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/john-lennon")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/f3d8fseh/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 John Lennon's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/36mtogkg) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/36mtogkg/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/john-lennon')
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/john-lennon")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/john-lennon")
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.0",
39
+ "use_cache": true,
40
+ "vocab_size": 50257
41
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
1
+ {"eval_loss": 1.9499354362487793, "eval_runtime": 15.8313, "eval_samples_per_second": 20.655, "eval_steps_per_second": 2.59, "epoch": 2.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec6dbc7fea0d0e4f16294efe5e94d1c0adca03e27f563801244e65246f97d9bf
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:16022ecdad5dad5959fd32c32786c94500842871575ae1fac8a913eb29d80a7a
3
+ size 995604017
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f773e165b282d5fdc073142a39d0c9a2f52f3b2fa288490de3f42c9dc258c278
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fadf1ccb38001d52b1ddd7331060189febed0d45878e91f4fe289dcc62f7b190
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a6ff29103f1215b60e10b13af196b4d6ae76507831110b85ded0358b04bd96e
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,638 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.9499354362487793,
3
+ "best_model_checkpoint": "output/john-lennon/checkpoint-506",
4
+ "epoch": 2.0,
5
+ "global_step": 506,
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.02,
12
+ "learning_rate": 0.00013706782378281954,
13
+ "loss": 3.1396,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.04,
18
+ "learning_rate": 0.0001366718044768288,
19
+ "loss": 2.944,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.06,
24
+ "learning_rate": 0.00013601346815589937,
25
+ "loss": 2.9219,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.08,
30
+ "learning_rate": 0.00013509535174144625,
31
+ "loss": 2.7004,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.1,
36
+ "learning_rate": 0.00013392099322631472,
37
+ "loss": 2.7631,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.12,
42
+ "learning_rate": 0.0001324949180410046,
43
+ "loss": 2.7551,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.14,
48
+ "learning_rate": 0.0001308226216147698,
49
+ "loss": 2.7797,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.16,
54
+ "learning_rate": 0.0001289105481987947,
55
+ "loss": 2.8361,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.18,
60
+ "learning_rate": 0.0001267660660330529,
61
+ "loss": 2.7943,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.2,
66
+ "learning_rate": 0.00012439743895254382,
67
+ "loss": 2.64,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.22,
72
+ "learning_rate": 0.0001218137945423232,
73
+ "loss": 2.5387,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.24,
78
+ "learning_rate": 0.00011902508896404359,
79
+ "loss": 2.693,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.26,
84
+ "learning_rate": 0.0001160420685895466,
85
+ "loss": 2.9437,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 0.28,
90
+ "learning_rate": 0.0001128762285893533,
91
+ "loss": 2.5893,
92
+ "step": 70
93
+ },
94
+ {
95
+ "epoch": 0.3,
96
+ "learning_rate": 0.00010953976863563352,
97
+ "loss": 2.5721,
98
+ "step": 75
99
+ },
100
+ {
101
+ "epoch": 0.32,
102
+ "learning_rate": 0.00010604554589035391,
103
+ "loss": 2.5719,
104
+ "step": 80
105
+ },
106
+ {
107
+ "epoch": 0.34,
108
+ "learning_rate": 0.00010240702545976687,
109
+ "loss": 2.757,
110
+ "step": 85
111
+ },
112
+ {
113
+ "epoch": 0.36,
114
+ "learning_rate": 9.863822850616538e-05,
115
+ "loss": 2.3807,
116
+ "step": 90
117
+ },
118
+ {
119
+ "epoch": 0.38,
120
+ "learning_rate": 9.475367821685696e-05,
121
+ "loss": 2.2877,
122
+ "step": 95
123
+ },
124
+ {
125
+ "epoch": 0.4,
126
+ "learning_rate": 9.076834383856722e-05,
127
+ "loss": 2.4833,
128
+ "step": 100
129
+ },
130
+ {
131
+ "epoch": 0.42,
132
+ "learning_rate": 8.669758299293816e-05,
133
+ "loss": 2.5693,
134
+ "step": 105
135
+ },
136
+ {
137
+ "epoch": 0.43,
138
+ "learning_rate": 8.255708249541069e-05,
139
+ "loss": 2.4457,
140
+ "step": 110
141
+ },
142
+ {
143
+ "epoch": 0.45,
144
+ "learning_rate": 7.836279790554737e-05,
145
+ "loss": 2.5813,
146
+ "step": 115
147
+ },
148
+ {
149
+ "epoch": 0.47,
150
+ "learning_rate": 7.413089204174082e-05,
151
+ "loss": 2.3967,
152
+ "step": 120
153
+ },
154
+ {
155
+ "epoch": 0.49,
156
+ "learning_rate": 6.987767269724301e-05,
157
+ "loss": 2.4554,
158
+ "step": 125
159
+ },
160
+ {
161
+ "epoch": 0.51,
162
+ "learning_rate": 6.561952979752895e-05,
163
+ "loss": 2.5141,
164
+ "step": 130
165
+ },
166
+ {
167
+ "epoch": 0.53,
168
+ "learning_rate": 6.137287224116132e-05,
169
+ "loss": 2.6133,
170
+ "step": 135
171
+ },
172
+ {
173
+ "epoch": 0.55,
174
+ "learning_rate": 5.715406466754129e-05,
175
+ "loss": 2.5404,
176
+ "step": 140
177
+ },
178
+ {
179
+ "epoch": 0.57,
180
+ "learning_rate": 5.297936439521389e-05,
181
+ "loss": 2.3175,
182
+ "step": 145
183
+ },
184
+ {
185
+ "epoch": 0.59,
186
+ "learning_rate": 4.8864858773737654e-05,
187
+ "loss": 2.4477,
188
+ "step": 150
189
+ },
190
+ {
191
+ "epoch": 0.61,
192
+ "learning_rate": 4.482640319053576e-05,
193
+ "loss": 2.424,
194
+ "step": 155
195
+ },
196
+ {
197
+ "epoch": 0.63,
198
+ "learning_rate": 4.0879559971621006e-05,
199
+ "loss": 2.6316,
200
+ "step": 160
201
+ },
202
+ {
203
+ "epoch": 0.65,
204
+ "learning_rate": 3.703953841164296e-05,
205
+ "loss": 2.3138,
206
+ "step": 165
207
+ },
208
+ {
209
+ "epoch": 0.67,
210
+ "learning_rate": 3.33211361643535e-05,
211
+ "loss": 2.2384,
212
+ "step": 170
213
+ },
214
+ {
215
+ "epoch": 0.69,
216
+ "learning_rate": 2.973868221934456e-05,
217
+ "loss": 2.1915,
218
+ "step": 175
219
+ },
220
+ {
221
+ "epoch": 0.71,
222
+ "learning_rate": 2.6305981684799012e-05,
223
+ "loss": 2.4846,
224
+ "step": 180
225
+ },
226
+ {
227
+ "epoch": 0.73,
228
+ "learning_rate": 2.303626258903672e-05,
229
+ "loss": 2.1743,
230
+ "step": 185
231
+ },
232
+ {
233
+ "epoch": 0.75,
234
+ "learning_rate": 1.99421249058571e-05,
235
+ "loss": 2.2715,
236
+ "step": 190
237
+ },
238
+ {
239
+ "epoch": 0.77,
240
+ "learning_rate": 1.703549200011139e-05,
241
+ "loss": 2.4405,
242
+ "step": 195
243
+ },
244
+ {
245
+ "epoch": 0.79,
246
+ "learning_rate": 1.4327564680610529e-05,
247
+ "loss": 2.2981,
248
+ "step": 200
249
+ },
250
+ {
251
+ "epoch": 0.81,
252
+ "learning_rate": 1.1828778037427104e-05,
253
+ "loss": 2.3665,
254
+ "step": 205
255
+ },
256
+ {
257
+ "epoch": 0.83,
258
+ "learning_rate": 9.548761229920845e-06,
259
+ "loss": 2.1714,
260
+ "step": 210
261
+ },
262
+ {
263
+ "epoch": 0.85,
264
+ "learning_rate": 7.496300380445175e-06,
265
+ "loss": 2.5874,
266
+ "step": 215
267
+ },
268
+ {
269
+ "epoch": 0.87,
270
+ "learning_rate": 5.679304716725937e-06,
271
+ "loss": 2.416,
272
+ "step": 220
273
+ },
274
+ {
275
+ "epoch": 0.89,
276
+ "learning_rate": 4.104776093383014e-06,
277
+ "loss": 2.2762,
278
+ "step": 225
279
+ },
280
+ {
281
+ "epoch": 0.91,
282
+ "learning_rate": 2.778782010045488e-06,
283
+ "loss": 2.3586,
284
+ "step": 230
285
+ },
286
+ {
287
+ "epoch": 0.93,
288
+ "learning_rate": 1.7064322300351674e-06,
289
+ "loss": 2.2319,
290
+ "step": 235
291
+ },
292
+ {
293
+ "epoch": 0.95,
294
+ "learning_rate": 8.918590897198837e-07,
295
+ "loss": 2.479,
296
+ "step": 240
297
+ },
298
+ {
299
+ "epoch": 0.97,
300
+ "learning_rate": 3.382015744146126e-07,
301
+ "loss": 2.2518,
302
+ "step": 245
303
+ },
304
+ {
305
+ "epoch": 0.99,
306
+ "learning_rate": 4.7593222194759165e-08,
307
+ "loss": 2.0598,
308
+ "step": 250
309
+ },
310
+ {
311
+ "epoch": 1.0,
312
+ "eval_loss": 2.1660313606262207,
313
+ "eval_runtime": 15.7786,
314
+ "eval_samples_per_second": 20.724,
315
+ "eval_steps_per_second": 2.598,
316
+ "step": 253
317
+ },
318
+ {
319
+ "epoch": 1.01,
320
+ "learning_rate": 2.1153902234600496e-08,
321
+ "loss": 2.2301,
322
+ "step": 255
323
+ },
324
+ {
325
+ "epoch": 1.03,
326
+ "learning_rate": 2.589854993532899e-07,
327
+ "loss": 2.306,
328
+ "step": 260
329
+ },
330
+ {
331
+ "epoch": 1.05,
332
+ "learning_rate": 7.601715213982628e-07,
333
+ "loss": 2.2196,
334
+ "step": 265
335
+ },
336
+ {
337
+ "epoch": 1.07,
338
+ "learning_rate": 1.522780630978913e-06,
339
+ "loss": 2.4015,
340
+ "step": 270
341
+ },
342
+ {
343
+ "epoch": 1.09,
344
+ "learning_rate": 2.5438740879409643e-06,
345
+ "loss": 2.1129,
346
+ "step": 275
347
+ },
348
+ {
349
+ "epoch": 1.11,
350
+ "learning_rate": 3.819517073901653e-06,
351
+ "loss": 2.0746,
352
+ "step": 280
353
+ },
354
+ {
355
+ "epoch": 1.13,
356
+ "learning_rate": 5.344793855206241e-06,
357
+ "loss": 2.1512,
358
+ "step": 285
359
+ },
360
+ {
361
+ "epoch": 1.15,
362
+ "learning_rate": 7.1138267258749755e-06,
363
+ "loss": 2.1905,
364
+ "step": 290
365
+ },
366
+ {
367
+ "epoch": 1.17,
368
+ "learning_rate": 9.119798657543025e-06,
369
+ "loss": 2.3491,
370
+ "step": 295
371
+ },
372
+ {
373
+ "epoch": 1.19,
374
+ "learning_rate": 1.1354979569111356e-05,
375
+ "loss": 2.17,
376
+ "step": 300
377
+ },
378
+ {
379
+ "epoch": 1.21,
380
+ "learning_rate": 1.3810756114877161e-05,
381
+ "loss": 2.0833,
382
+ "step": 305
383
+ },
384
+ {
385
+ "epoch": 1.23,
386
+ "learning_rate": 1.647766487635476e-05,
387
+ "loss": 2.1924,
388
+ "step": 310
389
+ },
390
+ {
391
+ "epoch": 1.25,
392
+ "learning_rate": 1.9345428829880624e-05,
393
+ "loss": 2.1825,
394
+ "step": 315
395
+ },
396
+ {
397
+ "epoch": 1.26,
398
+ "learning_rate": 2.240299694947395e-05,
399
+ "loss": 2.1866,
400
+ "step": 320
401
+ },
402
+ {
403
+ "epoch": 1.28,
404
+ "learning_rate": 2.5638586792341077e-05,
405
+ "loss": 2.2806,
406
+ "step": 325
407
+ },
408
+ {
409
+ "epoch": 1.3,
410
+ "learning_rate": 2.9039729902920112e-05,
411
+ "loss": 2.0872,
412
+ "step": 330
413
+ },
414
+ {
415
+ "epoch": 1.32,
416
+ "learning_rate": 3.2593319860498214e-05,
417
+ "loss": 2.2949,
418
+ "step": 335
419
+ },
420
+ {
421
+ "epoch": 1.34,
422
+ "learning_rate": 3.628566278525032e-05,
423
+ "loss": 2.1108,
424
+ "step": 340
425
+ },
426
+ {
427
+ "epoch": 1.36,
428
+ "learning_rate": 4.0102530108070535e-05,
429
+ "loss": 2.2652,
430
+ "step": 345
431
+ },
432
+ {
433
+ "epoch": 1.38,
434
+ "learning_rate": 4.4029213400848006e-05,
435
+ "loss": 2.1869,
436
+ "step": 350
437
+ },
438
+ {
439
+ "epoch": 1.4,
440
+ "learning_rate": 4.8050581055894354e-05,
441
+ "loss": 1.8115,
442
+ "step": 355
443
+ },
444
+ {
445
+ "epoch": 1.42,
446
+ "learning_rate": 5.215113659610952e-05,
447
+ "loss": 2.0593,
448
+ "step": 360
449
+ },
450
+ {
451
+ "epoch": 1.44,
452
+ "learning_rate": 5.631507839118308e-05,
453
+ "loss": 2.315,
454
+ "step": 365
455
+ },
456
+ {
457
+ "epoch": 1.46,
458
+ "learning_rate": 6.052636054971471e-05,
459
+ "loss": 2.1821,
460
+ "step": 370
461
+ },
462
+ {
463
+ "epoch": 1.48,
464
+ "learning_rate": 6.476875475260261e-05,
465
+ "loss": 2.1544,
466
+ "step": 375
467
+ },
468
+ {
469
+ "epoch": 1.5,
470
+ "learning_rate": 6.902591278942309e-05,
471
+ "loss": 2.0091,
472
+ "step": 380
473
+ },
474
+ {
475
+ "epoch": 1.52,
476
+ "learning_rate": 7.328142955681643e-05,
477
+ "loss": 2.2613,
478
+ "step": 385
479
+ },
480
+ {
481
+ "epoch": 1.54,
482
+ "learning_rate": 7.75189062761101e-05,
483
+ "loss": 2.0543,
484
+ "step": 390
485
+ },
486
+ {
487
+ "epoch": 1.56,
488
+ "learning_rate": 8.172201368657108e-05,
489
+ "loss": 2.0958,
490
+ "step": 395
491
+ },
492
+ {
493
+ "epoch": 1.58,
494
+ "learning_rate": 8.587455497076717e-05,
495
+ "loss": 1.9326,
496
+ "step": 400
497
+ },
498
+ {
499
+ "epoch": 1.6,
500
+ "learning_rate": 8.996052816955487e-05,
501
+ "loss": 2.2574,
502
+ "step": 405
503
+ },
504
+ {
505
+ "epoch": 1.62,
506
+ "learning_rate": 9.396418784617256e-05,
507
+ "loss": 2.2874,
508
+ "step": 410
509
+ },
510
+ {
511
+ "epoch": 1.64,
512
+ "learning_rate": 9.787010576181766e-05,
513
+ "loss": 2.1276,
514
+ "step": 415
515
+ },
516
+ {
517
+ "epoch": 1.66,
518
+ "learning_rate": 0.0001016632303288892,
519
+ "loss": 2.0318,
520
+ "step": 420
521
+ },
522
+ {
523
+ "epoch": 1.68,
524
+ "learning_rate": 0.00010532894461279352,
525
+ "loss": 1.9958,
526
+ "step": 425
527
+ },
528
+ {
529
+ "epoch": 1.7,
530
+ "learning_rate": 0.00010885312265879837,
531
+ "loss": 2.1824,
532
+ "step": 430
533
+ },
534
+ {
535
+ "epoch": 1.72,
536
+ "learning_rate": 0.00011222218392688076,
537
+ "loss": 2.0295,
538
+ "step": 435
539
+ },
540
+ {
541
+ "epoch": 1.74,
542
+ "learning_rate": 0.00011542314562479964,
543
+ "loss": 1.9594,
544
+ "step": 440
545
+ },
546
+ {
547
+ "epoch": 1.76,
548
+ "learning_rate": 0.00011844367273772802,
549
+ "loss": 2.1575,
550
+ "step": 445
551
+ },
552
+ {
553
+ "epoch": 1.78,
554
+ "learning_rate": 0.00012127212556165186,
555
+ "loss": 2.1388,
556
+ "step": 450
557
+ },
558
+ {
559
+ "epoch": 1.8,
560
+ "learning_rate": 0.00012389760455736598,
561
+ "loss": 2.1449,
562
+ "step": 455
563
+ },
564
+ {
565
+ "epoch": 1.82,
566
+ "learning_rate": 0.000126309992352219,
567
+ "loss": 2.253,
568
+ "step": 460
569
+ },
570
+ {
571
+ "epoch": 1.84,
572
+ "learning_rate": 0.0001284999927277534,
573
+ "loss": 1.9017,
574
+ "step": 465
575
+ },
576
+ {
577
+ "epoch": 1.86,
578
+ "learning_rate": 0.00013045916644299936,
579
+ "loss": 1.9045,
580
+ "step": 470
581
+ },
582
+ {
583
+ "epoch": 1.88,
584
+ "learning_rate": 0.00013217996375537733,
585
+ "loss": 1.8158,
586
+ "step": 475
587
+ },
588
+ {
589
+ "epoch": 1.9,
590
+ "learning_rate": 0.0001336557535138877,
591
+ "loss": 2.1949,
592
+ "step": 480
593
+ },
594
+ {
595
+ "epoch": 1.92,
596
+ "learning_rate": 0.00013488084871247707,
597
+ "loss": 2.0855,
598
+ "step": 485
599
+ },
600
+ {
601
+ "epoch": 1.94,
602
+ "learning_rate": 0.00013585052840510938,
603
+ "loss": 2.3929,
604
+ "step": 490
605
+ },
606
+ {
607
+ "epoch": 1.96,
608
+ "learning_rate": 0.00013656105589809228,
609
+ "loss": 2.0561,
610
+ "step": 495
611
+ },
612
+ {
613
+ "epoch": 1.98,
614
+ "learning_rate": 0.0001370096931495533,
615
+ "loss": 1.956,
616
+ "step": 500
617
+ },
618
+ {
619
+ "epoch": 2.0,
620
+ "learning_rate": 0.00013719471132057743,
621
+ "loss": 1.8902,
622
+ "step": 505
623
+ },
624
+ {
625
+ "epoch": 2.0,
626
+ "eval_loss": 1.9499354362487793,
627
+ "eval_runtime": 15.8099,
628
+ "eval_samples_per_second": 20.683,
629
+ "eval_steps_per_second": 2.593,
630
+ "step": 506
631
+ }
632
+ ],
633
+ "max_steps": 506,
634
+ "num_train_epochs": 2,
635
+ "total_flos": 527287320576000.0,
636
+ "trial_name": null,
637
+ "trial_params": null
638
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47598b595016a0df89d1c6506f872c2d981df67d3d41c5adfd11c334f3c4793d
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff