AlekseyKorshuk commited on
Commit
3831574
1 Parent(s): 090ee9d

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/ariya
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/975b03ba317602498bed5321f12caebe.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">Ария (Ariya)</div>
22
+ <a href="https://genius.com/artists/ariya">
23
+ <div style="text-align: center; font-size: 14px;">@ariya</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 Ария (Ariya).
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/ariya).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/ariya")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/uo73s5z1/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 Ария (Ariya)'s lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/69c1r7ea) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/69c1r7ea/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/ariya')
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/ariya")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/ariya")
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,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "reorder_and_upcast_attn": false,
21
+ "resid_pdrop": 0.1,
22
+ "scale_attn_by_inverse_layer_idx": false,
23
+ "scale_attn_weights": true,
24
+ "summary_activation": null,
25
+ "summary_first_dropout": 0.1,
26
+ "summary_proj_to_labels": true,
27
+ "summary_type": "cls_index",
28
+ "summary_use_proj": true,
29
+ "task_specific_params": {
30
+ "text-generation": {
31
+ "do_sample": true,
32
+ "max_length": 200,
33
+ "min_length": 100,
34
+ "temperature": 1.0,
35
+ "top_p": 0.95
36
+ }
37
+ },
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.12.2",
40
+ "use_cache": true,
41
+ "vocab_size": 50257
42
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ {"eval_loss": 1.964630365371704, "eval_runtime": 0.252, "eval_samples_per_second": 71.442, "eval_steps_per_second": 11.907, "epoch": 100.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e1668d22d615f5bc99e524e9a656865252234b84f15f9edc7b217febac2a0a
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:5f0057aa5af5c86f6ae17cb53da3378aafd53e4cf2013217040e8ed96cb91e79
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42cf6dda9c985b7ddaa237dde71068ee5b1485c0f3fa4af1b7a804249e352a20
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56b6792d54404ac64a2977163b7562d917abce858c286143d6f775b9cbf41064
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f65a9954f18a10ae80ba62f6bb328733c6dc5ebf5bf6194b3e6f615b6cee3daf
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,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.964630365371704,
3
+ "best_model_checkpoint": "output/ariya/checkpoint-77",
4
+ "epoch": 7.0,
5
+ "global_step": 77,
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.45,
12
+ "learning_rate": 7.836279790554737e-05,
13
+ "loss": 2.5022,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.91,
18
+ "learning_rate": 2.778782010045488e-06,
19
+ "loss": 2.2601,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 1.0,
24
+ "eval_loss": 2.1270811557769775,
25
+ "eval_runtime": 0.2424,
26
+ "eval_samples_per_second": 74.243,
27
+ "eval_steps_per_second": 12.374,
28
+ "step": 11
29
+ },
30
+ {
31
+ "epoch": 1.36,
32
+ "learning_rate": 4.0102530108070535e-05,
33
+ "loss": 2.2382,
34
+ "step": 15
35
+ },
36
+ {
37
+ "epoch": 1.82,
38
+ "learning_rate": 0.000126309992352219,
39
+ "loss": 2.1551,
40
+ "step": 20
41
+ },
42
+ {
43
+ "epoch": 2.0,
44
+ "eval_loss": 2.044888734817505,
45
+ "eval_runtime": 0.2452,
46
+ "eval_samples_per_second": 73.408,
47
+ "eval_steps_per_second": 12.235,
48
+ "step": 22
49
+ },
50
+ {
51
+ "epoch": 2.27,
52
+ "learning_rate": 0.00011352344634864655,
53
+ "loss": 2.1093,
54
+ "step": 25
55
+ },
56
+ {
57
+ "epoch": 2.73,
58
+ "learning_rate": 2.3676553651353525e-05,
59
+ "loss": 2.0408,
60
+ "step": 30
61
+ },
62
+ {
63
+ "epoch": 3.0,
64
+ "eval_loss": 2.019381523132324,
65
+ "eval_runtime": 0.2439,
66
+ "eval_samples_per_second": 73.799,
67
+ "eval_steps_per_second": 12.3,
68
+ "step": 33
69
+ },
70
+ {
71
+ "epoch": 3.18,
72
+ "learning_rate": 1.0890007647780947e-05,
73
+ "loss": 1.9664,
74
+ "step": 35
75
+ },
76
+ {
77
+ "epoch": 3.64,
78
+ "learning_rate": 9.709746989192932e-05,
79
+ "loss": 1.9754,
80
+ "step": 40
81
+ },
82
+ {
83
+ "epoch": 4.0,
84
+ "eval_loss": 1.988910436630249,
85
+ "eval_runtime": 0.2422,
86
+ "eval_samples_per_second": 74.31,
87
+ "eval_steps_per_second": 12.385,
88
+ "step": 44
89
+ },
90
+ {
91
+ "epoch": 4.09,
92
+ "learning_rate": 0.00013442121798995453,
93
+ "loss": 1.9406,
94
+ "step": 45
95
+ },
96
+ {
97
+ "epoch": 4.55,
98
+ "learning_rate": 5.883720209445262e-05,
99
+ "loss": 1.9442,
100
+ "step": 50
101
+ },
102
+ {
103
+ "epoch": 5.0,
104
+ "learning_rate": 0.0,
105
+ "loss": 1.8989,
106
+ "step": 55
107
+ },
108
+ {
109
+ "epoch": 5.0,
110
+ "eval_loss": 1.9963830709457397,
111
+ "eval_runtime": 0.2445,
112
+ "eval_samples_per_second": 73.608,
113
+ "eval_steps_per_second": 12.268,
114
+ "step": 55
115
+ },
116
+ {
117
+ "epoch": 5.45,
118
+ "learning_rate": 5.883720209445242e-05,
119
+ "loss": 1.8248,
120
+ "step": 60
121
+ },
122
+ {
123
+ "epoch": 5.91,
124
+ "learning_rate": 0.00013442121798995453,
125
+ "loss": 1.8456,
126
+ "step": 65
127
+ },
128
+ {
129
+ "epoch": 6.0,
130
+ "eval_loss": 1.9840502738952637,
131
+ "eval_runtime": 0.2442,
132
+ "eval_samples_per_second": 73.696,
133
+ "eval_steps_per_second": 12.283,
134
+ "step": 66
135
+ },
136
+ {
137
+ "epoch": 6.36,
138
+ "learning_rate": 9.70974698919295e-05,
139
+ "loss": 1.7729,
140
+ "step": 70
141
+ },
142
+ {
143
+ "epoch": 6.82,
144
+ "learning_rate": 1.0890007647780993e-05,
145
+ "loss": 1.7715,
146
+ "step": 75
147
+ },
148
+ {
149
+ "epoch": 7.0,
150
+ "eval_loss": 1.964630365371704,
151
+ "eval_runtime": 0.2443,
152
+ "eval_samples_per_second": 73.674,
153
+ "eval_steps_per_second": 12.279,
154
+ "step": 77
155
+ }
156
+ ],
157
+ "max_steps": 1100,
158
+ "num_train_epochs": 100,
159
+ "total_flos": 74990813184000.0,
160
+ "trial_name": null,
161
+ "trial_params": null
162
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3228f5cc875377a0331b578ab9de43a6e94008999e2d72c1436cb0bb5a6bdc6d
3
+ size 2863
vocab.json ADDED
The diff for this file is too large to render. See raw diff