Commit ·
aea0072
1
Parent(s): 6bd7292
huggingartists
Browse files- README.md +97 -0
- config.json +40 -0
- evaluation.txt +1 -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 +150 -0
- training_args.bin +3 -0
- vocab.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
datasets:
|
| 4 |
+
- huggingartists/dzhizus
|
| 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/a96a6042b4c0a4c0bdae647768c5e42b.668x668x1.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">Джизус (Dzhizus)</div>
|
| 22 |
+
<a href="https://genius.com/artists/dzhizus">
|
| 23 |
+
<div style="text-align: center; font-size: 14px;">@dzhizus</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 Джизус (Dzhizus).
|
| 38 |
+
|
| 39 |
+
Dataset is available [here](https://huggingface.co/datasets/huggingartists/dzhizus).
|
| 40 |
+
And can be used with:
|
| 41 |
+
|
| 42 |
+
```python
|
| 43 |
+
from datasets import load_dataset
|
| 44 |
+
|
| 45 |
+
dataset = load_dataset("huggingartists/dzhizus")
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
[Explore the data](https://wandb.ai/huggingartists/huggingartists/runs/35paacn1/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 Джизус (Dzhizus)'s lyrics.
|
| 53 |
+
|
| 54 |
+
Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/huggingartists/huggingartists/runs/1ug3yebo) for full transparency and reproducibility.
|
| 55 |
+
|
| 56 |
+
At the end of training, [the final model](https://wandb.ai/huggingartists/huggingartists/runs/1ug3yebo/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/dzhizus')
|
| 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/dzhizus")
|
| 75 |
+
|
| 76 |
+
model = AutoModelWithLMHead.from_pretrained("huggingartists/dzhizus")
|
| 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 |
+
[](https://github.com/AlekseyKorshuk)
|
| 90 |
+
|
| 91 |
+
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
|
| 92 |
+
|
| 93 |
+
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
|
| 94 |
+
|
| 95 |
+
For more details, visit the project repository.
|
| 96 |
+
|
| 97 |
+
[](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.0",
|
| 38 |
+
"use_cache": true,
|
| 39 |
+
"vocab_size": 50257
|
| 40 |
+
}
|
evaluation.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"eval_loss": 1.6611980199813843, "eval_runtime": 6.9911, "eval_samples_per_second": 22.028, "eval_steps_per_second": 2.861, "epoch": 1.0}
|
flax_model.msgpack
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6260f17b0af98176ba8e258b43b74a607ffd4faf39815755788fc599913dd6ee
|
| 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:dfe39bea22c1d3eefe350aaabe064b006247c42f157006f0a0ade31ab4280264
|
| 3 |
+
size 995603825
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6ad49f066d9d27f59377df6400798e1c14ae95ff53502934ac8bab93831a145
|
| 3 |
+
size 510403817
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74c89b6ef353fbe4c7bffcfd9cd3fcdb94c39f7302b65e7786b3efbc781a4626
|
| 3 |
+
size 14503
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c154c3161badb2d53847e65fdbe518ccea4845a5cf5e5f636b328e86f8ea7692
|
| 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,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": 1.6611980199813843,
|
| 3 |
+
"best_model_checkpoint": "output/dzhizus/checkpoint-108",
|
| 4 |
+
"epoch": 1.0,
|
| 5 |
+
"global_step": 108,
|
| 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.00013647569640665277,
|
| 13 |
+
"loss": 2.4321,
|
| 14 |
+
"step": 5
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"epoch": 0.09,
|
| 18 |
+
"learning_rate": 0.00013431808054484255,
|
| 19 |
+
"loss": 2.1139,
|
| 20 |
+
"step": 10
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"epoch": 0.14,
|
| 24 |
+
"learning_rate": 0.0001307727141907142,
|
| 25 |
+
"loss": 1.9824,
|
| 26 |
+
"step": 15
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"epoch": 0.19,
|
| 30 |
+
"learning_rate": 0.00012591446386292745,
|
| 31 |
+
"loss": 1.7208,
|
| 32 |
+
"step": 20
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"epoch": 0.23,
|
| 36 |
+
"learning_rate": 0.00011984591988713233,
|
| 37 |
+
"loss": 1.6687,
|
| 38 |
+
"step": 25
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"epoch": 0.28,
|
| 42 |
+
"learning_rate": 0.00011269523002449659,
|
| 43 |
+
"loss": 1.6941,
|
| 44 |
+
"step": 30
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"epoch": 0.32,
|
| 48 |
+
"learning_rate": 0.00010461339341095083,
|
| 49 |
+
"loss": 1.7329,
|
| 50 |
+
"step": 35
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 0.37,
|
| 54 |
+
"learning_rate": 9.577107195028616e-05,
|
| 55 |
+
"loss": 1.7829,
|
| 56 |
+
"step": 40
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"epoch": 0.42,
|
| 60 |
+
"learning_rate": 8.635498649403293e-05,
|
| 61 |
+
"loss": 1.6329,
|
| 62 |
+
"step": 45
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"epoch": 0.46,
|
| 66 |
+
"learning_rate": 7.65639739089908e-05,
|
| 67 |
+
"loss": 1.5783,
|
| 68 |
+
"step": 50
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"epoch": 0.51,
|
| 72 |
+
"learning_rate": 6.660478829422256e-05,
|
| 73 |
+
"loss": 1.6391,
|
| 74 |
+
"step": 55
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"epoch": 0.56,
|
| 78 |
+
"learning_rate": 5.668773501204858e-05,
|
| 79 |
+
"loss": 1.6529,
|
| 80 |
+
"step": 60
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 0.6,
|
| 84 |
+
"learning_rate": 4.702222972799932e-05,
|
| 85 |
+
"loss": 1.5268,
|
| 86 |
+
"step": 65
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"epoch": 0.65,
|
| 90 |
+
"learning_rate": 3.7812376238248296e-05,
|
| 91 |
+
"loss": 1.5841,
|
| 92 |
+
"step": 70
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"epoch": 0.69,
|
| 96 |
+
"learning_rate": 2.9252656466318256e-05,
|
| 97 |
+
"loss": 1.6704,
|
| 98 |
+
"step": 75
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"epoch": 0.74,
|
| 102 |
+
"learning_rate": 2.152382364220488e-05,
|
| 103 |
+
"loss": 1.5718,
|
| 104 |
+
"step": 80
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"epoch": 0.79,
|
| 108 |
+
"learning_rate": 1.4789085386517107e-05,
|
| 109 |
+
"loss": 1.5881,
|
| 110 |
+
"step": 85
|
| 111 |
+
},
|
| 112 |
+
{
|
| 113 |
+
"epoch": 0.83,
|
| 114 |
+
"learning_rate": 9.190657300387505e-06,
|
| 115 |
+
"loss": 1.489,
|
| 116 |
+
"step": 90
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"epoch": 0.88,
|
| 120 |
+
"learning_rate": 4.846759838039973e-06,
|
| 121 |
+
"loss": 1.6933,
|
| 122 |
+
"step": 95
|
| 123 |
+
},
|
| 124 |
+
{
|
| 125 |
+
"epoch": 0.93,
|
| 126 |
+
"learning_rate": 1.849121878224087e-06,
|
| 127 |
+
"loss": 1.7571,
|
| 128 |
+
"step": 100
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"epoch": 0.97,
|
| 132 |
+
"learning_rate": 2.610437109062556e-07,
|
| 133 |
+
"loss": 1.5787,
|
| 134 |
+
"step": 105
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"epoch": 1.0,
|
| 138 |
+
"eval_loss": 1.6611980199813843,
|
| 139 |
+
"eval_runtime": 6.9528,
|
| 140 |
+
"eval_samples_per_second": 22.149,
|
| 141 |
+
"eval_steps_per_second": 2.877,
|
| 142 |
+
"step": 108
|
| 143 |
+
}
|
| 144 |
+
],
|
| 145 |
+
"max_steps": 108,
|
| 146 |
+
"num_train_epochs": 1,
|
| 147 |
+
"total_flos": 112878157824000.0,
|
| 148 |
+
"trial_name": null,
|
| 149 |
+
"trial_params": null
|
| 150 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9424218f892a1374470b320b6b90fa5bc748770037974f434025fe3df79fc342
|
| 3 |
+
size 2863
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|