AlekseyKorshuk commited on
Commit
b5d5f55
1 Parent(s): ee41d62

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/og-buda
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/73f7f7eaff5043a332d13cfae5282bc5.668x668x1.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">OG Buda</div>
22
+ <a href="https://genius.com/artists/og-buda">
23
+ <div style="text-align: center; font-size: 14px;">@og-buda</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 OG Buda.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/og-buda).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/og-buda")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/3fm004ry/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 OG Buda's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/3r1oo0se) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/3r1oo0se/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/og-buda')
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/og-buda")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/og-buda")
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.7267966270446777, "eval_runtime": 9.827, "eval_samples_per_second": 22.082, "eval_steps_per_second": 2.849, "epoch": 3.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2b95c809621b3aecc74a1c90f3c824a1a3a2d6ce143dee337193937ebba7bd0
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:4f804530839f0ce5add3c90035df250c1e521fbcfc6c6b9411ff5d93495bc79f
3
+ size 995604017
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:860c0ba6e9c4d2a7b8cf3014a15ef0dd7d194bc3e7624e85d836256662aaeb56
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9ef718cfc6030c7cccdc844d0b97e7bd680aadecd264b3ef13b83e80663d3b7
3
+ size 14567
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5824e0331cc12edcb39b03d3f95b3b9ecd34a42ea9c54b7208dfa4115ef580e
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,586 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.7267966270446777,
3
+ "best_model_checkpoint": "output/og-buda/checkpoint-456",
4
+ "epoch": 3.0,
5
+ "global_step": 456,
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.03,
12
+ "learning_rate": 0.00013683401763576845,
13
+ "loss": 2.7577,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.07,
18
+ "learning_rate": 0.0001357399755894565,
19
+ "loss": 2.4782,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.1,
24
+ "learning_rate": 0.00013392954733321228,
25
+ "loss": 2.3702,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.13,
30
+ "learning_rate": 0.00013142205020853694,
31
+ "loss": 2.2696,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.16,
36
+ "learning_rate": 0.00012824423930948275,
37
+ "loss": 2.2909,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.2,
42
+ "learning_rate": 0.00012443002200473538,
43
+ "loss": 2.2339,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.23,
48
+ "learning_rate": 0.00012002009614464126,
49
+ "loss": 2.1468,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.26,
54
+ "learning_rate": 0.00011506151581352585,
55
+ "loss": 2.2085,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.3,
60
+ "learning_rate": 0.00010960718926074231,
61
+ "loss": 2.0772,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.33,
66
+ "learning_rate": 0.00010371531436754662,
67
+ "loss": 2.1209,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.36,
72
+ "learning_rate": 9.744875767338973e-05,
73
+ "loss": 2.1212,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.39,
78
+ "learning_rate": 9.08743835874413e-05,
79
+ "loss": 2.1052,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.43,
84
+ "learning_rate": 8.40623409426843e-05,
85
+ "loss": 2.0228,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 0.46,
90
+ "learning_rate": 7.708531450507727e-05,
91
+ "loss": 2.0757,
92
+ "step": 70
93
+ },
94
+ {
95
+ "epoch": 0.49,
96
+ "learning_rate": 7.001774942421023e-05,
97
+ "loss": 2.001,
98
+ "step": 75
99
+ },
100
+ {
101
+ "epoch": 0.53,
102
+ "learning_rate": 6.293505690059801e-05,
103
+ "loss": 1.9417,
104
+ "step": 80
105
+ },
106
+ {
107
+ "epoch": 0.56,
108
+ "learning_rate": 5.59128095451711e-05,
109
+ "loss": 2.0215,
110
+ "step": 85
111
+ },
112
+ {
113
+ "epoch": 0.59,
114
+ "learning_rate": 4.902593501651139e-05,
115
+ "loss": 2.0056,
116
+ "step": 90
117
+ },
118
+ {
119
+ "epoch": 0.62,
120
+ "learning_rate": 4.2347916539754844e-05,
121
+ "loss": 2.0711,
122
+ "step": 95
123
+ },
124
+ {
125
+ "epoch": 0.66,
126
+ "learning_rate": 3.5950008837656755e-05,
127
+ "loss": 2.0311,
128
+ "step": 100
129
+ },
130
+ {
131
+ "epoch": 0.69,
132
+ "learning_rate": 2.9900477839865778e-05,
133
+ "loss": 1.9157,
134
+ "step": 105
135
+ },
136
+ {
137
+ "epoch": 0.72,
138
+ "learning_rate": 2.4263872282739445e-05,
139
+ "loss": 2.0822,
140
+ "step": 110
141
+ },
142
+ {
143
+ "epoch": 0.76,
144
+ "learning_rate": 1.910033497175995e-05,
145
+ "loss": 2.0431,
146
+ "step": 115
147
+ },
148
+ {
149
+ "epoch": 0.79,
150
+ "learning_rate": 1.4464961055407408e-05,
151
+ "loss": 1.9706,
152
+ "step": 120
153
+ },
154
+ {
155
+ "epoch": 0.82,
156
+ "learning_rate": 1.040721015773445e-05,
157
+ "loss": 1.9533,
158
+ "step": 125
159
+ },
160
+ {
161
+ "epoch": 0.86,
162
+ "learning_rate": 6.97037864221025e-06,
163
+ "loss": 1.968,
164
+ "step": 130
165
+ },
166
+ {
167
+ "epoch": 0.89,
168
+ "learning_rate": 4.1911376378003306e-06,
169
+ "loss": 1.9282,
170
+ "step": 135
171
+ },
172
+ {
173
+ "epoch": 0.92,
174
+ "learning_rate": 2.0991417565619363e-06,
175
+ "loss": 1.9382,
176
+ "step": 140
177
+ },
178
+ {
179
+ "epoch": 0.95,
180
+ "learning_rate": 7.167126777538922e-07,
181
+ "loss": 1.9811,
182
+ "step": 145
183
+ },
184
+ {
185
+ "epoch": 0.99,
186
+ "learning_rate": 5.860097463115006e-08,
187
+ "loss": 1.9187,
188
+ "step": 150
189
+ },
190
+ {
191
+ "epoch": 1.0,
192
+ "eval_loss": 1.8772083520889282,
193
+ "eval_runtime": 9.7424,
194
+ "eval_samples_per_second": 22.274,
195
+ "eval_steps_per_second": 2.874,
196
+ "step": 152
197
+ },
198
+ {
199
+ "epoch": 1.02,
200
+ "learning_rate": 1.3182872524144475e-07,
201
+ "loss": 1.9052,
202
+ "step": 155
203
+ },
204
+ {
205
+ "epoch": 1.05,
206
+ "learning_rate": 9.35614586573241e-07,
207
+ "loss": 1.9644,
208
+ "step": 160
209
+ },
210
+ {
211
+ "epoch": 1.09,
212
+ "learning_rate": 2.461382131516746e-06,
213
+ "loss": 1.9317,
214
+ "step": 165
215
+ },
216
+ {
217
+ "epoch": 1.12,
218
+ "learning_rate": 4.692851359682261e-06,
219
+ "loss": 2.0608,
220
+ "step": 170
221
+ },
222
+ {
223
+ "epoch": 1.15,
224
+ "learning_rate": 7.606212405651899e-06,
225
+ "loss": 1.8731,
226
+ "step": 175
227
+ },
228
+ {
229
+ "epoch": 1.18,
230
+ "learning_rate": 1.1170379591190527e-05,
231
+ "loss": 1.8801,
232
+ "step": 180
233
+ },
234
+ {
235
+ "epoch": 1.22,
236
+ "learning_rate": 1.5347323110669033e-05,
237
+ "loss": 1.8913,
238
+ "step": 185
239
+ },
240
+ {
241
+ "epoch": 1.25,
242
+ "learning_rate": 2.009247481060283e-05,
243
+ "loss": 1.9579,
244
+ "step": 190
245
+ },
246
+ {
247
+ "epoch": 1.28,
248
+ "learning_rate": 2.5355203733622272e-05,
249
+ "loss": 1.9638,
250
+ "step": 195
251
+ },
252
+ {
253
+ "epoch": 1.32,
254
+ "learning_rate": 3.1079356352801514e-05,
255
+ "loss": 1.9192,
256
+ "step": 200
257
+ },
258
+ {
259
+ "epoch": 1.35,
260
+ "learning_rate": 3.7203855732024184e-05,
261
+ "loss": 1.9342,
262
+ "step": 205
263
+ },
264
+ {
265
+ "epoch": 1.38,
266
+ "learning_rate": 4.3663353219321276e-05,
267
+ "loss": 1.9085,
268
+ "step": 210
269
+ },
270
+ {
271
+ "epoch": 1.41,
272
+ "learning_rate": 5.038892571958626e-05,
273
+ "loss": 1.9788,
274
+ "step": 215
275
+ },
276
+ {
277
+ "epoch": 1.45,
278
+ "learning_rate": 5.7308811106741675e-05,
279
+ "loss": 1.9669,
280
+ "step": 220
281
+ },
282
+ {
283
+ "epoch": 1.48,
284
+ "learning_rate": 6.434917392847842e-05,
285
+ "loss": 1.927,
286
+ "step": 225
287
+ },
288
+ {
289
+ "epoch": 1.51,
290
+ "learning_rate": 7.143489323346855e-05,
291
+ "loss": 1.9403,
292
+ "step": 230
293
+ },
294
+ {
295
+ "epoch": 1.55,
296
+ "learning_rate": 7.849036411490396e-05,
297
+ "loss": 1.8539,
298
+ "step": 235
299
+ },
300
+ {
301
+ "epoch": 1.58,
302
+ "learning_rate": 8.54403044178588e-05,
303
+ "loss": 1.9165,
304
+ "step": 240
305
+ },
306
+ {
307
+ "epoch": 1.61,
308
+ "learning_rate": 9.221055800287699e-05,
309
+ "loss": 1.906,
310
+ "step": 245
311
+ },
312
+ {
313
+ "epoch": 1.64,
314
+ "learning_rate": 9.87288859949296e-05,
315
+ "loss": 1.852,
316
+ "step": 250
317
+ },
318
+ {
319
+ "epoch": 1.68,
320
+ "learning_rate": 0.00010492573757508462,
321
+ "loss": 1.8733,
322
+ "step": 255
323
+ },
324
+ {
325
+ "epoch": 1.71,
326
+ "learning_rate": 0.00011073499209051121,
327
+ "loss": 1.874,
328
+ "step": 260
329
+ },
330
+ {
331
+ "epoch": 1.74,
332
+ "learning_rate": 0.00011609466456447531,
333
+ "loss": 1.8853,
334
+ "step": 265
335
+ },
336
+ {
337
+ "epoch": 1.78,
338
+ "learning_rate": 0.00012094756707850673,
339
+ "loss": 1.9022,
340
+ "step": 270
341
+ },
342
+ {
343
+ "epoch": 1.81,
344
+ "learning_rate": 0.0001252419189697637,
345
+ "loss": 1.8298,
346
+ "step": 275
347
+ },
348
+ {
349
+ "epoch": 1.84,
350
+ "learning_rate": 0.00012893189933276512,
351
+ "loss": 1.9105,
352
+ "step": 280
353
+ },
354
+ {
355
+ "epoch": 1.88,
356
+ "learning_rate": 0.00013197813593027427,
357
+ "loss": 1.8641,
358
+ "step": 285
359
+ },
360
+ {
361
+ "epoch": 1.91,
362
+ "learning_rate": 0.00013434812529663614,
363
+ "loss": 1.8622,
364
+ "step": 290
365
+ },
366
+ {
367
+ "epoch": 1.94,
368
+ "learning_rate": 0.00013601657955104887,
369
+ "loss": 1.906,
370
+ "step": 295
371
+ },
372
+ {
373
+ "epoch": 1.97,
374
+ "learning_rate": 0.00013696569622025754,
375
+ "loss": 1.9195,
376
+ "step": 300
377
+ },
378
+ {
379
+ "epoch": 2.0,
380
+ "eval_loss": 1.8195273876190186,
381
+ "eval_runtime": 9.7405,
382
+ "eval_samples_per_second": 22.278,
383
+ "eval_steps_per_second": 2.875,
384
+ "step": 304
385
+ },
386
+ {
387
+ "epoch": 2.01,
388
+ "learning_rate": 0.0001371853481916521,
389
+ "loss": 1.7633,
390
+ "step": 305
391
+ },
392
+ {
393
+ "epoch": 2.04,
394
+ "learning_rate": 0.00013667319176996132,
395
+ "loss": 1.8122,
396
+ "step": 310
397
+ },
398
+ {
399
+ "epoch": 2.07,
400
+ "learning_rate": 0.00013543469168457496,
401
+ "loss": 1.8677,
402
+ "step": 315
403
+ },
404
+ {
405
+ "epoch": 2.11,
406
+ "learning_rate": 0.00013348306278066356,
407
+ "loss": 1.8531,
408
+ "step": 320
409
+ },
410
+ {
411
+ "epoch": 2.14,
412
+ "learning_rate": 0.000130839129016255,
413
+ "loss": 1.8181,
414
+ "step": 325
415
+ },
416
+ {
417
+ "epoch": 2.17,
418
+ "learning_rate": 0.00012753110126977412,
419
+ "loss": 1.8011,
420
+ "step": 330
421
+ },
422
+ {
423
+ "epoch": 2.2,
424
+ "learning_rate": 0.0001235942763288477,
425
+ "loss": 1.8196,
426
+ "step": 335
427
+ },
428
+ {
429
+ "epoch": 2.24,
430
+ "learning_rate": 0.00011907066027217684,
431
+ "loss": 1.8093,
432
+ "step": 340
433
+ },
434
+ {
435
+ "epoch": 2.27,
436
+ "learning_rate": 0.00011400852026300626,
437
+ "loss": 1.8397,
438
+ "step": 345
439
+ },
440
+ {
441
+ "epoch": 2.3,
442
+ "learning_rate": 0.00010846186953657296,
443
+ "loss": 1.7362,
444
+ "step": 350
445
+ },
446
+ {
447
+ "epoch": 2.34,
448
+ "learning_rate": 0.00010248989107673776,
449
+ "loss": 1.6683,
450
+ "step": 355
451
+ },
452
+ {
453
+ "epoch": 2.37,
454
+ "learning_rate": 9.615630613119375e-05,
455
+ "loss": 1.8356,
456
+ "step": 360
457
+ },
458
+ {
459
+ "epoch": 2.4,
460
+ "learning_rate": 8.952869430321868e-05,
461
+ "loss": 1.8106,
462
+ "step": 365
463
+ },
464
+ {
465
+ "epoch": 2.43,
466
+ "learning_rate": 8.267777247462053e-05,
467
+ "loss": 1.8027,
468
+ "step": 370
469
+ },
470
+ {
471
+ "epoch": 2.47,
472
+ "learning_rate": 7.567664025379571e-05,
473
+ "loss": 1.7443,
474
+ "step": 375
475
+ },
476
+ {
477
+ "epoch": 2.5,
478
+ "learning_rate": 6.860000000000001e-05,
479
+ "loss": 1.7579,
480
+ "step": 380
481
+ },
482
+ {
483
+ "epoch": 2.53,
484
+ "learning_rate": 6.152335974620434e-05,
485
+ "loss": 1.7847,
486
+ "step": 385
487
+ },
488
+ {
489
+ "epoch": 2.57,
490
+ "learning_rate": 5.45222275253795e-05,
491
+ "loss": 1.7549,
492
+ "step": 390
493
+ },
494
+ {
495
+ "epoch": 2.6,
496
+ "learning_rate": 4.76713056967813e-05,
497
+ "loss": 1.7157,
498
+ "step": 395
499
+ },
500
+ {
501
+ "epoch": 2.63,
502
+ "learning_rate": 4.1043693868806304e-05,
503
+ "loss": 1.7905,
504
+ "step": 400
505
+ },
506
+ {
507
+ "epoch": 2.66,
508
+ "learning_rate": 3.471010892326228e-05,
509
+ "loss": 1.7419,
510
+ "step": 405
511
+ },
512
+ {
513
+ "epoch": 2.7,
514
+ "learning_rate": 2.873813046342713e-05,
515
+ "loss": 1.7189,
516
+ "step": 410
517
+ },
518
+ {
519
+ "epoch": 2.73,
520
+ "learning_rate": 2.3191479736993775e-05,
521
+ "loss": 1.7705,
522
+ "step": 415
523
+ },
524
+ {
525
+ "epoch": 2.76,
526
+ "learning_rate": 1.812933972782316e-05,
527
+ "loss": 1.6987,
528
+ "step": 420
529
+ },
530
+ {
531
+ "epoch": 2.8,
532
+ "learning_rate": 1.3605723671152311e-05,
533
+ "loss": 1.7951,
534
+ "step": 425
535
+ },
536
+ {
537
+ "epoch": 2.83,
538
+ "learning_rate": 9.668898730225861e-06,
539
+ "loss": 1.7204,
540
+ "step": 430
541
+ },
542
+ {
543
+ "epoch": 2.86,
544
+ "learning_rate": 6.360870983745002e-06,
545
+ "loss": 1.8063,
546
+ "step": 435
547
+ },
548
+ {
549
+ "epoch": 2.89,
550
+ "learning_rate": 3.7169372193364486e-06,
551
+ "loss": 1.6961,
552
+ "step": 440
553
+ },
554
+ {
555
+ "epoch": 2.93,
556
+ "learning_rate": 1.7653083154250801e-06,
557
+ "loss": 1.6979,
558
+ "step": 445
559
+ },
560
+ {
561
+ "epoch": 2.96,
562
+ "learning_rate": 5.268082300387043e-07,
563
+ "loss": 1.7594,
564
+ "step": 450
565
+ },
566
+ {
567
+ "epoch": 2.99,
568
+ "learning_rate": 1.465180834793276e-08,
569
+ "loss": 1.7887,
570
+ "step": 455
571
+ },
572
+ {
573
+ "epoch": 3.0,
574
+ "eval_loss": 1.7267966270446777,
575
+ "eval_runtime": 9.7478,
576
+ "eval_samples_per_second": 22.262,
577
+ "eval_steps_per_second": 2.872,
578
+ "step": 456
579
+ }
580
+ ],
581
+ "max_steps": 456,
582
+ "num_train_epochs": 3,
583
+ "total_flos": 475028914176000.0,
584
+ "trial_name": null,
585
+ "trial_params": null
586
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c861e4bf6fefedbd0432d0ecc6f44737e89f7d8fcebe4c1d079577fd5ea0a59
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff