AlekseyKorshuk commited on
Commit
d454e93
1 Parent(s): c9e5522

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/big-russian-boss
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/d66eeeef006738708df1e52b84c34c14.403x403x1.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">Big Russian Boss</div>
22
+ <a href="https://genius.com/artists/big-russian-boss">
23
+ <div style="text-align: center; font-size: 14px;">@big-russian-boss</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 Big Russian Boss.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/big-russian-boss).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/big-russian-boss")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/1ju9bqqi/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 Big Russian Boss's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/3820n7qx) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/3820n7qx/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/big-russian-boss')
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/big-russian-boss")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/big-russian-boss")
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": 1.9292813539505005, "eval_runtime": 8.8697, "eval_samples_per_second": 20.519, "eval_steps_per_second": 2.593, "epoch": 2.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d7078748de8d1dec30781a7ade52b843feeff6c609b8fe3b79de80ce5ccb01b
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:c78f845755671930de872d23d761a1bf2eb80ae70333ec08006232f028e4f13f
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c90fcbd897010b174500212e9c722c022eef9b86040281f34f4ea0e8ff63282
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df4003aeeda8e472a41875f1db1ee7fb106906695db02639a5ced4a76e68a877
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71dece44af9bc94414a578525516fd968bcf7cd964f733d507bddca799880cea
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,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.9292813539505005,
3
+ "best_model_checkpoint": "output/big-russian-boss/checkpoint-248",
4
+ "epoch": 2.0,
5
+ "global_step": 248,
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.04,
12
+ "learning_rate": 0.00013665032034568096,
13
+ "loss": 2.5025,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.08,
18
+ "learning_rate": 0.0001350100903542216,
19
+ "loss": 2.3418,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.12,
24
+ "learning_rate": 0.0001323055957706572,
25
+ "loss": 2.1866,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.16,
30
+ "learning_rate": 0.00012858017786751834,
31
+ "loss": 2.2697,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.2,
36
+ "learning_rate": 0.00012389353887294475,
37
+ "loss": 2.131,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.24,
42
+ "learning_rate": 0.00011832078520391764,
43
+ "loss": 2.0523,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.28,
48
+ "learning_rate": 0.00011195122383741646,
49
+ "loss": 2.0523,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.32,
54
+ "learning_rate": 0.00010488693110842961,
55
+ "loss": 2.0586,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.36,
60
+ "learning_rate": 9.724111687075534e-05,
61
+ "loss": 2.1215,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.4,
66
+ "learning_rate": 8.913631023597238e-05,
67
+ "loss": 2.0016,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.44,
72
+ "learning_rate": 8.070239596528567e-05,
73
+ "loss": 2.0287,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.48,
78
+ "learning_rate": 7.207453298233569e-05,
79
+ "loss": 1.9277,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.52,
84
+ "learning_rate": 6.339098836414812e-05,
85
+ "loss": 1.9488,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 0.56,
90
+ "learning_rate": 5.4790921521917906e-05,
91
+ "loss": 1.9926,
92
+ "step": 70
93
+ },
94
+ {
95
+ "epoch": 0.6,
96
+ "learning_rate": 4.641215408156227e-05,
97
+ "loss": 1.8875,
98
+ "step": 75
99
+ },
100
+ {
101
+ "epoch": 0.65,
102
+ "learning_rate": 3.838896120314628e-05,
103
+ "loss": 1.9105,
104
+ "step": 80
105
+ },
106
+ {
107
+ "epoch": 0.69,
108
+ "learning_rate": 3.084991973471496e-05,
109
+ "loss": 1.8968,
110
+ "step": 85
111
+ },
112
+ {
113
+ "epoch": 0.73,
114
+ "learning_rate": 2.3915847685255567e-05,
115
+ "loss": 1.9608,
116
+ "step": 90
117
+ },
118
+ {
119
+ "epoch": 0.77,
120
+ "learning_rate": 1.7697868038067536e-05,
121
+ "loss": 1.8985,
122
+ "step": 95
123
+ },
124
+ {
125
+ "epoch": 0.81,
126
+ "learning_rate": 1.2295627933180862e-05,
127
+ "loss": 1.9667,
128
+ "step": 100
129
+ },
130
+ {
131
+ "epoch": 0.85,
132
+ "learning_rate": 7.795701757575202e-06,
133
+ "loss": 2.0107,
134
+ "step": 105
135
+ },
136
+ {
137
+ "epoch": 0.89,
138
+ "learning_rate": 4.270203734710291e-06,
139
+ "loss": 1.7971,
140
+ "step": 110
141
+ },
142
+ {
143
+ "epoch": 0.93,
144
+ "learning_rate": 1.7756322475164567e-06,
145
+ "loss": 2.0397,
146
+ "step": 115
147
+ },
148
+ {
149
+ "epoch": 0.97,
150
+ "learning_rate": 3.519644153159924e-07,
151
+ "loss": 1.9473,
152
+ "step": 120
153
+ },
154
+ {
155
+ "epoch": 1.0,
156
+ "eval_loss": 1.9632209539413452,
157
+ "eval_runtime": 8.8591,
158
+ "eval_samples_per_second": 20.544,
159
+ "eval_steps_per_second": 2.596,
160
+ "step": 124
161
+ },
162
+ {
163
+ "epoch": 1.01,
164
+ "learning_rate": 2.2015434664866374e-08,
165
+ "loss": 2.0051,
166
+ "step": 125
167
+ },
168
+ {
169
+ "epoch": 1.05,
170
+ "learning_rate": 7.910729510915516e-07,
171
+ "loss": 1.9063,
172
+ "step": 130
173
+ },
174
+ {
175
+ "epoch": 1.09,
176
+ "learning_rate": 2.6468123211622144e-06,
177
+ "loss": 1.9292,
178
+ "step": 135
179
+ },
180
+ {
181
+ "epoch": 1.13,
182
+ "learning_rate": 5.559494122852188e-06,
183
+ "loss": 1.8741,
184
+ "step": 140
185
+ },
186
+ {
187
+ "epoch": 1.17,
188
+ "learning_rate": 9.482440748992502e-06,
189
+ "loss": 1.9671,
190
+ "step": 145
191
+ },
192
+ {
193
+ "epoch": 1.21,
194
+ "learning_rate": 1.4352784446073873e-05,
195
+ "loss": 1.9278,
196
+ "step": 150
197
+ },
198
+ {
199
+ "epoch": 1.25,
200
+ "learning_rate": 2.009247481060283e-05,
201
+ "loss": 1.8776,
202
+ "step": 155
203
+ },
204
+ {
205
+ "epoch": 1.29,
206
+ "learning_rate": 2.660952959723034e-05,
207
+ "loss": 1.8322,
208
+ "step": 160
209
+ },
210
+ {
211
+ "epoch": 1.33,
212
+ "learning_rate": 3.379950879364461e-05,
213
+ "loss": 1.9671,
214
+ "step": 165
215
+ },
216
+ {
217
+ "epoch": 1.37,
218
+ "learning_rate": 4.154718833922634e-05,
219
+ "loss": 1.8845,
220
+ "step": 170
221
+ },
222
+ {
223
+ "epoch": 1.41,
224
+ "learning_rate": 4.972840666504281e-05,
225
+ "loss": 1.9002,
226
+ "step": 175
227
+ },
228
+ {
229
+ "epoch": 1.45,
230
+ "learning_rate": 5.8212054463186014e-05,
231
+ "loss": 1.8912,
232
+ "step": 180
233
+ },
234
+ {
235
+ "epoch": 1.49,
236
+ "learning_rate": 6.686217579811531e-05,
237
+ "loss": 1.9383,
238
+ "step": 185
239
+ },
240
+ {
241
+ "epoch": 1.53,
242
+ "learning_rate": 7.554014688833781e-05,
243
+ "loss": 1.9313,
244
+ "step": 190
245
+ },
246
+ {
247
+ "epoch": 1.57,
248
+ "learning_rate": 8.410689764204419e-05,
249
+ "loss": 1.8199,
250
+ "step": 195
251
+ },
252
+ {
253
+ "epoch": 1.61,
254
+ "learning_rate": 9.242514034515462e-05,
255
+ "loss": 1.8346,
256
+ "step": 200
257
+ },
258
+ {
259
+ "epoch": 1.65,
260
+ "learning_rate": 0.0001003615697856113,
261
+ "loss": 1.8638,
262
+ "step": 205
263
+ },
264
+ {
265
+ "epoch": 1.69,
266
+ "learning_rate": 0.00010778899955550273,
267
+ "loss": 1.8885,
268
+ "step": 210
269
+ },
270
+ {
271
+ "epoch": 1.73,
272
+ "learning_rate": 0.0001145884002954007,
273
+ "loss": 1.8695,
274
+ "step": 215
275
+ },
276
+ {
277
+ "epoch": 1.77,
278
+ "learning_rate": 0.00012065080721672542,
279
+ "loss": 1.8793,
280
+ "step": 220
281
+ },
282
+ {
283
+ "epoch": 1.81,
284
+ "learning_rate": 0.00012587906633286313,
285
+ "loss": 1.8785,
286
+ "step": 225
287
+ },
288
+ {
289
+ "epoch": 1.85,
290
+ "learning_rate": 0.00013018939141455285,
291
+ "loss": 1.8644,
292
+ "step": 230
293
+ },
294
+ {
295
+ "epoch": 1.9,
296
+ "learning_rate": 0.00013351270671832803,
297
+ "loss": 1.85,
298
+ "step": 235
299
+ },
300
+ {
301
+ "epoch": 1.94,
302
+ "learning_rate": 0.00013579575396992113,
303
+ "loss": 1.8876,
304
+ "step": 240
305
+ },
306
+ {
307
+ "epoch": 1.98,
308
+ "learning_rate": 0.0001370019458625086,
309
+ "loss": 1.8228,
310
+ "step": 245
311
+ },
312
+ {
313
+ "epoch": 2.0,
314
+ "eval_loss": 1.9292813539505005,
315
+ "eval_runtime": 8.8397,
316
+ "eval_samples_per_second": 20.589,
317
+ "eval_steps_per_second": 2.602,
318
+ "step": 248
319
+ }
320
+ ],
321
+ "max_steps": 248,
322
+ "num_train_epochs": 2,
323
+ "total_flos": 258156527616000.0,
324
+ "trial_name": null,
325
+ "trial_params": null
326
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8e32e9b3301c0343a4b1e8de43fbb14e5765d03eff46f9ce78a63cf6a8f20a6
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff