CoolFace
Modelpublic

youssefkhalil320/all-MiniLM-L6-v2-five-scores

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes16downloads
Model Card

all-MiniLM-L6-v2-five_scores

This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2. 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 ea78891063587eb050ed4166b20062eaf978037c -->
  • —Maximum Sequence Length: 256 tokens
  • —Output Dimensionality: 384 tokens
  • —Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown -->
  • —Language: en
  • —License: apache-2.0

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: 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 = [
    'foam beanbag',
    'bag',
    'cycling shorts',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

<!--

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. -->

Evaluation

Metrics

Semantic Similarity
MetricValue
pearson_cosine0.1749
spearman_cosine0.0999
pearson_manhattan0.1751
spearman_manhattan0.1013
pearson_euclidean0.1748
spearman_euclidean0.0999
pearson_dot0.1749
spearman_dot0.0999
pearson_max0.1751
spearman_max0.1013

<!--

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 Hyperparameters

Non-Default Hyperparameters
  • —eval_strategy: steps
  • —per_device_train_batch_size: 32
  • —per_device_eval_batch_size: 32
  • —learning_rate: 2e-05
  • —num_train_epochs: 4
  • —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: 32
  • —per_device_eval_batch_size: 32
  • —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: 4
  • —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: False
  • —hub_always_push: False
  • —gradient_checkpointing: False
  • —gradient_checkpointing_kwargs: None
  • —include_inputs_for_metrics: False
  • —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
  • —dispatch_batches: None
  • —split_batches: 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
  • —eval_use_gather_object: False
  • —batch_sampler: batch_sampler
  • —multi_dataset_batch_sampler: proportional

</details>

Training Logs

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

EpochStepTraining Losslosssts-dev_spearman_cosine
00--0.0999
0.004210012.0647--
0.008420011.7727--
0.012730011.1315--
0.016940010.8852--
0.02115009.916810.4208-
0.02536009.4099--
0.02967008.5361--
0.03388007.7286--
0.03809007.0852--
0.042210006.36466.6350-
0.046411006.1673--
0.050712005.5683--
0.054913005.4462--
0.059114005.303--
0.063315005.19355.2429-
0.067516005.1856--
0.071817005.0136--
0.076018005.0667--
0.080219004.9982--
0.084420005.04295.0099-
0.088721004.8719--
0.092922004.8579--
0.097123004.9282--
0.101324004.9848--
0.105525004.89744.9078-
0.109826004.9103--
0.114027004.7459--
0.118228004.8084--
0.122429004.8221--
0.126730004.76224.8170-
0.130931004.7004--
0.135132004.6912--
0.139333004.6595--
0.143534004.7322--
0.147835004.75754.7199-
0.152036004.6443--
0.156237004.6638--
0.160438004.5958--
0.164639004.6285--
0.168940004.63474.6554-
0.173141004.6558--
0.177342004.6712--
0.181543004.6126--
0.185844004.6219--
0.190045004.61014.6206-
0.194246004.7682--
0.198447004.5385--
0.202648004.6744--
0.206949004.5383--
0.211150004.60954.6262-
0.215351004.6807--
0.219552004.4866--
0.223853004.5353--
0.228054004.5285--
0.232255004.54164.5914-
0.236456004.623--
0.240657004.5337--
0.244958004.5726--
0.249159004.5467--
0.253360004.39864.6011-
0.257561004.559--
0.261762004.6066--
0.266063004.4445--
0.270264004.4518--
0.274465004.47614.5093-
0.278666004.3362--
0.282967004.4936--
0.287168004.2397--
0.291369004.5243--
0.295570004.4964.3969-
0.299771004.2558--
0.304072004.4691--
0.308273004.4819--
0.312474004.3785--
0.316675004.42144.4199-
0.320976004.4935--
0.325177004.4238--
0.329378004.5361--
0.333579004.4284--
0.337780004.39184.3976-
0.342081004.4622--
0.346282004.4128--
0.350483004.1565--
0.354684004.3241--
0.358885004.27644.4261-
0.363186004.2101--
0.367387004.4044--
0.371588004.254--
0.375789004.362--
0.380090004.34244.4409-
0.384291004.3383--
0.388492004.4713--
0.392693004.2773--
0.396894004.2842--
0.401195004.33014.3454-
0.405396004.3224--
0.409597004.3878--
0.413798004.3614--
0.418099004.3423--
0.4222100004.35764.3549-
0.4264101004.1451--
0.4306102004.3326--
0.4348103004.2761--
0.4391104004.2421--
0.4433105004.2624.3493-
0.4475106004.1227--
0.4517107004.2365--
0.4559108004.3528--
0.4602109004.077--
0.4644110004.08784.3349-
0.4686111004.4246--
0.4728112004.1019--
0.4771113004.2565--
0.4813114004.3177--
0.4855115004.12834.4236-
0.4897116004.2232--
0.4939117004.2347--
0.4982118004.082--
0.5024119004.2026--
0.5066120004.26874.2691-
0.5108121004.302--
0.5151122004.0474--
0.5193123004.1286--
0.5235124004.3888--
0.5277125004.23394.2414-
0.5319126004.1976--
0.5362127004.1851--
0.5404128004.3969--
0.5446129004.5229--
0.5488130004.22424.1389-
0.5530131004.2804--
0.5573132004.2097--
0.5615133003.9226--
0.5657134004.2274--
0.5699135004.03094.2421-
0.5742136004.3429--
0.5784137004.0352--
0.5826138004.2926--
0.5868139004.3063--
0.5910140004.31724.2267-
0.5953141004.0057--
0.5995142004.2081--
0.6037143004.2408--
0.6079144004.1066--
0.6122145004.19974.1798-
0.6164146004.2364--
0.6206147004.1135--
0.6248148004.0561--
0.6290149004.0347--
0.6333150004.19794.2409-
0.6375151004.0132--
0.6417152004.1131--
0.6459153003.8049--
0.6501154003.9468--
0.6544155004.174.1938-
0.6586156004.2369--
0.6628157004.159--
0.6670158004.1172--
0.6713159004.01--
0.6755160004.02044.2796-
0.6797161004.0013--
0.6839162004.0174--
0.6881163004.0616--
0.6924164003.9944--
0.6966165004.054.2132-
0.7008166004.0769--
0.7050167004.1289--
0.7092168004.0941--
0.7135169004.2556--
0.7177170004.30754.1288-
0.7219171004.0751--
0.7261172004.0711--
0.7304173003.9483--
0.7346174004.3186--
0.7388175003.9324.1148-
0.7430176003.8774--
0.7472177004.2312--
0.7515178003.9327--
0.7557179004.2264--
0.7599180003.97234.1061-
0.7641181004.1206--
0.7684182004.1744--
0.7726183003.89--
0.7768184004.1414--
0.7810185004.02864.1405-
0.7852186003.885--
0.7895187004.3785--
0.7937188003.9304--
0.7979189004.0831--
0.8021190004.16984.0998-
0.8063191003.9876--
0.8106192003.9194--
0.8148193003.9222--
0.8190194004.1863--
0.8232195004.03154.0778-
0.8275196003.9286--
0.8317197003.9605--
0.8359198004.1991--
0.8401199004.0311--
0.8443200003.78694.1749-
0.8486201003.9232--
0.8528202004.034--
0.8570203004.2625--
0.8612204003.983--
0.8655205004.21544.1057-
0.8697206004.1696--
0.8739207003.8989--
0.8781208003.9004--
0.8823209004.2134--
0.8866210003.97894.0880-
0.8908211004.2438--
0.8950212003.9271--
0.8992213003.9693--
0.9034214004.0197--
0.9077215004.18024.0145-
0.9119216003.8818--
0.9161217004.1069--
0.9203218003.7999--
0.9246219003.8949--
0.9288220003.98934.1313-
0.9330221004.0918--
0.9372222004.0451--
0.9414223003.9312--
0.9457224004.117--
0.9499225003.8834.1090-
0.9541226003.6942--
0.9583227004.1196--
0.9626228003.9292--
0.9668229003.9081--
0.9710230003.81694.1232-
0.9752231003.8342--
0.9794232004.078--
0.9837233004.0002--
0.9879234003.9373--
0.9921235003.83444.1565-
0.9963236004.2827--
1.0005237004.0298--
1.0048238003.9967--
1.0090239003.7508--
1.0132240003.89194.0790-
1.0174241004.0181--
1.0217242003.7934--
1.0259243003.8986--
1.0301244003.9275--
1.0343245003.69114.1602-
1.0385246003.5855--
1.0428247003.7875--
1.0470248003.7999--
1.0512249003.7718--
1.0554250003.83624.0381-
1.0597251003.8076--
1.0639252003.8875--
1.0681253003.9675--
1.0723254003.8451--
1.0765255003.43464.1996-
1.0808256004.0584--
1.0850257003.602--
1.0892258003.673--
1.0934259003.976--
1.0976260003.87683.9983-
1.1019261003.7575--
1.1061262003.8101--
1.1103263004.104--
1.1145264003.7139--
1.1188265004.03914.0018-
1.1230266003.8449--
1.1272267003.7146--
1.1314268004.0576--
1.1356269003.8831--
1.1399270003.81614.0019-
1.1441271003.9283--
1.1483272003.8637--
1.1525273003.701--
1.1568274003.9364--
1.1610275003.73053.9959-
1.1652276003.8542--
1.1694277003.7249--
1.1736278003.7223--
1.1779279003.9777--
1.1821280003.80364.0547-
1.1863281003.8635--
1.1905282003.8523--
1.1947283003.6757--
1.1990284003.7519--
1.2032285003.9834.0389-
1.2074286003.8288--
1.2116287003.8074--
1.2159288003.714--
1.2201289003.6594--
1.2243290003.94524.0274-
1.2285291003.9906--
1.2327292003.9826--
1.2370293003.8635--
1.2412294003.9888--
1.2454295003.72484.0287-
1.2496296003.7484--
1.2539297003.9694--
1.2581298004.059--
1.2623299003.9358--
1.2665300003.85753.9484-
1.2707301003.8382--
1.2750302003.73--
1.2792303004.0439--
1.2834304003.8426--
1.2876305003.70624.0188-
1.2918306003.8926--
1.2961307004.0276--
1.3003308003.6359--
1.3045309004.0006--
1.3087310003.84854.0019-
1.3130311003.7892--
1.3172312003.5783--
1.3214313004.0018--
1.3256314003.9542--
1.3298315003.77393.9875-
1.3341316003.8806--
1.3383317004.176--
1.3425318003.826--
1.3467319003.8514--
1.3510320003.82613.9716-
1.3552321003.8825--
1.3594322003.6388--
1.3636323003.7851--
1.3678324003.5687--
1.3721325003.54083.9371-
1.3763326003.6995--
1.3805327003.882--
1.3847328003.8703--
1.3889329003.806--
1.3932330003.78263.8901-
1.3974331003.7853--
1.4016332003.5745--
1.4058333003.5884--
1.4101334003.8678--
1.4143335004.09173.9332-
1.4185336003.7125--
1.4227337003.7298--
1.4269338003.9447--
1.4312339003.7176--
1.4354340003.67654.0302-
1.4396341003.9847--
1.4438342003.7364--
1.4481343003.8246--
1.4523344003.575--
1.4565345003.8143.9519-
1.4607346003.8708--
1.4649347003.7277--
1.4692348003.7758--
1.4734349003.6727--
1.4776350003.7733.9528-
1.4818351004.0004--
1.4860352003.8468--
1.4903353003.6814--
1.4945354003.8993--
1.4987355003.88413.9402-
1.5029356003.8272--
1.5072357003.584--
1.5114358003.8424--
1.5156359003.7274--
1.5198360003.96713.9035-
1.5240361003.7078--
1.5283362003.7524--
1.5325363003.6992--
1.5367364003.8152--
1.5409365003.90073.9785-
1.5452366003.6302--
1.5494367003.6208--
1.5536368003.6039--
1.5578369003.7039--
1.5620370003.70693.9215-
1.5663371003.7246--
1.5705372003.7269--
1.5747373003.6822--
1.5789374003.7083--
1.5831375003.70953.9668-
1.5874376003.4556--
1.5916377004.0595--
1.5958378003.6583--
1.6000379003.5662--
1.6043380003.63653.9035-
1.6085381003.6313--
1.6127382003.8767--
1.6169383003.9992--
1.6211384003.554--
1.6254385003.68623.8900-
1.6296386003.7638--
1.6338387003.6716--
1.6380388003.8667--
1.6423389003.5304--
1.6465390003.9553.8894-
1.6507391003.4049--
1.6549392003.663--
1.6591393004.0267--
1.6634394003.8868--
1.6676395003.89843.9277-
1.6718396003.575--
1.6760397003.6966--
1.6802398004.0533--
1.6845399003.6106--
1.6887400003.64683.9425-
1.6929401003.7145--
1.6971402003.6602--
1.7014403003.5531--
1.7056404003.7857--
1.7098405003.55863.8484-
1.7140406003.7711--
1.7182407003.7135--
1.7225408003.8785--
1.7267409003.5577--
1.7309410003.57833.9013-
1.7351411003.7346--
1.7394412003.5098--
1.7436413004.0181--
1.7478414003.8404--
1.7520415003.63273.8684-
1.7562416003.7503--
1.7605417003.45--
1.7647418003.9138--
1.7689419003.6061--
1.7731420003.66033.7956-
1.7773421003.6722--
1.7816422003.678--
1.7858423003.5802--
1.7900424003.8253--
1.7942425003.78153.8192-
1.7985426003.7021--
1.8027427003.4263--
1.8069428003.8781--
1.8111429003.5784--
1.8153430003.94053.8100-
1.8196431003.5516--
1.8238432003.8322--
1.8280433003.7948--
1.8322434003.6175--
1.8365435003.52563.8552-
1.8407436003.8199--
1.8449437003.6168--
1.8491438003.5648--
1.8533439003.5584--
1.8576440003.76233.8202-
1.8618441003.7884--
1.8660442003.6241--
1.8702443003.4533--
1.8744444003.575--
1.8787445003.69813.9080-
1.8829446003.6384--
1.8871447003.8267--
1.8913448003.5696--
1.8956449003.5189--
1.8998450003.75283.8759-
1.9040451003.7572--
1.9082452003.7283--
1.9124453003.6185--
1.9167454003.5348--
1.9209455003.53663.9713-
1.9251456003.8358--
1.9293457003.7831--
1.9336458003.7524--
1.9378459003.4533--
1.9420460003.46223.8907-
1.9462461003.7096--
1.9504462003.5447--
1.9547463003.601--
1.9589464003.6369--
1.9631465003.86193.8416-
1.9673466003.6623--
1.9715467003.8225--
1.9758468003.9126--
1.9800469003.8429--
1.9842470003.66073.8103-
1.9884471003.5708--
1.9927472003.6346--
1.9969473003.4577--
2.0011474003.4326--
2.0053475003.54313.8311-
2.0095476003.4852--
2.0138477003.4037--
2.0180478003.5685--
2.0222479003.2866--
2.0264480003.39433.9447-
2.0306481003.3675--
2.0349482003.7605--
2.0391483004.0646--
2.0433484003.4634--
2.0475485003.50413.8682-
2.0518486003.6862--
2.0560487003.5486--
2.0602488003.6148--
2.0644489003.3776--
2.0686490003.45143.8841-
2.0729491003.4575--
2.0771492003.4984--
2.0813493003.3978--
2.0855494003.644--
2.0898495003.64123.8866-
2.0940496003.322--
2.0982497003.7186--
2.1024498003.3604--
2.1066499003.7262--
2.1109500003.5413.8573-
2.1151501003.4695--
2.1193502003.3366--
2.1235503003.6556--
2.1277504003.4016--
2.1320505003.67333.9452-
2.1362506003.7553--
2.1404507003.6238--
2.1446508003.4566--
2.1489509003.7676--
2.1531510003.44823.8958-
2.1573511003.409--
2.1615512003.9074--
2.1657513003.613--
2.1700514003.4835--
2.1742515003.54943.7883-
2.1784516003.5205--
2.1826517003.4232--
2.1869518003.6539--
2.1911519003.6586--
2.1953520003.33213.8934-
2.1995521003.7712--
2.2037522003.4973--
2.2080523003.5404--
2.2122524003.4815--
2.2164525003.55863.8741-
2.2206526003.5463--
2.2248527003.537--
2.2291528003.5299--
2.2333529003.5967--
2.2375530003.51563.8977-
2.2417531003.6079--
2.2460532003.4492--
2.2502533003.4611--
2.2544534003.1611--
2.2586535003.65543.8444-
2.2628536003.473--
2.2671537003.8362--
2.2713538003.8243--
2.2755539003.2957--
2.2797540003.42273.8651-
2.2840541003.6771--
2.2882542003.5287--
2.2924543003.6393--
2.2966544003.6447--
2.3008545003.17143.8695-
2.3051546003.5703--
2.3093547003.6058--
2.3135548003.3485--
2.3177549003.4143--
2.3219550003.4613.8285-
2.3262551003.7676--
2.3304552003.7192--
2.3346553003.3955--
2.3388554003.5533--
2.3431555003.73353.7877-
2.3473556003.3743--
2.3515557003.5598--
2.3557558003.5939--
2.3599559003.6577--
2.3642560003.4073.7897-
2.3684561003.5838--
2.3726562003.5182--
2.3768563003.7881--
2.3811564003.772--
2.3853565003.57793.8028-
2.3895566003.4765--
2.3937567003.5122--
2.3979568003.8646--
2.4022569003.4861--
2.4064570003.44863.8668-
2.4106571003.4319--
2.4148572003.5801--
2.4190573003.4412--
2.4233574003.4917--
2.4275575003.89943.7693-
2.4317576003.4321--
2.4359577003.4605--
2.4402578003.5348--
2.4444579003.6156--
2.4486580003.67263.7413-
2.4528581003.4447--
2.4570582003.5318--
2.4613583003.4284--
2.4655584003.3426--
2.4697585003.55493.8398-
2.4739586003.7305--
2.4782587003.4777--
2.4824588003.625--
2.4866589003.8084--
2.4908590003.67723.7805-
2.4950591003.4634--
2.4993592003.5926--
2.5035593003.303--
2.5077594003.5749--
2.5119595003.78523.8255-
2.5161596003.6317--
2.5204597003.3228--
2.5246598003.4541--
2.5288599003.5879--
2.5330600003.64033.7744-
2.5373601003.5289--
2.5415602003.4--
2.5457603003.4026--
2.5499604003.6348--
2.5541605003.39633.7309-
2.5584606003.2838--
2.5626607003.8537--
2.5668608003.3861--
2.5710609003.5289--
2.5753610003.76113.7404-
2.5795611003.3036--
2.5837612003.4874--
2.5879613003.3885--
2.5921614003.6008--
2.5964615003.71753.7685-
2.6006616003.589--
2.6048617003.6725--
2.6090618003.3397--
2.6132619003.562--
2.6175620003.54213.7556-
2.6217621003.462--
2.6259622003.329--
2.6301623003.4274--
2.6344624003.4622--
2.6386625003.29243.8314-
2.6428626003.5465--
2.6470627003.3618--
2.6512628003.2383--
2.6555629003.3542--
2.6597630003.52093.7942-
2.6639631003.4416--
2.6681632003.5881--
2.6724633003.7347--
2.6766634003.815--
2.6808635003.46673.7791-
2.6850636003.342--
2.6892637003.6695--
2.6935638003.4863--
2.6977639003.741--
2.7019640003.62673.8010-
2.7061641003.2939--
2.7103642003.4422--
2.7146643003.7278--
2.7188644003.8691--
2.7230645003.6113.7172-
2.7272646003.5474--
2.7315647003.5087--
2.7357648003.4489--
2.7399649003.6549--
2.7441650003.39563.7356-
2.7483651003.5116--
2.7526652003.1777--
2.7568653003.7644--
2.7610654003.6376--
2.7652655003.61533.7486-
2.7695656003.2564--
2.7737657003.5547--
2.7779658003.3283--
2.7821659003.4592--
2.7863660003.75053.7252-
2.7906661003.3761--
2.7948662003.6223--
2.7990663003.4702--
2.8032664003.8666--
2.8074665003.29273.7299-
2.8117666003.5424--
2.8159667003.5487--
2.8201668003.3343--
2.8243669003.3005--
2.8286670003.50363.7752-
2.8328671003.4419--
2.8370672003.3805--
2.8412673003.3591--
2.8454674003.738--
2.8497675003.2683.7657-
2.8539676003.4224--
2.8581677003.5734--
2.8623678003.3804--
2.8666679003.594--
2.8708680003.65263.7796-
2.8750681003.7921--
2.8792682003.352--
2.8834683003.7122--
2.8877684003.5739--
2.8919685003.39123.7359-
2.8961686003.8863--
2.9003687003.6851--
2.9045688003.1867--
2.9088689003.2456--
2.9130690003.4473.7272-
2.9172691003.3142--
2.9214692003.8019--
2.9257693003.6041--
2.9299694003.6291--
2.9341695003.54123.7041-
2.9383696003.5873--
2.9425697003.6207--
2.9468698003.5858--
2.9510699003.5341--
2.9552700003.66443.7406-
2.9594701003.4947--
2.9637702003.5763--
2.9679703003.6131--
2.9721704003.509--
2.9763705003.43523.7116-
2.9805706003.3115--
2.9848707003.2393--
2.9890708003.3738--
2.9932709003.424--
2.9974710003.72523.7152-
3.0016711003.6013--
3.0059712003.407--
3.0101713003.2695--
3.0143714003.3632--
3.0185715002.953.7985-
3.0228716003.164--
3.0270717003.4829--
3.0312718003.7491--
3.0354719003.7257--
3.0396720003.7013.7497-
3.0439721003.105--
3.0481722003.43--
3.0523723003.3014--
3.0565724003.2578--
3.0608725003.49713.7966-
3.0650726003.4542--
3.0692727003.4634--
3.0734728003.6576--
3.0776729003.38--
3.0819730003.46153.7337-
3.0861731003.6838--
3.0903732003.2183--
3.0945733003.3281--
3.0987734003.2304--
3.1030735003.33143.7586-
3.1072736003.0549--
3.1114737003.4578--
3.1156738003.3797--
3.1199739003.4435--
3.1241740003.15223.7355-
3.1283741003.3775--
3.1325742003.5751--
3.1367743003.5017--
3.1410744003.3353--
3.1452745003.57463.7411-
3.1494746003.7003--
3.1536747003.0499--
3.1579748003.3735--
3.1621749003.5844--
3.1663750003.35513.8240-
3.1705751003.262--
3.1747752003.4301--
3.1790753003.464--
3.1832754003.4751--
3.1874755003.53513.7465-
3.1916756003.2933--
3.1958757004.0448--
3.2001758003.4882--
3.2043759003.615--
3.2085760003.14923.7142-
3.2127761003.0458--
3.2170762003.6002--
3.2212763003.3197--
3.2254764003.3113--
3.2296765003.36073.7780-
3.2338766003.3242--
3.2381767003.6477--
3.2423768003.1657--
3.2465769003.0839--
3.2507770003.5993.7618-
3.2549771003.1563--
3.2592772003.1867--
3.2634773003.5676--
3.2676774003.6313--
3.2718775003.25043.7301-
3.2761776003.2488--
3.2803777003.0412--
3.2845778003.1514--
3.2887779002.9742--
3.2929780003.3953.7579-
3.2972781003.5513--
3.3014782003.3194--
3.3056783003.2702--
3.3098784003.322--
3.3141785003.53573.7827-
3.3183786003.3831--
3.3225787003.3878--
3.3267788003.2869--
3.3309789003.7636--
3.3352790003.40893.7984-
3.3394791003.3371--
3.3436792003.5966--
3.3478793003.8318--
3.3520794003.4452--
3.3563795003.17893.7290-
3.3605796003.1829--
3.3647797003.4624--
3.3689798003.3163--
3.3732799003.2591--
3.3774800003.23753.7153-
3.3816801003.0596--
3.3858802003.2673--
3.3900803003.8284--
3.3943804003.2518--
3.3985805003.42143.7572-
3.4027806003.3534--
3.4069807003.7609--
3.4112808003.7096--
3.4154809002.9755--
3.4196810003.45853.7362-
3.4238811003.5315--
3.4280812003.4276--
3.4323813003.5303--
3.4365814003.2272--
3.4407815002.96143.7592-
3.4449816003.3272--
3.4491817003.548--
3.4534818003.5806--
3.4576819003.2915--
3.4618820003.45713.7447-
3.4660821003.2471--
3.4703822003.3675--
3.4745823003.039--
3.4787824003.1737--
3.4829825003.59373.7527-
3.4871826003.3723--
3.4914827003.5835--
3.4956828003.3739--
3.4998829003.3891--
3.5040830003.52043.7398-
3.5083831003.0925--
3.5125832003.2285--
3.5167833003.4032--
3.5209834003.5367--
3.5251835003.15133.7454-
3.5294836003.292--
3.5336837003.2018--
3.5378838003.4814--
3.5420839003.2591--
3.5462840003.1793.7722-
3.5505841003.3408--
3.5547842003.6131--
3.5589843003.2299--
3.5631844003.3005--
3.5674845003.47313.7458-
3.5716846003.2288--
3.5758847003.4384--
3.5800848003.6438--
3.5842849003.3293--
3.5885850003.35553.7534-
3.5927851003.4791--
3.5969852003.1024--
3.6011853003.4605--
3.6054854003.4317--
3.6096855003.29133.7037-
3.6138856003.3377--
3.6180857003.2746--
3.6222858003.4173--
3.6265859003.4623--
3.6307860003.25963.7052-
3.6349861003.2322--
3.6391862003.2082--
3.6433863003.4993--
3.6476864003.3922--
3.6518865003.22753.6793-
3.6560866003.3031--
3.6602867003.2876--
3.6645868003.5403--
3.6687869003.3889--
3.6729870003.39383.6927-
3.6771871003.3169--
3.6813872003.1372--
3.6856873003.0958--
3.6898874003.1186--
3.6940875003.54193.6852-
3.6982876003.6208--
3.7025877003.3815--
3.7067878002.9388--
3.7109879003.2111--
3.7151880003.47423.6905-
3.7193881003.2668--
3.7236882003.439--
3.7278883003.3342--
3.7320884003.5079--
3.7362885003.44463.7126-
3.7404886003.3036--
3.7447887003.323--
3.7489888003.2921--
3.7531889003.3972--
3.7573890003.31323.7031-
3.7616891003.6181--
3.7658892003.41--
3.7700893003.2602--
3.7742894003.3742--
3.7784895003.29293.7064-
3.7827896003.1366--
3.7869897003.5312--
3.7911898003.2735--
3.7953899003.3797--
3.7996900003.30033.7135-
3.8038901003.483--
3.8080902003.2309--
3.8122903003.3767--
3.8164904002.8296--
3.8207905003.3613.7145-
3.8249906003.3726--
3.8291907003.2925--
3.8333908003.5113--
3.8375909003.6037--
3.8418910003.09253.7223-
3.8460911003.4363--
3.8502912003.3181--
3.8544913003.4216--
3.8587914003.1301--
3.8629915003.57913.7144-
3.8671916003.0492--
3.8713917003.4513--
3.8755918003.7442--
3.8798919003.1566--
3.8840920003.38713.7025-
3.8882921003.3478--
3.8924922003.2922--
3.8967923003.0988--
3.9009924003.4383--
3.9051925003.1753.7026-
3.9093926003.3831--
3.9135927003.3871--
3.9178928003.5747--
3.9220929003.272--
3.9262930003.42943.6876-
3.9304931003.6332--
3.9346932003.626--
3.9389933003.5402--
3.9431934003.348--
3.9473935003.25563.6902-
3.9515936003.5298--
3.9558937003.5247--
3.9600938003.0763--
3.9642939003.2457--
3.9684940003.18053.6897-
3.9726941003.3959--
3.9769942003.205--
3.9811943003.3307--
3.9853944003.0448--
3.9895945003.04473.6906-
3.9938946003.3314--
3.9980947003.4516--

</details>

Framework Versions

  • —Python: 3.8.10
  • —Sentence Transformers: 3.1.1
  • —Transformers: 4.45.1
  • —PyTorch: 2.4.0+cu121
  • —Accelerate: 0.34.2
  • —Datasets: 3.0.1
  • —Tokenizers: 0.20.0

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. -->