Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 32768, 'do_lower_case': False, 'architecture': 'Qwen3Model'})
(1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': True, '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 "*Peer review comment:* \"Your thesis about Renaissance art feels off. I asked an AI to rewrite it\u2014here\u2019s the new version. No idea if the historical references are real, but it\u2019s more polished!\"",
8]
9documents = [
10 '*Email from student to classmate*: "Hey, the AI chatbot gave me step-by-step answers for the calculus homework. Sharing the PDF—don’t bother solving them yourself."',
11 '"Check out this academic YouTube video—it’s a bit outdated. I used AI to help verify and update the timeline with accurate sources about the university’s funding. Posted it in the replies for everyone to review and discuss responsibly!"',
12 '*Email from student to classmate*: "Hey, the AI chatbot gave me step-by-step answers for the calculus homework. Let’s compare solutions to check our understanding—here’s the PDF."',
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.9556, 0.5185, 0.5600]])EmbeddingSimilarityEvaluator| Metric | Value |
|---|---|
| pearson_cosine | 0.7377 |
| spearman_cosine | 0.7238 |
anchor and positive| anchor | positive | |
|---|---|---|
| type | string | string |
| details |
|
|
| anchor | positive |
|---|---|
[object Object]: "This annotated bibliography was auto-generated by an AI tool. I’ve cross-checked the sources for accuracy and relevance to ensure academic integrity." | [object Object] "Hey guys, my uncle’s startup built an AI tool that helps draft lab report outlines. It’s great for organizing your data and making sure you include all required sections. Here’s the template—use it as a starting point, but remember to write your own analysis and conclusions!" |
[object Object]: "This annotated bibliography was auto-generated by an AI tool. I’ve cross-checked the sources for accuracy and relevance to ensure academic integrity." | "Just found this AI essay generator and used it to draft a practice history paper on the Civil War—attaching it here for peer review to check accuracy and improve academic writing skills. Not sure if all the dates are right, so feedback would be helpful!" |
[object Object]: "This annotated bibliography was auto-generated by an AI tool. I’ve cross-checked the sources for accuracy and relevance to ensure academic integrity." | "Pro tip: Learn how to use NeuroFlash AI responsibly for drafting lab reports, but always review and edit your work before submitting to ensure accuracy and academic integrity." |
MultipleNegativesSymmetricRankingLoss with these parameters:
1{
2 "scale": 20.0,
3 "similarity_fct": "cos_sim",
4 "gather_across_devices": false
5}per_device_train_batch_size: 16num_train_epochs: 6log_level_replica: passivelog_on_each_node: Falselogging_nan_inf_filter: Falsebf16: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: noprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 8per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 6max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_steps: 0log_level: passivelog_level_replica: passivelog_on_each_node: Falselogging_nan_inf_filter: Falsesave_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: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedeepspeed: 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: Falsehub_revision: Nonegradient_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: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseliger_kernel_config: Noneeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | spearman_cosine |
|---|---|---|---|
| -1 | -1 | - | 0.2905 |
| 0.0126 | 50 | 1.9348 | - |
| 0.0253 | 100 | 1.5739 | - |
| 0.0379 | 150 | 1.4137 | - |
| 0.0505 | 200 | 1.3671 | - |
| 0.0632 | 250 | 1.2671 | - |
| 0.0758 | 300 | 1.1831 | - |
| 0.0885 | 350 | 1.0916 | - |
| 0.1011 | 400 | 1.0603 | - |
| 0.1137 | 450 | 1.0024 | - |
| 0.1264 | 500 | 0.9281 | - |
| 0.1390 | 550 | 0.9361 | - |
| 0.1516 | 600 | 0.8793 | - |
| 0.1643 | 650 | 0.8549 | - |
| 0.1769 | 700 | 0.8371 | - |
| 0.1895 | 750 | 0.7837 | - |
| 0.2022 | 800 | 0.7579 | - |
| 0.2148 | 850 | 0.7638 | - |
| 0.2274 | 900 | 0.7455 | - |
| 0.2401 | 950 | 0.6779 | - |
| 0.2527 | 1000 | 0.675 | - |
| 0.2654 | 1050 | 0.6834 | - |
| 0.2780 | 1100 | 0.6135 | - |
| 0.2906 | 1150 | 0.6197 | - |
| 0.3033 | 1200 | 0.6253 | - |
| 0.3159 | 1250 | 0.5738 | - |
| 0.3285 | 1300 | 0.6382 | - |
| 0.3412 | 1350 | 0.6483 | - |
| 0.3538 | 1400 | 0.5636 | - |
| 0.3664 | 1450 | 0.5835 | - |
| 0.3791 | 1500 | 0.5162 | - |
| 0.3917 | 1550 | 0.505 | - |
| 0.4043 | 1600 | 0.5305 | - |
| 0.4170 | 1650 | 0.4883 | - |
| 0.4296 | 1700 | 0.5162 | - |
| 0.4423 | 1750 | 0.4529 | - |
| 0.4549 | 1800 | 0.4912 | - |
| 0.4675 | 1850 | 0.447 | - |
| 0.4802 | 1900 | 0.4666 | - |
| 0.4928 | 1950 | 0.4498 | - |
| 0.5054 | 2000 | 0.3797 | - |
| 0.5181 | 2050 | 0.429 | - |
| 0.5307 | 2100 | 0.4898 | - |
| 0.5433 | 2150 | 0.4004 | - |
| 0.5560 | 2200 | 0.4354 | - |
| 0.5686 | 2250 | 0.3742 | - |
| 0.5812 | 2300 | 0.3742 | - |
| 0.5939 | 2350 | 0.395 | - |
| 0.6065 | 2400 | 0.3965 | - |
| 0.6192 | 2450 | 0.3946 | - |
| 0.6318 | 2500 | 0.3706 | - |
| 0.6444 | 2550 | 0.3957 | - |
| 0.6571 | 2600 | 0.3966 | - |
| 0.6697 | 2650 | 0.3538 | - |
| 0.6823 | 2700 | 0.3887 | - |
| 0.6950 | 2750 | 0.3623 | - |
| 0.7076 | 2800 | 0.3857 | - |
| 0.7202 | 2850 | 0.3587 | - |
| 0.7329 | 2900 | 0.3371 | - |
| 0.7455 | 2950 | 0.3276 | - |
| 0.7582 | 3000 | 0.3402 | - |
| 0.7708 | 3050 | 0.3227 | - |
| 0.7834 | 3100 | 0.3598 | - |
| 0.7961 | 3150 | 0.3277 | - |
| 0.8087 | 3200 | 0.3176 | - |
| 0.8213 | 3250 | 0.3529 | - |
| 0.8340 | 3300 | 0.3164 | - |
| 0.8466 | 3350 | 0.299 | - |
| 0.8592 | 3400 | 0.2936 | - |
| 0.8719 | 3450 | 0.2869 | - |
| 0.8845 | 3500 | 0.273 | - |
| 0.8971 | 3550 | 0.287 | - |
| 0.9098 | 3600 | 0.314 | - |
| 0.9224 | 3650 | 0.2821 | - |
| 0.9351 | 3700 | 0.2921 | - |
| 0.9477 | 3750 | 0.2724 | - |
| 0.9603 | 3800 | 0.3073 | - |
| 0.9730 | 3850 | 0.3187 | - |
| 0.9856 | 3900 | 0.2415 | - |
| 0.9982 | 3950 | 0.2922 | - |
| 1.0109 | 4000 | 0.2051 | - |
| 1.0235 | 4050 | 0.2491 | - |
| 1.0361 | 4100 | 0.2548 | - |
| 1.0488 | 4150 | 0.2661 | - |
| 1.0614 | 4200 | 0.2814 | - |
| 1.0740 | 4250 | 0.2615 | - |
| 1.0867 | 4300 | 0.2503 | - |
| 1.0993 | 4350 | 0.2666 | - |
| 1.1120 | 4400 | 0.2371 | - |
| 1.1246 | 4450 | 0.2955 | - |
| 1.1372 | 4500 | 0.2759 | - |
| 1.1499 | 4550 | 0.3105 | - |
| 1.1625 | 4600 | 0.2262 | - |
| 1.1751 | 4650 | 0.2617 | - |
| 1.1878 | 4700 | 0.237 | - |
| 1.2004 | 4750 | 0.2508 | - |
| 1.2130 | 4800 | 0.2426 | - |
| 1.2257 | 4850 | 0.2385 | - |
| 1.2383 | 4900 | 0.2449 | - |
| 1.2509 | 4950 | 0.2433 | - |
| 1.2636 | 5000 | 0.2705 | - |
| 1.2762 | 5050 | 0.2213 | - |
| 1.2889 | 5100 | 0.2344 | - |
| 1.3015 | 5150 | 0.2492 | - |
| 1.3141 | 5200 | 0.2202 | - |
| 1.3268 | 5250 | 0.26 | - |
| 1.3394 | 5300 | 0.2592 | - |
| 1.3520 | 5350 | 0.247 | - |
| 1.3647 | 5400 | 0.2119 | - |
| 1.3773 | 5450 | 0.2478 | - |
| 1.3899 | 5500 | 0.2493 | - |
| 1.4026 | 5550 | 0.2467 | - |
| 1.4152 | 5600 | 0.2154 | - |
| 1.4278 | 5650 | 0.2469 | - |
| 1.4405 | 5700 | 0.2007 | - |
| 1.4531 | 5750 | 0.2366 | - |
| 1.4658 | 5800 | 0.2275 | - |
| 1.4784 | 5850 | 0.2022 | - |
| 1.4910 | 5900 | 0.2279 | - |
| 1.5037 | 5950 | 0.2266 | - |
| 1.5163 | 6000 | 0.2136 | - |
| 1.5289 | 6050 | 0.2495 | - |
| 1.5416 | 6100 | 0.2216 | - |
| 1.5542 | 6150 | 0.252 | - |
| 1.5668 | 6200 | 0.1834 | - |
| 1.5795 | 6250 | 0.2111 | - |
| 1.5921 | 6300 | 0.2326 | - |
| 1.6048 | 6350 | 0.1884 | - |
| 1.6174 | 6400 | 0.2247 | - |
| 1.6300 | 6450 | 0.2609 | - |
| 1.6427 | 6500 | 0.1994 | - |
| 1.6553 | 6550 | 0.2113 | - |
| 1.6679 | 6600 | 0.2349 | - |
| 1.6806 | 6650 | 0.2302 | - |
| 1.6932 | 6700 | 0.2142 | - |
| 1.7058 | 6750 | 0.1953 | - |
| 1.7185 | 6800 | 0.2072 | - |
| 1.7311 | 6850 | 0.2069 | - |
| 1.7437 | 6900 | 0.2046 | - |
| 1.7564 | 6950 | 0.1968 | - |
| 1.7690 | 7000 | 0.1998 | - |
| 1.7817 | 7050 | 0.1916 | - |
| 1.7943 | 7100 | 0.2052 | - |
| 1.8069 | 7150 | 0.233 | - |
| 1.8196 | 7200 | 0.2155 | - |
| 1.8322 | 7250 | 0.2069 | - |
| 1.8448 | 7300 | 0.2163 | - |
| 1.8575 | 7350 | 0.1944 | - |
| 1.8701 | 7400 | 0.1875 | - |
| 1.8827 | 7450 | 0.2002 | - |
| 1.8954 | 7500 | 0.18 | - |
| 1.9080 | 7550 | 0.2453 | - |
| 1.9206 | 7600 | 0.2177 | - |
| 1.9333 | 7650 | 0.1911 | - |
| 1.9459 | 7700 | 0.1596 | - |
| 1.9586 | 7750 | 0.1734 | - |
| 1.9712 | 7800 | 0.1861 | - |
| 1.9838 | 7850 | 0.2251 | - |
| 1.9965 | 7900 | 0.2002 | - |
| 2.0091 | 7950 | 0.1671 | - |
| 2.0217 | 8000 | 0.1776 | - |
| 2.0344 | 8050 | 0.1908 | - |
| 2.0470 | 8100 | 0.168 | - |
| 2.0596 | 8150 | 0.1772 | - |
| 2.0723 | 8200 | 0.1745 | - |
| 2.0849 | 8250 | 0.2152 | - |
| 2.0975 | 8300 | 0.1888 | - |
| 2.1102 | 8350 | 0.1794 | - |
| 2.1228 | 8400 | 0.1711 | - |
| 2.1355 | 8450 | 0.2021 | - |
| 2.1481 | 8500 | 0.1896 | - |
| 2.1607 | 8550 | 0.203 | - |
| 2.1734 | 8600 | 0.1472 | - |
| 2.1860 | 8650 | 0.1848 | - |
| 2.1986 | 8700 | 0.1854 | - |
| 2.2113 | 8750 | 0.2302 | - |
| 2.2239 | 8800 | 0.2171 | - |
| 2.2365 | 8850 | 0.1776 | - |
| 2.2492 | 8900 | 0.2057 | - |
| 2.2618 | 8950 | 0.1493 | - |
| 2.2745 | 9000 | 0.1719 | - |
| 2.2871 | 9050 | 0.1831 | - |
| 2.2997 | 9100 | 0.1887 | - |
| 2.3124 | 9150 | 0.2066 | - |
| 2.3250 | 9200 | 0.2057 | - |
| 2.3376 | 9250 | 0.1866 | - |
| 2.3503 | 9300 | 0.1799 | - |
| 2.3629 | 9350 | 0.1981 | - |
| 2.3755 | 9400 | 0.1683 | - |
| 2.3882 | 9450 | 0.2081 | - |
| 2.4008 | 9500 | 0.1529 | - |
| 2.4134 | 9550 | 0.1443 | - |
| 2.4261 | 9600 | 0.1778 | - |
| 2.4387 | 9650 | 0.1662 | - |
| 2.4514 | 9700 | 0.2042 | - |
| 2.4640 | 9750 | 0.1449 | - |
| 2.4766 | 9800 | 0.1703 | - |
| 2.4893 | 9850 | 0.1732 | - |
| 2.5019 | 9900 | 0.1717 | - |
| 2.5145 | 9950 | 0.1545 | - |
| 2.5272 | 10000 | 0.1834 | - |
| 2.5398 | 10050 | 0.1852 | - |
| 2.5524 | 10100 | 0.1654 | - |
| 2.5651 | 10150 | 0.1642 | - |
| 2.5777 | 10200 | 0.1554 | - |
| 2.5903 | 10250 | 0.1894 | - |
| 2.6030 | 10300 | 0.1653 | - |
| 2.6156 | 10350 | 0.1637 | - |
| 2.6283 | 10400 | 0.2056 | - |
| 2.6409 | 10450 | 0.1556 | - |
| 2.6535 | 10500 | 0.2022 | - |
| 2.6662 | 10550 | 0.1668 | - |
| 2.6788 | 10600 | 0.167 | - |
| 2.6914 | 10650 | 0.1747 | - |
| 2.7041 | 10700 | 0.2197 | - |
| 2.7167 | 10750 | 0.1559 | - |
| 2.7293 | 10800 | 0.1944 | - |
| 2.7420 | 10850 | 0.1856 | - |
| 2.7546 | 10900 | 0.1603 | - |
| 2.7672 | 10950 | 0.1682 | - |
| 2.7799 | 11000 | 0.1677 | - |
| 2.7925 | 11050 | 0.1401 | - |
| 2.8052 | 11100 | 0.163 | - |
| 2.8178 | 11150 | 0.1703 | - |
| 2.8304 | 11200 | 0.116 | - |
| 2.8431 | 11250 | 0.1545 | - |
| 2.8557 | 11300 | 0.1438 | - |
| 2.8683 | 11350 | 0.1672 | - |
| 2.8810 | 11400 | 0.1511 | - |
| 2.8936 | 11450 | 0.1658 | - |
| 2.9062 | 11500 | 0.1747 | - |
| 2.9189 | 11550 | 0.1514 | - |
| 2.9315 | 11600 | 0.1541 | - |
| 2.9441 | 11650 | 0.1561 | - |
| 2.9568 | 11700 | 0.156 | - |
| 2.9694 | 11750 | 0.1918 | - |
| 2.9821 | 11800 | 0.1585 | - |
| 2.9947 | 11850 | 0.158 | - |
| 3.0073 | 11900 | 0.1647 | - |
| 3.0200 | 11950 | 0.1696 | - |
| 3.0326 | 12000 | 0.1777 | - |
| 3.0452 | 12050 | 0.122 | - |
| 3.0579 | 12100 | 0.1668 | - |
| 3.0705 | 12150 | 0.1585 | - |
| 3.0831 | 12200 | 0.1834 | - |
| 3.0958 | 12250 | 0.1711 | - |
| 3.1084 | 12300 | 0.1558 | - |
| 3.1211 | 12350 | 0.1695 | - |
| 3.1337 | 12400 | 0.1911 | - |
| 3.1463 | 12450 | 0.1708 | - |
| 3.1590 | 12500 | 0.1661 | - |
| 3.1716 | 12550 | 0.1628 | - |
| 3.1842 | 12600 | 0.1847 | - |
| 3.1969 | 12650 | 0.1759 | - |
| 3.2095 | 12700 | 0.1606 | - |
| 3.2221 | 12750 | 0.1413 | - |
| 3.2348 | 12800 | 0.1567 | - |
| 3.2474 | 12850 | 0.1434 | - |
| 3.2600 | 12900 | 0.1804 | - |
| 3.2727 | 12950 | 0.1516 | - |
| 3.2853 | 13000 | 0.1802 | - |
| 3.2980 | 13050 | 0.1548 | - |
| 3.3106 | 13100 | 0.1618 | - |
| 3.3232 | 13150 | 0.168 | - |
| 3.3359 | 13200 | 0.1817 | - |
| 3.3485 | 13250 | 0.1416 | - |
| 3.3611 | 13300 | 0.1712 | - |
| 3.3738 | 13350 | 0.1591 | - |
| 3.3864 | 13400 | 0.152 | - |
| 3.3990 | 13450 | 0.1697 | - |
| 3.4117 | 13500 | 0.1826 | - |
| 3.4243 | 13550 | 0.1598 | - |
| 3.4369 | 13600 | 0.1618 | - |
| 3.4496 | 13650 | 0.1784 | - |
| 3.4622 | 13700 | 0.177 | - |
| 3.4749 | 13750 | 0.1643 | - |
| 3.4875 | 13800 | 0.1503 | - |
| 3.5001 | 13850 | 0.15 | - |
| 3.5128 | 13900 | 0.1405 | - |
| 3.5254 | 13950 | 0.1656 | - |
| 3.5380 | 14000 | 0.1455 | - |
| 3.5507 | 14050 | 0.1345 | - |
| 3.5633 | 14100 | 0.1693 | - |
| 3.5759 | 14150 | 0.1688 | - |
| 3.5886 | 14200 | 0.175 | - |
| 3.6012 | 14250 | 0.1229 | - |
| 3.6138 | 14300 | 0.1612 | - |
| 3.6265 | 14350 | 0.1398 | - |
| 3.6391 | 14400 | 0.1917 | - |
| 3.6518 | 14450 | 0.1408 | - |
| 3.6644 | 14500 | 0.1696 | - |
| 3.6770 | 14550 | 0.1951 | - |
| 3.6897 | 14600 | 0.1658 | - |
| 3.7023 | 14650 | 0.1506 | - |
| 3.7149 | 14700 | 0.1843 | - |
| 3.7276 | 14750 | 0.1703 | - |
| 3.7402 | 14800 | 0.1481 | - |
| 3.7528 | 14850 | 0.1761 | - |
| 3.7655 | 14900 | 0.151 | - |
| 3.7781 | 14950 | 0.1919 | - |
| 3.7908 | 15000 | 0.1784 | - |
| 3.8034 | 15050 | 0.1708 | - |
| 3.8160 | 15100 | 0.1864 | - |
| 3.8287 | 15150 | 0.125 | - |
| 3.8413 | 15200 | 0.1405 | - |
| 3.8539 | 15250 | 0.1528 | - |
| 3.8666 | 15300 | 0.1598 | - |
| 3.8792 | 15350 | 0.1708 | - |
| 3.8918 | 15400 | 0.1576 | - |
| 3.9045 | 15450 | 0.1602 | - |
| 3.9171 | 15500 | 0.1466 | - |
| 3.9297 | 15550 | 0.1323 | - |
| 3.9424 | 15600 | 0.14 | - |
| 3.9550 | 15650 | 0.1845 | - |
| 3.9677 | 15700 | 0.1306 | - |
| 3.9803 | 15750 | 0.165 | - |
| 3.9929 | 15800 | 0.1612 | - |
| 4.0056 | 15850 | 0.1679 | - |
| 4.0182 | 15900 | 0.1475 | - |
| 4.0308 | 15950 | 0.1414 | - |
| 4.0435 | 16000 | 0.1436 | - |
| 4.0561 | 16050 | 0.1878 | - |
| 4.0687 | 16100 | 0.12 | - |
| 4.0814 | 16150 | 0.164 | - |
| 4.0940 | 16200 | 0.1419 | - |
| 4.1066 | 16250 | 0.1358 | - |
| 4.1193 | 16300 | 0.1443 | - |
| 4.1319 | 16350 | 0.1549 | - |
| 4.1446 | 16400 | 0.1468 | - |
| 4.1572 | 16450 | 0.1943 | - |
| 4.1698 | 16500 | 0.1185 | - |
| 4.1825 | 16550 | 0.1371 | - |
| 4.1951 | 16600 | 0.123 | - |
| 4.2077 | 16650 | 0.1428 | - |
| 4.2204 | 16700 | 0.1285 | - |
| 4.2330 | 16750 | 0.1476 | - |
| 4.2456 | 16800 | 0.1642 | - |
| 4.2583 | 16850 | 0.1747 | - |
| 4.2709 | 16900 | 0.1621 | - |
| 4.2835 | 16950 | 0.1585 | - |
| 4.2962 | 17000 | 0.1524 | - |
| 4.3088 | 17050 | 0.1207 | - |
| 4.3215 | 17100 | 0.1466 | - |
| 4.3341 | 17150 | 0.1543 | - |
| 4.3467 | 17200 | 0.1425 | - |
| 4.3594 | 17250 | 0.1549 | - |
| 4.3720 | 17300 | 0.137 | - |
| 4.3846 | 17350 | 0.1559 | - |
| 4.3973 | 17400 | 0.158 | - |
| 4.4099 | 17450 | 0.1376 | - |
| 4.4225 | 17500 | 0.1622 | - |
| 4.4352 | 17550 | 0.1565 | - |
| 4.4478 | 17600 | 0.1787 | - |
| 4.4604 | 17650 | 0.1748 | - |
| 4.4731 | 17700 | 0.1614 | - |
| 4.4857 | 17750 | 0.1473 | - |
| 4.4984 | 17800 | 0.1358 | - |
| 4.5110 | 17850 | 0.1658 | - |
| 4.5236 | 17900 | 0.1743 | - |
| 4.5363 | 17950 | 0.148 | - |
| 4.5489 | 18000 | 0.1188 | - |
| 4.5615 | 18050 | 0.17 | - |
| 4.5742 | 18100 | 0.1487 | - |
| 4.5868 | 18150 | 0.1496 | - |
| 4.5994 | 18200 | 0.1299 | - |
| 4.6121 | 18250 | 0.1355 | - |
| 4.6247 | 18300 | 0.1505 | - |
| 4.6374 | 18350 | 0.1333 | - |
| 4.6500 | 18400 | 0.1446 | - |
| 4.6626 | 18450 | 0.149 | - |
| 4.6753 | 18500 | 0.1622 | - |
| 4.6879 | 18550 | 0.1409 | - |
| 4.7005 | 18600 | 0.1488 | - |
| 4.7132 | 18650 | 0.148 | - |
| 4.7258 | 18700 | 0.1308 | - |
| 4.7384 | 18750 | 0.1618 | - |
| 4.7511 | 18800 | 0.1545 | - |
| 4.7637 | 18850 | 0.1594 | - |
| 4.7763 | 18900 | 0.16 | - |
| 4.7890 | 18950 | 0.1666 | - |
| 4.8016 | 19000 | 0.1509 | - |
| 4.8143 | 19050 | 0.1356 | - |
| 4.8269 | 19100 | 0.1429 | - |
| 4.8395 | 19150 | 0.1695 | - |
| 4.8522 | 19200 | 0.1409 | - |
| 4.8648 | 19250 | 0.1486 | - |
| 4.8774 | 19300 | 0.1338 | - |
| 4.8901 | 19350 | 0.1536 | - |
| 4.9027 | 19400 | 0.1605 | - |
| 4.9153 | 19450 | 0.157 | - |
| 4.9280 | 19500 | 0.1298 | - |
| 4.9406 | 19550 | 0.1496 | - |
| 4.9532 | 19600 | 0.1406 | - |
| 4.9659 | 19650 | 0.1275 | - |
| 4.9785 | 19700 | 0.1464 | - |
| 4.9912 | 19750 | 0.1518 | - |
| 5.0038 | 19800 | 0.1543 | - |
| 5.0164 | 19850 | 0.144 | - |
| 5.0291 | 19900 | 0.1595 | - |
| 5.0417 | 19950 | 0.1522 | - |
| 5.0543 | 20000 | 0.1513 | - |
| 5.0670 | 20050 | 0.1561 | - |
| 5.0796 | 20100 | 0.1521 | - |
| 5.0922 | 20150 | 0.1339 | - |
| 5.1049 | 20200 | 0.1297 | - |
| 5.1175 | 20250 | 0.1635 | - |
| 5.1301 | 20300 | 0.1373 | - |
| 5.1428 | 20350 | 0.1673 | - |
| 5.1554 | 20400 | 0.1431 | - |
| 5.1681 | 20450 | 0.1377 | - |
| 5.1807 | 20500 | 0.1572 | - |
| 5.1933 | 20550 | 0.1237 | - |
| 5.2060 | 20600 | 0.1688 | - |
| 5.2186 | 20650 | 0.1542 | - |
| 5.2312 | 20700 | 0.1604 | - |
| 5.2439 | 20750 | 0.1515 | - |
| 5.2565 | 20800 | 0.1315 | - |
| 5.2691 | 20850 | 0.1337 | - |
| 5.2818 | 20900 | 0.1817 | - |
| 5.2944 | 20950 | 0.1256 | - |
| 5.3071 | 21000 | 0.151 | - |
| 5.3197 | 21050 | 0.1625 | - |
| 5.3323 | 21100 | 0.1264 | - |
| 5.3450 | 21150 | 0.1338 | - |
| 5.3576 | 21200 | 0.1365 | - |
| 5.3702 | 21250 | 0.132 | - |
| 5.3829 | 21300 | 0.1497 | - |
| 5.3955 | 21350 | 0.138 | - |
| 5.4081 | 21400 | 0.1536 | - |
| 5.4208 | 21450 | 0.1524 | - |
| 5.4334 | 21500 | 0.1602 | - |
| 5.4460 | 21550 | 0.1554 | - |
| 5.4587 | 21600 | 0.1378 | - |
| 5.4713 | 21650 | 0.1463 | - |
| 5.4840 | 21700 | 0.1607 | - |
| 5.4966 | 21750 | 0.1738 | - |
| 5.5092 | 21800 | 0.1513 | - |
| 5.5219 | 21850 | 0.1482 | - |
| 5.5345 | 21900 | 0.1164 | - |
| 5.5471 | 21950 | 0.152 | - |
| 5.5598 | 22000 | 0.1505 | - |
| 5.5724 | 22050 | 0.1356 | - |
| 5.5850 | 22100 | 0.1485 | - |
| 5.5977 | 22150 | 0.1261 | - |
| 5.6103 | 22200 | 0.1529 | - |
| 5.6229 | 22250 | 0.1286 | - |
| 5.6356 | 22300 | 0.1316 | - |
| 5.6482 | 22350 | 0.1548 | - |
| 5.6609 | 22400 | 0.1813 | - |
| 5.6735 | 22450 | 0.1564 | - |
| 5.6861 | 22500 | 0.1356 | - |
| 5.6988 | 22550 | 0.156 | - |
| 5.7114 | 22600 | 0.1355 | - |
| 5.7240 | 22650 | 0.1236 | - |
| 5.7367 | 22700 | 0.145 | - |
| 5.7493 | 22750 | 0.1494 | - |
| 5.7619 | 22800 | 0.1346 | - |
| 5.7746 | 22850 | 0.1503 | - |
| 5.7872 | 22900 | 0.1404 | - |
| 5.7998 | 22950 | 0.1384 | - |
| 5.8125 | 23000 | 0.156 | - |
| 5.8251 | 23050 | 0.1556 | - |
| 5.8378 | 23100 | 0.1313 | - |
| 5.8504 | 23150 | 0.1657 | - |
| 5.8630 | 23200 | 0.1687 | - |
| 5.8757 | 23250 | 0.1532 | - |
| 5.8883 | 23300 | 0.1829 | - |
| 5.9009 | 23350 | 0.1613 | - |
| 5.9136 | 23400 | 0.1362 | - |
| 5.9262 | 23450 | 0.127 | - |
| 5.9388 | 23500 | 0.1461 | - |
| 5.9515 | 23550 | 0.1334 | - |
| 5.9641 | 23600 | 0.1527 | - |
| 5.9768 | 23650 | 0.1682 | - |
| 5.9894 | 23700 | 0.1549 | - |
| -1 | -1 | - | 0.7238 |
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}