Training with Prompts
Collection
See the Training with Prompts documentation for more details: https://sbert.net/examples/training/prompts/README.html
•
5 items
•
Updated
•
1
This is a sentence-transformers model finetuned from microsoft/mpnet-base on the natural-questions dataset. 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.
This model was trained using the script from the Training with Prompts Sentence Transformers documentation.
SentenceTransformer(
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: MPNetModel
(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})
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("tomaarsen/mpnet-base-nq")
# Run inference
sentences = [
'where does the last name francisco come from',
'Francisco Francisco is the Spanish and Portuguese form of the masculine given name Franciscus (corresponding to English Francis).',
'Book of Esther The Book of Esther, also known in Hebrew as "the Scroll" (Megillah), is a book in the third section (Ketuvim, "Writings") of the Jewish Tanakh (the Hebrew Bible) and in the Christian Old Testament. It is one of the five Scrolls (Megillot) in the Hebrew Bible. It relates the story of a Hebrew woman in Persia, born as Hadassah but known as Esther, who becomes queen of Persia and thwarts a genocide of her people. The story forms the core of the Jewish festival of Purim, during which it is read aloud twice: once in the evening and again the following morning. The books of Esther and Song of Songs are the only books in the Hebrew Bible that do not explicitly mention God.[2]',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
NanoClimateFEVER
, NanoDBPedia
, NanoFEVER
, NanoFiQA2018
, NanoHotpotQA
, NanoMSMARCO
, NanoNFCorpus
, NanoNQ
, NanoQuoraRetrieval
, NanoSCIDOCS
, NanoArguAna
, NanoSciFact
and NanoTouche2020
InformationRetrievalEvaluator
Metric | NanoClimateFEVER | NanoDBPedia | NanoFEVER | NanoFiQA2018 | NanoHotpotQA | NanoMSMARCO | NanoNFCorpus | NanoNQ | NanoQuoraRetrieval | NanoSCIDOCS | NanoArguAna | NanoSciFact | NanoTouche2020 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cosine_accuracy@1 | 0.26 | 0.54 | 0.52 | 0.3 | 0.56 | 0.32 | 0.3 | 0.4 | 0.84 | 0.4 | 0.22 | 0.44 | 0.5714 |
cosine_accuracy@3 | 0.44 | 0.82 | 0.7 | 0.44 | 0.66 | 0.56 | 0.44 | 0.56 | 0.92 | 0.54 | 0.62 | 0.66 | 0.8571 |
cosine_accuracy@5 | 0.58 | 0.88 | 0.78 | 0.58 | 0.68 | 0.68 | 0.46 | 0.68 | 0.94 | 0.64 | 0.86 | 0.68 | 0.9184 |
cosine_accuracy@10 | 0.74 | 0.92 | 0.88 | 0.64 | 0.72 | 0.74 | 0.56 | 0.78 | 0.98 | 0.76 | 0.94 | 0.74 | 0.9796 |
cosine_precision@1 | 0.26 | 0.54 | 0.52 | 0.3 | 0.56 | 0.32 | 0.3 | 0.4 | 0.84 | 0.4 | 0.22 | 0.44 | 0.5714 |
cosine_precision@3 | 0.1667 | 0.4933 | 0.24 | 0.1867 | 0.2867 | 0.1867 | 0.28 | 0.2 | 0.38 | 0.28 | 0.2067 | 0.2333 | 0.5306 |
cosine_precision@5 | 0.132 | 0.452 | 0.16 | 0.16 | 0.192 | 0.136 | 0.256 | 0.144 | 0.24 | 0.24 | 0.172 | 0.144 | 0.5184 |
cosine_precision@10 | 0.098 | 0.4 | 0.092 | 0.094 | 0.102 | 0.074 | 0.206 | 0.082 | 0.132 | 0.176 | 0.094 | 0.084 | 0.4163 |
cosine_recall@1 | 0.1217 | 0.0353 | 0.51 | 0.1508 | 0.28 | 0.32 | 0.0115 | 0.38 | 0.7407 | 0.0837 | 0.22 | 0.405 | 0.0404 |
cosine_recall@3 | 0.2133 | 0.1289 | 0.68 | 0.2558 | 0.43 | 0.56 | 0.0287 | 0.55 | 0.8787 | 0.1737 | 0.62 | 0.63 | 0.118 |
cosine_recall@5 | 0.2823 | 0.1718 | 0.75 | 0.3678 | 0.48 | 0.68 | 0.0404 | 0.65 | 0.9093 | 0.2477 | 0.86 | 0.65 | 0.1893 |
cosine_recall@10 | 0.4023 | 0.2799 | 0.85 | 0.4388 | 0.51 | 0.74 | 0.0588 | 0.74 | 0.97 | 0.3637 | 0.94 | 0.73 | 0.2809 |
cosine_ndcg@10 | 0.3073 | 0.4787 | 0.6729 | 0.3428 | 0.4885 | 0.5292 | 0.2296 | 0.5598 | 0.9012 | 0.3399 | 0.5736 | 0.5809 | 0.4716 |
cosine_mrr@10 | 0.3923 | 0.6885 | 0.6254 | 0.4102 | 0.6108 | 0.4614 | 0.3806 | 0.5117 | 0.8869 | 0.5016 | 0.4556 | 0.5429 | 0.7203 |
cosine_map@100 | 0.2349 | 0.3351 | 0.6148 | 0.286 | 0.4385 | 0.4727 | 0.075 | 0.5051 | 0.8761 | 0.2598 | 0.4586 | 0.5344 | 0.3661 |
NanoBEIR_mean
NanoBEIREvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.4363 |
cosine_accuracy@3 | 0.6321 |
cosine_accuracy@5 | 0.7199 |
cosine_accuracy@10 | 0.7984 |
cosine_precision@1 | 0.4363 |
cosine_precision@3 | 0.2824 |
cosine_precision@5 | 0.2266 |
cosine_precision@10 | 0.1577 |
cosine_recall@1 | 0.2538 |
cosine_recall@3 | 0.4052 |
cosine_recall@5 | 0.483 |
cosine_recall@10 | 0.5619 |
cosine_ndcg@10 | 0.4982 |
cosine_mrr@10 | 0.5529 |
cosine_map@100 | 0.4198 |
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. |
CachedMultipleNegativesRankingLoss
with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
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. |
CachedMultipleNegativesRankingLoss
with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
eval_strategy
: stepsper_device_train_batch_size
: 256per_device_eval_batch_size
: 256learning_rate
: 2e-05num_train_epochs
: 1warmup_ratio
: 0.1seed
: 12bf16
: Truebatch_sampler
: no_duplicatesoverwrite_output_dir
: Falsedo_predict
: Falseeval_strategy
: stepsprediction_loss_only
: Trueper_device_train_batch_size
: 256per_device_eval_batch_size
: 256per_gpu_train_batch_size
: Noneper_gpu_eval_batch_size
: Nonegradient_accumulation_steps
: 1eval_accumulation_steps
: Nonetorch_empty_cache_steps
: Nonelearning_rate
: 2e-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.1warmup_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
: Falsehub_always_push
: Falsegradient_checkpointing
: Falsegradient_checkpointing_kwargs
: Noneinclude_inputs_for_metrics
: Falseeval_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
: Falsebatch_sampler
: no_duplicatesmulti_dataset_batch_sampler
: proportionalEpoch | Step | Training Loss | Validation Loss | NanoClimateFEVER_cosine_ndcg@10 | NanoDBPedia_cosine_ndcg@10 | NanoFEVER_cosine_ndcg@10 | NanoFiQA2018_cosine_ndcg@10 | NanoHotpotQA_cosine_ndcg@10 | NanoMSMARCO_cosine_ndcg@10 | NanoNFCorpus_cosine_ndcg@10 | NanoNQ_cosine_ndcg@10 | NanoQuoraRetrieval_cosine_ndcg@10 | NanoSCIDOCS_cosine_ndcg@10 | NanoArguAna_cosine_ndcg@10 | NanoSciFact_cosine_ndcg@10 | NanoTouche2020_cosine_ndcg@10 | NanoBEIR_mean_cosine_ndcg@10 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | - | - | 0.0419 | 0.1123 | 0.0389 | 0.0309 | 0.0746 | 0.1310 | 0.0311 | 0.0397 | 0.6607 | 0.0638 | 0.2616 | 0.1097 | 0.1098 | 0.1312 |
0.0026 | 1 | 4.9565 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
0.1289 | 50 | 2.0541 | 0.2601 | 0.2710 | 0.4448 | 0.6531 | 0.3607 | 0.4391 | 0.4775 | 0.2046 | 0.4423 | 0.8485 | 0.3347 | 0.5148 | 0.5010 | 0.4544 | 0.4574 |
0.2577 | 100 | 0.2154 | 0.1422 | 0.2920 | 0.4577 | 0.6635 | 0.3671 | 0.4623 | 0.5067 | 0.2115 | 0.5170 | 0.8845 | 0.3360 | 0.5483 | 0.5044 | 0.4627 | 0.4780 |
0.3866 | 150 | 0.1503 | 0.1182 | 0.3064 | 0.4665 | 0.6658 | 0.3511 | 0.4935 | 0.5324 | 0.2347 | 0.5320 | 0.8982 | 0.3316 | 0.5674 | 0.5495 | 0.4583 | 0.4913 |
0.5155 | 200 | 0.1325 | 0.1075 | 0.3205 | 0.4777 | 0.6608 | 0.3588 | 0.4938 | 0.5221 | 0.2285 | 0.5568 | 0.9064 | 0.3321 | 0.5566 | 0.5510 | 0.4693 | 0.4950 |
0.6443 | 250 | 0.142 | 0.1040 | 0.3326 | 0.4721 | 0.6589 | 0.3671 | 0.4875 | 0.5207 | 0.2392 | 0.5511 | 0.9025 | 0.3336 | 0.5637 | 0.5861 | 0.4738 | 0.4991 |
0.7732 | 300 | 0.1243 | 0.0989 | 0.3078 | 0.4699 | 0.6560 | 0.3493 | 0.4946 | 0.5268 | 0.2275 | 0.5422 | 0.9071 | 0.3375 | 0.5664 | 0.5850 | 0.4709 | 0.4955 |
0.9021 | 350 | 0.1161 | 0.0960 | 0.3092 | 0.4781 | 0.6734 | 0.3426 | 0.4971 | 0.5218 | 0.2294 | 0.5608 | 0.9012 | 0.3444 | 0.5742 | 0.5818 | 0.4672 | 0.4986 |
1.0 | 388 | - | - | 0.3073 | 0.4787 | 0.6729 | 0.3428 | 0.4885 | 0.5292 | 0.2296 | 0.5598 | 0.9012 | 0.3399 | 0.5736 | 0.5809 | 0.4716 | 0.4982 |
Carbon emissions were measured using CodeCarbon.
@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",
}
@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}
}
Base model
microsoft/mpnet-base