text stringclasses 15
values |
|---|
Ever since you met me
In this busy town
You tried to melt my cold heart
But I never was a good one
You used to give me roses
And hide your own pain
Lately I don’t feel like
We could be the same
Maybe I will call you baby
No one wants to be alone
When love is gone
Maybe I will call you baby
Never pick up the phone
When ... |
I made my choice and you made yours
To stay behind like unseen ghosts
Till the end, till the end
No matter how and no matter where
Will have our last breathes to share
In the end, in the end
Its not easy, its not a simple thing
In silence we speak
In darkness we can see
Its not easy, its not a simple thing
To live on t... |
I said I love you
On a cobblestone in New York
I guess
Some things could be lost in a mess
Like a prophet
I read the lines in your hand
I see the lies in you heart
And in your head
In your...
In your...
In your head
But I dont wanna get used to you
And I dont wanna be love infected
But I dont wanna get used to you
Caus... |
I was young
I was cute
I was just a stupid kid
Than I saw you that night
And my world fell apart
It’s so crazy how we
Easily are fooling ourselves
You’re worse than nicotine
What else could I say
Love is blind
Love is weak
Love is twined
Love is we
Love is blind
Love is weak
Love is twined
Love is we
So I said to mysel... |
So you though she’s the one that you looked for
Every time she leaves, she shows no remorse
If you thought that you could forget her
Listen, babe, You’re not even close
She’s the one with eyes blue like water
And a mouth with a kiss like a bottomless well
She used to act like a spoiled devil’s daughter
But angels would... |
I wanted to convince myself that things
Were not what they seem
That we had a chance that someday it would work better
But I always had a feeling like I lived behind the scenes
And I don’t think there is anything that could keep us together
I wish I was blind
I wish I was blind not to see it
I wish I was dumb
I’m fed u... |
In a dirty room
Of a roadside inn
All the curtains are drawn
So you let me in
This obsession is just
Killing me inside
All I want is to stay
In your bed tonight
We are slipping into dark
Oh, we are slipping into dark
Living in a mess
That you left behind
You’re the wildest moon I ever knew
I wanna stay in your bed toni... |
When the day is over
When the lights go dark
No, I’m not sober
No, you’re not around
All my winter days are
Spent forgetting us
We all break our rules for someone
From the past
We live in a glass house
But no one can see us
Hiding from storms inside
The glass house
We live in a glass house
But no one can see us
Hiding ... |
So now you know it`s not freedom
It`s so easy to hide in a crowd
And all these people around
And my dirty old shoes
Being the best pretender
Homeless and wild
The gipsy queen
But I`m staying here, baby
Now sleep no more
Better change your way
Nothing matters
Gonna find another day
My blood aint warm as red sweater
Ther... |
Why dont you sleep with me
Case I know that you dream about
Why dont you eat with me
Sweet and sour
Why dont you laugh with me
I know all your best jokes
Why dont you judge me
When I do the worst things
All the wounds heal
So dont you be ashamed
And keep playing
With an empty shell
All the wounds heal
So dont you be as... |
I couldn’t bear no more
So I found shelter
At the bar next door
My mother used to tell me
Behave yourself, girl
You’re such a bad girl
Oh mother, I’m sorry
Last drink, and I’ll go home
Tiger print coat and messy hair
I’m not a stranger to the walk of shame
That night I found myself
Next to a guy
At a Christian dorm
I h... |
Staying in my bed with a stranger
I dont remember his name
He’s wearing a white shirt
But his heart is as black as mine just the same
Staying in my bed with a stranger
Who the hell is he
He is touching my hand
But I feel like the devil is touching me
I... I-I-I will always blame you
I want you to give me back
What I ga... |
You ask me why
I blame myself
You ask me why
Im lost and scared
You ask me why
I dont wanna talk
You ask me why
But its not your fault... in
You ask me why
I drink that much
My eyes are open
But I dont feel your touch
You ask me why
I loose control
You ask me why
I play this role
Cause theres a man behind the curtain
L... |
Damn, I didn’t mean to hurt you
I didn’t mean to scare you
I didn’t mean to start a war
Man, I didn’t mean to love you
I didn’t mean to rush you
I didn’t mean to make you cry
But I told you, right?
I’m a weirdo
I’m a trouble maker
I’m a weirdo
I’m a trouble maker
I’m a weirdo
I’m a trouble maker
You’ll never stop me
Yo... |
We thought its just a game
Yeah, we were like kids
No one dreamt of fame
Or millions
We promised so honestly
To handle with care
If it still makes sense to you
Wait for me right there
And I wish it wasnt you
Breaking my heart
Seems like horses run in my head this night
And I wish it wasnt me
Breaking all the rules
We u... |
Dataset Card for "huggingartists/braii"
Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available here.
Supported Tasks and Leaderboards
Languages
en
How to use
How to load this dataset directly with the datasets library:
from datasets import load_dataset
dataset = load_dataset("huggingartists/braii")
Dataset Structure
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..."
}
Data Fields
The data fields are the same among all splits.
text: astringfeature.
Data Splits
| train | validation | test |
|---|---|---|
| 15 | - | - |
'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/braii")
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)})
}
)
Dataset Creation
Curation Rationale
Source Data
Initial Data Collection and Normalization
Who are the source language producers?
Annotations
Annotation process
Who are the annotators?
Personal and Sensitive Information
Considerations for Using the Data
Social Impact of Dataset
Discussion of Biases
Other Known Limitations
Additional Information
Dataset Curators
Licensing Information
Citation Information
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
About
Built by Aleksey Korshuk
For more details, visit the project repository.
- Downloads last month
- 67