tomaarsen/gooaq-hard-negatives
Viewer • Updated • 12.3M • 45 • 11
How to use tomaarsen/mpnet-base-nq-cgist-triplet-mask-initial with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("tomaarsen/mpnet-base-nq-cgist-triplet-mask-initial")
sentences = [
"what does the accounts receivable turnover measure?",
"The accounts receivable turnover ratio is an accounting measure used to quantify a company's effectiveness in collecting its receivables or money owed by clients. The ratio shows how well a company uses and manages the credit it extends to customers and how quickly that short-term debt is collected or is paid.",
"Capital budgeting, and investment appraisal, is the planning process used to determine whether an organization's long term investments such as new machinery, replacement of machinery, new plants, new products, and research development projects are worth the funding of cash through the firm's capitalization structure ( ...",
"The accounts receivable turnover ratio is an accounting measure used to quantify a company's effectiveness in collecting its receivables or money owed by clients. The ratio shows how well a company uses and manages the credit it extends to customers and how quickly that short-term debt is collected or is paid."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]This is a sentence-transformers model finetuned from microsoft/mpnet-base on the gooaq-hard-negatives 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.
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-cgist-triplet-mask")
# Run inference
sentences = [
'what energy is released when coal is burned?',
'When coal is burned, it reacts with the oxygen in the air. This chemical reaction converts the stored solar energy into thermal energy, which is released as heat. But it also produces carbon dioxide and methane.',
'When coal is burned it releases a number of airborne toxins and pollutants. They include mercury, lead, sulfur dioxide, nitrogen oxides, particulates, and various other heavy metals.',
]
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 NanoTouche2020InformationRetrievalEvaluator| Metric | NanoClimateFEVER | NanoDBPedia | NanoFEVER | NanoFiQA2018 | NanoHotpotQA | NanoMSMARCO | NanoNFCorpus | NanoNQ | NanoQuoraRetrieval | NanoSCIDOCS | NanoArguAna | NanoSciFact | NanoTouche2020 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cosine_accuracy@1 | 0.22 | 0.44 | 0.38 | 0.26 | 0.34 | 0.12 | 0.32 | 0.16 | 0.82 | 0.34 | 0.18 | 0.36 | 0.5306 |
| cosine_accuracy@3 | 0.44 | 0.66 | 0.54 | 0.5 | 0.58 | 0.34 | 0.42 | 0.36 | 0.9 | 0.48 | 0.54 | 0.46 | 0.7347 |
| cosine_accuracy@5 | 0.5 | 0.74 | 0.58 | 0.52 | 0.64 | 0.54 | 0.44 | 0.46 | 0.92 | 0.54 | 0.62 | 0.48 | 0.8367 |
| cosine_accuracy@10 | 0.72 | 0.82 | 0.68 | 0.58 | 0.74 | 0.66 | 0.48 | 0.56 | 0.96 | 0.66 | 0.84 | 0.6 | 0.9592 |
| cosine_precision@1 | 0.22 | 0.44 | 0.38 | 0.26 | 0.34 | 0.12 | 0.32 | 0.16 | 0.82 | 0.34 | 0.18 | 0.36 | 0.5306 |
| cosine_precision@3 | 0.1667 | 0.3867 | 0.18 | 0.22 | 0.2133 | 0.1133 | 0.22 | 0.12 | 0.3733 | 0.2533 | 0.18 | 0.1667 | 0.4558 |
| cosine_precision@5 | 0.116 | 0.372 | 0.12 | 0.16 | 0.144 | 0.108 | 0.188 | 0.092 | 0.244 | 0.216 | 0.124 | 0.104 | 0.4082 |
| cosine_precision@10 | 0.092 | 0.346 | 0.07 | 0.098 | 0.094 | 0.066 | 0.138 | 0.058 | 0.134 | 0.148 | 0.084 | 0.066 | 0.349 |
| cosine_recall@1 | 0.0933 | 0.0304 | 0.37 | 0.1343 | 0.17 | 0.12 | 0.0122 | 0.15 | 0.7207 | 0.0707 | 0.18 | 0.325 | 0.0388 |
| cosine_recall@3 | 0.195 | 0.0762 | 0.52 | 0.3227 | 0.32 | 0.34 | 0.0207 | 0.34 | 0.862 | 0.1577 | 0.54 | 0.44 | 0.1011 |
| cosine_recall@5 | 0.2267 | 0.12 | 0.57 | 0.3654 | 0.36 | 0.54 | 0.0267 | 0.43 | 0.8993 | 0.2227 | 0.62 | 0.46 | 0.1436 |
| cosine_recall@10 | 0.3673 | 0.2194 | 0.66 | 0.4307 | 0.47 | 0.66 | 0.0374 | 0.53 | 0.9567 | 0.3057 | 0.84 | 0.585 | 0.2368 |
| cosine_ndcg@10 | 0.2733 | 0.3883 | 0.5162 | 0.3408 | 0.3824 | 0.3693 | 0.1698 | 0.3369 | 0.8834 | 0.2912 | 0.495 | 0.4563 | 0.4021 |
| cosine_mrr@10 | 0.3627 | 0.5594 | 0.4761 | 0.3757 | 0.4719 | 0.278 | 0.3737 | 0.2855 | 0.8639 | 0.4295 | 0.3864 | 0.4282 | 0.6537 |
| cosine_map@100 | 0.2031 | 0.2782 | 0.477 | 0.283 | 0.3071 | 0.2903 | 0.0485 | 0.289 | 0.8576 | 0.2319 | 0.394 | 0.4268 | 0.315 |
NanoBEIR_meanNanoBEIREvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.3439 |
| cosine_accuracy@3 | 0.535 |
| cosine_accuracy@5 | 0.6013 |
| cosine_accuracy@10 | 0.7122 |
| cosine_precision@1 | 0.3439 |
| cosine_precision@3 | 0.2345 |
| cosine_precision@5 | 0.1843 |
| cosine_precision@10 | 0.1341 |
| cosine_recall@1 | 0.1858 |
| cosine_recall@3 | 0.3258 |
| cosine_recall@5 | 0.3834 |
| cosine_recall@10 | 0.4845 |
| cosine_ndcg@10 | 0.4081 |
| cosine_mrr@10 | 0.4573 |
| cosine_map@100 | 0.3386 |
question, answer, and negative| question | answer | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| question | answer | negative |
|---|---|---|
what is the difference between calories from fat and total fat? |
Fat has more than twice as many calories per gram as carbohydrates and proteins. A gram of fat has about 9 calories, while a gram of carbohydrate or protein has about 4 calories. In other words, you could eat twice as much carbohydrates or proteins as fat for the same amount of calories. |
Fat has more than twice as many calories per gram as carbohydrates and proteins. A gram of fat has about 9 calories, while a gram of carbohydrate or protein has about 4 calories. In other words, you could eat twice as much carbohydrates or proteins as fat for the same amount of calories. |
what is the difference between return transcript and account transcript? |
A tax return transcript usually meets the needs of lending institutions offering mortgages and student loans. ... Tax Account Transcript - shows basic data such as return type, marital status, adjusted gross income, taxable income and all payment types. It also shows changes made after you filed your original return. |
Trial balance is not a financial statement whereas a balance sheet is a financial statement. Trial balance is solely used for internal purposes whereas a balance sheet is used for purposes other than internal i.e. external. In a trial balance, each and every account is divided into debit (dr.) and credit (cr.) |
how long does my dog need to fast before sedation? |
Now, guidelines are aimed towards 6-8 hours before surgery. This pre-op fasting time is much more beneficial for your pets because you have enough food in there to neutralize the stomach acid, preventing it from coming up the esophagus that causes regurgitation under anesthetic. |
Try not to let your pooch rapidly wolf down his/her food! Do not let the dog play or exercise (e.g. go for a walk) for at least two hours after having a meal. Ensure continuous fresh water is available to avoid your pet gulping down a large amount after eating. |
CachedGISTEmbedLoss with these parameters:{'guide': SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, '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})
(2): Normalize()
), 'temperature': 0.01}
question, answer, and negative| question | answer | negative | |
|---|---|---|---|
| type | string | string | string |
| details |
|
|
|
| question | answer | negative |
|---|---|---|
how is height width and length written? |
The Graphics' industry standard is width by height (width x height). Meaning that when you write your measurements, you write them from your point of view, beginning with the width. |
The Graphics' industry standard is width by height (width x height). Meaning that when you write your measurements, you write them from your point of view, beginning with the width. That's important. |
what is the difference between pork shoulder and loin? |
All the recipes I've found for pulled pork recommends a shoulder/butt. Shoulders take longer to cook than a loin, because they're tougher. Loins are lean, while shoulders have marbled fat inside. |
They are extracted from the loin, which runs from the hip to the shoulder, and it has a small strip of meat called the tenderloin. Unlike other pork, this pork chop is cut from four major sections, which are the shoulder, also known as the blade chops, ribs chops, loin chops, and the last, which is the sirloin chops. |
is the yin yang symbol religious? |
The ubiquitous yin-yang symbol holds its roots in Taoism/Daoism, a Chinese religion and philosophy. The yin, the dark swirl, is associated with shadows, femininity, and the trough of a wave; the yang, the light swirl, represents brightness, passion and growth. |
Yin energy is in the calm colors around you, in the soft music, in the soothing sound of a water fountain, or the relaxing images of water. Yang (active energy) is the feng shui energy expressed in strong, vibrant sounds and colors, bright lights, upward moving energy, tall plants, etc. |
CachedGISTEmbedLoss with these parameters:{'guide': SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, '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})
(2): Normalize()
), 'temperature': 0.01}
eval_strategy: stepsper_device_train_batch_size: 2048per_device_eval_batch_size: 2048learning_rate: 2e-05num_train_epochs: 1warmup_ratio: 0.1seed: 12bf16: Trueoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 2048per_device_eval_batch_size: 2048per_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: 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: batch_samplermulti_dataset_batch_sampler: proportional| Epoch | 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.04 | 1 | 11.5143 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2 | 5 | 9.4399 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4 | 10 | 5.5951 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6 | 15 | 3.7416 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8 | 20 | 2.8021 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0 | 25 | 2.2003 | 1.3332 | 0.2733 | 0.3883 | 0.5162 | 0.3408 | 0.3824 | 0.3693 | 0.1698 | 0.3369 | 0.8834 | 0.2912 | 0.4950 | 0.4563 | 0.4021 | 0.4081 |
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",
}
Base model
microsoft/mpnet-base