Downloads · 30 days
29
34% of all-time downloads
huggingartists/abba
abba is a text generation model from huggingartists. Use it when you need the model to write or continue text. It is set up for transformers.
<div class="inline-flex flex-col" style="line-height: 1.5;" <div class="flex" <div style="display:DISPLAY1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover;…
Downloads · 30 days
29
34% of all-time downloads
All-time downloads
86
Public
Repo size
2.5 GB
Likes
0
Public
Click a slice to open those files.
.pt996 MB · 50%
From the Hugging Face model README
I was made with huggingartists.
Create your own bot based on your favorite artist with the demo!
To understand how the model was developed, check the W&B report.
The model was trained on lyrics from ABBA.
Dataset is available here. And can be used with:
from datasets import load_dataset
dataset = load_dataset("huggingartists/abba")
Explore the data, which is tracked with W&B artifacts at every step of the pipeline.
The model is based on a pre-trained GPT-2 which is fine-tuned on ABBA's lyrics.
Hyperparameters and metrics are recorded in the W&B training run for full transparency and reproducibility.
At the end of training, the final model is logged and versioned.
You can use this model directly with a pipeline for text generation:
from transformers import pipeline
generator = pipeline('text-generation',
model='huggingartists/abba')
generator("I am", num_return_sequences=5)
Or with Transformers library:
from transformers import AutoTokenizer, AutoModelWithLMHead
tokenizer = AutoTokenizer.from_pretrained("huggingartists/abba")
model = AutoModelWithLMHead.from_pretrained("huggingartists/abba")
The model suffers from the same limitations and bias as GPT-2.
In addition, the data present in the user's tweets further affects the text generated by the model.
Built by Aleksey Korshuk
For more details, visit the project repository.