--- language: - en tags: - sentence-transformers - cross-encoder - reranker - generated_from_trainer - dataset_size:990000 - loss:BinaryCrossEntropyLoss base_model: jhu-clsp/ettin-encoder-32m datasets: - sentence-transformers/msmarco pipeline_tag: text-ranking library_name: sentence-transformers metrics: - map - mrr@10 - ndcg@10 model-index: - name: CrossEncoder based on jhu-clsp/ettin-encoder-32m results: - task: type: cross-encoder-reranking name: Cross Encoder Reranking dataset: name: NanoMSMARCO R100 type: NanoMSMARCO_R100 metrics: - type: map value: 0.5523 name: Map - type: mrr@10 value: 0.5476 name: Mrr@10 - type: ndcg@10 value: 0.6349 name: Ndcg@10 - task: type: cross-encoder-reranking name: Cross Encoder Reranking dataset: name: NanoNFCorpus R100 type: NanoNFCorpus_R100 metrics: - type: map value: 0.3224 name: Map - type: mrr@10 value: 0.5314 name: Mrr@10 - type: ndcg@10 value: 0.3552 name: Ndcg@10 - task: type: cross-encoder-reranking name: Cross Encoder Reranking dataset: name: NanoNQ R100 type: NanoNQ_R100 metrics: - type: map value: 0.6259 name: Map - type: mrr@10 value: 0.6464 name: Mrr@10 - type: ndcg@10 value: 0.6748 name: Ndcg@10 - task: type: cross-encoder-nano-beir name: Cross Encoder Nano BEIR dataset: name: NanoBEIR R100 mean type: NanoBEIR_R100_mean metrics: - type: map value: 0.5002 name: Map - type: mrr@10 value: 0.5751 name: Mrr@10 - type: ndcg@10 value: 0.5549 name: Ndcg@10 --- # CrossEncoder based on jhu-clsp/ettin-encoder-32m This is a [Cross Encoder](https://www.sbert.net/docs/cross_encoder/usage/usage.html) model finetuned from [jhu-clsp/ettin-encoder-32m](https://huggingface.co/jhu-clsp/ettin-encoder-32m) on the [msmarco](https://huggingface.co/datasets/sentence-transformers/msmarco) dataset using the [sentence-transformers](https://www.SBERT.net) library. It computes scores for pairs of texts, which can be used for text reranking and semantic search. ## Model Details ### Model Description - **Model Type:** Cross Encoder - **Base model:** [jhu-clsp/ettin-encoder-32m](https://huggingface.co/jhu-clsp/ettin-encoder-32m) - **Maximum Sequence Length:** 7999 tokens - **Number of Output Labels:** 1 label - **Training Dataset:** - [msmarco](https://huggingface.co/datasets/sentence-transformers/msmarco) - **Language:** en ### Model Sources - **Documentation:** [Sentence Transformers Documentation](https://sbert.net) - **Documentation:** [Cross Encoder Documentation](https://www.sbert.net/docs/cross_encoder/usage/usage.html) - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers) - **Hugging Face:** [Cross Encoders on Hugging Face](https://huggingface.co/models?library=sentence-transformers&other=cross-encoder) ## Usage ### Direct Usage (Sentence Transformers) First install the Sentence Transformers library: ```bash pip install -U sentence-transformers ``` Then you can load this model and run inference. ```python from sentence_transformers import CrossEncoder # Download from the 🤗 Hub model = CrossEncoder("rahulseetharaman/reranker-ettin-encoder-32m-msmarco-bce-1m") # Get scores for pairs of texts pairs = [ ['star voyager cast', 'On August 25, 2012, data from Voyager 1 indicated that it had become the first human-made object to enter interstellar space, traveling further than anyone, or anything, in history. As of 2013, Voyager 1 was moving with a velocity of 17 kilometers per second (11 mi/s) relative to the Sun. Voyager 2 is expected to enter interstellar space by 2016, and its plasma spectrometer should provide the first direct measurements of the density and temperature of the interstellar plasma.'], ['physiologist who conducted the classical conditioning studies with dogs', "Classical Conditioning. The people who fed Pavlov's dogs wore lab coats. Pavlov noticed that the dogs began to drool whenever they saw lab coats, even if there was no food in sight. Pavlov wondered why the dogs salivated at lab coats, and not just at food."], ['is a written check considered a contract', 'If you bought a flat screen TV and are paying it off monthly, thatâ\x80\x99s considered recurring debt because you canâ\x80\x99t easily cancel your payments. If you subscribe to a magazine or have an Internet or phone contract, those obligations are not considered recurring debt because there is no fixed debt amount you are paying down and you can cancel your contract.'], ['definition of an actuator', 'An actuator is a type of motor that is responsible for moving or controlling a mechanism or system. It is operated by a source of energy, typically electric current, hydraulic fluid pressure, or pneumatic pressure, and converts that energy into motion. An actuator is the mechanism by which a control system acts upon an environment. The control system can be simple (a fixed mechanical or electronic system), software-based (e.g. a printer driver, robot control system), a human, or any other input.'], ['what are rheumatoid arthritis symptoms', 'While early RA symptoms can be mimicked by other diseases, the symptoms and signs are very characteristic of rheumatoid disease. The 15 early rheumatoid arthritis symptoms and signs discussed in this article include the following: Fatigue. Joint pain. Joint tenderness. Joint swelling. Joint redness. Joint warmth.'], ] scores = model.predict(pairs) print(scores.shape) # (5,) # Or rank different texts based on similarity to a single text ranks = model.rank( 'star voyager cast', [ 'On August 25, 2012, data from Voyager 1 indicated that it had become the first human-made object to enter interstellar space, traveling further than anyone, or anything, in history. As of 2013, Voyager 1 was moving with a velocity of 17 kilometers per second (11 mi/s) relative to the Sun. Voyager 2 is expected to enter interstellar space by 2016, and its plasma spectrometer should provide the first direct measurements of the density and temperature of the interstellar plasma.', "Classical Conditioning. The people who fed Pavlov's dogs wore lab coats. Pavlov noticed that the dogs began to drool whenever they saw lab coats, even if there was no food in sight. Pavlov wondered why the dogs salivated at lab coats, and not just at food.", 'If you bought a flat screen TV and are paying it off monthly, thatâ\x80\x99s considered recurring debt because you canâ\x80\x99t easily cancel your payments. If you subscribe to a magazine or have an Internet or phone contract, those obligations are not considered recurring debt because there is no fixed debt amount you are paying down and you can cancel your contract.', 'An actuator is a type of motor that is responsible for moving or controlling a mechanism or system. It is operated by a source of energy, typically electric current, hydraulic fluid pressure, or pneumatic pressure, and converts that energy into motion. An actuator is the mechanism by which a control system acts upon an environment. The control system can be simple (a fixed mechanical or electronic system), software-based (e.g. a printer driver, robot control system), a human, or any other input.', 'While early RA symptoms can be mimicked by other diseases, the symptoms and signs are very characteristic of rheumatoid disease. The 15 early rheumatoid arthritis symptoms and signs discussed in this article include the following: Fatigue. Joint pain. Joint tenderness. Joint swelling. Joint redness. Joint warmth.', ] ) # [{'corpus_id': ..., 'score': ...}, {'corpus_id': ..., 'score': ...}, ...] ``` ## Evaluation ### Metrics #### Cross Encoder Reranking * Datasets: `NanoMSMARCO_R100`, `NanoNFCorpus_R100` and `NanoNQ_R100` * Evaluated with [CrossEncoderRerankingEvaluator](https://sbert.net/docs/package_reference/cross_encoder/evaluation.html#sentence_transformers.cross_encoder.evaluation.CrossEncoderRerankingEvaluator) with these parameters: ```json { "at_k": 10, "always_rerank_positives": true } ``` | Metric | NanoMSMARCO_R100 | NanoNFCorpus_R100 | NanoNQ_R100 | |:------------|:---------------------|:---------------------|:---------------------| | map | 0.5523 (+0.0628) | 0.3224 (+0.0615) | 0.6259 (+0.2063) | | mrr@10 | 0.5476 (+0.0701) | 0.5314 (+0.0316) | 0.6464 (+0.2197) | | **ndcg@10** | **0.6349 (+0.0945)** | **0.3552 (+0.0301)** | **0.6748 (+0.1741)** | #### Cross Encoder Nano BEIR * Dataset: `NanoBEIR_R100_mean` * Evaluated with [CrossEncoderNanoBEIREvaluator](https://sbert.net/docs/package_reference/cross_encoder/evaluation.html#sentence_transformers.cross_encoder.evaluation.CrossEncoderNanoBEIREvaluator) with these parameters: ```json { "dataset_names": [ "msmarco", "nfcorpus", "nq" ], "rerank_k": 100, "at_k": 10, "always_rerank_positives": true } ``` | Metric | Value | |:------------|:---------------------| | map | 0.5002 (+0.1102) | | mrr@10 | 0.5751 (+0.1071) | | **ndcg@10** | **0.5549 (+0.0996)** | ## Training Details ### Training Dataset #### msmarco * Dataset: [msmarco](https://huggingface.co/datasets/sentence-transformers/msmarco) at [9e329ed](https://huggingface.co/datasets/sentence-transformers/msmarco/tree/9e329ed2e649c9d37b0d91dd6b764ff6fe671d83) * Size: 990,000 training samples * Columns: query, passage, and score * Approximate statistics based on the first 1000 samples: | | query | passage | score | |:--------|:------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------|:--------------------------------------------------------------| | type | string | string | float | | details | | | | * Samples: | query | passage | score | |:----------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------| | can a urinalysis detect kidney disease | A urinalysis is a simple, inexpensive test that can help to detect problems in many parts of the body, including the kidneys, urinary tract, heart, and liver. A urinalysis can include a visual examination of a urine sample, microscopic examination, and a dipstick test. | 1.0 | | what is the hamsa hand | Answer by Mikereptile. Confidence votes 60. It takes about 6-8 weeks to heal, depending on the type of injury sustained. (Keep the finger as still as you can !!!!). When broken place the hand in ice cold water for about 5 min.s then take it and wrap the whole hand in a soft wrap (anything that is a soft colth) .Take the wraped hand and hold it above or upright to the head.hen broken place the hand in ice cold water for about 5 min.s then take it and wrap the whole hand in a soft wrap (anything that is a soft colth) . Take the wraped hand and hold it above or upright to the head. | 0.0 | | was white tiger in the us zoo killed? | Cubby is a male American black bear born at the Chahinkapa Zoo in North Dakota. He was transferred to the Hogle Zoo (Salt Lake City, Utah) in 2003, and arrived at the Oregon Zoo in May 2010. | 0.0 | * Loss: [BinaryCrossEntropyLoss](https://sbert.net/docs/package_reference/cross_encoder/losses.html#binarycrossentropyloss) with these parameters: ```json { "activation_fn": "torch.nn.modules.linear.Identity", "pos_weight": null } ``` ### Evaluation Dataset #### msmarco * Dataset: [msmarco](https://huggingface.co/datasets/sentence-transformers/msmarco) at [9e329ed](https://huggingface.co/datasets/sentence-transformers/msmarco/tree/9e329ed2e649c9d37b0d91dd6b764ff6fe671d83) * Size: 10,000 evaluation samples * Columns: query, passage, and score * Approximate statistics based on the first 1000 samples: | | query | passage | score | |:--------|:------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------|:---------------------------------------------------------------| | type | string | string | float | | details | | | | * Samples: | query | passage | score | |:-------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------| | star voyager cast | On August 25, 2012, data from Voyager 1 indicated that it had become the first human-made object to enter interstellar space, traveling further than anyone, or anything, in history. As of 2013, Voyager 1 was moving with a velocity of 17 kilometers per second (11 mi/s) relative to the Sun. Voyager 2 is expected to enter interstellar space by 2016, and its plasma spectrometer should provide the first direct measurements of the density and temperature of the interstellar plasma. | 0.0 | | physiologist who conducted the classical conditioning studies with dogs | Classical Conditioning. The people who fed Pavlov's dogs wore lab coats. Pavlov noticed that the dogs began to drool whenever they saw lab coats, even if there was no food in sight. Pavlov wondered why the dogs salivated at lab coats, and not just at food. | 0.0 | | is a written check considered a contract | If you bought a flat screen TV and are paying it off monthly, that’s considered recurring debt because you can’t easily cancel your payments. If you subscribe to a magazine or have an Internet or phone contract, those obligations are not considered recurring debt because there is no fixed debt amount you are paying down and you can cancel your contract. | 0.0 | * Loss: [BinaryCrossEntropyLoss](https://sbert.net/docs/package_reference/cross_encoder/losses.html#binarycrossentropyloss) with these parameters: ```json { "activation_fn": "torch.nn.modules.linear.Identity", "pos_weight": null } ``` ### Training Hyperparameters #### Non-Default Hyperparameters - `eval_strategy`: steps - `per_device_train_batch_size`: 16 - `per_device_eval_batch_size`: 16 - `learning_rate`: 2e-05 - `num_train_epochs`: 4 - `warmup_ratio`: 0.1 - `seed`: 12 - `bf16`: True - `dataloader_num_workers`: 4 - `load_best_model_at_end`: True #### All Hyperparameters
Click to expand - `overwrite_output_dir`: False - `do_predict`: False - `eval_strategy`: steps - `prediction_loss_only`: True - `per_device_train_batch_size`: 16 - `per_device_eval_batch_size`: 16 - `per_gpu_train_batch_size`: None - `per_gpu_eval_batch_size`: None - `gradient_accumulation_steps`: 1 - `eval_accumulation_steps`: None - `torch_empty_cache_steps`: None - `learning_rate`: 2e-05 - `weight_decay`: 0.0 - `adam_beta1`: 0.9 - `adam_beta2`: 0.999 - `adam_epsilon`: 1e-08 - `max_grad_norm`: 1.0 - `num_train_epochs`: 4 - `max_steps`: -1 - `lr_scheduler_type`: linear - `lr_scheduler_kwargs`: {} - `warmup_ratio`: 0.1 - `warmup_steps`: 0 - `log_level`: passive - `log_level_replica`: warning - `log_on_each_node`: True - `logging_nan_inf_filter`: True - `save_safetensors`: True - `save_on_each_node`: False - `save_only_model`: False - `restore_callback_states_from_checkpoint`: False - `no_cuda`: False - `use_cpu`: False - `use_mps_device`: False - `seed`: 12 - `data_seed`: None - `jit_mode_eval`: False - `use_ipex`: False - `bf16`: True - `fp16`: False - `fp16_opt_level`: O1 - `half_precision_backend`: auto - `bf16_full_eval`: False - `fp16_full_eval`: False - `tf32`: None - `local_rank`: 0 - `ddp_backend`: None - `tpu_num_cores`: None - `tpu_metrics_debug`: False - `debug`: [] - `dataloader_drop_last`: False - `dataloader_num_workers`: 4 - `dataloader_prefetch_factor`: None - `past_index`: -1 - `disable_tqdm`: False - `remove_unused_columns`: True - `label_names`: None - `load_best_model_at_end`: True - `ignore_data_skip`: False - `fsdp`: [] - `fsdp_min_num_params`: 0 - `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False} - `fsdp_transformer_layer_cls_to_wrap`: None - `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None} - `deepspeed`: None - `label_smoothing_factor`: 0.0 - `optim`: adamw_torch - `optim_args`: None - `adafactor`: False - `group_by_length`: False - `length_column_name`: length - `ddp_find_unused_parameters`: None - `ddp_bucket_cap_mb`: None - `ddp_broadcast_buffers`: False - `dataloader_pin_memory`: True - `dataloader_persistent_workers`: False - `skip_memory_metrics`: True - `use_legacy_prediction_loop`: False - `push_to_hub`: False - `resume_from_checkpoint`: None - `hub_model_id`: None - `hub_strategy`: every_save - `hub_private_repo`: None - `hub_always_push`: False - `hub_revision`: None - `gradient_checkpointing`: False - `gradient_checkpointing_kwargs`: None - `include_inputs_for_metrics`: False - `include_for_metrics`: [] - `eval_do_concat_batches`: True - `fp16_backend`: auto - `push_to_hub_model_id`: None - `push_to_hub_organization`: None - `mp_parameters`: - `auto_find_batch_size`: False - `full_determinism`: False - `torchdynamo`: None - `ray_scope`: last - `ddp_timeout`: 1800 - `torch_compile`: False - `torch_compile_backend`: None - `torch_compile_mode`: None - `include_tokens_per_second`: False - `include_num_input_tokens_seen`: False - `neftune_noise_alpha`: None - `optim_target_modules`: None - `batch_eval_metrics`: False - `eval_on_start`: False - `use_liger_kernel`: False - `liger_kernel_config`: None - `eval_use_gather_object`: False - `average_tokens_across_devices`: False - `prompts`: None - `batch_sampler`: batch_sampler - `multi_dataset_batch_sampler`: proportional - `router_mapping`: {} - `learning_rate_mapping`: {}
### Training Logs
Click to expand | Epoch | Step | Training Loss | Validation Loss | NanoMSMARCO_R100_ndcg@10 | NanoNFCorpus_R100_ndcg@10 | NanoNQ_R100_ndcg@10 | NanoBEIR_R100_mean_ndcg@10 | |:----------:|:---------:|:-------------:|:---------------:|:------------------------:|:-------------------------:|:--------------------:|:--------------------------:| | -1 | -1 | - | - | 0.0376 (-0.5028) | 0.2284 (-0.0966) | 0.0585 (-0.4422) | 0.1082 (-0.3472) | | 0.0000 | 1 | 1.6831 | - | - | - | - | - | | 0.0162 | 1000 | 0.946 | 0.7387 | 0.0642 (-0.4762) | 0.2391 (-0.0859) | 0.0911 (-0.4096) | 0.1315 (-0.3239) | | 0.0323 | 2000 | 0.6867 | 0.6406 | 0.1321 (-0.4083) | 0.2328 (-0.0922) | 0.1483 (-0.3523) | 0.1711 (-0.2843) | | 0.0485 | 3000 | 0.6047 | 0.5003 | 0.3432 (-0.1972) | 0.2722 (-0.0528) | 0.3863 (-0.1143) | 0.3339 (-0.1215) | | 0.0646 | 4000 | 0.4048 | 0.3595 | 0.5433 (+0.0028) | 0.3289 (+0.0039) | 0.4715 (-0.0291) | 0.4479 (-0.0075) | | 0.0808 | 5000 | 0.3345 | 0.3273 | 0.6054 (+0.0650) | 0.3569 (+0.0319) | 0.5031 (+0.0024) | 0.4885 (+0.0331) | | 0.0970 | 6000 | 0.3072 | 0.3013 | 0.5893 (+0.0488) | 0.3498 (+0.0248) | 0.5360 (+0.0353) | 0.4917 (+0.0363) | | 0.1131 | 7000 | 0.2957 | 0.2830 | 0.5973 (+0.0569) | 0.3390 (+0.0140) | 0.5407 (+0.0401) | 0.4924 (+0.0370) | | 0.1293 | 8000 | 0.2886 | 0.2902 | 0.6109 (+0.0704) | 0.3382 (+0.0131) | 0.5642 (+0.0635) | 0.5044 (+0.0490) | | 0.1455 | 9000 | 0.2789 | 0.2588 | 0.6186 (+0.0782) | 0.3536 (+0.0285) | 0.5619 (+0.0613) | 0.5114 (+0.0560) | | 0.1616 | 10000 | 0.2709 | 0.2568 | 0.5699 (+0.0295) | 0.3529 (+0.0278) | 0.5582 (+0.0575) | 0.4936 (+0.0383) | | 0.1778 | 11000 | 0.2637 | 0.2597 | 0.5935 (+0.0531) | 0.3611 (+0.0361) | 0.6105 (+0.1098) | 0.5217 (+0.0663) | | 0.1939 | 12000 | 0.2638 | 0.2384 | 0.5991 (+0.0587) | 0.3747 (+0.0496) | 0.5732 (+0.0726) | 0.5157 (+0.0603) | | 0.2101 | 13000 | 0.2541 | 0.2449 | 0.6195 (+0.0791) | 0.3570 (+0.0320) | 0.5868 (+0.0862) | 0.5211 (+0.0657) | | 0.2263 | 14000 | 0.2491 | 0.2671 | 0.6310 (+0.0906) | 0.3592 (+0.0341) | 0.5845 (+0.0839) | 0.5249 (+0.0695) | | 0.2424 | 15000 | 0.2497 | 0.2644 | 0.5642 (+0.0238) | 0.3650 (+0.0400) | 0.6227 (+0.1221) | 0.5173 (+0.0619) | | 0.2586 | 16000 | 0.248 | 0.2474 | 0.6170 (+0.0766) | 0.3448 (+0.0197) | 0.5822 (+0.0816) | 0.5147 (+0.0593) | | 0.2747 | 17000 | 0.235 | 0.2423 | 0.5883 (+0.0478) | 0.3683 (+0.0433) | 0.6096 (+0.1090) | 0.5221 (+0.0667) | | 0.2909 | 18000 | 0.2425 | 0.2403 | 0.6030 (+0.0626) | 0.3430 (+0.0180) | 0.6153 (+0.1146) | 0.5204 (+0.0651) | | 0.3071 | 19000 | 0.2404 | 0.2140 | 0.5787 (+0.0383) | 0.3438 (+0.0187) | 0.5914 (+0.0908) | 0.5046 (+0.0493) | | 0.3232 | 20000 | 0.2394 | 0.2513 | 0.6079 (+0.0675) | 0.3328 (+0.0077) | 0.6144 (+0.1137) | 0.5184 (+0.0630) | | 0.3394 | 21000 | 0.2379 | 0.2258 | 0.6291 (+0.0887) | 0.3510 (+0.0259) | 0.6345 (+0.1338) | 0.5382 (+0.0828) | | 0.3556 | 22000 | 0.2311 | 0.2229 | 0.6003 (+0.0599) | 0.3525 (+0.0274) | 0.6397 (+0.1390) | 0.5308 (+0.0754) | | 0.3717 | 23000 | 0.2361 | 0.2362 | 0.5972 (+0.0568) | 0.3408 (+0.0157) | 0.6414 (+0.1408) | 0.5265 (+0.0711) | | 0.3879 | 24000 | 0.2351 | 0.2397 | 0.6248 (+0.0844) | 0.3182 (-0.0068) | 0.6434 (+0.1428) | 0.5288 (+0.0735) | | 0.4040 | 25000 | 0.2222 | 0.2121 | 0.6376 (+0.0972) | 0.3353 (+0.0103) | 0.6637 (+0.1631) | 0.5455 (+0.0902) | | 0.4202 | 26000 | 0.2345 | 0.2215 | 0.6315 (+0.0911) | 0.3252 (+0.0002) | 0.6508 (+0.1501) | 0.5358 (+0.0804) | | 0.4364 | 27000 | 0.2335 | 0.2084 | 0.5966 (+0.0562) | 0.3301 (+0.0051) | 0.6524 (+0.1517) | 0.5264 (+0.0710) | | 0.4525 | 28000 | 0.2245 | 0.1983 | 0.6099 (+0.0694) | 0.3265 (+0.0015) | 0.6154 (+0.1147) | 0.5173 (+0.0619) | | 0.4687 | 29000 | 0.2233 | 0.2021 | 0.5984 (+0.0580) | 0.3270 (+0.0019) | 0.6094 (+0.1088) | 0.5116 (+0.0562) | | 0.4848 | 30000 | 0.2121 | 0.2019 | 0.6120 (+0.0716) | 0.3333 (+0.0082) | 0.6350 (+0.1344) | 0.5268 (+0.0714) | | 0.5010 | 31000 | 0.2298 | 0.2135 | 0.5597 (+0.0193) | 0.3604 (+0.0353) | 0.6425 (+0.1418) | 0.5209 (+0.0655) | | 0.5172 | 32000 | 0.2148 | 0.2173 | 0.5884 (+0.0480) | 0.3450 (+0.0200) | 0.6156 (+0.1150) | 0.5164 (+0.0610) | | 0.5333 | 33000 | 0.2124 | 0.2108 | 0.6074 (+0.0669) | 0.3484 (+0.0233) | 0.5917 (+0.0910) | 0.5158 (+0.0604) | | 0.5495 | 34000 | 0.2117 | 0.2117 | 0.6169 (+0.0765) | 0.3396 (+0.0146) | 0.6176 (+0.1170) | 0.5247 (+0.0693) | | 0.5657 | 35000 | 0.2143 | 0.2242 | 0.5850 (+0.0445) | 0.3244 (-0.0006) | 0.6301 (+0.1295) | 0.5132 (+0.0578) | | 0.5818 | 36000 | 0.2079 | 0.1960 | 0.5949 (+0.0545) | 0.3452 (+0.0201) | 0.6328 (+0.1321) | 0.5243 (+0.0689) | | 0.5980 | 37000 | 0.2099 | 0.1898 | 0.5967 (+0.0562) | 0.3470 (+0.0219) | 0.6411 (+0.1404) | 0.5282 (+0.0729) | | 0.6141 | 38000 | 0.2031 | 0.2047 | 0.5913 (+0.0508) | 0.3380 (+0.0130) | 0.6693 (+0.1687) | 0.5329 (+0.0775) | | 0.6303 | 39000 | 0.208 | 0.2215 | 0.6101 (+0.0697) | 0.3325 (+0.0074) | 0.6437 (+0.1430) | 0.5288 (+0.0734) | | 0.6465 | 40000 | 0.2146 | 0.2017 | 0.5878 (+0.0474) | 0.3357 (+0.0107) | 0.6639 (+0.1633) | 0.5291 (+0.0738) | | 0.6626 | 41000 | 0.2039 | 0.2134 | 0.5984 (+0.0579) | 0.3353 (+0.0103) | 0.6670 (+0.1663) | 0.5336 (+0.0782) | | 0.6788 | 42000 | 0.2043 | 0.1934 | 0.5971 (+0.0567) | 0.3128 (-0.0123) | 0.6539 (+0.1533) | 0.5213 (+0.0659) | | 0.6949 | 43000 | 0.2023 | 0.2073 | 0.6328 (+0.0924) | 0.3159 (-0.0092) | 0.6547 (+0.1541) | 0.5345 (+0.0791) | | 0.7111 | 44000 | 0.1982 | 0.1844 | 0.5992 (+0.0588) | 0.3338 (+0.0088) | 0.6244 (+0.1238) | 0.5191 (+0.0638) | | 0.7273 | 45000 | 0.2039 | 0.1910 | 0.6147 (+0.0742) | 0.3193 (-0.0057) | 0.6771 (+0.1764) | 0.5370 (+0.0816) | | 0.7434 | 46000 | 0.1985 | 0.2058 | 0.5991 (+0.0587) | 0.3285 (+0.0035) | 0.6460 (+0.1454) | 0.5246 (+0.0692) | | 0.7596 | 47000 | 0.1985 | 0.1880 | 0.6382 (+0.0978) | 0.3154 (-0.0096) | 0.6378 (+0.1372) | 0.5305 (+0.0751) | | 0.7758 | 48000 | 0.1992 | 0.1888 | 0.6227 (+0.0823) | 0.2983 (-0.0268) | 0.6192 (+0.1186) | 0.5134 (+0.0580) | | 0.7919 | 49000 | 0.1934 | 0.2042 | 0.6436 (+0.1032) | 0.3010 (-0.0241) | 0.6531 (+0.1525) | 0.5326 (+0.0772) | | 0.8081 | 50000 | 0.2104 | 0.2104 | 0.6198 (+0.0794) | 0.3269 (+0.0018) | 0.6636 (+0.1630) | 0.5368 (+0.0814) | | 0.8242 | 51000 | 0.2038 | 0.1947 | 0.6246 (+0.0842) | 0.3190 (-0.0060) | 0.6516 (+0.1509) | 0.5318 (+0.0764) | | 0.8404 | 52000 | 0.197 | 0.1861 | 0.6506 (+0.1101) | 0.3174 (-0.0077) | 0.6922 (+0.1915) | 0.5534 (+0.0980) | | **0.8566** | **53000** | **0.1972** | **0.1806** | **0.6349 (+0.0945)** | **0.3552 (+0.0301)** | **0.6748 (+0.1741)** | **0.5549 (+0.0996)** | | 0.8727 | 54000 | 0.1955 | 0.2082 | 0.6372 (+0.0968) | 0.3168 (-0.0082) | 0.6713 (+0.1707) | 0.5418 (+0.0864) | | 0.8889 | 55000 | 0.2017 | 0.2077 | 0.6055 (+0.0651) | 0.3290 (+0.0040) | 0.6552 (+0.1546) | 0.5299 (+0.0745) | | 0.9051 | 56000 | 0.2008 | 0.1858 | 0.6233 (+0.0829) | 0.3353 (+0.0102) | 0.6708 (+0.1702) | 0.5431 (+0.0878) | | 0.9212 | 57000 | 0.199 | 0.1935 | 0.6277 (+0.0873) | 0.3184 (-0.0067) | 0.6533 (+0.1527) | 0.5331 (+0.0778) | | 0.9374 | 58000 | 0.1947 | 0.1712 | 0.6182 (+0.0778) | 0.3230 (-0.0021) | 0.6431 (+0.1424) | 0.5281 (+0.0727) | | 0.9535 | 59000 | 0.1816 | 0.1944 | 0.6182 (+0.0778) | 0.3209 (-0.0041) | 0.6278 (+0.1272) | 0.5223 (+0.0669) | | 0.9697 | 60000 | 0.1967 | 0.1821 | 0.6269 (+0.0865) | 0.3292 (+0.0042) | 0.6612 (+0.1605) | 0.5391 (+0.0837) | | 0.9859 | 61000 | 0.1891 | 0.1981 | 0.6273 (+0.0868) | 0.3237 (-0.0014) | 0.6479 (+0.1472) | 0.5329 (+0.0776) | | 1.0020 | 62000 | 0.1878 | 0.2092 | 0.6175 (+0.0770) | 0.3239 (-0.0012) | 0.6713 (+0.1707) | 0.5375 (+0.0822) | | 1.0182 | 63000 | 0.1587 | 0.2108 | 0.6416 (+0.1012) | 0.3044 (-0.0206) | 0.6394 (+0.1388) | 0.5285 (+0.0731) | | 1.0343 | 64000 | 0.1605 | 0.2211 | 0.6516 (+0.1112) | 0.3322 (+0.0072) | 0.6513 (+0.1507) | 0.5451 (+0.0897) | | 1.0505 | 65000 | 0.167 | 0.2167 | 0.6207 (+0.0803) | 0.3171 (-0.0080) | 0.6676 (+0.1669) | 0.5351 (+0.0797) | | 1.0667 | 66000 | 0.1591 | 0.2261 | 0.6432 (+0.1027) | 0.3139 (-0.0112) | 0.6399 (+0.1393) | 0.5323 (+0.0769) | | 1.0828 | 67000 | 0.1518 | 0.2122 | 0.6204 (+0.0800) | 0.3352 (+0.0102) | 0.6248 (+0.1242) | 0.5268 (+0.0714) | | 1.0990 | 68000 | 0.1593 | 0.2088 | 0.6178 (+0.0774) | 0.3267 (+0.0016) | 0.6194 (+0.1188) | 0.5213 (+0.0659) | | 1.1152 | 69000 | 0.1526 | 0.2478 | 0.6344 (+0.0940) | 0.3245 (-0.0005) | 0.6289 (+0.1283) | 0.5293 (+0.0739) | | 1.1313 | 70000 | 0.1679 | 0.2013 | 0.6263 (+0.0859) | 0.3554 (+0.0303) | 0.6556 (+0.1549) | 0.5457 (+0.0904) | | 1.1475 | 71000 | 0.1533 | 0.2355 | 0.6296 (+0.0892) | 0.3365 (+0.0115) | 0.6469 (+0.1463) | 0.5377 (+0.0823) | | 1.1636 | 72000 | 0.1588 | 0.2231 | 0.5915 (+0.0511) | 0.3290 (+0.0040) | 0.6488 (+0.1481) | 0.5231 (+0.0677) | | 1.1798 | 73000 | 0.1535 | 0.2534 | 0.6100 (+0.0696) | 0.3396 (+0.0145) | 0.6339 (+0.1332) | 0.5278 (+0.0725) | | 1.1960 | 74000 | 0.1555 | 0.2277 | 0.5717 (+0.0313) | 0.3291 (+0.0041) | 0.6538 (+0.1531) | 0.5182 (+0.0628) | | 1.2121 | 75000 | 0.1587 | 0.2090 | 0.5771 (+0.0367) | 0.3088 (-0.0163) | 0.6704 (+0.1698) | 0.5188 (+0.0634) | | 1.2283 | 76000 | 0.1582 | 0.2107 | 0.5748 (+0.0344) | 0.2981 (-0.0270) | 0.6435 (+0.1428) | 0.5054 (+0.0501) | | 1.2444 | 77000 | 0.1632 | 0.2233 | 0.5461 (+0.0057) | 0.3009 (-0.0242) | 0.6661 (+0.1655) | 0.5044 (+0.0490) | | 1.2606 | 78000 | 0.159 | 0.2210 | 0.5687 (+0.0283) | 0.3432 (+0.0182) | 0.6562 (+0.1556) | 0.5227 (+0.0673) | | 1.2768 | 79000 | 0.1581 | 0.2100 | 0.5732 (+0.0328) | 0.3156 (-0.0095) | 0.6657 (+0.1651) | 0.5182 (+0.0628) | | 1.2929 | 80000 | 0.1626 | 0.1937 | 0.5975 (+0.0571) | 0.3195 (-0.0056) | 0.6557 (+0.1551) | 0.5242 (+0.0688) | | 1.3091 | 81000 | 0.1605 | 0.2003 | 0.5792 (+0.0388) | 0.3228 (-0.0023) | 0.6731 (+0.1725) | 0.5250 (+0.0697) | | 1.3253 | 82000 | 0.1569 | 0.1958 | 0.6097 (+0.0692) | 0.3154 (-0.0097) | 0.6773 (+0.1766) | 0.5341 (+0.0787) | | 1.3414 | 83000 | 0.1559 | 0.2057 | 0.6162 (+0.0757) | 0.3302 (+0.0051) | 0.6498 (+0.1491) | 0.5320 (+0.0767) | | 1.3576 | 84000 | 0.1603 | 0.1941 | 0.5801 (+0.0397) | 0.3260 (+0.0010) | 0.6708 (+0.1701) | 0.5256 (+0.0703) | | 1.3737 | 85000 | 0.1516 | 0.2149 | 0.5698 (+0.0294) | 0.3482 (+0.0232) | 0.6777 (+0.1770) | 0.5319 (+0.0765) | | 1.3899 | 86000 | 0.1579 | 0.1896 | 0.5867 (+0.0463) | 0.3225 (-0.0025) | 0.6557 (+0.1550) | 0.5216 (+0.0663) | | 1.4061 | 87000 | 0.16 | 0.1931 | 0.5917 (+0.0513) | 0.3272 (+0.0022) | 0.6474 (+0.1468) | 0.5221 (+0.0668) | | 1.4222 | 88000 | 0.1555 | 0.2010 | 0.6068 (+0.0664) | 0.3345 (+0.0095) | 0.6706 (+0.1699) | 0.5373 (+0.0819) | | 1.4384 | 89000 | 0.1516 | 0.2053 | 0.6046 (+0.0642) | 0.3353 (+0.0102) | 0.6626 (+0.1620) | 0.5342 (+0.0788) | | 1.4545 | 90000 | 0.1475 | 0.2202 | 0.6079 (+0.0675) | 0.3475 (+0.0224) | 0.6449 (+0.1443) | 0.5334 (+0.0781) | | 1.4707 | 91000 | 0.1634 | 0.2006 | 0.5911 (+0.0507) | 0.3279 (+0.0028) | 0.6690 (+0.1683) | 0.5293 (+0.0739) | | 1.4869 | 92000 | 0.1607 | 0.2203 | 0.5736 (+0.0332) | 0.3422 (+0.0172) | 0.6348 (+0.1342) | 0.5169 (+0.0615) | | 1.5030 | 93000 | 0.1544 | 0.2040 | 0.5922 (+0.0517) | 0.3261 (+0.0010) | 0.6436 (+0.1430) | 0.5206 (+0.0652) | | 1.5192 | 94000 | 0.157 | 0.2014 | 0.5830 (+0.0426) | 0.3124 (-0.0126) | 0.6728 (+0.1722) | 0.5228 (+0.0674) | | 1.5354 | 95000 | 0.1528 | 0.1992 | 0.5837 (+0.0432) | 0.3159 (-0.0091) | 0.6405 (+0.1398) | 0.5133 (+0.0580) | | 1.5515 | 96000 | 0.1577 | 0.1974 | 0.5806 (+0.0402) | 0.3300 (+0.0049) | 0.6307 (+0.1301) | 0.5138 (+0.0584) | | 1.5677 | 97000 | 0.1603 | 0.1936 | 0.6153 (+0.0749) | 0.3134 (-0.0117) | 0.6539 (+0.1533) | 0.5275 (+0.0721) | | 1.5838 | 98000 | 0.1534 | 0.1767 | 0.5806 (+0.0402) | 0.3256 (+0.0005) | 0.6602 (+0.1596) | 0.5222 (+0.0668) | | 1.6 | 99000 | 0.1482 | 0.1981 | 0.6010 (+0.0606) | 0.3257 (+0.0006) | 0.6569 (+0.1562) | 0.5278 (+0.0725) | | 1.6162 | 100000 | 0.1521 | 0.2007 | 0.6183 (+0.0779) | 0.3508 (+0.0257) | 0.6377 (+0.1370) | 0.5356 (+0.0802) | | 1.6323 | 101000 | 0.1554 | 0.1908 | 0.6290 (+0.0885) | 0.3144 (-0.0106) | 0.6204 (+0.1198) | 0.5213 (+0.0659) | | 1.6485 | 102000 | 0.1527 | 0.2249 | 0.6075 (+0.0671) | 0.3122 (-0.0128) | 0.6154 (+0.1148) | 0.5117 (+0.0563) | | 1.6646 | 103000 | 0.1516 | 0.2234 | 0.6493 (+0.1089) | 0.3100 (-0.0151) | 0.6522 (+0.1515) | 0.5371 (+0.0818) | | 1.6808 | 104000 | 0.1499 | 0.1975 | 0.6021 (+0.0616) | 0.3151 (-0.0099) | 0.6206 (+0.1200) | 0.5126 (+0.0572) | | 1.6970 | 105000 | 0.1546 | 0.1831 | 0.6054 (+0.0650) | 0.3368 (+0.0117) | 0.6443 (+0.1437) | 0.5288 (+0.0735) | | 1.7131 | 106000 | 0.1483 | 0.2044 | 0.5959 (+0.0555) | 0.3316 (+0.0066) | 0.6119 (+0.1113) | 0.5132 (+0.0578) | | 1.7293 | 107000 | 0.1551 | 0.1932 | 0.6007 (+0.0603) | 0.3084 (-0.0167) | 0.6597 (+0.1590) | 0.5229 (+0.0676) | | 1.7455 | 108000 | 0.1448 | 0.2083 | 0.6064 (+0.0660) | 0.3171 (-0.0080) | 0.6284 (+0.1277) | 0.5173 (+0.0619) | | 1.7616 | 109000 | 0.1569 | 0.1805 | 0.6181 (+0.0776) | 0.3280 (+0.0030) | 0.6437 (+0.1431) | 0.5299 (+0.0746) | | 1.7778 | 110000 | 0.1466 | 0.1946 | 0.6004 (+0.0599) | 0.3031 (-0.0220) | 0.6517 (+0.1511) | 0.5184 (+0.0630) | | 1.7939 | 111000 | 0.1491 | 0.2119 | 0.6172 (+0.0768) | 0.3281 (+0.0031) | 0.6372 (+0.1365) | 0.5275 (+0.0721) | | 1.8101 | 112000 | 0.1484 | 0.1830 | 0.6019 (+0.0614) | 0.3082 (-0.0168) | 0.6341 (+0.1334) | 0.5147 (+0.0594) | | 1.8263 | 113000 | 0.1478 | 0.1968 | 0.5897 (+0.0492) | 0.2842 (-0.0409) | 0.6235 (+0.1229) | 0.4991 (+0.0437) | | 1.8424 | 114000 | 0.1507 | 0.2062 | 0.6192 (+0.0788) | 0.3158 (-0.0093) | 0.6495 (+0.1489) | 0.5282 (+0.0728) | | 1.8586 | 115000 | 0.1505 | 0.1784 | 0.5873 (+0.0469) | 0.3054 (-0.0196) | 0.6021 (+0.1014) | 0.4983 (+0.0429) | | 1.8747 | 116000 | 0.1442 | 0.2081 | 0.6081 (+0.0677) | 0.3306 (+0.0056) | 0.6450 (+0.1444) | 0.5279 (+0.0726) | | 1.8909 | 117000 | 0.1464 | 0.1976 | 0.6083 (+0.0679) | 0.3306 (+0.0055) | 0.6305 (+0.1298) | 0.5231 (+0.0678) | | 1.9071 | 118000 | 0.1449 | 0.2022 | 0.5960 (+0.0555) | 0.3197 (-0.0054) | 0.5944 (+0.0937) | 0.5033 (+0.0480) | | 1.9232 | 119000 | 0.1627 | 0.1825 | 0.5932 (+0.0528) | 0.3308 (+0.0058) | 0.6088 (+0.1082) | 0.5110 (+0.0556) | | 1.9394 | 120000 | 0.1453 | 0.2021 | 0.6111 (+0.0707) | 0.3343 (+0.0093) | 0.6525 (+0.1519) | 0.5327 (+0.0773) | | 1.9556 | 121000 | 0.1545 | 0.1909 | 0.5963 (+0.0559) | 0.3510 (+0.0260) | 0.6550 (+0.1544) | 0.5341 (+0.0788) | | 1.9717 | 122000 | 0.1475 | 0.1971 | 0.6103 (+0.0699) | 0.3431 (+0.0181) | 0.6347 (+0.1341) | 0.5294 (+0.0740) | | 1.9879 | 123000 | 0.1546 | 0.1941 | 0.5649 (+0.0245) | 0.3249 (-0.0001) | 0.6196 (+0.1190) | 0.5032 (+0.0478) | | 2.0040 | 124000 | 0.1327 | 0.2416 | 0.5549 (+0.0145) | 0.3265 (+0.0014) | 0.6381 (+0.1374) | 0.5065 (+0.0511) | | 2.0202 | 125000 | 0.087 | 0.2267 | 0.5510 (+0.0105) | 0.3134 (-0.0117) | 0.6178 (+0.1171) | 0.4940 (+0.0387) | | 2.0364 | 126000 | 0.0876 | 0.2422 | 0.5363 (-0.0041) | 0.3247 (-0.0003) | 0.5970 (+0.0964) | 0.4860 (+0.0306) | | 2.0525 | 127000 | 0.095 | 0.2344 | 0.5543 (+0.0139) | 0.3177 (-0.0073) | 0.5938 (+0.0931) | 0.4886 (+0.0332) | | 2.0687 | 128000 | 0.0954 | 0.2393 | 0.5673 (+0.0269) | 0.3051 (-0.0199) | 0.6119 (+0.1113) | 0.4948 (+0.0394) | | 2.0848 | 129000 | 0.1009 | 0.2297 | 0.5434 (+0.0029) | 0.2990 (-0.0261) | 0.6195 (+0.1188) | 0.4873 (+0.0319) | | 2.1010 | 130000 | 0.0931 | 0.2363 | 0.5655 (+0.0250) | 0.3050 (-0.0200) | 0.5963 (+0.0957) | 0.4889 (+0.0336) | | 2.1172 | 131000 | 0.0953 | 0.2465 | 0.5935 (+0.0531) | 0.3317 (+0.0067) | 0.6175 (+0.1169) | 0.5143 (+0.0589) | | 2.1333 | 132000 | 0.0958 | 0.2584 | 0.5400 (-0.0004) | 0.3174 (-0.0077) | 0.6032 (+0.1025) | 0.4868 (+0.0315) | | 2.1495 | 133000 | 0.0891 | 0.2424 | 0.5525 (+0.0121) | 0.3273 (+0.0023) | 0.6127 (+0.1120) | 0.4975 (+0.0421) | | 2.1657 | 134000 | 0.0948 | 0.2382 | 0.5295 (-0.0110) | 0.3082 (-0.0169) | 0.6011 (+0.1004) | 0.4796 (+0.0242) | | 2.1818 | 135000 | 0.0948 | 0.2482 | 0.5556 (+0.0152) | 0.3124 (-0.0127) | 0.5871 (+0.0865) | 0.4850 (+0.0297) | | 2.1980 | 136000 | 0.0958 | 0.2393 | 0.5589 (+0.0185) | 0.3095 (-0.0156) | 0.6114 (+0.1108) | 0.4933 (+0.0379) | | 2.2141 | 137000 | 0.0931 | 0.2399 | 0.5514 (+0.0109) | 0.3145 (-0.0105) | 0.5878 (+0.0872) | 0.4846 (+0.0292) | | 2.2303 | 138000 | 0.1024 | 0.2500 | 0.5546 (+0.0141) | 0.2938 (-0.0312) | 0.6178 (+0.1171) | 0.4887 (+0.0333) | | 2.2465 | 139000 | 0.0962 | 0.2321 | 0.5256 (-0.0149) | 0.3064 (-0.0186) | 0.5982 (+0.0975) | 0.4767 (+0.0214) | | 2.2626 | 140000 | 0.0943 | 0.2607 | 0.5039 (-0.0365) | 0.3149 (-0.0102) | 0.6542 (+0.1535) | 0.4910 (+0.0356) | | 2.2788 | 141000 | 0.0894 | 0.2501 | 0.5357 (-0.0047) | 0.3131 (-0.0119) | 0.6438 (+0.1432) | 0.4975 (+0.0422) | | 2.2949 | 142000 | 0.0997 | 0.2513 | 0.5227 (-0.0177) | 0.3140 (-0.0110) | 0.6385 (+0.1378) | 0.4917 (+0.0364) | | 2.3111 | 143000 | 0.0981 | 0.2347 | 0.5375 (-0.0030) | 0.3210 (-0.0041) | 0.6496 (+0.1490) | 0.5027 (+0.0473) | | 2.3273 | 144000 | 0.0958 | 0.2460 | 0.5275 (-0.0129) | 0.3199 (-0.0051) | 0.6163 (+0.1157) | 0.4879 (+0.0326) | | 2.3434 | 145000 | 0.0937 | 0.2455 | 0.5625 (+0.0221) | 0.3306 (+0.0055) | 0.6125 (+0.1119) | 0.5019 (+0.0465) | | 2.3596 | 146000 | 0.0952 | 0.2268 | 0.5469 (+0.0065) | 0.3255 (+0.0005) | 0.6482 (+0.1475) | 0.5069 (+0.0515) | | 2.3758 | 147000 | 0.0942 | 0.2471 | 0.5381 (-0.0023) | 0.3258 (+0.0008) | 0.6160 (+0.1154) | 0.4933 (+0.0379) | | 2.3919 | 148000 | 0.0947 | 0.2447 | 0.5271 (-0.0134) | 0.3175 (-0.0076) | 0.5825 (+0.0818) | 0.4757 (+0.0203) | | 2.4081 | 149000 | 0.0888 | 0.2455 | 0.5608 (+0.0204) | 0.3236 (-0.0014) | 0.6354 (+0.1347) | 0.5066 (+0.0512) | | 2.4242 | 150000 | 0.0876 | 0.2575 | 0.5701 (+0.0296) | 0.3097 (-0.0154) | 0.6056 (+0.1049) | 0.4951 (+0.0397) | | 2.4404 | 151000 | 0.0937 | 0.2358 | 0.5669 (+0.0265) | 0.3227 (-0.0023) | 0.6055 (+0.1048) | 0.4984 (+0.0430) | | 2.4566 | 152000 | 0.1004 | 0.2296 | 0.5885 (+0.0481) | 0.3230 (-0.0021) | 0.6017 (+0.1011) | 0.5044 (+0.0490) | | 2.4727 | 153000 | 0.0981 | 0.2281 | 0.5794 (+0.0390) | 0.3222 (-0.0028) | 0.6089 (+0.1082) | 0.5035 (+0.0481) | | 2.4889 | 154000 | 0.0989 | 0.2402 | 0.5603 (+0.0199) | 0.3344 (+0.0094) | 0.6090 (+0.1083) | 0.5012 (+0.0459) | | 2.5051 | 155000 | 0.0967 | 0.2357 | 0.5560 (+0.0156) | 0.3213 (-0.0037) | 0.5902 (+0.0895) | 0.4892 (+0.0338) | | 2.5212 | 156000 | 0.0869 | 0.2311 | 0.5542 (+0.0137) | 0.3202 (-0.0049) | 0.5859 (+0.0853) | 0.4867 (+0.0314) | | 2.5374 | 157000 | 0.0943 | 0.2617 | 0.5311 (-0.0093) | 0.3061 (-0.0189) | 0.6079 (+0.1072) | 0.4817 (+0.0263) | | 2.5535 | 158000 | 0.0943 | 0.2485 | 0.5582 (+0.0178) | 0.3118 (-0.0133) | 0.6013 (+0.1007) | 0.4904 (+0.0351) | | 2.5697 | 159000 | 0.093 | 0.2397 | 0.5391 (-0.0013) | 0.3035 (-0.0216) | 0.6105 (+0.1098) | 0.4844 (+0.0290) | | 2.5859 | 160000 | 0.0967 | 0.2433 | 0.5833 (+0.0428) | 0.3085 (-0.0165) | 0.5913 (+0.0907) | 0.4944 (+0.0390) | | 2.6020 | 161000 | 0.0945 | 0.2270 | 0.5773 (+0.0369) | 0.3065 (-0.0185) | 0.6197 (+0.1191) | 0.5012 (+0.0458) | | 2.6182 | 162000 | 0.0908 | 0.2422 | 0.5900 (+0.0496) | 0.3027 (-0.0224) | 0.6192 (+0.1186) | 0.5040 (+0.0486) | | 2.6343 | 163000 | 0.0996 | 0.2342 | 0.5613 (+0.0209) | 0.2823 (-0.0427) | 0.6150 (+0.1143) | 0.4862 (+0.0308) | | 2.6505 | 164000 | 0.0888 | 0.2321 | 0.5787 (+0.0383) | 0.3059 (-0.0191) | 0.5814 (+0.0808) | 0.4887 (+0.0333) | | 2.6667 | 165000 | 0.0937 | 0.2371 | 0.6027 (+0.0623) | 0.3080 (-0.0170) | 0.6174 (+0.1168) | 0.5094 (+0.0540) | | 2.6828 | 166000 | 0.1051 | 0.2238 | 0.5557 (+0.0152) | 0.2997 (-0.0254) | 0.6019 (+0.1013) | 0.4857 (+0.0304) | | 2.6990 | 167000 | 0.0995 | 0.2182 | 0.5709 (+0.0305) | 0.3040 (-0.0210) | 0.5971 (+0.0964) | 0.4907 (+0.0353) | | 2.7152 | 168000 | 0.0923 | 0.2260 | 0.5559 (+0.0154) | 0.3107 (-0.0143) | 0.5983 (+0.0976) | 0.4883 (+0.0329) | | 2.7313 | 169000 | 0.0979 | 0.2378 | 0.5530 (+0.0126) | 0.3107 (-0.0144) | 0.5809 (+0.0802) | 0.4815 (+0.0262) | | 2.7475 | 170000 | 0.1 | 0.2303 | 0.5636 (+0.0232) | 0.3142 (-0.0108) | 0.5992 (+0.0985) | 0.4923 (+0.0370) | | 2.7636 | 171000 | 0.0914 | 0.2438 | 0.5846 (+0.0442) | 0.3217 (-0.0033) | 0.5761 (+0.0755) | 0.4941 (+0.0388) | | 2.7798 | 172000 | 0.0932 | 0.2418 | 0.5614 (+0.0210) | 0.3134 (-0.0116) | 0.5685 (+0.0678) | 0.4811 (+0.0257) | | 2.7960 | 173000 | 0.0981 | 0.2411 | 0.5514 (+0.0110) | 0.3019 (-0.0231) | 0.5499 (+0.0492) | 0.4677 (+0.0124) | | 2.8121 | 174000 | 0.0964 | 0.2438 | 0.5223 (-0.0182) | 0.3181 (-0.0069) | 0.5659 (+0.0652) | 0.4687 (+0.0134) | | 2.8283 | 175000 | 0.1011 | 0.2413 | 0.5356 (-0.0049) | 0.3033 (-0.0217) | 0.5757 (+0.0750) | 0.4715 (+0.0162) | | 2.8444 | 176000 | 0.0991 | 0.2318 | 0.5676 (+0.0272) | 0.3076 (-0.0174) | 0.5758 (+0.0751) | 0.4837 (+0.0283) | | 2.8606 | 177000 | 0.0971 | 0.2231 | 0.5454 (+0.0050) | 0.3254 (+0.0004) | 0.5973 (+0.0967) | 0.4894 (+0.0340) | | 2.8768 | 178000 | 0.0959 | 0.2332 | 0.5567 (+0.0163) | 0.3233 (-0.0018) | 0.5677 (+0.0670) | 0.4826 (+0.0272) | | 2.8929 | 179000 | 0.0924 | 0.2366 | 0.5614 (+0.0209) | 0.3191 (-0.0059) | 0.5835 (+0.0829) | 0.4880 (+0.0326) | | 2.9091 | 180000 | 0.0935 | 0.2403 | 0.5156 (-0.0248) | 0.3131 (-0.0119) | 0.5690 (+0.0684) | 0.4659 (+0.0105) | | 2.9253 | 181000 | 0.1035 | 0.2236 | 0.5553 (+0.0149) | 0.3112 (-0.0138) | 0.6001 (+0.0994) | 0.4889 (+0.0335) | | 2.9414 | 182000 | 0.0948 | 0.2255 | 0.5480 (+0.0076) | 0.3110 (-0.0140) | 0.5931 (+0.0925) | 0.4841 (+0.0287) | | 2.9576 | 183000 | 0.0919 | 0.2339 | 0.5244 (-0.0160) | 0.3000 (-0.0250) | 0.5995 (+0.0988) | 0.4746 (+0.0193) | | 2.9737 | 184000 | 0.0865 | 0.2410 | 0.5426 (+0.0022) | 0.3004 (-0.0246) | 0.5875 (+0.0868) | 0.4768 (+0.0215) | | 2.9899 | 185000 | 0.0956 | 0.2146 | 0.5125 (-0.0280) | 0.2922 (-0.0329) | 0.5860 (+0.0854) | 0.4636 (+0.0082) | | 3.0061 | 186000 | 0.0769 | 0.2544 | 0.5050 (-0.0354) | 0.2897 (-0.0354) | 0.5773 (+0.0766) | 0.4573 (+0.0019) | | 3.0222 | 187000 | 0.0463 | 0.2851 | 0.5031 (-0.0373) | 0.3042 (-0.0208) | 0.5752 (+0.0745) | 0.4608 (+0.0055) | | 3.0384 | 188000 | 0.0478 | 0.2833 | 0.5089 (-0.0316) | 0.3013 (-0.0238) | 0.5554 (+0.0548) | 0.4552 (-0.0002) | | 3.0545 | 189000 | 0.0488 | 0.2756 | 0.5112 (-0.0292) | 0.2974 (-0.0276) | 0.5289 (+0.0282) | 0.4458 (-0.0095) | | 3.0707 | 190000 | 0.0496 | 0.2813 | 0.5184 (-0.0221) | 0.3085 (-0.0165) | 0.5515 (+0.0509) | 0.4595 (+0.0041) | | 3.0869 | 191000 | 0.0399 | 0.3097 | 0.5302 (-0.0102) | 0.3115 (-0.0135) | 0.5476 (+0.0469) | 0.4631 (+0.0077) | | 3.1030 | 192000 | 0.0418 | 0.2998 | 0.5011 (-0.0393) | 0.2989 (-0.0262) | 0.5395 (+0.0389) | 0.4465 (-0.0089) | | 3.1192 | 193000 | 0.0394 | 0.2863 | 0.5014 (-0.0391) | 0.2910 (-0.0341) | 0.5463 (+0.0456) | 0.4462 (-0.0092) | | 3.1354 | 194000 | 0.0365 | 0.3153 | 0.5164 (-0.0240) | 0.2990 (-0.0260) | 0.4992 (-0.0014) | 0.4382 (-0.0171) | | 3.1515 | 195000 | 0.0466 | 0.2964 | 0.5206 (-0.0198) | 0.2997 (-0.0254) | 0.5118 (+0.0112) | 0.4440 (-0.0113) | | 3.1677 | 196000 | 0.043 | 0.2912 | 0.5358 (-0.0047) | 0.3098 (-0.0152) | 0.5415 (+0.0409) | 0.4624 (+0.0070) | | 3.1838 | 197000 | 0.0403 | 0.3002 | 0.5216 (-0.0188) | 0.3014 (-0.0237) | 0.5245 (+0.0238) | 0.4491 (-0.0062) | | 3.2 | 198000 | 0.044 | 0.3196 | 0.4997 (-0.0408) | 0.3106 (-0.0144) | 0.5167 (+0.0160) | 0.4423 (-0.0131) | | 3.2162 | 199000 | 0.0508 | 0.2750 | 0.4905 (-0.0499) | 0.2990 (-0.0261) | 0.5023 (+0.0017) | 0.4306 (-0.0248) | | 3.2323 | 200000 | 0.0445 | 0.3028 | 0.4805 (-0.0599) | 0.3108 (-0.0142) | 0.5299 (+0.0293) | 0.4404 (-0.0149) | | 3.2485 | 201000 | 0.0385 | 0.3092 | 0.4775 (-0.0630) | 0.2986 (-0.0264) | 0.5176 (+0.0170) | 0.4312 (-0.0241) | | 3.2646 | 202000 | 0.0426 | 0.2960 | 0.4979 (-0.0425) | 0.2982 (-0.0269) | 0.5357 (+0.0350) | 0.4439 (-0.0115) | | 3.2808 | 203000 | 0.0436 | 0.3053 | 0.4905 (-0.0500) | 0.2942 (-0.0309) | 0.5316 (+0.0309) | 0.4387 (-0.0166) | | 3.2970 | 204000 | 0.0448 | 0.3026 | 0.4880 (-0.0524) | 0.3004 (-0.0246) | 0.5243 (+0.0236) | 0.4376 (-0.0178) | | 3.3131 | 205000 | 0.0413 | 0.2858 | 0.5072 (-0.0333) | 0.2889 (-0.0362) | 0.5323 (+0.0317) | 0.4428 (-0.0126) | | 3.3293 | 206000 | 0.0376 | 0.3292 | 0.4721 (-0.0683) | 0.2961 (-0.0289) | 0.4819 (-0.0188) | 0.4167 (-0.0387) | | 3.3455 | 207000 | 0.0474 | 0.2786 | 0.4447 (-0.0957) | 0.2877 (-0.0374) | 0.5087 (+0.0080) | 0.4137 (-0.0417) | | 3.3616 | 208000 | 0.0427 | 0.3022 | 0.4706 (-0.0698) | 0.2873 (-0.0377) | 0.5216 (+0.0210) | 0.4265 (-0.0289) | | 3.3778 | 209000 | 0.0477 | 0.2997 | 0.4489 (-0.0915) | 0.2941 (-0.0309) | 0.5076 (+0.0070) | 0.4169 (-0.0385) | | 3.3939 | 210000 | 0.0385 | 0.3162 | 0.4816 (-0.0589) | 0.2863 (-0.0388) | 0.5259 (+0.0253) | 0.4312 (-0.0241) | | 3.4101 | 211000 | 0.0507 | 0.3079 | 0.4577 (-0.0827) | 0.2819 (-0.0431) | 0.5051 (+0.0045) | 0.4149 (-0.0404) | | 3.4263 | 212000 | 0.0442 | 0.3031 | 0.4706 (-0.0698) | 0.2859 (-0.0391) | 0.5169 (+0.0163) | 0.4245 (-0.0309) | | 3.4424 | 213000 | 0.0479 | 0.2909 | 0.4844 (-0.0560) | 0.2828 (-0.0422) | 0.5226 (+0.0219) | 0.4299 (-0.0254) | | 3.4586 | 214000 | 0.0447 | 0.2814 | 0.4975 (-0.0429) | 0.2776 (-0.0475) | 0.5382 (+0.0376) | 0.4378 (-0.0176) | | 3.4747 | 215000 | 0.0444 | 0.2932 | 0.4678 (-0.0726) | 0.2761 (-0.0490) | 0.5254 (+0.0248) | 0.4231 (-0.0323) | | 3.4909 | 216000 | 0.0461 | 0.3037 | 0.5049 (-0.0355) | 0.2782 (-0.0468) | 0.5377 (+0.0371) | 0.4403 (-0.0151) | | 3.5071 | 217000 | 0.04 | 0.2994 | 0.4827 (-0.0578) | 0.2759 (-0.0491) | 0.5368 (+0.0362) | 0.4318 (-0.0236) | | 3.5232 | 218000 | 0.0496 | 0.2896 | 0.4827 (-0.0577) | 0.2891 (-0.0360) | 0.5332 (+0.0326) | 0.4350 (-0.0204) | | 3.5394 | 219000 | 0.0344 | 0.3134 | 0.4764 (-0.0640) | 0.2876 (-0.0375) | 0.5257 (+0.0251) | 0.4299 (-0.0255) | | 3.5556 | 220000 | 0.0438 | 0.3014 | 0.4866 (-0.0538) | 0.2835 (-0.0415) | 0.5332 (+0.0325) | 0.4344 (-0.0209) | | 3.5717 | 221000 | 0.0432 | 0.3179 | 0.4776 (-0.0628) | 0.2917 (-0.0333) | 0.5329 (+0.0323) | 0.4341 (-0.0213) | | 3.5879 | 222000 | 0.0445 | 0.3089 | 0.4791 (-0.0613) | 0.2944 (-0.0307) | 0.5316 (+0.0310) | 0.4351 (-0.0203) | | 3.6040 | 223000 | 0.0431 | 0.3031 | 0.4792 (-0.0612) | 0.2913 (-0.0337) | 0.5327 (+0.0321) | 0.4344 (-0.0210) | | 3.6202 | 224000 | 0.0401 | 0.3103 | 0.4905 (-0.0500) | 0.2895 (-0.0356) | 0.5418 (+0.0412) | 0.4406 (-0.0148) | | 3.6364 | 225000 | 0.0482 | 0.2867 | 0.4843 (-0.0561) | 0.2834 (-0.0416) | 0.5330 (+0.0323) | 0.4336 (-0.0218) | | 3.6525 | 226000 | 0.0444 | 0.3082 | 0.4776 (-0.0628) | 0.2791 (-0.0460) | 0.5329 (+0.0323) | 0.4299 (-0.0255) | | 3.6687 | 227000 | 0.0433 | 0.3070 | 0.4736 (-0.0669) | 0.2746 (-0.0504) | 0.5290 (+0.0283) | 0.4257 (-0.0297) | | 3.6848 | 228000 | 0.0434 | 0.2980 | 0.4918 (-0.0486) | 0.2807 (-0.0443) | 0.5371 (+0.0365) | 0.4365 (-0.0188) | | 3.7010 | 229000 | 0.0458 | 0.2886 | 0.4890 (-0.0514) | 0.2781 (-0.0470) | 0.5262 (+0.0255) | 0.4311 (-0.0243) | | 3.7172 | 230000 | 0.0404 | 0.3024 | 0.4862 (-0.0543) | 0.2783 (-0.0467) | 0.5177 (+0.0171) | 0.4274 (-0.0280) | | 3.7333 | 231000 | 0.0423 | 0.3015 | 0.4896 (-0.0509) | 0.2800 (-0.0451) | 0.5224 (+0.0218) | 0.4307 (-0.0247) | | 3.7495 | 232000 | 0.0449 | 0.2892 | 0.4793 (-0.0612) | 0.2833 (-0.0417) | 0.5286 (+0.0279) | 0.4304 (-0.0250) | | 3.7657 | 233000 | 0.0369 | 0.3068 | 0.4865 (-0.0539) | 0.2865 (-0.0386) | 0.5279 (+0.0272) | 0.4336 (-0.0218) | | 3.7818 | 234000 | 0.0409 | 0.3124 | 0.4890 (-0.0514) | 0.2855 (-0.0395) | 0.5244 (+0.0238) | 0.4330 (-0.0224) | | 3.7980 | 235000 | 0.046 | 0.2984 | 0.4746 (-0.0658) | 0.2840 (-0.0411) | 0.5148 (+0.0142) | 0.4245 (-0.0309) | | 3.8141 | 236000 | 0.0425 | 0.3011 | 0.4722 (-0.0682) | 0.2851 (-0.0399) | 0.5105 (+0.0098) | 0.4226 (-0.0328) | | 3.8303 | 237000 | 0.0464 | 0.2959 | 0.4735 (-0.0669) | 0.2849 (-0.0401) | 0.5111 (+0.0104) | 0.4232 (-0.0322) | | 3.8465 | 238000 | 0.0459 | 0.2921 | 0.4784 (-0.0620) | 0.2860 (-0.0391) | 0.5122 (+0.0115) | 0.4255 (-0.0298) | | 3.8626 | 239000 | 0.0435 | 0.2989 | 0.4705 (-0.0699) | 0.2851 (-0.0399) | 0.5269 (+0.0262) | 0.4275 (-0.0279) | | 3.8788 | 240000 | 0.0431 | 0.2978 | 0.4738 (-0.0666) | 0.2860 (-0.0391) | 0.5277 (+0.0271) | 0.4292 (-0.0262) | | 3.8949 | 241000 | 0.0396 | 0.2966 | 0.4871 (-0.0533) | 0.2845 (-0.0405) | 0.5277 (+0.0271) | 0.4331 (-0.0223) | | 3.9111 | 242000 | 0.0431 | 0.2881 | 0.5020 (-0.0384) | 0.2845 (-0.0406) | 0.5223 (+0.0217) | 0.4363 (-0.0191) | | 3.9273 | 243000 | 0.0368 | 0.2918 | 0.5002 (-0.0402) | 0.2834 (-0.0417) | 0.5185 (+0.0178) | 0.4340 (-0.0213) | | 3.9434 | 244000 | 0.0343 | 0.2968 | 0.4889 (-0.0515) | 0.2802 (-0.0448) | 0.5269 (+0.0262) | 0.4320 (-0.0234) | | 3.9596 | 245000 | 0.0409 | 0.2951 | 0.4952 (-0.0453) | 0.2790 (-0.0460) | 0.5247 (+0.0241) | 0.4330 (-0.0224) | | 3.9758 | 246000 | 0.0481 | 0.2917 | 0.4952 (-0.0453) | 0.2820 (-0.0430) | 0.5189 (+0.0183) | 0.4320 (-0.0233) | | 3.9919 | 247000 | 0.0448 | 0.2921 | 0.4929 (-0.0475) | 0.2828 (-0.0422) | 0.5186 (+0.0180) | 0.4314 (-0.0239) | | -1 | -1 | - | - | 0.6349 (+0.0945) | 0.3552 (+0.0301) | 0.6748 (+0.1741) | 0.5549 (+0.0996) | * The bold row denotes the saved checkpoint.
### Framework Versions - Python: 3.10.18 - Sentence Transformers: 5.0.0 - Transformers: 4.56.0.dev0 - PyTorch: 2.7.1+cu126 - Accelerate: 1.9.0 - Datasets: 4.0.0 - Tokenizers: 0.21.4 ## Citation ### BibTeX #### Sentence Transformers ```bibtex @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", } ```