CoolFace
Modelpublic

reasonwang/embedding-qwen3-1.7b-embedding_unicode_shuf

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes23downloads
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_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.9014, 0.7471],
#         [0.9014, 1.0000, 0.6621],
#         [0.7471, 0.6621, 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.57
cosine_accuracy@30.78
cosine_accuracy@50.85
cosine_accuracy@100.91
cosine_precision@10.57
cosine_precision@30.4767
cosine_precision@50.412
cosine_precision@100.316
cosine_recall@10.0959
cosine_recall@30.1974
cosine_recall@50.2626
cosine_recall@100.3592
cosine_ndcg@100.4669
cosine_ndcg@1000.5134
cosine_mrr@100.6837
cosine_mrr@1000.6877
cosine_map@1000.3189

<!--

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.2241-
0.0001103.8307-
0.0002202.8362-
0.0003302.5535-
0.0004402.3874-
0.0005502.3478-
0.0006602.2947-
0.0007702.2224-
0.0008802.1957-
0.0009902.1906-
0.0011002.16380.4390
0.00111102.141-
0.00121202.1424-
0.00131302.1075-
0.00141402.1-
0.00151502.087-
0.00161602.0809-
0.00171702.1087-
0.00181802.0668-
0.00191902.057-
0.0022002.06470.4512
0.00212102.0259-
0.00222202.0266-
0.00232302.0173-
0.00242402.0347-
0.00252502.0364-
0.00262601.9999-
0.00272702.0162-
0.00282801.9844-
0.00292901.9897-
0.0033001.97560.4665
0.00313101.9482-
0.00323201.97-
0.00333301.9571-
0.00343401.9638-
0.00353501.9598-
0.00363601.9482-
0.00373701.9507-
0.00383801.9339-
0.00393901.9431-
0.0044001.95620.4728
0.00414101.9217-
0.00424201.9493-
0.00434301.9322-
0.00444401.9046-
0.00454501.9142-
0.00464601.9117-
0.00474701.9063-
0.00484801.8879-
0.00494901.8921-
0.0055001.90330.4813
0.00515101.8904-
0.00525201.8941-
0.00535301.8901-
0.00545401.88-
0.00555501.8974-
0.00565601.8875-
0.00575701.8962-
0.00585801.9163-
0.00595901.8463-
0.0066001.88590.4808
0.00616101.8772-
0.00626201.8664-
0.00636301.8553-
0.00646401.8674-
0.00656501.8326-
0.00666601.8411-
0.00676701.8764-
0.00686801.8544-
0.00696901.8489-
0.0077001.84880.4785
0.00717101.8558-
0.00727201.8389-
0.00737301.8367-
0.00747401.8525-
0.00757501.8368-
0.00767601.8561-
0.00777701.8255-
0.00787801.8169-
0.00797901.8036-
0.0088001.81870.4950
0.00818101.835-
0.00828201.8459-
0.00838301.7894-
0.00848401.8323-
0.00858501.8184-
0.00868601.8148-
0.00878701.8335-
0.00888801.8051-
0.00898901.796-
0.0099001.82980.4931
0.00919101.8048-
0.00929201.7841-
0.00939301.8022-
0.00949401.7822-
0.00959501.8062-
0.00969601.8197-
0.00979701.7851-
0.00989801.7836-
0.00999901.7629-
0.0110001.81040.4907
0.010110101.7941-
0.010210201.8084-
0.010310301.801-
0.010410401.782-
0.010510501.8032-
0.010610601.7978-
0.010710701.758-
0.010810801.7695-
0.010910901.7961-
0.01111001.76670.4844
0.011111101.7644-
0.011211201.7974-
0.011311301.7672-
0.011411401.7671-
0.011511501.7945-
0.011611601.7863-
0.011711701.7613-
0.011811801.7739-
0.011911901.7759-
0.01212001.77360.4868
0.012112101.7507-
0.012212201.7628-
0.012312301.7723-
0.012412401.7536-
0.012512501.727-
0.012612601.7445-
0.012712701.7529-
0.012812801.7623-
0.012912901.7321-
0.01313001.77480.4892
0.013113101.7211-
0.013213201.7745-
0.013313301.7305-
0.013413401.767-
0.013513501.7551-
0.013613601.7329-
0.013713701.78-
0.013813801.7495-
0.013913901.724-
0.01414001.74360.4939
0.014114101.7756-
0.014214201.7748-
0.014314301.7508-
0.014414401.7301-
0.014514501.746-
0.014614601.7387-
0.014714701.7368-
0.014814801.7422-
0.014914901.7335-
0.01515001.71290.4923
0.015115101.731-
0.015215201.7307-
0.015315301.7322-
0.015415401.7554-
0.015515501.7125-
0.015615601.7327-
0.015715701.7223-
0.015815801.7136-
0.015915901.7267-
0.01616001.76250.4914
0.016116101.7267-
0.016216201.7038-
0.016316301.7063-
0.016416401.7057-
0.016516501.7284-
0.016616601.6998-
0.016716701.7115-
0.016816801.7356-
0.016916901.6929-
0.01717001.72920.4985
0.017117101.7109-
0.017217201.7494-
0.017317301.7181-
0.017417401.712-
0.017517501.708-
0.017617601.7056-
0.017717701.7039-
0.017817801.6837-
0.017917901.7071-
0.01818001.71210.4972
0.018118101.7147-
0.018218201.7203-
0.018318301.7023-
0.018418401.7278-
0.018518501.7129-
0.018618601.7454-
0.018718701.7011-
0.018818801.6996-
0.018918901.7046-
0.01919001.68770.4984
0.019119101.6962-
0.019219201.7057-
0.019319301.6968-
0.019419401.6994-
0.019519501.7087-
0.019619601.6832-
0.019719701.686-
0.019819801.7101-
0.019919901.7024-
0.0220001.68750.4987
0.020120101.6872-
0.020220201.6918-
0.020320301.6735-
0.020420401.6869-
0.020520501.7082-
0.020620601.6991-
0.020720701.6973-
0.020820801.6754-
0.020920901.6953-
0.02121001.70650.4954
0.021121101.6804-
0.021221201.6705-
0.021321301.673-
0.021421401.6997-
0.021521501.6774-
0.021621601.7124-
0.021721701.6749-
0.021821801.6661-
0.021921901.6782-
0.02222001.67420.4922
0.022122101.7204-
0.022222201.7081-
0.022322301.681-
0.022422401.6775-
0.022522501.665-
0.022622601.6992-
0.022722701.6531-
0.022822801.6656-
0.022922901.6717-
0.02323001.69220.4982
0.023123101.6765-
0.023223201.6687-
0.023323301.6682-
0.023423401.6734-
0.023523501.6735-
0.023623601.6935-
0.023723701.6753-
0.023823801.6571-
0.023923901.6834-
0.02424001.69640.4986
0.024124101.6722-
0.024224201.655-
0.024324301.6599-
0.024424401.6362-
0.024524501.6715-
0.024624601.6889-
0.024724701.6778-
0.024824801.6746-
0.024924901.6739-
0.02525001.64780.4960
0.025125101.6609-
0.025225201.6575-
0.025325301.6393-
0.025425401.6665-
0.025525501.637-
0.025625601.6294-
0.025725701.6586-
0.025825801.6625-
0.025925901.6465-
0.02626001.65760.4993
0.026126101.6683-
0.026226201.6447-
0.026326301.6647-
0.026426401.641-
0.026526501.6544-
0.026626601.6366-
0.026726701.6368-
0.026826801.668-
0.026926901.6355-
0.02727001.66210.5026
0.027127101.6472-
0.027227201.6579-
0.027327301.6631-
0.027427401.6627-
0.027527501.6485-
0.027627601.655-
0.027727701.656-
0.027827801.6425-
0.027927901.6207-
0.02828001.64380.5061
0.028128101.6466-
0.028228201.625-
0.028328301.6672-
0.028428401.6154-
0.028528501.6581-
0.028628601.638-
0.028728701.6252-
0.028828801.6468-
0.028928901.638-
0.02929001.670.4955
0.029129101.6236-
0.029229201.6583-
0.029329301.6596-
0.029429401.6437-
0.029529501.6362-
0.029629601.6505-
0.029729701.6299-
0.029829801.6276-
0.029929901.6274-
0.0330001.66660.5002
0.030130101.6358-
0.030230201.6166-
0.030330301.6491-
0.030430401.6289-
0.030530501.6544-
0.030630601.6237-
0.030730701.6131-
0.030830801.6332-
0.030930901.6182-
0.03131001.63440.5085
0.031131101.6217-
0.031231201.6532-
0.031331301.6315-
0.031431401.6342-
0.031531501.6281-
0.031631601.6277-
0.031731701.6527-
0.031831801.6129-
0.031931901.6247-
0.03232001.64390.5018
0.032132101.6422-
0.032232201.6442-
0.032332301.6632-
0.032432401.6302-
0.032532501.6162-
0.032632601.6381-
0.032732701.6137-
0.032832801.6122-
0.032932901.6224-
0.03333001.6120.4993
0.033133101.6095-
0.033233201.6206-
0.033333301.6262-
0.033433401.6052-
0.033533501.6187-
0.033633601.6145-
0.033733701.6275-
0.033833801.6093-
0.033933901.6284-
0.03434001.61840.5079
0.034134101.6359-
0.034234201.6208-
0.034334301.6208-
0.034434401.6341-
0.034534501.6171-
0.034634601.6122-
0.034734701.6302-
0.034834801.6214-
0.034934901.6299-
0.03535001.62010.5005
0.035135101.6033-
0.035235201.6202-
0.035335301.6198-
0.035435401.6207-
0.035535501.6111-
0.035635601.6196-
0.035735701.6341-
0.035835801.6086-
0.035935901.6021-
0.03636001.62940.5161
0.036136101.6117-
0.036236201.6368-
0.036336301.6009-
0.036436401.5983-
0.036536501.6248-
0.036636601.609-
0.036736701.5975-
0.036836801.6043-
0.036936901.5989-
0.03737001.61640.5117
0.037137101.6283-
0.037237201.5928-
0.037337301.6104-
0.037437401.6264-
0.037537501.5989-
0.037637601.5975-
0.037737701.6011-
0.037837801.6054-
0.037937901.6129-
0.03838001.6160.5119
0.038138101.618-
0.038238201.6236-
0.038338301.6032-
0.038438401.6236-
0.038538501.6003-
0.038638601.6025-
0.038738701.6034-
0.038838801.599-
0.038938901.6065-
0.03939001.61610.5097
0.039139101.6093-
0.039239201.5912-
0.039339301.5893-
0.039439401.602-
0.039539501.6023-
0.039639601.6072-
0.039739701.599-
0.039839801.6083-
0.039939901.5991-
0.0440001.60850.5089
0.040140101.5917-
0.040240201.5934-
0.040340301.5862-
0.040440401.6041-
0.040540501.6048-
0.040640601.6145-
0.040740701.5817-
0.040840801.5848-
0.040940901.6079-
0.04141001.59730.5101
0.041141101.6045-
0.041241201.6083-
0.041341301.5871-
0.041441401.5891-
0.041541501.5788-
0.041641601.5859-
0.041741701.6094-
0.041841801.5684-
0.041941901.5735-
0.04242001.59020.5126
0.042142101.578-
0.042242201.5966-
0.042342301.6026-
0.042442401.6029-
0.042542501.6013-
0.042642601.5849-
0.042742701.6059-
0.042842801.6116-
0.042942901.5928-
0.04343001.59110.5132
0.043143101.5873-
0.043243201.611-
0.043343301.5959-
0.043443401.61-
0.043543501.5948-
0.043643601.5947-
0.043743701.5969-
0.043843801.5894-
0.043943901.5905-
0.04444001.58260.5057
0.044144101.5852-
0.044244201.6171-
0.044344301.5904-
0.044444401.5873-
0.044544501.5963-
0.044644601.6266-
0.044744701.559-
0.044844801.6168-
0.044944901.599-
0.04545001.59740.5169
0.045145101.5921-
0.045245201.5812-
0.045345301.6036-
0.045445401.5925-
0.045545501.5967-
0.045645601.5747-
0.045745701.6012-
0.045845801.6041-
0.045945901.5917-
0.04646001.56150.5125
0.046146101.5794-
0.046246201.5635-
0.046346301.5968-
0.046446401.6121-
0.046546501.595-
0.046646601.5875-
0.046746701.5933-
0.046846801.6045-
0.046946901.5688-
0.04747001.58430.5133
0.047147101.5679-
0.047247201.5736-
0.047347301.5801-
0.047447401.5753-
0.047547501.5563-
0.047647601.5565-
0.047747701.5823-
0.047847801.5866-
0.047947901.5576-
0.04848001.58660.5147
0.048148101.5836-
0.048248201.5993-
0.048348301.5777-
0.048448401.5642-
0.048548501.5727-
0.048648601.5621-
0.048748701.5808-
0.048848801.5604-
0.048948901.5805-
0.04949001.56580.5227
0.049149101.5873-
0.049249201.5984-
0.049349301.5765-
0.049449401.5659-
0.049549501.5616-
0.049649601.5851-
0.049749701.5687-
0.049849801.5758-
0.049949901.588-
0.0550001.55640.5119
0.050150101.5673-
0.050250201.5774-
0.050350301.5763-
0.050450401.572-
0.050550501.5716-
0.050650601.5634-
0.050750701.5205-
0.050850801.556-
0.050950901.5651-
0.05151001.56840.5085
0.051151101.5629-
0.051251201.5434-
0.051351301.5796-
0.051451401.574-
0.051551501.5571-
0.051651601.5433-
0.051751701.5617-
0.051851801.6022-
0.051951901.5453-
0.05252001.55330.5091
0.052152101.5588-
0.052252201.5756-
0.052352301.5698-
0.052452401.5916-
0.052552501.5669-
0.052652601.5595-
0.052752701.5896-
0.052852801.564-
0.052952901.5819-
0.05353001.56740.5046
0.053153101.5725-
0.053253201.5897-
0.053353301.5674-
0.053453401.5562-
0.053553501.5582-
0.053653601.5712-
0.053753701.5384-
0.053853801.5717-
0.053953901.5793-
0.05454001.57310.5094
0.054154101.5597-
0.054254201.5852-
0.054354301.5932-
0.054454401.5545-
0.054554501.5954-
0.054654601.5711-
0.054754701.5441-
0.054854801.5649-
0.054954901.5662-
0.05555001.54330.5161
0.055155101.5714-
0.055255201.5406-
0.055355301.5391-
0.055455401.5676-
0.055555501.5568-
0.055655601.5784-
0.055755701.5715-
0.055855801.5635-
0.055955901.5659-
0.05656001.590.5109
0.056156101.5562-
0.056256201.554-
0.056356301.5524-
0.056456401.5544-
0.056556501.5805-
0.056656601.5431-
0.056756701.5627-
0.056856801.5731-
0.056956901.5795-
0.05757001.55580.5133
0.057157101.5365-
0.057257201.5882-
0.057357301.5812-
0.057457401.5553-
0.057557501.5516-
0.057657601.5523-
0.057757701.5522-
0.057857801.5634-
0.057957901.5467-
0.05858001.5610.5116
0.058158101.5614-
0.058258201.5595-
0.058358301.5655-
0.058458401.5842-
0.058558501.556-
0.058658601.5526-
0.058758701.5637-
0.058858801.5612-
0.058958901.5815-
0.05959001.54070.5109
0.059159101.5594-
0.059259201.5551-
0.059359301.5485-
0.059459401.5832-
0.059559501.5729-
0.059659601.567-
0.059759701.5743-
0.059859801.5456-
0.059959901.5446-
0.0660001.57540.5088
0.060160101.5551-
0.060260201.5345-
0.060360301.5446-
0.060460401.569-
0.060560501.5573-
0.060660601.5332-
0.060760701.5851-
0.060860801.5464-
0.060960901.5552-
0.06161001.55190.5106
0.061161101.55-
0.061261201.5674-
0.061361301.5552-
0.061461401.5582-
0.061561501.5509-
0.061661601.5531-
0.061761701.5411-
0.061861801.5569-
0.061961901.5531-
0.06262001.56360.5095
0.062162101.5427-
0.062262201.5796-
0.062362301.5355-
0.062462401.5428-
0.062562501.5297-
0.062662601.5397-
0.062762701.5606-
0.062862801.5366-
0.062962901.5391-
0.06363001.56490.5146
0.063163101.5612-
0.063263201.5357-
0.063363301.5406-
0.063463401.5636-
0.063563501.5423-
0.063663601.5265-
0.063763701.5507-
0.063863801.5481-
0.063963901.5464-
0.06464001.54590.5177
0.064164101.5542-
0.064264201.5515-
0.064364301.5741-
0.064464401.5338-
0.064564501.5527-
0.064664601.5624-
0.064764701.5469-
0.064864801.5486-
0.064964901.5582-
0.06565001.5360.5100
0.065165101.5565-
0.065265201.5353-
0.065365301.5236-
0.065465401.54-
0.065565501.5448-
0.065665601.5495-
0.065765701.5394-
0.065865801.5737-
0.065965901.5201-
0.06666001.55090.5127
0.066166101.5549-
0.066266201.5545-
0.066366301.5601-
0.066466401.537-
0.066566501.5451-
0.066666601.5412-
1.000066701.5383-
1.000166801.5399-
1.000266901.5336-
1.000367001.53440.5156
1.000467101.5272-
1.000567201.5436-
1.000667301.5438-
1.000767401.5238-
1.000867501.527-
1.000967601.5379-
1.001067701.5227-
1.001167801.5424-
1.001267901.5154-
1.001368001.51990.5088
1.001468101.5277-
1.001568201.5371-
1.001668301.5455-
1.001768401.5624-
1.001868501.5471-
1.001968601.5287-
1.002068701.5495-
1.002168801.5094-
1.002268901.5313-
1.002369001.53860.5092
1.002469101.5389-
1.002569201.5424-
1.002669301.5342-
1.002769401.5497-
1.002869501.5228-
1.002969601.5294-
1.003069701.5264-
1.003169801.508-
1.003269901.5189-
1.003370001.51180.5125
1.003470101.5243-
1.003570201.5297-
1.003670301.5139-
1.003770401.5347-
1.003870501.5236-
1.003970601.538-
1.004070701.5402-
1.004170801.5136-
1.004270901.5556-
1.004371001.52030.5082
1.004471101.5284-
1.004571201.5455-
1.004671301.5158-
1.004771401.5284-
1.004871501.5064-
1.004971601.5362-
1.005071701.5289-
1.005171801.5309-
1.005271901.5189-
1.005372001.49760.5141
1.005472101.5245-
1.005572201.5435-
1.005672301.5165-
1.005772401.5469-
1.005872501.5298-
1.005972601.5141-
1.006072701.5313-
1.006172801.5166-
1.006272901.5311-
1.006373001.51880.5248
1.006473101.5217-
1.006573201.4895-
1.006673301.5336-
1.006773401.5275-
1.006873501.5246-
1.006973601.5264-
1.007073701.5325-
1.007173801.5262-
1.007273901.5147-
1.007374001.5150.5183
1.007474101.5398-
1.007574201.5269-
1.007674301.5146-
1.007774401.5092-
1.007874501.5034-
1.007974601.5042-
1.008074701.5185-
1.008174801.537-
1.008274901.521-
1.008375001.49880.5193
1.008475101.5177-
1.008575201.5335-
1.008675301.4924-
1.008775401.5419-
1.008875501.4974-
1.008975601.5227-
1.009075701.5242-
1.009175801.5008-
1.009275901.4978-
1.009376001.50430.5133
1.009476101.5041-
1.009576201.5295-
1.009676301.5221-
1.009776401.502-
1.009876501.4861-
1.009976601.5108-
1.010076701.5257-
1.010176801.5215-
1.010276901.5413-
1.010377001.50710.5195
1.010477101.5172-
1.010577201.531-
1.010677301.5104-
1.010777401.5009-
1.010877501.5046-
1.010977601.5339-
1.011077701.4935-
1.011177801.5211-
1.011277901.5203-
1.011378001.50660.5172
1.011478101.5154-
1.011578201.5233-
1.011678301.5256-
1.011778401.5082-
1.011878501.5092-
1.011978601.5279-
1.012078701.5133-
1.012178801.5168-
1.012278901.4994-
1.012379001.53090.5175
1.012479101.503-
1.012579201.4806-
1.012679301.5077-
1.012779401.4981-
1.012879501.5086-
1.012979601.5003-
1.013079701.5208-
1.013179801.4941-
1.013279901.5226-
1.013380001.50230.5128
1.013480101.5249-
1.013580201.4965-
1.013680301.5012-
1.013780401.5477-
1.013880501.5128-
1.013980601.4758-
1.014080701.5248-
1.014180801.5497-
1.014280901.5281-
1.014381001.52170.5182
1.014481101.4934-
1.014581201.527-
1.014681301.522-
1.014781401.4958-
1.014881501.5086-
1.014981601.5038-
1.015081701.4971-
1.015181801.5217-
1.015281901.4871-
1.015382001.5250.5223
1.015482101.5179-
1.015582201.4958-
1.015682301.5119-
1.015782401.5116-
1.015882501.4997-
1.015982601.5089-
1.016082701.5377-
1.016182801.502-
1.016282901.486-
1.016383001.50650.5142
1.016483101.5047-
1.016583201.5028-
1.016683301.4898-
1.016783401.5046-
1.016883501.5195-
1.016983601.4848-
1.017083701.5242-
1.017183801.4994-
1.017283901.5306-
1.017384001.50790.5113
1.017484101.5143-
1.017584201.495-
1.017684301.492-
1.017784401.5087-
1.017884501.4765-
1.017984601.5043-
1.018084701.5014-
1.018184801.5275-
1.018284901.5101-
1.018385001.51170.5129
1.018485101.5254-
1.018585201.5261-
1.018685301.5111-
1.018785401.5176-
1.018885501.4906-
1.018985601.5139-
1.019085701.4893-
1.019185801.5022-
1.019285901.5134-
1.019386001.50870.5143
1.019486101.512-
1.019586201.495-
1.019686301.4875-
1.019786401.5239-
1.019886501.513-
1.019986601.5124-
1.020086701.4855-
1.020186801.5028-
1.020286901.4998-
1.020387001.49370.5149
1.020487101.5103-
1.020587201.5105-
1.020687301.5062-
1.020787401.5228-
1.020887501.4866-
1.020987601.5092-
1.021087701.5088-
1.021187801.488-
1.021287901.5022-
1.021388001.5040.5097
1.021488101.5051-
1.021588201.5027-
1.021688301.5273-
1.021788401.4884-
1.021888501.4908-
1.021988601.5074-
1.022088701.516-
1.022188801.5422-
1.022288901.5174-
1.022389001.50090.5129
1.022489101.4936-
1.022589201.5076-
1.022689301.5093-
1.022789401.4848-
1.022889501.4958-
1.022989601.5092-
1.023089701.5048-
1.023189801.4895-
1.023289901.4949-
1.023390001.49880.5131
1.023490101.5205-
1.023590201.4961-
1.023690301.5235-
1.023790401.4945-
1.023890501.504-
1.023990601.5147-
1.024090701.5104-
1.024190801.4981-
1.024290901.5019-
1.024391001.48430.5163
1.024491101.4691-
1.024591201.5097-
1.024691301.524-
1.024791401.5055-
1.024891501.5212-
1.024991601.4888-
1.025091701.4887-
1.025191801.5051-
1.025291901.491-
1.025392001.4920.5140
1.025492101.4771-
1.025592201.4683-
1.025692301.4824-
1.025792401.4967-
1.025892501.5054-
1.025992601.4884-
1.026092701.4975-
1.026192801.4918-
1.026292901.5143-
1.026393001.49460.5168
1.026493101.4905-
1.026593201.4981-
1.026693301.4591-
1.026793401.4933-
1.026893501.5028-
1.026993601.5035-
1.027093701.4996-
1.027193801.4939-
1.027293901.505-
1.027394001.4960.5120
1.027494101.5085-
1.027594201.5057-
1.027694301.5065-
1.027794401.4898-
1.027894501.5031-
1.027994601.4784-
1.028094701.4906-
1.028194801.4878-
1.028294901.4931-
1.028395001.50350.5159
1.028495101.4766-
1.028595201.497-
1.028695301.4965-
1.028795401.4743-
1.028895501.4836-
1.028995601.5031-
1.029095701.5287-
1.029195801.4851-
1.029295901.5061-
1.029396001.50710.5191
1.029496101.4943-
1.029596201.502-
1.029696301.4953-
1.029796401.4923-
1.029896501.489-
1.029996601.4968-
1.030096701.5051-
1.030196801.4736-
1.030296901.4883-
1.030397001.50620.5145
1.030497101.4961-
1.030597201.5107-
1.030697301.4852-
1.030797401.4771-
1.030897501.4911-
1.030997601.4781-
1.031097701.5064-
1.031197801.4871-
1.031297901.5042-
1.031398001.49220.5190
1.031498101.4952-
1.031598201.4875-
1.031698301.4974-
1.031798401.5013-
1.031898501.4966-
1.031998601.4861-
1.032098701.5135-
1.032198801.5038-
1.032298901.5148-
1.032399001.51640.5195
1.032499101.494-
1.032599201.4848-
1.032699301.5015-
1.032799401.4868-
1.032899501.4728-
1.032999601.4989-
1.033099701.4742-
1.033199801.4743-
1.033299901.4996-
1.0333100001.47480.5134

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