CoolFace
Modelpublic

sobamchan/t5-base-mrl-768-512-256-128-64

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes35downloads
Model Card

SentenceTransformer based on google-t5/t5-base

This is a sentence-transformers model finetuned from google-t5/t5-base on the all-nli dataset. It maps sentences & paragraphs to a 768-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: google-t5/t5-base <!-- at revision a9723ea7f1b39c1eae772870f3b547bf6ef7e6c1 -->
  • —Maximum Sequence Length: None tokens
  • —Output Dimensionality: 768 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —all-nli
  • —Language: en <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': None, 'do_lower_case': False, 'architecture': 'T5EncoderModel'})
  (1): Pooling({'word_embedding_dimension': 768, '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})
)

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 = [
    'A construction worker peeking out of a manhole while his coworker sits on the sidewalk smiling.',
    'A worker is looking out of a manhole.',
    'The workers are both inside the manhole.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# 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
Metricsts-devsts-test
pearson_cosine0.8370.8228
spearman_cosine0.84150.8371

<!--

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

all-nli
  • —Dataset: all-nli at d482672
  • —Size: 557,850 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: 6 tokens</li><li>mean: 9.96 tokens</li><li>max: 52 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 12.79 tokens</li><li>max: 44 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 14.02 tokens</li><li>max: 57 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:---------------------------------------------------------------------------|:-------------------------------------------------|:-----------------------------------------------------------| | <code>A person on a horse jumps over a broken down airplane.</code> | <code>A person is outdoors, on a horse.</code> | <code>A person is at a diner, ordering an omelette.</code> | | <code>Children smiling and waving at camera</code> | <code>There are children present</code> | <code>The kids are frowning</code> | | <code>A boy is jumping on skateboard in the middle of a red bridge.</code> | <code>The boy does a skateboarding trick.</code> | <code>The boy skates down the sidewalk.</code> |
  • —Loss: <code>MatryoshkaLoss</code> with these parameters:
json
  {
      "loss": "MultipleNegativesRankingLoss",
      "matryoshka_dims": [
          768,
          512,
          256,
          128,
          64
      ],
      "matryoshka_weights": [
          1,
          1,
          1,
          1,
          1
      ],
      "n_dims_per_step": -1
  }

Evaluation Dataset

all-nli
  • —Dataset: all-nli at d482672
  • —Size: 6,584 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: 19.41 tokens</li><li>max: 79 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 9.69 tokens</li><li>max: 35 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 10.35 tokens</li><li>max: 30 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------------| | <code>Two women are embracing while holding to go packages.</code> | <code>Two woman are holding packages.</code> | <code>The men are fighting outside a deli.</code> | | <code>Two young children in blue jerseys, one with the number 9 and one with the number 2 are standing on wooden steps in a bathroom and washing their hands in a sink.</code> | <code>Two kids in numbered jerseys wash their hands.</code> | <code>Two kids in jackets walk to school.</code> | | <code>A man selling donuts to a customer during a world exhibition event held in the city of Angeles</code> | <code>A man selling donuts to a customer.</code> | <code>A woman drinks her coffee in a small cafe.</code> |
  • —Loss: <code>MatryoshkaLoss</code> with these parameters:
json
  {
      "loss": "MultipleNegativesRankingLoss",
      "matryoshka_dims": [
          768,
          512,
          256,
          128,
          64
      ],
      "matryoshka_weights": [
          1,
          1,
          1,
          1,
          1
      ],
      "n_dims_per_step": -1
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —eval_strategy: steps
  • —per_device_train_batch_size: 32
  • —per_device_eval_batch_size: 32
  • —num_train_epochs: 15
  • —warmup_ratio: 0.1
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: 5e-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: {}
  • —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: False
  • —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 LossValidation Losssts-dev_spearman_cosinests-test_spearman_cosine
-1-1--0.6510-
0.028750013.70547.75860.6724-
0.0574100011.79796.23850.7213-
0.086015009.39274.93580.7593-
0.114720007.6134.31000.7712-
0.143425006.5573.93180.7783-
0.172130006.07633.62710.7824-
0.200835005.65093.35630.7849-
0.229440005.24283.12180.7884-
0.258145005.01492.95530.7919-
0.286850004.74112.80190.7949-
0.315555004.50172.67060.7983-
0.344260004.2882.54870.8033-
0.372965004.20232.43450.8058-
0.401570004.05952.33650.8075-
0.430275003.87022.25400.8106-
0.458980003.62512.16990.8127-
0.487685003.72662.11170.8157-
0.516390003.62352.04860.8161-
0.544995003.47971.98710.8172-
0.5736100003.30951.93800.8197-
0.6023105003.31591.87870.8215-
0.6310110003.19061.86730.8226-
0.6597115003.14651.81140.8241-
0.6883120003.05971.78700.8278-
0.7170125003.0271.74400.8246-
0.7457130002.96821.71530.8278-
0.7744135002.97041.68480.8234-
0.8031140002.88451.64770.8264-
0.8318145002.80221.63150.8279-
0.8604150002.79361.61180.8299-
0.8891155002.79531.57430.8323-
0.9178160002.72041.57560.8333-
0.9465165002.71231.54070.8316-
0.9752170002.59541.52270.8324-
1.0038175002.54791.49770.8344-
1.0325180002.44771.50450.8341-
1.0612185002.44711.49890.8332-
1.0899190002.40571.46640.8318-
1.1186195002.37121.43560.8313-
1.1472200002.39941.43680.8359-
1.1759205002.30751.42330.8341-
1.2046210002.35951.42230.8329-
1.2333215002.33211.40890.8353-
1.2620220002.25961.40860.8360-
1.2907225002.25111.40450.8392-
1.3193230002.23081.37340.8356-
1.3480235002.24611.37640.8364-
1.3767240002.21231.38120.8361-
1.4054245002.11761.36740.8414-
1.4341250002.12331.36690.8392-
1.4627255002.15551.35090.8378-
1.4914260002.09541.34710.8387-
1.5201265002.04411.33140.8379-
1.5488270001.98161.33880.8417-
1.5775275002.09381.29860.8410-
1.6061280002.04931.31590.8410-
1.6348285002.00171.30510.8387-
1.6635290001.95391.32390.8404-
1.6922295001.94921.29530.8423-
1.7209300002.01141.31360.8428-
1.7496305001.93531.29280.8435-
1.7782310001.92981.27090.8430-
1.8069315001.971.27910.8443-
1.8356320001.87821.28110.8424-
1.8643325001.86811.24360.8457-
1.8930330001.8771.25620.8449-
1.9216335001.7791.25030.8438-
1.9503340001.86331.25420.8453-
1.9790345001.81781.24550.8436-
2.0077350001.76971.26530.8446-
2.0364355001.60461.25870.8444-
2.0650360001.64311.24840.8480-
2.0937365001.62341.24260.8461-
2.1224370001.62871.24290.8482-
2.1511375001.62151.24680.8408-
2.1798380001.65651.24300.8429-
2.2085385001.59411.22270.8435-
2.2371390001.52371.26100.8412-
2.2658395001.61191.25150.8458-
2.2945400001.50831.24760.8413-
2.3232405001.56371.23110.8463-
2.3519410001.5421.23180.8457-
2.3805415001.56751.23170.8444-
2.4092420001.50881.23340.8417-
2.4379425001.51451.22230.8430-
2.4666430001.54621.22530.8451-
2.4953435001.53051.20750.8440-
2.5239440001.49761.21810.8432-
2.5526445001.50381.22310.8463-
2.5813450001.5311.20010.8486-
2.6100455001.47041.20160.8471-
2.6387460001.49321.19850.8463-
2.6674465001.44481.19280.8507-
2.6960470001.47981.18880.8471-
2.7247475001.4761.19410.8449-
2.7534480001.44351.20130.8453-
2.7821485001.40871.20480.8443-
2.8108490001.41941.20430.8425-
2.8394495001.39391.19360.8440-
2.8681500001.40541.18150.8447-
2.8968505001.43971.18540.8435-
2.9255510001.44041.16090.8463-
2.9542515001.40511.17130.8465-
2.9828520001.36191.16930.8444-
3.0115525001.32741.17210.8461-
3.0402530001.25631.18410.8453-
3.0689535001.26581.19250.8459-
3.0976540001.28911.17910.8458-
3.1263545001.29961.17320.8424-
3.1549550001.21081.19870.8455-
3.1836555001.22121.20290.8490-
3.2123560001.20531.18220.8476-
3.2410565001.24521.18310.8472-
3.2697570001.20971.16400.8477-
3.2983575001.19341.17860.8509-
3.3270580001.20281.18720.8474-
3.3557585001.2231.18940.8518-
3.3844590001.19421.18700.8513-
3.4131595001.21411.19430.8486-
3.4417600001.16491.16690.8469-
3.4704605001.181.19440.8475-
3.4991610001.18721.19150.8473-
3.5278615001.13971.19980.8462-
3.5565620001.18651.18620.8466-
3.5852625001.20271.18750.8460-
3.6138630001.15261.17910.8486-
3.6425635001.2511.18250.8500-
3.6712640001.16841.18690.8463-
3.6999645001.17481.19390.8475-
3.7286650001.15851.18840.8470-
3.7572655001.19631.17390.8484-
3.7859660001.19371.19130.8467-
3.8146665001.1661.17690.8475-
3.8433670001.17781.20290.8477-
3.8720675001.12131.19130.8493-
3.9006680001.15641.19430.8503-
3.9293685001.13331.19590.8457-
3.9580690001.12641.18950.8460-
3.9867695001.13831.18430.8476-
4.0154700001.09411.20520.8499-
4.0441705001.02381.19990.8479-
4.0727710000.99761.18650.8466-
4.1014715000.99581.20580.8466-
4.1301720001.00011.20440.8437-
4.1588725001.06171.21270.8425-
4.1875730001.00971.20460.8444-
4.2161735001.0091.18410.8481-
4.2448740000.99921.20060.8466-
4.2735745000.99981.19290.8486-
4.3022750000.96531.19140.8480-
4.3309755000.99791.20300.8460-
4.3595760001.03851.21450.8462-
4.3882765001.00291.22640.8457-
4.4169770001.00971.20830.8458-
4.4456775000.98661.21040.8443-
4.4743780000.99021.19330.8476-
4.5030785001.01871.20640.8476-
4.5316790000.98831.20110.8457-
4.5603795000.97131.20510.8465-
4.5890800000.98861.21300.8464-
4.6177805001.00871.19610.8478-
4.6464810001.02241.19360.8485-
4.6750815000.99411.19440.8455-
4.7037820001.02941.18180.8467-
4.7324825000.97021.20700.8453-
4.7611830000.97721.19660.8440-
4.7898835000.99381.20630.8446-
4.8184840000.99351.19370.8472-
4.8471845001.00161.18470.8469-
4.8758850000.98721.18740.8464-
4.9045855000.99031.18770.8454-
4.9332860000.99631.18730.8415-
4.9619865000.96411.17480.8469-
4.9905870000.97211.17560.8479-
5.0192875000.90471.19860.8466-
5.0479880000.88491.20330.8469-
5.0766885000.85131.21420.8458-
5.1053890000.86561.19170.8438-
5.1339895000.88111.18390.8455-
5.1626900000.88341.19880.8416-
5.1913905000.90941.20370.8450-
5.2200910000.8811.20780.8413-
5.2487915000.85061.20180.8395-
5.2773920000.91251.17370.8417-
5.3060925000.84091.17860.8429-
5.3347930000.891.19650.8436-
5.3634935000.88071.18730.8444-
5.3921940000.90011.17920.8477-
5.4208945000.87121.19220.8460-
5.4494950000.8681.18550.8465-
5.4781955000.85991.19530.8426-
5.5068960000.86591.18000.8467-
5.5355965000.9011.18050.8443-
5.5642970000.82891.17170.8449-
5.5928975000.86261.18120.8440-
5.6215980000.83871.16200.8472-
5.6502985000.85571.17520.8457-
5.6789990000.84741.17730.8434-
5.7076995000.86181.17620.8454-
5.73621000000.88821.18270.8441-
5.76491005000.8221.18290.8459-
5.79361010000.84461.18970.8453-
5.82231015000.8531.19650.8440-
5.85101020000.84371.17740.8440-
5.87971025000.83271.17910.8430-
5.90831030000.86391.18820.8425-
5.93701035000.83661.17750.8444-
5.96571040000.8711.15920.8453-
5.99441045000.8651.18320.8445-
6.02311050000.81271.19950.8452-
6.05171055000.78831.18900.8452-
6.08041060000.72881.18760.8456-
6.10911065000.76131.19930.8436-
6.13781070000.73861.20390.8465-
6.16651075000.74231.21020.8446-
6.19511080000.77751.20910.8444-
6.22381085000.79931.19350.8462-
6.25251090000.78181.17210.8480-
6.28121095000.80451.18040.8486-
6.30991100000.78961.18710.8478-
6.33861105000.78571.17640.8484-
6.36721110000.72311.19820.8470-
6.39591115000.72351.21150.8449-
6.42461120000.75561.19550.8462-
6.45331125000.75221.20300.8462-
6.48201130000.75731.18820.8470-
6.51061135000.74651.19330.8455-
6.53931140000.76761.18240.8458-
6.56801145000.75061.19580.8449-
6.59671150000.78841.21200.8446-
6.62541155000.76891.18320.8468-
6.65401160000.77251.18560.8470-
6.68271165000.77751.20230.8440-
6.71141170000.72181.19930.8447-
6.74011175000.75251.19520.8456-
6.76881180000.77141.18830.8461-
6.79751185000.76191.19960.8485-
6.82611190000.77191.20160.8458-
6.85481195000.72591.20380.8448-
6.88351200000.73151.20280.8455-
6.91221205000.73971.18500.8468-
6.94091210000.78621.19970.8446-
6.96951215000.75061.19410.8459-
6.99821220000.72721.19900.8477-
7.02691225000.72741.20140.8446-
7.05561230000.73181.20110.8450-
7.08431235000.67541.22000.8439-
7.11291240000.67671.21140.8444-
7.14161245000.70881.21520.8447-
7.17031250000.69771.20490.8442-
7.19901255000.67971.22320.8420-
7.22771260000.72121.21790.8436-
7.25641265000.66841.20940.8431-
7.28501270000.67961.21230.8419-
7.31371275000.6851.20780.8424-
7.34241280000.67641.20670.8431-
7.37111285000.71981.21050.8424-
7.39981290000.68581.22320.8437-
7.42841295000.69161.21490.8458-
7.45711300000.70411.21600.8423-
7.48581305000.69311.20260.8425-
7.51451310000.69721.21060.8471-
7.54321315000.67671.20000.8473-
7.57181320000.67161.20990.8448-
7.60051325000.68331.21230.8437-
7.62921330000.69851.19390.8447-
7.65791335000.68391.22560.8435-
7.68661340000.71391.20380.8444-
7.71531345000.68851.21480.8452-
7.74391350000.68891.19660.8448-
7.77261355000.6871.20920.8437-
7.80131360000.6861.21680.8419-
7.83001365000.67831.20630.8443-
7.85871370000.65951.21560.8428-
7.88731375000.66611.21390.8431-
7.91601380000.67711.21710.8464-
7.94471385000.66281.20140.8448-
7.97341390000.67411.20730.8459-
8.00211395000.66971.20240.8425-
8.03071400000.6051.21850.8447-
8.05941405000.6361.21030.8428-
8.08811410000.63621.20350.8443-
8.11681415000.6511.20270.8447-
8.14551420000.63091.21050.8447-
8.17421425000.61581.21060.8449-
8.20281430000.62711.22480.8449-
8.23151435000.65151.22670.8442-
8.26021440000.65741.23080.8439-
8.28891445000.64761.23150.8434-
8.31761450000.63421.21290.8441-
8.34621455000.60621.21960.8426-
8.37491460000.61261.20690.8432-
8.40361465000.61191.20610.8417-
8.43231470000.62371.20020.8433-
8.46101475000.64381.19010.8439-
8.48961480000.66471.19960.8449-
8.51831485000.64461.21000.8437-
8.54701490000.64311.19960.8444-
8.57571495000.63691.19800.8462-
8.60441500000.60871.20080.8473-
8.63311505000.64621.19580.8458-
8.66171510000.63561.20260.8444-
8.69041515000.62661.19280.8466-
8.71911520000.61971.21580.8454-
8.74781525000.6241.19410.8461-
8.77651530000.59351.18460.8462-
8.80511535000.6111.18440.8449-
8.83381540000.6331.19730.8448-
8.86251545000.61021.20330.8456-
8.89121550000.61411.19770.8466-
8.91991555000.63211.19830.8468-
8.94851560000.64171.21060.8473-
8.97721565000.6331.20500.8478-
9.00591570000.61461.21390.8471-
9.03461575000.57961.22460.8460-
9.06331580000.57891.21430.8481-
9.09201585000.54731.22870.8447-
9.12061590000.55771.20860.8464-
9.14931595000.5841.19740.8473-
9.17801600000.58551.20950.8462-
9.20671605000.60771.21570.8448-
9.23541610000.57681.21640.8445-
9.26401615000.57271.20920.8471-
9.29271620000.57641.21070.8454-
9.32141625000.55631.22060.8459-
9.35011630000.56471.21410.8457-
9.37881635000.58381.21840.8452-
9.40741640000.58021.21290.8460-
9.43611645000.57311.20180.8468-
9.46481650000.56481.21250.8470-
9.49351655000.5961.21740.8460-
9.52221660000.57341.22170.8444-
9.55091665000.57991.23030.8461-
9.57951670000.57051.21360.8462-
9.60821675000.57781.22680.8440-
9.63691680000.58041.21910.8466-
9.66561685000.5511.24030.8454-
9.69431690000.56051.21460.8455-
9.72291695000.58871.23130.8427-
9.75161700000.55991.22980.8428-
9.78031705000.61831.22140.8448-
9.80901710000.58491.22990.8429-
9.83771715000.57691.21800.8452-
9.86631720000.5881.21720.8443-
9.89501725000.58061.21870.8458-
9.92371730000.57431.21810.8452-
9.95241735000.57991.22170.8442-
9.98111740000.57941.22670.8439-
10.00981745000.5631.21440.8451-
10.03841750000.53741.22890.8456-
10.06711755000.53421.23130.8456-
10.09581760000.54761.22590.8458-
10.12451765000.54931.23120.8441-
10.15321770000.55941.22150.8454-
10.18181775000.5291.22120.8444-
10.21051780000.55221.24280.8439-
10.23921785000.52581.22590.8441-
10.26791790000.54851.24570.8429-
10.29661795000.54221.22390.8448-
10.32521800000.54891.22200.8441-
10.35391805000.56481.22570.8440-
10.38261810000.5481.22270.8453-
10.41131815000.54481.22220.8453-
10.44001820000.57021.22680.8441-
10.46871825000.53891.23450.8447-
10.49731830000.51971.24550.8433-
10.52601835000.53941.22520.8447-
10.55471840000.54571.23190.8435-
10.58341845000.52761.22840.8442-
10.61211850000.55051.21860.8441-
10.64071855000.56331.23760.8435-
10.66941860000.52061.22740.8435-
10.69811865000.54161.22860.8427-
10.72681870000.53481.22630.8442-
10.75551875000.51551.24100.8433-
10.78411880000.56671.22730.8419-
10.81281885000.51061.23160.8419-
10.84151890000.57581.22880.8424-
10.87021895000.54721.23110.8411-
10.89891900000.52181.23600.8424-
10.92761905000.54551.23260.8424-
10.95621910000.56951.22290.8420-
10.98491915000.56761.21500.8420-
11.01361920000.52731.21100.8427-
11.04231925000.50561.22620.8419-
11.07101930000.51691.23280.8417-
11.09961935000.49611.23320.8414-
11.12831940000.50231.22480.8423-
11.15701945000.47221.23680.8420-
11.18571950000.52921.23430.8414-
11.21441955000.52041.25070.8408-
11.24301960000.50881.23590.8411-
11.27171965000.51261.23940.8409-
11.30041970000.51771.23080.8418-
11.32911975000.51361.24120.8399-
11.35781980000.53611.22840.8412-
11.38651985000.51461.23190.8411-
11.41511990000.54251.22290.8425-
11.44381995000.51871.21980.8437-
11.47252000000.51531.22270.8421-
11.50122005000.51931.22990.8416-
11.52992010000.51761.23760.8403-
11.55852015000.54161.22160.8410-
11.58722020000.53251.22940.8399-
11.61592025000.51691.22980.8415-
11.64462030000.49981.23690.8411-
11.67332035000.51121.23450.8410-
11.70192040000.50471.22620.8415-
11.73062045000.52531.22180.8420-
11.75932050000.52361.21920.8410-
11.78802055000.51.21480.8414-
11.81672060000.49131.22380.8402-
11.84542065000.53431.21730.8408-
11.87402070000.50941.23160.8398-
11.90272075000.48651.22670.8394-
11.93142080000.52391.21450.8407-
11.96012085000.51571.22150.8411-
11.98882090000.47321.22330.8409-
12.01742095000.47941.21550.8417-
12.04612100000.48551.22680.8407-
12.07482105000.48311.22970.8404-
12.10352110000.49821.23190.8406-
12.13222115000.47491.23260.8406-
12.16082120000.46561.23180.8399-
12.18952125000.49961.23310.8407-
12.21822130000.47961.23020.8413-
12.24692135000.47171.23170.8406-
12.27562140000.50281.22640.8407-
12.30432145000.46661.23180.8404-
12.33292150000.48281.21680.8412-
12.36162155000.51811.21860.8414-
12.39032160000.46861.22840.8402-
12.41902165000.50631.22530.8406-
12.44772170000.4961.23420.8398-
12.47632175000.49751.22330.8416-
12.50502180000.50641.21480.8421-
12.53372185000.50041.21980.8424-
12.56242190000.46961.23210.8407-
12.59112195000.4771.22730.8413-
12.61972200000.51171.23080.8411-
12.64842205000.46561.24170.8402-
12.67712210000.50571.23200.8407-
12.70582215000.49811.23570.8410-
12.73452220000.48931.23350.8412-
12.76322225000.47161.23560.8404-
12.79182230000.50051.22840.8403-
12.82052235000.47461.22010.8412-
12.84922240000.47871.22650.8409-
12.87792245000.46311.23080.8405-
12.90662250000.49141.23040.8405-
12.93522255000.49731.23420.8401-
12.96392260000.48721.22690.8405-
12.99262265000.51941.21930.8412-
13.02132270000.46251.22270.8413-
13.05002275000.45631.21890.8422-
13.07862280000.47861.22850.8411-
13.10732285000.48921.23010.8409-
13.13602290000.45741.23210.8409-
13.16472295000.48991.24070.8407-
13.19342300000.46451.22980.8407-
13.22212305000.48261.23820.8402-
13.25072310000.45731.23770.8404-
13.27942315000.45931.23230.8404-
13.30812320000.4641.22950.8400-
13.33682325000.48691.23810.8392-
13.36552330000.4541.23130.8395-
13.39412335000.47281.23210.8399-
13.42282340000.44271.23590.8399-
13.45152345000.48831.23760.8402-
13.48022350000.46561.23020.8409-
13.50892355000.47491.22960.8416-
13.53752360000.46811.22360.8417-
13.56622365000.48511.23270.8409-
13.59492370000.47821.22820.8416-
13.62362375000.46941.22850.8413-
13.65232380000.4811.22970.8408-
13.68092385000.47741.23060.8400-
13.70962390000.46941.23330.8404-
13.73832395000.45621.23440.8412-
13.76702400000.46071.22690.8418-
13.79572405000.49121.22310.8413-
13.82442410000.47531.22160.8414-
13.85302415000.4751.22170.8418-
13.88172420000.47631.22760.8411-
13.91042425000.48771.22590.8417-
13.93912430000.47271.23130.8412-
13.96782435000.46521.22860.8416-
13.99642440000.47381.23120.8413-
14.02512445000.43531.23150.8416-
14.05382450000.49111.22980.8413-
14.08252455000.46331.22960.8411-
14.11122460000.48061.22720.8414-
14.13982465000.45611.22910.8412-
14.16852470000.43351.22990.8410-
14.19722475000.46491.22480.8414-
14.22592480000.4791.22580.8418-
14.25462485000.44171.22350.8419-
14.28332490000.4741.22570.8415-
14.31192495000.47111.22740.8417-
14.34062500000.45781.22630.8416-
14.36932505000.46071.22780.8412-
14.39802510000.45191.23060.8411-
14.42672515000.48761.23160.8411-
14.45532520000.4551.23520.8409-
14.48402525000.43741.23520.8413-
14.51272530000.4321.23230.8416-
14.54142535000.45631.23230.8415-
14.57012540000.45081.23370.8412-
14.59872545000.4411.23510.8411-
14.62742550000.48611.23400.8414-
14.65612555000.46251.23400.8413-
14.68482560000.48471.23300.8412-
14.71352565000.471.23230.8411-
14.74222570000.44381.23220.8411-
14.77082575000.46041.23150.8413-
14.79952580000.45091.23180.8413-
14.82822585000.43491.23090.8414-
14.85692590000.4531.23090.8415-
14.88562595000.44651.23160.8415-
14.91422600000.45321.23190.8414-
14.94292605000.48111.23210.8415-
14.97162610000.48261.23230.8415-
-1-1---0.8371

</details>

Framework Versions

  • —Python: 3.13.0
  • —Sentence Transformers: 5.1.2
  • —Transformers: 4.57.1
  • —PyTorch: 2.9.1+cu128
  • —Accelerate: 1.11.0
  • —Datasets: 4.4.1
  • —Tokenizers: 0.22.1

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",
}
MatryoshkaLoss
bibtex
@misc{kusupati2024matryoshka,
    title={Matryoshka Representation Learning},
    author={Aditya Kusupati and Gantavya Bhatt and Aniket Rege and Matthew Wallingford and Aditya Sinha and Vivek Ramanujan and William Howard-Snyder and Kaifeng Chen and Sham Kakade and Prateek Jain and Ali Farhadi},
    year={2024},
    eprint={2205.13147},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}
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. -->