Views
No views yet
MultiVectorEncoder(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'query_expansion': {'strategy': 'min', 'attend': False, 'token': None, 'length': 32}, 'architecture': 'ModernBertModel'})
(1): Dense({'in_features': 768, 'out_features': 128, 'bias': False, 'activation_function': 'torch.nn.modules.linear.Identity', 'module_input_name': 'token_embeddings', 'module_output_name': 'token_embeddings'})
(2): MultiVectorMask({'skiplist_words': [], 'keep_only_token_ids': None})
(3): Normalize({'module_input_name': 'token_embeddings', 'module_output_name': 'token_embeddings'})
)pip install -U sentence-transformers1from sentence_transformers import MultiVectorEncoder
2
3# Download from the 🤗 Hub
4model = MultiVectorEncoder("tomaarsen/multivector-ModernBERT-base-msmarco-cached-contrastive")
5# Run inference: each input becomes a sequence of per-token vectors (variable length).
6queries = [
7 'what is territorial sovereignty',
8]
9documents = [
10 'territorial sovereignty. Exclusive right of a state to exercise its powers within the boundaries of its territory.',
11 'Territorial preservation, as Agnew explains is merely one aspect of a states territorial integrity (2005). The lack of territorial sovereignty is often a key characteristic of so-called failed states where effective monopoly over the internal means of violence is lost.',
12 '1 Active Transportï\x82§ Active Transport requires the cell to use energy, usually in the form of ATP.ï\x82§ Active Transport creates a charge gradient in the cell membrane. 2 For example in the mitochondrion, hydrogen ion pumps pump hydrogen ions into the intermembrane space of the organelle as part of making ATP. 3 15.',
13]
14query_embeddings = model.encode_query(queries)
15document_embeddings = model.encode_document(documents)
16print(query_embeddings[0].shape, document_embeddings[0].shape)
17# (32, 128) (24, 128)
18
19# Get the MaxSim similarity scores
20similarities = model.similarity(query_embeddings, document_embeddings)
21print(similarities)
22# tensor([[28.2512, 25.4390, 6.2058]])NanoMSMARCO, NanoNQ, NanoFiQA2018, NanoClimateFEVER, NanoDBPedia, NanoFEVER, NanoFiQA2018, NanoHotpotQA, NanoMSMARCO, NanoNFCorpus, NanoNQ, NanoQuoraRetrieval, NanoSCIDOCS, NanoArguAna, NanoSciFact and NanoTouche2020MultiVectorInformationRetrievalEvaluator| Metric | NanoMSMARCO | NanoNQ | NanoFiQA2018 | NanoClimateFEVER | NanoDBPedia | NanoFEVER | NanoHotpotQA | NanoNFCorpus | NanoQuoraRetrieval | NanoSCIDOCS | NanoArguAna | NanoSciFact | NanoTouche2020 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| maxsim_accuracy@1 | 0.26 | 0.46 | 0.36 | 0.18 | 0.62 | 0.62 | 0.62 | 0.36 | 0.8 | 0.36 | 0.08 | 0.56 | 0.4694 |
| maxsim_accuracy@3 | 0.5 | 0.6 | 0.46 | 0.32 | 0.78 | 0.88 | 0.82 | 0.5 | 0.94 | 0.62 | 0.48 | 0.66 | 0.7347 |
| maxsim_accuracy@5 | 0.56 | 0.7 | 0.5 | 0.44 | 0.8 | 0.94 | 0.84 | 0.54 | 0.98 | 0.7 | 0.64 | 0.7 | 0.8163 |
| maxsim_accuracy@10 | 0.76 | 0.8 | 0.6 | 0.6 | 0.88 | 1.0 | 0.88 | 0.58 | 1.0 | 0.78 | 0.8 | 0.76 | 1.0 |
| maxsim_precision@1 | 0.26 | 0.46 | 0.36 | 0.18 | 0.62 | 0.62 | 0.62 | 0.36 | 0.8 | 0.36 | 0.08 | 0.56 | 0.4694 |
| maxsim_precision@3 | 0.1667 | 0.2 | 0.2067 | 0.1133 | 0.5 | 0.3133 | 0.3533 | 0.3467 | 0.3867 | 0.2667 | 0.16 | 0.2267 | 0.4966 |
| maxsim_precision@5 | 0.112 | 0.14 | 0.148 | 0.092 | 0.444 | 0.2 | 0.232 | 0.296 | 0.248 | 0.236 | 0.128 | 0.148 | 0.4939 |
| maxsim_precision@10 | 0.076 | 0.084 | 0.09 | 0.072 | 0.408 | 0.106 | 0.128 | 0.226 | 0.132 | 0.166 | 0.08 | 0.086 | 0.4265 |
| maxsim_recall@1 | 0.26 | 0.42 | 0.2184 | 0.085 | 0.0786 | 0.5767 | 0.31 | 0.0232 | 0.7007 | 0.0767 | 0.08 | 0.54 | 0.0365 |
| maxsim_recall@3 | 0.5 | 0.56 | 0.315 | 0.1517 | 0.142 | 0.8433 | 0.53 | 0.0631 | 0.8987 | 0.1657 | 0.48 | 0.635 | 0.1163 |
| maxsim_recall@5 | 0.56 | 0.63 | 0.3698 | 0.2167 | 0.1837 | 0.9033 | 0.58 | 0.0971 | 0.9487 | 0.2427 | 0.64 | 0.68 | 0.1859 |
| maxsim_recall@10 | 0.76 | 0.75 | 0.4162 | 0.299 | 0.2782 | 0.9633 | 0.64 | 0.1163 | 0.986 | 0.3397 | 0.8 | 0.76 | 0.2997 |
| maxsim_ndcg@10 | 0.4914 | 0.5801 | 0.3626 | 0.2205 | 0.5049 | 0.7963 | 0.5912 | 0.2812 | 0.8998 | 0.3195 | 0.4325 | 0.653 | 0.4669 |
| maxsim_mrr@10 | 0.4082 | 0.554 | 0.4177 | 0.2862 | 0.7062 | 0.7632 | 0.726 | 0.4347 | 0.8812 | 0.5047 | 0.3155 | 0.6207 | 0.6344 |
| maxsim_map@100 | 0.4174 | 0.5227 | 0.3272 | 0.1668 | 0.3796 | 0.7321 | 0.5168 | 0.1229 | 0.8643 | 0.2409 | 0.3245 | 0.6228 | 0.4014 |
NanoBEIR_meanMultiVectorNanoBEIREvaluator with these parameters:
1{
2 "dataset_names": [
3 "msmarco",
4 "nq",
5 "fiqa2018"
6 ],
7 "dataset_id": "sentence-transformers/NanoBEIR-en"
8}| Metric | Value |
|---|---|
| maxsim_accuracy@1 | 0.36 |
| maxsim_accuracy@3 | 0.4867 |
| maxsim_accuracy@5 | 0.5667 |
| maxsim_accuracy@10 | 0.6867 |
| maxsim_precision@1 | 0.36 |
| maxsim_precision@3 | 0.1778 |
| maxsim_precision@5 | 0.1293 |
| maxsim_precision@10 | 0.08 |
| maxsim_recall@1 | 0.3078 |
| maxsim_recall@3 | 0.4318 |
| maxsim_recall@5 | 0.5044 |
| maxsim_recall@10 | 0.6165 |
| maxsim_ndcg@10 | 0.4659 |
| maxsim_mrr@10 | 0.4492 |
| maxsim_map@100 | 0.4172 |
NanoBEIR_meanMultiVectorNanoBEIREvaluator with these parameters:
1{
2 "dataset_names": [
3 "climatefever",
4 "dbpedia",
5 "fever",
6 "fiqa2018",
7 "hotpotqa",
8 "msmarco",
9 "nfcorpus",
10 "nq",
11 "quoraretrieval",
12 "scidocs",
13 "arguana",
14 "scifact",
15 "touche2020"
16 ],
17 "dataset_id": "sentence-transformers/NanoBEIR-en"
18}| Metric | Value |
|---|---|
| maxsim_accuracy@1 | 0.4423 |
| maxsim_accuracy@3 | 0.6381 |
| maxsim_accuracy@5 | 0.7043 |
| maxsim_accuracy@10 | 0.8031 |
| maxsim_precision@1 | 0.4423 |
| maxsim_precision@3 | 0.2874 |
| maxsim_precision@5 | 0.2245 |
| maxsim_precision@10 | 0.16 |
| maxsim_recall@1 | 0.262 |
| maxsim_recall@3 | 0.4154 |
| maxsim_recall@5 | 0.4798 |
| maxsim_recall@10 | 0.5699 |
| maxsim_ndcg@10 | 0.5077 |
| maxsim_mrr@10 | 0.5579 |
| maxsim_map@100 | 0.4338 |
query, positive, and negative| query | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| modality | text | text | text |
| details |
|
|
|
| query | positive | negative |
|---|---|---|
what is an agate made of | Agate is the name given to a group of silicate minerals that are made up primarily of chalcedony. Chalcedony is a member of the quartz family of minerals. | What is an agate, though, and what are the properties and feng shui meaning of agate? Let's find out. WHAT IS THE MEANING OF AGATE? As a form of chalcedony (type of quartz) agate exhibits a variety of colours , shapes, as well as an often present gentle iridescence. |
what is the socratic method? | The Socratic Learning Method (SLM) is a constructivist learning approach consisting of four key. steps: eliciting relevant preconceptions, clarifying preconceptions, testing ones own. hypotheses or encountered propositions, and deciding whether to accept the hypotheses or. propositions. | The Socratic Learning Method and the Inquiry-Based Learning Method. Since the Socratic dialogues are among the earliest documented instances of learning through. inquiry, it is reasonable to argue that what is now known as inquiry-based learning can trace its. origin to the Socratic Learning Method. |
what ditto means | ⢠DITTO (noun). The noun DITTO has 1 sense: 1. a mark used to indicate the word above it should be repeated. Familiarity information: DITTO used as a noun is very rare. ⢠DITTO (verb). The verb DITTO has 1 sense: 1. repeat an action or statement. Familiarity information: DITTO used as a verb is very rare. | Valerie Hill 0 I had texted one of my Auntie's and she sent the word Ditto back to me I was like what do that mean. Now I know!!! Acronym. DITTO in text means the same, or me too, or I agree. |
CachedMultiVectorMultipleNegativesRankingLoss with these parameters:
1{
2 "score_metric": "colbert_scores",
3 "mini_batch_size": 32,
4 "mini_batch_num_tokens": null,
5 "score_mini_batch_size": 32,
6 "scale": 1.0,
7 "size_average": true,
8 "gather_across_devices": false
9}query, positive, and negative| query | positive | negative | |
|---|---|---|---|
| type | string | string | string |
| modality | text | text | text |
| details |
|
|
|
| query | positive | negative |
|---|---|---|
expected return is a function of | security market line Security market line (SML) is the representation of the capital asset pricing model. It displays the expected rate of return of an individual security as a function of systematic, non-diversifiable risk (its beta). beta Average sensitivity of a security's price to overall securities market prices. | A portfolio's expected return is the sum of the weighted average of each asset's expected return. Calculate a portfolio's expected return. To calculate the expected return of a portfolio, you need to know the expected return and weight of each asset in a portfolio. |
what smoker temperature for barbecue chicken | Chickens smoked hot and fast over indirect heat on the grill. But for pulled chicken, I wanted a slightly more intense smokiness to balance the barbecue sauce. I decided to do a side-by-side comparison, cooking one on the grill over indirect heat at around 375°F, and one in the smoker at 225°F. | Cook for an hour and 15 minutes. Check your smoked chicken breasts to make sure the temperature is still holding at about 250 degrees. Flip the chicken breasts and close the lid again. After 30 minutes, check the internal temperature of the chicken with a meat thermometer. You are looking for a temperature of 160 degrees before you can pull them off the smoker. Serve your smoked chicken breasts with a side of barbecue sauce for dipping. |
in classification of matter what is an element | Matter can be in the same phase or in two different phases for this separation to take place. Key Terms. mixture: Something that consists of diverse, non-bonded elements or molecules. element: A chemical substance that is made up of a particular kind of atom and cannot be broken down or transformed by a chemical reaction. | 2. What four elements make up 96% of all living matter? The four elements that make up 96% of all living matter are oxygen, carbon, hydrogen and nitrogen. 3. What is the difference between an essential element and a trace element? An essential element is an element that an organism needs to live a healthy life and reproduce. A trace element is required by an organism in only minute quantities. Section 2 4. Sketch a model of an atom of helium, showing the electrons, protons, neutrons, and atomic nucleus. Neutrons Protons Electrons 5. |
CachedMultiVectorMultipleNegativesRankingLoss with these parameters:
1{
2 "score_metric": "colbert_scores",
3 "mini_batch_size": 32,
4 "mini_batch_num_tokens": null,
5 "score_mini_batch_size": 32,
6 "scale": 1.0,
7 "size_average": true,
8 "gather_across_devices": false
9}per_device_train_batch_size: 256num_train_epochs: 1learning_rate: 3e-05warmup_steps: 0.05bf16: Trueper_device_eval_batch_size: 32load_best_model_at_end: Truebatch_sampler: no_duplicatesper_device_train_batch_size: 256num_train_epochs: 1max_steps: -1learning_rate: 3e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0.05optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 1average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Truefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Nonetorch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneuse_liger_kernel: Falseliger_kernel_config: Noneuse_cache: Falseneftune_noise_alpha: Nonetorch_empty_cache_steps: Noneauto_find_batch_size: Falselog_on_each_node: Truelogging_nan_inf_filter: Trueinclude_num_input_tokens_seen: nolog_level: passivelog_level_replica: warningdisable_tqdm: Falseproject: huggingfacetrackio_space_id: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 32prediction_loss_only: Trueeval_on_start: Falseeval_do_concat_batches: Trueeval_use_gather_object: Falseeval_accumulation_steps: Noneinclude_for_metrics: []batch_eval_metrics: Falsesave_only_model: Falsesave_on_each_node: Falseenable_jit_checkpoint: Falsepush_to_hub: Falsehub_private_repo: Nonehub_model_id: Nonehub_strategy: every_savehub_always_push: Falsehub_revision: Noneload_best_model_at_end: Trueignore_data_skip: Falserestore_callback_states_from_checkpoint: Falsefull_determinism: Falseseed: 42data_seed: Noneuse_cpu: Falseaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedataloader_drop_last: Falsedataloader_num_workers: 0dataloader_pin_memory: Truedataloader_persistent_workers: Falsedataloader_prefetch_factor: Noneremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonewarmup_ratio: Nonelocal_rank: -1prompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}max_length: None| Epoch | Step | Training Loss | Validation Loss | NanoMSMARCO_maxsim_ndcg@10 | NanoNQ_maxsim_ndcg@10 | NanoFiQA2018_maxsim_ndcg@10 | NanoBEIR_mean_maxsim_ndcg@10 | NanoClimateFEVER_maxsim_ndcg@10 | NanoDBPedia_maxsim_ndcg@10 | NanoFEVER_maxsim_ndcg@10 | NanoHotpotQA_maxsim_ndcg@10 | NanoNFCorpus_maxsim_ndcg@10 | NanoQuoraRetrieval_maxsim_ndcg@10 | NanoSCIDOCS_maxsim_ndcg@10 | NanoArguAna_maxsim_ndcg@10 | NanoSciFact_maxsim_ndcg@10 | NanoTouche2020_maxsim_ndcg@10 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| -1 | -1 | - | - | 0.1000 | 0.1497 | 0.1543 | 0.1347 | - | - | - | - | - | - | - | - | - | - |
| 0.0103 | 4 | 5.8267 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0207 | 8 | 5.6903 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0310 | 12 | 5.4767 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0413 | 16 | 5.0988 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0517 | 20 | 4.2354 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0620 | 24 | 3.0957 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0724 | 28 | 2.4439 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0827 | 32 | 2.1717 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.0930 | 36 | 1.8270 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1008 | 39 | - | 0.9998 | 0.4304 | 0.3701 | 0.3428 | 0.3811 | - | - | - | - | - | - | - | - | - | - |
| 0.1034 | 40 | 1.5308 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1137 | 44 | 1.3514 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1240 | 48 | 1.2883 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1344 | 52 | 1.1446 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1447 | 56 | 1.1350 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1550 | 60 | 1.1031 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1654 | 64 | 0.9816 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1757 | 68 | 0.9093 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1860 | 72 | 0.9494 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.1964 | 76 | 0.8593 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2016 | 78 | - | 0.6296 | 0.4370 | 0.4710 | 0.3982 | 0.4354 | - | - | - | - | - | - | - | - | - | - |
| 0.2067 | 80 | 0.9200 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2171 | 84 | 0.8756 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2274 | 88 | 0.8491 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2377 | 92 | 0.7880 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2481 | 96 | 0.8130 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2584 | 100 | 0.8458 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2687 | 104 | 0.8617 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2791 | 108 | 0.7989 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2894 | 112 | 0.7277 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.2997 | 116 | 0.7122 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3023 | 117 | - | 0.5629 | 0.4515 | 0.5383 | 0.3923 | 0.4607 | - | - | - | - | - | - | - | - | - | - |
| 0.3101 | 120 | 0.7367 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3204 | 124 | 0.7998 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3307 | 128 | 0.7553 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3411 | 132 | 0.7310 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3514 | 136 | 0.6776 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3618 | 140 | 0.7449 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3721 | 144 | 0.7055 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3824 | 148 | 0.6598 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.3928 | 152 | 0.6659 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4031 | 156 | 0.6886 | 0.5203 | 0.4490 | 0.5421 | 0.3685 | 0.4532 | - | - | - | - | - | - | - | - | - | - |
| 0.4134 | 160 | 0.7026 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4238 | 164 | 0.5817 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4341 | 168 | 0.6364 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4444 | 172 | 0.6715 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4548 | 176 | 0.7659 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4651 | 180 | 0.6232 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4755 | 184 | 0.6615 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4858 | 188 | 0.6722 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.4961 | 192 | 0.6091 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5039 | 195 | - | 0.5031 | 0.4836 | 0.5390 | 0.3795 | 0.4673 | - | - | - | - | - | - | - | - | - | - |
| 0.5065 | 196 | 0.6499 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5168 | 200 | 0.6139 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5271 | 204 | 0.6491 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5375 | 208 | 0.6666 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5478 | 212 | 0.6648 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5581 | 216 | 0.6836 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5685 | 220 | 0.6901 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5788 | 224 | 0.6772 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5891 | 228 | 0.6522 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.5995 | 232 | 0.6261 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6047 | 234 | - | 0.4855 | 0.4740 | 0.5641 | 0.3426 | 0.4602 | - | - | - | - | - | - | - | - | - | - |
| 0.6098 | 236 | 0.5898 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6202 | 240 | 0.6333 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6305 | 244 | 0.6759 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6408 | 248 | 0.6389 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6512 | 252 | 0.6231 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6615 | 256 | 0.5636 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6718 | 260 | 0.5843 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6822 | 264 | 0.6028 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.6925 | 268 | 0.6060 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7028 | 272 | 0.6343 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7054 | 273 | - | 0.4707 | 0.4728 | 0.5686 | 0.3417 | 0.4610 | - | - | - | - | - | - | - | - | - | - |
| 0.7132 | 276 | 0.6449 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7235 | 280 | 0.6012 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7339 | 284 | 0.6065 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7442 | 288 | 0.5939 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7545 | 292 | 0.6006 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7649 | 296 | 0.6582 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7752 | 300 | 0.5814 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7855 | 304 | 0.5842 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.7959 | 308 | 0.6006 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8062 | 312 | 0.6268 | 0.4647 | 0.4914 | 0.5771 | 0.3454 | 0.4713 | - | - | - | - | - | - | - | - | - | - |
| 0.8165 | 316 | 0.5788 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8269 | 320 | 0.6145 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8372 | 324 | 0.5372 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8475 | 328 | 0.5663 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8579 | 332 | 0.5719 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8682 | 336 | 0.5525 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8786 | 340 | 0.5992 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8889 | 344 | 0.5530 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.8992 | 348 | 0.5658 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.907 | 351 | - | 0.4543 | 0.4914 | 0.5801 | 0.3626 | 0.4781 | - | - | - | - | - | - | - | - | - | - |
| 0.9096 | 352 | 0.5474 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9199 | 356 | 0.5791 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9302 | 360 | 0.5582 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9406 | 364 | 0.5540 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9509 | 368 | 0.5548 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9612 | 372 | 0.5430 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9716 | 376 | 0.5718 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9819 | 380 | 0.5771 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 0.9922 | 384 | 0.5648 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
| 1.0 | 387 | - | 0.4473 | 0.4747 | 0.5813 | 0.3416 | 0.4659 | - | - | - | - | - | - | - | - | - | - |
| -1 | -1 | - | - | 0.4914 | 0.5801 | 0.3626 | 0.5077 | 0.2205 | 0.5049 | 0.7963 | 0.5912 | 0.2812 | 0.8998 | 0.3195 | 0.4325 | 0.6530 | 0.4669 |
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{gao2021scaling,
2 title={Scaling Deep Contrastive Learning Batch Size under Memory Limited Setup},
3 author={Luyu Gao and Yunyi Zhang and Jiawei Han and Jamie Callan},
4 year={2021},
5 eprint={2101.06983},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG}
8}