CoolFace
Modelpublic

reasonwang/embedding-qwen3-1.7b-embedding_ac1_unicode_shuf

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

SentenceTransformer

This is a sentence-transformers model trained on the generator dataset. It maps sentences & paragraphs to a 4096-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: Unknown -->
  • Maximum Sequence Length: 32768 tokens
  • Output Dimensionality: 4096 dimensions
  • Similarity Function: Cosine Similarity
  • Training Dataset:
  • generator <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 32768, 'do_lower_case': False, 'architecture': 'Qwen3Model'})
  (1): Pooling({'word_embedding_dimension': 2048, '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': True, '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("reasonwang/embedding-qwen3-1.7b-embedding_ac1_unicode_shuf")
# Run inference
sentences = [
    'The weather is lovely today.',
    "It's so sunny outside!",
    'He drove to the stadium.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 4096]

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

Evaluation

Metrics

Information Retrieval
MetricValue
cosine_accuracy@10.62
cosine_accuracy@30.79
cosine_accuracy@50.88
cosine_accuracy@100.93
cosine_precision@10.62
cosine_precision@30.4733
cosine_precision@50.406
cosine_precision@100.292
cosine_recall@10.1206
cosine_recall@30.2301
cosine_recall@50.3083
cosine_recall@100.3879
cosine_ndcg@100.4788
cosine_ndcg@1000.551
cosine_mrr@100.7219
cosine_mrr@1000.725
cosine_map@1000.3511

<!--

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

generator
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim",
      "mini_batch_size": 4,
      "gather_across_devices": false
  }

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 256
  • learning_rate: 2e-05
  • max_steps: 100000
  • log_level: info
  • bf16: True
  • dataloader_num_workers: 1
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': False, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
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: 256
  • 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: 3.0
  • max_steps: 100000
  • lr_scheduler_type: linear
  • lr_scheduler_kwargs: {}
  • warmup_ratio: 0.0
  • warmup_steps: 0
  • log_level: info
  • 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: True
  • 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: True
  • dataloader_num_workers: 1
  • 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': False, '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_retrieval_cosine_ndcg@100
1e-0515.2053-
0.0001103.8468-
0.0002202.8407-
0.0003302.5497-
0.0004402.4161-
0.0005502.3331-
0.0006602.3184-
0.0007702.2386-
0.0008802.2135-
0.0009902.1836-
0.0011002.17970.4941
0.00111102.1426-
0.00121202.1384-
0.00131302.1306-
0.00141402.1141-
0.00151502.1241-
0.00161602.0885-
0.00171702.0815-
0.00181802.099-
0.00191902.0519-
0.0022002.04820.5110
0.00212102.0405-
0.00222202.0122-
0.00232302.025-
0.00242402.011-
0.00252502.0368-
0.00262601.9879-
0.00272702.0191-
0.00282801.9754-
0.00292902.0114-
0.0033001.97690.5158
0.00313101.9594-
0.00323201.9792-
0.00333301.9615-
0.00343401.955-
0.00353501.9725-
0.00363601.9524-
0.00373701.9435-
0.00383801.9398-
0.00393901.9251-
0.0044001.89970.5228
0.00414101.9296-
0.00424201.9267-
0.00434301.9301-
0.00444401.9417-
0.00454501.9179-
0.00464601.9091-
0.00474701.9147-
0.00484801.9187-
0.00494901.9345-
0.0055001.8830.5258
0.00515101.9023-
0.00525201.8664-
0.00535301.9142-
0.00545401.8902-
0.00555501.877-
0.00565601.8753-
0.00575701.8804-
0.00585801.8923-
0.00595901.8501-
0.0066001.84990.5265
0.00616101.8719-
0.00626201.8692-
0.00636301.8813-
0.00646401.8758-
0.00656501.8721-
0.00666601.8466-
0.00676701.8873-
0.00686801.8429-
0.00696901.8719-
0.0077001.84780.5271
0.00717101.8616-
0.00727201.8486-
0.00737301.8766-
0.00747401.8614-
0.00757501.8722-
0.00767601.829-
0.00777701.8341-
0.00787801.8304-
0.00797901.8494-
0.0088001.8380.5328
0.00818101.851-
0.00828201.8359-
0.00838301.8528-
0.00848401.8295-
0.00858501.8337-
0.00868601.8072-
0.00878701.8068-
0.00888801.8102-
0.00898901.8199-
0.0099001.83080.5324
0.00919101.8155-
0.00929201.7918-
0.00939301.7969-
0.00949401.8054-
0.00959501.8032-
0.00969601.7972-
0.00979701.8063-
0.00989801.8227-
0.00999901.8111-
0.0110001.79090.5312
0.010110101.8105-
0.010210201.7976-
0.010310301.8117-
0.010410401.7823-
0.010510501.7967-
0.010610601.7941-
0.010710701.8054-
0.010810801.7938-
0.010910901.784-
0.01111001.80.5342
0.011111101.7895-
0.011211201.805-
0.011311301.8063-
0.011411401.8011-
0.011511501.7609-
0.011611601.7658-
0.011711701.7393-
0.011811801.7716-
0.011911901.7546-
0.01212001.7760.5351
0.012112101.7735-
0.012212201.7815-
0.012312301.7805-
0.012412401.7677-
0.012512501.7697-
0.012612601.7599-
0.012712701.752-
0.012812801.7591-
0.012912901.7519-
0.01313001.77820.5344
0.013113101.741-
0.013213201.7475-
0.013313301.7903-
0.013413401.7488-
0.013513501.7426-
0.013613601.7589-
0.013713701.7327-
0.013813801.7453-
0.013913901.7453-
0.01414001.73470.5345
0.014114101.7467-
0.014214201.743-
0.014314301.7587-
0.014414401.73-
0.014514501.7453-
0.014614601.7387-
0.014714701.7431-
0.014814801.7542-
0.014914901.764-
0.01515001.72970.5376
0.015115101.7404-
0.015215201.7497-
0.015315301.756-
0.015415401.7426-
0.015515501.7246-
0.015615601.7217-
0.015715701.7319-
0.015815801.7642-
0.015915901.7345-
0.01616001.73120.5360
0.016116101.7394-
0.016216201.7025-
0.016316301.7431-
0.016416401.7216-
0.016516501.7378-
0.016616601.7217-
0.016716701.7424-
0.016816801.7349-
0.016916901.7191-
0.01717001.72880.5380
0.017117101.7173-
0.017217201.7215-
0.017317301.7108-
0.017417401.6972-
0.017517501.7177-
0.017617601.7259-
0.017717701.7103-
0.017817801.7286-
0.017917901.7127-
0.01818001.71020.5373
0.018118101.6951-
0.018218201.7221-
0.018318301.7135-
0.018418401.6976-
0.018518501.719-
0.018618601.7182-
0.018718701.7-
0.018818801.7307-
0.018918901.7024-
0.01919001.70920.5395
0.019119101.6905-
0.019219201.7068-
0.019319301.7053-
0.019419401.7104-
0.019519501.7068-
0.019619601.7136-
0.019719701.672-
0.019819801.7229-
0.019919901.6988-
0.0220001.70090.5376
0.020120101.6763-
0.020220201.7004-
0.020320301.6916-
0.020420401.7155-
0.020520501.7055-
0.020620601.6892-
0.020720701.7236-
0.020820801.6971-
0.020920901.7105-
0.02121001.69890.5398
0.021121101.7052-
0.021221201.6936-
0.021321301.7055-
0.021421401.7038-
0.021521501.6902-
0.021621601.6808-
0.021721701.6859-
0.021821801.7133-
0.021921901.6992-
0.02222001.69290.5389
0.022122101.6918-
0.022222201.6732-
0.022322301.7048-
0.022422401.6682-
0.022522501.6733-
0.022622601.6655-
0.022722701.6712-
0.022822801.6707-
0.022922901.668-
0.02323001.71520.5413
0.023123101.6816-
0.023223201.6642-
0.023323301.6809-
0.023423401.6925-
0.023523501.679-
0.023623601.6857-
0.023723701.6958-
0.023823801.6943-
0.023923901.6487-
0.02424001.68180.5352
0.024124101.6752-
0.024224201.6707-
0.024324301.6891-
0.024424401.6691-
0.024524501.6786-
0.024624601.6831-
0.024724701.6788-
0.024824801.69-
0.024924901.6811-
0.02525001.65840.5425
0.025125101.6523-
0.025225201.6947-
0.025325301.6542-
0.025425401.6411-
0.025525501.6729-
0.025625601.6851-
0.025725701.6642-
0.025825801.6614-
0.025925901.6684-
0.02626001.66760.5402
0.026126101.6678-
0.026226201.6741-
0.026326301.6769-
0.026426401.6468-
0.026526501.6688-
0.026626601.6543-
0.026726701.7078-
0.026826801.6353-
0.026926901.665-
0.02727001.66290.5441
0.027127101.6567-
0.027227201.6395-
0.027327301.6629-
0.027427401.6852-
0.027527501.6635-
0.027627601.6765-
0.027727701.6598-
0.027827801.6547-
0.027927901.6741-
0.02828001.66640.5423
0.028128101.6446-
0.028228201.6662-
0.028328301.6566-
0.028428401.6397-
0.028528501.6728-
0.028628601.6592-
0.028728701.657-
0.028828801.6498-
0.028928901.6375-
0.02929001.64370.5376
0.029129101.6309-
0.029229201.6665-
0.029329301.6666-
0.029429401.6476-
0.029529501.6604-
0.029629601.6595-
0.029729701.6476-
0.029829801.6716-
0.029929901.629-
0.0330001.63830.5425
0.030130101.6545-
0.030230201.6477-
0.030330301.6137-
0.030430401.6581-
0.030530501.6696-
0.030630601.6316-
0.030730701.6439-
0.030830801.6537-
0.030930901.6466-
0.03131001.63880.5416
0.031131101.6467-
0.031231201.6235-
0.031331301.6201-
0.031431401.6342-
0.031531501.6487-
0.031631601.6531-
0.031731701.6552-
0.031831801.65-
0.031931901.6457-
0.03232001.64480.5427
0.032132101.641-
0.032232201.6612-
0.032332301.6482-
0.032432401.6362-
0.032532501.6299-
0.032632601.642-
0.032732701.6443-
0.032832801.6362-
0.032932901.6234-
0.03333001.62940.5409
0.033133101.6278-
0.033233201.6201-
0.033333301.6059-
0.033433401.6609-
0.033533501.6263-
0.033633601.6113-
0.033733701.6403-
0.033833801.6425-
0.033933901.6274-
0.03434001.63640.5377
0.034134101.6252-
0.034234201.6144-
0.034334301.6334-
0.034434401.6172-
0.034534501.6293-
0.034634601.6308-
0.034734701.6309-
0.034834801.6178-
0.034934901.6426-
0.03535001.61780.5466
0.035135101.6516-
0.035235201.6249-
0.035335301.6355-
0.035435401.6451-
0.035535501.611-
0.035635601.6265-
0.035735701.633-
0.035835801.6222-
0.035935901.616-
0.03636001.62260.5412
0.036136101.6251-
0.036236201.6148-
0.036336301.6348-
0.036436401.6421-
0.036536501.5937-
0.036636601.6469-
0.036736701.6259-
0.036836801.6216-
0.036936901.6206-
0.03737001.61590.5422
0.037137101.6185-
0.037237201.6414-
0.037337301.6179-
0.037437401.6002-
0.037537501.6226-
0.037637601.6305-
0.037737701.6198-
0.037837801.6184-
0.037937901.6445-
0.03838001.62910.5396
0.038138101.6029-
0.038238201.6039-
0.038338301.6351-
0.038438401.6238-
0.038538501.6086-
0.038638601.6435-
0.038738701.5971-
0.038838801.6114-
0.038938901.6077-
0.03939001.5840.5387
0.039139101.6086-
0.039239201.6165-
0.039339301.611-
0.039439401.6102-
0.039539501.5823-
0.039639601.6146-
0.039739701.5876-
0.039839801.605-
0.039939901.629-
0.0440001.63490.5434
0.040140101.6273-
0.040240201.6252-
0.040340301.6426-
0.040440401.6003-
0.040540501.6135-
0.040640601.5962-
0.040740701.6133-
0.040840801.5951-
0.040940901.6001-
0.04141001.59970.5432
0.041141101.6117-
0.041241201.6178-
0.041341301.6151-
0.041441401.6253-
0.041541501.613-
0.041641601.6197-
0.041741701.5976-
0.041841801.6213-
0.041941901.5855-
0.04242001.61170.5443
0.042142101.6309-
0.042242201.6047-
0.042342301.6154-
0.042442401.6001-
0.042542501.619-
0.042642601.6137-
0.042742701.5896-
0.042842801.622-
0.042942901.6047-
0.04343001.61770.5408
0.043143101.6021-
0.043243201.6219-
0.043343301.5891-
0.043443401.6268-
0.043543501.6135-
0.043643601.5985-
0.043743701.6017-
0.043843801.6061-
0.043943901.619-
0.04444001.58970.5449
0.044144101.6126-
0.044244201.6143-
0.044344301.6213-
0.044444401.6026-
0.044544501.5946-
0.044644601.6191-
0.044744701.5861-
0.044844801.6075-
0.044944901.5854-
0.04545001.57730.5399
0.045145101.6214-
0.045245201.6005-
0.045345301.579-
0.045445401.6039-
0.045545501.5778-
0.045645601.6141-
0.045745701.6088-
0.045845801.5981-
0.045945901.5863-
0.04646001.58730.5438
0.046146101.595-
0.046246201.5976-
0.046346301.5772-
0.046446401.5724-
0.046546501.5905-
0.046646601.6146-
0.046746701.6097-
0.046846801.6069-
0.046946901.5915-
0.04747001.59340.5478
0.047147101.6011-
0.047247201.6017-
0.047347301.6104-
0.047447401.5903-
0.047547501.6011-
0.047647601.5801-
0.047747701.5784-
0.047847801.6015-
0.047947901.591-
0.04848001.61590.5480
0.048148101.5994-
0.048248201.5687-
0.048348301.5986-
0.048448401.6035-
0.048548501.5855-
0.048648601.5647-
0.048748701.602-
0.048848801.5805-
0.048948901.5876-
0.04949001.61010.5447
0.049149101.5817-
0.049249201.5869-
0.049349301.5883-
0.049449401.5646-
0.049549501.571-
0.049649601.5814-
0.049749701.5863-
0.049849801.5599-
0.049949901.6061-
0.0550001.56720.5471
0.050150101.5785-
0.050250201.5813-
0.050350301.5932-
0.050450401.5807-
0.050550501.5704-
0.050650601.5986-
0.050750701.5812-
0.050850801.5922-
0.050950901.5789-
0.05151001.58290.5490
0.051151101.5634-
0.051251201.5989-
0.051351301.5928-
0.051451401.5686-
0.051551501.5548-
0.051651601.599-
0.051751701.5904-
0.051851801.5898-
0.051951901.578-
0.05252001.57210.5484
0.052152101.5729-
0.052252201.5905-
0.052352301.5629-
0.052452401.5498-
0.052552501.577-
0.052652601.5995-
0.052752701.5591-
0.052852801.5772-
0.052952901.5927-
0.05353001.58120.5467
0.053153101.5703-
0.053253201.5885-
0.053353301.5879-
0.053453401.5884-
0.053553501.5692-
0.053653601.6-
0.053753701.5907-
0.053853801.5728-
0.053953901.5876-
0.05454001.56610.5485
0.054154101.5525-
0.054254201.5855-
0.054354301.5752-
0.054454401.5785-
0.054554501.5825-
0.054654601.5828-
0.054754701.5743-
0.054854801.5873-
0.054954901.5909-
0.05555001.58110.5538
0.055155101.5871-
0.055255201.5569-
0.055355301.5748-
0.055455401.6094-
0.055555501.5623-
0.055655601.5732-
0.055755701.5724-
0.055855801.5731-
0.055955901.5873-
0.05656001.59130.5512
0.056156101.5916-
0.056256201.5684-
0.056356301.5526-
0.056456401.5699-
0.056556501.5732-
0.056656601.5797-
0.056756701.5723-
0.056856801.5719-
0.056956901.572-
0.05757001.54840.5491
0.057157101.5927-
0.057257201.5614-
0.057357301.5723-
0.057457401.5675-
0.057557501.5577-
0.057657601.5801-
0.057757701.5685-
0.057857801.5802-
0.057957901.5707-
0.05858001.5880.5508
0.058158101.5642-
0.058258201.5649-
0.058358301.5724-
0.058458401.5701-
0.058558501.5731-
0.058658601.5625-
0.058758701.5822-
0.058858801.5668-
0.058958901.5742-
0.05959001.54130.5498
0.059159101.5535-
0.059259201.5653-
0.059359301.5604-
0.059459401.5905-
0.059559501.5689-
0.059659601.5578-
0.059759701.5616-
0.059859801.5945-
0.059959901.5721-
0.0660001.57010.5506
0.060160101.5486-
0.060260201.5581-
0.060360301.5801-
0.060460401.5684-
0.060560501.583-
0.060660601.5885-
0.060760701.5647-
0.060860801.5826-
0.060960901.5858-
0.06161001.56180.5501
0.061161101.5538-
0.061261201.5721-
0.061361301.5919-
0.061461401.5693-
0.061561501.5578-
0.061661601.552-
0.061761701.5584-
0.061861801.5455-
0.061961901.5421-
0.06262001.55510.5552
0.062162101.5706-
0.062262201.5732-
0.062362301.5619-
0.062462401.5732-
0.062562501.5554-
0.062662601.5734-
0.062762701.5747-
0.062862801.571-
0.062962901.5616-
0.06363001.55750.5546
0.063163101.5586-
0.063263201.5857-
0.063363301.5593-
0.063463401.556-
0.063563501.5558-
0.063663601.5799-
0.063763701.5772-
0.063863801.5477-
0.063963901.5823-
0.06464001.54620.5497
0.064164101.57-
0.064264201.5551-
0.064364301.5687-
0.064464401.5703-
0.064564501.579-
0.064664601.5426-
0.064764701.5816-
0.064864801.5712-
0.064964901.5746-
0.06565001.56480.5503
0.065165101.5443-
0.065265201.5499-
0.065365301.5648-
0.065465401.5585-
0.065565501.5694-
0.065665601.5579-
0.065765701.5762-
0.065865801.5494-
0.065965901.5752-
0.06666001.5540.5493
0.066166101.5469-
0.066266201.5532-
0.066366301.535-
0.066466401.5146-
0.066566501.5528-
0.066666601.5626-
0.066766701.5476-
0.066866801.5594-
0.066966901.5441-
0.06767001.5620.5504
0.067167101.5468-
0.067267201.5462-
0.067367301.5711-
0.067467401.5659-
0.067567501.5413-
0.067667601.5497-
0.067767701.5477-
0.067867801.548-
0.067967901.5639-
0.06868001.56760.5500
0.068168101.5647-
0.068268201.5663-
0.068368301.5462-
0.068468401.5675-
0.068568501.5563-
0.068668601.5754-
0.068768701.5513-
0.068868801.5629-
0.068968901.5558-
0.06969001.55360.5476
0.069169101.5618-
0.069269201.5559-
0.069369301.5661-
0.069469401.5554-
0.069569501.5501-
0.069669601.581-
0.069769701.5303-
0.069869801.5432-
0.069969901.5486-
0.0770001.55170.5495
0.070170101.5765-
0.070270201.5536-
0.070370301.5425-
0.070470401.5593-
0.070570501.548-
0.070670601.5501-
0.070770701.5331-
0.070870801.567-
0.070970901.5906-
0.07171001.55860.5474
0.071171101.5468-
0.071271201.5503-
0.071371301.5514-
0.071471401.5584-
0.071571501.5471-
0.071671601.5462-
0.071771701.5498-
0.071871801.558-
0.071971901.5495-
0.07272001.55850.5486
0.072172101.536-
0.072272201.5493-
0.072372301.5442-
0.072472401.5409-
0.072572501.536-
0.072672601.5674-
0.072772701.5595-
0.072872801.5184-
0.072972901.5694-
0.07373001.55930.5513
0.073173101.5766-
0.073273201.5562-
0.073373301.5872-
0.073473401.5705-
0.073573501.5622-
0.073673601.5577-
0.073773701.5422-
0.073873801.5643-
0.073973901.5713-
0.07474001.5330.5500
0.074174101.5204-
0.074274201.5445-
0.074374301.5503-
0.074474401.5243-
0.074574501.5465-
0.074674601.559-
0.074774701.5493-
0.074874801.5589-
0.074974901.5637-
0.07575001.55470.5484
0.075175101.5296-
0.075275201.5466-
0.075375301.5259-
0.075475401.5496-
0.075575501.5273-
0.075675601.5606-
0.075775701.5408-
0.075875801.5529-
0.075975901.5481-
0.07676001.55710.5541
0.076176101.5322-
0.076276201.567-
0.076376301.5387-
0.076476401.554-
0.076576501.5284-
0.076676601.5255-
0.076776701.5421-
0.076876801.5538-
0.076976901.5309-
0.07777001.5490.5519
0.077177101.5373-
0.077277201.5315-
0.077377301.5345-
0.077477401.56-
0.077577501.5678-
0.077677601.5653-
0.077777701.521-
0.077877801.5377-
0.077977901.5518-
0.07878001.54540.5490
0.078178101.5227-
0.078278201.5604-
0.078378301.5283-
0.078478401.5448-
0.078578501.5116-
0.078678601.5223-
0.078778701.5497-
0.078878801.5417-
0.078978901.5358-
0.07979001.55040.5544
0.079179101.516-
0.079279201.5422-
0.079379301.537-
0.079479401.5479-
0.079579501.5579-
0.079679601.5369-
0.079779701.5321-
0.079879801.522-
0.079979901.5389-
0.0880001.52740.5526
0.080180101.5537-
0.080280201.5397-
0.080380301.5671-
0.080480401.5349-
0.080580501.5407-
0.080680601.5563-
0.080780701.5581-
0.080880801.5423-
0.080980901.5148-
0.08181001.55570.5544
0.081181101.5404-
0.081281201.5368-
0.081381301.5161-
0.081481401.5595-
0.081581501.5493-
0.081681601.5312-
0.081781701.5326-
0.081881801.5424-
0.081981901.5325-
0.08282001.54580.5561
0.082182101.5397-
0.082282201.5438-
0.082382301.5237-
0.082482401.5396-
0.082582501.5365-
0.082682601.5609-
0.082782701.533-
0.082882801.5367-
0.082982901.5316-
0.08383001.53860.5528
0.083183101.5259-
0.083283201.5205-
0.083383301.5561-
0.083483401.533-
0.083583501.5684-
0.083683601.5475-
0.083783701.5195-
0.083883801.5388-
0.083983901.564-
0.08484001.55720.5490
0.084184101.5567-
0.084284201.5383-
0.084384301.5645-
0.084484401.5499-
0.084584501.5267-
0.084684601.5538-
0.084784701.5635-
0.084884801.5365-
0.084984901.5374-
0.08585001.54530.5507
0.085185101.5155-
0.085285201.5505-
0.085385301.5381-
0.085485401.5337-
0.085585501.5475-
0.085685601.5421-
0.085785701.5318-
0.085885801.5404-
0.085985901.5227-
0.08686001.53230.5498
0.086186101.5245-
0.086286201.5435-
0.086386301.5516-
0.086486401.5394-
0.086586501.5141-
0.086686601.5289-
0.086786701.5191-
0.086886801.5349-
0.086986901.5507-
0.08787001.53370.5532
0.087187101.5471-
0.087287201.5267-
0.087387301.5308-
0.087487401.5576-
0.087587501.5424-
0.087687601.5518-
0.087787701.5316-
0.087887801.5369-
0.087987901.5412-
0.08888001.54070.5487
0.088188101.5257-
0.088288201.5318-
0.088388301.5214-
0.088488401.5321-
0.088588501.5282-
0.088688601.5262-
0.088788701.5545-
0.088888801.5407-
0.088988901.564-
0.08989001.52870.5518
0.089189101.5353-
0.089289201.5155-
0.089389301.5416-
0.089489401.546-
0.089589501.5349-
0.089689601.5203-
0.089789701.5282-
0.089889801.5111-
0.089989901.5121-
0.0990001.52090.5519
0.090190101.5333-
0.090290201.5305-
0.090390301.5397-
0.090490401.523-
0.090590501.5446-
0.090690601.5378-
0.090790701.533-
0.090890801.5271-
0.090990901.5201-
0.09191001.5260.5524
0.091191101.5307-
0.091291201.572-
0.091391301.5016-
0.091491401.526-
0.091591501.5326-
0.091691601.5189-
0.091791701.5298-
0.091891801.5211-
0.091991901.5237-
0.09292001.51210.5497
0.092192101.4938-
0.092292201.5094-
0.092392301.5265-
0.092492401.5278-
0.092592501.5255-
0.092692601.4975-
0.092792701.5117-
0.092892801.5378-
0.092992901.5248-
0.09393001.52220.5531
0.093193101.5056-
0.093293201.5361-
0.093393301.5426-
0.093493401.5023-
0.093593501.5056-
0.093693601.5058-
0.093793701.5299-
0.093893801.5178-
0.093993901.532-
0.09494001.52480.5577
0.094194101.5374-
0.094294201.518-
0.094394301.5299-
0.094494401.5432-
0.094594501.5164-
0.094694601.5252-
0.094794701.5327-
0.094894801.5519-
0.094994901.5077-
0.09595001.53220.5550
0.095195101.5358-
0.095295201.5362-
0.095395301.5262-
0.095495401.5286-
0.095595501.5205-
0.095695601.5372-
0.095795701.5248-
0.095895801.5457-
0.095995901.5087-
0.09696001.5310.5523
0.096196101.5057-
0.096296201.5295-
0.096396301.52-
0.096496401.5131-
0.096596501.5272-
0.096696601.5161-
0.096796701.5178-
0.096896801.5452-
0.096996901.5216-
0.09797001.54710.5541
0.097197101.5233-
0.097297201.5388-
0.097397301.5173-
0.097497401.5223-
0.097597501.5193-
0.097697601.5143-
0.097797701.5245-
0.097897801.5368-
0.097997901.5237-
0.09898001.50770.5545
0.098198101.5276-
0.098298201.5117-
0.098398301.5174-
0.098498401.5359-
0.098598501.5145-
0.098698601.5355-
0.098798701.4959-
0.098898801.5106-
0.098998901.5567-
0.09999001.51020.5508
0.099199101.5255-
0.099299201.4878-
0.099399301.522-
0.099499401.5296-
0.099599501.4935-
0.099699601.5081-
0.099799701.5163-
0.099899801.5267-
0.099999901.5361-
0.1100001.50670.5510

</details>

Framework Versions

  • Python: 3.12.12
  • Sentence Transformers: 5.2.0
  • Transformers: 4.57.3
  • PyTorch: 2.9.0+cu128
  • Accelerate: 1.12.0
  • Datasets: 4.4.2
  • 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",
}
CachedMultipleNegativesRankingLoss
bibtex
@misc{gao2021scaling,
    title={Scaling Deep Contrastive Learning Batch Size under Memory Limited Setup},
    author={Luyu Gao and Yunyi Zhang and Jiawei Han and Jamie Callan},
    year={2021},
    eprint={2101.06983},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}

<!--

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