all-MiniLM-L6-v66-pair_score

This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2 on the pairs_with_scores_v53 dataset. It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False, 'architecture': 'BertModel'})
  (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
  (2): Normalize()
)

Usage

Direct Usage (Sentence Transformers)

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 = [
    'colorful marble tote',
    'baygon crawling insects killer 400m baygon ant killer baygon insect killer baygon roach killer roaches killer baygon bug killer baygon crawling bugs killer',
    'linen kaftan inlaid with indian silk breathable kaftan inlaid with indian linen galebaya inlaid with indian a linen kaftan adorned with indian silk combines elegance with luxury. this kaftan features linen fabric providing comfort and breathability ideal for warmer days along with indian silk detailing that adds a touch of opulence and beauty. the indian silk embellishments may adorn the edges neckline or as elegant motifs throughout the kaftan. this garment is perfect for special occasions or times when a sophisticated and distinctive look is desired.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000, -0.0657,  0.0665],
#         [-0.0657,  1.0000, -0.0702],
#         [ 0.0665, -0.0702,  1.0000]])

Training Details

Training Dataset

pairs_with_scores_v53

  • Dataset: pairs_with_scores_v53 at 5056e53
  • Size: 12,818,275 training samples
  • Columns: sentence1, sentence2, and score
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 score
    type string string float
    details
    • min: 4 tokens
    • mean: 7.46 tokens
    • max: 23 tokens
    • min: 4 tokens
    • mean: 58.78 tokens
    • max: 256 tokens
    • min: 0.0
    • mean: 0.27
    • max: 1.0
  • Samples:
    sentence1 sentence2 score
    casting creme gloss hair color dabur vatika burgundy henna dabur vatika henna 1.0
    wooden wick candle twist drink - apple - 0.2 l apple soda twist and drink soda twist - apple twist and soda 0.0
    hugo boss pure edt vision invincible edt 100 ml tonka bean eau de toilette long lasting eau de toilette invincible eau de toilette vision eau de toilette introducing vision invincible edt 100ml a luxurious fragrance that will awaken your senses and leave you feeling invincible. this exquisite scent is a medley of italian lemon ceylon cinnamon dry amber tonka bean vanilla and moss creating a luscious and irresistible aroma. indulge in the splendor of this long-lasting fragrance perfect for any occasion. the top notes of italy lemon bergamot and green apple will captivate your senses while the heart notes of dry amber tonka beans and plum add a touch of warmth and depth. as the fragrance settles the base notes of vanilla amber moss and dry wood will leave a lingering and alluring scent that will make you feel c 1.0
  • Loss: CoSENTLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "pairwise_cos_sim"
    }
    

Evaluation Dataset

pairs_with_scores_v53

  • Dataset: pairs_with_scores_v53 at 5056e53
  • Size: 64,414 evaluation samples
  • Columns: sentence1, sentence2, and score
  • Approximate statistics based on the first 1000 samples:
    sentence1 sentence2 score
    type string string float
    details
    • min: 4 tokens
    • mean: 7.43 tokens
    • max: 22 tokens
    • min: 4 tokens
    • mean: 57.88 tokens
    • max: 256 tokens
    • min: 0.0
    • mean: 0.25
    • max: 1.0
  • Samples:
    sentence1 sentence2 score
    kaya wood dinnerware vascomedra 600mg 30/f.c.tab 0.0
    mothers day bracelet round circle bracelet men bracelet 1.0
    rubber sole slipper switchbot curtain u rail smart home robot curtain motorized robot electrical home tool curtain automated robot electrical curtain rail home automation device switchbot curtain is a smart home robot that makes your existing curtain motorized and automated with 30 second installation schedule and touch go. u rail is required. 0.0
  • Loss: CoSENTLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "pairwise_cos_sim"
    }
    

Training Hyperparameters

Non-Default Hyperparameters

  • eval_strategy: steps
  • per_device_train_batch_size: 64
  • per_device_eval_batch_size: 64
  • learning_rate: 2e-05
  • num_train_epochs: 1
  • warmup_ratio: 0.1
  • fp16: 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: 64
  • per_device_eval_batch_size: 64
  • 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: 1
  • 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: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: False
  • fp16: True
  • 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: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • 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
0.0005 100 6.5005 -
0.0010 200 6.8196 -
0.0015 300 6.6551 -
0.0020 400 6.7104 -
0.0025 500 6.2763 -
0.0030 600 6.5017 -
0.0035 700 6.336 -
0.0040 800 6.1367 -
0.0045 900 6.194 -
0.0050 1000 6.4518 -
0.0055 1100 6.2857 -
0.0060 1200 6.0774 -
0.0065 1300 6.1036 -
0.0070 1400 6.2154 -
0.0075 1500 6.3046 -
0.0080 1600 5.9755 -
0.0085 1700 5.8602 -
0.0090 1800 5.8308 -
0.0095 1900 6.0314 -
0.0100 2000 5.86 -
0.0105 2100 5.8287 -
0.0110 2200 5.7462 -
0.0115 2300 5.7909 -
0.0120 2400 5.9804 -
0.0125 2500 5.4674 -
0.0130 2600 5.4586 -
0.0135 2700 5.7749 -
0.0140 2800 5.6838 -
0.0145 2900 5.7307 -
0.0150 3000 5.4713 -
0.0155 3100 5.5025 -
0.0160 3200 5.5276 -
0.0165 3300 5.3185 -
0.0170 3400 5.4734 -
0.0175 3500 5.4202 -
0.0180 3600 5.1365 -
0.0185 3700 5.3873 -
0.0190 3800 5.1091 -
0.0195 3900 5.2056 -
0.0200 4000 5.147 -
0.0205 4100 5.3614 -
0.0210 4200 5.0783 -
0.0215 4300 5.2087 -
0.0220 4400 5.2127 -
0.0225 4500 4.9735 -
0.0230 4600 5.0916 -
0.0235 4700 4.9882 -
0.0240 4800 5.1061 -
0.0245 4900 4.8584 -
0.0250 5000 4.9934 -
0.0255 5100 4.9541 -
0.0260 5200 4.9378 -
0.0265 5300 5.0161 -
0.0270 5400 4.8734 -
0.0275 5500 4.8832 -
0.0280 5600 4.9206 -
0.0285 5700 4.7206 -
0.0290 5800 4.7193 -
0.0295 5900 4.8795 -
0.0300 6000 4.6044 -
0.0305 6100 4.7623 -
0.0310 6200 4.7092 -
0.0315 6300 4.6061 -
0.0320 6400 4.6183 -
0.0325 6500 4.6138 -
0.0330 6600 4.554 -
0.0335 6700 4.6689 -
0.0340 6800 4.6988 -
0.0345 6900 4.6118 -
0.0350 7000 4.7152 -
0.0354 7100 4.5205 -
0.0359 7200 4.4475 -
0.0364 7300 4.6547 -
0.0369 7400 4.5081 -
0.0374 7500 4.508 -
0.0379 7600 4.7145 -
0.0384 7700 4.4167 -
0.0389 7800 4.631 -
0.0394 7900 4.5232 -
0.0399 8000 4.4811 -
0.0404 8100 4.5806 -
0.0409 8200 4.5535 -
0.0414 8300 4.3058 -
0.0419 8400 4.5954 -
0.0424 8500 4.4802 -
0.0429 8600 4.3596 -
0.0434 8700 4.4825 -
0.0439 8800 4.3692 -
0.0444 8900 4.3255 -
0.0449 9000 4.4243 -
0.0454 9100 4.2821 -
0.0459 9200 4.4329 -
0.0464 9300 4.309 -
0.0469 9400 4.3382 -
0.0474 9500 4.4366 -
0.0479 9600 4.3235 -
0.0484 9700 4.4367 -
0.0489 9800 4.4723 -
0.0494 9900 4.4395 -
0.0499 10000 4.4479 -
0.0504 10100 4.2866 -
0.0509 10200 4.2042 -
0.0514 10300 4.1899 -
0.0519 10400 4.4943 -
0.0524 10500 4.1929 -
0.0529 10600 4.1884 -
0.0534 10700 4.2187 -
0.0539 10800 4.2138 -
0.0544 10900 4.1536 -
0.0549 11000 4.3411 -
0.0554 11100 4.1162 -
0.0559 11200 4.2277 -
0.0564 11300 4.1056 -
0.0569 11400 4.2191 -
0.0574 11500 4.0704 -
0.0579 11600 4.2494 -
0.0584 11700 4.1014 -
0.0589 11800 4.0936 -
0.0594 11900 3.8393 -
0.0599 12000 4.052 -
0.0604 12100 3.9942 -
0.0609 12200 4.1937 -
0.0614 12300 4.213 -
0.0619 12400 4.1348 -
0.0624 12500 3.9975 -
0.0629 12600 4.1062 -
0.0634 12700 4.121 -
0.0639 12800 3.8878 -
0.0644 12900 4.0766 -
0.0649 13000 3.9884 -
0.0654 13100 4.0049 -
0.0659 13200 4.0452 -
0.0664 13300 3.9827 -
0.0669 13400 3.9904 -
0.0674 13500 3.9601 -
0.0679 13600 4.052 -
0.0684 13700 3.8402 -
0.0689 13800 3.9445 -
0.0694 13900 3.8026 -
0.0699 14000 3.9697 -
0.0704 14100 3.869 -
0.0709 14200 4.0541 -
0.0714 14300 3.8637 -
0.0719 14400 4.1086 -
0.0724 14500 3.8104 -
0.0729 14600 3.9208 -
0.0734 14700 3.8052 -
0.0739 14800 4.0067 -
0.0744 14900 3.9121 -
0.0749 15000 4.0612 -
0.0754 15100 3.8813 -
0.0759 15200 3.8245 -
0.0764 15300 3.8588 -
0.0769 15400 3.6933 -
0.0774 15500 3.8568 -
0.0779 15600 3.6819 -
0.0784 15700 3.7928 -
0.0789 15800 4.0747 -
0.0794 15900 3.6708 -
0.0799 16000 3.7275 -
0.0804 16100 3.7768 -
0.0809 16200 3.8808 -
0.0814 16300 3.648 -
0.0819 16400 3.7793 -
0.0824 16500 3.9536 -
0.0829 16600 3.7201 -
0.0834 16700 3.5479 -
0.0839 16800 3.4113 -
0.0844 16900 4.265 -
0.0849 17000 3.7576 -
0.0854 17100 3.948 -
0.0859 17200 3.5882 -
0.0864 17300 3.8988 -
0.0869 17400 3.6749 -
0.0874 17500 3.8741 -
0.0879 17600 3.5572 -
0.0884 17700 3.8278 -
0.0889 17800 3.6886 -
0.0894 17900 3.5759 -
0.0899 18000 3.515 -
0.0904 18100 3.7087 -
0.0909 18200 3.7857 -
0.0914 18300 3.5894 -
0.0919 18400 3.8247 -
0.0924 18500 3.5725 -
0.0929 18600 3.4782 -
0.0934 18700 3.6195 -
0.0939 18800 3.7224 -
0.0944 18900 3.6477 -
0.0949 19000 3.6129 -
0.0954 19100 3.6367 -
0.0959 19200 3.702 -
0.0964 19300 3.5366 -
0.0969 19400 3.7397 -
0.0974 19500 3.7948 -
0.0979 19600 3.5529 -
0.0984 19700 3.7017 -
0.0989 19800 3.3169 -
0.0994 19900 3.7506 -
0.0999 20000 3.4023 -
0.1004 20100 3.5573 -
0.1009 20200 3.6026 -
0.1014 20300 3.5585 -
0.1019 20400 3.4484 -
0.1024 20500 3.8137 -
0.1029 20600 3.6434 -
0.1034 20700 3.3974 -
0.1039 20800 3.5116 -
0.1044 20900 3.9141 -
0.1049 21000 3.5298 -
0.1053 21100 3.4814 -
0.1058 21200 3.4113 -
0.1063 21300 3.4321 -
0.1068 21400 3.4263 -
0.1073 21500 3.4734 -
0.1078 21600 3.096 -
0.1083 21700 3.3228 -
0.1088 21800 3.335 -
0.1093 21900 3.4392 -
0.1098 22000 3.2421 -
0.1103 22100 3.2693 -
0.1108 22200 3.6501 -
0.1113 22300 3.1809 -
0.1118 22400 3.3698 -
0.1123 22500 3.6283 -
0.1128 22600 3.2968 -
0.1133 22700 3.359 -
0.1138 22800 3.3095 -
0.1143 22900 3.5046 -
0.1148 23000 3.3438 -
0.1153 23100 3.2553 -
0.1158 23200 3.1866 -
0.1163 23300 3.5381 -
0.1168 23400 3.1583 -
0.1173 23500 3.5116 -
0.1178 23600 3.2659 -
0.1183 23700 3.7753 -
0.1188 23800 3.3164 -
0.1193 23900 3.4583 -
0.1198 24000 3.5863 -
0.1203 24100 3.1361 -
0.1208 24200 3.114 -
0.1213 24300 3.3258 -
0.1218 24400 3.3718 -
0.1223 24500 3.3788 -
0.1228 24600 3.2925 -
0.1233 24700 3.4382 -
0.1238 24800 3.1105 -
0.1243 24900 3.0611 -
0.1248 25000 3.2392 -
0.1253 25100 3.3668 -
0.1258 25200 3.026 -
0.1263 25300 2.9381 -
0.1268 25400 3.0699 -
0.1273 25500 3.4645 -
0.1278 25600 3.1359 -
0.1283 25700 3.1008 -
0.1288 25800 3.2122 -
0.1293 25900 3.2104 -
0.1298 26000 3.3811 -
0.1303 26100 3.3549 -
0.1308 26200 3.391 -
0.1313 26300 2.9513 -
0.1318 26400 3.4013 -
0.1323 26500 3.2946 -
0.1328 26600 3.1047 -
0.1333 26700 2.9188 -
0.1338 26800 3.4218 -
0.1343 26900 2.8501 -
0.1348 27000 3.2599 -
0.1353 27100 3.3038 -
0.1358 27200 3.1399 -
0.1363 27300 2.745 -
0.1368 27400 3.3719 -
0.1373 27500 3.41 -
0.1378 27600 2.7585 -
0.1383 27700 3.1948 -
0.1388 27800 3.0964 -
0.1393 27900 3.3553 -
0.1398 28000 3.1098 -
0.1403 28100 3.1651 -
0.1408 28200 3.0293 -
0.1413 28300 3.4216 -
0.1418 28400 3.3289 -
0.1423 28500 3.3303 -
0.1428 28600 3.2838 -
0.1433 28700 3.3382 -
0.1438 28800 3.3087 -
0.1443 28900 3.2504 -
0.1448 29000 3.0627 -
0.1453 29100 3.0779 -
0.1458 29200 3.0 -
0.1463 29300 3.1066 -
0.1468 29400 3.0483 -
0.1473 29500 2.841 -
0.1478 29600 3.0283 -
0.1483 29700 3.1668 -
0.1488 29800 3.1329 -
0.1493 29900 3.044 -
0.1498 30000 3.2942 -
0.1503 30100 3.0769 -
0.1508 30200 3.0751 -
0.1513 30300 2.848 -
0.1518 30400 2.9772 -
0.1523 30500 2.9561 -
0.1528 30600 3.0682 -
0.1533 30700 3.0736 -
0.1538 30800 2.9908 -
0.1543 30900 3.0628 -
0.1548 31000 2.863 -
0.1553 31100 2.7324 -
0.1558 31200 2.9683 -
0.1563 31300 3.062 -
0.1568 31400 2.9669 -
0.1573 31500 3.0353 -
0.1578 31600 2.7867 -
0.1583 31700 2.8247 -
0.1588 31800 3.0862 -
0.1593 31900 3.1947 -
0.1598 32000 2.6121 -
0.1603 32100 2.9946 -
0.1608 32200 2.7883 -
0.1613 32300 2.9826 -
0.1618 32400 2.9318 -
0.1623 32500 2.796 -
0.1628 32600 2.9169 -
0.1633 32700 2.9236 -
0.1638 32800 2.6384 -
0.1643 32900 3.1341 -
0.1648 33000 3.1256 -
0.1653 33100 2.7875 -
0.1658 33200 2.9638 -
0.1663 33300 3.0285 -
0.1668 33400 2.9998 -
0.1673 33500 2.9766 -
0.1678 33600 2.8865 -
0.1683 33700 3.0156 -
0.1688 33800 2.8313 -
0.1693 33900 2.8715 -
0.1698 34000 3.1022 -
0.1703 34100 3.1711 -
0.1708 34200 2.9908 -
0.1713 34300 3.0944 -
0.1718 34400 2.8759 -
0.1723 34500 2.9095 -
0.1728 34600 3.214 -
0.1733 34700 2.9522 -
0.1738 34800 3.0699 -
0.1743 34900 2.8568 -
0.1748 35000 2.6142 -
0.1752 35100 3.0088 -
0.1757 35200 2.8695 -
0.1762 35300 2.5945 -
0.1767 35400 2.7676 -
0.1772 35500 2.8531 -
0.1777 35600 2.7271 -
0.1782 35700 3.0287 -
0.1787 35800 2.9784 -
0.1792 35900 3.0512 -
0.1797 36000 3.0043 -
0.1802 36100 2.8445 -
0.1807 36200 2.8787 -
0.1812 36300 2.9373 -
0.1817 36400 2.7795 -
0.1822 36500 2.6245 -
0.1827 36600 2.638 -
0.1832 36700 2.6042 -
0.1837 36800 2.7934 -
0.1842 36900 2.7317 -
0.1847 37000 2.614 -
0.1852 37100 2.8794 -
0.1857 37200 2.6396 -
0.1862 37300 2.6917 -
0.1867 37400 2.52 -
0.1872 37500 2.5415 -
0.1877 37600 2.6995 -
0.1882 37700 3.013 -
0.1887 37800 2.8997 -
0.1892 37900 2.7595 -
0.1897 38000 2.9921 -
0.1902 38100 2.7121 -
0.1907 38200 2.5674 -
0.1912 38300 2.5434 -
0.1917 38400 2.6567 -
0.1922 38500 2.9682 -
0.1927 38600 2.7865 -
0.1932 38700 2.9794 -
0.1937 38800 2.933 -
0.1942 38900 2.5354 -
0.1947 39000 2.9042 -
0.1952 39100 2.6001 -
0.1957 39200 2.9125 -
0.1962 39300 2.8248 -
0.1967 39400 2.7931 -
0.1972 39500 2.5701 -
0.1977 39600 3.0377 -
0.1982 39700 2.6263 -
0.1987 39800 2.6879 -
0.1992 39900 2.8667 -
0.1997 40000 2.5948 -
0.2002 40100 2.8191 -
0.2007 40200 2.8543 -
0.2012 40300 2.7222 -
0.2017 40400 2.3422 -
0.2022 40500 2.732 -
0.2027 40600 2.6185 -
0.2032 40700 2.5966 -
0.2037 40800 2.9523 -
0.2042 40900 2.6896 -
0.2047 41000 2.6421 -
0.2052 41100 2.7518 -
0.2057 41200 2.6846 -
0.2062 41300 2.6052 -
0.2067 41400 2.9544 -
0.2072 41500 3.2947 -
0.2077 41600 2.7759 -
0.2082 41700 2.8177 -
0.2087 41800 2.8916 -
0.2092 41900 2.3696 -
0.2097 42000 2.8807 -
0.2102 42100 2.8368 -
0.2107 42200 2.6726 -
0.2112 42300 2.6342 -
0.2117 42400 2.774 -
0.2122 42500 2.6606 -
0.2127 42600 2.4469 -
0.2132 42700 3.1126 -
0.2137 42800 2.6948 -
0.2142 42900 2.7276 -
0.2147 43000 2.7691 -
0.2152 43100 2.6856 -
0.2157 43200 2.7697 -
0.2162 43300 2.7625 -
0.2167 43400 2.5096 -
0.2172 43500 2.7594 -
0.2177 43600 2.6647 -
0.2182 43700 2.384 -
0.2187 43800 2.6811 -
0.2192 43900 2.756 -
0.2197 44000 2.6033 -
0.2202 44100 3.182 -
0.2207 44200 2.3804 -
0.2212 44300 2.6735 -
0.2217 44400 2.6004 -
0.2222 44500 2.2693 -
0.2227 44600 2.6081 -
0.2232 44700 2.5947 -
0.2237 44800 2.2279 -
0.2242 44900 2.8212 -
0.2247 45000 2.26 -
0.2252 45100 2.3076 -
0.2257 45200 2.3412 -
0.2262 45300 2.2829 -
0.2267 45400 2.7534 -
0.2272 45500 2.4734 -
0.2277 45600 2.4964 -
0.2282 45700 2.6147 -
0.2287 45800 3.0071 -
0.2292 45900 2.5274 -
0.2297 46000 2.5531 -
0.2302 46100 3.0305 -
0.2307 46200 2.6079 -
0.2312 46300 2.3963 -
0.2317 46400 2.6462 -
0.2322 46500 2.6127 -
0.2327 46600 2.4707 -
0.2332 46700 2.5851 -
0.2337 46800 2.5133 -
0.2342 46900 2.4217 -
0.2347 47000 2.618 -
0.2352 47100 2.9785 -
0.2357 47200 2.3928 -
0.2362 47300 2.5517 -
0.2367 47400 2.6594 -
0.2372 47500 2.4067 -
0.2377 47600 2.3403 -
0.2382 47700 2.6417 -
0.2387 47800 2.2265 -
0.2392 47900 2.5409 -
0.2397 48000 2.3004 -
0.2402 48100 2.6397 -
0.2407 48200 2.2379 -
0.2412 48300 2.7696 -
0.2417 48400 2.4281 -
0.2422 48500 2.3416 -
0.2427 48600 2.5553 -
0.2432 48700 2.6443 -
0.2437 48800 2.5207 -
0.2442 48900 2.7271 -
0.2447 49000 2.8271 -
0.2451 49100 2.243 -
0.2456 49200 2.3372 -
0.2461 49300 2.5155 -
0.2466 49400 2.26 -
0.2471 49500 2.5711 -
0.2476 49600 2.6841 -
0.2481 49700 2.4423 -
0.2486 49800 2.6477 -
0.2491 49900 2.2597 -
0.2496 50000 2.7203 -
0.2501 50100 2.1391 -
0.2506 50200 2.8026 -
0.2511 50300 2.4964 -
0.2516 50400 2.2849 -
0.2521 50500 2.9575 -
0.2526 50600 2.382 -
0.2531 50700 2.5473 -
0.2536 50800 2.5756 -
0.2541 50900 2.3838 -
0.2546 51000 2.4413 -
0.2551 51100 2.5669 -
0.2556 51200 2.5635 -
0.2561 51300 2.7042 -
0.2566 51400 2.7145 -
0.2571 51500 2.4212 -
0.2576 51600 2.3492 -
0.2581 51700 2.5121 -
0.2586 51800 2.4844 -
0.2591 51900 2.1738 -
0.2596 52000 2.9862 -
0.2601 52100 2.5862 -
0.2606 52200 2.2386 -
0.2611 52300 2.5848 -
0.2616 52400 2.0068 -
0.2621 52500 1.9819 -
0.2626 52600 2.7729 -
0.2631 52700 2.8908 -
0.2636 52800 2.4779 -
0.2641 52900 2.648 -
0.2646 53000 2.4233 -
0.2651 53100 1.787 -
0.2656 53200 2.8159 -
0.2661 53300 2.5928 -
0.2666 53400 2.5347 -
0.2671 53500 2.5455 -
0.2676 53600 2.0981 -
0.2681 53700 2.2721 -
0.2686 53800 2.3859 -
0.2691 53900 2.6204 -
0.2696 54000 2.3535 -
0.2701 54100 2.4894 -
0.2706 54200 2.6671 -
0.2711 54300 2.5127 -
0.2716 54400 2.4239 -
0.2721 54500 2.2239 -
0.2726 54600 2.6771 -
0.2731 54700 2.3476 -
0.2736 54800 2.4203 -
0.2741 54900 2.5066 -
0.2746 55000 2.4273 -
0.2751 55100 2.4295 -
0.2756 55200 2.3836 -
0.2761 55300 2.5706 -
0.2766 55400 2.4541 -
0.2771 55500 2.4844 -
0.2776 55600 2.3318 -
0.2781 55700 2.3977 -
0.2786 55800 2.606 -
0.2791 55900 2.2229 -
0.2796 56000 2.3403 -
0.2801 56100 2.2577 -
0.2806 56200 2.3147 -
0.2811 56300 2.7251 -
0.2816 56400 2.5777 -
0.2821 56500 2.5737 -
0.2826 56600 2.7894 -
0.2831 56700 2.382 -
0.2836 56800 2.1697 -
0.2841 56900 2.6753 -
0.2846 57000 2.1086 -
0.2851 57100 2.4513 -
0.2856 57200 2.2175 -
0.2861 57300 2.2718 -
0.2866 57400 2.4546 -
0.2871 57500 2.2547 -
0.2876 57600 2.8398 -
0.2881 57700 2.4534 -
0.2886 57800 2.4252 -
0.2891 57900 2.1316 -
0.2896 58000 2.2469 -
0.2901 58100 2.6232 -
0.2906 58200 2.2779 -
0.2911 58300 2.533 -
0.2916 58400 2.2347 -
0.2921 58500 2.1447 -
0.2926 58600 2.3456 -
0.2931 58700 2.3433 -
0.2936 58800 2.375 -
0.2941 58900 2.3468 -
0.2946 59000 2.5581 -
0.2951 59100 2.2426 -
0.2956 59200 2.3242 -
0.2961 59300 2.1585 -
0.2966 59400 2.3908 -
0.2971 59500 2.5565 -
0.2976 59600 2.0831 -
0.2981 59700 2.4429 -
0.2986 59800 2.2462 -
0.2991 59900 2.5221 -
0.2996 60000 2.5389 -
0.3001 60100 2.1017 -
0.3006 60200 2.1755 -
0.3011 60300 2.1521 -
0.3016 60400 2.2523 -
0.3021 60500 2.3944 -
0.3026 60600 2.3824 -
0.3031 60700 2.1509 -
0.3036 60800 2.2912 -
0.3041 60900 2.0051 -
0.3046 61000 2.1324 -
0.3051 61100 2.0692 -
0.3056 61200 2.2481 -
0.3061 61300 2.3736 -
0.3066 61400 1.9824 -
0.3071 61500 2.5799 -
0.3076 61600 2.253 -
0.3081 61700 2.4209 -
0.3086 61800 2.3047 -
0.3091 61900 2.5261 -
0.3096 62000 2.4303 -
0.3101 62100 2.2895 -
0.3106 62200 2.5256 -
0.3111 62300 2.3748 -
0.3116 62400 2.6335 -
0.3121 62500 2.2259 -
0.3126 62600 2.5094 -
0.3131 62700 2.2833 -
0.3136 62800 2.3726 -
0.3141 62900 2.1585 -
0.3146 63000 2.3318 -
0.3150 63100 2.3269 -
0.3155 63200 2.0867 -
0.3160 63300 2.482 -
0.3165 63400 1.8637 -
0.3170 63500 2.2808 -
0.3175 63600 1.9519 -
0.3180 63700 2.1741 -
0.3185 63800 2.4984 -
0.3190 63900 2.0952 -
0.3195 64000 2.0924 -
0.3200 64100 2.0532 -
0.3205 64200 2.4862 -
0.3210 64300 2.1132 -
0.3215 64400 1.9659 -
0.3220 64500 2.0486 -
0.3225 64600 2.2904 -
0.3230 64700 2.2612 -
0.3235 64800 2.186 -
0.3240 64900 2.2942 -
0.3245 65000 1.9887 -
0.3250 65100 2.1419 -
0.3255 65200 2.548 -
0.3260 65300 1.885 -
0.3265 65400 2.3956 -
0.3270 65500 2.1948 -
0.3275 65600 2.382 -
0.3280 65700 2.0593 -
0.3285 65800 2.1748 -
0.3290 65900 1.9546 -
0.3295 66000 2.6226 -
0.3300 66100 2.351 -
0.3305 66200 2.0502 -
0.3310 66300 2.7409 -
0.3315 66400 2.314 -
0.3320 66500 1.7664 -
0.3325 66600 2.3957 -
0.3330 66700 2.1399 -
0.3335 66800 2.3979 -
0.3340 66900 2.0731 -
0.3345 67000 2.389 -
0.3350 67100 2.3484 -
0.3355 67200 2.2977 -
0.3360 67300 2.2682 -
0.3365 67400 1.7819 -
0.3370 67500 1.7535 -
0.3375 67600 2.1319 -
0.3380 67700 2.2678 -
0.3385 67800 2.131 -
0.3390 67900 2.3788 -
0.3395 68000 2.0733 -
0.3400 68100 2.2674 -
0.3405 68200 2.0654 -
0.3410 68300 1.9801 -
0.3415 68400 2.049 -
0.3420 68500 1.7765 -
0.3425 68600 2.4366 -
0.3430 68700 2.3577 -
0.3435 68800 2.4261 -
0.3440 68900 2.1609 -
0.3445 69000 2.1561 -
0.3450 69100 2.4614 -
0.3455 69200 1.8545 -
0.3460 69300 2.1305 -
0.3465 69400 2.2765 -
0.3470 69500 2.4167 -
0.3475 69600 1.9283 -
0.3480 69700 2.247 -
0.3485 69800 2.0565 -
0.3490 69900 2.1751 -
0.3495 70000 2.198 -
0.3500 70100 2.1987 -
0.3505 70200 2.1544 -
0.3510 70300 2.1724 -
0.3515 70400 1.9956 -
0.3520 70500 2.201 -
0.3525 70600 2.2607 -
0.3530 70700 2.2884 -
0.3535 70800 1.9875 -
0.3540 70900 2.3873 -
0.3545 71000 2.078 -
0.3550 71100 1.954 -
0.3555 71200 2.0139 -
0.3560 71300 1.8746 -
0.3565 71400 2.3718 -
0.3570 71500 2.0571 -
0.3575 71600 2.3535 -
0.3580 71700 2.2368 -
0.3585 71800 2.1226 -
0.3590 71900 1.8515 -
0.3595 72000 2.2028 -
0.3600 72100 2.3873 -
0.3605 72200 2.1739 -
0.3610 72300 2.2544 -
0.3615 72400 1.9404 -
0.3620 72500 1.6548 -
0.3625 72600 2.1633 -
0.3630 72700 2.4113 -
0.3635 72800 2.3889 -
0.3640 72900 2.0126 -
0.3645 73000 2.1161 -
0.3650 73100 2.1002 -
0.3655 73200 2.0756 -
0.3660 73300 1.8825 -
0.3665 73400 2.2179 -
0.3670 73500 2.2438 -
0.3675 73600 2.0007 -
0.3680 73700 2.2734 -
0.3685 73800 2.1342 -
0.3690 73900 2.1158 -
0.3695 74000 2.1228 -
0.3700 74100 2.2144 -
0.3705 74200 1.9029 -
0.3710 74300 1.8251 -
0.3715 74400 2.3054 -
0.3720 74500 2.5536 -
0.3725 74600 1.9385 -
0.3730 74700 2.1324 -
0.3735 74800 2.5917 -
0.3740 74900 2.288 -
0.3745 75000 2.0751 -
0.3750 75100 1.908 -
0.3755 75200 2.2267 -
0.3760 75300 1.8901 -
0.3765 75400 2.0838 -
0.3770 75500 2.3787 -
0.3775 75600 2.2786 -
0.3780 75700 1.7522 -
0.3785 75800 2.1096 -
0.3790 75900 1.9785 -
0.3795 76000 2.2939 -
0.3800 76100 1.8262 -
0.3805 76200 1.5915 -
0.3810 76300 1.7893 -
0.3815 76400 2.2512 -
0.3820 76500 2.1623 -
0.3825 76600 1.9636 -
0.3830 76700 1.9079 -
0.3835 76800 2.1985 -
0.3840 76900 1.9491 -
0.3845 77000 1.9013 -
0.3849 77100 2.2473 -
0.3854 77200 2.0395 -
0.3859 77300 2.0517 -
0.3864 77400 1.81 -
0.3869 77500 1.9754 -
0.3874 77600 2.1476 -
0.3879 77700 1.8451 -
0.3884 77800 1.7135 -
0.3889 77900 1.6221 -
0.3894 78000 2.1091 -
0.3899 78100 2.3507 -
0.3904 78200 2.3228 -
0.3909 78300 2.176 -
0.3914 78400 1.9138 -
0.3919 78500 2.4069 -
0.3924 78600 1.8359 -
0.3929 78700 1.7608 -
0.3934 78800 2.219 -
0.3939 78900 2.0968 -
0.3944 79000 1.7177 -
0.3949 79100 2.1567 -
0.3954 79200 2.3461 -
0.3959 79300 1.9701 -
0.3964 79400 1.6847 -
0.3969 79500 1.889 -
0.3974 79600 1.9144 -
0.3979 79700 1.9208 -
0.3984 79800 2.0487 -
0.3989 79900 2.4663 -
0.3994 80000 2.3169 -
0.3999 80100 1.6138 -
0.4004 80200 2.1837 -
0.4009 80300 2.3157 -
0.4014 80400 1.7725 -
0.4019 80500 1.8704 -
0.4024 80600 2.2854 -
0.4029 80700 1.7199 -
0.4034 80800 1.9352 -
0.4039 80900 2.4681 -
0.4044 81000 2.1064 -
0.4049 81100 1.981 -
0.4054 81200 1.8742 -
0.4059 81300 1.6383 -
0.4064 81400 2.008 -
0.4069 81500 1.853 -
0.4074 81600 1.9951 -
0.4079 81700 2.027 -
0.4084 81800 2.2707 -
0.4089 81900 2.0529 -
0.4094 82000 1.7434 -
0.4099 82100 2.0591 -
0.4104 82200 2.3109 -
0.4109 82300 2.1326 -
0.4114 82400 1.9818 -
0.4119 82500 1.9634 -
0.4124 82600 2.0817 -
0.4129 82700 2.0794 -
0.4134 82800 1.6568 -
0.4139 82900 2.2222 -
0.4144 83000 1.8832 -
0.4149 83100 2.3532 -
0.4154 83200 1.8349 -
0.4159 83300 2.2312 -
0.4164 83400 1.6966 -
0.4169 83500 1.805 -
0.4174 83600 2.0664 -
0.4179 83700 1.9561 -
0.4184 83800 2.0732 -
0.4189 83900 2.0805 -
0.4194 84000 2.3485 -
0.4199 84100 1.6785 -
0.4204 84200 1.9762 -
0.4209 84300 2.0119 -
0.4214 84400 1.9899 -
0.4219 84500 1.5073 -
0.4224 84600 1.9854 -
0.4229 84700 2.0792 -
0.4234 84800 2.0185 -
0.4239 84900 1.6369 -
0.4244 85000 1.9485 -
0.4249 85100 1.793 -
0.4254 85200 1.6451 -
0.4259 85300 1.9435 -
0.4264 85400 2.1872 -
0.4269 85500 1.9144 -
0.4274 85600 2.0768 -
0.4279 85700 1.6065 -
0.4284 85800 1.8128 -
0.4289 85900 1.9862 -
0.4294 86000 1.8622 -
0.4299 86100 2.2601 -
0.4304 86200 1.9261 -
0.4309 86300 1.8153 -
0.4314 86400 2.276 -
0.4319 86500 1.7544 -
0.4324 86600 1.8547 -
0.4329 86700 1.9069 -
0.4334 86800 1.8093 -
0.4339 86900 2.2972 -
0.4344 87000 1.9256 -
0.4349 87100 2.3525 -
0.4354 87200 1.7267 -
0.4359 87300 1.5462 -
0.4364 87400 2.2675 -
0.4369 87500 1.8993 -
0.4374 87600 1.9626 -
0.4379 87700 2.2227 -
0.4384 87800 1.9611 -
0.4389 87900 1.9768 -
0.4394 88000 1.7856 -
0.4399 88100 1.5573 -
0.4404 88200 1.9156 -
0.4409 88300 1.5961 -
0.4414 88400 1.6783 -
0.4419 88500 1.7963 -
0.4424 88600 1.4993 -
0.4429 88700 1.8539 -
0.4434 88800 2.0774 -
0.4439 88900 1.9972 -
0.4444 89000 1.9106 -
0.4449 89100 2.0567 -
0.4454 89200 1.8142 -
0.4459 89300 1.7844 -
0.4464 89400 2.2067 -
0.4469 89500 1.6817 -
0.4474 89600 1.8433 -
0.4479 89700 1.8817 -
0.4484 89800 1.8098 -
0.4489 89900 1.9035 -
0.4494 90000 1.7682 -
0.4499 90100 2.2032 -
0.4504 90200 2.0064 -
0.4509 90300 1.8327 -
0.4514 90400 2.0963 -
0.4519 90500 1.7992 -
0.4524 90600 1.9165 -
0.4529 90700 1.7178 -
0.4534 90800 1.935 -
0.4539 90900 2.1791 -
0.4544 91000 1.8881 -
0.4548 91100 1.7405 -
0.4553 91200 1.6674 -
0.4558 91300 2.2301 -
0.4563 91400 2.0039 -
0.4568 91500 1.9845 -
0.4573 91600 1.7205 -
0.4578 91700 1.9673 -
0.4583 91800 2.3074 -
0.4588 91900 1.7862 -
0.4593 92000 1.7103 -
0.4598 92100 1.9276 -
0.4603 92200 1.7474 -
0.4608 92300 2.2457 -
0.4613 92400 1.7559 -
0.4618 92500 1.9303 -
0.4623 92600 1.8931 -
0.4628 92700 1.6803 -
0.4633 92800 1.4846 -
0.4638 92900 1.5918 -
0.4643 93000 2.0707 -
0.4648 93100 2.165 -
0.4653 93200 1.9154 -
0.4658 93300 1.9597 -
0.4663 93400 1.8383 -
0.4668 93500 1.7266 -
0.4673 93600 1.8843 -
0.4678 93700 1.7485 -
0.4683 93800 1.6792 -
0.4688 93900 1.753 -
0.4693 94000 1.8803 -
0.4698 94100 1.8638 -
0.4703 94200 1.9513 -
0.4708 94300 1.6984 -
0.4713 94400 1.7619 -
0.4718 94500 2.0029 -
0.4723 94600 1.6282 -
0.4728 94700 1.9895 -
0.4733 94800 1.4884 -
0.4738 94900 2.0727 -
0.4743 95000 1.9775 -
0.4748 95100 1.9011 -
0.4753 95200 1.78 -
0.4758 95300 1.6496 -
0.4763 95400 1.7694 -
0.4768 95500 1.8104 -
0.4773 95600 2.1434 -
0.4778 95700 2.1602 -
0.4783 95800 1.8147 -
0.4788 95900 2.1374 -
0.4793 96000 1.6676 -
0.4798 96100 2.1777 -
0.4803 96200 1.6589 -
0.4808 96300 1.457 -
0.4813 96400 1.7118 -
0.4818 96500 2.2716 -
0.4823 96600 2.024 -
0.4828 96700 1.573 -
0.4833 96800 2.0344 -
0.4838 96900 1.9224 -
0.4843 97000 1.6652 -
0.4848 97100 1.6754 -
0.4853 97200 1.6339 -
0.4858 97300 2.1154 -
0.4863 97400 1.9148 -
0.4868 97500 1.8093 -
0.4873 97600 1.7915 -
0.4878 97700 1.6476 -
0.4883 97800 1.6326 -
0.4888 97900 1.7777 -
0.4893 98000 1.9418 -
0.4898 98100 1.9035 -
0.4903 98200 1.9793 -
0.4908 98300 2.0619 -
0.4913 98400 1.6747 -
0.4918 98500 1.8189 -
0.4923 98600 2.1681 -
0.4928 98700 2.2924 -
0.4933 98800 1.7623 -
0.4938 98900 1.8764 -
0.4943 99000 1.7616 -
0.4948 99100 1.5557 -
0.4953 99200 1.8441 -
0.4958 99300 1.6725 -
0.4963 99400 1.4813 -
0.4968 99500 1.5906 -
0.4973 99600 1.9054 -
0.4978 99700 1.7761 -
0.4983 99800 2.394 -
0.4988 99900 2.0158 -
0.4993 100000 1.8206 -
0.4998 100100 1.7957 -
0.5003 100200 1.4661 -
0.5008 100300 1.4 -
0.5013 100400 1.9678 -
0.5018 100500 1.9872 -
0.5023 100600 1.3778 -
0.5028 100700 2.0785 -
0.5033 100800 1.5899 -
0.5038 100900 1.6462 -
0.5043 101000 1.5476 -
0.5048 101100 1.6704 -
0.5053 101200 2.1131 -
0.5058 101300 2.0157 -
0.5063 101400 2.3293 -
0.5068 101500 1.8464 -
0.5073 101600 2.0325 -
0.5078 101700 1.8766 -
0.5083 101800 1.8566 -
0.5088 101900 1.9995 -
0.5093 102000 1.7698 -
0.5098 102100 1.8043 -
0.5103 102200 2.0288 -
0.5108 102300 1.5647 -
0.5113 102400 1.769 -
0.5118 102500 1.7187 -
0.5123 102600 1.9702 -
0.5128 102700 2.0815 -
0.5133 102800 1.6762 -
0.5138 102900 1.9513 -
0.5143 103000 1.6697 -
0.5148 103100 1.9771 -
0.5153 103200 1.9108 -
0.5158 103300 1.6367 -
0.5163 103400 1.8182 -
0.5168 103500 2.0768 -
0.5173 103600 1.3931 -
0.5178 103700 1.7243 -
0.5183 103800 1.3762 -
0.5188 103900 1.8216 -
0.5193 104000 2.043 -
0.5198 104100 1.9567 -
0.5203 104200 1.6335 -
0.5208 104300 2.0067 -
0.5213 104400 1.8428 -
0.5218 104500 1.9741 -
0.5223 104600 1.3404 -
0.5228 104700 2.3027 -
0.5233 104800 1.8799 -
0.5238 104900 1.951 -
0.5243 105000 1.7688 -
0.5247 105100 1.7451 -
0.5252 105200 1.7288 -
0.5257 105300 1.9853 -
0.5262 105400 1.5328 -
0.5267 105500 1.7722 -
0.5272 105600 1.7597 -
0.5277 105700 1.7947 -
0.5282 105800 1.6197 -
0.5287 105900 1.9354 -
0.5292 106000 1.8929 -
0.5297 106100 2.0947 -
0.5302 106200 1.7403 -
0.5307 106300 2.1697 -
0.5312 106400 1.3163 -
0.5317 106500 1.5713 -
0.5322 106600 1.5949 -
0.5327 106700 1.8302 -
0.5332 106800 1.8738 -
0.5337 106900 2.002 -
0.5342 107000 1.5888 -
0.5347 107100 1.4912 -
0.5352 107200 1.68 -
0.5357 107300 1.3993 -
0.5362 107400 2.031 -
0.5367 107500 1.5259 -
0.5372 107600 1.3337 -
0.5377 107700 1.6058 -
0.5382 107800 1.7507 -
0.5387 107900 1.5311 -
0.5392 108000 1.5397 -
0.5397 108100 1.6289 -
0.5402 108200 1.6235 -
0.5407 108300 1.8305 -
0.5412 108400 1.8773 -
0.5417 108500 1.5808 -
0.5422 108600 2.05 -
0.5427 108700 1.8562 -
0.5432 108800 1.3852 -
0.5437 108900 1.5703 -
0.5442 109000 1.8474 -
0.5447 109100 1.5611 -
0.5452 109200 1.8793 -
0.5457 109300 1.7347 -
0.5462 109400 1.7495 -
0.5467 109500 1.525 -
0.5472 109600 1.6379 -
0.5477 109700 1.5148 -
0.5482 109800 1.666 -
0.5487 109900 1.5516 -
0.5492 110000 1.6065 -
0.5497 110100 1.652 -
0.5502 110200 1.6991 -
0.5507 110300 1.6191 -
0.5512 110400 1.4887 -
0.5517 110500 1.6883 -
0.5522 110600 1.8258 -
0.5527 110700 1.7316 -
0.5532 110800 1.6684 -
0.5537 110900 1.4925 -
0.5542 111000 1.8436 -
0.5547 111100 1.8591 -
0.5552 111200 1.3417 -
0.5557 111300 1.6784 -
0.5562 111400 1.3021 -
0.5567 111500 1.7173 -
0.5572 111600 1.6347 -
0.5577 111700 1.6577 -
0.5582 111800 1.7229 -
0.5587 111900 1.5547 -
0.5592 112000 1.7756 -
0.5597 112100 1.5209 -
0.5602 112200 1.7085 -
0.5607 112300 1.7651 -
0.5612 112400 1.5172 -
0.5617 112500 1.3796 -
0.5622 112600 1.5186 -
0.5627 112700 1.5576 -
0.5632 112800 1.6152 -
0.5637 112900 1.6871 -
0.5642 113000 1.5476 -
0.5647 113100 1.8714 -
0.5652 113200 1.4068 -
0.5657 113300 1.4727 -
0.5662 113400 1.2794 -
0.5667 113500 1.7105 -
0.5672 113600 1.7756 -
0.5677 113700 1.7216 -
0.5682 113800 1.7171 -
0.5687 113900 2.3413 -
0.5692 114000 1.7612 -
0.5697 114100 1.5331 -
0.5702 114200 1.7469 -
0.5707 114300 1.4041 -
0.5712 114400 1.4508 -
0.5717 114500 1.4767 -
0.5722 114600 1.5171 -
0.5727 114700 1.6101 -
0.5732 114800 1.8386 -
0.5737 114900 1.5261 -
0.5742 115000 1.5996 -
0.5747 115100 1.6695 -
0.5752 115200 1.3877 -
0.5757 115300 1.5816 -
0.5762 115400 1.353 -
0.5767 115500 1.4017 -
0.5772 115600 1.3771 -
0.5777 115700 1.6099 -
0.5782 115800 1.4644 -
0.5787 115900 2.1031 -
0.5792 116000 1.7692 -
0.5797 116100 1.7675 -
0.5802 116200 1.8949 -
0.5807 116300 1.3794 -
0.5812 116400 1.8855 -
0.5817 116500 1.8118 -
0.5822 116600 1.7771 -
0.5827 116700 1.7133 -
0.5832 116800 1.5563 -
0.5837 116900 1.4894 -
0.5842 117000 1.4969 -
0.5847 117100 2.2598 -
0.5852 117200 1.1867 -
0.5857 117300 1.7632 -
0.5862 117400 1.5208 -
0.5867 117500 1.2766 -
0.5872 117600 1.6534 -
0.5877 117700 1.6136 -
0.5882 117800 2.044 -
0.5887 117900 1.4958 -
0.5892 118000 1.3535 -
0.5897 118100 1.5694 -
0.5902 118200 1.3729 -
0.5907 118300 1.0511 -
0.5912 118400 1.4901 -
0.5917 118500 1.7361 -
0.5922 118600 1.6047 -
0.5927 118700 1.4845 -
0.5932 118800 1.3929 -
0.5937 118900 1.5791 -
0.5942 119000 1.9485 -
0.5946 119100 1.6411 -
0.5951 119200 1.7951 -
0.5956 119300 1.7222 -
0.5961 119400 1.3605 -
0.5966 119500 1.8214 -
0.5971 119600 1.4778 -
0.5976 119700 1.8118 -
0.5981 119800 1.5317 -
0.5986 119900 2.0821 -
0.5991 120000 1.8327 -
0.5996 120100 1.4417 -
0.6001 120200 1.38 -
0.6006 120300 1.5105 -
0.6011 120400 1.5173 -
0.6016 120500 1.4505 -
0.6021 120600 1.4386 -
0.6026 120700 1.6754 -
0.6031 120800 1.4128 -
0.6036 120900 1.7754 -
0.6041 121000 2.0817 -
0.6046 121100 1.3743 -
0.6051 121200 1.6441 -
0.6056 121300 1.4172 -
0.6061 121400 1.3961 -
0.6066 121500 1.3342 -
0.6071 121600 1.3934 -
0.6076 121700 1.3395 -
0.6081 121800 1.5757 -
0.6086 121900 1.427 -
0.6091 122000 1.6947 -
0.6096 122100 1.586 -
0.6101 122200 1.4732 -
0.6106 122300 1.6848 -
0.6111 122400 1.5688 -
0.6116 122500 1.2785 -
0.6121 122600 1.5132 -
0.6126 122700 1.7558 -
0.6131 122800 1.4698 -
0.6136 122900 1.5741 -
0.6141 123000 1.5112 -
0.6146 123100 1.6657 -
0.6151 123200 1.2265 -
0.6156 123300 1.4761 -
0.6161 123400 1.3815 -
0.6166 123500 1.8101 -
0.6171 123600 1.4759 -
0.6176 123700 1.8239 -
0.6181 123800 1.5608 -
0.6186 123900 1.528 -
0.6191 124000 1.6247 -
0.6196 124100 1.3732 -
0.6201 124200 1.4069 -
0.6206 124300 1.2669 -
0.6211 124400 1.7275 -
0.6216 124500 1.5641 -
0.6221 124600 1.1991 -
0.6226 124700 1.183 -
0.6231 124800 1.6427 -
0.6236 124900 1.4286 -
0.6241 125000 1.5082 -
0.6246 125100 2.0593 -
0.6251 125200 1.631 -
0.6256 125300 1.7131 -
0.6261 125400 1.2385 -
0.6266 125500 1.4078 -
0.6271 125600 1.3625 -
0.6276 125700 1.6646 -
0.6281 125800 1.8855 -
0.6286 125900 1.3628 -
0.6291 126000 1.6761 -
0.6296 126100 1.6044 -
0.6301 126200 1.3544 -
0.6306 126300 1.5079 -
0.6311 126400 1.6384 -
0.6316 126500 1.3464 -
0.6321 126600 1.3763 -
0.6326 126700 1.5315 -
0.6331 126800 1.3984 -
0.6336 126900 1.5992 -
0.6341 127000 1.5176 -
0.6346 127100 1.9609 -
0.6351 127200 1.4938 -
0.6356 127300 1.6358 -
0.6361 127400 1.6042 -
0.6366 127500 1.3303 -
0.6371 127600 1.6631 -
0.6376 127700 1.5106 -
0.6381 127800 1.7218 -
0.6386 127900 1.5721 -
0.6391 128000 1.4982 -
0.6396 128100 1.7024 -
0.6401 128200 1.2919 -
0.6406 128300 1.2782 -
0.6411 128400 1.5706 -
0.6416 128500 1.4893 -
0.6421 128600 1.8098 -
0.6426 128700 1.682 -
0.6431 128800 1.5766 -
0.6436 128900 1.518 -
0.6441 129000 1.9327 -
0.6446 129100 1.88 -
0.6451 129200 1.3608 -
0.6456 129300 1.273 -
0.6461 129400 1.2531 -
0.6466 129500 1.7385 -
0.6471 129600 1.7303 -
0.6476 129700 1.3335 -
0.6481 129800 1.6542 -
0.6486 129900 1.8977 -
0.6491 130000 1.5994 -
0.6496 130100 1.3168 -
0.6501 130200 1.6853 -
0.6506 130300 1.5087 -
0.6511 130400 1.4548 -
0.6516 130500 1.4179 -
0.6521 130600 1.3784 -
0.6526 130700 1.3834 -
0.6531 130800 1.6153 -
0.6536 130900 1.7742 -
0.6541 131000 1.4123 -
0.6546 131100 1.4324 -
0.6551 131200 1.5367 -
0.6556 131300 1.2301 -
0.6561 131400 1.4213 -
0.6566 131500 1.5178 -
0.6571 131600 1.6238 -
0.6576 131700 1.7198 -
0.6581 131800 1.5874 -
0.6586 131900 1.7876 -
0.6591 132000 1.2657 -
0.6596 132100 1.4384 -
0.6601 132200 1.3497 -
0.6606 132300 1.2953 -
0.6611 132400 1.9192 -
0.6616 132500 1.4929 -
0.6621 132600 1.8137 -
0.6626 132700 1.437 -
0.6631 132800 1.2506 -
0.6636 132900 1.9136 -
0.6641 133000 1.7418 -
0.6645 133100 1.559 -
0.6650 133200 1.3641 -
0.6655 133300 1.7217 -
0.6660 133400 1.5523 -
0.6665 133500 1.5732 -
0.6670 133600 1.7634 -
0.6675 133700 1.5909 -
0.6680 133800 1.8142 -
0.6685 133900 1.4198 -
0.6690 134000 1.4868 -
0.6695 134100 1.0291 -
0.6700 134200 1.4052 -
0.6705 134300 1.2228 -
0.6710 134400 1.6449 -
0.6715 134500 1.1678 -
0.6720 134600 1.293 -
0.6725 134700 1.4656 -
0.6730 134800 1.5462 -
0.6735 134900 1.5175 -
0.6740 135000 1.3394 -
0.6745 135100 1.4962 -
0.6750 135200 1.3715 -
0.6755 135300 1.6412 -
0.6760 135400 1.5615 -
0.6765 135500 1.284 -
0.6770 135600 1.5171 -
0.6775 135700 1.489 -
0.6780 135800 1.272 -
0.6785 135900 1.4195 -
0.6790 136000 1.2882 -
0.6795 136100 1.7037 -
0.6800 136200 1.3332 -
0.6805 136300 1.5916 -
0.6810 136400 1.533 -
0.6815 136500 1.4482 -
0.6820 136600 1.4922 -
0.6825 136700 1.5426 -
0.6830 136800 1.5237 -
0.6835 136900 1.7996 -
0.6840 137000 1.5403 -
0.6845 137100 1.6317 -
0.6850 137200 1.5691 -
0.6855 137300 1.1246 -
0.6860 137400 1.4388 -
0.6865 137500 1.4055 -
0.6870 137600 1.4148 -
0.6875 137700 1.5721 -
0.6880 137800 1.5701 -
0.6885 137900 1.5231 -
0.6890 138000 1.5603 -
0.6895 138100 1.4063 -
0.6900 138200 1.506 -
0.6905 138300 1.5772 -
0.6910 138400 1.3512 -
0.6915 138500 1.3649 -
0.6920 138600 1.0894 -
0.6925 138700 1.365 -
0.6930 138800 1.2834 -
0.6935 138900 1.3475 -
0.6940 139000 1.6405 -
0.6945 139100 1.1318 -
0.6950 139200 1.5478 -
0.6955 139300 1.3101 -
0.6960 139400 1.5088 -
0.6965 139500 1.4813 -
0.6970 139600 1.1961 -
0.6975 139700 1.2001 -
0.6980 139800 1.2714 -
0.6985 139900 1.2807 -
0.6990 140000 1.4975 -
0.6995 140100 1.3186 -
0.7000 140200 1.5527 -
0.7005 140300 1.9347 -
0.7010 140400 1.4615 -
0.7015 140500 1.4222 -
0.7020 140600 1.5194 -
0.7025 140700 1.2415 -
0.7030 140800 1.3715 -
0.7035 140900 1.4761 -
0.7040 141000 1.7621 -
0.7045 141100 0.9738 -
0.7050 141200 1.1885 -
0.7055 141300 1.5353 -
0.7060 141400 1.5604 -
0.7065 141500 1.2269 -
0.7070 141600 1.5062 -
0.7075 141700 1.6626 -
0.7080 141800 1.7682 -
0.7085 141900 1.0845 -
0.7090 142000 1.1367 -
0.7095 142100 1.9869 -
0.7100 142200 1.1946 -
0.7105 142300 1.5049 -
0.7110 142400 1.402 -
0.7115 142500 1.4332 -
0.7120 142600 1.4091 -
0.7125 142700 0.9774 -
0.7130 142800 1.5863 -
0.7135 142900 1.3181 -
0.7140 143000 1.4577 -
0.7145 143100 1.3078 -
0.7150 143200 1.4749 -
0.7155 143300 1.8013 -
0.7160 143400 1.4059 -
0.7165 143500 1.3282 -
0.7170 143600 1.4918 -
0.7175 143700 2.1916 -
0.7180 143800 1.7292 -
0.7185 143900 1.566 -
0.7190 144000 1.367 -
0.7195 144100 1.0209 -
0.7200 144200 1.239 -
0.7205 144300 1.6357 -
0.7210 144400 1.8351 -
0.7215 144500 1.5105 -
0.7220 144600 1.7679 -
0.7225 144700 1.363 -
0.7230 144800 1.6061 -
0.7235 144900 1.4958 -
0.7240 145000 1.536 -
0.7245 145100 1.2456 -
0.7250 145200 1.4612 -
0.7255 145300 1.4174 -
0.7260 145400 1.5709 -
0.7265 145500 1.7262 -
0.7270 145600 1.5869 -
0.7275 145700 1.7125 -
0.7280 145800 1.5096 -
0.7285 145900 1.3202 -
0.7290 146000 1.3472 -
0.7295 146100 1.4477 -
0.7300 146200 1.254 -
0.7305 146300 1.4223 -
0.7310 146400 1.578 -
0.7315 146500 1.3225 -
0.7320 146600 1.2272 -
0.7325 146700 1.6459 -
0.7330 146800 1.2304 -
0.7335 146900 1.8511 -
0.7340 147000 1.5865 -
0.7344 147100 1.1025 -
0.7349 147200 1.3089 -
0.7354 147300 1.6669 -
0.7359 147400 1.593 -
0.7364 147500 1.534 -
0.7369 147600 1.5524 -
0.7374 147700 1.1772 -
0.7379 147800 1.3363 -
0.7384 147900 0.9781 -
0.7389 148000 1.4172 -
0.7394 148100 1.4839 -
0.7399 148200 1.4227 -
0.7404 148300 2.2783 -
0.7409 148400 1.5564 -
0.7414 148500 1.2048 -
0.7419 148600 1.4456 -
0.7424 148700 1.667 -
0.7429 148800 1.3026 -
0.7434 148900 1.677 -
0.7439 149000 1.1608 -
0.7444 149100 1.5157 -
0.7449 149200 1.2646 -
0.7454 149300 1.151 -
0.7459 149400 1.5729 -
0.7464 149500 1.3644 -
0.7469 149600 1.3659 -
0.7474 149700 1.2774 -
0.7479 149800 1.2851 -
0.7484 149900 1.484 -
0.7489 150000 1.5378 -
0.7494 150100 1.4816 -
0.7499 150200 1.3246 -
0.7504 150300 1.3663 -
0.7509 150400 1.1387 -
0.7514 150500 1.559 -
0.7519 150600 1.1794 -
0.7524 150700 1.1818 -
0.7529 150800 0.9931 -
0.7534 150900 1.4637 -
0.7539 151000 1.3466 -
0.7544 151100 1.4285 -
0.7549 151200 1.4001 -
0.7554 151300 1.6999 -
0.7559 151400 1.6733 -
0.7564 151500 1.2716 -
0.7569 151600 1.6409 -
0.7574 151700 1.1219 -
0.7579 151800 1.262 -
0.7584 151900 2.0907 -
0.7589 152000 1.6282 -
0.7594 152100 1.4528 -
0.7599 152200 1.6981 -
0.7604 152300 1.2534 -
0.7609 152400 1.3721 -
0.7614 152500 1.5113 -
0.7619 152600 1.5663 -
0.7624 152700 1.4691 -
0.7629 152800 1.3585 -
0.7634 152900 1.4911 -
0.7639 153000 1.243 -
0.7644 153100 1.0523 -
0.7649 153200 1.2438 -
0.7654 153300 1.168 -
0.7659 153400 1.316 -
0.7664 153500 1.0857 -
0.7669 153600 1.4102 -
0.7674 153700 1.2446 -
0.7679 153800 1.4248 -
0.7684 153900 1.3635 -
0.7689 154000 1.5078 -
0.7694 154100 1.2946 -
0.7699 154200 1.3956 -
0.7704 154300 1.4192 -
0.7709 154400 1.1503 -
0.7714 154500 1.1105 -
0.7719 154600 1.2607 -
0.7724 154700 1.3184 -
0.7729 154800 1.1195 -
0.7734 154900 1.4931 -
0.7739 155000 0.9042 -
0.7744 155100 1.2839 -
0.7749 155200 1.1265 -
0.7754 155300 1.989 -
0.7759 155400 1.4473 -
0.7764 155500 1.0904 -
0.7769 155600 1.3159 -
0.7774 155700 1.5461 -
0.7779 155800 0.9692 -
0.7784 155900 1.3676 -
0.7789 156000 1.3215 -
0.7794 156100 1.5705 -
0.7799 156200 1.5938 -
0.7804 156300 1.3986 -
0.7809 156400 1.0503 -
0.7814 156500 1.339 -
0.7819 156600 1.1693 -
0.7824 156700 1.4624 -
0.7829 156800 1.4176 -
0.7834 156900 1.7113 -
0.7839 157000 1.5169 -
0.7844 157100 1.3501 -
0.7849 157200 1.6274 -
0.7854 157300 1.4225 -
0.7859 157400 1.6274 -
0.7864 157500 1.2618 -
0.7869 157600 1.3987 -
0.7874 157700 1.6276 -
0.7879 157800 1.4816 -
0.7884 157900 1.0899 -
0.7889 158000 1.3473 -
0.7894 158100 0.8847 -
0.7899 158200 1.3189 -
0.7904 158300 1.7757 -
0.7909 158400 1.544 -
0.7914 158500 1.2079 -
0.7919 158600 1.6346 -
0.7924 158700 1.6178 -
0.7929 158800 1.4039 -
0.7934 158900 1.2637 -
0.7939 159000 0.7659 -
0.7944 159100 1.3308 -
0.7949 159200 1.1613 -
0.7954 159300 1.8076 -
0.7959 159400 1.3213 -
0.7964 159500 1.8907 -
0.7969 159600 1.5634 -
0.7974 159700 1.4655 -
0.7979 159800 1.1625 -
0.7984 159900 1.1498 -
0.7989 160000 1.3321 -
0.7994 160100 0.9834 -
0.7999 160200 1.1395 -
0.8004 160300 1.7619 -
0.8009 160400 1.4986 -
0.8014 160500 1.3453 -
0.8019 160600 1.3213 -
0.8024 160700 1.3056 -
0.8029 160800 1.1601 -
0.8034 160900 1.2822 -
0.8039 161000 1.2684 -
0.8043 161100 0.9572 -
0.8048 161200 1.4854 -
0.8053 161300 1.6043 -
0.8058 161400 1.3634 -
0.8063 161500 1.1452 -
0.8068 161600 1.3064 -
0.8073 161700 1.0689 -
0.8078 161800 1.436 -
0.8083 161900 1.5947 -
0.8088 162000 1.0331 -
0.8093 162100 1.4633 -
0.8098 162200 1.5341 -
0.8103 162300 1.421 -
0.8108 162400 1.7886 -
0.8113 162500 1.305 -
0.8118 162600 1.6239 -
0.8123 162700 1.1383 -
0.8128 162800 1.4161 -
0.8133 162900 1.3392 -
0.8138 163000 1.3583 -
0.8143 163100 1.0498 -
0.8148 163200 1.4906 -
0.8153 163300 1.3866 -
0.8158 163400 1.642 -
0.8163 163500 1.1373 -
0.8168 163600 1.5965 -
0.8173 163700 1.367 -
0.8178 163800 1.3369 -
0.8183 163900 1.3215 -
0.8188 164000 1.1646 -
0.8193 164100 1.237 -
0.8198 164200 1.4725 -
0.8203 164300 1.3512 -
0.8208 164400 1.2409 -
0.8213 164500 1.2072 -
0.8218 164600 1.2381 -
0.8223 164700 1.3883 -
0.8228 164800 1.23 -
0.8233 164900 1.0818 -
0.8238 165000 1.1994 -
0.8243 165100 1.4675 -
0.8248 165200 1.2352 -
0.8253 165300 1.3197 -
0.8258 165400 1.5459 -
0.8263 165500 1.0362 -
0.8268 165600 0.8935 -
0.8273 165700 1.3401 -
0.8278 165800 0.9586 -
0.8283 165900 1.7041 -
0.8288 166000 1.2041 -
0.8293 166100 1.5056 -
0.8298 166200 1.6185 -
0.8303 166300 1.235 -
0.8308 166400 1.2346 -
0.8313 166500 1.1975 -
0.8318 166600 1.3474 -
0.8323 166700 1.17 -
0.8328 166800 1.4502 -
0.8333 166900 1.3567 -
0.8338 167000 1.4013 -
0.8343 167100 1.2529 -
0.8348 167200 1.1192 -
0.8353 167300 1.3315 -
0.8358 167400 1.5781 -
0.8363 167500 1.3108 -
0.8368 167600 1.4153 -
0.8373 167700 1.2168 -
0.8378 167800 1.3585 -
0.8383 167900 1.4389 -
0.8388 168000 1.1615 -
0.8393 168100 1.3282 -
0.8398 168200 1.2173 -
0.8403 168300 1.4092 -
0.8408 168400 1.4726 -
0.8413 168500 1.2373 -
0.8418 168600 1.4092 -
0.8423 168700 1.2109 -
0.8428 168800 1.397 -
0.8433 168900 1.2763 -
0.8438 169000 1.2264 -
0.8443 169100 0.8692 -
0.8448 169200 1.1667 -
0.8453 169300 1.5756 -
0.8458 169400 1.5442 -
0.8463 169500 1.4823 -
0.8468 169600 1.2631 -
0.8473 169700 1.1115 -
0.8478 169800 1.1941 -
0.8483 169900 1.3996 -
0.8488 170000 1.0334 -
0.8493 170100 1.6695 -
0.8498 170200 1.4022 -
0.8503 170300 1.3784 -
0.8508 170400 1.216 -
0.8513 170500 1.4689 -
0.8518 170600 1.5381 -
0.8523 170700 1.7104 -
0.8528 170800 1.116 -
0.8533 170900 1.1786 -
0.8538 171000 1.393 -
0.8543 171100 1.2638 -
0.8548 171200 1.3263 -
0.8553 171300 2.0606 -
0.8558 171400 1.0974 -
0.8563 171500 1.2464 -
0.8568 171600 1.4063 -
0.8573 171700 1.2781 -
0.8578 171800 1.3176 -
0.8583 171900 1.4867 -
0.8588 172000 1.376 -
0.8593 172100 0.9656 -
0.8598 172200 1.5453 -
0.8603 172300 1.0136 -
0.8608 172400 1.1388 -
0.8613 172500 1.2173 -
0.8618 172600 1.6951 -
0.8623 172700 1.2018 -
0.8628 172800 1.0945 -
0.8633 172900 1.0362 -
0.8638 173000 1.1031 -
0.8643 173100 1.3064 -
0.8648 173200 1.3543 -
0.8653 173300 1.2886 -
0.8658 173400 1.6437 -
0.8663 173500 1.3363 -
0.8668 173600 0.8908 -
0.8673 173700 1.0635 -
0.8678 173800 1.3579 -
0.8683 173900 1.2447 -
0.8688 174000 1.1951 -
0.8693 174100 1.4428 -
0.8698 174200 1.4852 -
0.8703 174300 1.2144 -
0.8708 174400 1.1718 -
0.8713 174500 1.0745 -
0.8718 174600 1.2021 -
0.8723 174700 1.62 -
0.8728 174800 1.2547 -
0.8733 174900 1.343 -
0.8738 175000 1.3402 -
0.8742 175100 1.5774 -
0.8747 175200 1.0961 -
0.8752 175300 1.3884 -
0.8757 175400 1.4916 -
0.8762 175500 1.1003 -
0.8767 175600 1.5261 -
0.8772 175700 1.3022 -
0.8777 175800 1.5386 -
0.8782 175900 1.0226 -
0.8787 176000 1.2089 -
0.8792 176100 1.0344 -
0.8797 176200 1.2481 -
0.8802 176300 1.4237 -
0.8807 176400 1.2644 -
0.8812 176500 1.4114 -
0.8817 176600 1.4484 -
0.8822 176700 0.8614 -
0.8827 176800 1.1945 -
0.8832 176900 1.1713 -
0.8837 177000 0.8837 -
0.8842 177100 1.16 -
0.8847 177200 0.9491 -
0.8852 177300 0.9906 -
0.8857 177400 1.7038 -
0.8862 177500 1.0836 -
0.8867 177600 1.1694 -
0.8872 177700 1.5179 -
0.8877 177800 1.295 -
0.8882 177900 1.2192 -
0.8887 178000 1.7045 -
0.8892 178100 1.2963 -
0.8897 178200 1.2705 -
0.8902 178300 1.5091 -
0.8907 178400 1.0874 -
0.8912 178500 1.3434 -
0.8917 178600 1.6056 -
0.8922 178700 1.064 -
0.8927 178800 1.271 -
0.8932 178900 1.299 -
0.8937 179000 1.5238 -
0.8942 179100 0.9587 -
0.8947 179200 1.0332 -
0.8952 179300 0.8957 -
0.8957 179400 0.9597 -
0.8962 179500 0.9838 -
0.8967 179600 1.4963 -
0.8972 179700 1.6354 -
0.8977 179800 1.0014 -
0.8982 179900 1.5999 -
0.8987 180000 1.3327 -
0.8992 180100 0.8771 -
0.8997 180200 1.0109 -
0.9002 180300 1.3799 -
0.9007 180400 1.3794 -
0.9012 180500 1.7884 -
0.9017 180600 1.4602 -
0.9022 180700 1.3191 -
0.9027 180800 1.2309 -
0.9032 180900 1.3096 -
0.9037 181000 1.2495 -
0.9042 181100 1.1036 -
0.9047 181200 1.6753 -
0.9052 181300 1.324 -
0.9057 181400 1.158 -
0.9062 181500 1.1929 -
0.9067 181600 1.4287 -
0.9072 181700 1.5656 -
0.9077 181800 1.1926 -
0.9082 181900 1.5629 -
0.9087 182000 1.1577 -
0.9092 182100 1.169 -
0.9097 182200 1.4939 -
0.9102 182300 1.2835 -
0.9107 182400 1.2976 -
0.9112 182500 1.2605 -
0.9117 182600 1.7684 -
0.9122 182700 1.3064 -
0.9127 182800 1.3885 -
0.9132 182900 1.3835 -
0.9137 183000 1.3527 -
0.9142 183100 1.629 -
0.9147 183200 1.3145 -
0.9152 183300 0.9899 -
0.9157 183400 1.4996 -
0.9162 183500 0.9278 -
0.9167 183600 1.3074 -
0.9172 183700 1.1156 -
0.9177 183800 1.3683 -
0.9182 183900 0.9931 -
0.9187 184000 0.9698 -
0.9192 184100 1.2702 -
0.9197 184200 1.2465 -
0.9202 184300 1.4527 -
0.9207 184400 1.1934 -
0.9212 184500 1.4549 -
0.9217 184600 1.349 -
0.9222 184700 1.269 -
0.9227 184800 0.8878 -
0.9232 184900 1.4097 -
0.9237 185000 1.1173 -
0.9242 185100 1.3603 -
0.9247 185200 0.8832 -
0.9252 185300 1.4462 -
0.9257 185400 1.3945 -
0.9262 185500 0.9721 -
0.9267 185600 1.0777 -
0.9272 185700 1.2308 -
0.9277 185800 1.1218 -
0.9282 185900 1.1273 -
0.9287 186000 1.4101 -
0.9292 186100 1.469 -
0.9297 186200 1.4818 -
0.9302 186300 1.0063 -
0.9307 186400 1.1384 -
0.9312 186500 0.9416 -
0.9317 186600 1.153 -
0.9322 186700 1.4366 -
0.9327 186800 1.1285 -
0.9332 186900 1.1583 -
0.9337 187000 1.6073 -
0.9342 187100 1.2361 -
0.9347 187200 1.0766 -
0.9352 187300 0.8976 -
0.9357 187400 1.5133 -
0.9362 187500 1.1606 -
0.9367 187600 1.3198 -
0.9372 187700 1.5212 -
0.9377 187800 1.1212 -
0.9382 187900 1.5981 -
0.9387 188000 0.9907 -
0.9392 188100 1.1674 -
0.9397 188200 0.8831 -
0.9402 188300 1.3494 -
0.9407 188400 1.2806 -
0.9412 188500 1.4559 -
0.9417 188600 0.9924 -
0.9422 188700 1.8372 -
0.9427 188800 0.8002 -
0.9432 188900 1.1784 -
0.9437 189000 1.759 -
0.9441 189100 1.5051 -
0.9446 189200 1.237 -
0.9451 189300 0.9639 -
0.9456 189400 1.142 -
0.9461 189500 1.644 -
0.9466 189600 1.1911 -
0.9471 189700 1.0428 -
0.9476 189800 1.2524 -
0.9481 189900 1.3456 -
0.9486 190000 1.0336 -
0.9491 190100 1.1843 -
0.9496 190200 1.3868 -
0.9501 190300 1.2827 -
0.9506 190400 1.2601 -
0.9511 190500 1.0626 -
0.9516 190600 1.0884 -
0.9521 190700 1.4596 -
0.9526 190800 1.3155 -
0.9531 190900 1.0819 -
0.9536 191000 1.3016 -
0.9541 191100 1.3415 -
0.9546 191200 1.5237 -
0.9551 191300 1.3128 -
0.9556 191400 1.0804 -
0.9561 191500 1.3996 -
0.9566 191600 1.4266 -
0.9571 191700 1.2217 -
0.9576 191800 1.222 -
0.9581 191900 0.9832 -
0.9586 192000 1.2086 -
0.9591 192100 1.1611 -
0.9596 192200 0.9687 -
0.9601 192300 1.4154 -
0.9606 192400 0.933 -
0.9611 192500 0.9148 -
0.9616 192600 1.6066 -
0.9621 192700 1.4075 -
0.9626 192800 1.4428 -
0.9631 192900 1.3509 -
0.9636 193000 1.01 -
0.9641 193100 1.5655 -
0.9646 193200 0.9476 -
0.9651 193300 1.3025 -
0.9656 193400 1.7298 -
0.9661 193500 1.1902 -
0.9666 193600 1.2991 -
0.9671 193700 1.3415 -
0.9676 193800 1.3486 -
0.9681 193900 1.1256 -
0.9686 194000 1.0698 -
0.9691 194100 1.1012 -
0.9696 194200 1.2326 -
0.9701 194300 0.8994 -
0.9706 194400 0.8514 -
0.9711 194500 1.7449 -
0.9716 194600 1.679 -
0.9721 194700 1.1934 -
0.9726 194800 1.0204 -
0.9731 194900 1.0611 -
0.9736 195000 1.4672 -
0.9741 195100 1.3117 -
0.9746 195200 1.2362 -
0.9751 195300 1.3343 -
0.9756 195400 1.097 -
0.9761 195500 1.1416 -
0.9766 195600 1.153 -
0.9771 195700 1.1693 -
0.9776 195800 1.1727 -
0.9781 195900 1.399 -
0.9786 196000 1.0269 -
0.9791 196100 1.2056 -
0.9796 196200 1.1143 -
0.9801 196300 1.2395 -
0.9806 196400 1.1306 -
0.9811 196500 1.4748 -
0.9816 196600 1.2161 -
0.9821 196700 1.064 -
0.9826 196800 1.0183 -
0.9831 196900 1.2695 -
0.9836 197000 0.8302 -
0.9841 197100 1.4689 -
0.9846 197200 1.1666 -
0.9851 197300 1.2079 -
0.9856 197400 1.3041 -
0.9861 197500 1.4635 -
0.9866 197600 0.9462 -
0.9871 197700 1.1271 -
0.9876 197800 1.0749 -
0.9881 197900 1.3497 -
0.9886 198000 1.5134 -
0.9891 198100 1.1421 -
0.9896 198200 1.6871 -
0.9901 198300 1.2199 -
0.9906 198400 1.3277 -
0.9911 198500 1.2973 -
0.9916 198600 1.2719 -
0.9921 198700 1.4926 -
0.9926 198800 1.1047 -
0.9931 198900 1.1233 -
0.9936 199000 1.1396 -
0.9941 199100 1.4695 -
0.9946 199200 1.2127 -
0.9951 199300 1.3906 -
0.9956 199400 1.0782 -
0.9961 199500 1.0837 -
0.9966 199600 1.4171 -
0.9971 199700 1.2677 -
0.9976 199800 1.2025 -
0.9981 199900 1.2037 -
0.9986 200000 1.0005 0.9529
0.9991 200100 1.3439 -
0.9996 200200 0.995 -

Framework Versions

  • Python: 3.12.3
  • Sentence Transformers: 5.1.0
  • Transformers: 4.55.4
  • PyTorch: 2.6.0+cu124
  • Accelerate: 1.10.1
  • Datasets: 4.0.0
  • Tokenizers: 0.21.4

Citation

BibTeX

Sentence Transformers

@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",
}

CoSENTLoss

@online{kexuefm-8847,
    title={CoSENT: A more efficient sentence vector scheme than Sentence-BERT},
    author={Su Jianlin},
    year={2022},
    month={Jan},
    url={https://kexue.fm/archives/8847},
}
Downloads last month
29
Safetensors
Model size
22.7M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for KhaledReda/all-MiniLM-L6-v66-pair_score

Finetuned
(971)
this model
Finetunes
1 model

Dataset used to train KhaledReda/all-MiniLM-L6-v66-pair_score

Paper for KhaledReda/all-MiniLM-L6-v66-pair_score