Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): RandomProjection({'in_features': 384, 'out_features': 768, 'seed': 42, 'requires_grad': True})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("avsolatorio/all-MiniLM-L6-v2-MEDI-MTEB-triplet-randproj-trainableParams-512-best")
5# Run inference
6sentences = [
7 'Does age at observation time affect the clinical presentation of mild cognitive impairment?',
8 'To date, there are no published data investigating the role of age in the clinical and neuropsychological presentation of mild cognitive impairment (MCI). The aim of the study was to evaluate whether age at the time of evaluation modulates clinical, functional or cognitive profiles in MCI subjects.A total of 167 outpatients with a clinical diagnosis of MCI were consecutively enrolled and entered in the study. Clinical and demographic characteristics were carefully recorded. Each patient underwent a wide neuropsychological standardized assessment.MCI subjects were divided into 3 groups according to their age at observation time: 58 MCI patients were classified as young (≤ 69 years), 89 as old (70-79 years) and 20 as very old (≥ 80 years). The 3 groups did not differ in demographic characteristics, general cognitive functions and memory impairment. Very old MCI subjects showed a significantly greater impairment than younger MCI patients in cognitive domains involving executive functions. In particular, very old MCI patients were more frequently classified as having multiple-domain amnestic MCI.',
9 'National reports indicate that morbidity and mortality from pneumonia among Thai children has decreased dramatically since the turn of the millennia; notwithstanding, pneumonia remains the leading cause of admission and death in Thai children under five years of age.To assess the burden and pattern of acute lower respiratory infection in under-fives in Thailand from the health data in 2010.Information on respiratory infection using the ICD10: J09-J22 was evaluated for the number of OPD visits, admissions, mortality, monthly incidence and co-morbidities of the mortality.73% of all OPD visits with ALRI were in under-fives: one-fourth of whom required hospitalization. Pneumonia is the leading cause of both admissions and mortality (3.22% and 11.29/100,000 population for this age group, respectively). The highest mortality was in the first year of life (39/100,000). One-fourth of the children (168/639) died within 24 hours of admission and septicemia was the most common co-morbidity.',
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 768]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities.shape)
18# [3, 3]medi-mteb-devTripletEvaluator| Metric | Value |
|---|---|
| cosine_accuracy | 0.8928 |
anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}anchor, positive, and negative| anchor | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 100,
3 "similarity_fct": "cos_sim"
4}eval_strategy: stepsper_device_train_batch_size: 512per_device_eval_batch_size: 512learning_rate: 5.656854249492381e-05num_train_epochs: 10warmup_ratio: 0.1fp16: Truegradient_checkpointing: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 512per_device_eval_batch_size: 512per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5.656854249492381e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 10max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.1warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 42data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Falsefp16: Truefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}deepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torchoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Falsehub_always_push: Falsegradient_checkpointing: Truegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters:auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Nonedispatch_batches: Nonesplit_batches: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportional| Epoch | Step | Training Loss | Validation Loss | medi-mteb-dev_cosine_accuracy |
|---|---|---|---|---|
| 0 | 0 | - | - | 0.8357 |
| 0.1308 | 500 | 4.8199 | 1.2826 | 0.8714 |
| 0.2616 | 1000 | 2.1461 | 1.0896 | 0.8822 |
| 0.3925 | 1500 | 2.0906 | 1.0255 | 0.8888 |
| 0.5233 | 2000 | 1.8088 | 0.9673 | 0.8911 |
| 0.6541 | 2500 | 1.9099 | 0.9352 | 0.8940 |
| 0.7849 | 3000 | 1.8035 | 0.9721 | 0.8924 |
| 0.9158 | 3500 | 1.8604 | 0.9227 | 0.8951 |
| 1.0466 | 4000 | 1.7688 | 0.8781 | 0.8989 |
| 1.1774 | 4500 | 1.8686 | 0.9600 | 0.8931 |
| 1.3082 | 5000 | 1.6814 | 0.8968 | 0.8948 |
| 1.4390 | 5500 | 1.694 | 1.1654 | 0.8949 |
| 1.5699 | 6000 | 1.6429 | 1.3446 | 0.8922 |
| 1.7007 | 6500 | 1.659 | 1.1053 | 0.8970 |
| 1.8315 | 7000 | 1.5881 | 1.1438 | 0.8943 |
| 1.9623 | 7500 | 1.5615 | 0.9081 | 0.9020 |
| 2.0931 | 8000 | 1.6247 | 1.1045 | 0.8980 |
| 2.2240 | 8500 | 1.5633 | 1.1456 | 0.8946 |
| 2.3548 | 9000 | 1.5965 | 1.4517 | 0.8968 |
| 2.4856 | 9500 | 1.4131 | 1.5422 | 0.8928 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}