CoolFace
Modelpublic

Neelkumar/my-embedding-gemma-5424

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes86downloads
Model Card

SentenceTransformer based on google/embeddinggemma-300m

This is a sentence-transformers model finetuned from google/embeddinggemma-300m. 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/embeddinggemma-300m <!-- at revision 57c266a740f537b4dc058e1b0cda161fd15afa75 -->
  • —Maximum Sequence Length: 2048 tokens
  • —Output Dimensionality: 768 dimensions
  • —Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 2048, 'do_lower_case': False, 'architecture': 'Gemma3TextModel'})
  (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})
  (2): Dense({'in_features': 768, 'out_features': 3072, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity'})
  (3): Dense({'in_features': 3072, 'out_features': 768, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity'})
  (4): 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("Neelkumar/my-embedding-gemma-5424")
# Run inference
queries = [
    "How can I find information about past Access to Information requests?",
]
documents = [
    'Search the summaries of completed Access to Information (ATI) requests to find information about ATI requests made to the Government of Canada after January 2020.',
    'What are the eligibility requirements for the Canada Pension Plan?',
    'This house style was a popular design from 1890-1900.',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 768] [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 0.9569,  0.1398, -0.0558]])

<!--

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: 5,424 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: 15.8 tokens</li><li>max: 35 tokens</li></ul> | <ul><li>min: 8 tokens</li><li>mean: 32.04 tokens</li><li>max: 130 tokens</li></ul> | <ul><li>min: 11 tokens</li><li>mean: 15.01 tokens</li><li>max: 42 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:--------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------| | <code>Quelles mesures les propriétaires peuvent-ils prendre pour éliminer les punaises de lit?</code> | <code>Les propriétaires peuvent instaurer différentes mesures pour prévenir et éliminer les punaises des lits.</code> | <code>Quelles sont les conditions pour obtenir une assurance automobile?</code> | | <code>Comment les pages web du gouvernement de la Saskatchewan sont-elles traduites en français?</code> | <code>Un certain nombre de pages sur le site web du gouvernement de la Saskatchewan ont été traduites professionnellement en français.</code> | <code>Quelles sont les exigences pour obtenir un permis de conduire?</code> | | <code>How long do plant breeders' rights last in Canada?</code> | <code>Plant breeders receive legal protection for up to 25 years for trees and vines, and 20 years for other plant varieties.</code> | <code>What are the requirements for importing a pet into Canada?</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 4
  • —learning_rate: 2e-05
  • —num_train_epochs: 10
  • —warmup_ratio: 0.1
  • —prompts: task: sentence similarity | query:
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: 4
  • —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: 10
  • —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: 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: adamw_torch
  • —optim_args: None
  • —adafactor: False
  • —group_by_length: False
  • —length_column_name: length
  • —ddp_find_unused_parameters: None
  • —ddp_bucket_cap_mb: None
  • —ddp_broadcast_buffers: False
  • —dataloader_pin_memory: True
  • —dataloader_persistent_workers: False
  • —skip_memory_metrics: True
  • —use_legacy_prediction_loop: False
  • —push_to_hub: False
  • —resume_from_checkpoint: None
  • —hub_model_id: None
  • —hub_strategy: every_save
  • —hub_private_repo: None
  • —hub_always_push: False
  • —hub_revision: None
  • —gradient_checkpointing: False
  • —gradient_checkpointing_kwargs: None
  • —include_inputs_for_metrics: False
  • —include_for_metrics: []
  • —eval_do_concat_batches: True
  • —fp16_backend: auto
  • —push_to_hub_model_id: None
  • —push_to_hub_organization: None
  • —mp_parameters:
  • —auto_find_batch_size: False
  • —full_determinism: False
  • —torchdynamo: None
  • —ray_scope: last
  • —ddp_timeout: 1800
  • —torch_compile: False
  • —torch_compile_backend: None
  • —torch_compile_mode: None
  • —include_tokens_per_second: False
  • —include_num_input_tokens_seen: False
  • —neftune_noise_alpha: None
  • —optim_target_modules: None
  • —batch_eval_metrics: False
  • —eval_on_start: False
  • —use_liger_kernel: False
  • —liger_kernel_config: None
  • —eval_use_gather_object: False
  • —average_tokens_across_devices: False
  • —prompts: task: sentence similarity | query:
  • —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.0147200.1138
0.0295400.0682
0.0442600.0099
0.0590800.0212
0.07371000.0447
0.08851200.0047
0.10321400.0057
0.11801600.0025
0.13271800.0036
0.14752000.0062
0.16222200.0285
0.17702400.0069
0.19172600.0008
0.20652800.0104
0.22123000.0019
0.23603200.0576
0.25073400.0088
0.26553600.0046
0.28023800.0014
0.29504000.001
0.30974200.0184
0.32454400.0016
0.33924600.0019
0.35404800.0192
0.36875000.0392
0.38355200.0051
0.39825400.0023
0.41305600.0119
0.42775800.0022
0.44256000.0046
0.45726200.0041
0.47206400.0066
0.48676600.0115
0.50156800.0112
0.51627000.0327
0.53107200.0009
0.54577400.0031
0.56057600.0007
0.57527800.0367
0.59008000.0344
0.60478200.0027
0.61958400.0105
0.63428600.0597
0.64908800.0594
0.66379000.0022
0.67859200.0177
0.69329400.0041
0.70809600.0123
0.72279800.0988
0.737510000.0248
0.752210200.0021
0.767010400.0376
0.781710600.0216
0.796510800.0779
0.811211000.0317
0.826011200.0233
0.840711400.0201
0.855511600.1391
0.870211800.0846
0.885012000.0064
0.899712200.1509
0.914512400.0196
0.929212600.0198
0.944012800.0174
0.958713000.117
0.973513200.0741
0.988213400.3282
1.002913600.0314
1.017713800.1522
1.032414000.0378
1.047214200.025
1.061914400.0442
1.076714600.0314
1.091414800.0745
1.106215000.0272
1.120915200.1248
1.135715400.299
1.150415600.0123
1.165215800.0245
1.179916000.0153
1.194716200.0171
1.209416400.0146
1.224216600.0313
1.238916800.0317
1.253717000.084
1.268417200.0569
1.283217400.1958
1.297917600.09
1.312717800.0526
1.327418000.0956
1.342218200.1601
1.356918400.156
1.371718600.0296
1.386418800.0391
1.401219000.0816
1.415919200.1262
1.430719400.1375
1.445419600.3373
1.460219800.094
1.474920000.0875
1.489720200.1161
1.504420400.1739
1.519220600.0526
1.533920800.1364
1.548721000.0508
1.563421200.0614
1.578221400.0589
1.592921600.0593
1.607721800.0078
1.622422000.2009
1.637222200.1356
1.651922400.1268
1.666722600.0257
1.681422800.0679
1.696223000.0229
1.710923200.1467
1.725723400.1239
1.740423600.0138
1.755223800.0997
1.769924000.0197
1.784724200.0358
1.799424400.0368
1.814224600.0755
1.828924800.1305
1.843725000.0164
1.858425200.1273
1.873225400.0255
1.887925600.0547
1.902725800.0494
1.917426000.1257
1.932226200.0434
1.946926400.0358
1.961726600.1272
1.976426800.022
1.991227000.054
2.005927200.0281
2.020627400.0229
2.035427600.0117
2.050127800.0242
2.064928000.0819
2.079628200.0625
2.094428400.0622
2.109128600.0316
2.123928800.2254
2.138629000.0857
2.153429200.026
2.168129400.0023
2.182929600.0053
2.197629800.004
2.212430000.0087
2.227130200.0068
2.241930400.0207
2.256630600.0522
2.271430800.005
2.286131000.038
2.300931200.0059
2.315631400.035
2.330431600.0603
2.345131800.0209
2.359932000.0103
2.374632200.0109
2.389432400.0755
2.404132600.0021
2.418932800.1019
2.433633000.1014
2.448433200.0198
2.463133400.0205
2.477933600.0431
2.492633800.1268
2.507434000.0097
2.522134200.0035
2.536934400.0292
2.551634600.0175
2.566434800.0687
2.581135000.021
2.595935200.0438
2.610635400.0024
2.625435600.0029
2.640135800.0267
2.654936000.0288
2.669636200.0058
2.684436400.0634
2.699136600.0404
2.713936800.0253
2.728637000.0127
2.743437200.0786
2.758137400.0739
2.772937600.0348
2.787637800.0697
2.802438000.0143
2.817138200.015
2.831938400.0139
2.846638600.023
2.861438800.0625
2.876139000.01
2.890939200.0656
2.905639400.0435
2.920439600.0367
2.935139800.0482
2.949940000.0557
2.964640200.1046
2.979440400.0578
2.994140600.0793
3.008840800.0053
3.023641000.0035
3.038341200.0095
3.053141400.001
3.067841600.0368
3.082641800.0251
3.097342000.0084
3.112142200.0224
3.126842400.0407
3.141642600.0611
3.156342800.0226
3.171143000.0092
3.185843200.0052
3.200643400.0578
3.215343600.0259
3.230143800.0002
3.244844000.0787
3.259644200.0194
3.274344400.0002
3.289144600.0006
3.303844800.0188
3.318645000.0722
3.333345200.0621
3.348145400.0017
3.362845600.1242
3.377645800.0057
3.392346000.0064
3.407146200.0016
3.421846400.0007
3.436646600.1187
3.451346800.0529
3.466147000.0294
3.480847200.1213
3.495647400.0221
3.510347600.0234
3.525147800.0034
3.539848000.0107
3.554648200.012
3.569348400.0351
3.584148600.0099
3.598848800.002
3.613649000.0024
3.628349200.0321
3.643149400.0008
3.657849600.038
3.672649800.0944
3.687350000.0227
3.702150200.0088
3.716850400.0573
3.731650600.2029
3.746350800.0522
3.761151000.012
3.775851200.0044
3.790651400.0178
3.805351600.0032
3.820151800.0375
3.834852000.0322
3.849652200.0066
3.864352400.0108
3.879152600.0143
3.893852800.0271
3.908653000.003
3.923353200.0183
3.938153400.0307
3.952853600.0026
3.967653800.0031
3.982354000.0011
3.997154200.0749
4.011854400.0192
4.026554600.037
4.041354800.0017
4.056055000.0013
4.070855200.0246
4.085555400.0007
4.100355600.045
4.115055800.038
4.129856000.0179
4.144556200.021
4.159356400.0012
4.174056600.0001
4.188856800.0004
4.203557000.0001
4.218357200.0021
4.233057400.0279
4.247857600.0044
4.262557800.0063
4.277358000.0046
4.292058200.0692
4.306858400.0007
4.321558600.0053
4.336358800.0288
4.351059000.0197
4.365859200.0007
4.380559400.002
4.395359600.0059
4.410059800.0258
4.424860000.001
4.439560200.0017
4.454360400.0024
4.469060600.0748
4.483860800.002
4.498561000.0498
4.513361200.0016
4.528061400.0018
4.542861600.0022
4.557561800.0012
4.572362000.009
4.587062200.0659
4.601862400.0121
4.616562600.0294
4.631362800.0002
4.646063000.0184
4.660863200.0158
4.675563400.0104
4.690363600.0498
4.705063800.0061
4.719864000.0305
4.734564200.0427
4.749364400.0004
4.764064600.0009
4.778864800.0001
4.793565000.0261
4.808365200.0019
4.823065400.0024
4.837865600.0228
4.852565800.0002
4.867366000.002
4.882066200.0005
4.896866400.0082
4.911566600.0119
4.926366800.0175
4.941067000.0011
4.955867200.0021
4.970567400.0106
4.985367600.018
5.067800.019
5.014768000.0629
5.029568200.0076
5.044268400.0004
5.059068600.0014
5.073768800.0012
5.088569000.0021
5.103269200.0032
5.118069400.0275
5.132769600.019
5.147569800.0006
5.162270000.0006
5.177070200.0049
5.191770400.0359
5.206570600.0028
5.221270800.0012
5.236071000.0138
5.250771200.0042
5.265571400.0003
5.280271600.0056
5.295071800.0329
5.309772000.0016
5.324572200.0092
5.339272400.0002
5.354072600.0211
5.368772800.019
5.383573000.0012
5.398273200.0002
5.413073400.0002
5.427773600.0143
5.442573800.0004
5.457274000.0004
5.472074200.0068
5.486774400.0201
5.501574600.0003
5.516274800.0042
5.531075000.0007
5.545775200.0664
5.560575400.0014
5.575275600.0175
5.590075800.0362
5.604776000.0225
5.619576200.0003
5.634276400.0025
5.649076600.0128
5.663776800.0013
5.678577000.0042
5.693277200.0012
5.708077400.0017
5.722777600.0039
5.737577800.0013
5.752278000.0008
5.767078200.006
5.781778400.0177
5.796578600.0189
5.811278800.0015
5.826079000.0003
5.840779200.001
5.855579400.0269
5.870279600.0006
5.885079800.0176
5.899780000.0048
5.914580200.0031
5.929280400.0056
5.944080600.0015
5.958780800.0102
5.973581000.0047
5.988281200.0339
6.002981400.0027
6.017781600.0008
6.032481800.0014
6.047282000.0001
6.061982200.0183
6.076782400.0142
6.091482600.0004
6.106282800.0392
6.120983000.0016
6.135783200.0025
6.150483400.0017
6.165283600.018
6.179983800.0031
6.194784000.0021
6.209484200.0244
6.224284400.0263
6.238984600.0183
6.253784800.0367
6.268485000.0009
6.283285200.0
6.297985400.0001
6.312785600.0011
6.327485800.0007
6.342286000.0004
6.356986200.0044
6.371786400.0174
6.386486600.0002
6.401286800.0176
6.415987000.0341
6.430787200.0015
6.445487400.0002
6.460287600.0043
6.474987800.0036
6.489788000.0001
6.504488200.0004
6.519288400.0474
6.533988600.0001
6.548788800.0003
6.563489000.0021
6.578289200.0014
6.592989400.0004
6.607789600.0176
6.622489800.0001
6.637290000.0009
6.651990200.0015
6.666790400.0003
6.681490600.0001
6.696290800.0016
6.710991000.0182
6.725791200.0002
6.740491400.0009
6.755291600.0018
6.769991800.0182
6.784792000.0
6.799492200.0206
6.814292400.0001
6.828992600.0002
6.843792800.0037
6.858493000.0238
6.873293200.0002
6.887993400.0
6.902793600.0002
6.917493800.019
6.932294000.0059
6.946994200.0002
6.961794400.0001
6.976494600.0004
6.991294800.0023
7.005995000.0006
7.020695200.0019
7.035495400.0176
7.050195600.0026
7.064995800.0014
7.079696000.0003
7.094496200.0001
7.109196400.0002
7.123996600.0362
7.138696800.001
7.153497000.0001
7.168197200.0002
7.182997400.0029
7.197697600.0002
7.212497800.0003
7.227198000.0027
7.241998200.0001
7.256698400.0001
7.271498600.0002
7.286198800.0124
7.300999000.0361
7.315699200.0039
7.330499400.0
7.345199600.0
7.359999800.0008
7.3746100000.0002
7.3894100200.0003
7.4041100400.0001
7.4189100600.0174
7.4336100800.0015
7.4484101000.0152
7.4631101200.0351
7.4779101400.0007
7.4926101600.0005
7.5074101800.0005
7.5221102000.0001
7.5369102200.0002
7.5516102400.0001
7.5664102600.001
7.5811102800.0057
7.5959103000.0012
7.6106103200.0001
7.6254103400.0005
7.6401103600.0016
7.6549103800.0072
7.6696104000.0007
7.6844104200.0001
7.6991104400.0002
7.7139104600.0036
7.7286104800.0001
7.7434105000.0002
7.7581105200.0001
7.7729105400.0001
7.7876105600.0007
7.8024105800.0002
7.8171106000.0001
7.8319106200.018
7.8466106400.0882
7.8614106600.0006
7.8761106800.0001
7.8909107000.0001
7.9056107200.0001
7.9204107400.0176
7.9351107600.0002
7.9499107800.0231
7.9646108000.0002
7.9794108200.0002
7.9941108400.0
8.0088108600.0001
8.0236108800.0001
8.0383109000.0003
8.0531109200.0172
8.0678109400.0002
8.0826109600.018
8.0973109800.0174
8.1121110000.0001
8.1268110200.0174
8.1416110400.0
8.1563110600.0039
8.1711110800.0001
8.1858111000.0
8.2006111200.002
8.2153111400.0176
8.2301111600.0022
8.2448111800.0001
8.2596112000.0
8.2743112200.0027
8.2891112400.0198
8.3038112600.0
8.3186112800.0003
8.3333113000.0223
8.3481113200.0092
8.3628113400.0001
8.3776113600.0009
8.3923113800.0014
8.4071114000.0006
8.4218114200.0006
8.4366114400.0006
8.4513114600.0005
8.4661114800.0192
8.4808115000.0347
8.4956115200.0009
8.5103115400.0002
8.5251115600.0
8.5398115800.0
8.5546116000.0002
8.5693116200.0174
8.5841116400.0001
8.5988116600.0171
8.6136116800.0001
8.6283117000.0001
8.6431117200.0428
8.6578117400.0003
8.6726117600.0
8.6873117800.0001
8.7021118000.0176
8.7168118200.0358
8.7316118400.0002
8.7463118600.0002
8.7611118800.0001
8.7758119000.0002
8.7906119200.0015
8.8053119400.0001
8.8201119600.0001
8.8348119800.0112
8.8496120000.0033
8.8643120200.0001
8.8791120400.001
8.8938120600.0174
8.9086120800.0001
8.9233121000.0002
8.9381121200.0001
8.9528121400.0001
8.9676121600.0222
8.9823121800.0003
8.9971122000.0001
9.0118122200.0
9.0265122400.0001
9.0413122600.0182
9.0560122800.0174
9.0708123000.0
9.0855123200.0
9.1003123400.0023
9.1150123600.0001
9.1298123800.0248
9.1445124000.0
9.1593124200.0
9.1740124400.0
9.1888124600.0001
9.2035124800.0087
9.2183125000.0
9.2330125200.0003
9.2478125400.0174
9.2625125600.0
9.2773125800.0006
9.2920126000.0001
9.3068126200.0053
9.3215126400.0
9.3363126600.0174
9.3510126800.0001
9.3658127000.0002
9.3805127200.0001
9.3953127400.0001
9.4100127600.0001
9.4248127800.0002
9.4395128000.0002
9.4543128200.0023
9.4690128400.0
9.4838128600.0018
9.4985128800.0028
9.5133129000.0174
9.5280129200.0001
9.5428129400.0001
9.5575129600.0174
9.5723129800.0003
9.5870130000.0
9.6018130200.0174
9.6165130400.0001
9.6313130600.0
9.6460130800.0001
9.6608131000.0174
9.6755131200.0173
9.6903131400.0
9.7050131600.0005
9.7198131800.0001
9.7345132000.0002
9.7493132200.0
9.7640132400.0001
9.7788132600.0
9.7935132800.0026
9.8083133000.0003
9.8230133200.0001
9.8378133400.0174
9.8525133600.0099
9.8673133800.0002
9.8820134000.0
9.8968134200.0032
9.9115134400.0177
9.9263134600.0175
9.9410134800.0176
9.9558135000.0001
9.9705135200.0
9.9853135400.0011
10.0135600.0174

</details>

Framework Versions

  • —Python: 3.11.13
  • —Sentence Transformers: 5.1.1
  • —Transformers: 4.57.0.dev0
  • —PyTorch: 2.6.0+cu124
  • —Accelerate: 1.8.1
  • —Datasets: 3.6.0
  • —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",
}
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. -->