huggingartists/baklan
Text Generation • Updated • 7
text stringclasses 3
values |
|---|
Hush!
Or make a sound
If you willing to die in vain
Rush!
It’s now or never
If you going to touch the flame
My gosh!
You shouldnt see it
Now we run out of time
I will force you to listen
No way to beat it
They will suck out your mind
But the pain will subside
You can’t tell what youre missing
The heavens hear us
The de... |
Ти не любила зірвані квіти
Розчинну каву, вітер та сухе вино
Тебе ще міг я довго терпіти
Але повір, що зараз мені все одно
Ще темрявою смуток на серці
Хоч сонце ясно світить у моє вікно
Усе хотів я з пам’яті стерти
Та кожен раз у снах я бачу це кіно
Я наче ніч прийду
Та замету свої сліди
Ти пожалкуєш, що
Спалила всі мо... |
Е, конча
Еа
Йоу
Мне приснилось что нужно купить губки для мытья посуды
Проснулся, а они
Биопсия мозга
менту череп за пачку винстона
В моём кармане пакет насвая
Я его кидаю и это обожаю
Жму 200 летают над тобою
Ты будешь- говоришь что не сосёшь аналистам, уважаю
Но нагибаюсь за мылом
Мать моя, после школы было здорово... |
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available here.
en
How to load this dataset directly with the datasets library:
from datasets import load_dataset
dataset = load_dataset("huggingartists/baklan")
An example of 'train' looks as follows.
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
The data fields are the same among all splits.
text: a string feature.| train | validation | test |
|---|---|---|
| 3 | - | - |
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/baklan")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
Built by Aleksey Korshuk
For more details, visit the project repository.