CoolFace
Modelpublic

GozdeA/tennis-multi-return-categorizer-v1

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes17downloads
Model Card

SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2

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 c9745ed1d9f207416be6d2e6f8de32d1f16199bf -->
  • —Maximum Sequence Length: 256 tokens
  • —Output Dimensionality: 384 dimensions
  • —Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

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("GozdeA/tennis-multi-return-categorizer-v1")
# Run inference
sentences = [
    'What is the overall return for Sinner?',
    'Djokovic how many titles?',
    'Tell me about sets won for Sinner',
]
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.5331, 0.0219],
#         [0.5331, 1.0000, 0.1391],
#         [0.0219, 0.1391, 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

Unnamed Dataset
  • —Size: 73,579 training samples
  • —Columns: <code>anchor</code>, <code>positive</code>, and <code>negative</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | negative | |:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 10.03 tokens</li><li>max: 26 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 8.91 tokens</li><li>max: 23 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 9.87 tokens</li><li>max: 22 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:-----------------------------------------------------------|:-----------------------------------|:----------------------------------------| | <code>What is the start time for Swiatek?</code> | <code>Djokovic what court?</code> | <code>before the matchup</code> | | <code>What is the backhand this set for the player?</code> | <code>Djokovic key factors?</code> | <code>What about she's duration?</code> | | <code>the player how many titles?</code> | <code>Show me career titles</code> | <code>What about Sinner's games?</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim"
  }

Evaluation Dataset

Unnamed Dataset
  • —Size: 18,395 evaluation samples
  • —Columns: <code>anchor</code>, <code>positive</code>, and <code>negative</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | negative | |:--------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 5 tokens</li><li>mean: 9.93 tokens</li><li>max: 23 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 8.89 tokens</li><li>max: 20 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 9.91 tokens</li><li>max: 20 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:--------------------------------------------------|:-------------------------------------------------|:--------------------------------------------| | <code>How is Sinner's previous?</code> | <code>what venue</code> | <code>What about the player's fault?</code> | | <code>likely for Shelton?</code> | <code>likely for Nole?</code> | <code>title for Shelton?</code> | | <code>What is the who is she for Djokovic?</code> | <code>What's the who is she for Djokovic?</code> | <code>she who is projected?</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim"
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 16
  • —learning_rate: 2e-05
  • —num_train_epochs: 15
  • —warmup_ratio: 0.1
  • —fp16: True
All Hyperparameters

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

  • —overwrite_output_dir: False
  • —do_predict: False
  • —eval_strategy: no
  • —prediction_loss_only: True
  • —per_device_train_batch_size: 16
  • —per_device_eval_batch_size: 8
  • —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: 15
  • —max_steps: -1
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: None
  • —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
  • —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}
  • —parallelism_config: None
  • —deepspeed: None
  • —label_smoothing_factor: 0.0
  • —optim: adamwtorchfused
  • —optim_args: None
  • —adafactor: False
  • —group_by_length: False
  • —length_column_name: length
  • —project: huggingface
  • —trackio_space_id: trackio
  • —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: no
  • —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: True
  • —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 Loss
0.0109504.5343
0.02171004.1503
0.03261504.2094
0.04352003.7119
0.05442503.4992
0.06523003.2812
0.07613502.875
0.08704002.6036
0.09784502.3237
0.10875002.0771
0.11965502.0357
0.13056001.9121
0.14136501.722
0.15227001.6555
0.16317501.5444
0.17408001.6782
0.18488501.4761
0.19579001.4483
0.20669501.3928
0.217410001.3547
0.228310501.2807
0.239211001.214
0.250111501.2233
0.260912001.1758
0.271812501.2455
0.282713001.1887
0.293513501.0793
0.304414001.1442
0.315314501.0647
0.326215001.127
0.337015501.0336
0.347916000.9882
0.358816501.084
0.369617000.9635
0.380517501.0175
0.391418001.0337
0.402318500.9214
0.413119000.8977
0.424019500.8724
0.434920000.9128
0.445720500.8351
0.456621000.8709
0.467521500.8714
0.478422000.8228
0.489222500.8768
0.500123000.8204
0.511023500.7917
0.521924000.8571
0.532724500.7727
0.543625000.7949
0.554525500.7218
0.565326000.7796
0.576226500.7779
0.587127000.708
0.598027500.6822
0.608828000.7267
0.619728500.7874
0.630629000.7183
0.641429500.7872
0.652330000.6798
0.663230500.6589
0.674131000.7869
0.684931500.7458
0.695832000.6518
0.706732500.6666
0.717533000.7073
0.728433500.6737
0.739334000.6933
0.750234500.6869
0.761035000.6713
0.771935500.6525
0.782836000.6384
0.793736500.6467
0.804537000.5862
0.815437500.5869
0.826338000.6548
0.837138500.6605
0.848039000.639
0.858939500.5724
0.869840000.5488
0.880640500.6698
0.891541000.6038
0.902441500.5981
0.913242000.6082
0.924142500.6197
0.935043000.5462
0.945943500.6771
0.956744000.5428
0.967644500.6265
0.978545000.5621
0.989345500.5917
1.000246000.5517
1.011146500.5733
1.022047000.5907
1.032847500.51
1.043748000.5592
1.054648500.5688
1.065449000.5571
1.076349500.531
1.087250000.5062
1.098150500.5626
1.108951000.55
1.119851500.5727
1.130752000.5253
1.141652500.5174
1.152453000.5883
1.163353500.5333
1.174254000.5204
1.185054500.4964
1.195955000.5192
1.206855500.5264
1.217756000.5388
1.228556500.5505
1.239457000.5008
1.250357500.4952
1.261158000.5656
1.272058500.5574
1.282959000.4516
1.293859500.5438
1.304660000.48
1.315560500.5645
1.326461000.5652
1.337261500.4538
1.348162000.522
1.359062500.5153
1.369963000.5149
1.380763500.606
1.391664000.5366
1.402564500.4846
1.413465000.5462
1.424265500.4505
1.435166000.4648
1.446066500.5468
1.456867000.4822
1.467767500.5271
1.478668000.5222
1.489568500.4843
1.500369000.4755
1.511269500.5517
1.522170000.4793
1.532970500.5232
1.543871000.5481
1.554771500.5477
1.565672000.5007
1.576472500.4048
1.587373000.5295
1.598273500.4564
1.609074000.5618
1.619974500.5855
1.630875000.5319
1.641775500.5128
1.652576000.4669
1.663476500.4961
1.674377000.4905
1.685177500.4959
1.696078000.4981
1.706978500.4973
1.717879000.5029
1.728679500.5397
1.739580000.4351
1.750480500.4897
1.761381000.4901
1.772181500.501
1.783082000.4701
1.793982500.4508
1.804783000.4612
1.815683500.5318
1.826584000.4846
1.837484500.4965
1.848285000.4872
1.859185500.4902
1.870086000.4552
1.880886500.4687
1.891787000.4839
1.902687500.4549
1.913588000.445
1.924388500.436
1.935289000.4577
1.946189500.4301
1.956990000.5138
1.967890500.5057
1.978791000.4725
1.989691500.4283
2.000492000.4934
2.011392500.5033
2.022293000.4393
2.033193500.451
2.043994000.439
2.054894500.4064
2.065795000.4708
2.076595500.4132
2.087496000.4464
2.098396500.4531
2.109297000.4429
2.120097500.4251
2.130998000.45
2.141898500.4252
2.152699000.424
2.163599500.4899
2.1744100000.4602
2.1853100500.4976
2.1961101000.4161
2.2070101500.4652
2.2179102000.444
2.2287102500.472
2.2396103000.4657
2.2505103500.4483
2.2614104000.5059
2.2722104500.4887
2.2831105000.4583
2.2940105500.4551
2.3048106000.4353
2.3157106500.4883
2.3266107000.4683
2.3375107500.4461
2.3483108000.4323
2.3592108500.4779
2.3701109000.3794
2.3810109500.4247
2.3918110000.4223
2.4027110500.4325
2.4136111000.3852
2.4244111500.4424
2.4353112000.4614
2.4462112500.5371
2.4571113000.4411
2.4679113500.4248
2.4788114000.4675
2.4897114500.4442
2.5005115000.4382
2.5114115500.45
2.5223116000.3965
2.5332116500.4243
2.5440117000.5324
2.5549117500.4558
2.5658118000.4677
2.5766118500.4307
2.5875119000.4344
2.5984119500.4066
2.6093120000.4063
2.6201120500.4823
2.6310121000.4009
2.6419121500.3996
2.6528122000.4401
2.6636122500.4244
2.6745123000.4074
2.6854123500.4391
2.6962124000.4452
2.7071124500.4893
2.7180125000.4644
2.7289125500.4626
2.7397126000.4329
2.7506126500.4706
2.7615127000.4076
2.7723127500.4258
2.7832128000.4746
2.7941128500.4445
2.8050129000.3991
2.8158129500.4463
2.8267130000.5408
2.8376130500.4755
2.8484131000.4352
2.8593131500.4397
2.8702132000.4313
2.8811132500.4292
2.8919133000.4706
2.9028133500.44
2.9137134000.4608
2.9245134500.4115
2.9354135000.4301
2.9463135500.3949
2.9572136000.5413
2.9680136500.4923
2.9789137000.4789
2.9898137500.4517
3.0007138000.4442
3.0115138500.4024
3.0224139000.4693
3.0333139500.3928
3.0441140000.4171
3.0550140500.4563
3.0659141000.4822
3.0768141500.3919
3.0876142000.4311
3.0985142500.4678
3.1094143000.4385
3.1202143500.4603
3.1311144000.3592
3.1420144500.4371
3.1529145000.4543
3.1637145500.4129
3.1746146000.482
3.1855146500.4003
3.1963147000.4369
3.2072147500.4284
3.2181148000.4054
3.2290148500.4646
3.2398149000.4694
3.2507149500.4373
3.2616150000.4242
3.2725150500.3831
3.2833151000.4368
3.2942151500.3969
3.3051152000.4054
3.3159152500.4599
3.3268153000.4339
3.3377153500.4139
3.3486154000.3776
3.3594154500.382
3.3703155000.3721
3.3812155500.4027
3.3920156000.4055
3.4029156500.4425
3.4138157000.4547
3.4247157500.4262
3.4355158000.4254
3.4464158500.4351
3.4573159000.4512
3.4681159500.4176
3.4790160000.4309
3.4899160500.4769
3.5008161000.4066
3.5116161500.4299
3.5225162000.4656
3.5334162500.3952
3.5442163000.4916
3.5551163500.4299
3.5660164000.4113
3.5769164500.3327
3.5877165000.3846
3.5986165500.4026
3.6095166000.4467
3.6204166500.4034
3.6312167000.4372
3.6421167500.3998
3.6530168000.4125
3.6638168500.4402
3.6747169000.4505
3.6856169500.4204
3.6965170000.4321
3.7073170500.4538
3.7182171000.4095
3.7291171500.4361
3.7399172000.3658
3.7508172500.4158
3.7617173000.4394
3.7726173500.4329
3.7834174000.4599
3.7943174500.4091
3.8052175000.404
3.8160175500.4532
3.8269176000.4591
3.8378176500.4178
3.8487177000.4236
3.8595177500.4122
3.8704178000.404
3.8813178500.4057
3.8922179000.4169
3.9030179500.4668
3.9139180000.4186
3.9248180500.3874
3.9356181000.4644
3.9465181500.3788
3.9574182000.4308
3.9683182500.4466
3.9791183000.434
3.9900183500.4317
4.0009184000.3846
4.0117184500.4284
4.0226185000.3853
4.0335185500.4083
4.0444186000.3601
4.0552186500.4309
4.0661187000.4503
4.0770187500.3978
4.0878188000.4455
4.0987188500.4662
4.1096189000.3975
4.1205189500.388
4.1313190000.4246
4.1422190500.3963
4.1531191000.38
4.1639191500.3699
4.1748192000.4176
4.1857192500.4139
4.1966193000.439
4.2074193500.4259
4.2183194000.4135
4.2292194500.4516
4.2401195000.3861
4.2509195500.3929
4.2618196000.3653
4.2727196500.4113
4.2835197000.422
4.2944197500.3864
4.3053198000.4171
4.3162198500.4439
4.3270199000.369
4.3379199500.3967
4.3488200000.423
4.3596200500.402
4.3705201000.4588
4.3814201500.4101
4.3923202000.4198
4.4031202500.3895
4.4140203000.4411
4.4249203500.3582
4.4357204000.4318
4.4466204500.4115
4.4575205000.4088
4.4684205500.4462
4.4792206000.4421
4.4901206500.4228
4.5010207000.4397
4.5119207500.395
4.5227208000.4417
4.5336208500.4457
4.5445209000.4006
4.5553209500.4017
4.5662210000.4101
4.5771210500.4464
4.5880211000.3936
4.5988211500.414
4.6097212000.4519
4.6206212500.3599
4.6314213000.4264
4.6423213500.4284
4.6532214000.3824
4.6641214500.4375
4.6749215000.4304
4.6858215500.3955
4.6967216000.4071
4.7075216500.4033
4.7184217000.401
4.7293217500.4326
4.7402218000.3946
4.7510218500.4203
4.7619219000.4118
4.7728219500.4601
4.7836220000.4075
4.7945220500.387
4.8054221000.4452
4.8163221500.4315
4.8271222000.4326
4.8380222500.3973
4.8489223000.3921
4.8598223500.4193
4.8706224000.4387
4.8815224500.3427
4.8924225000.3798
4.9032225500.4283
4.9141226000.3316
4.9250226500.4236
4.9359227000.3889
4.9467227500.4361
4.9576228000.4042
4.9685228500.4242
4.9793229000.4236
4.9902229500.4107
5.0011230000.4085
5.0120230500.3792
5.0228231000.3613
5.0337231500.3732
5.0446232000.4417
5.0554232500.3981
5.0663233000.3633
5.0772233500.4462
5.0881234000.379
5.0989234500.4407
5.1098235000.4276
5.1207235500.4015
5.1316236000.4077
5.1424236500.3684
5.1533237000.4177
5.1642237500.3799
5.1750238000.368
5.1859238500.3895
5.1968239000.3701
5.2077239500.4023
5.2185240000.4366
5.2294240500.3531
5.2403241000.4698
5.2511241500.4044
5.2620242000.4206
5.2729242500.3634
5.2838243000.4641
5.2946243500.3938
5.3055244000.4068
5.3164244500.3967
5.3272245000.4201
5.3381245500.3853
5.3490246000.4395
5.3599246500.3889
5.3707247000.4131
5.3816247500.394
5.3925248000.3739
5.4033248500.4131
5.4142249000.411
5.4251249500.3676
5.4360250000.4032
5.4468250500.4161
5.4577251000.3662
5.4686251500.4215
5.4795252000.4032
5.4903252500.4417
5.5012253000.4006
5.5121253500.3782
5.5229254000.3671
5.5338254500.4444
5.5447255000.4082
5.5556255500.4489
5.5664256000.4141
5.5773256500.412
5.5882257000.3835
5.5990257500.3717
5.6099258000.4346
5.6208258500.425
5.6317259000.3928
5.6425259500.397
5.6534260000.4092
5.6643260500.4099
5.6751261000.4541
5.6860261500.3871
5.6969262000.4233
5.7078262500.3828
5.7186263000.3768
5.7295263500.3651
5.7404264000.4069
5.7513264500.345
5.7621265000.4104
5.7730265500.4277
5.7839266000.376
5.7947266500.3807
5.8056267000.4101
5.8165267500.4363
5.8274268000.4297
5.8382268500.4474
5.8491269000.4342
5.8600269500.4105
5.8708270000.3463
5.8817270500.4649
5.8926271000.4394
5.9035271500.4414
5.9143272000.3887
5.9252272500.3368
5.9361273000.4028
5.9469273500.4122
5.9578274000.4111
5.9687274500.4525
5.9796275000.3339
5.9904275500.3963
6.0013276000.4151
6.0122276500.3519
6.0230277000.3927
6.0339277500.407
6.0448278000.3792
6.0557278500.4349
6.0665279000.3903
6.0774279500.4265
6.0883280000.4152
6.0992280500.4057
6.1100281000.4566
6.1209281500.3662
6.1318282000.405
6.1426282500.3539
6.1535283000.4315
6.1644283500.3625
6.1753284000.4443
6.1861284500.4326
6.1970285000.3912
6.2079285500.3864
6.2187286000.3573
6.2296286500.324
6.2405287000.3862
6.2514287500.4149
6.2622288000.3508
6.2731288500.4066
6.2840289000.433
6.2948289500.3811
6.3057290000.3503
6.3166290500.468
6.3275291000.3464
6.3383291500.4167
6.3492292000.4133
6.3601292500.431
6.3710293000.4057
6.3818293500.4215
6.3927294000.3867
6.4036294500.4081
6.4144295000.4377
6.4253295500.4169
6.4362296000.3796
6.4471296500.3792
6.4579297000.4182
6.4688297500.403
6.4797298000.4034
6.4905298500.3737
6.5014299000.3986
6.5123299500.3897
6.5232300000.3927
6.5340300500.3798
6.5449301000.4052
6.5558301500.398
6.5666302000.4089
6.5775302500.4213
6.5884303000.3861
6.5993303500.3724
6.6101304000.364
6.6210304500.4101
6.6319305000.3813
6.6427305500.3925
6.6536306000.414
6.6645306500.3712
6.6754307000.3608
6.6862307500.415
6.6971308000.3416
6.7080308500.4023
6.7189309000.3632
6.7297309500.4068
6.7406310000.4181
6.7515310500.3951
6.7623311000.4186
6.7732311500.4233
6.7841312000.4182
6.7950312500.3858
6.8058313000.4656
6.8167313500.3596
6.8276314000.3377
6.8384314500.3345
6.8493315000.3761
6.8602315500.3514
6.8711316000.3907
6.8819316500.3561
6.8928317000.3971
6.9037317500.3883
6.9145318000.441
6.9254318500.4718
6.9363319000.4288
6.9472319500.4641
6.9580320000.4066
6.9689320500.3905
6.9798321000.3728
6.9907321500.3954
7.0015322000.3357
7.0124322500.366
7.0233323000.3696
7.0341323500.4179
7.0450324000.3931
7.0559324500.4164
7.0668325000.4097
7.0776325500.4674
7.0885326000.3893
7.0994326500.3671
7.1102327000.4092
7.1211327500.3574
7.1320328000.3815
7.1429328500.3164
7.1537329000.3772
7.1646329500.4368
7.1755330000.3925
7.1863330500.3766
7.1972331000.4089
7.2081331500.3856
7.2190332000.4306
7.2298332500.4093
7.2407333000.3828
7.2516333500.4299
7.2624334000.4001
7.2733334500.4021
7.2842335000.3392
7.2951335500.4213
7.3059336000.3594
7.3168336500.4092
7.3277337000.3857
7.3386337500.3717
7.3494338000.4132
7.3603338500.3815
7.3712339000.4002
7.3820339500.3883
7.3929340000.4153
7.4038340500.3918
7.4147341000.3487
7.4255341500.3604
7.4364342000.4205
7.4473342500.4095
7.4581343000.3463
7.4690343500.4192
7.4799344000.4076
7.4908344500.3847
7.5016345000.3631
7.5125345500.4154
7.5234346000.4206
7.5342346500.431
7.5451347000.3779
7.5560347500.3597
7.5669348000.363
7.5777348500.3835
7.5886349000.4041
7.5995349500.3574
7.6104350000.3667
7.6212350500.4191
7.6321351000.3391
7.6430351500.3872
7.6538352000.3894
7.6647352500.377
7.6756353000.3397
7.6865353500.3886
7.6973354000.3914
7.7082354500.3828
7.7191355000.3908
7.7299355500.3751
7.7408356000.3977
7.7517356500.3908
7.7626357000.41
7.7734357500.4429
7.7843358000.396
7.7952358500.43
7.8060359000.3857
7.8169359500.4043
7.8278360000.4116
7.8387360500.3566
7.8495361000.3787
7.8604361500.3401
7.8713362000.3484
7.8821362500.3831
7.8930363000.4087
7.9039363500.422
7.9148364000.3823
7.9256364500.4076
7.9365365000.4103
7.9474365500.3523
7.9583366000.3968
7.9691366500.4052
7.9800367000.3673
7.9909367500.4189
8.0017368000.3705
8.0126368500.3544
8.0235369000.3695
8.0344369500.3525
8.0452370000.4156
8.0561370500.3759
8.0670371000.3964
8.0778371500.4138
8.0887372000.36
8.0996372500.362
8.1105373000.3548
8.1213373500.4081
8.1322374000.3777
8.1431374500.4061
8.1539375000.4284
8.1648375500.4064
8.1757376000.343
8.1866376500.4108
8.1974377000.336
8.2083377500.3538
8.2192378000.3657
8.2301378500.3972
8.2409379000.4172
8.2518379500.3773
8.2627380000.3395
8.2735380500.3776
8.2844381000.3982
8.2953381500.3889
8.3062382000.3353
8.3170382500.3916
8.3279383000.3427
8.3388383500.3135
8.3496384000.3703
8.3605384500.4161
8.3714385000.3549
8.3823385500.3947
8.3931386000.4015
8.4040386500.333
8.4149387000.3313
8.4257387500.3608
8.4366388000.3947
8.4475388500.4155
8.4584389000.3938
8.4692389500.3758
8.4801390000.4196
8.4910390500.3235
8.5018391000.3854
8.5127391500.4412
8.5236392000.3849
8.5345392500.3653
8.5453393000.3626
8.5562393500.4181
8.5671394000.3956
8.5780394500.3829
8.5888395000.383
8.5997395500.3333
8.6106396000.3862
8.6214396500.3389
8.6323397000.3775
8.6432397500.4498
8.6541398000.3995
8.6649398500.4221
8.6758399000.34
8.6867399500.3624
8.6975400000.4044
8.7084400500.3707
8.7193401000.3893
8.7302401500.3641
8.7410402000.3615
8.7519402500.3771
8.7628403000.3741
8.7736403500.3714
8.7845404000.3949
8.7954404500.3863
8.8063405000.4038
8.8171405500.3981
8.8280406000.4127
8.8389406500.3975
8.8497407000.4221
8.8606407500.4015
8.8715408000.3867
8.8824408500.4103
8.8932409000.3706
8.9041409500.4163
8.9150410000.4587
8.9259410500.3577
8.9367411000.3935
8.9476411500.3692
8.9585412000.3671
8.9693412500.383
8.9802413000.3916
8.9911413500.3449
9.0020414000.4054
9.0128414500.3806
9.0237415000.4055
9.0346415500.4158
9.0454416000.3617
9.0563416500.3988
9.0672417000.3772
9.0781417500.3613
9.0889418000.3518
9.0998418500.418
9.1107419000.3602
9.1215419500.3609
9.1324420000.3637
9.1433420500.4353
9.1542421000.3632
9.1650421500.3768
9.1759422000.3581
9.1868422500.3985
9.1977423000.4324
9.2085423500.3882
9.2194424000.3738
9.2303424500.3604
9.2411425000.3963
9.2520425500.4378
9.2629426000.3642
9.2738426500.3827
9.2846427000.3595
9.2955427500.3893
9.3064428000.3628
9.3172428500.3544
9.3281429000.357
9.3390429500.3834
9.3499430000.4025
9.3607430500.3697
9.3716431000.3772
9.3825431500.3813
9.3933432000.4251
9.4042432500.3971
9.4151433000.3567
9.4260433500.3724
9.4368434000.3579
9.4477434500.3655
9.4586435000.3995
9.4694435500.3906
9.4803436000.3124
9.4912436500.372
9.5021437000.3589
9.5129437500.3725
9.5238438000.362
9.5347438500.4196
9.5456439000.333
9.5564439500.3905
9.5673440000.4155
9.5782440500.3746
9.5890441000.3773
9.5999441500.3839
9.6108442000.3307
9.6217442500.3672
9.6325443000.3956
9.6434443500.3714
9.6543444000.4217
9.6651444500.4147
9.6760445000.3997
9.6869445500.3748
9.6978446000.3879
9.7086446500.3631
9.7195447000.3216
9.7304447500.4008
9.7412448000.3659
9.7521448500.4471
9.7630449000.3854
9.7739449500.3807
9.7847450000.3801
9.7956450500.3513
9.8065451000.3657
9.8174451500.3398
9.8282452000.3679
9.8391452500.351
9.8500453000.368
9.8608453500.3891
9.8717454000.4348
9.8826454500.4001
9.8935455000.3772
9.9043455500.3866
9.9152456000.3451
9.9261456500.3417
9.9369457000.3835
9.9478457500.361
9.9587458000.3486
9.9696458500.4059
9.9804459000.3914
9.9913459500.3923
10.0022460000.4277
10.0130460500.3718
10.0239461000.3377
10.0348461500.3998
10.0457462000.3424
10.0565462500.3297
10.0674463000.3731
10.0783463500.4425
10.0891464000.3615
10.1000464500.4088
10.1109465000.3561
10.1218465500.3331
10.1326466000.3726
10.1435466500.3645
10.1544467000.3279
10.1653467500.4132
10.1761468000.3835
10.1870468500.3603
10.1979469000.3594
10.2087469500.3732
10.2196470000.37
10.2305470500.3831
10.2414471000.3719
10.2522471500.3735
10.2631472000.3898
10.2740472500.3952
10.2848473000.3408
10.2957473500.3923
10.3066474000.3764
10.3175474500.3919
10.3283475000.3992
10.3392475500.383
10.3501476000.3935
10.3609476500.3732
10.3718477000.366
10.3827477500.3686
10.3936478000.4177
10.4044478500.3399
10.4153479000.411
10.4262479500.3624
10.4371480000.3869
10.4479480500.3715
10.4588481000.3813
10.4697481500.358
10.4805482000.4047
10.4914482500.3632
10.5023483000.372
10.5132483500.362
10.5240484000.3293
10.5349484500.3344
10.5458485000.3246
10.5566485500.3946
10.5675486000.377
10.5784486500.4152
10.5893487000.4255
10.6001487500.379
10.6110488000.3757
10.6219488500.3783
10.6327489000.4167
10.6436489500.382
10.6545490000.3883
10.6654490500.38
10.6762491000.3599
10.6871491500.3579
10.6980492000.4133
10.7088492500.4178
10.7197493000.4253
10.7306493500.3959
10.7415494000.3869
10.7523494500.3852
10.7632495000.3965
10.7741495500.3784
10.7850496000.3926
10.7958496500.3469
10.8067497000.3381
10.8176497500.3771
10.8284498000.4124
10.8393498500.3118
10.8502499000.3945
10.8611499500.4245
10.8719500000.3823
10.8828500500.3773
10.8937501000.4237
10.9045501500.4174
10.9154502000.3625
10.9263502500.4409
10.9372503000.3334
10.9480503500.3782
10.9589504000.3437
10.9698504500.415
10.9806505000.3625
10.9915505500.3544
11.0024506000.384
11.0133506500.3672
11.0241507000.3501
11.0350507500.3299
11.0459508000.3612
11.0568508500.4047
11.0676509000.3628
11.0785509500.3941
11.0894510000.3789
11.1002510500.4089
11.1111511000.3826
11.1220511500.4027
11.1329512000.3819
11.1437512500.3902
11.1546513000.3555
11.1655513500.4149
11.1763514000.3353
11.1872514500.4295
11.1981515000.3294
11.2090515500.3729
11.2198516000.3338
11.2307516500.3769
11.2416517000.3704
11.2524517500.3652
11.2633518000.3768
11.2742518500.4031
11.2851519000.3477
11.2959519500.3586
11.3068520000.3924
11.3177520500.3385
11.3285521000.3939
11.3394521500.3694
11.3503522000.398
11.3612522500.3461
11.3720523000.3812
11.3829523500.3953
11.3938524000.409
11.4047524500.3474
11.4155525000.4009
11.4264525500.3971
11.4373526000.4131
11.4481526500.3711
11.4590527000.3455
11.4699527500.4088
11.4808528000.3561
11.4916528500.3516
11.5025529000.3997
11.5134529500.351
11.5242530000.3563
11.5351530500.3862
11.5460531000.3628
11.5569531500.3957
11.5677532000.3637
11.5786532500.3493
11.5895533000.3208
11.6003533500.3879
11.6112534000.3627
11.6221534500.3721
11.6330535000.3547
11.6438535500.3582
11.6547536000.4228
11.6656536500.4185
11.6765537000.3619
11.6873537500.3966
11.6982538000.3777
11.7091538500.3544
11.7199539000.4293
11.7308539500.3577
11.7417540000.3639
11.7526540500.3358
11.7634541000.3465
11.7743541500.367
11.7852542000.3649
11.7960542500.3897
11.8069543000.4063
11.8178543500.3931
11.8287544000.3686
11.8395544500.3705
11.8504545000.4032
11.8613545500.4081
11.8721546000.3637
11.8830546500.3459
11.8939547000.3964
11.9048547500.3826
11.9156548000.3526
11.9265548500.3946
11.9374549000.432
11.9482549500.3254
11.9591550000.3246
11.9700550500.3744
11.9809551000.3696
11.9917551500.4402
12.0026552000.3494
12.0135552500.4012
12.0244553000.3754
12.0352553500.3325
12.0461554000.3879
12.0570554500.3728
12.0678555000.349
12.0787555500.3733
12.0896556000.3678
12.1005556500.3597
12.1113557000.3777
12.1222557500.3371
12.1331558000.3419
12.1439558500.371
12.1548559000.3638
12.1657559500.3617
12.1766560000.3771
12.1874560500.3327
12.1983561000.3877
12.2092561500.4187
12.2200562000.387
12.2309562500.3868
12.2418563000.4428
12.2527563500.4025
12.2635564000.3249
12.2744564500.3251
12.2853565000.4257
12.2962565500.3933
12.3070566000.3835
12.3179566500.3841
12.3288567000.3717
12.3396567500.4337
12.3505568000.3609
12.3614568500.3734
12.3723569000.3477
12.3831569500.4179
12.3940570000.3765
12.4049570500.3744
12.4157571000.3668
12.4266571500.3708
12.4375572000.3653
12.4484572500.3609
12.4592573000.392
12.4701573500.3679
12.4810574000.3737
12.4918574500.2987
12.5027575000.3862
12.5136575500.3554
12.5245576000.292
12.5353576500.3533
12.5462577000.3358
12.5571577500.4058
12.5679578000.393
12.5788578500.3404
12.5897579000.3831
12.6006579500.3478
12.6114580000.3687
12.6223580500.3986
12.6332581000.3533
12.6441581500.3476
12.6549582000.3532
12.6658582500.4081
12.6767583000.3337
12.6875583500.3084
12.6984584000.4038
12.7093584500.3829
12.7202585000.3839
12.7310585500.3781
12.7419586000.3373
12.7528586500.3853
12.7636587000.416
12.7745587500.3356
12.7854588000.3827
12.7963588500.3714
12.8071589000.3838
12.8180589500.3779
12.8289590000.3802
12.8397590500.3548
12.8506591000.4167
12.8615591500.3471
12.8724592000.3736
12.8832592500.4097
12.8941593000.3666
12.9050593500.3612
12.9159594000.3438
12.9267594500.3263
12.9376595000.3219
12.9485595500.3483
12.9593596000.3787
12.9702596500.337
12.9811597000.3694
12.9920597500.4032
13.0028598000.3801
13.0137598500.3674
13.0246599000.3761
13.0354599500.3629
13.0463600000.3847
13.0572600500.339
13.0681601000.3238
13.0789601500.3351
13.0898602000.3858
13.1007602500.3588
13.1115603000.3727
13.1224603500.3324
13.1333604000.4151
13.1442604500.3637
13.1550605000.3528
13.1659605500.3801
13.1768606000.4035
13.1876606500.3841
13.1985607000.3266
13.2094607500.3713
13.2203608000.4011
13.2311608500.3664
13.2420609000.3387
13.2529609500.3623
13.2638610000.3553
13.2746610500.411
13.2855611000.3595
13.2964611500.3667
13.3072612000.3656
13.3181612500.3535
13.3290613000.3299
13.3399613500.4442
13.3507614000.4031
13.3616614500.3803
13.3725615000.3437
13.3833615500.4238
13.3942616000.3868
13.4051616500.4159
13.4160617000.346
13.4268617500.391
13.4377618000.3447
13.4486618500.3073
13.4594619000.3579
13.4703619500.4034
13.4812620000.3487
13.4921620500.3756
13.5029621000.2851
13.5138621500.3661
13.5247622000.3342
13.5356622500.4146
13.5464623000.3672
13.5573623500.4095
13.5682624000.334
13.5790624500.3679
13.5899625000.322
13.6008625500.3681
13.6117626000.3405
13.6225626500.331
13.6334627000.3709
13.6443627500.3548
13.6551628000.3824
13.6660628500.3772
13.6769629000.4261
13.6878629500.327
13.6986630000.3145
13.7095630500.3729
13.7204631000.3639
13.7312631500.4084
13.7421632000.3707
13.7530632500.3824
13.7639633000.3388
13.7747633500.3527
13.7856634000.3491
13.7965634500.365
13.8073635000.3353
13.8182635500.4076
13.8291636000.3472
13.8400636500.3779
13.8508637000.4188
13.8617637500.4104
13.8726638000.3719
13.8835638500.3705
13.8943639000.3203
13.9052639500.3246
13.9161640000.3578
13.9269640500.3895
13.9378641000.3588
13.9487641500.3739
13.9596642000.382
13.9704642500.3474
13.9813643000.3871
13.9922643500.391
14.0030644000.356
14.0139644500.3723
14.0248645000.3945
14.0357645500.3582
14.0465646000.3855
14.0574646500.4075
14.0683647000.3688
14.0791647500.3688
14.0900648000.3567
14.1009648500.3405
14.1118649000.4093
14.1226649500.2962
14.1335650000.3668
14.1444650500.3383
14.1553651000.3721
14.1661651500.4097
14.1770652000.3547
14.1879652500.3874
14.1987653000.3449
14.2096653500.3188
14.2205654000.3589
14.2314654500.3395
14.2422655000.3993
14.2531655500.3663
14.2640656000.3587
14.2748656500.3087
14.2857657000.3864
14.2966657500.3347
14.3075658000.3429
14.3183658500.3444
14.3292659000.305
14.3401659500.3262
14.3509660000.357
14.3618660500.4113
14.3727661000.3654
14.3836661500.4121
14.3944662000.3675
14.4053662500.3535
14.4162663000.388
14.4270663500.3759
14.4379664000.3682
14.4488664500.3214
14.4597665000.3846
14.4705665500.3921
14.4814666000.3948
14.4923666500.3609
14.5032667000.3709
14.5140667500.4154
14.5249668000.3576
14.5358668500.3397
14.5466669000.3459
14.5575669500.3908
14.5684670000.4457
14.5793670500.3727
14.5901671000.312
14.6010671500.3946
14.6119672000.3626
14.6227672500.3639
14.6336673000.3261
14.6445673500.3779
14.6554674000.393
14.6662674500.3687
14.6771675000.3772
14.6880675500.3954
14.6988676000.3565
14.7097676500.375
14.7206677000.3815
14.7315677500.3516
14.7423678000.4417
14.7532678500.4151
14.7641679000.4171
14.7750679500.3401
14.7858680000.351
14.7967680500.4041
14.8076681000.3528
14.8184681500.3397
14.8293682000.3897
14.8402682500.3917
14.8511683000.3718
14.8619683500.3762
14.8728684000.3391
14.8837684500.3603
14.8945685000.3861
14.9054685500.3658
14.9163686000.3146
14.9272686500.4093
14.9380687000.363
14.9489687500.3835
14.9598688000.3347
14.9706688500.3562
14.9815689000.3594
14.9924689500.3612

</details>

Framework Versions

  • —Python: 3.12.12
  • —Sentence Transformers: 5.0.0
  • —Transformers: 4.57.6
  • —PyTorch: 2.10.0+cu128
  • —Accelerate: 1.13.0
  • —Datasets: 4.0.0
  • —Tokenizers: 0.22.2

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",
}
MultipleNegativesRankingLoss
bibtex
@misc{henderson2017efficient,
    title={Efficient Natural Language Response Suggestion for Smart Reply},
    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},
    year={2017},
    eprint={1705.00652},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

<!--

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