AlekseyKorshuk commited on
Commit
b5ba932
1 Parent(s): 2067d46

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/morgenshtern
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/22e752c5e4e7e4d2e8488babffb33bbf.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">MORGENSHTERN</div>
22
+ <a href="https://genius.com/artists/morgenshtern">
23
+ <div style="text-align: center; font-size: 14px;">@morgenshtern</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 MORGENSHTERN.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/morgenshtern).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/morgenshtern")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/3q6pnb0j/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 MORGENSHTERN's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/2ury2mhk) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/2ury2mhk/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/morgenshtern')
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/morgenshtern")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/morgenshtern")
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
+ For more details, visit the project repository.
94
+
95
+ [![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.1",
39
+ "use_cache": true,
40
+ "vocab_size": 50257
41
+ }
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31606b5df45658b03ce97110b2fb5cd44b16f8c126a0aeca7a01cf0645b9696f
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:0e1d282a1d71170062ecdb062d5c638852f43c3cd839ff61cacc44240716c313
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7be973f06905cedc248ba31c9027bfb7bed7f5330cc8eea151a16663cb260a5f
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1a77f16b5380cb9f8dfa41c789f6f7b0d5f10d7040476401f9a011e850af2a4
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bc8c181f3eeffc22bed5df763ebe76f1c0ce2ad567f243d6703ceaa6e371773
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,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 1.0,
5
+ "global_step": 102,
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.05,
12
+ "learning_rate": 0.00013638815138477438,
13
+ "loss": 2.534,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.1,
18
+ "learning_rate": 0.00013397182122930294,
19
+ "loss": 2.1207,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.15,
24
+ "learning_rate": 0.0001300082017869573,
25
+ "loss": 1.9437,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.2,
30
+ "learning_rate": 0.00012459110818763681,
31
+ "loss": 2.0463,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.2,
36
+ "eval_loss": 1.9048744440078735,
37
+ "eval_runtime": 2.5437,
38
+ "eval_samples_per_second": 44.03,
39
+ "eval_steps_per_second": 5.504,
40
+ "step": 20
41
+ },
42
+ {
43
+ "epoch": 0.25,
44
+ "learning_rate": 0.00011784875792222071,
45
+ "loss": 1.953,
46
+ "step": 25
47
+ },
48
+ {
49
+ "epoch": 0.29,
50
+ "learning_rate": 0.000109940736055617,
51
+ "loss": 2.0751,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.34,
56
+ "learning_rate": 0.0001010542179989503,
57
+ "loss": 1.9436,
58
+ "step": 35
59
+ },
60
+ {
61
+ "epoch": 0.39,
62
+ "learning_rate": 9.139953924430466e-05,
63
+ "loss": 1.8745,
64
+ "step": 40
65
+ },
66
+ {
67
+ "epoch": 0.39,
68
+ "eval_loss": 1.7966899871826172,
69
+ "eval_runtime": 2.5987,
70
+ "eval_samples_per_second": 43.099,
71
+ "eval_steps_per_second": 5.387,
72
+ "step": 40
73
+ },
74
+ {
75
+ "epoch": 0.44,
76
+ "learning_rate": 8.120521692221673e-05,
77
+ "loss": 1.8989,
78
+ "step": 45
79
+ },
80
+ {
81
+ "epoch": 0.49,
82
+ "learning_rate": 7.071254101695329e-05,
83
+ "loss": 1.8346,
84
+ "step": 50
85
+ },
86
+ {
87
+ "epoch": 0.54,
88
+ "learning_rate": 6.016986326040062e-05,
89
+ "loss": 1.8576,
90
+ "step": 55
91
+ },
92
+ {
93
+ "epoch": 0.59,
94
+ "learning_rate": 4.982671888105512e-05,
95
+ "loss": 1.8876,
96
+ "step": 60
97
+ },
98
+ {
99
+ "epoch": 0.59,
100
+ "eval_loss": 1.760327935218811,
101
+ "eval_runtime": 2.6932,
102
+ "eval_samples_per_second": 41.586,
103
+ "eval_steps_per_second": 5.198,
104
+ "step": 60
105
+ },
106
+ {
107
+ "epoch": 0.64,
108
+ "learning_rate": 3.992792034076668e-05,
109
+ "loss": 1.7386,
110
+ "step": 65
111
+ },
112
+ {
113
+ "epoch": 0.69,
114
+ "learning_rate": 3.0707762854909304e-05,
115
+ "loss": 1.9309,
116
+ "step": 70
117
+ },
118
+ {
119
+ "epoch": 0.74,
120
+ "learning_rate": 2.2384478845846175e-05,
121
+ "loss": 1.6283,
122
+ "step": 75
123
+ },
124
+ {
125
+ "epoch": 0.78,
126
+ "learning_rate": 1.5155072587539005e-05,
127
+ "loss": 1.9742,
128
+ "step": 80
129
+ },
130
+ {
131
+ "epoch": 0.78,
132
+ "eval_loss": 1.7276561260223389,
133
+ "eval_runtime": 2.6936,
134
+ "eval_samples_per_second": 41.581,
135
+ "eval_steps_per_second": 5.198,
136
+ "step": 80
137
+ },
138
+ {
139
+ "epoch": 0.83,
140
+ "learning_rate": 9.190657300387505e-06,
141
+ "loss": 1.8267,
142
+ "step": 85
143
+ },
144
+ {
145
+ "epoch": 0.88,
146
+ "learning_rate": 4.6324050628611986e-06,
147
+ "loss": 1.7887,
148
+ "step": 90
149
+ },
150
+ {
151
+ "epoch": 0.93,
152
+ "learning_rate": 1.5882054016913933e-06,
153
+ "loss": 1.8381,
154
+ "step": 95
155
+ },
156
+ {
157
+ "epoch": 0.98,
158
+ "learning_rate": 1.3011164863877445e-07,
159
+ "loss": 1.8954,
160
+ "step": 100
161
+ },
162
+ {
163
+ "epoch": 0.98,
164
+ "eval_loss": 1.7208999395370483,
165
+ "eval_runtime": 2.7574,
166
+ "eval_samples_per_second": 40.618,
167
+ "eval_steps_per_second": 5.077,
168
+ "step": 100
169
+ }
170
+ ],
171
+ "max_steps": 102,
172
+ "num_train_epochs": 1,
173
+ "total_flos": 106345857024000.0,
174
+ "trial_name": null,
175
+ "trial_params": null
176
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f915a601b161294d09f0795c26c67c9dddff75c8768bf2451d5a65f6c1dd3a2
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff