cfli/bge-full-data
Updated • 1.45k • 42
How to use NohTow/ModernBERT-base-DPR-fullneg-gte-0.0002 with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("NohTow/ModernBERT-base-DPR-fullneg-gte-0.0002")
sentences = [
"what is the pulse in your wrist called",
"Pulse cm up the forearm is suggestive of arteriosclerosis. In coarctation of aorta, femoral pulse may be significantly delayed as compared to radial pulse (unless there is coexisting aortic regurgitation). The delay can also be observed in supravalvar aortic stenosis. Several pulse patterns can be of clinically significance. These include: Chinese medicine has focused on the pulse in the upper limbs for several centuries. The concept of pulse diagnosis is essentially based on palpation and observations of the radial and ulnar volar pulses at the readily accessible wrist. Although the pulse can be felt in multiple places in the head, people",
"Pulse diagnosis into three positions on each wrist. The first pulse closest to the wrist is the \"cun\" (inch, 寸) position, the second \"guan\" (gate, 關), and the third pulse position furthest away from the wrist is the \"chi\" (foot, 尺). There are several systems of diagnostic interpretation of pulse findings utilised in the Chinese medicine system. Some systems (Cun Kou) utilise overall pulse qualities, looking at changes in the assessed parameters of the pulse to derive one of the traditional 28 pulse types. Other approaches focus on individual pulse positions, looking at changes in the pulse quality and strength within the",
"Pre-hospital trauma assessment inside of the wrist toward the thumb. For unresponsive adult patients, checking pulse is performed by palpating the carotid artery in the neck. For infants and small children, the pulse is usually assessed in the brachial artery in the upper arm. After confirming that the pulse is present, the final step in the initial assessment for a trauma patient is to check for any gross bleeding and to control it. Should a pulse not be detected, or in the case of a child or infant is present but at a rate less than 60, cardiovascular resuscitation will be commenced. Steps:",
"Pulse Pulse In medicine, a pulse represents the tactile arterial palpation of the heartbeat by trained fingertips. The pulse may be palpated in any place that allows an artery to be compressed near the surface of the body, such as at the neck (carotid artery), wrist (radial artery), at the groin (femoral artery), behind the knee (popliteal artery), near the ankle joint (posterior tibial artery), and on foot (dorsalis pedis artery). Pulse (or the count of arterial pulse per minute) is equivalent to measuring the heart rate. The heart rate can also be measured by listening to the heart beat by",
"Pulse diagnosis dosha. The middle finger and ring finger are placed next to the index finger and represents consequently the Pitta and Kapha doshas of the patient. Pulse can be measured in the superficial, middle, and deep levels thus obtaining more information regarding energy imbalance of the patient. The main sites for pulse assessment are the radial arteries in the left and right wrists, where it overlays the styloid process of the radius, between the wrist crease and extending proximal, approximately 5 cm in length (or 1.9 cun, where the forearm is 12 cun). In traditional Chinese medicine, the pulse is divided",
"Pulse auscultation, traditionally using a stethoscope and counting it for a minute. The radial pulse is commonly measured using three fingers. This has a reason: the finger closest to the heart is used to occlude the pulse pressure, the middle finger is used get a crude estimate of the blood pressure, and the finger most distal to the heart (usually the ring finger) is used to nullify the effect of the ulnar pulse as the two arteries are connected via the palmar arches (superficial and deep). The study of the pulse is known as sphygmology. Claudius Galen was perhaps the first"
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [7, 7]This is a sentence-transformers model trained on the bge-full-data 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: 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})
)
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("NohTow/ModernBERT-base-DPR-fullneg-gte-0.0002")
# Run inference
sentences = [
'Who won 23 World Rally Championships, two in particular with the Lancia Delta Group A rally car?',
"Lancia Delta Group A The Lancia Delta Group A is a Group A rally car built for the Martini Lancia by Lancia to compete in the World Rally Championship. It is based upon the Lancia Delta road car and replaced the Lancia Delta S4. The car was introduced for the 1987 World Rally Championship season and dominated the World Rally Championship, scoring 46 WRC victories overall and winning the constructors' championship a record six times in a row from 1987 to 1992, in addition to drivers' championship titles for Juha Kankkunen (1987 and 1991) and Miki Biasion (1988 and 1989), making Lancia the most successful marque in the history of the WRC and the Delta the most successful car.",
'Luis Moya Luis Rodríguez Moya, better known as Luis Moya (born 23 September 1960 in La Coruña, Spain) is a now-retired rally co-driver, synonymous with driver Carlos Sainz. He is the third most successful co-driver in the history of the World Rally Championship (WRC), after Daniel Elena and Timo Rautiainen',
]
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.7 | 0.88 | 0.46 | 0.82 | 0.34 | 0.36 | 0.46 | 0.94 | 0.48 | 0.26 | 0.34 | 0.4898 |
| cosine_accuracy@3 | 0.52 | 0.74 | 0.96 | 0.62 | 0.94 | 0.6 | 0.5 | 0.66 | 0.98 | 0.66 | 0.64 | 0.48 | 0.8367 |
| cosine_accuracy@5 | 0.6 | 0.8 | 1.0 | 0.68 | 0.94 | 0.72 | 0.56 | 0.7 | 0.98 | 0.74 | 0.8 | 0.54 | 0.898 |
| cosine_accuracy@10 | 0.64 | 0.86 | 1.0 | 0.74 | 0.96 | 0.82 | 0.62 | 0.78 | 1.0 | 0.86 | 0.9 | 0.6 | 0.9796 |
| cosine_precision@1 | 0.22 | 0.7 | 0.88 | 0.46 | 0.82 | 0.34 | 0.36 | 0.46 | 0.94 | 0.48 | 0.26 | 0.34 | 0.4898 |
| cosine_precision@3 | 0.2067 | 0.48 | 0.3333 | 0.2867 | 0.3867 | 0.2 | 0.2933 | 0.22 | 0.4067 | 0.3333 | 0.2133 | 0.18 | 0.5034 |
| cosine_precision@5 | 0.144 | 0.432 | 0.208 | 0.224 | 0.248 | 0.144 | 0.296 | 0.144 | 0.252 | 0.276 | 0.16 | 0.128 | 0.4653 |
| cosine_precision@10 | 0.084 | 0.376 | 0.108 | 0.134 | 0.132 | 0.082 | 0.22 | 0.084 | 0.136 | 0.202 | 0.09 | 0.07 | 0.3612 |
| cosine_recall@1 | 0.0883 | 0.0726 | 0.8267 | 0.2445 | 0.41 | 0.34 | 0.0156 | 0.45 | 0.8173 | 0.1017 | 0.26 | 0.305 | 0.0355 |
| cosine_recall@3 | 0.2667 | 0.1134 | 0.9233 | 0.4038 | 0.58 | 0.6 | 0.0349 | 0.61 | 0.9453 | 0.2067 | 0.64 | 0.47 | 0.1075 |
| cosine_recall@5 | 0.3083 | 0.1586 | 0.9533 | 0.489 | 0.62 | 0.72 | 0.0641 | 0.66 | 0.956 | 0.2847 | 0.8 | 0.54 | 0.1652 |
| cosine_recall@10 | 0.3567 | 0.2345 | 0.9733 | 0.5964 | 0.66 | 0.82 | 0.0797 | 0.75 | 0.9933 | 0.4157 | 0.9 | 0.6 | 0.243 |
| cosine_ndcg@10 | 0.284 | 0.4733 | 0.9203 | 0.4901 | 0.67 | 0.5747 | 0.2547 | 0.6061 | 0.9594 | 0.3972 | 0.5856 | 0.4572 | 0.418 |
| cosine_mrr@10 | 0.3747 | 0.7389 | 0.9267 | 0.5513 | 0.8795 | 0.4967 | 0.4444 | 0.5691 | 0.9625 | 0.5928 | 0.4839 | 0.4177 | 0.6742 |
| cosine_map@100 | 0.2232 | 0.3348 | 0.8908 | 0.4201 | 0.5984 | 0.505 | 0.0923 | 0.5645 | 0.9423 | 0.3043 | 0.4893 | 0.4156 | 0.308 |
NanoBEIR_meanNanoBEIREvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.5192 |
| cosine_accuracy@3 | 0.7028 |
| cosine_accuracy@5 | 0.766 |
| cosine_accuracy@10 | 0.8277 |
| cosine_precision@1 | 0.5192 |
| cosine_precision@3 | 0.311 |
| cosine_precision@5 | 0.2401 |
| cosine_precision@10 | 0.1599 |
| cosine_recall@1 | 0.3052 |
| cosine_recall@3 | 0.454 |
| cosine_recall@5 | 0.5169 |
| cosine_recall@10 | 0.5864 |
| cosine_ndcg@10 | 0.5454 |
| cosine_mrr@10 | 0.624 |
| cosine_map@100 | 0.4684 |
anchor, positive, negative_0, negative_1, negative_2, negative_3, and negative_4| anchor | positive | negative_0 | negative_1 | negative_2 | negative_3 | negative_4 | |
|---|---|---|---|---|---|---|---|
| type | string | string | string | string | string | string | string |
| details |
|
|
|
|
|
|
|
| anchor | positive | negative_0 | negative_1 | negative_2 | negative_3 | negative_4 |
|---|---|---|---|---|---|---|
What happens if you eat raw chicken? |
What are the dangers of eating raw chicken? |
Does all raw chicken have salmonella? |
How safe is to eat chicken during pregnancy? |
What meats are safe to eat raw? |
What are some natural obligations of chicken? |
Is it safe to eat raw egg? |
how long does it take for a wren egg to hatch |
How often does a mother Wren sit on her nest? I don't know for sure about how long Wrens usually spend on the nest at one sitting.. (Sorry couldn't resist the joke) However, the eggs usually hatch in 13-18 days, so if there were no hatchlings when that time elapsed, then you'd know for sure that she hadn't been behaving normally. |
- When you are trying to hatch Tennessee red quail eggs, it will take approximately 23 days. You should perform lock down on the egg at 20 days. This is a period of time whe … n there should be no disturbances because hatching is likely to begin.urkey eggs usually take 21 to 28 days to hatch depending on what they are incubated in like an incubator or by a hen. |
How long does it take an egg to hatch? For an average Eagle it would have a time for about 32-36 days, but the average time for an Eagle egg to hatch is about 35 days. 28 people found this useful. |
- When you are trying to hatch Tennessee red quail eggs, it will take approximately 23 days. You should perform lock down on the egg at 20 days. This is a period of time whe … n there should be no disturbances because hatching is likely to begin.urkey eggs usually take 21 to 28 days to hatch depending on what they are incubated in like an incubator or by a hen. It also depends on how fertile it is and how it is cared … for. |
- Actually this may vary depending on the kind of bird finch, the eggs hatch in between 12 - 16 days or 3 weeks.The nestlings fledge in 18 - 19 days.ctually this may vary depending on the kind of bird finch, the eggs hatch in between 12 - 16 days or 3 weeks. |
- Welcome, and thanks for visiting the virtual home of the Whitestown Fire Department. Whether you’re stopping by to obtain information on our department, place a comment, track our progress and events, or just looking at the great pictures of our top notch personnel in action, we hope that you find what you’re after. Please feel free to provide feedback or contact us for any questions you may have. |
can you have schizophrenia and bipolar |
Can you have both bipolar disorder and schizophrenia? Health Mental Health Can you have both bipolar disorder and schizophrenia? I'm 19 and was diagnosed with Bipolar Disorder almost 2 years ago. I also have some symptoms of schizophrenia such as auditory hallucinations and occasional visual ones as well and occasional paranoia. Ok the paranoia is pretty frequent. So yea, Can you have both of them? I know some of the symptoms can be... show more Follow 6 answers Answers Relevance Rating Newest Oldest Best Answer: yes you can, but some people with bipolar disorder have hallucinations and delusions from the bipolar disorder. only a psychiatrist could diagnose you i guess. Source (s):er nurse Zach · 9 years ago0 0 Comment Asker's rating Yes, one can have both bipolar disorder and schizophrenia, as the cause is one and the same - a spirit (ghost). Not only are the mood swings imparted by the associated spirit, but the alleged hallucinations are as well. The voices that those diagnosed as h... |
Dual Diagnosis: Understanding Sex Addiction With Bipolar Disorder Dual Diagnosis: Understanding Sex Addiction With Bipolar Disorder February 5, 2015 Dual Diagnosis Bipolar disorder manifests itself in one college student’s “need” to sexually expose himself on campus. Marty was diagnosed with bipolar 1 disorder in the spring of his junior year in college. The symptoms had emerged during adolescence, but it wasn’t until a particularly startling manic episode that Marty’s doctor knew his depression was more than unipolar (i.e., clinical depression by itself). The gifted art student had painted his naked body in elaborate geometric patterns and shown up at the fountain in front of his university’s grand administrative building during the middle of a sunny afternoon. He proceeded to dramatically quote Michel Foucault’s Madness and Civilization, even as he was carried away by campus security. The combination of SSRIs and mood stabilizers prescribed to Marty for the treatment of bipolar disor... |
Understanding Schizoaffective Disorder Medication Understanding Schizoaffective Disorder Medication Because schizoaffective disorder has symptoms of both psychosis and a mood disorder, ✱ doctors often prescribe different medicines to treat different symptoms of the condition. For example, they may prescribe: An antipsychotic, which helps symptoms like delusions and hallucinations A mood-stabilizing medicine, which can help level out “highs” and “lows”An antidepressant, which can help feelings of sadness, hopelessness, and difficulty with sleep and concentration One medicine for schizoaffective disorder's symptoms INVEGA SUSTENNA ® treats the symptoms of schizoaffective disorder (psychosis and mood), so it may be possible for you to manage symptoms with one medicine if your doctor feels it’s right for you. And that means one less pill to think about every day. Approved for the treatment of schizophrenia and schizoaffective disorder.✱ Please discuss your symptoms with your healthcare pro... |
Paranoia and schizophrenia: What you need to know Newsletter MNT - Hourly Medical News Since 2003Search Log in Newsletter MNT - Hourly Medical News Since 2003Search Login Paranoia and schizophrenia: What you need to know Last updated Thu 25 May 2017By Yvette Brazier Reviewed by Timothy J. Legg, Ph D, CRNPOverview Symptoms Causes Diagnosis Treatment Complications A person who has a condition on the schizophrenia spectrum may experience delusions and what is commonly known as paranoia. These delusions may give rise to fears that others are plotting against the individual. Everyone can have a paranoid thought from time to time. On a rough day, we may find ourselves saying "Oh boy, the whole world is out to get me!" But we recognize that this is not the case. People with paranoia often have an extensive network of paranoid thoughts and ideas. This can result in a disproportionate amount of time spent thinking up ways for the individual to protect themselves from their perceived persecutors... |
Same Genes Suspected in Both Depression and Bipolar Illness Same Genes Suspected in Both Depression and Bipolar Illness Increased Risk May Stem From Variation in Gene On/Off Switch January 28, 2010 • Science Update Protein produced by PBRM1 gene Researchers, for the first time, have pinpointed a genetic hotspot that confers risk for both bipolar disorder and depression. People with either of these mood disorders were significantly more likely to have risk versions of genes at this site than healthy controls. One of the genes, which codes for part of a cell's machinery that tells genes when to turn on and off, was also found to be over-expressed in the executive hub of bipolar patients' brains, making it a prime suspect. The results add to mounting evidence that major mental disorders overlap at the molecular level. "People who carry the risk versions may differ in some dimension of brain development that may increase risk for mood disorders later in life," explained Francis Mc Mahon, M... |
Schizophrenia Definition and Characteristics Schizophrenia Schizophrenia Definition and Characteristics Symptoms, Treatments and Risk Factors By Marcia Purse |
CachedMultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim"
}
eval_strategy: stepsper_device_train_batch_size: 2048per_device_eval_batch_size: 2048learning_rate: 0.0002num_train_epochs: 2warmup_ratio: 0.05bf16: Truebatch_sampler: no_duplicatesoverwrite_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: 0.0002weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 2max_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: 42data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Truefp16: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 5ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Truedataloader_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 | 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.0185 | 2 | 8.9197 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0370 | 4 | 8.4814 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0556 | 6 | 6.6919 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0741 | 8 | 5.2493 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0926 | 10 | 4.2792 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1111 | 12 | 3.4554 | 0.2385 | 0.3867 | 0.7209 | 0.3194 | 0.5207 | 0.4438 | 0.1702 | 0.3732 | 0.8791 | 0.2758 | 0.4377 | 0.4026 | 0.4623 | 0.4331 |
| 0.1296 | 14 | 3.0437 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1481 | 16 | 2.6133 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1667 | 18 | 2.3395 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1852 | 20 | 2.1826 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2037 | 22 | 2.0498 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2222 | 24 | 1.9743 | 0.2706 | 0.4493 | 0.8104 | 0.4201 | 0.6036 | 0.5542 | 0.2249 | 0.5859 | 0.9221 | 0.3091 | 0.5671 | 0.5562 | 0.4864 | 0.5200 |
| 0.2407 | 26 | 1.9111 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2593 | 28 | 1.8534 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2778 | 30 | 1.8137 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2963 | 32 | 1.7587 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3148 | 34 | 1.7124 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3333 | 36 | 1.6841 | 0.2945 | 0.4652 | 0.8333 | 0.4352 | 0.6189 | 0.5619 | 0.2512 | 0.5977 | 0.9403 | 0.3322 | 0.5502 | 0.5778 | 0.4596 | 0.5321 |
| 0.3519 | 38 | 1.6765 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3704 | 40 | 1.6314 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3889 | 42 | 1.5989 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4074 | 44 | 1.592 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4259 | 46 | 1.572 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4444 | 48 | 1.5525 | 0.3045 | 0.4626 | 0.8526 | 0.4507 | 0.6275 | 0.5617 | 0.2575 | 0.5676 | 0.9406 | 0.3661 | 0.5666 | 0.5693 | 0.4231 | 0.5346 |
| 0.4630 | 50 | 1.51 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4815 | 52 | 1.5156 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5 | 54 | 1.5076 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5185 | 56 | 1.4781 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5370 | 58 | 1.4833 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5556 | 60 | 1.4576 | 0.3042 | 0.4727 | 0.8456 | 0.4578 | 0.6338 | 0.5599 | 0.2513 | 0.5883 | 0.9370 | 0.3792 | 0.5656 | 0.5229 | 0.4431 | 0.5355 |
| 0.5741 | 62 | 1.4402 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5926 | 64 | 1.438 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6111 | 66 | 1.4504 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6296 | 68 | 1.4142 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6481 | 70 | 1.4141 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6667 | 72 | 1.3917 | 0.3225 | 0.4697 | 0.8632 | 0.4529 | 0.6474 | 0.5575 | 0.2341 | 0.5942 | 0.9464 | 0.3846 | 0.5467 | 0.4924 | 0.4124 | 0.5326 |
| 0.6852 | 74 | 1.4108 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7037 | 76 | 1.4 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7222 | 78 | 1.385 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7407 | 80 | 1.3946 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7593 | 82 | 1.3762 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7778 | 84 | 1.3606 | 0.3325 | 0.4747 | 0.8730 | 0.4891 | 0.6511 | 0.5941 | 0.2530 | 0.5835 | 0.9452 | 0.3776 | 0.5490 | 0.4680 | 0.4447 | 0.5412 |
| 0.7963 | 86 | 1.3615 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8148 | 88 | 1.3811 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8333 | 90 | 1.3462 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8519 | 92 | 1.3617 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8704 | 94 | 1.3345 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8889 | 96 | 1.3291 | 0.3249 | 0.4780 | 0.8791 | 0.4925 | 0.6518 | 0.6018 | 0.2678 | 0.5981 | 0.9451 | 0.3799 | 0.5474 | 0.4423 | 0.4340 | 0.5418 |
| 0.9074 | 98 | 1.3253 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9259 | 100 | 1.3375 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9444 | 102 | 1.3177 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9630 | 104 | 1.3318 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9815 | 106 | 1.297 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0093 | 108 | 1.3128 | 0.3211 | 0.4761 | 0.8869 | 0.4904 | 0.6531 | 0.5906 | 0.2660 | 0.6035 | 0.9473 | 0.3810 | 0.5749 | 0.4420 | 0.4286 | 0.5432 |
| 1.0278 | 110 | 1.3088 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0463 | 112 | 1.3071 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0648 | 114 | 1.2936 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0833 | 116 | 1.2839 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.1019 | 118 | 1.2693 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.1204 | 120 | 1.291 | 0.3022 | 0.4793 | 0.8822 | 0.5117 | 0.6691 | 0.5708 | 0.2637 | 0.6140 | 0.9521 | 0.3913 | 0.5773 | 0.4487 | 0.4281 | 0.5454 |
| 1.1389 | 122 | 1.2636 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.1574 | 124 | 1.2427 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.1759 | 126 | 1.2167 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.1944 | 128 | 1.202 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.2130 | 130 | 1.1931 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.2315 | 132 | 1.178 | 0.2842 | 0.4731 | 0.8755 | 0.5114 | 0.6814 | 0.5611 | 0.2731 | 0.6122 | 0.9477 | 0.3926 | 0.5723 | 0.4647 | 0.4441 | 0.5457 |
| 1.25 | 134 | 1.1955 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.2685 | 136 | 1.18 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.2870 | 138 | 1.1771 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.3056 | 140 | 1.173 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.3241 | 142 | 1.141 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.3426 | 144 | 1.1531 | 0.2816 | 0.4822 | 0.9067 | 0.5164 | 0.6609 | 0.5758 | 0.2713 | 0.6295 | 0.9596 | 0.4018 | 0.5862 | 0.4615 | 0.4309 | 0.5511 |
| 1.3611 | 146 | 1.1608 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.3796 | 148 | 1.1489 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.3981 | 150 | 1.1531 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.4167 | 152 | 1.1391 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.4352 | 154 | 1.1405 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.4537 | 156 | 1.1336 | 0.3180 | 0.4810 | 0.8891 | 0.5077 | 0.6655 | 0.5609 | 0.2797 | 0.5979 | 0.9557 | 0.3988 | 0.6011 | 0.5093 | 0.4176 | 0.5525 |
| 1.4722 | 158 | 1.1165 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.4907 | 160 | 1.1316 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.5093 | 162 | 1.1328 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.5278 | 164 | 1.1229 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.5463 | 166 | 1.1312 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.5648 | 168 | 1.1112 | 0.2801 | 0.4865 | 0.9104 | 0.5040 | 0.6631 | 0.5666 | 0.2847 | 0.6059 | 0.9599 | 0.4003 | 0.5906 | 0.4927 | 0.4312 | 0.5520 |
| 1.5833 | 170 | 1.1304 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.6019 | 172 | 1.1257 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.6204 | 174 | 1.139 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.6389 | 176 | 1.1116 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.6574 | 178 | 1.1161 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.6759 | 180 | 1.1024 | 0.2991 | 0.4822 | 0.9009 | 0.4886 | 0.6652 | 0.5659 | 0.2577 | 0.6147 | 0.9597 | 0.4051 | 0.5747 | 0.4585 | 0.4207 | 0.5456 |
| 1.6944 | 182 | 1.1239 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.7130 | 184 | 1.1266 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.7315 | 186 | 1.1154 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.75 | 188 | 1.1382 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.7685 | 190 | 1.102 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.7870 | 192 | 1.1046 | 0.3107 | 0.4764 | 0.9040 | 0.4828 | 0.6680 | 0.5747 | 0.2625 | 0.5969 | 0.9567 | 0.3948 | 0.5801 | 0.4641 | 0.4313 | 0.5464 |
| 1.8056 | 194 | 1.1241 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.8241 | 196 | 1.1266 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.8426 | 198 | 1.1257 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.8611 | 200 | 1.1148 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.8796 | 202 | 1.1133 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.8981 | 204 | 1.1149 | 0.2840 | 0.4733 | 0.9203 | 0.4901 | 0.6700 | 0.5747 | 0.2547 | 0.6061 | 0.9594 | 0.3972 | 0.5856 | 0.4572 | 0.4180 | 0.5454 |
| 1.9167 | 206 | 1.1122 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.9352 | 208 | 1.1259 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.9537 | 210 | 1.1215 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.9722 | 212 | 1.1047 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.9907 | 214 | 1.1166 | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
@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}
}