Update README.md
Browse files
README.md
CHANGED
@@ -128,6 +128,21 @@ This dataset contains the [Quora](https://huggingface.co/datasets/quora) Questio
|
|
128 |
* Collection strategy: Filtering away the "different" options from the `pair-class` subset, removing the label column, and renaming the columns.
|
129 |
* Deduplified: No
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
### `triplet` subset
|
132 |
|
133 |
* Columns: "anchor", "positive", "negative"
|
@@ -140,5 +155,5 @@ This dataset contains the [Quora](https://huggingface.co/datasets/quora) Questio
|
|
140 |
'negative': 'Can people on Quora stop India Pakistan debate? We are sick and tired seeing this everyday in bulk?',
|
141 |
}
|
142 |
```
|
143 |
-
* Collection strategy: Taken from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data), which states: "Duplicate question pairs from Quora with additional hard negatives (mined & denoised by cross-encoder)".
|
144 |
* Deduplified: No
|
|
|
128 |
* Collection strategy: Filtering away the "different" options from the `pair-class` subset, removing the label column, and renaming the columns.
|
129 |
* Deduplified: No
|
130 |
|
131 |
+
### `triplet-all` subset
|
132 |
+
|
133 |
+
* Columns: "anchor", "positive", "negative"
|
134 |
+
* Column types: `str`, `str`, `str`
|
135 |
+
* Examples:
|
136 |
+
```python
|
137 |
+
{
|
138 |
+
'anchor': 'Why in India do we not have one on one political debate as in USA?",
|
139 |
+
'positive': 'Why cant we have a public debate between politicians in India like the one in US?',
|
140 |
+
'negative': 'Can people on Quora stop India Pakistan debate? We are sick and tired seeing this everyday in bulk?',
|
141 |
+
}
|
142 |
+
```
|
143 |
+
* Collection strategy: Taken from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data), which states: "Duplicate question pairs from Quora with additional hard negatives (mined & denoised by cross-encoder)". Then, take all possible triplet pairs.
|
144 |
+
* Deduplified: No
|
145 |
+
|
146 |
### `triplet` subset
|
147 |
|
148 |
* Columns: "anchor", "positive", "negative"
|
|
|
155 |
'negative': 'Can people on Quora stop India Pakistan debate? We are sick and tired seeing this everyday in bulk?',
|
156 |
}
|
157 |
```
|
158 |
+
* Collection strategy: Taken from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data), which states: "Duplicate question pairs from Quora with additional hard negatives (mined & denoised by cross-encoder)". Then, take the anchor, positive and the first negative of each sample.
|
159 |
* Deduplified: No
|