CoolFace
Modelpublic

KhaledReda/all-MiniLM-L6-v82-pair_score

sourceHugging Faceapache-2.0updated 19d agoView on Hugging Face
0likes54downloads
Model Card

all-MiniLM-L6-v82-pair_score

This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2 on the pairs_with_scores_v66 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 Type: Sentence Transformer
  • —Base model: sentence-transformers/all-MiniLM-L6-v2 <!-- at revision 1110a243fdf4706b3f48f1d95db1a4f5529b4d41 -->
  • —Maximum Sequence Length: 256 tokens
  • —Output Dimensionality: 384 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —pairs_with_scores_v66
  • —Language: en
  • —License: apache-2.0

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 = [
    'jupe dry soft femme - dry 500 noir',
    'pastrami pastrami pastrami',
    'ricotta spinach panzerotti mushrooms panzerotti panzerotti ricotta panzerotti spinach panzerotti panzerotti ricotta panzerotti spinach panzerotti',
]
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.1955,  0.0171],
#         [-0.1955,  1.0000,  0.0070],
#         [ 0.0171,  0.0070,  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

pairswithscores_v66
  • —Dataset: pairs_with_scores_v66 at 408b50a
  • —Size: 55,014,339 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: 6.67 tokens</li><li>max: 21 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 46.56 tokens</li><li>max: 256 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.01</li><li>max: 1.0</li></ul> |
  • —Samples: | sentence1 | sentence2 | score | |:-------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------| | <code>piqu belt -</code> | <code>white sneakers jump 5 sneakers sneakers jump sneakers sneakers jump</code> | <code>0.0</code> | | <code>blade</code> | <code>white x black acrylic tawla set acrylic game board acrylic playing chips acrylic dice breakage resistance tawla set printing tawla set antiscratch tawla set waterproof tawla set portable tawla set acrylic tawla set tawla set acrylic tawla set tawla set</code> | <code>0.0</code> | | <code>solo</code> | <code>climbing harness easy 3 blue beginner climbing harness group climbing harness club climbing harness intuitive design harness visible tiein loop harness outdoor harness harness</code> | <code>0.0</code> |
  • —Loss: <code>CoSENTLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "pairwise_cos_sim"
  }

Evaluation Dataset

pairswithscores_v66
  • —Dataset: pairs_with_scores_v66 at 408b50a
  • —Size: 276,454 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: 6.65 tokens</li><li>max: 25 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 44.66 tokens</li><li>max: 256 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.02</li><li>max: 1.0</li></ul> |
  • —Samples: | sentence1 | sentence2 | score | |:-----------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------|:-----------------| | <code>crackers box eid mubarak</code> | <code>romana - pizza meat lovers pizza pizza meat lovers romana romana pizza pizza pizza meat lovers romana romana pizza</code> | <code>0.0</code> | | <code>good france ilou mayonnaise sandwich sauce - 200 gr</code> | <code>mint bucket hat mint hat women hat bucket hat hat bucket hat hat</code> | <code>0.0</code> | | <code>beef bone stok soup</code> | <code>oven mitten mitten oven mitten stove mitten mitten oven mitten stove mitten</code> | <code>0.0</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.87743771000.8228-
0.87763772000.4753-
0.87793773000.448-
0.87813774000.7374-
0.87833775000.5178-
0.87853776000.6454-
0.87883777000.3006-
0.87903778000.3742-
0.87923779000.4484-
0.87953780000.5975-
0.87973781000.4562-
0.87993782000.8615-
0.88023783000.456-
0.88043784000.6364-
0.88063785000.5395-
0.88093786000.4403-
0.88113787000.488-
0.88133788000.7056-
0.88163789000.6037-
0.88183790000.4867-
0.88203791000.6573-
0.88233792000.4785-
0.88253793000.4318-
0.88273794000.7051-
0.88303795000.6398-
0.88323796000.6794-
0.88343797000.4193-
0.88373798000.509-
0.88393799000.1704-
0.88413800000.6385-
0.88443801000.4294-
0.88463802000.5308-
0.88483803000.7605-
0.88513804000.2874-
0.88533805000.7396-
0.88553806000.5158-
0.88583807000.4002-
0.88603808000.4971-
0.88623809000.4748-
0.88653810000.6869-
0.88673811000.5027-
0.88693812000.7624-
0.88723813000.6324-
0.88743814000.6612-
0.88763815000.3387-
0.88793816000.7287-
0.88813817000.6816-
0.88833818000.595-
0.88863819000.4171-
0.88883820000.7484-
0.88903821000.8825-
0.88933822000.6297-
0.88953823000.6812-
0.88973824000.6184-
0.88993825000.7474-
0.89023826000.592-
0.89043827000.5952-
0.89063828000.483-
0.89093829000.5716-
0.89113830000.6266-
0.89133831000.4727-
0.89163832000.4923-
0.89183833000.4098-
0.89203834000.4673-
0.89233835000.4711-
0.89253836000.639-
0.89273837000.483-
0.89303838000.4154-
0.89323839000.3817-
0.89343840000.7604-
0.89373841000.4499-
0.89393842000.5768-
0.89413843000.4261-
0.89443844000.3208-
0.89463845000.6611-
0.89483846000.7067-
0.89513847000.6588-
0.89533848000.4715-
0.89553849000.6741-
0.89583850000.5522-
0.89603851000.5437-
0.89623852000.7599-
0.89653853000.3223-
0.89673854000.2705-
0.89693855000.8656-
0.89723856000.2889-
0.89743857000.301-
0.89763858000.3845-
0.89793859000.6989-
0.89813860000.649-
0.89833861000.6816-
0.89863862000.5368-
0.89883863000.5258-
0.89903864000.8942-
0.89933865000.4466-
0.89953866000.4626-
0.89973867000.3674-
0.90003868000.3972-
0.90023869000.5314-
0.90043870000.4395-
0.90073871000.7384-
0.90093872000.7386-
0.90113873000.3846-
0.90133874000.5222-
0.90163875000.494-
0.90183876000.6157-
0.90203877000.5595-
0.90233878000.4771-
0.90253879000.5407-
0.90273880000.4756-
0.90303881000.5035-
0.90323882000.761-
0.90343883000.7049-
0.90373884000.3754-
0.90393885000.436-
0.90413886000.6573-
0.90443887000.7622-
0.90463888000.6078-
0.90483889000.4591-
0.90513890000.2952-
0.90533891000.5796-
0.90553892000.8245-
0.90583893000.4374-
0.90603894000.5207-
0.90623895000.5439-
0.90653896000.7844-
0.90673897000.7184-
0.90693898000.6166-
0.90723899000.6533-
0.90743900000.4537-
0.90763901000.6072-
0.90793902000.555-
0.90813903000.6889-
0.90833904000.6428-
0.90863905000.6998-
0.90883906000.65-
0.90903907000.538-
0.90933908000.4264-
0.90953909000.3686-
0.90973910000.4314-
0.91003911000.4392-
0.91023912000.7683-
0.91043913000.6959-
0.91073914000.3922-
0.91093915000.2392-
0.91113916000.4767-
0.91143917000.7225-
0.91163918000.6432-
0.91183919000.7269-
0.91213920000.8267-
0.91233921000.3969-
0.91253922000.4307-
0.91283923000.6491-
0.91303924000.6159-
0.91323925000.2706-
0.91343926000.7364-
0.91373927000.6714-
0.91393928000.4214-
0.91413929000.4105-
0.91443930000.4472-
0.91463931000.4595-
0.91483932000.5995-
0.91513933000.7416-
0.91533934000.426-
0.91553935000.9978-
0.91583936000.9414-
0.91603937000.4642-
0.91623938000.4974-
0.91653939000.3704-
0.91673940000.4958-
0.91693941000.3589-
0.91723942000.3444-
0.91743943000.7675-
0.91763944000.4758-
0.91793945000.6563-
0.91813946000.8285-
0.91833947000.4163-
0.91863948000.3538-
0.91883949000.5246-
0.91903950000.7103-
0.91933951000.7639-
0.91953952000.6245-
0.91973953000.7683-
0.92003954000.5116-
0.92023955000.2613-
0.92043956000.4709-
0.92073957000.5722-
0.92093958000.5951-
0.92113959000.6508-
0.92143960000.6274-
0.92163961000.6647-
0.92183962000.5148-
0.92213963000.6891-
0.92233964000.6209-
0.92253965000.5997-
0.92283966000.4801-
0.92303967000.5293-
0.92323968000.6937-
0.92353969000.4032-
0.92373970000.6126-
0.92393971000.4899-
0.92423972000.7244-
0.92443973000.6326-
0.92463974000.3763-
0.92483975000.3513-
0.92513976000.3962-
0.92533977000.8995-
0.92553978000.6549-
0.92583979000.4811-
0.92603980000.4395-
0.92623981000.5922-
0.92653982000.726-
0.92673983000.4093-
0.92693984000.615-
0.92723985000.4034-
0.92743986000.5934-
0.92763987000.5606-
0.92793988000.3263-
0.92813989000.7172-
0.92833990000.7893-
0.92863991000.6156-
0.92883992000.7152-
0.92903993000.3813-
0.92933994000.3901-
0.92953995000.6371-
0.92973996000.6982-
0.93003997000.6316-
0.93023998000.5633-
0.93043999000.5489-
0.93074000000.3830.5135
0.93094001000.4798-
0.93114002000.4807-
0.93144003000.3796-
0.93164004000.6959-
0.93184005000.6579-
0.93214006000.4543-
0.93234007000.48-
0.93254008000.616-
0.93284009000.818-
0.93304010000.2747-
0.93324011000.3347-
0.93354012000.8078-
0.93374013000.4013-
0.93394014000.6152-
0.93424015000.4347-
0.93444016000.4976-
0.93464017000.6882-
0.93494018000.4896-
0.93514019000.7423-
0.93534020000.592-
0.93564021000.441-
0.93584022000.6611-
0.93604023000.5756-
0.93624024000.3538-
0.93654025000.5888-
0.93674026000.5051-
0.93694027000.6206-
0.93724028000.4562-
0.93744029000.5712-
0.93764030000.4565-
0.93794031000.4357-
0.93814032000.5399-
0.93834033000.7435-
0.93864034000.3272-
0.93884035000.868-
0.93904036000.4821-
0.93934037000.7091-
0.93954038000.3434-
0.93974039000.544-
0.94004040000.5484-
0.94024041000.3502-
0.94044042000.6372-
0.94074043000.4861-
0.94094044000.6416-
0.94114045000.623-
0.94144046000.6144-
0.94164047000.6614-
0.94184048000.4927-
0.94214049000.7293-
0.94234050000.4793-
0.94254051000.3851-
0.94284052000.2645-
0.94304053000.6439-
0.94324054000.4375-
0.94354055000.597-
0.94374056000.5925-
0.94394057000.2914-
0.94424058000.3872-
0.94444059000.628-
0.94464060000.453-
0.94494061000.4781-
0.94514062000.5762-
0.94534063000.5714-
0.94564064000.4592-
0.94584065000.448-
0.94604066000.5215-
0.94634067000.6561-
0.94654068000.6236-
0.94674069000.5279-
0.94704070000.4916-
0.94724071000.5098-
0.94744072000.6663-
0.94774073000.5204-
0.94794074000.5816-
0.94814075000.9367-
0.94834076000.6641-
0.94864077000.4851-
0.94884078000.6385-
0.94904079000.4849-
0.94934080000.3671-
0.94954081000.588-
0.94974082000.6873-
0.95004083000.3978-
0.95024084000.6828-
0.95044085000.4542-
0.95074086000.378-
0.95094087000.5383-
0.95114088000.5439-
0.95144089000.7296-
0.95164090000.5981-
0.95184091000.6369-
0.95214092000.6636-
0.95234093000.5311-
0.95254094000.6119-
0.95284095000.4854-
0.95304096000.6694-
0.95324097000.7032-
0.95354098000.4525-
0.95374099000.4585-
0.95394100000.3537-
0.95424101000.5425-
0.95444102000.5096-
0.95464103000.566-
0.95494104000.6005-
0.95514105000.3909-
0.95534106000.6961-
0.95564107000.5936-
0.95584108000.8308-
0.95604109000.7371-
0.95634110000.3298-
0.95654111000.4226-
0.95674112000.5009-
0.95704113000.4229-
0.95724114000.9834-
0.95744115000.3231-
0.95774116000.6333-
0.95794117000.6367-
0.95814118000.5979-
0.95844119000.3648-
0.95864120000.4454-
0.95884121000.4954-
0.95914122000.2817-
0.95934123000.6391-
0.95954124000.5604-
0.95974125000.5778-
0.96004126000.6871-
0.96024127000.9481-
0.96044128000.4-
0.96074129000.3143-
0.96094130000.6584-
0.96114131000.4846-
0.96144132000.5946-
0.96164133000.4479-
0.96184134000.5276-
0.96214135000.3645-
0.96234136000.642-
0.96254137000.4733-
0.96284138000.3985-
0.96304139000.4297-
0.96324140000.7243-
0.96354141000.5832-
0.96374142000.6388-
0.96394143000.7865-
0.96424144000.7296-
0.96444145000.685-
0.96464146000.3503-
0.96494147000.3843-
0.96514148000.4523-
0.96534149000.6861-
0.96564150000.6599-
0.96584151000.7082-
0.96604152000.4906-
0.96634153000.5244-
0.96654154000.3348-
0.96674155000.3688-
0.96704156000.6577-
0.96724157000.7494-
0.96744158000.3354-
0.96774159000.3825-
0.96794160000.5764-
0.96814161000.6068-
0.96844162000.6882-
0.96864163000.6113-
0.96884164000.4707-
0.96914165000.6538-
0.96934166000.4443-
0.96954167000.4843-
0.96984168000.6167-
0.97004169000.4868-
0.97024170000.4102-
0.97054171000.4711-
0.97074172000.3247-
0.97094173000.4275-
0.97114174000.582-
0.97144175000.2713-
0.97164176000.783-
0.97184177000.7774-
0.97214178000.3721-
0.97234179000.4973-
0.97254180000.8411-
0.97284181000.4046-
0.97304182000.4052-
0.97324183000.4746-
0.97354184000.5832-
0.97374185000.4416-
0.97394186000.5787-
0.97424187000.4466-
0.97444188000.2802-
0.97464189000.5967-
0.97494190000.487-
0.97514191000.4598-
0.97534192000.2168-
0.97564193000.6222-
0.97584194000.6868-
0.97604195000.4405-
0.97634196000.3568-
0.97654197000.6097-
0.97674198000.5538-
0.97704199000.579-
0.97724200000.2911-
0.97744201000.46-
0.97774202000.4625-
0.97794203000.4325-
0.97814204000.3619-
0.97844205000.5093-
0.97864206000.69-
0.97884207000.455-
0.97914208000.5571-
0.97934209000.602-
0.97954210000.4377-
0.97984211000.4387-
0.98004212000.3258-
0.98024213000.4117-
0.98054214000.4693-
0.98074215000.6-
0.98094216000.5227-
0.98124217000.4066-
0.98144218000.3969-
0.98164219000.3324-
0.98194220000.3962-
0.98214221000.5911-
0.98234222000.5177-
0.98264223000.5165-
0.98284224000.6326-
0.98304225000.4568-
0.98324226000.3953-
0.98354227000.3668-
0.98374228000.3823-
0.98394229000.5832-
0.98424230000.4664-
0.98444231000.5498-
0.98464232000.7509-
0.98494233000.7746-
0.98514234000.7761-
0.98534235000.4898-
0.98564236000.4759-
0.98584237000.5844-
0.98604238000.6257-
0.98634239000.377-
0.98654240000.8176-
0.98674241000.4973-
0.98704242000.5534-
0.98724243000.6498-
0.98744244000.1818-
0.98774245000.3865-
0.98794246000.6435-
0.98814247000.4777-
0.98844248000.531-
0.98864249000.4877-
0.98884250000.534-
0.98914251000.64-
0.98934252000.4985-
0.98954253000.7725-
0.98984254000.4574-
0.99004255000.4788-
0.99024256000.3573-
0.99054257000.6843-
0.99074258000.6033-
0.99094259000.3263-
0.99124260000.7542-
0.99144261000.6818-
0.99164262000.4283-
0.99194263000.6007-
0.99214264000.3186-
0.99234265000.4427-
0.99264266000.4144-
0.99284267000.6011-
0.99304268000.6969-
0.99334269000.5045-
0.99354270000.489-
0.99374271000.4614-
0.99404272000.4189-
0.99424273000.3524-
0.99444274000.4475-
0.99464275000.4901-
0.99494276000.6397-
0.99514277000.4337-
0.99534278000.4758-
0.99564279000.5044-
0.99584280000.2651-
0.99604281000.7529-
0.99634282000.3475-
0.99654283000.4441-
0.99674284000.4093-
0.99704285000.5875-
0.99724286000.352-
0.99744287000.4624-
0.99774288000.7066-
0.99794289000.6167-
0.99814290000.4447-
0.99844291000.5141-
0.99864292000.5907-
0.99884293000.2852-
0.99914294000.4066-
0.99934295000.8943-
0.99954296000.4167-
0.99984297000.5968-
1.04298000.6068-

</details>

Framework Versions

  • —Python: 3.12.3
  • —Sentence Transformers: 5.1.0
  • —Transformers: 4.55.4
  • —PyTorch: 2.6.0+cu124
  • —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. -->