Views
No views yet
DebiasedMultipleNegativesRankingLoss from Pull Request #3148 in the Sentence Transformers repository, using commit 370bf473e60b57f7d01a6e084b5acaabdac38a2c.SentenceTransformer(
(0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: 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})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("tomaarsen/ModernBERT-base-nq-mnrl")
5# Run inference
6sentences = [
7 'what is meaning of am and pm in time',
8 '12-hour clock The 12-hour clock is a time convention in which the 24 hours of the day are divided into two periods:[1] a.m. (from the Latin, ante meridiem, meaning before midday) and p.m. (post meridiem, meaning past midday).[2] Each period consists of 12 hours numbered: 12 (acting as zero),[3] 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, and 11. The 24 hour/day cycle starts at 12 midnight (often indicated as 12 a.m.), runs through 12 noon (often indicated as 12 p.m.), and continues to the midnight at the end of the day. The 12-hour clock was developed over time from the mid-second millennium BC to the 16th century AD.',
9 "America's Got Talent America's Got Talent (often abbreviated as AGT) is a televised American talent show competition, broadcast on the NBC television network. It is part of the global Got Talent franchise created by Simon Cowell, and is produced by Fremantle North America and SYCOtv, with distribution done by Fremantle. Since its premiere in June 2006, each season is run during the network's summer schedule, with the show having featured various hosts - it is currently hosted by Tyra Banks, since 2017.[2] It is the first global edition of the franchise, after plans for a British edition in 2005 were suspended, following a dispute between Paul O'Grady, the planned host, and the British broadcaster ITV; production of this edition later resumed in 2007.[3]",
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 768]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities.shape)
18# [3, 3]NanoMSMARCO and NanoHotpotQAInformationRetrievalEvaluator| Metric | NanoMSMARCO | NanoHotpotQA |
|---|---|---|
| cosine_accuracy@1 | 0.24 | 0.54 |
| cosine_accuracy@3 | 0.44 | 0.62 |
| cosine_accuracy@5 | 0.58 | 0.64 |
| cosine_accuracy@10 | 0.72 | 0.74 |
| cosine_precision@1 | 0.24 | 0.54 |
| cosine_precision@3 | 0.1467 | 0.28 |
| cosine_precision@5 | 0.116 | 0.176 |
| cosine_precision@10 | 0.072 | 0.11 |
| cosine_recall@1 | 0.24 | 0.27 |
| cosine_recall@3 | 0.44 | 0.42 |
| cosine_recall@5 | 0.58 | 0.44 |
| cosine_recall@10 | 0.72 | 0.55 |
| cosine_ndcg@10 | 0.4603 | 0.4959 |
| cosine_mrr@10 | 0.3797 | 0.5962 |
| cosine_map@100 | 0.3945 | 0.432 |
NanoBEIR_meanNanoBEIREvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.39 |
| cosine_accuracy@3 | 0.53 |
| cosine_accuracy@5 | 0.61 |
| cosine_accuracy@10 | 0.73 |
| cosine_precision@1 | 0.39 |
| cosine_precision@3 | 0.2133 |
| cosine_precision@5 | 0.146 |
| cosine_precision@10 | 0.091 |
| cosine_recall@1 | 0.255 |
| cosine_recall@3 | 0.43 |
| cosine_recall@5 | 0.51 |
| cosine_recall@10 | 0.635 |
| cosine_ndcg@10 | 0.4781 |
| cosine_mrr@10 | 0.488 |
| cosine_map@100 | 0.4133 |
query and answer| query | answer | |
|---|---|---|
| type | string | string |
| details |
|
|
| query | answer |
|---|---|
who is required to report according to the hmda | Home Mortgage Disclosure Act US financial institutions must report HMDA data to their regulator if they meet certain criteria, such as having assets above a specific threshold. The criteria is different for depository and non-depository institutions and are available on the FFIEC website.[4] In 2012, there were 7,400 institutions that reported a total of 18.7 million HMDA records.[5] |
what is the definition of endoplasmic reticulum in biology | Endoplasmic reticulum The endoplasmic reticulum (ER) is a type of organelle in eukaryotic cells that forms an interconnected network of flattened, membrane-enclosed sacs or tube-like structures known as cisternae. The membranes of the ER are continuous with the outer nuclear membrane. The endoplasmic reticulum occurs in most types of eukaryotic cells, but is absent from red blood cells and spermatozoa. There are two types of endoplasmic reticulum: rough and smooth. The outer (cytosolic) face of the rough endoplasmic reticulum is studded with ribosomes that are the sites of protein synthesis. The rough endoplasmic reticulum is especially prominent in cells such as hepatocytes. The smooth endoplasmic reticulum lacks ribosomes and functions in lipid manufacture and metabolism, the production of steroid hormones, and detoxification.[1] The smooth ER is especially abundant in mammalian liver and gonad cells. The lacy membranes of the endoplasmic reticulum were first seen in 1945 using elect... |
what does the ski mean in polish names | Polish name Since the High Middle Ages, Polish-sounding surnames ending with the masculine -ski suffix, including -cki and -dzki, and the corresponding feminine suffix -ska/-cka/-dzka were associated with the nobility (Polish szlachta), which alone, in the early years, had such suffix distinctions.[1] They are widely popular today. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}query and answer| query | answer | |
|---|---|---|
| type | string | string |
| details |
|
|
| query | answer |
|---|---|
difference between russian blue and british blue cat | Russian Blue The coat is known as a "double coat", with the undercoat being soft, downy and equal in length to the guard hairs, which are an even blue with silver tips. However, the tail may have a few very dull, almost unnoticeable stripes. The coat is described as thick, plush and soft to the touch. The feeling is softer than the softest silk. The silver tips give the coat a shimmering appearance. Its eyes are almost always a dark and vivid green. Any white patches of fur or yellow eyes in adulthood are seen as flaws in show cats.[3] Russian Blues should not be confused with British Blues (which are not a distinct breed, but rather a British Shorthair with a blue coat as the British Shorthair breed itself comes in a wide variety of colors and patterns), nor the Chartreux or Korat which are two other naturally occurring breeds of blue cats, although they have similar traits. |
who played the little girl on mrs doubtfire | Mara Wilson Mara Elizabeth Wilson[2] (born July 24, 1987) is an American writer and former child actress. She is known for playing Natalie Hillard in Mrs. Doubtfire (1993), Susan Walker in Miracle on 34th Street (1994), Matilda Wormwood in Matilda (1996) and Lily Stone in Thomas and the Magic Railroad (2000). Since retiring from film acting, Wilson has focused on writing. |
what year did the movie the sound of music come out | The Sound of Music (film) The film was released on March 2, 1965 in the United States, initially as a limited roadshow theatrical release. Although critical response to the film was widely mixed, the film was a major commercial success, becoming the number one box office movie after four weeks, and the highest-grossing film of 1965. By November 1966, The Sound of Music had become the highest-grossing film of all-time—surpassing Gone with the Wind—and held that distinction for five years. The film was just as popular throughout the world, breaking previous box-office records in twenty-nine countries. Following an initial theatrical release that lasted four and a half years, and two successful re-releases, the film sold 283 million admissions worldwide and earned a total worldwide gross of $286,000,000. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim"
4}eval_strategy: stepsper_device_train_batch_size: 128per_device_eval_batch_size: 128learning_rate: 8e-05num_train_epochs: 1warmup_ratio: 0.05seed: 12bf16: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 128per_device_eval_batch_size: 128per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 8e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 1max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.05warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 12data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Truefp16: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}deepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torchoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters:auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Nonedispatch_batches: Nonesplit_batches: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportional| Epoch | Step | Training Loss | Validation Loss | NanoMSMARCO_cosine_ndcg@10 | NanoHotpotQA_cosine_ndcg@10 | NanoBEIR_mean_cosine_ndcg@10 |
|---|---|---|---|---|---|---|
| 0 | 0 | - | - | 0.0785 | 0.1489 | 0.1137 |
| 0.0129 | 10 | 4.1104 | - | - | - | - |
| 0.0258 | 20 | 2.2261 | - | - | - | - |
| 0.0387 | 30 | 1.1152 | - | - | - | - |
| 0.0515 | 40 | 0.504 | - | - | - | - |
| 0.0644 | 50 | 0.2746 | 0.2962 | 0.4216 | 0.4409 | 0.4312 |
| 0.0773 | 60 | 0.2547 | - | - | - | - |
| 0.0902 | 70 | 0.174 | - | - | - | - |
| 0.1031 | 80 | 0.1816 | - | - | - | - |
| 0.1160 | 90 | 0.1554 | - | - | - | - |
| 0.1289 | 100 | 0.1537 | 0.1942 | 0.4321 | 0.4338 | 0.4330 |
| 0.1418 | 110 | 0.1369 | - | - | - | - |
| 0.1546 | 120 | 0.1379 | - | - | - | - |
| 0.1675 | 130 | 0.1388 | - | - | - | - |
| 0.1804 | 140 | 0.1141 | - | - | - | - |
| 0.1933 | 150 | 0.1339 | 0.1541 | 0.4348 | 0.4336 | 0.4342 |
| 0.2062 | 160 | 0.1082 | - | - | - | - |
| 0.2191 | 170 | 0.1115 | - | - | - | - |
| 0.2320 | 180 | 0.1312 | - | - | - | - |
| 0.2448 | 190 | 0.107 | - | - | - | - |
| 0.2577 | 200 | 0.1081 | 0.1281 | 0.4309 | 0.4612 | 0.4460 |
| 0.2706 | 210 | 0.0858 | - | - | - | - |
| 0.2835 | 220 | 0.0903 | - | - | - | - |
| 0.2964 | 230 | 0.0982 | - | - | - | - |
| 0.3093 | 240 | 0.1114 | - | - | - | - |
| 0.3222 | 250 | 0.0766 | 0.1159 | 0.4683 | 0.4655 | 0.4669 |
| 0.3351 | 260 | 0.0842 | - | - | - | - |
| 0.3479 | 270 | 0.0772 | - | - | - | - |
| 0.3608 | 280 | 0.0946 | - | - | - | - |
| 0.3737 | 290 | 0.0818 | - | - | - | - |
| 0.3866 | 300 | 0.0901 | 0.1114 | 0.4376 | 0.4689 | 0.4533 |
| 0.3995 | 310 | 0.0762 | - | - | - | - |
| 0.4124 | 320 | 0.0891 | - | - | - | - |
| 0.4253 | 330 | 0.0786 | - | - | - | - |
| 0.4381 | 340 | 0.0741 | - | - | - | - |
| 0.4510 | 350 | 0.073 | 0.1001 | 0.4586 | 0.4579 | 0.4583 |
| 0.4639 | 360 | 0.074 | - | - | - | - |
| 0.4768 | 370 | 0.0883 | - | - | - | - |
| 0.4897 | 380 | 0.0747 | - | - | - | - |
| 0.5026 | 390 | 0.0637 | - | - | - | - |
| 0.5155 | 400 | 0.0711 | 0.1035 | 0.4331 | 0.4538 | 0.4435 |
| 0.5284 | 410 | 0.0813 | - | - | - | - |
| 0.5412 | 420 | 0.0643 | - | - | - | - |
| 0.5541 | 430 | 0.0793 | - | - | - | - |
| 0.5670 | 440 | 0.0815 | - | - | - | - |
| 0.5799 | 450 | 0.0712 | 0.0953 | 0.4331 | 0.4684 | 0.4507 |
| 0.5928 | 460 | 0.0664 | - | - | - | - |
| 0.6057 | 470 | 0.0637 | - | - | - | - |
| 0.6186 | 480 | 0.0753 | - | - | - | - |
| 0.6314 | 490 | 0.0734 | - | - | - | - |
| 0.6443 | 500 | 0.0755 | 0.0850 | 0.4840 | 0.4443 | 0.4641 |
| 0.6572 | 510 | 0.0676 | - | - | - | - |
| 0.6701 | 520 | 0.071 | - | - | - | - |
| 0.6830 | 530 | 0.0725 | - | - | - | - |
| 0.6959 | 540 | 0.0536 | - | - | - | - |
| 0.7088 | 550 | 0.0532 | 0.0807 | 0.4854 | 0.4601 | 0.4727 |
| 0.7216 | 560 | 0.0601 | - | - | - | - |
| 0.7345 | 570 | 0.0672 | - | - | - | - |
| 0.7474 | 580 | 0.0635 | - | - | - | - |
| 0.7603 | 590 | 0.0691 | - | - | - | - |
| 0.7732 | 600 | 0.0668 | 0.0836 | 0.4690 | 0.4829 | 0.4759 |
| 0.7861 | 610 | 0.0493 | - | - | - | - |
| 0.7990 | 620 | 0.0543 | - | - | - | - |
| 0.8119 | 630 | 0.0574 | - | - | - | - |
| 0.8247 | 640 | 0.0546 | - | - | - | - |
| 0.8376 | 650 | 0.0581 | 0.0834 | 0.4407 | 0.4817 | 0.4612 |
| 0.8505 | 660 | 0.0645 | - | - | - | - |
| 0.8634 | 670 | 0.059 | - | - | - | - |
| 0.8763 | 680 | 0.0604 | - | - | - | - |
| 0.8892 | 690 | 0.0547 | - | - | - | - |
| 0.9021 | 700 | 0.0561 | 0.0796 | 0.4457 | 0.4769 | 0.4613 |
| 0.9149 | 710 | 0.0491 | - | - | - | - |
| 0.9278 | 720 | 0.0505 | - | - | - | - |
| 0.9407 | 730 | 0.0545 | - | - | - | - |
| 0.9536 | 740 | 0.0445 | - | - | - | - |
| 0.9665 | 750 | 0.057 | 0.0765 | 0.4668 | 0.4936 | 0.4802 |
| 0.9794 | 760 | 0.0491 | - | - | - | - |
| 0.9923 | 770 | 0.0526 | - | - | - | - |
| 1.0 | 776 | - | - | 0.4603 | 0.4959 | 0.4781 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 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},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}