Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,20 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
- config_name: pair
|
4 |
features:
|
@@ -40,3 +56,38 @@ configs:
|
|
40 |
- split: train
|
41 |
path: pair-class/train-*
|
42 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-generated
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
language_creators:
|
7 |
+
- found
|
8 |
+
multilinguality:
|
9 |
+
- monolingual
|
10 |
+
size_categories:
|
11 |
+
- 100K<n<1M
|
12 |
+
task_categories:
|
13 |
+
- feature-extraction
|
14 |
+
- sentence-similarity
|
15 |
+
pretty_name: Quora Duplicate Questions
|
16 |
+
tags:
|
17 |
+
- sentence-transformers
|
18 |
dataset_info:
|
19 |
- config_name: pair
|
20 |
features:
|
|
|
56 |
- split: train
|
57 |
path: pair-class/train-*
|
58 |
---
|
59 |
+
|
60 |
+
# Dataset Card for Quora Duplicate Questions
|
61 |
+
|
62 |
+
This dataset contains the [Quora](https://huggingface.co/datasets/quora) Question Pairs dataset in two formats that are easily used with Sentence Transformers to train embedding models. The data was originally created by Quora for [this Kaggle Competition](https://www.kaggle.com/c/quora-question-pairs).
|
63 |
+
|
64 |
+
## Dataset Subsets
|
65 |
+
|
66 |
+
### `pair-class` subset
|
67 |
+
|
68 |
+
* Columns: "sentence1", "sentence2", "label"
|
69 |
+
* Column types: `str`, `str`, `class` with `{"0": "different", "1": "duplicate"}`
|
70 |
+
* Examples:
|
71 |
+
```python
|
72 |
+
{
|
73 |
+
'sentence1': 'What is the step by step guide to invest in share market in india?',
|
74 |
+
'sentence2': 'What is the step by step guide to invest in share market?',
|
75 |
+
'label': 0,
|
76 |
+
}
|
77 |
+
```
|
78 |
+
* Collection strategy: A direct copy of [Quora](https://huggingface.co/datasets/quora), but with more conveniently parsable columns.
|
79 |
+
* Deduplified: No
|
80 |
+
|
81 |
+
### `pair` subset
|
82 |
+
|
83 |
+
* Columns: "anchor", "positive"
|
84 |
+
* Column types: `str`, `str`
|
85 |
+
* Examples:
|
86 |
+
```python
|
87 |
+
{
|
88 |
+
'anchor': 'Astrology: I am a Capricorn Sun Cap moon and cap rising...what does that say about me?',
|
89 |
+
'positive': "I'm a triple Capricorn (Sun, Moon and ascendant in Capricorn) What does this say about me?",
|
90 |
+
}
|
91 |
+
```
|
92 |
+
* Collection strategy: Filtering away the "different" options from the `pair-class` subset, removing the label column, and renaming the columns.
|
93 |
+
* Deduplified: No
|