AlekseyKorshuk
commited on
Commit
•
253253e
1
Parent(s):
21f2e7a
huggingartists
Browse files- README.md +93 -0
- config.json +41 -0
- flax_model.msgpack +3 -0
- merges.txt +0 -0
- optimizer.pt +3 -0
- pytorch_model.bin +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- trainer_state.json +136 -0
- training_args.bin +3 -0
- vocab.json +0 -0
README.md
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
datasets:
|
4 |
+
- huggingartists/tom-waits
|
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('https://images.genius.com/505d2d5d1d43304dca446fd2e788a0f8.750x750x1.jpg')">
|
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">Tom Waits</div>
|
22 |
+
<a href="https://genius.com/artists/tom-waits">
|
23 |
+
<div style="text-align: center; font-size: 14px;">@tom-waits</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 Tom Waits.
|
38 |
+
|
39 |
+
Dataset is available [here](https://huggingface.co/datasets/huggingartists/tom-waits).
|
40 |
+
And can be used with:
|
41 |
+
|
42 |
+
```python
|
43 |
+
from datasets import load_dataset
|
44 |
+
|
45 |
+
dataset = load_dataset("huggingartists/tom-waits")
|
46 |
+
```
|
47 |
+
|
48 |
+
Or with Transformers library:
|
49 |
+
|
50 |
+
```python
|
51 |
+
from transformers import AutoTokenizer, AutoModelWithLMHead
|
52 |
+
|
53 |
+
tokenizer = AutoTokenizer.from_pretrained("huggingartists/tom-waits")
|
54 |
+
|
55 |
+
model = AutoModelWithLMHead.from_pretrained("huggingartists/tom-waits")
|
56 |
+
```
|
57 |
+
|
58 |
+
[Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/216zw2jw/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline.
|
59 |
+
|
60 |
+
## Training procedure
|
61 |
+
|
62 |
+
The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on Tom Waits's lyrics.
|
63 |
+
|
64 |
+
Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/16iei9vt) for full transparency and reproducibility.
|
65 |
+
|
66 |
+
At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/16iei9vt/artifacts) is logged and versioned.
|
67 |
+
|
68 |
+
## How to use
|
69 |
+
|
70 |
+
You can use this model directly with a pipeline for text generation:
|
71 |
+
|
72 |
+
```python
|
73 |
+
from transformers import pipeline
|
74 |
+
generator = pipeline('text-generation',
|
75 |
+
model='huggingartists/tom-waits')
|
76 |
+
generator("I am", num_return_sequences=5)
|
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 |
+
For more details, visit the project repository.
|
92 |
+
|
93 |
+
[![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:5970c2b5d3f46666cabb8962860ab904a617c379a81705faf5d7a6fb088f040d
|
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:ab9aa653691ed6d06e3476bc97c31686e2e7de9bae139faaad168caa70c9c3c3
|
3 |
+
size 995603825
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c740f283a3819ddb62bc794f49e76fe5fb597109db3672aa74cf62d0c37a13fd
|
3 |
+
size 510403817
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0b6cc17bd3c2a0e7a4670f3b8e5841d9f4bc2b0a91d85a50187653eae4d73a5e
|
3 |
+
size 14503
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:210db157b55dd747a9007cf5cf1259093551c56de3cafadcc170777b60990c64
|
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,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 1.0,
|
5 |
+
"global_step": 103,
|
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.0001364038084940016,
|
13 |
+
"loss": 3.7165,
|
14 |
+
"step": 5
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.1,
|
18 |
+
"learning_rate": 0.0001340337156353132,
|
19 |
+
"loss": 3.7345,
|
20 |
+
"step": 10
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.15,
|
24 |
+
"learning_rate": 0.00013014473739485363,
|
25 |
+
"loss": 3.4567,
|
26 |
+
"step": 15
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 0.19,
|
30 |
+
"learning_rate": 0.0001248271469925082,
|
31 |
+
"loss": 3.512,
|
32 |
+
"step": 20
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"epoch": 0.24,
|
36 |
+
"learning_rate": 0.00011820437942275874,
|
37 |
+
"loss": 3.5706,
|
38 |
+
"step": 25
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.29,
|
42 |
+
"learning_rate": 0.00011043016620995614,
|
43 |
+
"loss": 3.4168,
|
44 |
+
"step": 30
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"epoch": 0.34,
|
48 |
+
"learning_rate": 0.00010168496690295909,
|
49 |
+
"loss": 3.5556,
|
50 |
+
"step": 35
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"epoch": 0.39,
|
54 |
+
"learning_rate": 9.21717801433564e-05,
|
55 |
+
"loss": 3.3815,
|
56 |
+
"step": 40
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.44,
|
60 |
+
"learning_rate": 8.211143154318805e-05,
|
61 |
+
"loss": 3.2048,
|
62 |
+
"step": 45
|
63 |
+
},
|
64 |
+
{
|
65 |
+
"epoch": 0.49,
|
66 |
+
"learning_rate": 7.173744775268251e-05,
|
67 |
+
"loss": 3.3812,
|
68 |
+
"step": 50
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"epoch": 0.53,
|
72 |
+
"learning_rate": 6.12906357041245e-05,
|
73 |
+
"loss": 3.4762,
|
74 |
+
"step": 55
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"epoch": 0.58,
|
78 |
+
"learning_rate": 5.101349286159054e-05,
|
79 |
+
"loss": 3.2324,
|
80 |
+
"step": 60
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.63,
|
84 |
+
"learning_rate": 4.114457822907933e-05,
|
85 |
+
"loss": 3.3225,
|
86 |
+
"step": 65
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"epoch": 0.68,
|
90 |
+
"learning_rate": 3.1912974780463516e-05,
|
91 |
+
"loss": 3.5544,
|
92 |
+
"step": 70
|
93 |
+
},
|
94 |
+
{
|
95 |
+
"epoch": 0.73,
|
96 |
+
"learning_rate": 2.3532971852551605e-05,
|
97 |
+
"loss": 3.3748,
|
98 |
+
"step": 75
|
99 |
+
},
|
100 |
+
{
|
101 |
+
"epoch": 0.78,
|
102 |
+
"learning_rate": 1.6199090936639392e-05,
|
103 |
+
"loss": 3.3532,
|
104 |
+
"step": 80
|
105 |
+
},
|
106 |
+
{
|
107 |
+
"epoch": 0.83,
|
108 |
+
"learning_rate": 1.0081570332763395e-05,
|
109 |
+
"loss": 3.4422,
|
110 |
+
"step": 85
|
111 |
+
},
|
112 |
+
{
|
113 |
+
"epoch": 0.87,
|
114 |
+
"learning_rate": 5.322413479482709e-06,
|
115 |
+
"loss": 3.556,
|
116 |
+
"step": 90
|
117 |
+
},
|
118 |
+
{
|
119 |
+
"epoch": 0.92,
|
120 |
+
"learning_rate": 2.032092687651423e-06,
|
121 |
+
"loss": 3.3998,
|
122 |
+
"step": 95
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.97,
|
126 |
+
"learning_rate": 2.869847930266052e-07,
|
127 |
+
"loss": 3.5112,
|
128 |
+
"step": 100
|
129 |
+
}
|
130 |
+
],
|
131 |
+
"max_steps": 103,
|
132 |
+
"num_train_epochs": 1,
|
133 |
+
"total_flos": 107260379136000.0,
|
134 |
+
"trial_name": null,
|
135 |
+
"trial_params": null
|
136 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f8b55cdf2da34a0eeb37dd5726256b79632c6d1223ef65e3b609be48669597b4
|
3 |
+
size 2671
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|