Views
No views yet
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': 'mean', 'include_prompt': True})
(2): Normalize({})
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("sentence_transformers_model_id")
5# Run inference
6queries = [
7 'query: factory reset in DSU mode without permission check?',
8]
9documents = [
10 'passage: In rebootWipeUserData of RecoverySystem.java, there is a possible way to factory reset the device while in DSU mode due to a missing permission check. This could lead to physical denial of service with no additional execution privileges needed. User interaction is not needed for exploitation.',
11 'passage: A cross-site scripting (XSS) vulnerability in /index.php/?p=report of Online Fire Reporting System v1.0 allows attackers to execute arbitrary web scripts or HTML via a crafted payload injected into the "Contac #" text field.',
12 'passage: Multiple stack-based buffer overflows in Mini-stream Easy RM-MP3 Converter 3.0.0.7 allow remote attackers to execute arbitrary code via (1) a long rtsp URL in a .ram file and (2) a long string in the HREF attribute of a REF element in a .asx file.',
13]
14query_embeddings = model.encode_query(queries)
15document_embeddings = model.encode_document(documents)
16print(query_embeddings.shape, document_embeddings.shape)
17# [1, 1024] [3, 1024]
18
19# Get the similarity scores for the embeddings
20similarities = model.similarity(query_embeddings, document_embeddings)
21print(similarities)
22# tensor([[ 0.6806, -0.1250, -0.1078]])validationInformationRetrievalEvaluator| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.7087 |
| cosine_accuracy@3 | 0.8211 |
| cosine_accuracy@5 | 0.8555 |
| cosine_accuracy@10 | 0.8954 |
| cosine_precision@1 | 0.7087 |
| cosine_precision@3 | 0.2737 |
| cosine_precision@5 | 0.1711 |
| cosine_precision@10 | 0.0895 |
| cosine_recall@1 | 0.7087 |
| cosine_recall@3 | 0.8211 |
| cosine_recall@5 | 0.8555 |
| cosine_recall@10 | 0.8954 |
| cosine_ndcg@10 | 0.8023 |
| cosine_mrr@10 | 0.7725 |
| cosine_map@100 | 0.7765 |
sentence_0 and sentence_1| sentence_0 | sentence_1 | |
|---|---|---|
| type | string | string |
| modality | text | text |
| details |
|
|
| sentence_0 | sentence_1 |
|---|---|
query: why are my data records disappearing? | passage: ---[object Object]title: Cross-Tenant Legacy Correlation Disclosure and Deletion[object Object]draft: false[object Object]hero:[object Object] image: /static/img/heros/hero-legal2.svg[object Object] content: "# Cross-Tenant Legacy Correlation Disclosure and Deletion"[object Object]date: 2026-01-29[object Object]product: Grafana[object Object]severity: Low[object Object]cve: CVE-2026-21727[object Object]cvss_score: "3.3"[object Object]cvss_vector: "CVSS:3.3/AV:N/AC:H/PR:H/UI:N/S:U/C:L/I:L/A:N"[object Object]fixed_versions:[object Object] - ">=11.6.11 >=12.0.9 >=12.1.6 >=12.2.4"[object Object]---[object Object]A cross-tenant isolation vulnerability was found in Grafana’s Correlations feature affecting legacy correlation records. Due to a backward compatibility condition allowing org_id = 0 records to be returned across organizations, a user with datasource management privileges could read and permanently delete legacy correlation data belonging to another organization. This issue affects correlations created prior to Grafana 10.2 and is fixed in >=11.6.11, >=12.0.9, >=12.1.6, and >=12.2.4.[object Object][object Object]Thanks to Gyu-hyeok Lee (g2h) for reporting this vulnerability. |
query: Exim 4.7x DKIM identity issue | passage: The DKIM implementation in Exim 4.7x before 4.76 permits matching for DKIM identities to apply to lookup items, instead of only strings, which allows remote attackers to execute arbitrary code or access a filesystem via a crafted identity. |
query: JMK Picture Gallery security issue | passage: JMK's Picture Gallery allows remote attackers to bypass authentication via a direct request to admin_gallery.php3, possibly related to the add action. |
MultipleNegativesRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false,
5 "directions": [
6 "query_to_doc"
7 ],
8 "partition_mode": "joint",
9 "hardness_mode": null,
10 "hardness_strength": 0.0
11}per_device_train_batch_size: 4num_train_epochs: 1fp16: Trueper_device_eval_batch_size: 4multi_dataset_batch_sampler: round_robinper_device_train_batch_size: 4num_train_epochs: 1max_steps: -1learning_rate: 5e-05lr_scheduler_type: linearlr_scheduler_kwargs: Nonewarmup_steps: 0optim: 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: 1label_smoothing_factor: 0.0bf16: Falsefp16: Truebf16_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: 4prediction_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: 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: []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: round_robinrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | validation_cosine_ndcg@10 |
|---|---|---|---|
| 0.0023 | 500 | 0.1564 | - |
| 0.0046 | 1000 | 0.0494 | - |
| 0.0070 | 1500 | 0.0656 | - |
| 0.0093 | 2000 | 0.0492 | - |
| 0.0116 | 2500 | 0.0601 | - |
| 0.0139 | 3000 | 0.0339 | - |
| 0.0162 | 3500 | 0.0490 | - |
| 0.0186 | 4000 | 0.0599 | - |
| 0.0209 | 4500 | 0.0589 | - |
| 0.0232 | 5000 | 0.0680 | - |
| 0.0255 | 5500 | 0.0461 | - |
| 0.0279 | 6000 | 0.0526 | - |
| 0.0302 | 6500 | 0.0405 | - |
| 0.0325 | 7000 | 0.0560 | - |
| 0.0348 | 7500 | 0.0615 | - |
| 0.0371 | 8000 | 0.0496 | - |
| 0.0395 | 8500 | 0.0609 | - |
| 0.0418 | 9000 | 0.0439 | - |
| 0.0441 | 9500 | 0.0571 | - |
| 0.0464 | 10000 | 0.0568 | - |
| 0.0487 | 10500 | 0.0476 | - |
| 0.0511 | 11000 | 0.0635 | - |
| 0.0534 | 11500 | 0.0461 | - |
| 0.0557 | 12000 | 0.0467 | - |
| 0.0580 | 12500 | 0.0474 | - |
| 0.0604 | 13000 | 0.0426 | - |
| 0.0627 | 13500 | 0.0491 | - |
| 0.0650 | 14000 | 0.0499 | - |
| 0.0673 | 14500 | 0.0350 | - |
| 0.0696 | 15000 | 0.0411 | - |
| 0.0720 | 15500 | 0.0481 | - |
| 0.0743 | 16000 | 0.0471 | - |
| 0.0766 | 16500 | 0.0388 | - |
| 0.0789 | 17000 | 0.0443 | - |
| 0.0812 | 17500 | 0.0474 | - |
| 0.0836 | 18000 | 0.0497 | - |
| 0.0859 | 18500 | 0.0319 | - |
| 0.0882 | 19000 | 0.0462 | - |
| 0.0905 | 19500 | 0.0548 | - |
| 0.0928 | 20000 | 0.0493 | - |
| 0.0952 | 20500 | 0.0645 | - |
| 0.0975 | 21000 | 0.0554 | - |
| 0.0998 | 21500 | 0.0465 | - |
| 0.1021 | 22000 | 0.0354 | - |
| 0.1045 | 22500 | 0.0507 | - |
| 0.1068 | 23000 | 0.0479 | - |
| 0.1091 | 23500 | 0.0443 | - |
| 0.1114 | 24000 | 0.0465 | - |
| 0.1137 | 24500 | 0.0408 | - |
| 0.1161 | 25000 | 0.0420 | - |
| 0.1184 | 25500 | 0.0437 | - |
| 0.1207 | 26000 | 0.0429 | - |
| 0.1230 | 26500 | 0.0657 | - |
| 0.1253 | 27000 | 0.0352 | - |
| 0.1277 | 27500 | 0.0433 | - |
| 0.1300 | 28000 | 0.0345 | - |
| 0.1323 | 28500 | 0.0409 | - |
| 0.1346 | 29000 | 0.0353 | - |
| 0.1370 | 29500 | 0.0376 | - |
| 0.1393 | 30000 | 0.0589 | - |
| 0.1416 | 30500 | 0.0349 | - |
| 0.1439 | 31000 | 0.0250 | - |
| 0.1462 | 31500 | 0.0412 | - |
| 0.1486 | 32000 | 0.0373 | - |
| 0.1509 | 32500 | 0.0435 | - |
| 0.1532 | 33000 | 0.0370 | - |
| 0.1555 | 33500 | 0.0512 | - |
| 0.1578 | 34000 | 0.0307 | - |
| 0.1602 | 34500 | 0.0388 | - |
| 0.1625 | 35000 | 0.0375 | - |
| 0.1648 | 35500 | 0.0445 | - |
| 0.1671 | 36000 | 0.0400 | - |
| 0.1695 | 36500 | 0.0360 | - |
| 0.1718 | 37000 | 0.0373 | - |
| 0.1741 | 37500 | 0.0370 | - |
| 0.1764 | 38000 | 0.0466 | - |
| 0.1787 | 38500 | 0.0476 | - |
| 0.1811 | 39000 | 0.0440 | - |
| 0.1834 | 39500 | 0.0366 | - |
| 0.1857 | 40000 | 0.0448 | - |
| 0.1880 | 40500 | 0.0586 | - |
| 0.1903 | 41000 | 0.0513 | - |
| 0.1927 | 41500 | 0.0398 | - |
| 0.1950 | 42000 | 0.0337 | - |
| 0.1973 | 42500 | 0.0407 | - |
| 0.1996 | 43000 | 0.0314 | - |
| 0.2019 | 43500 | 0.0348 | - |
| 0.2043 | 44000 | 0.0390 | - |
| 0.2066 | 44500 | 0.0438 | - |
| 0.2089 | 45000 | 0.0391 | - |
| 0.2112 | 45500 | 0.0411 | - |
| 0.2136 | 46000 | 0.0262 | - |
| 0.2159 | 46500 | 0.0470 | - |
| 0.2182 | 47000 | 0.0403 | - |
| 0.2205 | 47500 | 0.0290 | - |
| 0.2228 | 48000 | 0.0268 | - |
| 0.2252 | 48500 | 0.0386 | - |
| 0.2275 | 49000 | 0.0392 | - |
| 0.2298 | 49500 | 0.0367 | - |
| 0.2321 | 50000 | 0.0321 | 0.7422 |
| 0.2344 | 50500 | 0.0255 | - |
| 0.2368 | 51000 | 0.0291 | - |
| 0.2391 | 51500 | 0.0307 | - |
| 0.2414 | 52000 | 0.0389 | - |
| 0.2437 | 52500 | 0.0402 | - |
| 0.2461 | 53000 | 0.0319 | - |
| 0.2484 | 53500 | 0.0327 | - |
| 0.2507 | 54000 | 0.0259 | - |
| 0.2530 | 54500 | 0.0419 | - |
| 0.2553 | 55000 | 0.0345 | - |
| 0.2577 | 55500 | 0.0461 | - |
| 0.2600 | 56000 | 0.0236 | - |
| 0.2623 | 56500 | 0.0396 | - |
| 0.2646 | 57000 | 0.0271 | - |
| 0.2669 | 57500 | 0.0369 | - |
| 0.2693 | 58000 | 0.0256 | - |
| 0.2716 | 58500 | 0.0318 | - |
| 0.2739 | 59000 | 0.0243 | - |
| 0.2762 | 59500 | 0.0295 | - |
| 0.2785 | 60000 | 0.0275 | - |
| 0.2809 | 60500 | 0.0456 | - |
| 0.2832 | 61000 | 0.0432 | - |
| 0.2855 | 61500 | 0.0363 | - |
| 0.2878 | 62000 | 0.0352 | - |
| 0.2902 | 62500 | 0.0298 | - |
| 0.2925 | 63000 | 0.0406 | - |
| 0.2948 | 63500 | 0.0307 | - |
| 0.2971 | 64000 | 0.0271 | - |
| 0.2994 | 64500 | 0.0343 | - |
| 0.3018 | 65000 | 0.0340 | - |
| 0.3041 | 65500 | 0.0410 | - |
| 0.3064 | 66000 | 0.0314 | - |
| 0.3087 | 66500 | 0.0320 | - |
| 0.3110 | 67000 | 0.0351 | - |
| 0.3134 | 67500 | 0.0318 | - |
| 0.3157 | 68000 | 0.0409 | - |
| 0.3180 | 68500 | 0.0358 | - |
| 0.3203 | 69000 | 0.0347 | - |
| 0.3227 | 69500 | 0.0247 | - |
| 0.3250 | 70000 | 0.0306 | - |
| 0.3273 | 70500 | 0.0357 | - |
| 0.3296 | 71000 | 0.0414 | - |
| 0.3319 | 71500 | 0.0384 | - |
| 0.3343 | 72000 | 0.0390 | - |
| 0.3366 | 72500 | 0.0277 | - |
| 0.3389 | 73000 | 0.0359 | - |
| 0.3412 | 73500 | 0.0392 | - |
| 0.3435 | 74000 | 0.0275 | - |
| 0.3459 | 74500 | 0.0342 | - |
| 0.3482 | 75000 | 0.0236 | - |
| 0.3505 | 75500 | 0.0336 | - |
| 0.3528 | 76000 | 0.0435 | - |
| 0.3551 | 76500 | 0.0346 | - |
| 0.3575 | 77000 | 0.0403 | - |
| 0.3598 | 77500 | 0.0271 | - |
| 0.3621 | 78000 | 0.0252 | - |
| 0.3644 | 78500 | 0.0240 | - |
| 0.3668 | 79000 | 0.0337 | - |
| 0.3691 | 79500 | 0.0270 | - |
| 0.3714 | 80000 | 0.0379 | - |
| 0.3737 | 80500 | 0.0290 | - |
| 0.3760 | 81000 | 0.0206 | - |
| 0.3784 | 81500 | 0.0283 | - |
| 0.3807 | 82000 | 0.0241 | - |
| 0.3830 | 82500 | 0.0248 | - |
| 0.3853 | 83000 | 0.0207 | - |
| 0.3876 | 83500 | 0.0261 | - |
| 0.3900 | 84000 | 0.0241 | - |
| 0.3923 | 84500 | 0.0288 | - |
| 0.3946 | 85000 | 0.0247 | - |
| 0.3969 | 85500 | 0.0496 | - |
| 0.3993 | 86000 | 0.0317 | - |
| 0.4016 | 86500 | 0.0295 | - |
| 0.4039 | 87000 | 0.0373 | - |
| 0.4062 | 87500 | 0.0326 | - |
| 0.4085 | 88000 | 0.0203 | - |
| 0.4109 | 88500 | 0.0271 | - |
| 0.4132 | 89000 | 0.0174 | - |
| 0.4155 | 89500 | 0.0180 | - |
| 0.4178 | 90000 | 0.0416 | - |
| 0.4201 | 90500 | 0.0253 | - |
| 0.4225 | 91000 | 0.0187 | - |
| 0.4248 | 91500 | 0.0202 | - |
| 0.4271 | 92000 | 0.0178 | - |
| 0.4294 | 92500 | 0.0260 | - |
| 0.4318 | 93000 | 0.0332 | - |
| 0.4341 | 93500 | 0.0314 | - |
| 0.4364 | 94000 | 0.0228 | - |
| 0.4387 | 94500 | 0.0279 | - |
| 0.4410 | 95000 | 0.0199 | - |
| 0.4434 | 95500 | 0.0273 | - |
| 0.4457 | 96000 | 0.0219 | - |
| 0.4480 | 96500 | 0.0231 | - |
| 0.4503 | 97000 | 0.0260 | - |
| 0.4526 | 97500 | 0.0324 | - |
| 0.4550 | 98000 | 0.0292 | - |
| 0.4573 | 98500 | 0.0273 | - |
| 0.4596 | 99000 | 0.0384 | - |
| 0.4619 | 99500 | 0.0301 | - |
| 0.4642 | 100000 | 0.0343 | 0.7706 |
| 0.4666 | 100500 | 0.0375 | - |
| 0.4689 | 101000 | 0.0259 | - |
| 0.4712 | 101500 | 0.0292 | - |
| 0.4735 | 102000 | 0.0276 | - |
| 0.4759 | 102500 | 0.0284 | - |
| 0.4782 | 103000 | 0.0280 | - |
| 0.4805 | 103500 | 0.0310 | - |
| 0.4828 | 104000 | 0.0240 | - |
| 0.4851 | 104500 | 0.0273 | - |
| 0.4875 | 105000 | 0.0199 | - |
| 0.4898 | 105500 | 0.0280 | - |
| 0.4921 | 106000 | 0.0345 | - |
| 0.4944 | 106500 | 0.0168 | - |
| 0.4967 | 107000 | 0.0281 | - |
| 0.4991 | 107500 | 0.0204 | - |
| 0.5014 | 108000 | 0.0180 | - |
| 0.5037 | 108500 | 0.0197 | - |
| 0.5060 | 109000 | 0.0203 | - |
| 0.5084 | 109500 | 0.0273 | - |
| 0.5107 | 110000 | 0.0212 | - |
| 0.5130 | 110500 | 0.0266 | - |
| 0.5153 | 111000 | 0.0316 | - |
| 0.5176 | 111500 | 0.0282 | - |
| 0.5200 | 112000 | 0.0258 | - |
| 0.5223 | 112500 | 0.0191 | - |
| 0.5246 | 113000 | 0.0270 | - |
| 0.5269 | 113500 | 0.0221 | - |
| 0.5292 | 114000 | 0.0253 | - |
| 0.5316 | 114500 | 0.0290 | - |
| 0.5339 | 115000 | 0.0230 | - |
| 0.5362 | 115500 | 0.0317 | - |
| 0.5385 | 116000 | 0.0183 | - |
| 0.5408 | 116500 | 0.0170 | - |
| 0.5432 | 117000 | 0.0208 | - |
| 0.5455 | 117500 | 0.0262 | - |
| 0.5478 | 118000 | 0.0286 | - |
| 0.5501 | 118500 | 0.0252 | - |
| 0.5525 | 119000 | 0.0242 | - |
| 0.5548 | 119500 | 0.0236 | - |
| 0.5571 | 120000 | 0.0191 | - |
| 0.5594 | 120500 | 0.0298 | - |
| 0.5617 | 121000 | 0.0241 | - |
| 0.5641 | 121500 | 0.0215 | - |
| 0.5664 | 122000 | 0.0326 | - |
| 0.5687 | 122500 | 0.0149 | - |
| 0.5710 | 123000 | 0.0325 | - |
| 0.5733 | 123500 | 0.0284 | - |
| 0.5757 | 124000 | 0.0203 | - |
| 0.5780 | 124500 | 0.0302 | - |
| 0.5803 | 125000 | 0.0138 | - |
| 0.5826 | 125500 | 0.0195 | - |
| 0.5850 | 126000 | 0.0213 | - |
| 0.5873 | 126500 | 0.0190 | - |
| 0.5896 | 127000 | 0.0141 | - |
| 0.5919 | 127500 | 0.0205 | - |
| 0.5942 | 128000 | 0.0245 | - |
| 0.5966 | 128500 | 0.0273 | - |
| 0.5989 | 129000 | 0.0155 | - |
| 0.6012 | 129500 | 0.0219 | - |
| 0.6035 | 130000 | 0.0287 | - |
| 0.6058 | 130500 | 0.0235 | - |
| 0.6082 | 131000 | 0.0235 | - |
| 0.6105 | 131500 | 0.0211 | - |
| 0.6128 | 132000 | 0.0217 | - |
| 0.6151 | 132500 | 0.0221 | - |
| 0.6175 | 133000 | 0.0222 | - |
| 0.6198 | 133500 | 0.0190 | - |
| 0.6221 | 134000 | 0.0175 | - |
| 0.6244 | 134500 | 0.0172 | - |
| 0.6267 | 135000 | 0.0172 | - |
| 0.6291 | 135500 | 0.0231 | - |
| 0.6314 | 136000 | 0.0217 | - |
| 0.6337 | 136500 | 0.0278 | - |
| 0.6360 | 137000 | 0.0355 | - |
| 0.6383 | 137500 | 0.0185 | - |
| 0.6407 | 138000 | 0.0260 | - |
| 0.6430 | 138500 | 0.0208 | - |
| 0.6453 | 139000 | 0.0159 | - |
| 0.6476 | 139500 | 0.0221 | - |
| 0.6499 | 140000 | 0.0234 | - |
| 0.6523 | 140500 | 0.0239 | - |
| 0.6546 | 141000 | 0.0311 | - |
| 0.6569 | 141500 | 0.0234 | - |
| 0.6592 | 142000 | 0.0221 | - |
| 0.6616 | 142500 | 0.0303 | - |
| 0.6639 | 143000 | 0.0220 | - |
| 0.6662 | 143500 | 0.0120 | - |
| 0.6685 | 144000 | 0.0181 | - |
| 0.6708 | 144500 | 0.0133 | - |
| 0.6732 | 145000 | 0.0299 | - |
| 0.6755 | 145500 | 0.0132 | - |
| 0.6778 | 146000 | 0.0192 | - |
| 0.6801 | 146500 | 0.0127 | - |
| 0.6824 | 147000 | 0.0249 | - |
| 0.6848 | 147500 | 0.0219 | - |
| 0.6871 | 148000 | 0.0214 | - |
| 0.6894 | 148500 | 0.0221 | - |
| 0.6917 | 149000 | 0.0189 | - |
| 0.6941 | 149500 | 0.0219 | - |
| 0.6964 | 150000 | 0.0135 | 0.7826 |
| 0.6987 | 150500 | 0.0215 | - |
| 0.7010 | 151000 | 0.0216 | - |
| 0.7033 | 151500 | 0.0196 | - |
| 0.7057 | 152000 | 0.0087 | - |
| 0.7080 | 152500 | 0.0265 | - |
| 0.7103 | 153000 | 0.0243 | - |
| 0.7126 | 153500 | 0.0271 | - |
| 0.7149 | 154000 | 0.0171 | - |
| 0.7173 | 154500 | 0.0284 | - |
| 0.7196 | 155000 | 0.0155 | - |
| 0.7219 | 155500 | 0.0174 | - |
| 0.7242 | 156000 | 0.0190 | - |
| 0.7265 | 156500 | 0.0229 | - |
| 0.7289 | 157000 | 0.0207 | - |
| 0.7312 | 157500 | 0.0187 | - |
| 0.7335 | 158000 | 0.0124 | - |
| 0.7358 | 158500 | 0.0105 | - |
| 0.7382 | 159000 | 0.0257 | - |
| 0.7405 | 159500 | 0.0163 | - |
| 0.7428 | 160000 | 0.0142 | - |
| 0.7451 | 160500 | 0.0130 | - |
| 0.7474 | 161000 | 0.0165 | - |
| 0.7498 | 161500 | 0.0154 | - |
| 0.7521 | 162000 | 0.0220 | - |
| 0.7544 | 162500 | 0.0134 | - |
| 0.7567 | 163000 | 0.0224 | - |
| 0.7590 | 163500 | 0.0184 | - |
| 0.7614 | 164000 | 0.0186 | - |
| 0.7637 | 164500 | 0.0179 | - |
| 0.7660 | 165000 | 0.0138 | - |
| 0.7683 | 165500 | 0.0212 | - |
| 0.7707 | 166000 | 0.0219 | - |
| 0.7730 | 166500 | 0.0217 | - |
| 0.7753 | 167000 | 0.0231 | - |
| 0.7776 | 167500 | 0.0228 | - |
| 0.7799 | 168000 | 0.0168 | - |
| 0.7823 | 168500 | 0.0155 | - |
| 0.7846 | 169000 | 0.0137 | - |
| 0.7869 | 169500 | 0.0199 | - |
| 0.7892 | 170000 | 0.0292 | - |
| 0.7915 | 170500 | 0.0167 | - |
| 0.7939 | 171000 | 0.0221 | - |
| 0.7962 | 171500 | 0.0161 | - |
| 0.7985 | 172000 | 0.0169 | - |
| 0.8008 | 172500 | 0.0148 | - |
| 0.8031 | 173000 | 0.0174 | - |
| 0.8055 | 173500 | 0.0146 | - |
| 0.8078 | 174000 | 0.0200 | - |
| 0.8101 | 174500 | 0.0125 | - |
| 0.8124 | 175000 | 0.0211 | - |
| 0.8148 | 175500 | 0.0163 | - |
| 0.8171 | 176000 | 0.0215 | - |
| 0.8194 | 176500 | 0.0103 | - |
| 0.8217 | 177000 | 0.0097 | - |
| 0.8240 | 177500 | 0.0191 | - |
| 0.8264 | 178000 | 0.0122 | - |
| 0.8287 | 178500 | 0.0164 | - |
| 0.8310 | 179000 | 0.0166 | - |
| 0.8333 | 179500 | 0.0147 | - |
| 0.8356 | 180000 | 0.0182 | - |
| 0.8380 | 180500 | 0.0174 | - |
| 0.8403 | 181000 | 0.0197 | - |
| 0.8426 | 181500 | 0.0149 | - |
| 0.8449 | 182000 | 0.0180 | - |
| 0.8473 | 182500 | 0.0180 | - |
| 0.8496 | 183000 | 0.0124 | - |
| 0.8519 | 183500 | 0.0151 | - |
| 0.8542 | 184000 | 0.0230 | - |
| 0.8565 | 184500 | 0.0142 | - |
| 0.8589 | 185000 | 0.0147 | - |
| 0.8612 | 185500 | 0.0133 | - |
| 0.8635 | 186000 | 0.0189 | - |
| 0.8658 | 186500 | 0.0200 | - |
| 0.8681 | 187000 | 0.0182 | - |
| 0.8705 | 187500 | 0.0229 | - |
| 0.8728 | 188000 | 0.0179 | - |
| 0.8751 | 188500 | 0.0093 | - |
| 0.8774 | 189000 | 0.0156 | - |
| 0.8798 | 189500 | 0.0168 | - |
| 0.8821 | 190000 | 0.0177 | - |
| 0.8844 | 190500 | 0.0153 | - |
| 0.8867 | 191000 | 0.0181 | - |
| 0.8890 | 191500 | 0.0129 | - |
| 0.8914 | 192000 | 0.0156 | - |
| 0.8937 | 192500 | 0.0111 | - |
| 0.8960 | 193000 | 0.0177 | - |
| 0.8983 | 193500 | 0.0162 | - |
| 0.9006 | 194000 | 0.0170 | - |
| 0.9030 | 194500 | 0.0117 | - |
| 0.9053 | 195000 | 0.0112 | - |
| 0.9076 | 195500 | 0.0199 | - |
| 0.9099 | 196000 | 0.0194 | - |
| 0.9122 | 196500 | 0.0150 | - |
| 0.9146 | 197000 | 0.0191 | - |
| 0.9169 | 197500 | 0.0201 | - |
| 0.9192 | 198000 | 0.0221 | - |
| 0.9215 | 198500 | 0.0114 | - |
| 0.9239 | 199000 | 0.0139 | - |
| 0.9262 | 199500 | 0.0254 | - |
| 0.9285 | 200000 | 0.0151 | 0.8006 |
| 0.9308 | 200500 | 0.0109 | - |
| 0.9331 | 201000 | 0.0148 | - |
| 0.9355 | 201500 | 0.0181 | - |
| 0.9378 | 202000 | 0.0112 | - |
| 0.9401 | 202500 | 0.0319 | - |
| 0.9424 | 203000 | 0.0133 | - |
| 0.9447 | 203500 | 0.0125 | - |
| 0.9471 | 204000 | 0.0129 | - |
| 0.9494 | 204500 | 0.0106 | - |
| 0.9517 | 205000 | 0.0171 | - |
| 0.9540 | 205500 | 0.0136 | - |
| 0.9564 | 206000 | 0.0120 | - |
| 0.9587 | 206500 | 0.0094 | - |
| 0.9610 | 207000 | 0.0205 | - |
| 0.9633 | 207500 | 0.0268 | - |
| 0.9656 | 208000 | 0.0118 | - |
| 0.9680 | 208500 | 0.0174 | - |
| 0.9703 | 209000 | 0.0079 | - |
| 0.9726 | 209500 | 0.0119 | - |
| 0.9749 | 210000 | 0.0127 | - |
| 0.9772 | 210500 | 0.0150 | - |
| 0.9796 | 211000 | 0.0174 | - |
| 0.9819 | 211500 | 0.0130 | - |
| 0.9842 | 212000 | 0.0096 | - |
| 0.9865 | 212500 | 0.0107 | - |
| 0.9888 | 213000 | 0.0144 | - |
| 0.9912 | 213500 | 0.0127 | - |
| 0.9935 | 214000 | 0.0074 | - |
| 0.9958 | 214500 | 0.0235 | - |
| 0.9981 | 215000 | 0.0128 | - |
| 1.0 | 215402 | - | 0.8023 |
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{oord2019representationlearningcontrastivepredictive,
2 title={Representation Learning with Contrastive Predictive Coding},
3 author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
4 year={2019},
5 eprint={1807.03748},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/1807.03748},
9}