File size: 879 Bytes
8d624ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72e62f2
8d624ce
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
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)))