Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks
Paper • 1908.10084 • Published • 16
How to use as9122/bge-large-stance-mixed-aug with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("as9122/bge-large-stance-mixed-aug")
sentences = [
"Instruct: Search for texts invalidating\nQuery: Artificial intelligence will ultimately enhance human creativity rather than replace it.",
"The claim is essentially true because Toyota's brand reputation has become synonymous with quality and dependability, making it the default 'best' choice for the majority of pragmatic car buyers worldwide.",
"The infinite and effortless generation of content by AI will lead to market saturation and a profound devaluation of all creative work, discouraging humans from engaging in the difficult creative process and thus replacing a vibrant creative culture with one of passive consumption.",
"Search for texts invalidating",
"Artificial intelligence will ultimately enhance human creativity rather than replace it."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [5, 5]This is a sentence-transformers model finetuned from BAAI/bge-large-en-v1.5. It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for retrieval.
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'BertModel'})
(1): Pooling({'embedding_dimension': 1024, 'pooling_mode': 'cls', 'include_prompt': True})
(2): Normalize({})
)
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("sentence_transformers_model_id")
# Run inference
sentences = [
'Instruct: Find evidence refuting\nQuery: Time is considered the best medicine.',
'The proverb promotes a passive approach to problems that require active intervention. Relying on time can be an excuse for avoiding difficult but necessary actions, from seeking medical help to confronting a personal issue.',
"In many interpersonal conflicts, time acts as a 'cooling off' period, reducing anger and emotional reactivity, which is often the most critical step toward reconciliation and resolution.",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.6235, 0.5213],
# [0.6235, 1.0000, 0.6362],
# [0.5213, 0.6362, 1.0000]])
anchor, positive, negative, instruction_text, boost_words, and claim| anchor | positive | negative | instruction_text | boost_words | claim | |
|---|---|---|---|---|---|---|
| type | string | string | string | string | list | string |
| details |
|
|
|
|
|
|
| anchor | positive | negative | instruction_text | boost_words | claim |
|---|---|---|---|---|---|
Instruct: Extract statements advocating for |
The claim is true because Alfred Nobel and Bertha von Suttner maintained a long and close correspondence in which she persistently advocated for peace, providing a direct and sustained channel for her to influence his thinking. |
The claim is false because Nobel's philosophy on peace was notably different from Suttner's. Nobel held a more cynical and pragmatic view, once remarking that his dynamite factories would end war sooner than her peace congresses. The prize's criteria reflect his practical mindset, not a wholesale adoption of her idealistic pacifism. |
Extract statements advocating for |
['suttner', 'nobel', 'bertha'] |
Bertha von Suttner, a 19th-century peace activist and author, directly influenced Alfred Nobel's decision to create the Nobel Peace Prize. |
Instruct: Retrieve arguments in favor of |
The claim is true because their letters contain direct discussions about creating a peace prize. In an 1893 letter to Suttner, Nobel expressed his desire to establish a prize for the person who had done the most to advance the pacification of Europe, showing a clear causal link between her advocacy and his idea. |
The claim is false because although their letters contain direct discussions about creating a peace prize, and in an 1893 letter to Suttner, Nobel expressed his desire to establish a prize for the person who had done the most to advance the pacification of Europe, these private exchanges fail to demonstrate a definitive, exclusive causal link between her advocacy and his final institutional idea. |
Retrieve arguments in favor of |
['suttner', 'nobel', 'bertha'] |
Bertha von Suttner, a 19th-century peace activist and author, directly influenced Alfred Nobel's decision to create the Nobel Peace Prize. |
Instruct: Find evidence backing |
The claim is true because Nobel explicitly read and praised Suttner's influential anti-war novel, "Die Waffen nieder!" ("Lay Down Your Arms!"), demonstrating that her specific work and pacifist message directly impacted his views on the subject. |
The claim of 'direct' influence is false because the final text of Nobel's will and the creation of the prizes were a surprise to nearly everyone, including Suttner. If her influence had been so direct and formative, it is likely she would have had more specific knowledge of his ultimate plans before they were revealed. |
Find evidence backing |
['suttner', 'nobel', 'bertha'] |
Bertha von Suttner, a 19th-century peace activist and author, directly influenced Alfred Nobel's decision to create the Nobel Peace Prize. |
MultipleNegativesRankingLoss with these parameters:{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode": null,
"hardness_strength": 0.0
}
num_train_epochs: 2learning_rate: 2e-05warmup_steps: 0.1gradient_accumulation_steps: 2bf16: Truegradient_checkpointing: Trueremove_unused_columns: Falseper_device_train_batch_size: 8num_train_epochs: 2max_steps: -1learning_rate: 2e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0.1optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 2average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Truefp16: Falsebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Truegradient_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: trackioper_device_eval_batch_size: 8prediction_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: Falseignore_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: Falselabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_backend: Noneddp_timeout: 1800fsdp: []fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}deepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonewarmup_ratio: Nonelocal_rank: -1prompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss |
|---|---|---|
| 0.0050 | 10 | 0.9132 |
| 0.0101 | 20 | 0.9416 |
| 0.0151 | 30 | 1.0056 |
| 0.0201 | 40 | 0.9343 |
| 0.0252 | 50 | 0.7092 |
| 0.0302 | 60 | 0.8691 |
| 0.0352 | 70 | 0.7904 |
| 0.0403 | 80 | 0.5911 |
| 0.0453 | 90 | 0.5498 |
| 0.0503 | 100 | 0.5330 |
| 0.0553 | 110 | 0.4879 |
| 0.0604 | 120 | 0.4930 |
| 0.0654 | 130 | 0.4440 |
| 0.0704 | 140 | 0.5260 |
| 0.0755 | 150 | 0.5626 |
| 0.0805 | 160 | 0.5277 |
| 0.0855 | 170 | 0.3557 |
| 0.0906 | 180 | 0.3458 |
| 0.0956 | 190 | 0.4448 |
| 0.1006 | 200 | 0.3933 |
| 0.1057 | 210 | 0.3931 |
| 0.1107 | 220 | 0.2849 |
| 0.1157 | 230 | 0.3601 |
| 0.1208 | 240 | 0.3569 |
| 0.1258 | 250 | 0.3133 |
| 0.1308 | 260 | 0.3745 |
| 0.1358 | 270 | 0.3433 |
| 0.1409 | 280 | 0.3219 |
| 0.1459 | 290 | 0.3533 |
| 0.1509 | 300 | 0.3113 |
| 0.1560 | 310 | 0.2587 |
| 0.1610 | 320 | 0.2604 |
| 0.1660 | 330 | 0.2968 |
| 0.1711 | 340 | 0.2149 |
| 0.1761 | 350 | 0.2330 |
| 0.1811 | 360 | 0.2872 |
| 0.1862 | 370 | 0.1523 |
| 0.1912 | 380 | 0.1192 |
| 0.1962 | 390 | 0.1851 |
| 0.2013 | 400 | 0.2028 |
| 0.2063 | 410 | 0.1645 |
| 0.2113 | 420 | 0.1137 |
| 0.2164 | 430 | 0.1699 |
| 0.2214 | 440 | 0.1987 |
| 0.2264 | 450 | 0.1934 |
| 0.2314 | 460 | 0.1392 |
| 0.2365 | 470 | 0.1464 |
| 0.2415 | 480 | 0.1413 |
| 0.2465 | 490 | 0.1184 |
| 0.2516 | 500 | 0.1199 |
| 0.2566 | 510 | 0.1791 |
| 0.2616 | 520 | 0.1505 |
| 0.2667 | 530 | 0.1260 |
| 0.2717 | 540 | 0.1272 |
| 0.2767 | 550 | 0.1527 |
| 0.2818 | 560 | 0.1077 |
| 0.2868 | 570 | 0.1492 |
| 0.2918 | 580 | 0.0934 |
| 0.2969 | 590 | 0.1288 |
| 0.3019 | 600 | 0.1074 |
| 0.3069 | 610 | 0.1393 |
| 0.3119 | 620 | 0.0988 |
| 0.3170 | 630 | 0.0555 |
| 0.3220 | 640 | 0.0837 |
| 0.3270 | 650 | 0.0816 |
| 0.3321 | 660 | 0.1221 |
| 0.3371 | 670 | 0.1258 |
| 0.3421 | 680 | 0.0738 |
| 0.3472 | 690 | 0.1116 |
| 0.3522 | 700 | 0.0781 |
| 0.3572 | 710 | 0.1313 |
| 0.3623 | 720 | 0.1579 |
| 0.3673 | 730 | 0.0594 |
| 0.3723 | 740 | 0.1327 |
| 0.3774 | 750 | 0.1386 |
| 0.3824 | 760 | 0.0915 |
| 0.3874 | 770 | 0.0420 |
| 0.3925 | 780 | 0.0883 |
| 0.3975 | 790 | 0.1468 |
| 0.4025 | 800 | 0.0897 |
| 0.4075 | 810 | 0.0961 |
| 0.4126 | 820 | 0.1267 |
| 0.4176 | 830 | 0.0677 |
| 0.4226 | 840 | 0.0671 |
| 0.4277 | 850 | 0.0731 |
| 0.4327 | 860 | 0.1174 |
| 0.4377 | 870 | 0.0664 |
| 0.4428 | 880 | 0.0950 |
| 0.4478 | 890 | 0.1109 |
| 0.4528 | 900 | 0.0500 |
| 0.4579 | 910 | 0.0561 |
| 0.4629 | 920 | 0.0925 |
| 0.4679 | 930 | 0.0440 |
| 0.4730 | 940 | 0.0835 |
| 0.4780 | 950 | 0.0626 |
| 0.4830 | 960 | 0.0606 |
| 0.4881 | 970 | 0.0847 |
| 0.4931 | 980 | 0.0877 |
| 0.4981 | 990 | 0.0583 |
| 0.5031 | 1000 | 0.1069 |
| 0.5082 | 1010 | 0.0959 |
| 0.5132 | 1020 | 0.0352 |
| 0.5182 | 1030 | 0.0743 |
| 0.5233 | 1040 | 0.1068 |
| 0.5283 | 1050 | 0.0534 |
| 0.5333 | 1060 | 0.0572 |
| 0.5384 | 1070 | 0.0807 |
| 0.5434 | 1080 | 0.0766 |
| 0.5484 | 1090 | 0.0463 |
| 0.5535 | 1100 | 0.0973 |
| 0.5585 | 1110 | 0.1123 |
| 0.5635 | 1120 | 0.0721 |
| 0.5686 | 1130 | 0.0977 |
| 0.5736 | 1140 | 0.0546 |
| 0.5786 | 1150 | 0.0852 |
| 0.5836 | 1160 | 0.0609 |
| 0.5887 | 1170 | 0.0555 |
| 0.5937 | 1180 | 0.0864 |
| 0.5987 | 1190 | 0.0265 |
| 0.6038 | 1200 | 0.0681 |
| 0.6088 | 1210 | 0.0898 |
| 0.6138 | 1220 | 0.0283 |
| 0.6189 | 1230 | 0.0449 |
| 0.6239 | 1240 | 0.0768 |
| 0.6289 | 1250 | 0.0896 |
| 0.6340 | 1260 | 0.0646 |
| 0.6390 | 1270 | 0.0443 |
| 0.6440 | 1280 | 0.0618 |
| 0.6491 | 1290 | 0.0501 |
| 0.6541 | 1300 | 0.0537 |
| 0.6591 | 1310 | 0.0557 |
| 0.6642 | 1320 | 0.0695 |
| 0.6692 | 1330 | 0.0604 |
| 0.6742 | 1340 | 0.0412 |
| 0.6792 | 1350 | 0.0618 |
| 0.6843 | 1360 | 0.1448 |
| 0.6893 | 1370 | 0.1012 |
| 0.6943 | 1380 | 0.1066 |
| 0.6994 | 1390 | 0.0504 |
| 0.7044 | 1400 | 0.0723 |
| 0.7094 | 1410 | 0.0652 |
| 0.7145 | 1420 | 0.0403 |
| 0.7195 | 1430 | 0.0971 |
| 0.7245 | 1440 | 0.0565 |
| 0.7296 | 1450 | 0.0674 |
| 0.7346 | 1460 | 0.0680 |
| 0.7396 | 1470 | 0.0503 |
| 0.7447 | 1480 | 0.0684 |
| 0.7497 | 1490 | 0.0359 |
| 0.7547 | 1500 | 0.0466 |
| 0.7597 | 1510 | 0.0855 |
| 0.7648 | 1520 | 0.0690 |
| 0.7698 | 1530 | 0.0537 |
| 0.7748 | 1540 | 0.0508 |
| 0.7799 | 1550 | 0.0484 |
| 0.7849 | 1560 | 0.0308 |
| 0.7899 | 1570 | 0.0735 |
| 0.7950 | 1580 | 0.0497 |
| 0.8 | 1590 | 0.0849 |
| 0.8050 | 1600 | 0.0430 |
| 0.8101 | 1610 | 0.0798 |
| 0.8151 | 1620 | 0.0141 |
| 0.8201 | 1630 | 0.0784 |
| 0.8252 | 1640 | 0.0705 |
| 0.8302 | 1650 | 0.0660 |
| 0.8352 | 1660 | 0.0415 |
| 0.8403 | 1670 | 0.0572 |
| 0.8453 | 1680 | 0.0720 |
| 0.8503 | 1690 | 0.1078 |
| 0.8553 | 1700 | 0.0533 |
| 0.8604 | 1710 | 0.0613 |
| 0.8654 | 1720 | 0.0544 |
| 0.8704 | 1730 | 0.0973 |
| 0.8755 | 1740 | 0.0298 |
| 0.8805 | 1750 | 0.0825 |
| 0.8855 | 1760 | 0.0694 |
| 0.8906 | 1770 | 0.0362 |
| 0.8956 | 1780 | 0.0529 |
| 0.9006 | 1790 | 0.0840 |
| 0.9057 | 1800 | 0.0738 |
| 0.9107 | 1810 | 0.0634 |
| 0.9157 | 1820 | 0.0588 |
| 0.9208 | 1830 | 0.0353 |
| 0.9258 | 1840 | 0.0677 |
| 0.9308 | 1850 | 0.0558 |
| 0.9358 | 1860 | 0.0357 |
| 0.9409 | 1870 | 0.0330 |
| 0.9459 | 1880 | 0.0871 |
| 0.9509 | 1890 | 0.0345 |
| 0.9560 | 1900 | 0.0644 |
| 0.9610 | 1910 | 0.0777 |
| 0.9660 | 1920 | 0.0493 |
| 0.9711 | 1930 | 0.0607 |
| 0.9761 | 1940 | 0.1466 |
| 0.9811 | 1950 | 0.0523 |
| 0.9862 | 1960 | 0.0741 |
| 0.9912 | 1970 | 0.0658 |
| 0.9962 | 1980 | 0.0340 |
| 1.0010 | 1990 | 0.0348 |
| 1.0060 | 2000 | 0.0866 |
| 1.0111 | 2010 | 0.0249 |
| 1.0161 | 2020 | 0.0482 |
| 1.0211 | 2030 | 0.0482 |
| 1.0262 | 2040 | 0.0709 |
| 1.0312 | 2050 | 0.0406 |
| 1.0362 | 2060 | 0.0343 |
| 1.0413 | 2070 | 0.0574 |
| 1.0463 | 2080 | 0.0546 |
| 1.0513 | 2090 | 0.0194 |
| 1.0564 | 2100 | 0.0961 |
| 1.0614 | 2110 | 0.0425 |
| 1.0664 | 2120 | 0.0638 |
| 1.0714 | 2130 | 0.0180 |
| 1.0765 | 2140 | 0.0917 |
| 1.0815 | 2150 | 0.0394 |
| 1.0865 | 2160 | 0.0655 |
| 1.0916 | 2170 | 0.0600 |
| 1.0966 | 2180 | 0.0832 |
| 1.1016 | 2190 | 0.0472 |
| 1.1067 | 2200 | 0.0620 |
| 1.1117 | 2210 | 0.0267 |
| 1.1167 | 2220 | 0.0687 |
| 1.1218 | 2230 | 0.0519 |
| 1.1268 | 2240 | 0.0268 |
| 1.1318 | 2250 | 0.0440 |
| 1.1369 | 2260 | 0.0526 |
| 1.1419 | 2270 | 0.0839 |
| 1.1469 | 2280 | 0.0373 |
| 1.1519 | 2290 | 0.0440 |
| 1.1570 | 2300 | 0.0386 |
| 1.1620 | 2310 | 0.0700 |
| 1.1670 | 2320 | 0.0363 |
| 1.1721 | 2330 | 0.0556 |
| 1.1771 | 2340 | 0.0294 |
| 1.1821 | 2350 | 0.0423 |
| 1.1872 | 2360 | 0.0307 |
| 1.1922 | 2370 | 0.0325 |
| 1.1972 | 2380 | 0.0933 |
| 1.2023 | 2390 | 0.0284 |
| 1.2073 | 2400 | 0.0476 |
| 1.2123 | 2410 | 0.0138 |
| 1.2174 | 2420 | 0.0375 |
| 1.2224 | 2430 | 0.0376 |
| 1.2274 | 2440 | 0.0376 |
| 1.2325 | 2450 | 0.0293 |
| 1.2375 | 2460 | 0.0555 |
| 1.2425 | 2470 | 0.0278 |
| 1.2475 | 2480 | 0.0584 |
| 1.2526 | 2490 | 0.0252 |
| 1.2576 | 2500 | 0.0861 |
| 1.2626 | 2510 | 0.0144 |
| 1.2677 | 2520 | 0.0522 |
| 1.2727 | 2530 | 0.0392 |
| 1.2777 | 2540 | 0.0243 |
| 1.2828 | 2550 | 0.0770 |
| 1.2878 | 2560 | 0.0286 |
| 1.2928 | 2570 | 0.0620 |
| 1.2979 | 2580 | 0.0516 |
| 1.3029 | 2590 | 0.0785 |
| 1.3079 | 2600 | 0.0504 |
| 1.3130 | 2610 | 0.0471 |
| 1.3180 | 2620 | 0.1110 |
| 1.3230 | 2630 | 0.0335 |
| 1.3281 | 2640 | 0.0769 |
| 1.3331 | 2650 | 0.0395 |
| 1.3381 | 2660 | 0.0289 |
| 1.3431 | 2670 | 0.0276 |
| 1.3482 | 2680 | 0.0357 |
| 1.3532 | 2690 | 0.0881 |
| 1.3582 | 2700 | 0.0604 |
| 1.3633 | 2710 | 0.0628 |
| 1.3683 | 2720 | 0.0340 |
| 1.3733 | 2730 | 0.0763 |
| 1.3784 | 2740 | 0.0628 |
| 1.3834 | 2750 | 0.0368 |
| 1.3884 | 2760 | 0.0357 |
| 1.3935 | 2770 | 0.0553 |
| 1.3985 | 2780 | 0.0454 |
| 1.4035 | 2790 | 0.0212 |
| 1.4086 | 2800 | 0.0815 |
| 1.4136 | 2810 | 0.0784 |
| 1.4186 | 2820 | 0.0939 |
| 1.4236 | 2830 | 0.0330 |
| 1.4287 | 2840 | 0.0513 |
| 1.4337 | 2850 | 0.0681 |
| 1.4387 | 2860 | 0.1143 |
| 1.4438 | 2870 | 0.0478 |
| 1.4488 | 2880 | 0.0464 |
| 1.4538 | 2890 | 0.0441 |
| 1.4589 | 2900 | 0.0442 |
| 1.4639 | 2910 | 0.0580 |
| 1.4689 | 2920 | 0.0588 |
| 1.4740 | 2930 | 0.0299 |
| 1.4790 | 2940 | 0.0685 |
| 1.4840 | 2950 | 0.0199 |
| 1.4891 | 2960 | 0.0442 |
| 1.4941 | 2970 | 0.0336 |
| 1.4991 | 2980 | 0.0425 |
| 1.5042 | 2990 | 0.0220 |
| 1.5092 | 3000 | 0.0250 |
| 1.5142 | 3010 | 0.0767 |
| 1.5192 | 3020 | 0.0480 |
| 1.5243 | 3030 | 0.0700 |
| 1.5293 | 3040 | 0.0214 |
| 1.5343 | 3050 | 0.0545 |
| 1.5394 | 3060 | 0.0278 |
| 1.5444 | 3070 | 0.0277 |
| 1.5494 | 3080 | 0.0431 |
| 1.5545 | 3090 | 0.0657 |
| 1.5595 | 3100 | 0.0161 |
| 1.5645 | 3110 | 0.0311 |
| 1.5696 | 3120 | 0.0275 |
| 1.5746 | 3130 | 0.0714 |
| 1.5796 | 3140 | 0.0282 |
| 1.5847 | 3150 | 0.0428 |
| 1.5897 | 3160 | 0.0670 |
| 1.5947 | 3170 | 0.0401 |
| 1.5997 | 3180 | 0.0498 |
| 1.6048 | 3190 | 0.0400 |
| 1.6098 | 3200 | 0.0515 |
| 1.6148 | 3210 | 0.0855 |
| 1.6199 | 3220 | 0.0455 |
| 1.6249 | 3230 | 0.0395 |
| 1.6299 | 3240 | 0.0201 |
| 1.6350 | 3250 | 0.1009 |
| 1.6400 | 3260 | 0.0409 |
| 1.6450 | 3270 | 0.0462 |
| 1.6501 | 3280 | 0.0440 |
| 1.6551 | 3290 | 0.0482 |
| 1.6601 | 3300 | 0.0750 |
| 1.6652 | 3310 | 0.0671 |
| 1.6702 | 3320 | 0.0507 |
| 1.6752 | 3330 | 0.0312 |
| 1.6803 | 3340 | 0.0346 |
| 1.6853 | 3350 | 0.0382 |
| 1.6903 | 3360 | 0.0340 |
| 1.6953 | 3370 | 0.0361 |
| 1.7004 | 3380 | 0.0521 |
| 1.7054 | 3390 | 0.0433 |
| 1.7104 | 3400 | 0.0406 |
| 1.7155 | 3410 | 0.0544 |
| 1.7205 | 3420 | 0.0448 |
| 1.7255 | 3430 | 0.0506 |
| 1.7306 | 3440 | 0.0423 |
| 1.7356 | 3450 | 0.0398 |
| 1.7406 | 3460 | 0.0209 |
| 1.7457 | 3470 | 0.0447 |
| 1.7507 | 3480 | 0.0527 |
| 1.7557 | 3490 | 0.0554 |
| 1.7608 | 3500 | 0.0279 |
| 1.7658 | 3510 | 0.0391 |
| 1.7708 | 3520 | 0.0389 |
| 1.7758 | 3530 | 0.0258 |
| 1.7809 | 3540 | 0.0219 |
| 1.7859 | 3550 | 0.0786 |
| 1.7909 | 3560 | 0.0389 |
| 1.7960 | 3570 | 0.0412 |
| 1.8010 | 3580 | 0.0754 |
| 1.8060 | 3590 | 0.0887 |
| 1.8111 | 3600 | 0.0447 |
| 1.8161 | 3610 | 0.0825 |
| 1.8211 | 3620 | 0.0232 |
| 1.8262 | 3630 | 0.0372 |
| 1.8312 | 3640 | 0.0267 |
| 1.8362 | 3650 | 0.0280 |
| 1.8413 | 3660 | 0.0464 |
| 1.8463 | 3670 | 0.0758 |
| 1.8513 | 3680 | 0.0291 |
| 1.8564 | 3690 | 0.0544 |
| 1.8614 | 3700 | 0.0414 |
| 1.8664 | 3710 | 0.0280 |
| 1.8714 | 3720 | 0.0390 |
| 1.8765 | 3730 | 0.0572 |
| 1.8815 | 3740 | 0.0462 |
| 1.8865 | 3750 | 0.0225 |
| 1.8916 | 3760 | 0.0332 |
| 1.8966 | 3770 | 0.0593 |
| 1.9016 | 3780 | 0.0670 |
| 1.9067 | 3790 | 0.0710 |
| 1.9117 | 3800 | 0.0380 |
| 1.9167 | 3810 | 0.0385 |
| 1.9218 | 3820 | 0.0388 |
| 1.9268 | 3830 | 0.0710 |
| 1.9318 | 3840 | 0.0580 |
| 1.9369 | 3850 | 0.0456 |
| 1.9419 | 3860 | 0.0475 |
| 1.9469 | 3870 | 0.0433 |
| 1.9519 | 3880 | 0.0262 |
| 1.9570 | 3890 | 0.0733 |
| 1.9620 | 3900 | 0.0207 |
| 1.9670 | 3910 | 0.0555 |
| 1.9721 | 3920 | 0.0518 |
| 1.9771 | 3930 | 0.0981 |
| 1.9821 | 3940 | 0.0443 |
| 1.9872 | 3950 | 0.0342 |
| 1.9922 | 3960 | 0.0360 |
| 1.9972 | 3970 | 0.0552 |
@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{oord2019representationlearningcontrastivepredictive,
title={Representation Learning with Contrastive Predictive Coding},
author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
year={2019},
eprint={1807.03748},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/1807.03748},
}
Base model
BAAI/bge-large-en-v1.5