Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Raw TwoSentenceHorror Dump (Pushshift)

This is the raw Zstandard compressed dump of the r/TwoSentenceHorror subreddit used to train my horror model

How to load this data

You can stream this directly in Python without downloading the whole file first:

from datasets import load_dataset

# Load directly from the zst file
dataset = load_dataset("json", data_files="[https://huggingface.co/datasets/YourUsername/TwoSentenceHorror-raw-dump/resolve/main/TwoSentenceHorror_submissions.zst](https://huggingface.co/datasets/YourUsername/TwoSentenceHorror-raw-dump/resolve/main/TwoSentenceHorror_submissions.zst)", split="train")

print(next(iter(dataset)))
Downloads last month
23