huggingartists/suicideoscope
Text Generation • Updated • 9
text stringclasses 8
values |
|---|
Vanity was a vain subject from the start
Everything that is given is just luck
But time wont do me justice just enough
Its time to shorten my biography
For the name of genius
Time wont do me justice enough
For dying doesnt nearly interest me
As much as killing myself
Theres something attractive about control
Even thoug... |
Lets start the day
Grin out a smile
And get over with it
Just because
Isnt an abyss merely
A well
Too lengthy for a single mans lifespan
Third person vision
Makes no sense whatsoever
It questions and questions the
Unresolved levels of cognitive endeavors
She licked up the blood as it was still
Oozing from her body
Bloo... |
So you think thats pretty clever
You should listen to me in my sleep
Not that i could sleep when youre near
So you think thats pretty clever
You should listen to me in my sleep
You really should sleep you know
So you guess thats pretty clever
Yeah i guess
I guess i should really harm myself
Like really really mess it u... |
Were wailing and wailing
Test of the city
See you in the car
See you seen the car
To the cards to cartoons it spins
One two buckle my shoe
Three four on the floor
One two buckle my shoe
Three four dragged by misdemeanor
Oh seven new student
Sins go first at restaurants
Many times missed stuck on the grand scheme of the... |
Chlorocyanide smothered me good any day
Got me way way all the way and satisfied
Up until the rays of your forms sprayed my weary eyes
I figured i should go ahead and give it a try
Not gonna lie conversing felt confusing
Especially in an empty football stadium and losing hard
The americans really did it this time
Weve ... |
EDing on your first
ODing right before your last
Dismiss high hopes of trying to
Redefine your past self
Among the unable to comprehend what youre painting
You are EDing on your first
ODing right before your last
You loathe your peers and sneezed
They only cringed and laughed
You wasted trash lashed
You are fucking fro... |
You dont seem to see the seas
I knew its disappointing to make assumptions
I knew the news before they were loose
And its only the first glance thats amusing
You dont seem to see the seas
Dawdling around pointlessly at ease oh please
No doctor could help
Its not a curable disease
You dont seem to see the seas
Border of... |
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/suicideoscope")
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 |
|---|---|---|
| 11 | - | - |
'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/suicideoscope")
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.