vabatista commited on
Commit
3e88811
1 Parent(s): 0216088

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -4,4 +4,8 @@ datasets:
4
  - squad_v2
5
  library_name: sentence-transformers
6
  pipeline_tag: sentence-similarity
7
- ---
 
 
 
 
 
4
  - squad_v2
5
  library_name: sentence-transformers
6
  pipeline_tag: sentence-similarity
7
+ ---
8
+
9
+ This similarity model was trained for 2 epochs based on the sentence-transformers/all-mpnet-base-v2. We used the SQuAD 2.0 dataset to compare similarity between questions and sentences containing the answer to the question. We employed the MultipleNegativesRankingLoss as the objective function. To generate negative examples, our strategy involved using BM25 to retrieve similar examples from all sentences in the dataset that did not contain the answer.
10
+
11
+ As a result, we improved the retrieval of correct sentences (containing the answer) for a question, as measured by the MRR@10 metric.