CoolFace
Modelpublic

dkqjrm/bge-m3-embedding-augmented-olive-lora-sentence

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
Model Card

SentenceTransformer based on unsloth/bge-m3

This is a sentence-transformers model finetuned from unsloth/bge-m3 on the augmented-olive-product-sentence dataset. It maps sentences & paragraphs to a 1024-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: unsloth/bge-m3 <!-- at revision 57cb1c17d3cb917401c50b204393ee455359a565 -->
  • —Maximum Sequence Length: 8192 tokens
  • —Output Dimensionality: 1024 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —augmented-olive-product-sentence <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 8192, 'do_lower_case': False, 'architecture': 'PeftModelForFeatureExtraction'})
  (1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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("dkqjrm/bge-m3-embedding-augmented-olive-lora-sentence")
# Run inference
sentences = [
    '유리아쥬 [3중장벽강화 미스트] 유리아쥬 오떼르말 50ml(N)',
    'ユリアージュミスト',
    'ギャツビー ワックス',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000,  0.6145, -0.0901],
#         [ 0.6145,  1.0000,  0.0137],
#         [-0.0901,  0.0137,  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

augmented-olive-product-sentence
  • —Dataset: augmented-olive-product-sentence at b513dad
  • —Size: 3,682,898 training samples
  • —Columns: <code>anchor</code> and <code>positive</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:-----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 14 tokens</li><li>mean: 20.32 tokens</li><li>max: 41 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 8.76 tokens</li><li>max: 35 tokens</li></ul> |
  • —Samples: | anchor | positive | |:-----------------------------------------|:-----------------------------------| | <code>베르사체 베르사체 브라이트 크리스탈 50ml 택1</code> | <code>베르사체 브라이트 크리스탈 50ml 1</code> | | <code>베르사체 베르사체 브라이트 크리스탈 50ml 택1</code> | <code>베르사체 브라이트</code> | | <code>베르사체 베르사체 브라이트 크리스탈 50ml 택1</code> | <code>베르사체 크리스탈</code> |
  • —Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "gather_across_devices": false
  }

Evaluation Dataset

augmented-olive-product-sentence
  • —Dataset: augmented-olive-product-sentence at b513dad
  • —Size: 193,728 evaluation samples
  • —Columns: <code>anchor</code> and <code>positive</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:-----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 12 tokens</li><li>mean: 21.91 tokens</li><li>max: 31 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 9.19 tokens</li><li>max: 28 tokens</li></ul> |
  • —Samples: | anchor | positive | |:--------------------------------|:-----------------------------| | <code>랑방 랑방 루머 2 로즈 50ml</code> | <code>랑방 루머 2 로즈 50ml</code> | | <code>랑방 랑방 루머 2 로즈 50ml</code> | <code>랑방 향수</code> | | <code>랑방 랑방 루머 2 로즈 50ml</code> | <code>랑방 루머</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
  • —eval_strategy: steps
  • —per_device_train_batch_size: 16
  • —gradient_accumulation_steps: 16
  • —learning_rate: 3e-05
  • —num_train_epochs: 2
  • —lr_scheduler_type: cosine
  • —warmup_ratio: 0.1
  • —fp16: True
  • —push_to_hub: True
  • —batch_sampler: no_duplicates
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: 16
  • —per_device_eval_batch_size: 8
  • —per_gpu_train_batch_size: None
  • —per_gpu_eval_batch_size: None
  • —gradient_accumulation_steps: 16
  • —eval_accumulation_steps: None
  • —torch_empty_cache_steps: None
  • —learning_rate: 3e-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: 2
  • —max_steps: -1
  • —lr_scheduler_type: cosine
  • —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: True
  • —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: no_duplicates
  • —multi_dataset_batch_sampler: proportional
  • —router_mapping: {}
  • —learning_rate_mapping: {}

</details>

Training Logs

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

EpochStepTraining LossValidation Loss
0.0035501.0635-
0.00701000.9772-
0.01041500.87-
0.01392000.7313-
0.01742500.5824-
0.02093000.4781-
0.02433500.4168-
0.02784000.386-
0.03134500.3552-
0.03485000.3387-
0.03825500.321-
0.04176000.3036-
0.04526500.2955-
0.04877000.2779-
0.05217500.2647-
0.05568000.2498-
0.05918500.2489-
0.06269000.2434-
0.06609500.2238-
0.069510000.2243-
0.073010500.2119-
0.076511000.2211-
0.079911500.1966-
0.083412000.1942-
0.086912500.1928-
0.090413000.1849-
0.093813500.1823-
0.097314000.1743-
0.100814500.1677-
0.104315000.1684-
0.107715500.1686-
0.111216000.1603-
0.114716500.1685-
0.118217000.1537-
0.121617500.1539-
0.125118000.15-
0.128618500.1477-
0.132119000.1516-
0.135519500.1466-
0.139020000.1434-
0.142520500.1361-
0.146021000.1438-
0.149421500.1359-
0.152922000.1409-
0.156422500.1329-
0.159923000.1376-
0.163323500.1331-
0.166824000.1265-
0.170324500.1177-
0.173825000.1273-
0.177325500.1217-
0.180726000.1205-
0.184226500.1176-
0.187727000.1208-
0.191227500.1155-
0.194628000.1185-
0.198128500.1169-
0.201629000.1179-
0.205129500.114-
0.208530000.11480.0420
0.212030500.1074-
0.215531000.1108-
0.219031500.1084-
0.222432000.1132-
0.225932500.1082-
0.229433000.1065-
0.232933500.1042-
0.236334000.1052-
0.239834500.1054-
0.243335000.1006-
0.246835500.0967-
0.250236000.1005-
0.253736500.0985-
0.257237000.0997-
0.260737500.0963-
0.264138000.096-
0.267638500.0928-
0.271139000.0903-
0.274639500.0925-
0.278040000.0946-
0.281540500.0981-
0.285041000.0866-
0.288541500.0889-
0.291942000.0899-
0.295442500.0958-
0.298943000.0888-
0.302443500.0876-
0.305844000.0859-
0.309344500.0857-
0.312845000.0868-
0.316345500.0841-
0.319746000.0853-
0.323246500.0808-
0.326747000.0812-
0.330247500.0797-
0.333648000.0834-
0.337148500.0791-
0.340649000.0799-
0.344149500.0754-
0.347650000.0814-
0.351050500.08-
0.354551000.0735-
0.358051500.0791-
0.361552000.077-
0.364952500.0745-
0.368453000.0738-
0.371953500.0786-
0.375454000.0762-
0.378854500.0736-
0.382355000.0793-
0.385855500.0726-
0.389356000.0728-
0.392756500.0748-
0.396257000.0734-
0.399757500.0698-
0.403258000.073-
0.406658500.0719-
0.410159000.0735-
0.413659500.0671-
0.417160000.06890.0275
0.420560500.0713-
0.424061000.0707-
0.427561500.0631-
0.431062000.0691-
0.434462500.065-
0.437963000.0681-
0.441463500.0695-
0.444964000.0678-
0.448364500.0648-
0.451865000.0662-
0.455365500.0691-
0.458866000.0689-
0.462266500.0685-
0.465767000.0709-
0.469267500.0652-
0.472768000.0655-
0.476168500.065-
0.479669000.0682-
0.483169500.0681-
0.486670000.0635-
0.490070500.0641-
0.493571000.0636-
0.497071500.0657-
0.500572000.0627-
0.503972500.0663-
0.507473000.0638-
0.510973500.06-
0.514474000.06-
0.517974500.0612-
0.521375000.06-
0.524875500.0588-
0.528376000.0612-
0.531876500.0606-
0.535277000.0627-
0.538777500.0612-
0.542278000.0624-
0.545778500.059-
0.549179000.0617-
0.552679500.0573-
0.556180000.0583-
0.559680500.0577-
0.563081000.0577-
0.566581500.0628-
0.570082000.058-
0.573582500.06-
0.576983000.0593-
0.580483500.0594-
0.583984000.056-
0.587484500.0543-
0.590885000.0568-
0.594385500.0516-
0.597886000.0566-
0.601386500.0583-
0.604787000.0581-
0.608287500.0566-
0.611788000.0535-
0.615288500.0571-
0.618689000.055-
0.622189500.0528-
0.625690000.05310.0217
0.629190500.0549-
0.632591000.0528-
0.636091500.0579-
0.639592000.053-
0.643092500.052-
0.646493000.056-
0.649993500.0605-
0.653494000.0542-
0.656994500.0516-
0.660395000.0541-
0.663895500.054-
0.667396000.0518-
0.670896500.0517-
0.674297000.0507-
0.677797500.0526-
0.681298000.0492-
0.684798500.0543-
0.688299000.0503-
0.691699500.0515-
0.6951100000.0516-
0.6986100500.0499-
0.7021101000.0544-
0.7055101500.0497-
0.7090102000.0564-
0.7125102500.0533-
0.7160103000.0502-
0.7194103500.0528-
0.7229104000.0507-
0.7264104500.0518-
0.7299105000.0493-
0.7333105500.0518-
0.7368106000.0524-
0.7403106500.0515-
0.7438107000.0504-
0.7472107500.0509-
0.7507108000.0495-
0.7542108500.0532-
0.7577109000.048-
0.7611109500.0511-
0.7646110000.0511-
0.7681110500.0465-
0.7716111000.0447-
0.7750111500.0477-
0.7785112000.0497-
0.7820112500.0488-
0.7855113000.0469-
0.7889113500.0502-
0.7924114000.0478-
0.7959114500.0479-
0.7994115000.049-
0.8028115500.0452-
0.8063116000.0484-
0.8098116500.047-
0.8133117000.0464-
0.8167117500.0436-
0.8202118000.0452-
0.8237118500.0475-
0.8272119000.0477-
0.8306119500.047-
0.8341120000.04440.0197
0.8376120500.043-
0.8411121000.0478-
0.8445121500.0443-
0.8480122000.0463-
0.8515122500.0456-
0.8550123000.0449-
0.8585123500.0489-
0.8619124000.0451-
0.8654124500.044-
0.8689125000.0453-
0.8724125500.0434-
0.8758126000.045-
0.8793126500.0452-
0.8828127000.0423-
0.8863127500.0446-
0.8897128000.045-
0.8932128500.0466-
0.8967129000.0448-
0.9002129500.0475-
0.9036130000.0443-
0.9071130500.0457-
0.9106131000.0463-
0.9141131500.043-
0.9175132000.0435-
0.9210132500.0425-
0.9245133000.0451-
0.9280133500.0447-
0.9314134000.043-
0.9349134500.0431-
0.9384135000.0454-
0.9419135500.0484-
0.9453136000.0453-
0.9488136500.0444-
0.9523137000.0438-
0.9558137500.0415-
0.9592138000.0438-
0.9627138500.044-
0.9662139000.0433-
0.9697139500.0439-
0.9731140000.0428-
0.9766140500.0423-
0.9801141000.0419-
0.9836141500.0443-
0.9870142000.0406-
0.9905142500.0422-
0.9940143000.0414-
0.9975143500.0438-
1.0009144000.042-
1.0044144500.0404-
1.0079145000.0429-
1.0113145500.0395-
1.0148146000.0402-
1.0183146500.0403-
1.0218147000.0413-
1.0252147500.0399-
1.0287148000.0426-
1.0322148500.0384-
1.0357149000.0387-
1.0391149500.0383-
1.0426150000.04360.0183
1.0461150500.039-
1.0496151000.0415-
1.0530151500.0394-
1.0565152000.0375-
1.0600152500.0399-
1.0635153000.0379-
1.0669153500.0413-
1.0704154000.0373-
1.0739154500.0411-
1.0774155000.0449-
1.0808155500.0392-
1.0843156000.0389-
1.0878156500.0387-
1.0913157000.0394-
1.0947157500.0383-
1.0982158000.0435-
1.1017158500.0382-
1.1052159000.0429-
1.1086159500.0366-
1.1121160000.0404-
1.1156160500.0431-
1.1191161000.0382-
1.1225161500.0376-
1.1260162000.0385-
1.1295162500.0406-
1.1330163000.0387-
1.1364163500.0376-
1.1399164000.0375-
1.1434164500.0412-
1.1469165000.0406-
1.1504165500.0383-
1.1538166000.039-
1.1573166500.0381-
1.1608167000.039-
1.1643167500.04-
1.1677168000.0385-
1.1712168500.0377-
1.1747169000.0374-
1.1782169500.0394-
1.1816170000.0383-
1.1851170500.0384-
1.1886171000.0392-
1.1921171500.0386-
1.1955172000.0368-
1.1990172500.037-
1.2025173000.035-
1.2060173500.038-
1.2094174000.0354-
1.2129174500.0385-
1.2164175000.0388-
1.2199175500.0424-
1.2233176000.0435-
1.2268176500.036-
1.2303177000.0381-
1.2338177500.0358-
1.2372178000.0369-
1.2407178500.0385-
1.2442179000.0368-
1.2477179500.0355-
1.2511180000.04190.0166
1.2546180500.0369-
1.2581181000.0362-
1.2616181500.0365-
1.2650182000.0369-
1.2685182500.0382-
1.2720183000.0394-
1.2755183500.0371-
1.2789184000.0358-
1.2824184500.0376-
1.2859185000.0362-
1.2894185500.0368-
1.2928186000.0371-
1.2963186500.0374-
1.2998187000.0378-
1.3033187500.0372-
1.3067188000.0382-
1.3102188500.037-
1.3137189000.0366-
1.3172189500.0369-
1.3207190000.0347-
1.3241190500.0379-
1.3276191000.0369-
1.3311191500.0364-
1.3346192000.0356-
1.3380192500.0361-
1.3415193000.0392-
1.3450193500.035-
1.3485194000.0349-
1.3519194500.0359-
1.3554195000.0373-
1.3589195500.0386-
1.3624196000.0353-
1.3658196500.0359-
1.3693197000.0382-
1.3728197500.0379-
1.3763198000.0353-
1.3797198500.0367-
1.3832199000.0346-
1.3867199500.0336-
1.3902200000.0341-
1.3936200500.0388-
1.3971201000.0329-
1.4006201500.0334-
1.4041202000.0354-
1.4075202500.0338-
1.4110203000.0344-
1.4145203500.0362-
1.4180204000.0357-
1.4214204500.0372-
1.4249205000.0329-
1.4284205500.0389-
1.4319206000.0359-
1.4353206500.0377-
1.4388207000.0343-
1.4423207500.0381-
1.4458208000.0351-
1.4492208500.0381-
1.4527209000.0377-
1.4562209500.0384-
1.4597210000.03320.0164
1.4631210500.0377-
1.4666211000.0351-
1.4701211500.037-
1.4736212000.0327-
1.4770212500.0364-
1.4805213000.0369-
1.4840213500.0344-
1.4875214000.0352-
1.4910214500.0371-
1.4944215000.0364-
1.4979215500.0332-
1.5014216000.0367-
1.5049216500.0355-
1.5083217000.0364-
1.5118217500.0361-
1.5153218000.035-
1.5188218500.036-
1.5222219000.0313-
1.5257219500.0334-
1.5292220000.0319-
1.5327220500.0358-
1.5361221000.0323-
1.5396221500.032-
1.5431222000.034-
1.5466222500.0344-
1.5500223000.0382-
1.5535223500.0353-
1.5570224000.0335-
1.5605224500.0318-
1.5639225000.0335-
1.5674225500.0346-
1.5709226000.0357-
1.5744226500.0342-
1.5778227000.0358-
1.5813227500.0338-
1.5848228000.0334-
1.5883228500.0374-
1.5917229000.0335-
1.5952229500.0321-
1.5987230000.0351-
1.6022230500.0322-
1.6056231000.0319-
1.6091231500.0357-
1.6126232000.0341-
1.6161232500.0319-
1.6195233000.0356-
1.6230233500.0333-
1.6265234000.0348-
1.6300234500.0341-
1.6334235000.0339-
1.6369235500.0362-
1.6404236000.033-
1.6439236500.0334-
1.6473237000.0351-
1.6508237500.0339-
1.6543238000.0324-
1.6578238500.0342-
1.6613239000.0316-
1.6647239500.0373-
1.6682240000.03360.0157
1.6717240500.0334-
1.6752241000.035-
1.6786241500.0354-
1.6821242000.0348-
1.6856242500.0347-
1.6891243000.0338-
1.6925243500.0363-
1.6960244000.0321-
1.6995244500.0326-
1.7030245000.0365-
1.7064245500.0335-
1.7099246000.0363-
1.7134246500.032-
1.7169247000.0323-
1.7203247500.0332-
1.7238248000.034-
1.7273248500.0354-
1.7308249000.0335-
1.7342249500.0342-
1.7377250000.0355-
1.7412250500.0371-
1.7447251000.0349-
1.7481251500.0325-
1.7516252000.0334-
1.7551252500.0342-
1.7586253000.0327-
1.7620253500.0324-
1.7655254000.0323-
1.7690254500.0329-
1.7725255000.0329-
1.7759255500.0316-
1.7794256000.0331-
1.7829256500.0347-
1.7864257000.0321-
1.7898257500.0343-
1.7933258000.0324-
1.7968258500.0325-
1.8003259000.0348-
1.8037259500.0336-
1.8072260000.0345-
1.8107260500.0347-
1.8142261000.0329-
1.8176261500.0346-
1.8211262000.0343-
1.8246262500.033-
1.8281263000.0343-
1.8316263500.0354-
1.8350264000.0357-
1.8385264500.0339-
1.8420265000.0338-
1.8455265500.0344-
1.8489266000.0328-
1.8524266500.0333-
1.8559267000.0316-
1.8594267500.0332-
1.8628268000.0355-
1.8663268500.0325-
1.8698269000.0347-
1.8733269500.0366-
1.8767270000.03170.0155
1.8802270500.0346-
1.8837271000.0313-
1.8872271500.0365-
1.8906272000.0313-
1.8941272500.0315-
1.8976273000.0336-
1.9011273500.0326-
1.9045274000.033-
1.9080274500.0343-
1.9115275000.0346-
1.9150275500.0353-
1.9184276000.0322-
1.9219276500.0351-
1.9254277000.0337-
1.9289277500.0334-
1.9323278000.035-
1.9358278500.0314-
1.9393279000.0331-
1.9428279500.0333-
1.9462280000.0358-
1.9497280500.0366-
1.9532281000.035-
1.9567281500.037-
1.9601282000.035-
1.9636282500.0311-
1.9671283000.0333-
1.9706283500.0326-
1.9740284000.0323-
1.9775284500.0331-
1.9810285000.0336-
1.9845285500.0309-
1.9879286000.0354-
1.9914286500.0339-
1.9949287000.033-
1.9984287500.0323-

</details>

Framework Versions

  • —Python: 3.12.12
  • —Sentence Transformers: 5.2.1
  • —Transformers: 4.57.6
  • —PyTorch: 2.10.0+cu128
  • —Accelerate: 1.12.0
  • —Datasets: 4.3.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. -->