AlekseyKorshuk commited on
Commit
bbc4d64
1 Parent(s): a808a85

huggingartists

Browse files
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ datasets:
4
+ - huggingartists/queen
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/30a049d2de687550227ba815650eb196.585x585x1.png&#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">Queen</div>
22
+ <a href="https://genius.com/artists/queen">
23
+ <div style="text-align: center; font-size: 14px;">@queen</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 Queen.
38
+
39
+ Dataset is available [here](https://huggingface.co/datasets/huggingartists/queen).
40
+ And can be used with:
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ dataset = load_dataset("huggingartists/queen")
46
+ ```
47
+
48
+ [Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/ig4q4eqf/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 Queen's lyrics.
53
+
54
+ Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/db57x0am) for full transparency and reproducibility.
55
+
56
+ At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/db57x0am/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/queen')
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/queen")
75
+
76
+ model = AutoModelWithLMHead.from_pretrained("huggingartists/queen")
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.0",
39
+ "use_cache": true,
40
+ "vocab_size": 50257
41
+ }
evaluation.txt ADDED
@@ -0,0 +1 @@
 
1
+ {"eval_loss": 2.78603196144104, "eval_runtime": 4.4505, "eval_samples_per_second": 20.896, "eval_steps_per_second": 2.696, "epoch": 1.0}
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b955ad1d98d60e4a56ea65cd7af69546400a28f421c2801d0ef8b6fd2d9ea437
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:bfeeba500d22510553a572de22a25ea0707e4a392bc1f3af82ca455b76331fd0
3
+ size 995603825
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58ba360ecd74841426dc0cd5e0158e6e01aa6f85266b3ee694feaf2090dd4700
3
+ size 510403817
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d6b4e2addd40ee3dbf3862c476aa351cc6b5d909581f28b2888fbdee737084a
3
+ size 14503
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dec6c7b398d46bf0643dddb205917b4bc646cca40c919a70adace10f69e2863
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,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 2.78603196144104,
3
+ "best_model_checkpoint": "output/queen/checkpoint-68",
4
+ "epoch": 1.0,
5
+ "global_step": 68,
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.07,
12
+ "learning_rate": 0.00013537785052914354,
13
+ "loss": 3.396,
14
+ "step": 5
15
+ },
16
+ {
17
+ "epoch": 0.15,
18
+ "learning_rate": 0.0001300082017869573,
19
+ "loss": 3.2987,
20
+ "step": 10
21
+ },
22
+ {
23
+ "epoch": 0.22,
24
+ "learning_rate": 0.0001213763104094255,
25
+ "loss": 2.8576,
26
+ "step": 15
27
+ },
28
+ {
29
+ "epoch": 0.29,
30
+ "learning_rate": 0.000109940736055617,
31
+ "loss": 2.9968,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.37,
36
+ "learning_rate": 9.630898093421199e-05,
37
+ "loss": 2.9324,
38
+ "step": 25
39
+ },
40
+ {
41
+ "epoch": 0.44,
42
+ "learning_rate": 8.120521692221673e-05,
43
+ "loss": 2.9931,
44
+ "step": 30
45
+ },
46
+ {
47
+ "epoch": 0.51,
48
+ "learning_rate": 6.543181473690228e-05,
49
+ "loss": 2.8919,
50
+ "step": 35
51
+ },
52
+ {
53
+ "epoch": 0.59,
54
+ "learning_rate": 4.982671888105512e-05,
55
+ "loss": 2.7977,
56
+ "step": 40
57
+ },
58
+ {
59
+ "epoch": 0.66,
60
+ "learning_rate": 3.5218932770313667e-05,
61
+ "loss": 2.9689,
62
+ "step": 45
63
+ },
64
+ {
65
+ "epoch": 0.74,
66
+ "learning_rate": 2.2384478845846175e-05,
67
+ "loss": 2.756,
68
+ "step": 50
69
+ },
70
+ {
71
+ "epoch": 0.81,
72
+ "learning_rate": 1.200517324255647e-05,
73
+ "loss": 2.8716,
74
+ "step": 55
75
+ },
76
+ {
77
+ "epoch": 0.88,
78
+ "learning_rate": 4.6324050628611986e-06,
79
+ "loss": 2.9236,
80
+ "step": 60
81
+ },
82
+ {
83
+ "epoch": 0.96,
84
+ "learning_rate": 6.578444419609313e-07,
85
+ "loss": 2.8184,
86
+ "step": 65
87
+ },
88
+ {
89
+ "epoch": 1.0,
90
+ "eval_loss": 2.78603196144104,
91
+ "eval_runtime": 4.3884,
92
+ "eval_samples_per_second": 21.192,
93
+ "eval_steps_per_second": 2.734,
94
+ "step": 68
95
+ }
96
+ ],
97
+ "max_steps": 68,
98
+ "num_train_epochs": 1,
99
+ "total_flos": 70679494656000.0,
100
+ "trial_name": null,
101
+ "trial_params": null
102
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6f64a8be8343c77766c582ca358c4ea6417470b4fe54e9cb6521375a994a4c0
3
+ size 2671
vocab.json ADDED
The diff for this file is too large to render. See raw diff