CoolFace
Modelpublic

dkqjrm/bge-m3-embedding-augmented-olive-phonetic-sentence-wo-negative-lora

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-phonetic-sentence-wo-negative 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-phonetic-sentence-wo-negative <!-- - 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-phonetic-sentence-wo-negative-lora")
# Run inference
sentences = [
    '[S~2XL SIZE] 시크릿데이 순한코튼 슬림핏 입는 오버나이트 4종 택1',
    'オーバーナイト 2XL はどこ',
    '야돔 가격 좀',
]
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.5315,  0.0021],
#         [ 0.5315,  1.0000, -0.0381],
#         [ 0.0021, -0.0381,  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-phonetic-sentence-wo-negative
  • —Dataset: augmented-olive-product-phonetic-sentence-wo-negative at 7ff3a49
  • —Size: 4,379,592 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: 6 tokens</li><li>mean: 22.4 tokens</li><li>max: 59 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 9.44 tokens</li><li>max: 40 tokens</li></ul> |
  • —Samples: | anchor | positive | |:---------------------------------------------------|:-----------------------------------------| | <code>네이처메이드 슈퍼 RTG 오메가-3 900mg 40캡슐 (20일분)</code> | <code>自然制造 欧米伽 多少钱</code> | | <code>[푸마] 여성 실키 터치 레이온 브라탑+팬티 블랙</code> | <code>레이온 브라탑 팬티</code> | | <code>순수식품 루테인&오메가3 9종복합기능성 30캡슐 (1개월분)</code> | <code>price of 30 capsules lutein</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-phonetic-sentence-wo-negative
  • —Dataset: augmented-olive-product-phonetic-sentence-wo-negative at 7ff3a49
  • —Size: 230,504 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: 7 tokens</li><li>mean: 22.16 tokens</li><li>max: 52 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 9.23 tokens</li><li>max: 35 tokens</li></ul> |
  • —Samples: | anchor | positive | |:------------------------------------------------------|:-------------------------------------| | <code>암앤해머 컴플리트케어치약 150g</code> | <code>アームアンドハンマー コンプリートケア はどこ</code> | | <code>[정신과의사조향/평정심] 이유즈 룸앤패브릭 스프레이 100ml 어웨어니스</code> | <code>이즈 룸앤패브릭 가격 좀</code> | | <code>볼제너뮬러 유기농 크런치 400g 아몬드헤이즐넛</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.0029501.1928-
0.00581001.1371-
0.00881501.0197-
0.01172000.8587-
0.01462500.7119-
0.01753000.6037-
0.02053500.5407-
0.02344000.4777-
0.02634500.4353-
0.02925000.4172-
0.03215500.4154-
0.03516000.3924-
0.03806500.3805-
0.04097000.3584-
0.04387500.3495-
0.04688000.3423-
0.04978500.3306-
0.05269000.319-
0.05559500.3076-
0.058510000.3121-
0.061410500.2911-
0.064311000.2952-
0.067211500.2855-
0.070112000.286-
0.073112500.2731-
0.076013000.265-
0.078913500.2578-
0.081814000.2539-
0.084814500.245-
0.087715000.2412-
0.090615500.2369-
0.093516000.2296-
0.096416500.2313-
0.099417000.2124-
0.102317500.2212-
0.105218000.2211-
0.108118500.2244-
0.111119000.2107-
0.114019500.2013-
0.116920000.2122-
0.119820500.198-
0.122821000.2041-
0.125721500.2008-
0.128622000.2013-
0.131522500.1955-
0.134423000.1931-
0.137423500.1893-
0.140324000.1852-
0.143224500.1826-
0.146125000.1773-
0.149125500.1793-
0.152026000.173-
0.154926500.1781-
0.157827000.1649-
0.160727500.1716-
0.163728000.1682-
0.166628500.1686-
0.169529000.1607-
0.172429500.167-
0.175430000.15840.0601
0.178330500.1582-
0.181231000.1564-
0.184131500.159-
0.187032000.1541-
0.190032500.1522-
0.192933000.1566-
0.195833500.1498-
0.198734000.1573-
0.201734500.1507-
0.204635000.1482-
0.207535500.1406-
0.210436000.1512-
0.213436500.143-
0.216337000.1501-
0.219237500.1446-
0.222138000.1408-
0.225038500.1448-
0.228039000.1363-
0.230939500.1336-
0.233840000.1412-
0.236740500.1382-
0.239741000.1351-
0.242641500.1359-
0.245542000.1281-
0.248442500.1246-
0.251343000.1278-
0.254343500.1231-
0.257244000.1252-
0.260144500.1221-
0.263045000.1273-
0.266045500.1193-
0.268946000.1226-
0.271846500.1255-
0.274747000.1215-
0.277747500.1141-
0.280648000.1143-
0.283548500.1217-
0.286449000.1156-
0.289349500.1162-
0.292350000.1168-
0.295250500.1108-
0.298151000.1147-
0.301051500.1082-
0.304052000.1109-
0.306952500.1113-
0.309853000.1115-
0.312753500.1117-
0.315654000.1106-
0.318654500.1144-
0.321555000.0988-
0.324455500.1104-
0.327356000.1031-
0.330356500.1076-
0.333257000.1111-
0.336157500.1005-
0.339058000.1059-
0.341958500.0994-
0.344959000.1002-
0.347859500.1012-
0.350760000.09870.0351
0.353660500.1038-
0.356661000.0985-
0.359561500.096-
0.362462000.0966-
0.365362500.0942-
0.368363000.0979-
0.371263500.098-
0.374164000.0959-
0.377064500.0918-
0.379965000.0941-
0.382965500.0967-
0.385866000.0948-
0.388766500.0935-
0.391667000.0939-
0.394667500.093-
0.397568000.0902-
0.400468500.0944-
0.403369000.0976-
0.406269500.0951-
0.409270000.0938-
0.412170500.0849-
0.415071000.0932-
0.417971500.0914-
0.420972000.0809-
0.423872500.0933-
0.426773000.093-
0.429673500.0864-
0.432674000.0877-
0.435574500.0892-
0.438475000.0838-
0.441375500.0848-
0.444276000.085-
0.447276500.0874-
0.450177000.0845-
0.453077500.0824-
0.455978000.0837-
0.458978500.085-
0.461879000.0862-
0.464779500.0817-
0.467680000.0836-
0.470580500.0821-
0.473581000.0848-
0.476481500.0805-
0.479382000.0795-
0.482282500.0828-
0.485283000.0817-
0.488183500.084-
0.491084000.0766-
0.493984500.079-
0.496885000.0779-
0.499885500.0767-
0.502786000.075-
0.505686500.0809-
0.508587000.0764-
0.511587500.0787-
0.514488000.0764-
0.517388500.0824-
0.520289000.0811-
0.523289500.0756-
0.526190000.07480.0263
0.529090500.0773-
0.531991000.0762-
0.534891500.0726-
0.537892000.0747-
0.540792500.0758-
0.543693000.0799-
0.546593500.0737-
0.549594000.0753-
0.552494500.0758-
0.555395000.074-
0.558295500.0798-
0.561196000.0708-
0.564196500.0729-
0.567097000.0704-
0.569997500.0742-
0.572898000.0716-
0.575898500.0731-
0.578799000.0747-
0.581699500.0705-
0.5845100000.0667-
0.5875100500.0719-
0.5904101000.0746-
0.5933101500.0671-
0.5962102000.0712-
0.5991102500.0714-
0.6021103000.0679-
0.6050103500.0722-
0.6079104000.0697-
0.6108104500.0676-
0.6138105000.0659-
0.6167105500.0726-
0.6196106000.0675-
0.6225106500.0693-
0.6254107000.0663-
0.6284107500.0642-
0.6313108000.0713-
0.6342108500.0699-
0.6371109000.0657-
0.6401109500.0669-
0.6430110000.0649-
0.6459110500.0693-
0.6488111000.0705-
0.6517111500.0662-
0.6547112000.0635-
0.6576112500.07-
0.6605113000.07-
0.6634113500.0683-
0.6664114000.0653-
0.6693114500.063-
0.6722115000.0627-
0.6751115500.0676-
0.6781116000.0664-
0.6810116500.0625-
0.6839117000.065-
0.6868117500.0647-
0.6897118000.063-
0.6927118500.066-
0.6956119000.0642-
0.6985119500.0604-
0.7014120000.06490.0218
0.7044120500.0598-
0.7073121000.0646-
0.7102121500.0669-
0.7131122000.0634-
0.7160122500.0636-
0.7190123000.0634-
0.7219123500.0622-
0.7248124000.0674-
0.7277124500.0643-
0.7307125000.0659-
0.7336125500.062-
0.7365126000.0634-
0.7394126500.0627-
0.7424127000.0608-
0.7453127500.0578-
0.7482128000.0598-
0.7511128500.0627-
0.7540129000.0669-
0.7570129500.0621-
0.7599130000.0619-
0.7628130500.0596-
0.7657131000.0617-
0.7687131500.0634-
0.7716132000.0588-
0.7745132500.0597-
0.7774133000.061-
0.7803133500.0568-
0.7833134000.0626-
0.7862134500.0598-
0.7891135000.0601-
0.7920135500.0555-
0.7950136000.0593-
0.7979136500.0588-
0.8008137000.0652-
0.8037137500.0594-
0.8066138000.061-
0.8096138500.0594-
0.8125139000.0607-
0.8154139500.0603-
0.8183140000.0591-
0.8213140500.0598-
0.8242141000.0583-
0.8271141500.0583-
0.8300142000.0599-
0.8330142500.0572-
0.8359143000.0552-
0.8388143500.0552-
0.8417144000.058-
0.8446144500.0573-
0.8476145000.0609-
0.8505145500.059-
0.8534146000.0561-
0.8563146500.0556-
0.8593147000.0583-
0.8622147500.0548-
0.8651148000.0554-
0.8680148500.0619-
0.8709149000.0583-
0.8739149500.0539-
0.8768150000.05660.0189
0.8797150500.0531-
0.8826151000.0561-
0.8856151500.0534-
0.8885152000.0501-
0.8914152500.0564-
0.8943153000.0545-
0.8973153500.0603-
0.9002154000.0547-
0.9031154500.058-
0.9060155000.0575-
0.9089155500.0601-
0.9119156000.0555-
0.9148156500.0542-
0.9177157000.0529-
0.9206157500.0541-
0.9236158000.0572-
0.9265158500.0531-
0.9294159000.057-
0.9323159500.0564-
0.9352160000.0506-
0.9382160500.0538-
0.9411161000.0537-
0.9440161500.0545-
0.9469162000.0558-
0.9499162500.0544-
0.9528163000.0528-
0.9557163500.0561-
0.9586164000.0552-
0.9615164500.0547-
0.9645165000.0549-
0.9674165500.0515-
0.9703166000.0512-
0.9732166500.0549-
0.9762167000.0537-
0.9791167500.0529-
0.9820168000.0531-
0.9849168500.0526-
0.9879169000.0524-
0.9908169500.0515-
0.9937170000.0519-
0.9966170500.0512-
0.9995171000.0489-
1.0025171500.0532-
1.0054172000.0497-
1.0083172500.0483-
1.0112173000.0505-
1.0141173500.0473-
1.0171174000.0513-
1.0200174500.049-
1.0229175000.0531-
1.0258175500.0472-
1.0288176000.0502-
1.0317176500.0517-
1.0346177000.0495-
1.0375177500.0474-
1.0404178000.0502-
1.0434178500.0498-
1.0463179000.0469-
1.0492179500.0503-
1.0521180000.05090.0166
1.0551180500.0518-
1.0580181000.0525-
1.0609181500.0509-
1.0638182000.0515-
1.0668182500.0495-
1.0697183000.0505-
1.0726183500.0507-
1.0755184000.0533-
1.0784184500.0487-
1.0814185000.0492-
1.0843185500.05-
1.0872186000.0474-
1.0901186500.0514-
1.0931187000.0467-
1.0960187500.0488-
1.0989188000.0478-
1.1018188500.0485-
1.1047189000.0525-
1.1077189500.05-
1.1106190000.0472-
1.1135190500.048-
1.1164191000.0492-
1.1194191500.0475-
1.1223192000.0506-
1.1252192500.0474-
1.1281193000.0509-
1.1311193500.0474-
1.1340194000.0458-
1.1369194500.0459-
1.1398195000.0468-
1.1427195500.0471-
1.1457196000.0466-
1.1486196500.0461-
1.1515197000.0476-
1.1544197500.0464-
1.1574198000.0467-
1.1603198500.0462-
1.1632199000.0458-
1.1661199500.0465-
1.1690200000.0467-
1.1720200500.0509-
1.1749201000.0445-
1.1778201500.0461-
1.1807202000.0434-
1.1837202500.0469-
1.1866203000.0457-
1.1895203500.0477-
1.1924204000.0453-
1.1953204500.0445-
1.1983205000.0446-
1.2012205500.046-
1.2041206000.0475-
1.2070206500.0477-
1.2100207000.0481-
1.2129207500.0482-
1.2158208000.0451-
1.2187208500.0491-
1.2217209000.0456-
1.2246209500.0435-
1.2275210000.04490.0154
1.2304210500.0489-
1.2333211000.0434-
1.2363211500.0449-
1.2392212000.0464-
1.2421212500.046-
1.2450213000.0465-
1.2480213500.0439-
1.2509214000.0462-
1.2538214500.0461-
1.2567215000.0456-
1.2596215500.0463-
1.2626216000.0431-
1.2655216500.0458-
1.2684217000.046-
1.2713217500.0438-
1.2743218000.0482-
1.2772218500.0438-
1.2801219000.0425-
1.2830219500.0442-
1.2860220000.0447-
1.2889220500.0434-
1.2918221000.0451-
1.2947221500.0423-
1.2976222000.0431-
1.3006222500.0426-
1.3035223000.0441-
1.3064223500.0462-
1.3093224000.044-
1.3123224500.0449-
1.3152225000.0461-
1.3181225500.0464-
1.3210226000.0424-
1.3239226500.0444-
1.3269227000.0412-
1.3298227500.0449-
1.3327228000.0465-
1.3356228500.0426-
1.3386229000.0429-
1.3415229500.0395-
1.3444230000.0451-
1.3473230500.042-
1.3502231000.0403-
1.3532231500.0451-
1.3561232000.0438-
1.3590232500.043-
1.3619233000.0418-
1.3649233500.0458-
1.3678234000.0441-
1.3707234500.0451-
1.3736235000.0445-
1.3766235500.0448-
1.3795236000.0402-
1.3824236500.0433-
1.3853237000.0437-
1.3882237500.046-
1.3912238000.0414-
1.3941238500.0409-
1.3970239000.0416-
1.3999239500.0438-
1.4029240000.04390.0145
1.4058240500.0446-
1.4087241000.0459-
1.4116241500.0399-
1.4145242000.042-
1.4175242500.0421-
1.4204243000.0431-
1.4233243500.0424-
1.4262244000.0461-
1.4292244500.042-
1.4321245000.0452-
1.4350245500.0413-
1.4379246000.0433-
1.4409246500.0417-
1.4438247000.0418-
1.4467247500.0433-
1.4496248000.0431-
1.4525248500.0473-
1.4555249000.0393-
1.4584249500.0414-
1.4613250000.0432-
1.4642250500.045-
1.4672251000.0395-
1.4701251500.0416-
1.4730252000.0427-
1.4759252500.0447-
1.4788253000.0429-
1.4818253500.041-
1.4847254000.0428-
1.4876254500.0442-
1.4905255000.0423-
1.4935255500.0448-
1.4964256000.0425-
1.4993256500.0393-
1.5022257000.0408-
1.5051257500.0403-
1.5081258000.0411-
1.5110258500.0433-
1.5139259000.0419-
1.5168259500.0415-
1.5198260000.0417-
1.5227260500.0444-
1.5256261000.0419-
1.5285261500.0422-
1.5315262000.0419-
1.5344262500.0439-
1.5373263000.0416-
1.5402263500.0436-
1.5431264000.0463-
1.5461264500.0435-
1.5490265000.0422-
1.5519265500.0416-
1.5548266000.041-
1.5578266500.0409-
1.5607267000.0439-
1.5636267500.044-
1.5665268000.0437-
1.5694268500.043-
1.5724269000.0411-
1.5753269500.0421-
1.5782270000.04090.0140
1.5811270500.0432-
1.5841271000.0421-
1.5870271500.0391-
1.5899272000.0418-
1.5928272500.0427-
1.5958273000.0428-
1.5987273500.0397-
1.6016274000.0437-
1.6045274500.0433-
1.6074275000.0394-
1.6104275500.0399-
1.6133276000.0427-
1.6162276500.0426-
1.6191277000.0438-
1.6221277500.0409-
1.6250278000.042-
1.6279278500.0406-
1.6308279000.0395-
1.6337279500.0406-
1.6367280000.043-
1.6396280500.0415-
1.6425281000.0405-
1.6454281500.0387-
1.6484282000.0408-
1.6513282500.0397-
1.6542283000.0443-
1.6571283500.0413-
1.6600284000.0423-
1.6630284500.0418-
1.6659285000.0424-
1.6688285500.0397-
1.6717286000.0415-
1.6747286500.0421-
1.6776287000.0409-
1.6805287500.0439-
1.6834288000.0426-
1.6864288500.0422-
1.6893289000.0413-
1.6922289500.0416-
1.6951290000.0374-
1.6980290500.0409-
1.7010291000.0412-
1.7039291500.041-
1.7068292000.0383-
1.7097292500.0423-
1.7127293000.0406-
1.7156293500.0422-
1.7185294000.038-
1.7214294500.04-
1.7243295000.0425-
1.7273295500.041-
1.7302296000.042-
1.7331296500.0432-
1.7360297000.0421-
1.7390297500.0394-
1.7419298000.0419-
1.7448298500.0411-
1.7477299000.0421-
1.7507299500.0392-
1.7536300000.04540.0138
1.7565300500.041-
1.7594301000.0421-
1.7623301500.0417-
1.7653302000.0421-
1.7682302500.0375-
1.7711303000.0422-
1.7740303500.0412-
1.7770304000.0381-
1.7799304500.0441-
1.7828305000.0408-
1.7857305500.0396-
1.7886306000.04-
1.7916306500.0396-
1.7945307000.0427-
1.7974307500.0411-
1.8003308000.0432-
1.8033308500.0425-
1.8062309000.046-
1.8091309500.0404-
1.8120310000.0398-
1.8149310500.0428-
1.8179311000.0405-
1.8208311500.0404-
1.8237312000.0387-
1.8266312500.0412-
1.8296313000.0411-
1.8325313500.0426-
1.8354314000.0415-
1.8383314500.0407-
1.8413315000.0398-
1.8442315500.0439-
1.8471316000.0439-
1.8500316500.0397-
1.8529317000.0408-
1.8559317500.0393-
1.8588318000.043-
1.8617318500.0404-
1.8646319000.0414-
1.8676319500.0396-
1.8705320000.0427-
1.8734320500.0409-
1.8763321000.0395-
1.8792321500.0426-
1.8822322000.046-
1.8851322500.0388-
1.8880323000.0445-
1.8909323500.0408-
1.8939324000.0381-
1.8968324500.0421-
1.8997325000.0391-
1.9026325500.0412-
1.9056326000.041-
1.9085326500.0406-
1.9114327000.0409-
1.9143327500.0395-
1.9172328000.0388-
1.9202328500.0419-
1.9231329000.0418-
1.9260329500.0434-
1.9289330000.03970.0136
1.9319330500.0389-
1.9348331000.0414-
1.9377331500.0388-
1.9406332000.0388-
1.9435332500.0415-
1.9465333000.0401-
1.9494333500.041-
1.9523334000.0412-
1.9552334500.0403-
1.9582335000.0425-
1.9611335500.0391-
1.9640336000.0399-
1.9669336500.0417-
1.9698337000.0401-
1.9728337500.0419-
1.9757338000.041-
1.9786338500.044-
1.9815339000.0386-
1.9845339500.0378-
1.9874340000.0388-
1.9903340500.0413-
1.9932341000.0408-
1.9962341500.0387-
1.9991342000.0386-

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