AlekseyKorshuk commited on
Commit
c0ecdce
1 Parent(s): e3025b1

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/mayot
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/1d4b4adcdf1f58e1899ee5557375ef7c.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">MAYOT</div>
22
+ <a href="https://genius.com/artists/mayot">
23
+ <div style="text-align: center; font-size: 14px;">@mayot</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 MAYOT.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/mayot).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/mayot")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/lf4wcx85/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 MAYOT's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/1uulibm2) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/1uulibm2/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/mayot')
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/mayot")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/mayot")
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,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gpt2",
14
+ "n_ctx": 1024,
15
+ "n_embd": 768,
16
+ "n_head": 12,
17
+ "n_inner": null,
18
+ "n_layer": 12,
19
+ "n_positions": 1024,
20
+ "resid_pdrop": 0.1,
21
+ "scale_attn_weights": true,
22
+ "summary_activation": null,
23
+ "summary_first_dropout": 0.1,
24
+ "summary_proj_to_labels": true,
25
+ "summary_type": "cls_index",
26
+ "summary_use_proj": true,
27
+ "task_specific_params": {
28
+ "text-generation": {
29
+ "do_sample": true,
30
+ "max_length": 200,
31
+ "min_length": 100,
32
+ "temperature": 1.0,
33
+ "top_p": 0.95
34
+ }
35
+ },
36
+ "torch_dtype": "float32",
37
+ "transformers_version": "4.11.1",
38
+ "use_cache": true,
39
+ "vocab_size": 50257
40
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
1
+ {"eval_loss": 1.9315155744552612, "eval_runtime": 8.8038, "eval_samples_per_second": 21.241, "eval_steps_per_second": 2.726, "epoch": 1.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0ea887f2e75b426c00c3d6bd0d13a1b439da43e32d8bac3ed6c5be4d868b6b6
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:4ca34a4170ce51290fd95c5ac59fd49dba84988be73c98a438e3983caae03313
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6553883a5f0e87971ebb160575a5d83c53e1732fc50ad64c0de0d1aea6ac8683
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:998b7e4f211da1272e8bac8c21cce58bf728ff4661fb28aa0a976fb3b885b197
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48b0d0933f93d27b57495fddadcfbb827f68914ac01774cd2c666048ba2574c1
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,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.9315155744552612,
3
+ "best_model_checkpoint": "output/mayot/checkpoint-147",
4
+ "epoch": 1.0,
5
+ "global_step": 147,
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.00013680872155869608,
13
+ "loss": 2.7218,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.07,
18
+ "learning_rate": 0.00013563934975719332,
19
+ "loss": 2.4506,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.1,
24
+ "learning_rate": 0.00013370522424493186,
25
+ "loss": 2.3233,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.14,
30
+ "learning_rate": 0.0001310284086258687,
31
+ "loss": 2.2628,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.17,
36
+ "learning_rate": 0.0001276394387671491,
37
+ "loss": 2.169,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.2,
42
+ "learning_rate": 0.00012357697446014183,
43
+ "loss": 2.1897,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.24,
48
+ "learning_rate": 0.00011888735840752609,
49
+ "loss": 2.1417,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.27,
54
+ "learning_rate": 0.00011362408756730135,
55
+ "loss": 2.091,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.31,
60
+ "learning_rate": 0.00010784720288438084,
61
+ "loss": 2.0851,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.34,
66
+ "learning_rate": 0.00010162260437142711,
67
+ "loss": 2.1085,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.37,
72
+ "learning_rate": 9.502129935216876e-05,
73
+ "loss": 2.0363,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.41,
78
+ "learning_rate": 8.811859244288883e-05,
79
+ "loss": 2.0587,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.44,
84
+ "learning_rate": 8.099322651239897e-05,
85
+ "loss": 2.0127,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 0.48,
90
+ "learning_rate": 7.372648442002871e-05,
91
+ "loss": 1.9725,
92
+ "step": 70
93
+ },
94
+ {
95
+ "epoch": 0.51,
96
+ "learning_rate": 6.640126177858445e-05,
97
+ "loss": 1.9979,
98
+ "step": 75
99
+ },
100
+ {
101
+ "epoch": 0.54,
102
+ "learning_rate": 5.910112131976733e-05,
103
+ "loss": 2.0089,
104
+ "step": 80
105
+ },
106
+ {
107
+ "epoch": 0.58,
108
+ "learning_rate": 5.190933964940903e-05,
109
+ "loss": 1.9777,
110
+ "step": 85
111
+ },
112
+ {
113
+ "epoch": 0.61,
114
+ "learning_rate": 4.4907957266698305e-05,
115
+ "loss": 2.0007,
116
+ "step": 90
117
+ },
118
+ {
119
+ "epoch": 0.65,
120
+ "learning_rate": 3.8176842684337195e-05,
121
+ "loss": 2.0053,
122
+ "step": 95
123
+ },
124
+ {
125
+ "epoch": 0.68,
126
+ "learning_rate": 3.179278132570837e-05,
127
+ "loss": 1.9833,
128
+ "step": 100
129
+ },
130
+ {
131
+ "epoch": 0.71,
132
+ "learning_rate": 2.5828599592490882e-05,
133
+ "loss": 1.983,
134
+ "step": 105
135
+ },
136
+ {
137
+ "epoch": 0.75,
138
+ "learning_rate": 2.035233409495375e-05,
139
+ "loss": 1.9408,
140
+ "step": 110
141
+ },
142
+ {
143
+ "epoch": 0.78,
144
+ "learning_rate": 1.5426455521961213e-05,
145
+ "loss": 1.9111,
146
+ "step": 115
147
+ },
148
+ {
149
+ "epoch": 0.82,
150
+ "learning_rate": 1.1107156004419736e-05,
151
+ "loss": 1.9171,
152
+ "step": 120
153
+ },
154
+ {
155
+ "epoch": 0.85,
156
+ "learning_rate": 7.4437081015931425e-06,
157
+ "loss": 1.898,
158
+ "step": 125
159
+ },
160
+ {
161
+ "epoch": 0.88,
162
+ "learning_rate": 4.477902722671392e-06,
163
+ "loss": 1.9822,
164
+ "step": 130
165
+ },
166
+ {
167
+ "epoch": 0.92,
168
+ "learning_rate": 2.24357239552258e-06,
169
+ "loss": 1.8845,
170
+ "step": 135
171
+ },
172
+ {
173
+ "epoch": 0.95,
174
+ "learning_rate": 7.662053209561833e-07,
175
+ "loss": 1.9681,
176
+ "step": 140
177
+ },
178
+ {
179
+ "epoch": 0.99,
180
+ "learning_rate": 6.26546151870577e-08,
181
+ "loss": 1.9478,
182
+ "step": 145
183
+ },
184
+ {
185
+ "epoch": 1.0,
186
+ "eval_loss": 1.9315155744552612,
187
+ "eval_runtime": 8.7552,
188
+ "eval_samples_per_second": 21.359,
189
+ "eval_steps_per_second": 2.741,
190
+ "step": 147
191
+ }
192
+ ],
193
+ "max_steps": 147,
194
+ "num_train_epochs": 1,
195
+ "total_flos": 152855838720000.0,
196
+ "trial_name": null,
197
+ "trial_params": null
198
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c81e2ba72a3c35aaac410ea4726dde6932ce249ed404d43e7ca4390fcaa1b27
3
+ size 2863
vocab.json ADDED
The diff for this file is too large to render. See raw diff