|
|
--- |
|
|
license: other |
|
|
task_categories: |
|
|
- text-generation |
|
|
- text-classification |
|
|
language: |
|
|
- en |
|
|
tags: |
|
|
- reddit |
|
|
- horror |
|
|
size_categories: |
|
|
- 100K<n<1M |
|
|
--- |
|
|
|
|
|
# Raw TwoSentenceHorror Dump (Pushshift) |
|
|
|
|
|
This is the raw Zstandard compressed dump of the r/TwoSentenceHorror subreddit used to train [my horror model](https://huggingface.co/denialguo/mistral-two-sentence-horror) |
|
|
|
|
|
## How to load this data |
|
|
You can stream this directly in Python without downloading the whole file first: |
|
|
|
|
|
```python |
|
|
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))) |