CoolFace
Modelpublic

KhaledReda/all-MiniLM-L6-v17-pair_score

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
0likes88downloads
Model Card

all-MiniLM-L6-v17-pair_score

This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2 on the pairs_three_scores_v13_synonyms_added dataset. It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
  (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
  (2): Normalize()
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
    'kite',
    'ramadan kaftan clutch',
    'side pocket boardshorts',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.6999, 0.6212],
#         [0.6999, 1.0000, 0.7124],
#         [0.6212, 0.7124, 1.0000]])

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

pairsthreescoresv13synonyms_added
  • Dataset: pairs_three_scores_v13_synonyms_added at 10e49f8
  • Size: 9,229,520 training samples
  • Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | score | |:--------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------| | type | string | string | float | | details | <ul><li>min: 3 tokens</li><li>mean: 5.65 tokens</li><li>max: 18 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 5.69 tokens</li><li>max: 16 tokens</li></ul> | <ul><li>min: 0.15</li><li>mean: 0.42</li><li>max: 1.0</li></ul> |
  • Samples: | sentence1 | sentence2 | score | |:------------------------------------|:------------------------------------------|:------------------| | <code>kettlebell</code> | <code>bag</code> | <code>0.22</code> | | <code>mixed berry milk shake</code> | <code>elasticized waistband shorts</code> | <code>0.21</code> | | <code>raw linden honey</code> | <code>refresher sponge</code> | <code>0.22</code> |
  • Loss: <code>CoSENTLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "pairwise_cos_sim"
  }

Evaluation Dataset

pairsthreescoresv13synonyms_added
  • Dataset: pairs_three_scores_v13_synonyms_added at 10e49f8
  • Size: 46,380 evaluation samples
  • Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | score | |:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------| | type | string | string | float | | details | <ul><li>min: 3 tokens</li><li>mean: 5.69 tokens</li><li>max: 115 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 5.77 tokens</li><li>max: 115 tokens</li></ul> | <ul><li>min: 0.15</li><li>mean: 0.42</li><li>max: 1.0</li></ul> |
  • Samples: | sentence1 | sentence2 | score | |:-----------------------------------|:-----------------------------------|:------------------| | <code>bag</code> | <code>nude rocks</code> | <code>0.24</code> | | <code>semi natural necklace</code> | <code>21 kt plated necklace</code> | <code>1.0</code> | | <code>eco friendly coasters</code> | <code>measuring cup</code> | <code>0.23</code> |
  • Loss: <code>CoSENTLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "pairwise_cos_sim"
  }

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 128
  • per_device_eval_batch_size: 128
  • learning_rate: 2e-05
  • num_train_epochs: 1
  • warmup_ratio: 0.1
  • fp16: True
All Hyperparameters

<details><summary>Click to expand</summary>

  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: steps
  • prediction_loss_only: True
  • per_device_train_batch_size: 128
  • per_device_eval_batch_size: 128
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 2e-05
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 1
  • max_steps: -1
  • lr_scheduler_type: linear
  • lr_scheduler_kwargs: {}
  • warmup_ratio: 0.1
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: True
  • save_on_each_node: False
  • save_only_model: False
  • restore_callback_states_from_checkpoint: False
  • no_cuda: False
  • use_cpu: False
  • use_mps_device: False
  • seed: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: False
  • fp16: True
  • fp16_opt_level: O1
  • half_precision_backend: auto
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • local_rank: 0
  • ddp_backend: None
  • tpu_num_cores: None
  • tpu_metrics_debug: False
  • debug: []
  • dataloader_drop_last: False
  • dataloader_num_workers: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • fsdp: []
  • fsdp_min_num_params: 0
  • fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamw_torch
  • optim_args: None
  • adafactor: False
  • group_by_length: False
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • skip_memory_metrics: True
  • use_legacy_prediction_loop: False
  • push_to_hub: False
  • resume_from_checkpoint: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_private_repo: None
  • hub_always_push: False
  • hub_revision: None
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • include_for_metrics: []
  • eval_do_concat_batches: True
  • fp16_backend: auto
  • push_to_hub_model_id: None
  • push_to_hub_organization: None
  • mp_parameters:
  • auto_find_batch_size: False
  • full_determinism: False
  • torchdynamo: None
  • ray_scope: last
  • ddp_timeout: 1800
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • eval_on_start: False
  • use_liger_kernel: False
  • liger_kernel_config: None
  • eval_use_gather_object: False
  • average_tokens_across_devices: False
  • prompts: None
  • batch_sampler: batch_sampler
  • multi_dataset_batch_sampler: proportional
  • router_mapping: {}
  • learning_rate_mapping: {}

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Loss
0.001410011.7561-
0.002820011.739-
0.004230011.2175-
0.005540011.0759-
0.006950010.774910.9497
0.008360010.4026-
0.009770010.2194-
0.01118009.834-
0.01259009.6126-
0.013910009.35639.3834
0.015311009.0716-
0.016612008.9245-
0.018013008.7384-
0.019414008.6381-
0.020815008.60898.5228
0.022216008.5817-
0.023617008.5418-
0.025018008.532-
0.026419008.5107-
0.027720008.49178.4366
0.029121008.485-
0.030522008.4826-
0.031923008.4512-
0.033324008.4694-
0.034725008.44858.3778
0.036126008.4293-
0.037427008.4222-
0.038828008.4031-
0.040229008.3947-
0.041630008.39128.3335
0.043031008.3913-
0.044432008.3822-
0.045833008.3552-
0.047234008.3759-
0.048535008.36328.2942
0.049936008.3495-
0.051337008.3385-
0.052738008.3346-
0.054139008.3249-
0.055540008.30338.2534
0.056941008.3141-
0.058242008.3015-
0.059643008.2982-
0.061044008.3006-
0.062445008.29728.2175
0.063846008.2757-
0.065247008.2765-
0.066648008.2668-
0.068049008.2472-
0.069350008.26058.1990
0.070751008.2481-
0.072152008.2598-
0.073553008.2403-
0.074954008.2388-
0.076355008.20748.1497
0.077756008.2236-
0.079157008.2204-
0.080458008.2086-
0.081859008.208-
0.083260008.19918.1357
0.084661008.2064-
0.086062008.1969-
0.087463008.1795-
0.088864008.1846-
0.090165008.1888.1128
0.091566008.1902-
0.092967008.1624-
0.094368008.1527-
0.095769008.1589-
0.097170008.16248.0843
0.098571008.1705-
0.099972008.1362-
0.101273008.1419-
0.102674008.1564-
0.104075008.14228.0581
0.105476008.1214-
0.106877008.1369-
0.108278008.1024-
0.109679008.0974-
0.110980008.13168.0378
0.112381008.1185-
0.113782008.1148-
0.115183008.1015-
0.116584008.0851-
0.117985008.08818.0091
0.119386008.0734-
0.120787008.0644-
0.122088008.0802-
0.123489008.0827-
0.124890008.09348.0049
0.126291008.0544-
0.127692008.0828-
0.129093008.0844-
0.130494008.0598-
0.131895008.05757.9784
0.133196008.0476-
0.134597008.0617-
0.135998008.0632-
0.137399008.0398-
0.1387100008.04557.9625
0.1401101008.0441-
0.1415102008.0462-
0.1428103008.0429-
0.1442104008.0332-
0.1456105008.00877.9579
0.1470106008.0374-
0.1484107008.0243-
0.1498108008.0445-
0.1512109008.0155-
0.1526110008.01617.9321
0.1539111008.0092-
0.1553112008.0041-
0.1567113008.0165-
0.1581114008.005-
0.1595115007.99927.9243
0.1609116008.0109-
0.1623117008.0096-
0.1636118008.0176-
0.1650119007.9965-
0.1664120008.01597.9092
0.1678121007.9865-
0.1692122007.9742-
0.1706123007.9757-
0.1720124007.9852-
0.1734125008.00687.8931
0.1747126007.9616-
0.1761127007.9889-
0.1775128007.9795-
0.1789129007.9657-
0.1803130007.9527.8785
0.1817131007.9534-
0.1831132007.9212-
0.1845133007.9479-
0.1858134007.9433-
0.1872135007.95997.8757
0.1886136007.9751-
0.1900137007.9564-
0.1914138007.9642-
0.1928139007.9511-
0.1942140007.94587.8580
0.1955141007.9625-
0.1969142007.9728-
0.1983143007.9235-
0.1997144007.9658-
0.2011145007.95677.8480
0.2025146007.9214-
0.2039147007.8983-
0.2053148007.9334-
0.2066149007.9345-
0.2080150007.92457.8334
0.2094151007.9144-
0.2108152007.9375-
0.2122153007.9058-
0.2136154007.9365-
0.2150155007.91017.8291
0.2163156007.9001-
0.2177157007.8906-
0.2191158007.9103-
0.2205159007.8899-
0.2219160007.88747.8157
0.2233161007.9011-
0.2247162007.92-
0.2261163007.8933-
0.2274164007.886-
0.2288165007.89597.8097
0.2302166007.8623-
0.2316167007.8703-
0.2330168007.8934-
0.2344169007.8651-
0.2358170007.917.8047
0.2372171007.8794-
0.2385172007.8794-
0.2399173007.8723-
0.2413174007.9007-
0.2427175007.85687.7977
0.2441176007.8855-
0.2455177007.8687-
0.2469178007.8708-
0.2482179007.8533-
0.2496180007.877.8019
0.2510181007.8364-
0.2524182007.8901-
0.2538183007.8782-
0.2552184007.8817-
0.2566185007.87947.7774
0.2580186007.9031-
0.2593187007.8897-
0.2607188007.8741-
0.2621189007.8774-
0.2635190007.87717.7696
0.2649191007.839-
0.2663192007.8786-
0.2677193007.866-
0.2690194007.868-
0.2704195007.88047.7672
0.2718196007.8398-
0.2732197007.8662-
0.2746198007.8341-
0.2760199007.86-
0.2774200007.83257.7518
0.2788201007.7957-
0.2801202007.8478-
0.2815203007.8601-
0.2829204007.8395-
0.2843205007.84147.7452
0.2857206007.8332-
0.2871207007.862-
0.2885208007.8007-
0.2899209007.8249-
0.2912210007.82377.7456
0.2926211007.8616-
0.2940212007.865-
0.2954213007.8226-
0.2968214007.8245-
0.2982215007.8097.7333
0.2996216007.8026-
0.3009217007.8169-
0.3023218007.8201-
0.3037219007.8057-
0.3051220007.82377.7258
0.3065221007.82-
0.3079222007.819-
0.3093223007.7972-
0.3107224007.8141-
0.3120225007.81357.7245
0.3134226007.7951-
0.3148227007.8051-
0.3162228007.7968-
0.3176229007.8256-
0.3190230007.84077.7135
0.3204231007.8241-
0.3217232007.8195-
0.3231233007.7964-
0.3245234007.8166-
0.3259235007.8217.6989
0.3273236007.8125-
0.3287237007.7913-
0.3301238007.7958-
0.3315239007.7988-
0.3328240007.81487.7022
0.3342241007.7964-
0.3356242007.7924-
0.3370243007.7783-
0.3384244007.8008-
0.3398245007.77457.6911
0.3412246007.8002-
0.3426247007.7984-
0.3439248007.8212-
0.3453249007.7789-
0.3467250007.76097.6880
0.3481251007.792-
0.3495252007.8064-
0.3509253007.7851-
0.3523254007.784-
0.3536255007.79057.6772
0.3550256007.8252-
0.3564257007.766-
0.3578258007.7424-
0.3592259007.779-
0.3606260007.77017.6759
0.3620261007.774-
0.3634262007.7752-
0.3647263007.7928-
0.3661264007.7525-
0.3675265007.77837.6744
0.3689266007.7618-
0.3703267007.8067-
0.3717268007.7771-
0.3731269007.7936-
0.3744270007.74997.6710
0.3758271007.7629-
0.3772272007.7843-
0.3786273007.7735-
0.3800274007.7662-
0.3814275007.74537.6658
0.3828276007.7417-
0.3842277007.7793-
0.3855278007.7535-
0.3869279007.7695-
0.3883280007.7587.6481
0.3897281007.7391-
0.3911282007.7447-
0.3925283007.7691-
0.3939284007.7555-
0.3953285007.7527.6460
0.3966286007.7272-
0.3980287007.7464-
0.3994288007.7415-
0.4008289007.7616-
0.4022290007.76617.6477
0.4036291007.7352-
0.4050292007.7438-
0.4063293007.7468-
0.4077294007.768-
0.4091295007.75817.6392
0.4105296007.7374-
0.4119297007.7307-
0.4133298007.7292-
0.4147299007.7543-
0.4161300007.74357.6337
0.4174301007.751-
0.4188302007.7264-
0.4202303007.7366-
0.4216304007.7137-
0.4230305007.76257.6239
0.4244306007.7006-
0.4258307007.7571-
0.4271308007.722-
0.4285309007.7209-
0.4299310007.71597.6189
0.4313311007.7058-
0.4327312007.7407-
0.4341313007.7093-
0.4355314007.7172-
0.4369315007.75327.6187
0.4382316007.7254-
0.4396317007.716-
0.4410318007.7231-
0.4424319007.7272-
0.4438320007.72147.6153
0.4452321007.7325-
0.4466322007.7268-
0.4480323007.6801-
0.4493324007.7209-
0.4507325007.69587.6057
0.4521326007.6903-
0.4535327007.7379-
0.4549328007.7245-
0.4563329007.7506-
0.4577330007.70957.6051
0.4590331007.7148-
0.4604332007.7182-
0.4618333007.7307-
0.4632334007.7381-
0.4646335007.72147.6028
0.4660336007.6882-
0.4674337007.6864-
0.4688338007.6718-
0.4701339007.7201-
0.4715340007.71737.6092
0.4729341007.6805-
0.4743342007.7264-
0.4757343007.7013-
0.4771344007.7074-
0.4785345007.70447.6044
0.4798346007.742-
0.4812347007.7104-
0.4826348007.7004-
0.4840349007.7175-
0.4854350007.6877.5947
0.4868351007.7024-
0.4882352007.6666-
0.4896353007.6869-
0.4909354007.7147-
0.4923355007.72817.5804
0.4937356007.6852-
0.4951357007.6735-
0.4965358007.7043-
0.4979359007.6884-
0.4993360007.72337.5851
0.5007361007.6914-
0.5020362007.7083-
0.5034363007.6876-
0.5048364007.6909-
0.5062365007.6797.5862
0.5076366007.6884-
0.5090367007.6697-
0.5104368007.6625-
0.5117369007.6881-
0.5131370007.68597.5844
0.5145371007.6624-
0.5159372007.6932-
0.5173373007.6851-
0.5187374007.6941-
0.5201375007.64737.5810
0.5215376007.6619-
0.5228377007.6789-
0.5242378007.6842-
0.5256379007.6686-
0.5270380007.66777.5784
0.5284381007.7113-
0.5298382007.6863-
0.5312383007.664-
0.5325384007.6928-
0.5339385007.6857.5819
0.5353386007.6507-
0.5367387007.6848-
0.5381388007.6435-
0.5395389007.6421-
0.5409390007.68837.5664
0.5423391007.6907-
0.5436392007.6919-
0.5450393007.6956-
0.5464394007.6592-
0.5478395007.64887.5738
0.5492396007.6918-
0.5506397007.6725-
0.5520398007.6804-
0.5534399007.6598-
0.5547400007.68887.5581
0.5561401007.6732-
0.5575402007.7042-
0.5589403007.6626-
0.5603404007.7271-
0.5617405007.67537.5562
0.5631406007.6521-
0.5644407007.667-
0.5658408007.6823-
0.5672409007.6635-
0.5686410007.66097.5553
0.5700411007.6609-
0.5714412007.6712-
0.5728413007.6687-
0.5742414007.7182-
0.5755415007.63357.5660
0.5769416007.6791-
0.5783417007.6509-
0.5797418007.6497-
0.5811419007.6514-
0.5825420007.62887.5552
0.5839421007.6699-
0.5852422007.6824-
0.5866423007.68-
0.5880424007.661-
0.5894425007.65737.5487
0.5908426007.6702-
0.5922427007.6573-
0.5936428007.6546-
0.5950429007.6424-
0.5963430007.67217.5504
0.5977431007.6713-
0.5991432007.6695-
0.6005433007.6817-
0.6019434007.6484-
0.6033435007.60627.5481
0.6047436007.6397-
0.6061437007.6555-
0.6074438007.6546-
0.6088439007.6781-
0.6102440007.62847.5399
0.6116441007.666-
0.6130442007.6597-
0.6144443007.6651-
0.6158444007.6475-
0.6171445007.65657.5369
0.6185446007.6336-
0.6199447007.6421-
0.6213448007.646-
0.6227449007.6319-
0.6241450007.6647.5368
0.6255451007.6515-
0.6269452007.6525-
0.6282453007.6534-
0.6296454007.655-
0.6310455007.67127.5278
0.6324456007.6342-
0.6338457007.6077-
0.6352458007.6476-
0.6366459007.6412-
0.6379460007.65467.5331
0.6393461007.6378-
0.6407462007.6572-
0.6421463007.6284-
0.6435464007.625-
0.6449465007.65267.5338
0.6463466007.6172-
0.6477467007.6136-
0.6490468007.6428-
0.6504469007.6277-
0.6518470007.69037.5272
0.6532471007.6313-
0.6546472007.6214-
0.6560473007.6044-
0.6574474007.6098-
0.6588475007.64777.5203
0.6601476007.6454-
0.6615477007.6199-
0.6629478007.6119-
0.6643479007.6241-
0.6657480007.64147.5189
0.6671481007.6629-
0.6685482007.6777-
0.6698483007.6217-
0.6712484007.6097-
0.6726485007.64497.5183
0.6740486007.6131-
0.6754487007.622-
0.6768488007.6373-
0.6782489007.6193-
0.6796490007.61197.5209
0.6809491007.6261-
0.6823492007.626-
0.6837493007.6232-
0.6851494007.5951-
0.6865495007.63687.5136
0.6879496007.6641-
0.6893497007.6046-
0.6906498007.5923-
0.6920499007.6119-
0.6934500007.63017.5130
0.6948501007.6288-
0.6962502007.6338-
0.6976503007.6137-
0.6990504007.6473-
0.7004505007.5897.5153
0.7017506007.6076-
0.7031507007.5906-
0.7045508007.6102-
0.7059509007.6463-
0.7073510007.66957.5098
0.7087511007.5947-
0.7101512007.6097-
0.7115513007.6397-
0.7128514007.6072-
0.7142515007.61127.5103
0.7156516007.639-
0.7170517007.6188-
0.7184518007.6198-
0.7198519007.6229-
0.7212520007.63237.5050
0.7225521007.6275-
0.7239522007.6012-
0.7253523007.6187-
0.7267524007.6191-
0.7281525007.62327.5109
0.7295526007.6199-
0.7309527007.5819-
0.7323528007.6474-
0.7336529007.6124-
0.7350530007.6227.5000
0.7364531007.6184-
0.7378532007.5761-
0.7392533007.5943-
0.7406534007.6209-
0.7420535007.60657.5055
0.7434536007.6065-
0.7447537007.6285-
0.7461538007.641-
0.7475539007.633-
0.7489540007.61847.4995
0.7503541007.6198-
0.7517542007.6239-
0.7531543007.6087-
0.7544544007.6112-
0.7558545007.63727.4957
0.7572546007.5938-
0.7586547007.6091-
0.7600548007.622-
0.7614549007.6052-
0.7628550007.57757.4967
0.7642551007.6484-
0.7655552007.5911-
0.7669553007.5966-
0.7683554007.5708-
0.7697555007.59057.4959
0.7711556007.5858-
0.7725557007.6255-
0.7739558007.6169-
0.7752559007.6159-
0.7766560007.5847.4929
0.7780561007.6364-
0.7794562007.558-
0.7808563007.6095-
0.7822564007.6049-
0.7836565007.60797.4934
0.7850566007.584-
0.7863567007.5543-
0.7877568007.5971-
0.7891569007.6395-
0.7905570007.60067.4900
0.7919571007.6199-
0.7933572007.5938-
0.7947573007.602-
0.7961574007.6317-
0.7974575007.61257.4891
0.7988576007.6031-
0.8002577007.6153-
0.8016578007.6141-
0.8030579007.5877-
0.8044580007.60517.4896
0.8058581007.6065-
0.8071582007.5677-
0.8085583007.6035-
0.8099584007.6071-
0.8113585007.62147.4800
0.8127586007.5914-
0.8141587007.6038-
0.8155588007.6206-
0.8169589007.6222-
0.8182590007.61287.4801
0.8196591007.6109-
0.8210592007.5591-
0.8224593007.5794-
0.8238594007.6161-
0.8252595007.56897.4824
0.8266596007.6009-
0.8279597007.6121-
0.8293598007.5872-
0.8307599007.6111-
0.8321600007.53397.4813
0.8335601007.5739-
0.8349602007.5565-
0.8363603007.5637-
0.8377604007.5997-
0.8390605007.5927.4829
0.8404606007.6004-
0.8418607007.6007-
0.8432608007.602-
0.8446609007.5755-
0.8460610007.57717.4795
0.8474611007.6143-
0.8488612007.6088-
0.8501613007.5555-
0.8515614007.5841-
0.8529615007.59797.4762
0.8543616007.6403-
0.8557617007.5607-
0.8571618007.6151-
0.8585619007.6179-
0.8598620007.61527.4767
0.8612621007.598-
0.8626622007.6013-
0.8640623007.5577-
0.8654624007.6108-
0.8668625007.58697.4716
0.8682626007.559-
0.8696627007.5963-
0.8709628007.5884-
0.8723629007.5922-
0.8737630007.59157.4683
0.8751631007.5473-
0.8765632007.5829-
0.8779633007.6122-
0.8793634007.5863-
0.8806635007.57647.4707
0.8820636007.6258-
0.8834637007.5862-
0.8848638007.5977-
0.8862639007.5708-
0.8876640007.60247.4675
0.8890641007.5625-
0.8904642007.5474-
0.8917643007.5978-
0.8931644007.5505-
0.8945645007.57417.4678
0.8959646007.5763-
0.8973647007.5528-
0.8987648007.5787-
0.9001649007.5631-
0.9015650007.5827.4724
0.9028651007.5931-
0.9042652007.5977-
0.9056653007.572-
0.9070654007.6331-
0.9084655007.55037.4660
0.9098656007.5987-
0.9112657007.611-
0.9125658007.563-
0.9139659007.5699-
0.9153660007.59427.4677
0.9167661007.6119-
0.9181662007.5873-
0.9195663007.6036-
0.9209664007.5827-
0.9223665007.61037.4649
0.9236666007.604-
0.9250667007.6129-
0.9264668007.5668-
0.9278669007.5699-
0.9292670007.60457.4626
0.9306671007.5973-
0.9320672007.5951-
0.9333673007.5635-
0.9347674007.5915-
0.9361675007.55777.4619
0.9375676007.5921-
0.9389677007.5888-
0.9403678007.5838-
0.9417679007.5648-
0.9431680007.55377.4616
0.9444681007.5809-
0.9458682007.5882-
0.9472683007.5372-
0.9486684007.584-
0.9500685007.58217.4607
0.9514686007.5663-
0.9528687007.5734-
0.9542688007.6026-
0.9555689007.5928-
0.9569690007.54157.4615
0.9583691007.5785-
0.9597692007.5925-
0.9611693007.5922-
0.9625694007.5559-
0.9639695007.57597.4594
0.9652696007.5753-
0.9666697007.6039-
0.9680698007.5791-
0.9694699007.5905-
0.9708700007.577.4592
0.9722701007.5804-
0.9736702007.5709-
0.9750703007.582-
0.9763704007.6233-
0.9777705007.5567.4582
0.9791706007.6028-
0.9805707007.6149-
0.9819708007.5763-
0.9833709007.5904-
0.9847710007.56077.4590
0.9860711007.5826-
0.9874712007.5704-
0.9888713007.5656-
0.9902714007.5879-
0.9916715007.59437.4583
0.9930716007.5359-
0.9944717007.6152-
0.9958718007.5791-
0.9971719007.5845-
0.9985720007.54877.4580
0.9999721007.6124-

</details>

Framework Versions

  • Python: 3.12.3
  • Sentence Transformers: 5.1.0
  • Transformers: 4.55.4
  • PyTorch: 2.5.1+cu121
  • Accelerate: 1.10.1
  • Datasets: 4.0.0
  • Tokenizers: 0.21.4

Citation

BibTeX

Sentence Transformers
bibtex
@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "https://arxiv.org/abs/1908.10084",
}
CoSENTLoss
bibtex
@online{kexuefm-8847,
    title={CoSENT: A more efficient sentence vector scheme than Sentence-BERT},
    author={Su Jianlin},
    year={2022},
    month={Jan},
    url={https://kexue.fm/archives/8847},
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->