File size: 1,643 Bytes
eb725ca 3469d02 eb725ca 3469d02 |
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 |
---
language:
- en
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
task_categories:
- feature-extraction
- sentence-similarity
pretty_name: WikiHow Summaries
tags:
- sentence-transformers
dataset_info:
config_name: pair
features:
- name: text
dtype: string
- name: summary
dtype: string
splits:
- name: train
num_bytes: 30125544
num_examples: 128543
download_size: 18151561
dataset_size: 30125544
configs:
- config_name: pair
data_files:
- split: train
path: pair/train-*
---
# Dataset Card for WikiHow Summaries
This dataset is a collection of text-summary pairs collected from WikiHow. See [WikiHow pairs dataset](https://github.com/pvl/wikihow_pairs_dataset) for additional information.
This dataset can be used directly with Sentence Transformers to train embedding models.
## Dataset Subsets
### `pair` subset
* Columns: "text", "summary"
* Column types: `str`, `str`
* Examples:
```python
{
'text': "Wisdom teeth are the molars furthest back on both sides of your upper and lower jaw. [1] These four teeth are the last ones to erupt or grow out of your gums and become functional — this typically occurs during the late teen years or early adulthood; however, sometimes wisdom teeth don't erupt at all or only partially erupt and become impacted if there isn't enough room in your jaw or mouth.",
'summary': 'Tell Between an Erupting and Impacted Wisdom Tooth',
}
```
* Collection strategy: Reading the WikiHow dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data).
* Deduplified: No |