CoolFace
Modelpublic

yjoonjang/MIMO-mmBERT-base

sourceHugging Faceupdated 28d agoView on Hugging Face
0likes30downloads
Model Card

SentenceTransformer based on jhu-clsp/mmBERT-base

This is a sentence-transformers model finetuned from jhu-clsp/mmBERT-base. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • Model Type: Sentence Transformer
  • Base model: jhu-clsp/mmBERT-base <!-- at revision c5955035435e2bf121cde7f3c8863ef52ff35d82 -->
  • Maximum Sequence Length: 256 tokens
  • Output Dimensionality: 768 dimensions
  • Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'ModernBertModel'})
  (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)

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("yjoonjang/MIMO-mmBERT-base")
# Run inference
sentences = [
    'Third Ave.',
    'Third Ave.',
    'it',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 1.0000, 0.4479],
#         [1.0000, 1.0000, 0.4479],
#         [0.4479, 0.4479, 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
  • Datasets: NanoMIRACL-ar, NanoMIRACL-de, NanoMIRACL-en, NanoMIRACL-es, NanoMIRACL-fr, NanoMIRACL-hi, NanoMIRACL-id, NanoMIRACL-ja, NanoMIRACL-ru and NanoMIRACL-zh
  • Evaluated with <code>InformationRetrievalEvaluator</code>
MetricNanoMIRACL-arNanoMIRACL-deNanoMIRACL-enNanoMIRACL-esNanoMIRACL-frNanoMIRACL-hiNanoMIRACL-idNanoMIRACL-jaNanoMIRACL-ruNanoMIRACL-zh
cosine_accuracy@10.140.260.30.380.280.10.160.180.260.28
cosine_accuracy@30.360.520.560.620.480.320.360.480.420.56
cosine_accuracy@50.50.70.620.70.640.40.50.560.540.7
cosine_accuracy@100.560.920.880.880.960.540.660.680.740.84
cosine_precision@10.140.260.30.380.280.10.160.180.260.28
cosine_precision@100.0560.0920.0880.0880.0960.0540.0660.0680.0740.084
cosine_recall@10.140.260.30.380.280.10.160.180.260.28
cosine_recall@100.560.920.880.880.960.540.660.680.740.84
cosine_ndcg@100.34930.56630.56810.61010.56690.30120.39020.43260.47080.5428
cosine_mrr@100.28160.45680.4710.52640.44780.22710.30640.35370.38910.4494
cosine_map@1000.3010.46170.47470.53280.44960.24370.31650.36330.39780.4539
Nano MIRACL
  • Dataset: NanoMIRACL_mean
  • Evaluated with <code>evaluation.nanomiraclevaluator.NanoMIRACLEvaluator</code>
MetricValue
cosine_accuracy@10.234
cosine_accuracy@30.468
cosine_accuracy@50.586
cosine_accuracy@100.766
cosine_precision@10.234
cosine_precision@100.0766
cosine_recall@10.234
cosine_recall@100.766
cosine_ndcg@100.4798
cosine_mrr@100.3909
cosine_map@1000.3995

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

Unnamed Dataset
  • Size: 5,647,936 training samples
  • Columns: <code>anchor</code>, <code>positive</code>, and <code>lang</code>
  • Approximate statistics based on the first 1000 samples: | | anchor | positive | lang | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:-------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 26.92 tokens</li><li>max: 129 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 22.73 tokens</li><li>max: 118 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 3.0 tokens</li><li>max: 3 tokens</li></ul> |
  • Samples: | anchor | positive | lang | |:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------| | <code>Desidero soltanto far presente che le due proposte presentate dal nostro gruppo sulla questione dei trasferimenti di crediti non sono risultate del tutto compatibili e pertanto sono state respinte.</code> | <code>I only wish to draw attention to the two amendments tabled by our group on the question of carry-overs, where the texts are incompatible in their present form. They were rejected.</code> | <code>it</code> | | <code>Dieser ist - so schwierig es ist, die Klimaveränderung mit Rechenexempeln zu demonstrieren - zum Teil von Menschen gemacht.</code> | <code>This is partly the work of human hand, as difficult as it is to demonstrate climate change using calculations.</code> | <code>de</code> | | <code>Nel corso della procedura a) il Parlamento sarà consultato in merito al regime linguistico (la decisione in questo caso deve essere assunta dal Consiglio), b) il Parlamento prenderà parte al processo decisionale sul contenuto del regolamento sul brevetto nell'ambito della procedura legislativa ordinaria, c) è previsto il consenso dell'Assemblea sulla giurisdizione del brevetto.</code> | <code>The remainder of the procedure will involve a) Parliament being consulted about the language arrangements (the decision in this case must be made by the Council), b) Parliament taking part in deciding on the content of the patent regulation as part of the ordinary legislative procedure, c) Parliament's consent being obtained for the patent jurisdiction. There will be no change in any of these opportunities for Parliament to participate in the process.</code> | <code>it</code> |
  • Loss: <code>customlosses.embeddistill_loss.EmbedDistillLoss</code> with these parameters:
json
  {
      "distance_metric": "cosine",
      "projection_in": 768,
      "projection_out": 4096
  }

Training Hyperparameters

Non-Default Hyperparameters
  • per_device_train_batch_size: 128
  • num_train_epochs: 1.0
  • learning_rate: 0.0001
  • warmup_steps: 0.1
  • bf16: True
  • eval_strategy: steps
  • eval_on_start: True
  • dataloader_num_workers: 4
  • warmup_ratio: 0.1
All Hyperparameters

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

  • per_device_train_batch_size: 128
  • num_train_epochs: 1.0
  • max_steps: -1
  • learning_rate: 0.0001
  • lr_scheduler_type: linear
  • lr_scheduler_kwargs: None
  • warmup_steps: 0.1
  • optim: adamwtorchfused
  • optim_args: None
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • optim_target_modules: None
  • gradient_accumulation_steps: 1
  • average_tokens_across_devices: True
  • max_grad_norm: 1.0
  • label_smoothing_factor: 0.0
  • bf16: True
  • fp16: False
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • use_liger_kernel: False
  • liger_kernel_config: None
  • use_cache: False
  • neftune_noise_alpha: None
  • torch_empty_cache_steps: None
  • auto_find_batch_size: False
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • include_num_input_tokens_seen: no
  • log_level: passive
  • log_level_replica: warning
  • disable_tqdm: False
  • project: huggingface
  • trackio_space_id: trackio
  • eval_strategy: steps
  • per_device_eval_batch_size: 8
  • prediction_loss_only: True
  • eval_on_start: True
  • eval_do_concat_batches: True
  • eval_use_gather_object: False
  • eval_accumulation_steps: None
  • include_for_metrics: []
  • batch_eval_metrics: False
  • save_only_model: False
  • save_on_each_node: False
  • enable_jit_checkpoint: False
  • push_to_hub: False
  • hub_private_repo: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_always_push: False
  • hub_revision: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • restore_callback_states_from_checkpoint: False
  • full_determinism: False
  • seed: 42
  • data_seed: None
  • use_cpu: False
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • parallelism_config: None
  • dataloader_drop_last: True
  • dataloader_num_workers: 4
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • dataloader_prefetch_factor: None
  • remove_unused_columns: True
  • label_names: None
  • train_sampling_strategy: random
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • ddp_backend: None
  • ddp_timeout: 1800
  • fsdp: []
  • fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • deepspeed: None
  • debug: []
  • skip_memory_metrics: True
  • do_predict: False
  • resume_from_checkpoint: None
  • warmup_ratio: 0.1
  • local_rank: -1
  • prompts: None
  • batch_sampler: batch_sampler
  • multi_dataset_batch_sampler: proportional
  • router_mapping: {}
  • learning_rate_mapping: {}
  • max_seq_length: 256
  • stage: 1
  • distance_metric: cosine
  • infonce_weight: 0.5
  • distill_weight: 0.5
  • infonce_scale: 20.0
  • mini_batch_size: 32
  • teacher_query_prompt: None
  • teacher_max_seq_length: 256
  • projection_path: None
  • group_by_language: False
  • pooling_mode: mean
  • student_query_prompt: None
  • student_doc_prompt: None

</details>

Training Logs

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

EpochStepTraining LossNanoMIRACL-ar_cosine_ndcg@10NanoMIRACL-de_cosine_ndcg@10NanoMIRACL-en_cosine_ndcg@10NanoMIRACL-es_cosine_ndcg@10NanoMIRACL-fr_cosine_ndcg@10NanoMIRACL-hi_cosine_ndcg@10NanoMIRACL-id_cosine_ndcg@10NanoMIRACL-ja_cosine_ndcg@10NanoMIRACL-ru_cosine_ndcg@10NanoMIRACL-zh_cosine_ndcg@10NanoMIRACL_mean_cosine_ndcg@10
00-0.04040.28220.15810.21730.14410.12090.08650.03930.08010.07260.1241
0.0023500.9893-----------
0.00451000.8759-----------
0.00681500.6713-----------
0.00912000.5337-----------
0.01132500.4781-----------
0.01363000.4660-----------
0.01593500.4546-----------
0.01814000.4415-----------
0.02044500.4349-----------
0.02275000.4249-----------
0.02495500.4184-----------
0.02726000.4122-----------
0.02956500.4056-----------
0.03177000.4007-----------
0.03407500.3946-----------
0.03638000.3889-----------
0.03858500.3845-----------
0.04089000.3781-----------
0.04319500.3738-----------
0.045310000.3687-----------
0.047610500.3647-----------
0.049911000.3611-----------
0.05001104-0.03060.10080.02770.05550.05470.08650.00.04290.02710.04220.0468
0.052111500.3550-----------
0.054412000.3519-----------
0.056712500.3468-----------
0.058913000.3456-----------
0.061213500.3430-----------
0.063514000.3393-----------
0.065714500.3347-----------
0.068015000.3335-----------
0.070315500.3312-----------
0.072516000.3285-----------
0.074816500.3263-----------
0.077117000.3248-----------
0.079317500.3201-----------
0.081618000.3205-----------
0.083918500.3163-----------
0.086119000.3171-----------
0.088419500.3139-----------
0.090720000.3132-----------
0.092920500.3114-----------
0.095221000.3093-----------
0.097521500.3090-----------
0.099722000.3064-----------
0.10012208-0.20420.39430.25270.32910.34700.22800.12260.18150.21270.29570.2568
0.102022500.3042-----------
0.104323000.3026-----------
0.106523500.3025-----------
0.108824000.2988-----------
0.111124500.2994-----------
0.113325000.2978-----------
0.115625500.2978-----------
0.117826000.2947-----------
0.120126500.2953-----------
0.122427000.2943-----------
0.124627500.2942-----------
0.126928000.2925-----------
0.129228500.2910-----------
0.131429000.2905-----------
0.133729500.2896-----------
0.136030000.2890-----------
0.138230500.2880-----------
0.140531000.2873-----------
0.142831500.2877-----------
0.145032000.2841-----------
0.147332500.2846-----------
0.149633000.2836-----------
0.15013312-0.24270.41470.38260.42820.40690.24790.19930.29090.31910.43930.3372
0.151833500.2814-----------
0.154134000.2836-----------
0.156434500.2830-----------
0.158635000.2830-----------
0.160935500.2818-----------
0.163236000.2820-----------
0.165436500.2802-----------
0.167737000.2795-----------
0.170037500.2790-----------
0.172238000.2778-----------
0.174538500.2777-----------
0.176839000.2774-----------
0.179039500.2766-----------
0.181340000.2762-----------
0.183640500.2757-----------
0.185841000.2746-----------
0.188141500.2755-----------
0.190442000.2749-----------
0.192642500.2735-----------
0.194943000.2716-----------
0.197243500.2738-----------
0.199444000.2733-----------
0.20024416-0.22530.43510.39440.51030.45020.26670.23360.35300.34820.42890.3646
0.201744500.2708-----------
0.204045000.2727-----------
0.206245500.2715-----------
0.208546000.2693-----------
0.210846500.2703-----------
0.213047000.2707-----------
0.215347500.2684-----------
0.217648000.2706-----------
0.219848500.2688-----------
0.222149000.2673-----------
0.224449500.2703-----------
0.226650000.2674-----------
0.228950500.2678-----------
0.231251000.2682-----------
0.233451500.2675-----------
0.235752000.2667-----------
0.238052500.2669-----------
0.240253000.2658-----------
0.242553500.2665-----------
0.244854000.2653-----------
0.247054500.2637-----------
0.249355000.2654-----------
0.25025520-0.24620.49010.44770.54700.50440.31480.26590.30520.34710.44070.3909
0.251655500.2639-----------
0.253856000.2655-----------
0.256156500.2634-----------
0.258457000.2636-----------
0.260657500.2628-----------
0.262958000.2627-----------
0.265258500.2618-----------
0.267459000.2635-----------
0.269759500.2612-----------
0.272060000.2606-----------
0.274260500.2621-----------
0.276561000.2612-----------
0.278861500.2626-----------
0.281062000.2598-----------
0.283362500.2601-----------
0.285663000.2611-----------
0.287863500.2598-----------
0.290164000.2601-----------
0.292464500.2598-----------
0.294665000.2599-----------
0.296965500.2585-----------
0.299266000.2604-----------
0.30026624-0.28620.47430.46680.55660.45480.27060.27430.34130.36050.45420.3940
0.301466500.2598-----------
0.303767000.2591-----------
0.306067500.2592-----------
0.308268000.2583-----------
0.310568500.2578-----------
0.312869000.2583-----------
0.315069500.2571-----------
0.317370000.2580-----------
0.319670500.2568-----------
0.321871000.2577-----------
0.324171500.2566-----------
0.326472000.2548-----------
0.328672500.2569-----------
0.330973000.2551-----------
0.333273500.2565-----------
0.335474000.2574-----------
0.337774500.2553-----------
0.340075000.2570-----------
0.342275500.2544-----------
0.344576000.2549-----------
0.346876500.2543-----------
0.349077000.2534-----------
0.35037728-0.28270.48560.46430.60700.52010.32120.29550.39700.43530.50940.4318
0.351377500.2532-----------
0.353578000.2552-----------
0.355878500.2530-----------
0.358179000.2532-----------
0.360379500.2528-----------
0.362680000.2523-----------
0.364980500.2516-----------
0.367181000.2530-----------
0.369481500.2531-----------
0.371782000.2522-----------
0.373982500.2531-----------
0.376283000.2524-----------
0.378583500.2513-----------
0.380784000.2524-----------
0.383084500.2535-----------
0.385385000.2519-----------
0.387585500.2527-----------
0.389886000.2517-----------
0.392186500.2530-----------
0.394387000.2519-----------
0.396687500.2504-----------
0.398988000.2526-----------
0.40038832-0.30150.48550.53910.57980.52120.28880.32640.36210.41150.50270.4319
0.401188500.2492-----------
0.403489000.2501-----------
0.405789500.2493-----------
0.407990000.2491-----------
0.410290500.2495-----------
0.412591000.2496-----------
0.414791500.2492-----------
0.417092000.2502-----------
0.419392500.2501-----------
0.421593000.2481-----------
0.423893500.2472-----------
0.426194000.2501-----------
0.428394500.2462-----------
0.430695000.2476-----------
0.432995500.2478-----------
0.435196000.2487-----------
0.437496500.2467-----------
0.439797000.2477-----------
0.441997500.2485-----------
0.444298000.2464-----------
0.446598500.2483-----------
0.448799000.2469-----------
0.45049936-0.31390.52600.52630.59210.53090.33420.35220.37810.43020.50060.4485
0.451099500.2468-----------
0.4533100000.2461-----------
0.4555100500.2462-----------
0.4578101000.2469-----------
0.4601101500.2472-----------
0.4623102000.2471-----------
0.4646102500.2452-----------
0.4669103000.2470-----------
0.4691103500.2456-----------
0.4714104000.2464-----------
0.4737104500.2461-----------
0.4759105000.2449-----------
0.4782105500.2446-----------
0.4805106000.2458-----------
0.4827106500.2440-----------
0.4850107000.2451-----------
0.4873107500.2456-----------
0.4895108000.2450-----------
0.4918108500.2437-----------
0.4941109000.2442-----------
0.4963109500.2442-----------
0.4986110000.2444-----------
0.500411040-0.28710.52950.52750.58330.53210.32840.37640.39110.42600.51800.4499
0.5009110500.2438-----------
0.5031111000.2441-----------
0.5054111500.2431-----------
0.5077112000.2443-----------
0.5099112500.2431-----------
0.5122113000.2440-----------
0.5145113500.2429-----------
0.5167114000.2421-----------
0.5190114500.2431-----------
0.5213115000.2425-----------
0.5235115500.2424-----------
0.5258116000.2437-----------
0.5281116500.2430-----------
0.5303117000.2425-----------
0.5326117500.2434-----------
0.5349118000.2423-----------
0.5371118500.2411-----------
0.5394119000.2413-----------
0.5417119500.2417-----------
0.5439120000.2419-----------
0.5462120500.2422-----------
0.5485121000.2416-----------
0.550412144-0.30900.49590.54380.60900.53220.32040.33210.40030.43590.49120.4470
0.5507121500.2420-----------
0.5530122000.2410-----------
0.5553122500.2412-----------
0.5575123000.2406-----------
0.5598123500.2409-----------
0.5621124000.2411-----------
0.5643124500.2419-----------
0.5666125000.2414-----------
0.5689125500.2398-----------
0.5711126000.2403-----------
0.5734126500.2400-----------
0.5757127000.2401-----------
0.5779127500.2414-----------
0.5802128000.2408-----------
0.5824128500.2404-----------
0.5847129000.2395-----------
0.5870129500.2400-----------
0.5892130000.2394-----------
0.5915130500.2399-----------
0.5938131000.2399-----------
0.5960131500.2391-----------
0.5983132000.2390-----------
0.600513248-0.30780.51420.52640.59700.53740.29080.34270.41600.44810.49770.4478
0.6006132500.2399-----------
0.6028133000.2405-----------
0.6051133500.2385-----------
0.6074134000.2382-----------
0.6096134500.2380-----------
0.6119135000.2378-----------
0.6142135500.2386-----------
0.6164136000.2368-----------
0.6187136500.2391-----------
0.6210137000.2378-----------
0.6232137500.2391-----------
0.6255138000.2380-----------
0.6278138500.2384-----------
0.6300139000.2364-----------
0.6323139500.2361-----------
0.6346140000.2373-----------
0.6368140500.2376-----------
0.6391141000.2386-----------
0.6414141500.2372-----------
0.6436142000.2370-----------
0.6459142500.2375-----------
0.6482143000.2376-----------
0.6504143500.2363-----------
0.650514352-0.35110.53410.55510.60200.57050.29590.36860.43450.46730.51590.4695
0.6527144000.2362-----------
0.6550144500.2374-----------
0.6572145000.2366-----------
0.6595145500.2367-----------
0.6618146000.2386-----------
0.6640146500.2367-----------
0.6663147000.2374-----------
0.6686147500.2355-----------
0.6708148000.2375-----------
0.6731148500.2372-----------
0.6754149000.2363-----------
0.6776149500.2368-----------
0.6799150000.2361-----------
0.6822150500.2367-----------
0.6844151000.2351-----------
0.6867151500.2359-----------
0.6890152000.2360-----------
0.6912152500.2366-----------
0.6935153000.2358-----------
0.6958153500.2370-----------
0.6980154000.2362-----------
0.7003154500.2356-----------
0.700615456-0.32430.54440.54380.61260.54890.30420.37410.41510.47960.49830.4645
0.7026155000.2344-----------
0.7048155500.2362-----------
0.7071156000.2352-----------
0.7094156500.2355-----------
0.7116157000.2363-----------
0.7139157500.2366-----------
0.7162158000.2343-----------
0.7184158500.2349-----------
0.7207159000.2349-----------
0.7230159500.2348-----------
0.7252160000.2345-----------
0.7275160500.2346-----------
0.7298161000.2335-----------
0.7320161500.2340-----------
0.7343162000.2345-----------
0.7366162500.2356-----------
0.7388163000.2344-----------
0.7411163500.2351-----------
0.7434164000.2330-----------
0.7456164500.2338-----------
0.7479165000.2327-----------
0.7502165500.2333-----------
0.750616560-0.34570.54890.52740.62140.55020.32740.35530.40160.45930.51570.4653
0.7524166000.2343-----------
0.7547166500.2337-----------
0.7570167000.2330-----------
0.7592167500.2322-----------
0.7615168000.2323-----------
0.7638168500.2340-----------
0.7660169000.2341-----------
0.7683169500.2349-----------
0.7706170000.2325-----------
0.7728170500.2335-----------
0.7751171000.2342-----------
0.7774171500.2337-----------
0.7796172000.2326-----------
0.7819172500.2331-----------
0.7842173000.2345-----------
0.7864173500.2331-----------
0.7887174000.2328-----------
0.7910174500.2321-----------
0.7932175000.2320-----------
0.7955175500.2308-----------
0.7978176000.2319-----------
0.8000176500.2317-----------
0.800717664-0.36010.56770.56470.58780.55780.30330.36440.42060.49070.52470.4742
0.8023177000.2320-----------
0.8046177500.2314-----------
0.8068178000.2316-----------
0.8091178500.2322-----------
0.8113179000.2318-----------
0.8136179500.2316-----------
0.8159180000.2311-----------
0.8181180500.2312-----------
0.8204181000.2330-----------
0.8227181500.2331-----------
0.8249182000.2322-----------
0.8272182500.2323-----------
0.8295183000.2312-----------
0.8317183500.2309-----------
0.8340184000.2312-----------
0.8363184500.2321-----------
0.8385185000.2317-----------
0.8408185500.2314-----------
0.8431186000.2311-----------
0.8453186500.2307-----------
0.8476187000.2308-----------
0.8499187500.2310-----------
0.850718768-0.35600.57280.57110.60140.57620.28960.36700.44280.46040.54290.4780
0.8521188000.2303-----------
0.8544188500.2301-----------
0.8567189000.2303-----------
0.8589189500.2302-----------
0.8612190000.2308-----------
0.8635190500.2303-----------
0.8657191000.2302-----------
0.8680191500.2310-----------
0.8703192000.2308-----------
0.8725192500.2306-----------
0.8748193000.2312-----------
0.8771193500.2315-----------
0.8793194000.2306-----------
0.8816194500.2298-----------
0.8839195000.2301-----------
0.8861195500.2300-----------
0.8884196000.2300-----------
0.8907196500.2304-----------
0.8929197000.2298-----------
0.8952197500.2294-----------
0.8975198000.2300-----------
0.8997198500.2302-----------
0.900719872-0.35760.57970.57030.60130.57840.30310.38020.42650.47900.53900.4815
0.9020199000.2298-----------
0.9043199500.2311-----------
0.9065200000.2288-----------
0.9088200500.2309-----------
0.9111201000.2301-----------
0.9133201500.2295-----------
0.9156202000.2297-----------
0.9179202500.2297-----------
0.9201203000.2294-----------
0.9224203500.2297-----------
0.9247204000.2298-----------
0.9269204500.2287-----------
0.9292205000.2300-----------
0.9315205500.2299-----------
0.9337206000.2289-----------
0.9360206500.2307-----------
0.9383207000.2304-----------
0.9405207500.2299-----------
0.9428208000.2298-----------
0.9451208500.2291-----------
0.9473209000.2296-----------
0.9496209500.2294-----------
0.950820976-0.34930.56630.56810.61010.56690.30120.39020.43260.47080.54280.4798
0.9519210000.2282-----------
0.9541210500.2299-----------
0.9564211000.2288-----------
0.9587211500.2302-----------
0.9609212000.2290-----------
0.9632212500.2304-----------
0.9655213000.2282-----------
0.9677213500.2290-----------
0.9700214000.2296-----------
0.9723214500.2288-----------
0.9745215000.2294-----------
0.9768215500.2285-----------
0.9791216000.2294-----------
0.9813216500.2294-----------
0.9836217000.2286-----------
0.9859217500.2290-----------
0.9881218000.2291-----------
0.9904218500.2291-----------
0.9927219000.2282-----------
0.9949219500.2285-----------
0.9972220000.2272-----------
0.9995220500.2290-----------

</details>

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 5.2.3
  • Transformers: 5.2.0
  • PyTorch: 2.8.0+cu128
  • Accelerate: 1.12.0
  • Datasets: 4.6.1
  • 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",
}

<!--

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