Datasets:
L-\d -> L\d
Browse files
README.md
CHANGED
@@ -8,7 +8,7 @@ size_categories:
|
|
8 |
task_categories:
|
9 |
- feature-extraction
|
10 |
- sentence-similarity
|
11 |
-
pretty_name: MS MARCO with hard negatives from msmarco-MiniLM-
|
12 |
tags:
|
13 |
- sentence-transformers
|
14 |
dataset_info:
|
@@ -355,7 +355,7 @@ configs:
|
|
355 |
path: triplet-ids/train-*
|
356 |
---
|
357 |
|
358 |
-
# MS MARCO with hard negatives from msmarco-MiniLM-
|
359 |
|
360 |
[MS MARCO](https://microsoft.github.io/msmarco/) is a large scale information retrieval corpus that was created based on real user search queries using the Bing search engine.
|
361 |
For each query and gold positive passage, the 50 most similar paragraphs were mined using 13 different models. The resulting data can be used to train [Sentence Transformer models](https://www.sbert.net).
|
@@ -367,7 +367,7 @@ These are the datasets generated using the 13 different models:
|
|
367 |
* [msmarco-bm25](https://huggingface.co/datasets/sentence-transformers/msmarco-bm25)
|
368 |
* [msmarco-msmarco-distilbert-base-tas-b](https://huggingface.co/datasets/sentence-transformers/msmarco-msmarco-distilbert-base-tas-b)
|
369 |
* [msmarco-msmarco-distilbert-base-v3](https://huggingface.co/datasets/sentence-transformers/msmarco-msmarco-distilbert-base-v3)
|
370 |
-
* [msmarco-msmarco-MiniLM-
|
371 |
* [msmarco-distilbert-margin-mse-cls-dot-v2](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-cls-dot-v2)
|
372 |
* [msmarco-distilbert-margin-mse-cls-dot-v1](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-cls-dot-v1)
|
373 |
* [msmarco-distilbert-margin-mse-mean-dot-v1](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-mean-dot-v1)
|
@@ -449,7 +449,7 @@ We release two subsets, one with strings (`triplet-all`) and one with IDs (`trip
|
|
449 |
### Hard Triplets
|
450 |
|
451 |
For each query-positive pair, mine the 50 most similar passages to the query and consider them as negatives.
|
452 |
-
Filter these 50 negatives such that `similarity(query, positive) > similarity(query, negative) + margin`, with [cross-encoder/ms-marco-MiniLM-
|
453 |
In short, we rely on a CrossEncoder to try and make sure that the negatives are indeed dissimilar to the query.
|
454 |
We release two subsets, one with strings (`triplet-hard`) and one with IDs (`triplet-hard-ids`) to be used with [sentence-transformers/msmarco-corpus](https://huggingface.co/datasets/sentence-transformers/msmarco-corpus).
|
455 |
|
|
|
8 |
task_categories:
|
9 |
- feature-extraction
|
10 |
- sentence-similarity
|
11 |
+
pretty_name: MS MARCO with hard negatives from msmarco-MiniLM-L6-v3
|
12 |
tags:
|
13 |
- sentence-transformers
|
14 |
dataset_info:
|
|
|
355 |
path: triplet-ids/train-*
|
356 |
---
|
357 |
|
358 |
+
# MS MARCO with hard negatives from msmarco-MiniLM-L6-v3
|
359 |
|
360 |
[MS MARCO](https://microsoft.github.io/msmarco/) is a large scale information retrieval corpus that was created based on real user search queries using the Bing search engine.
|
361 |
For each query and gold positive passage, the 50 most similar paragraphs were mined using 13 different models. The resulting data can be used to train [Sentence Transformer models](https://www.sbert.net).
|
|
|
367 |
* [msmarco-bm25](https://huggingface.co/datasets/sentence-transformers/msmarco-bm25)
|
368 |
* [msmarco-msmarco-distilbert-base-tas-b](https://huggingface.co/datasets/sentence-transformers/msmarco-msmarco-distilbert-base-tas-b)
|
369 |
* [msmarco-msmarco-distilbert-base-v3](https://huggingface.co/datasets/sentence-transformers/msmarco-msmarco-distilbert-base-v3)
|
370 |
+
* [msmarco-msmarco-MiniLM-L6-v3](https://huggingface.co/datasets/sentence-transformers/msmarco-msmarco-MiniLM-L6-v3)
|
371 |
* [msmarco-distilbert-margin-mse-cls-dot-v2](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-cls-dot-v2)
|
372 |
* [msmarco-distilbert-margin-mse-cls-dot-v1](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-cls-dot-v1)
|
373 |
* [msmarco-distilbert-margin-mse-mean-dot-v1](https://huggingface.co/datasets/sentence-transformers/msmarco-distilbert-margin-mse-mean-dot-v1)
|
|
|
449 |
### Hard Triplets
|
450 |
|
451 |
For each query-positive pair, mine the 50 most similar passages to the query and consider them as negatives.
|
452 |
+
Filter these 50 negatives such that `similarity(query, positive) > similarity(query, negative) + margin`, with [cross-encoder/ms-marco-MiniLM-L6-v2](https://huggingface.co/cross-encoder/ms-marco-MiniLM-L6-v2) and `margin = 3.0`.
|
453 |
In short, we rely on a CrossEncoder to try and make sure that the negatives are indeed dissimilar to the query.
|
454 |
We release two subsets, one with strings (`triplet-hard`) and one with IDs (`triplet-hard-ids`) to be used with [sentence-transformers/msmarco-corpus](https://huggingface.co/datasets/sentence-transformers/msmarco-corpus).
|
455 |
|