AlekseyKorshuk commited on
Commit
c0c86f8
1 Parent(s): 6263663

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/lil-uzi-vert
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/73f52f6c73859a68ab961ca797e7b848.725x725x1.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">Lil Uzi Vert</div>
22
+ <a href="https://genius.com/artists/lil-uzi-vert">
23
+ <div style="text-align: center; font-size: 14px;">@lil-uzi-vert</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 Lil Uzi Vert.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/lil-uzi-vert).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/lil-uzi-vert")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/2ndgi0dn/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 Lil Uzi Vert's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/9x6wbf6e) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/9x6wbf6e/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/lil-uzi-vert')
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/lil-uzi-vert")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/lil-uzi-vert")
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.9.2",
39
+ "use_cache": true,
40
+ "vocab_size": 50257
41
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
1
+ {"eval_loss": 3.0165445804595947, "eval_runtime": 8.1174, "eval_samples_per_second": 37.45, "eval_steps_per_second": 4.681, "epoch": 1.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9f834e2dab17d6b22f3e5622e6ae587c757af1be1061e4ecc23e0724ae0b559
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:42921bfbd1f7da4499f0e2f798f9137b868407cced67116b7819ce354a30349b
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e18a4078f8a9380fdeeb65a2e0038b5134dea4b4c76336a114ed08cea4d5ffa2
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3498d3c2707018f535ef83533e9dc2d6c4d547651de1f61798ba34c842d4d7f0
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbcce13fecbcb2be23ea34670a937a2c27e28ac198853dd41e256aa3ed115744
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,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 3.0165445804595947,
3
+ "best_model_checkpoint": "output/lil-uzi-vert/checkpoint-218",
4
+ "epoch": 1.0,
5
+ "global_step": 218,
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.0001370219946819302,
13
+ "loss": 4.0012,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.05,
18
+ "learning_rate": 0.0001364889025146963,
19
+ "loss": 3.8869,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.07,
24
+ "learning_rate": 0.00013560349006508517,
25
+ "loss": 3.6034,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.09,
30
+ "learning_rate": 0.0001343703523221556,
31
+ "loss": 3.5643,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.11,
36
+ "learning_rate": 0.00013279588885081002,
37
+ "loss": 3.3069,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.14,
42
+ "learning_rate": 0.0001308882705802323,
43
+ "loss": 3.431,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.16,
48
+ "learning_rate": 0.00012865739739954807,
49
+ "loss": 3.5848,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.18,
54
+ "learning_rate": 0.00012611484678077197,
55
+ "loss": 3.4069,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.21,
60
+ "learning_rate": 0.00012327381369567084,
61
+ "loss": 3.3532,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.23,
66
+ "learning_rate": 0.00012014904213835435,
67
+ "loss": 3.4164,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.25,
72
+ "learning_rate": 0.00011675674860896696,
73
+ "loss": 3.5117,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.28,
78
+ "learning_rate": 0.00011311453795557528,
79
+ "loss": 3.2964,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.3,
84
+ "learning_rate": 0.00010924131201100248,
85
+ "loss": 3.2104,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 0.32,
90
+ "learning_rate": 0.00010515717149875347,
91
+ "loss": 3.0675,
92
+ "step": 70
93
+ },
94
+ {
95
+ "epoch": 0.34,
96
+ "learning_rate": 0.00010088331171710597,
97
+ "loss": 3.4575,
98
+ "step": 75
99
+ },
100
+ {
101
+ "epoch": 0.37,
102
+ "learning_rate": 9.644191254273106e-05,
103
+ "loss": 3.1265,
104
+ "step": 80
105
+ },
106
+ {
107
+ "epoch": 0.39,
108
+ "learning_rate": 9.185602332468734e-05,
109
+ "loss": 3.3004,
110
+ "step": 85
111
+ },
112
+ {
113
+ "epoch": 0.41,
114
+ "learning_rate": 8.714944326614944e-05,
115
+ "loss": 3.2766,
116
+ "step": 90
117
+ },
118
+ {
119
+ "epoch": 0.44,
120
+ "learning_rate": 8.234659791464919e-05,
121
+ "loss": 3.1492,
122
+ "step": 95
123
+ },
124
+ {
125
+ "epoch": 0.46,
126
+ "learning_rate": 7.747241240180272e-05,
127
+ "loss": 3.3842,
128
+ "step": 100
129
+ },
130
+ {
131
+ "epoch": 0.48,
132
+ "learning_rate": 7.255218209036649e-05,
133
+ "loss": 3.3591,
134
+ "step": 105
135
+ },
136
+ {
137
+ "epoch": 0.5,
138
+ "learning_rate": 6.76114412999196e-05,
139
+ "loss": 3.1375,
140
+ "step": 110
141
+ },
142
+ {
143
+ "epoch": 0.53,
144
+ "learning_rate": 6.267583079244174e-05,
145
+ "loss": 3.2619,
146
+ "step": 115
147
+ },
148
+ {
149
+ "epoch": 0.55,
150
+ "learning_rate": 5.777096470549132e-05,
151
+ "loss": 3.1689,
152
+ "step": 120
153
+ },
154
+ {
155
+ "epoch": 0.57,
156
+ "learning_rate": 5.2922297623555134e-05,
157
+ "loss": 3.264,
158
+ "step": 125
159
+ },
160
+ {
161
+ "epoch": 0.6,
162
+ "learning_rate": 4.815499247742428e-05,
163
+ "loss": 3.0831,
164
+ "step": 130
165
+ },
166
+ {
167
+ "epoch": 0.62,
168
+ "learning_rate": 4.349378995715337e-05,
169
+ "loss": 3.1357,
170
+ "step": 135
171
+ },
172
+ {
173
+ "epoch": 0.64,
174
+ "learning_rate": 3.896288011630533e-05,
175
+ "loss": 3.164,
176
+ "step": 140
177
+ },
178
+ {
179
+ "epoch": 0.67,
180
+ "learning_rate": 3.458577683381209e-05,
181
+ "loss": 3.2134,
182
+ "step": 145
183
+ },
184
+ {
185
+ "epoch": 0.69,
186
+ "learning_rate": 3.0385195784951376e-05,
187
+ "loss": 3.1053,
188
+ "step": 150
189
+ },
190
+ {
191
+ "epoch": 0.71,
192
+ "learning_rate": 2.63829365547284e-05,
193
+ "loss": 3.099,
194
+ "step": 155
195
+ },
196
+ {
197
+ "epoch": 0.73,
198
+ "learning_rate": 2.2599769505454377e-05,
199
+ "loss": 3.1365,
200
+ "step": 160
201
+ },
202
+ {
203
+ "epoch": 0.76,
204
+ "learning_rate": 1.905532798564004e-05,
205
+ "loss": 3.1402,
206
+ "step": 165
207
+ },
208
+ {
209
+ "epoch": 0.78,
210
+ "learning_rate": 1.5768006439603532e-05,
211
+ "loss": 3.1203,
212
+ "step": 170
213
+ },
214
+ {
215
+ "epoch": 0.8,
216
+ "learning_rate": 1.2754864946569404e-05,
217
+ "loss": 3.2424,
218
+ "step": 175
219
+ },
220
+ {
221
+ "epoch": 0.83,
222
+ "learning_rate": 1.0031540684667541e-05,
223
+ "loss": 3.2244,
224
+ "step": 180
225
+ },
226
+ {
227
+ "epoch": 0.85,
228
+ "learning_rate": 7.612166779304597e-06,
229
+ "loss": 3.2007,
230
+ "step": 185
231
+ },
232
+ {
233
+ "epoch": 0.87,
234
+ "learning_rate": 5.5092989570564855e-06,
235
+ "loss": 3.0923,
236
+ "step": 190
237
+ },
238
+ {
239
+ "epoch": 0.89,
240
+ "learning_rate": 3.7338503857237188e-06,
241
+ "loss": 3.0841,
242
+ "step": 195
243
+ },
244
+ {
245
+ "epoch": 0.92,
246
+ "learning_rate": 2.295035038707367e-06,
247
+ "loss": 3.1703,
248
+ "step": 200
249
+ },
250
+ {
251
+ "epoch": 0.94,
252
+ "learning_rate": 1.2003198776252066e-06,
253
+ "loss": 3.2195,
254
+ "step": 205
255
+ },
256
+ {
257
+ "epoch": 0.96,
258
+ "learning_rate": 4.5538610132401196e-07,
259
+ "loss": 3.0425,
260
+ "step": 210
261
+ },
262
+ {
263
+ "epoch": 0.99,
264
+ "learning_rate": 6.409966239244377e-08,
265
+ "loss": 3.1853,
266
+ "step": 215
267
+ },
268
+ {
269
+ "epoch": 1.0,
270
+ "eval_loss": 3.0165445804595947,
271
+ "eval_runtime": 8.1641,
272
+ "eval_samples_per_second": 37.236,
273
+ "eval_steps_per_second": 4.655,
274
+ "step": 218
275
+ }
276
+ ],
277
+ "max_steps": 218,
278
+ "num_train_epochs": 1,
279
+ "total_flos": 227454713856000.0,
280
+ "trial_name": null,
281
+ "trial_params": null
282
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32eed4e7cdcf3d9611cb0954dec030a5a9f6c10f458a381c5e5a079e5eb26127
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff