File size: 1,868 Bytes
8c4d2c2 61981b2 8c4d2c2 61981b2 44155a6 61981b2 |
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
---
language:
- en
multilinguality:
- monolingual
size_categories:
- 100M<n<1B
task_categories:
- feature-extraction
- sentence-similarity
pretty_name: Reddit
tags:
- sentence-transformers
dataset_info:
config_name: pair
features:
- name: title
dtype: string
- name: body
dtype: string
splits:
- name: train
num_bytes: 91941517956
num_examples: 127445911
download_size: 61672419296
dataset_size: 91941517956
configs:
- config_name: pair
data_files:
- split: train
path: pair/train-*
---
# Dataset Card for Reddit
This dataset contains titles and bodies of Reddit posts collected from the [Reddit-Title-Body dataset](https://huggingface.co/datasets/sentence-transformers/reddit-title-body).
The data has been filtered for:
* Remove threads with an upvote_ratio < 0.5
* Only include threads with a title more than 25 characters and bodies with len(title)+25 < len(body) < 4096
* Only keep threads with at least 3 comments or at least 3 upvotes.
## Dataset Subsets
### `pair` subset
* Columns: "title", "body"
* Column types: `str`, `str`
* Examples:
```python
{
'title': 'Has anybody else watched Kings?',
'body': "I know it's not SciFi per se, but I thought this kind of \"big concept\" show might appeal to the same group. I hadn't heard of it, but Hulu recommended it to me, and I ended up watching the entire thing over a couple of days. I thought it was absolutely fantastic, and I'm really bummed that it won't be coming back. I've been recommending it to everyone I know, but I haven't found anyone else who's watched it! Did anybody here? If so, what did people think? EDIT: P.S. It's all available on Hulu!",
}
```
* Collection strategy: Concatenating all files from [Reddit-Title-Body dataset](https://huggingface.co/datasets/sentence-transformers/reddit-title-body).
* Deduplified: No |