Dataset Viewer
Auto-converted to Parquet Duplicate
id
int32
10
512k
header
stringlengths
50
748
story
stringlengths
40
12.7M
394,130
<|info|> title: Broken, But Getting Better author: Rose Quill tags: character:Tempest Shadow, character:Twilight Sparkle, genre:Slice of Life, series:My Little Pony: Friendship is Magic
=== Broken === I stared at the paper, a pencil in my mouth as I considered the next words. I was not the most well read of ponies, having always taken the stance that actions speak louder, but I felt that this time needed some words to explain. I scanned what I had already written to try and jog my vocabulary. Princess...
42,716
<|info|> title: Fire Spores author: applecinnamonspice tags: character:Main 6, character:Spike, character:Twilight Sparkle, genre:Slice of Life, series:My Little Pony: Friendship is Magic
=== Fire Spores === Fire Spores "Did you—?" "Cleaned the shelves, reorganized the desk, sorted out the card catalog, dusted the books—" "Even the—" "Especially the super special rare books—reference only, of course—shelved towards the top so the younger fillies can't get to them." "Great! So now there's—" "Breakfast? ...
23,846
"<|info|>\ntitle: Anarchy in the Equestrian Nation\nauthor: Union Jake\ntags: genre:Adventure, genre(...TRUNCATED)
"=== Chapter One: Dad's Gas Mask ===\nIt was three in the morning, and the stallion known as Union J(...TRUNCATED)
89,439
"<|info|>\ntitle: A Short Story of a Lonely Guy\nauthor: Regidar\ntags: character:Big Macintosh, cha(...TRUNCATED)
"=== Metaphysical, Metaphorical, and Other Large \"M' Words ===\nCaramel didn't want to wake up. He(...TRUNCATED)
92,377
"<|info|>\ntitle: A Western Tail\nauthor: Trigger_Finger\ntags: character:Daring Do, character:Origi(...TRUNCATED)
"=== Chapter 1: You dig ===\nI trotted along through the thick undergrowth of the Everfree forest. T(...TRUNCATED)
37,140
"<|info|>\ntitle: Romantic Relationships 101\nauthor: BigMacDavis\ntags: character:Rainbow Dash, cha(...TRUNCATED)
"=== Romantic Relationships 101 ===\nA big shoutout goes out to... Twilightclopple! If it weren't fo(...TRUNCATED)
148,976
"<|info|>\ntitle: Who is our big sister?\nauthor: Nesfex\ntags: character:Pie Sisters, genre:Adventu(...TRUNCATED)
"=== The family ===\nWork. In the family that was the word they spoke the most. Sometimes they forgo(...TRUNCATED)
173,679
"<|info|>\ntitle: Equestria's Royal Conference of the Four Princesses\nauthor: Hyzaku\ntags: charact(...TRUNCATED)
"=== Secret Agendas ===\nGolden Oaks Library is many things. A place of learning, a home to one of E(...TRUNCATED)
365,855
"<|info|>\ntitle: As Winter Dies, So Spring Is Born\nauthor: Impossible Numbers\ntags: character:Com(...TRUNCATED)
"=== Never Friends, Always Together ===\nPansy stopped her striding march and forced her eyes shut. (...TRUNCATED)
104,503
"<|info|>\ntitle: In the Gardens\nauthor: MaxKodan\ntags: character:Octavia, character:Other, genre:(...TRUNCATED)
"=== Blind ===\nThe sweet smell of flowers fluttered through the air on the wind that had been on an(...TRUNCATED)
End of preview. Expand in Data Studio

this is a testing dataset for future model testing. you should not use this (yet)

there are multiple datasets,

  • notebook_defaults
  • notebook_defaults_ratio0.8_likes10

you can load each like this:

import datasets
# see FFV4.BUILDER_CONFIGS for all possible names
ds = datasets.load_dataset('./dataset_code.py', name='notebook_defaults_ratio0.8_likes10')

then use them like this

ds_real = ds['everything'] # there is no such thing as a train/test split here
one_item = ds_real[0] # grab first story, and truncuate the text of it to first 1000 characters
one_item_truncuated = one_item | {'story': one_item['story'][:1000]}

print(ds)
print(one_item_truncuated)

this will show something vaguely useful

DatasetDict({
    everything: Dataset({
        features: ['id', 'header', 'story'],
        num_rows: 52357
    })
})
{'id': 394130, 'header': '<|info|>\ntitle: Broken, But Getting Better\nauthor: Rose Quill\ntags: character:Tempest Shadow, character:Twilight Sparkle, genre:Slice of Life, series:My Little Pony: Friendship is Magic', 'story': "=== Broken ===\nI stared at the paper, a pencil in my mouth as I considered the next words. I was not the most well read of ponies, having always taken the stance that actions speak louder, but I felt that this time needed some words to explain. I scanned what I had already written to try and jog my vocabulary.\nPrincess Twilight,\nBy the time you read this, I'll have left. I know you offered me your friendship, but I think it would do me well to be apart from other ponies for a few days…give or take a week.\nThis is not running away, no. Far from it. I have been away from my kind for so long I fear I have forgotten what it means to even be Equestrian. I need time to observe with no metric standing against me.\nI sighed and glanced out the window at the town of Ponyville, the town square filled with banners and other evidence of an upcoming party. In the glass of the portal, I saw the snapped stub of my horn, and I felt the dull pain that I had lived with for most of my life.\nI reached up a"}
Downloads last month
59