CoolFace
Modelpublic

KhaledReda/all-MiniLM-L6-v15-pair_score

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes76downloads
Model Card

all-MiniLM-L6-v15-pair_score

This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2 on the pairs_three_scores_v8 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 Type: Sentence Transformer
  • Base model: sentence-transformers/all-MiniLM-L6-v2 <!-- at revision c9745ed1d9f207416be6d2e6f8de32d1f16199bf -->
  • Maximum Sequence Length: 256 tokens
  • Output Dimensionality: 384 dimensions
  • Similarity Function: Cosine Similarity
  • Training Dataset:
  • pairs_three_scores_v8
  • Language: en
  • License: apache-2.0

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:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
    'pasabah',
    'thermos mug',
    'sports tracksuit',
]
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.7949, 0.5631],
#         [0.7949, 1.0000, 0.5810],
#         [0.5631, 0.5810, 1.0000]])

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

pairsthreescores_v8
  • Dataset: pairs_three_scores_v8 at 7e8a1e6
  • Size: 9,164,180 training samples
  • Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | score | |:--------|:--------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------| | type | string | string | float | | details | <ul><li>min: 3 tokens</li><li>mean: 5.6 tokens</li><li>max: 20 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 5.79 tokens</li><li>max: 24 tokens</li></ul> | <ul><li>min: 0.15</li><li>mean: 0.43</li><li>max: 1.0</li></ul> |
  • Samples: | sentence1 | sentence2 | score | |:-----------------------------------|:----------------------------------------|:------------------| | <code>booster face cleanser</code> | <code>pizza cutter</code> | <code>0.24</code> | | <code>line sinker</code> | <code>accessories</code> | <code>1.0</code> | | <code>tricovel</code> | <code>cot bed mattress protector</code> | <code>0.28</code> |
  • Loss: <code>CoSENTLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "pairwise_cos_sim"
  }

Evaluation Dataset

pairsthreescores_v8
  • Dataset: pairs_three_scores_v8 at 7e8a1e6
  • Size: 46,052 evaluation samples
  • Columns: <code>sentence1</code>, <code>sentence2</code>, and <code>score</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | score | |:--------|:---------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:----------------------------------------------------------------| | type | string | string | float | | details | <ul><li>min: 3 tokens</li><li>mean: 5.66 tokens</li><li>max: 21 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 5.6 tokens</li><li>max: 41 tokens</li></ul> | <ul><li>min: 0.15</li><li>mean: 0.42</li><li>max: 1.0</li></ul> |
  • Samples: | sentence1 | sentence2 | score | |:-------------------------|:---------------------------------|:------------------| | <code>printed set</code> | <code>crushed outfit</code> | <code>1.0</code> | | <code>value</code> | <code>eva cosmetics serum</code> | <code>0.23</code> | | <code>zino shakes</code> | <code>candy</code> | <code>0.27</code> |
  • Loss: <code>CoSENTLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "pairwise_cos_sim"
  }

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 128
  • per_device_eval_batch_size: 128
  • learning_rate: 2e-05
  • warmup_ratio: 0.1
  • fp16: True
All Hyperparameters

<details><summary>Click to expand</summary>

  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: steps
  • prediction_loss_only: True
  • per_device_train_batch_size: 128
  • per_device_eval_batch_size: 128
  • 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: 3
  • 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: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': 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: {}

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Loss
0.001410012.1005-
0.002820011.7845-
0.004230011.9308-
0.005640011.5266-
0.007050011.283111.7428
0.008460011.1567-
0.009870011.1136-
0.011280010.8796-
0.012690010.7857-
0.0140100010.301310.6584
0.0154110010.219-
0.016812009.9544-
0.018213009.8849-
0.019614009.6718-
0.021015009.57199.7608
0.022316009.4827-
0.023717009.2958-
0.025118009.1635-
0.026519009.0311-
0.027920008.92148.8796
0.029321008.8294-
0.030722008.7182-
0.032123008.6947-
0.033524008.6355-
0.034925008.61058.5596
0.036326008.5982-
0.037727008.5766-
0.039128008.5562-
0.040529008.5614-
0.041930008.53438.4885
0.043331008.5315-
0.044732008.5113-
0.046133008.508-
0.047534008.5111-
0.048935008.50238.4402
0.050336008.4961-
0.051737008.4804-
0.053138008.4744-
0.054539008.4872-
0.055940008.47438.4051
0.057341008.4601-
0.058742008.4476-
0.060143008.4472-
0.061544008.4452-
0.062945008.4348.3794
0.064246008.4155-
0.065647008.4443-
0.067048008.4148-
0.068449008.4154-
0.069850008.48.3521
0.071251008.3959-
0.072652008.3963-
0.074053008.3941-
0.075454008.3874-
0.076855008.38438.3248
0.078256008.3778-
0.079657008.4002-
0.081058008.3779-
0.082459008.3706-
0.083860008.36338.2971
0.085261008.3647-
0.086662008.3573-
0.088063008.3421-
0.089464008.345-
0.090865008.35418.2782
0.092266008.3331-
0.093667008.3296-
0.095068008.3363-
0.096469008.325-
0.097870008.31848.2567
0.099271008.3146-
0.100672008.3078-
0.102073008.3148-
0.103474008.3018-
0.104875008.28798.2353
0.106276008.2917-
0.107577008.2965-
0.108978008.2832-
0.110379008.2937-
0.111780008.28088.2207
0.113181008.2863-
0.114582008.2815-
0.115983008.2586-
0.117384008.2683-
0.118785008.2828.1982
0.120186008.2636-
0.121587008.2504-
0.122988008.2545-
0.124389008.2618-
0.125790008.23898.1774
0.127191008.2281-
0.128592008.2406-
0.129993008.236-
0.131394008.2101-
0.132795008.23798.1628
0.134196008.2486-
0.135597008.213-
0.136998008.2188-
0.138399008.2148-
0.1397100008.2178.1547
0.1411101008.2269-
0.1425102008.2071-
0.1439103008.2027-
0.1453104008.2123-
0.1467105008.19028.1419
0.1481106008.1857-
0.1494107008.2031-
0.1508108008.1905-
0.1522109008.1674-
0.1536110008.18228.1177
0.1550111008.1951-
0.1564112008.1812-
0.1578113008.1801-
0.1592114008.1739-
0.1606115008.14858.1019
0.1620116008.1783-
0.1634117008.1684-
0.1648118008.1841-
0.1662119008.1724-
0.1676120008.15398.0841
0.1690121008.1396-
0.1704122008.1431-
0.1718123008.1335-
0.1732124008.1508-
0.1746125008.1578.0676
0.1760126008.131-
0.1774127008.1369-
0.1788128008.1295-
0.1802129008.1334-
0.1816130008.12278.0569
0.1830131008.1202-
0.1844132008.1328-
0.1858133008.1169-
0.1872134008.1193-
0.1886135008.11488.0451
0.1900136008.125-
0.1914137008.1154-
0.1927138008.1024-
0.1941139008.0967-
0.1955140008.09228.0373
0.1969141008.1017-
0.1983142008.1092-
0.1997143008.0821-
0.2011144008.106-
0.2025145008.09788.0145
0.2039146008.1022-
0.2053147008.1144-
0.2067148008.0766-
0.2081149008.105-
0.2095150008.0838.0025
0.2109151008.114-
0.2123152008.0915-
0.2137153008.0945-
0.2151154008.0739-
0.2165155008.05768.0042
0.2179156008.0696-
0.2193157008.0516-
0.2207158008.0228-
0.2221159008.0818-
0.2235160008.06277.9840
0.2249161008.0521-
0.2263162008.0386-
0.2277163008.0256-
0.2291164008.0604-
0.2305165008.04587.9677
0.2319166008.0255-
0.2333167008.0688-
0.2346168008.0209-
0.2360169008.0165-
0.2374170008.04477.9640
0.2388171008.0458-
0.2402172008.0647-
0.2416173008.0337-
0.2430174008.0219-
0.2444175008.01417.9534
0.2458176008.0198-
0.2472177008.0181-
0.2486178008.0218-
0.2500179008.0031-
0.2514180008.02417.9311
0.2528181007.987-
0.2542182007.9941-
0.2556183007.9944-
0.2570184007.9978-
0.2584185007.98977.9260
0.2598186007.9967-
0.2612187007.9798-
0.2626188007.9816-
0.2640189007.9996-
0.2654190007.99917.9113
0.2668191007.9844-
0.2682192007.9576-
0.2696193007.9908-
0.2710194007.9852-
0.2724195007.97297.8986
0.2738196007.9691-
0.2752197007.976-
0.2766198007.968-
0.2779199007.9699-
0.2793200007.96077.8946
0.2807201007.9648-
0.2821202007.9689-
0.2835203007.982-
0.2849204007.9628-
0.2863205007.95147.8851
0.2877206007.9704-
0.2891207007.952-
0.2905208007.9726-
0.2919209007.9617-
0.2933210007.977.8712
0.2947211007.9527-
0.2961212007.9456-
0.2975213007.9628-
0.2989214007.9728-
0.3003215007.95927.8624
0.3017216007.9396-
0.3031217007.9401-
0.3045218007.9267-
0.3059219007.9322-
0.3073220007.93317.8456
0.3087221007.9249-
0.3101222007.9457-
0.3115223007.9214-
0.3129224007.9436-
0.3143225007.93217.8367
0.3157226007.9164-
0.3171227007.9046-
0.3185228007.9368-
0.3199229007.9467-
0.3212230007.90857.8350
0.3226231007.9117-
0.3240232007.9237-
0.3254233007.9059-
0.3268234007.9019-
0.3282235007.89867.8226
0.3296236007.9094-
0.3310237007.8899-
0.3324238007.9106-
0.3338239007.902-
0.3352240007.88667.8188
0.3366241007.8683-
0.3380242007.8898-
0.3394243007.8918-
0.3408244007.9175-
0.3422245007.90167.8025
0.3436246007.8805-
0.3450247007.8899-
0.3464248007.9016-
0.3478249007.8815-
0.3492250007.8837.7993
0.3506251007.8714-
0.3520252007.8906-
0.3534253007.8446-
0.3548254007.852-
0.3562255007.89957.7929
0.3576256007.8283-
0.3590257007.8775-
0.3604258007.8504-
0.3618259007.8788-
0.3631260007.86647.7802
0.3645261007.8577-
0.3659262007.8549-
0.3673263007.861-
0.3687264007.8721-
0.3701265007.86197.7740
0.3715266007.8699-
0.3729267007.8148-
0.3743268007.8516-
0.3757269007.8059-
0.3771270007.85097.7620
0.3785271007.8588-
0.3799272007.8868-
0.3813273007.8543-
0.3827274007.8208-
0.3841275007.84137.7614
0.3855276007.8159-
0.3869277007.8739-
0.3883278007.8363-
0.3897279007.8484-
0.3911280007.82657.7534
0.3925281007.8583-
0.3939282007.8026-
0.3953283007.8474-
0.3967284007.8695-
0.3981285007.82527.7411
0.3995286007.8159-
0.4009287007.8278-
0.4023288007.8274-
0.4037289007.8252-
0.4051290007.83027.7396
0.4064291007.8157-
0.4078292007.8494-
0.4092293007.7891-
0.4106294007.8137-
0.4120295007.80917.7293
0.4134296007.7837-
0.4148297007.8028-
0.4162298007.7875-
0.4176299007.7941-
0.4190300007.83337.7185
0.4204301007.8283-
0.4218302007.8034-
0.4232303007.8076-
0.4246304007.8209-
0.4260305007.80497.7194
0.4274306007.787-
0.4288307007.7951-
0.4302308007.8115-
0.4316309007.8192-
0.4330310007.7827.7010
0.4344311007.8092-
0.4358312007.7724-
0.4372313007.7957-
0.4386314007.7928-
0.4400315007.81047.6952
0.4414316007.7928-
0.4428317007.816-
0.4442318007.7623-
0.4456319007.8111-
0.4470320007.79217.7007
0.4483321007.7926-
0.4497322007.7777-
0.4511323007.7754-
0.4525324007.7869-
0.4539325007.79187.6921
0.4553326007.7607-
0.4567327007.794-
0.4581328007.776-
0.4595329007.7939-
0.4609330007.75657.6862
0.4623331007.8086-
0.4637332007.7745-
0.4651333007.7939-
0.4665334007.7478-
0.4679335007.81117.6850
0.4693336007.7373-
0.4707337007.7798-
0.4721338007.7513-
0.4735339007.7548-
0.4749340007.77227.6693
0.4763341007.7614-
0.4777342007.7517-
0.4791343007.7573-
0.4805344007.7792-
0.4819345007.76097.6740
0.4833346007.7377-
0.4847347007.7378-
0.4861348007.7328-
0.4875349007.7746-
0.4889350007.75837.6641
0.4903351007.7708-
0.4916352007.724-
0.4930353007.7482-
0.4944354007.7589-
0.4958355007.72657.6599
0.4972356007.7088-
0.4986357007.742-
0.5000358007.7555-
0.5014359007.7247-
0.5028360007.74877.6525
0.5042361007.7444-
0.5056362007.735-
0.5070363007.7383-
0.5084364007.7062-
0.5098365007.76487.6502
0.5112366007.7529-
0.5126367007.7606-
0.5140368007.7308-
0.5154369007.7566-
0.5168370007.73137.6411
0.5182371007.7371-
0.5196372007.7279-
0.5210373007.724-
0.5224374007.7376-
0.5238375007.73347.6405
0.5252376007.7213-
0.5266377007.7579-
0.5280378007.7251-
0.5294379007.7365-
0.5308380007.70137.6364
0.5322381007.7255-
0.5335382007.7093-
0.5349383007.6943-
0.5363384007.7347-
0.5377385007.71227.6371
0.5391386007.7489-
0.5405387007.7072-
0.5419388007.7038-
0.5433389007.7364-
0.5447390007.70667.6235
0.5461391007.7191-
0.5475392007.6678-
0.5489393007.6862-
0.5503394007.682-
0.5517395007.72947.6250
0.5531396007.7194-
0.5545397007.7239-
0.5559398007.698-
0.5573399007.6715-
0.5587400007.73237.6149
0.5601401007.7189-
0.5615402007.7219-
0.5629403007.7001-
0.5643404007.716-
0.5657405007.71467.6112
0.5671406007.6814-
0.5685407007.6902-
0.5699408007.674-
0.5713409007.721-
0.5727410007.69317.6092
0.5741411007.686-
0.5755412007.7032-
0.5768413007.7036-
0.5782414007.6883-
0.5796415007.6967.6065
0.5810416007.6846-
0.5824417007.6739-
0.5838418007.711-
0.5852419007.6764-
0.5866420007.69237.5958
0.5880421007.7218-
0.5894422007.6849-
0.5908423007.6893-
0.5922424007.6791-
0.5936425007.68987.6046
0.5950426007.7133-
0.5964427007.6619-
0.5978428007.6776-
0.5992429007.711-
0.6006430007.66217.5892
0.6020431007.6858-
0.6034432007.6913-
0.6048433007.6764-
0.6062434007.7012-
0.6076435007.67077.5869
0.6090436007.6871-
0.6104437007.699-
0.6118438007.6853-
0.6132439007.6761-
0.6146440007.65447.5784
0.6160441007.6544-
0.6174442007.6995-
0.6187443007.6961-
0.6201444007.6562-
0.6215445007.67087.5819
0.6229446007.6487-
0.6243447007.6641-
0.6257448007.6745-
0.6271449007.6513-
0.6285450007.69347.5704
0.6299451007.6639-
0.6313452007.6569-
0.6327453007.6658-
0.6341454007.6375-
0.6355455007.64317.5784
0.6369456007.6404-
0.6383457007.6439-
0.6397458007.6593-
0.6411459007.6554-
0.6425460007.67567.5541
0.6439461007.6482-
0.6453462007.6574-
0.6467463007.6455-
0.6481464007.6264-
0.6495465007.62867.5691
0.6509466007.653-
0.6523467007.6213-
0.6537468007.6568-
0.6551469007.6746-
0.6565470007.65897.5531
0.6579471007.6397-
0.6593472007.636-
0.6607473007.6795-
0.6620474007.6693-
0.6634475007.63827.5597
0.6648476007.6584-
0.6662477007.6251-
0.6676478007.6479-
0.6690479007.6523-
0.6704480007.64967.5535
0.6718481007.6676-
0.6732482007.6491-
0.6746483007.6264-
0.6760484007.6527-
0.6774485007.66847.5433
0.6788486007.6592-
0.6802487007.5999-
0.6816488007.6421-
0.6830489007.6211-
0.6844490007.6187.5494
0.6858491007.6476-
0.6872492007.6069-
0.6886493007.6084-
0.6900494007.634-
0.6914495007.6537.5432
0.6928496007.6403-
0.6942497007.6219-
0.6956498007.662-
0.6970499007.657-
0.6984500007.66627.5421
0.6998501007.6359-
0.7012502007.6096-
0.7026503007.6055-
0.7039504007.6593-
0.7053505007.64297.5416
0.7067506007.6106-
0.7081507007.5882-
0.7095508007.6153-
0.7109509007.6434-
0.7123510007.62497.5330
0.7137511007.5987-
0.7151512007.6348-
0.7165513007.656-
0.7179514007.6322-
0.7193515007.63237.5454
0.7207516007.6617-
0.7221517007.628-
0.7235518007.6146-
0.7249519007.6415-
0.7263520007.61227.5221
0.7277521007.612-
0.7291522007.5756-
0.7305523007.6118-
0.7319524007.6496-
0.7333525007.6377.5269
0.7347526007.6301-
0.7361527007.6223-
0.7375528007.569-
0.7389529007.5812-
0.7403530007.62147.5195
0.7417531007.6037-
0.7431532007.627-
0.7445533007.6037-
0.7459534007.6534-
0.7472535007.63657.5243
0.7486536007.6232-
0.7500537007.5995-
0.7514538007.64-
0.7528539007.615-
0.7542540007.58157.5252
0.7556541007.6125-
0.7570542007.6021-
0.7584543007.5789-
0.7598544007.6053-
0.7612545007.58637.5255
0.7626546007.6016-
0.7640547007.62-
0.7654548007.6119-
0.7668549007.6097-
0.7682550007.59577.5096
0.7696551007.6091-
0.7710552007.6038-
0.7724553007.6067-
0.7738554007.58-
0.7752555007.55437.5121
0.7766556007.6234-
0.7780557007.5941-
0.7794558007.5778-
0.7808559007.6294-
0.7822560007.60777.5093
0.7836561007.6034-
0.7850562007.6177-
0.7864563007.6086-
0.7878564007.5817-
0.7892565007.55867.4990
0.7905566007.6367-
0.7919567007.575-
0.7933568007.6228-
0.7947569007.5902-
0.7961570007.59557.4979
0.7975571007.5949-
0.7989572007.6127-
0.8003573007.6245-
0.8017574007.6191-
0.8031575007.577.4977
0.8045576007.5551-
0.8059577007.5668-
0.8073578007.5978-
0.8087579007.6294-
0.8101580007.59817.5020
0.8115581007.5576-
0.8129582007.6324-
0.8143583007.6158-
0.8157584007.5727-
0.8171585007.57717.4924
0.8185586007.6238-
0.8199587007.5719-
0.8213588007.5802-
0.8227589007.5859-
0.8241590007.62537.4833
0.8255591007.5967-
0.8269592007.5884-
0.8283593007.5661-
0.8297594007.5561-
0.8311595007.61077.4808
0.8324596007.6287-
0.8338597007.5673-
0.8352598007.5971-
0.8366599007.5769-
0.8380600007.57547.4875
0.8394601007.5872-
0.8408602007.5874-
0.8422603007.5789-
0.8436604007.5414-
0.8450605007.56487.4840
0.8464606007.5969-
0.8478607007.562-
0.8492608007.5926-
0.8506609007.5314-
0.8520610007.58027.4771
0.8534611007.6055-
0.8548612007.5991-
0.8562613007.5767-
0.8576614007.5842-
0.8590615007.56847.4761
0.8604616007.5824-
0.8618617007.61-
0.8632618007.6068-
0.8646619007.5491-
0.8660620007.57727.4631
0.8674621007.546-
0.8688622007.5705-
0.8702623007.5633-
0.8716624007.5575-
0.8730625007.58477.4621
0.8744626007.5778-
0.8757627007.5436-
0.8771628007.5417-
0.8785629007.5416-
0.8799630007.55587.4706
0.8813631007.5452-
0.8827632007.572-
0.8841633007.5802-
0.8855634007.5381-
0.8869635007.56577.4723
0.8883636007.5589-
0.8897637007.5503-
0.8911638007.5579-
0.8925639007.5442-
0.8939640007.57437.4653
0.8953641007.5505-
0.8967642007.6027-
0.8981643007.5268-
0.8995644007.5824-
0.9009645007.55327.4656
0.9023646007.5323-
0.9037647007.5949-
0.9051648007.5439-
0.9065649007.5263-
0.9079650007.54147.4560
0.9093651007.5239-
0.9107652007.4981-
0.9121653007.5574-
0.9135654007.5362-
0.9149655007.57157.4528
0.9163656007.5344-
0.9176657007.5462-
0.9190658007.5459-
0.9204659007.5424-
0.9218660007.54637.4447
0.9232661007.5369-
0.9246662007.5284-
0.9260663007.5238-
0.9274664007.5146-
0.9288665007.57487.4455
0.9302666007.541-
0.9316667007.5955-
0.9330668007.4921-
0.9344669007.4975-
0.9358670007.53987.4555
0.9372671007.5642-
0.9386672007.5596-
0.9400673007.5432-
0.9414674007.5017-
0.9428675007.52857.4485
0.9442676007.5241-
0.9456677007.5119-
0.9470678007.556-
0.9484679007.5342-
0.9498680007.53447.4439
0.9512681007.5242-
0.9526682007.5527-
0.9540683007.5418-
0.9554684007.5521-
0.9568685007.55727.4411
0.9582686007.5388-
0.9596687007.5497-
0.9609688007.5612-
0.9623689007.5145-
0.9637690007.55637.4422
0.9651691007.5283-
0.9665692007.5152-
0.9679693007.5037-
0.9693694007.5551-
0.9707695007.50457.4403
0.9721696007.5129-
0.9735697007.547-
0.9749698007.5603-
0.9763699007.5159-
0.9777700007.53317.4412
0.9791701007.5131-
0.9805702007.5025-
0.9819703007.561-
0.9833704007.5556-
0.9847705007.56757.4404
0.9861706007.5145-
0.9875707007.5022-
0.9889708007.5288-
0.9903709007.5262-
0.9917710007.49257.4382
0.9931711007.5402-
0.9945712007.4696-
0.9959713007.5077-
0.9973714007.518-
0.9987715007.51847.4352
1.0001716007.4782-
1.0015717007.4941-
1.0028718007.4901-
1.0042719007.5004-
1.0056720007.52827.4278
1.0070721007.4756-
1.0084722007.5252-
1.0098723007.536-
1.0112724007.51-
1.0126725007.53777.4169
1.0140726007.492-
1.0154727007.564-
1.0168728007.4693-
1.0182729007.5229-
1.0196730007.52267.4253
1.0210731007.519-
1.0224732007.5005-
1.0238733007.5364-
1.0252734007.5209-
1.0266735007.47287.4303
1.0280736007.4964-
1.0294737007.4879-
1.0308738007.5237-
1.0322739007.5227-
1.0336740007.50747.4301
1.0350741007.4943-
1.0364742007.5263-
1.0378743007.4886-
1.0392744007.5007-
1.0406745007.47577.4219
1.0420746007.5033-
1.0434747007.5003-
1.0448748007.5192-
1.0461749007.5044-
1.0475750007.49637.4249
1.0489751007.4741-
1.0503752007.4503-
1.0517753007.5245-
1.0531754007.4855-
1.0545755007.48637.4115
1.0559756007.4774-
1.0573757007.5228-
1.0587758007.5082-
1.0601759007.4924-
1.0615760007.51517.4196
1.0629761007.5791-
1.0643762007.5213-
1.0657763007.4474-
1.0671764007.467-
1.0685765007.48237.4170
1.0699766007.4992-
1.0713767007.5257-
1.0727768007.5021-
1.0741769007.5527-
1.0755770007.52237.4093
1.0769771007.4726-
1.0783772007.4666-
1.0797773007.4691-
1.0811774007.5138-
1.0825775007.46667.4117
1.0839776007.4717-
1.0853777007.459-
1.0867778007.4625-
1.0880779007.4805-
1.0894780007.48787.4120
1.0908781007.5385-
1.0922782007.5099-
1.0936783007.4984-
1.0950784007.4898-
1.0964785007.48757.4115
1.0978786007.5011-
1.0992787007.4759-
1.1006788007.5223-
1.1020789007.4323-
1.1034790007.51087.3992
1.1048791007.4835-
1.1062792007.4688-
1.1076793007.4779-
1.1090794007.4917-
1.1104795007.51197.4006
1.1118796007.4771-
1.1132797007.4849-
1.1146798007.465-
1.1160799007.4697-
1.1174800007.46727.3988
1.1188801007.4706-
1.1202802007.4734-
1.1216803007.4792-
1.1230804007.502-
1.1244805007.527.3925
1.1258806007.486-
1.1272807007.4772-
1.1286808007.4734-
1.1300809007.4938-
1.1313810007.4927.3844
1.1327811007.4563-
1.1341812007.5001-
1.1355813007.4816-
1.1369814007.4383-
1.1383815007.49837.3925
1.1397816007.5262-
1.1411817007.4702-
1.1425818007.4717-
1.1439819007.4464-
1.1453820007.49767.3858
1.1467821007.4771-
1.1481822007.4707-
1.1495823007.4795-
1.1509824007.4867-
1.1523825007.47327.3817
1.1537826007.5013-
1.1551827007.5192-
1.1565828007.4762-
1.1579829007.4968-
1.1593830007.46557.3759
1.1607831007.5014-
1.1621832007.4891-
1.1635833007.4591-
1.1649834007.4609-
1.1663835007.44167.3892
1.1677836007.454-
1.1691837007.4745-
1.1705838007.4898-
1.1719839007.4744-
1.1732840007.48627.3855
1.1746841007.4435-
1.1760842007.4412-
1.1774843007.4791-
1.1788844007.4903-
1.1802845007.46417.3738
1.1816846007.4909-
1.1830847007.4622-
1.1844848007.5089-
1.1858849007.4947-
1.1872850007.48947.3756
1.1886851007.4757-
1.1900852007.4602-
1.1914853007.52-
1.1928854007.4658-
1.1942855007.44087.3810
1.1956856007.4518-
1.1970857007.454-
1.1984858007.4894-
1.1998859007.4578-
1.2012860007.45447.3851
1.2026861007.4683-
1.2040862007.4674-
1.2054863007.4721-
1.2068864007.4709-
1.2082865007.46037.3761
1.2096866007.4723-
1.2110867007.4993-
1.2124868007.4499-
1.2138869007.4475-
1.2152870007.46627.3687
1.2165871007.463-
1.2179872007.4552-
1.2193873007.4575-
1.2207874007.4479-
1.2221875007.48367.3677
1.2235876007.4436-
1.2249877007.4922-
1.2263878007.49-
1.2277879007.4424-
1.2291880007.46727.3578
1.2305881007.4688-
1.2319882007.5013-
1.2333883007.4506-
1.2347884007.4515-
1.2361885007.41077.3693
1.2375886007.4517-
1.2389887007.5316-
1.2403888007.4636-
1.2417889007.4485-
1.2431890007.44747.3685
1.2445891007.4225-
1.2459892007.427-
1.2473893007.4565-
1.2487894007.4284-
1.2501895007.48667.3682
1.2515896007.497-
1.2529897007.4691-
1.2543898007.4419-
1.2557899007.4242-
1.2571900007.45077.3625
1.2585901007.4429-
1.2598902007.4389-
1.2612903007.4701-
1.2626904007.4235-
1.2640905007.47127.3605
1.2654906007.4864-
1.2668907007.4548-
1.2682908007.4671-
1.2696909007.4744-
1.2710910007.43417.3615
1.2724911007.4681-
1.2738912007.4574-
1.2752913007.4595-
1.2766914007.4669-
1.2780915007.4377.3567
1.2794916007.4878-
1.2808917007.4253-
1.2822918007.4738-
1.2836919007.479-
1.2850920007.45327.3578
1.2864921007.4957-
1.2878922007.4315-
1.2892923007.4524-
1.2906924007.4204-
1.2920925007.4057.3559
1.2934926007.4335-
1.2948927007.4262-
1.2962928007.4514-
1.2976929007.4616-
1.2990930007.46397.3499
1.3004931007.4389-
1.3017932007.4743-
1.3031933007.4258-
1.3045934007.5066-
1.3059935007.43967.3518
1.3073936007.4719-
1.3087937007.4434-
1.3101938007.4795-
1.3115939007.4005-
1.3129940007.42847.3513
1.3143941007.4735-
1.3157942007.501-
1.3171943007.393-
1.3185944007.4142-
1.3199945007.47217.3425
1.3213946007.3615-
1.3227947007.5029-
1.3241948007.412-
1.3255949007.4186-
1.3269950007.44277.3523
1.3283951007.4455-
1.3297952007.4233-
1.3311953007.4392-
1.3325954007.4238-
1.3339955007.43517.3540
1.3353956007.4401-
1.3367957007.4206-
1.3381958007.485-
1.3395959007.4423-
1.3409960007.45537.3518
1.3423961007.4528-
1.3437962007.3688-
1.3450963007.4475-
1.3464964007.4574-
1.3478965007.46717.3506
1.3492966007.4242-
1.3506967007.4453-
1.3520968007.4353-
1.3534969007.4617-
1.3548970007.45127.3410
1.3562971007.4276-
1.3576972007.4566-
1.3590973007.4069-
1.3604974007.4541-
1.3618975007.42627.3453
1.3632976007.4198-
1.3646977007.4582-
1.3660978007.4415-
1.3674979007.4277-
1.3688980007.43157.3419
1.3702981007.4644-
1.3716982007.4358-
1.3730983007.4393-
1.3744984007.4206-
1.3758985007.44767.3321
1.3772986007.4759-
1.3786987007.4512-
1.3800988007.4609-
1.3814989007.4133-
1.3828990007.41457.3335
1.3842991007.4171-
1.3856992007.4066-
1.3869993007.4319-
1.3883994007.4185-
1.3897995007.46097.3406
1.3911996007.4384-
1.3925997007.4265-
1.3939998007.4399-
1.3953999007.3966-
1.39671000007.4457.3394
1.39811001007.4411-
1.39951002007.4247-
1.40091003007.4383-
1.40231004007.4688-
1.40371005007.41477.3291
1.40511006007.4168-
1.40651007007.4317-
1.40791008007.4577-
1.40931009007.398-
1.41071010007.45337.3325
1.41211011007.4591-
1.41351012007.4054-
1.41491013007.403-
1.41631014007.444-
1.41771015007.42727.3339
1.41911016007.4367-
1.42051017007.4425-
1.42191018007.42-
1.42331019007.3825-
1.42471020007.42127.3296
1.42611021007.487-
1.42751022007.4161-
1.42891023007.4106-
1.43021024007.4135-
1.43161025007.45957.3385
1.43301026007.4381-
1.43441027007.4174-
1.43581028007.3998-
1.43721029007.4119-
1.43861030007.42887.3346
1.44001031007.3832-
1.44141032007.4123-
1.44281033007.4162-
1.44421034007.4238-
1.44561035007.39997.3303
1.44701036007.4231-
1.44841037007.43-
1.44981038007.4279-
1.45121039007.4193-
1.45261040007.41767.3337
1.45401041007.4243-
1.45541042007.3879-
1.45681043007.4499-
1.45821044007.4222-
1.45961045007.41777.3305
1.46101046007.4432-
1.46241047007.4129-
1.46381048007.4177-
1.46521049007.4806-
1.46661050007.4487.3258
1.46801051007.4534-
1.46941052007.4113-
1.47081053007.4865-
1.47211054007.4336-
1.47351055007.4247.3226
1.47491056007.418-
1.47631057007.3815-
1.47771058007.3964-
1.47911059007.3963-
1.48051060007.36467.3276
1.48191061007.4319-
1.48331062007.4728-
1.48471063007.3873-
1.48611064007.425-
1.48751065007.3747.3232
1.48891066007.4639-
1.49031067007.3714-
1.49171068007.4241-
1.49311069007.4198-
1.49451070007.44387.3166
1.49591071007.3889-
1.49731072007.3949-
1.49871073007.4022-
1.50011074007.4416-
1.50151075007.4227.3258
1.50291076007.3999-
1.50431077007.4162-
1.50571078007.4322-
1.50711079007.4508-
1.50851080007.42857.3177
1.50991081007.4393-
1.51131082007.3841-
1.51271083007.4485-
1.51411084007.3934-
1.51541085007.39817.3186
1.51681086007.39-
1.51821087007.4459-
1.51961088007.4584-
1.52101089007.4129-
1.52241090007.4617.3137
1.52381091007.4603-
1.52521092007.4139-
1.52661093007.3722-
1.52801094007.419-
1.52941095007.38547.3144
1.53081096007.3911-
1.53221097007.4399-
1.53361098007.4364-
1.53501099007.4202-
1.53641100007.40527.3120
1.53781101007.4202-
1.53921102007.4059-
1.54061103007.3833-
1.54201104007.3971-
1.54341105007.3737.3130
1.54481106007.4018-
1.54621107007.3865-
1.54761108007.3912-
1.54901109007.4175-
1.55041110007.43297.3107
1.55181111007.4096-
1.55321112007.4458-
1.55461113007.4334-
1.55601114007.4022-
1.55731115007.41817.3124
1.55871116007.3979-
1.56011117007.4064-
1.56151118007.3573-
1.56291119007.4133-
1.56431120007.37577.3134
1.56571121007.4534-
1.56711122007.4495-
1.56851123007.4078-
1.56991124007.3971-
1.57131125007.42767.3092
1.57271126007.4297-
1.57411127007.3766-
1.57551128007.3565-
1.57691129007.3467-
1.57831130007.41687.3099
1.57971131007.4206-
1.58111132007.4398-
1.58251133007.3519-
1.58391134007.4415-
1.58531135007.38657.3042
1.58671136007.3828-
1.58811137007.3751-
1.58951138007.4415-
1.59091139007.38-
1.59231140007.40037.3072
1.59371141007.3927-
1.59511142007.384-
1.59651143007.39-
1.59791144007.3415-
1.59931145007.42887.3112
1.60061146007.4034-
1.60201147007.3948-
1.60341148007.419-
1.60481149007.3942-
1.60621150007.40857.3080
1.60761151007.4153-
1.60901152007.3991-
1.61041153007.4066-
1.61181154007.3492-
1.61321155007.39527.3053
1.61461156007.4414-
1.61601157007.4042-
1.61741158007.3535-
1.61881159007.4301-
1.62021160007.41447.3042
1.62161161007.3757-
1.62301162007.417-
1.62441163007.3725-
1.62581164007.4406-
1.62721165007.36677.3001
1.62861166007.3532-
1.63001167007.4438-
1.63141168007.3993-
1.63281169007.438-
1.63421170007.40687.2997
1.63561171007.3955-
1.63701172007.4081-
1.63841173007.3654-
1.63981174007.3697-
1.64121175007.38987.3044
1.64251176007.4426-
1.64391177007.3885-
1.64531178007.3767-
1.64671179007.4112-
1.64811180007.38317.2955
1.64951181007.3565-
1.65091182007.3847-
1.65231183007.3874-
1.65371184007.3943-
1.65511185007.4147.2964
1.65651186007.3707-
1.65791187007.4009-
1.65931188007.3709-
1.66071189007.4356-
1.66211190007.39327.2935
1.66351191007.3695-
1.66491192007.3969-
1.66631193007.3459-
1.66771194007.3879-
1.66911195007.39277.2952
1.67051196007.3585-
1.67191197007.3662-
1.67331198007.4078-
1.67471199007.4647-
1.67611200007.39237.2949
1.67751201007.3623-
1.67891202007.3941-
1.68031203007.3547-
1.68171204007.3531-
1.68311205007.34967.2875
1.68451206007.3569-
1.68581207007.3876-
1.68721208007.4051-
1.68861209007.3877-
1.69001210007.39287.2880
1.69141211007.389-
1.69281212007.3686-
1.69421213007.3667-
1.69561214007.3658-
1.69701215007.40877.2831
1.69841216007.3722-
1.69981217007.3575-
1.70121218007.3967-
1.70261219007.3178-
1.70401220007.42637.2853
1.70541221007.3673-
1.70681222007.3616-
1.70821223007.4166-
1.70961224007.3454-
1.71101225007.38957.2893
1.71241226007.3943-
1.71381227007.3966-
1.71521228007.3723-
1.71661229007.4161-
1.71801230007.34657.2835
1.71941231007.3948-
1.72081232007.3825-
1.72221233007.3742-
1.72361234007.3602-
1.72501235007.35647.2755
1.72641236007.3498-
1.72781237007.3562-
1.72911238007.4639-
1.73051239007.377-
1.73191240007.37747.2745
1.73331241007.3815-
1.73471242007.4188-
1.73611243007.3776-
1.73751244007.3955-
1.73891245007.37627.2717
1.74031246007.3787-
1.74171247007.3714-
1.74311248007.4175-
1.74451249007.3283-
1.74591250007.34887.2737
1.74731251007.3798-
1.74871252007.4141-
1.75011253007.3505-
1.75151254007.4051-
1.75291255007.34267.2725
1.75431256007.3838-
1.75571257007.382-
1.75711258007.3617-
1.75851259007.3345-
1.75991260007.36667.2769
1.76131261007.4314-
1.76271262007.415-
1.76411263007.4029-
1.76551264007.406-
1.76691265007.35397.2799
1.76831266007.3702-
1.76971267007.3517-
1.77101268007.3681-
1.77241269007.3852-
1.77381270007.34927.2765
1.77521271007.3482-
1.77661272007.3894-
1.77801273007.3819-
1.77941274007.3703-
1.78081275007.37847.2780
1.78221276007.3369-
1.78361277007.3665-
1.78501278007.4265-
1.78641279007.3536-
1.78781280007.35897.2714
1.78921281007.4297-
1.79061282007.3736-
1.79201283007.3788-
1.79341284007.398-
1.79481285007.34377.2733
1.79621286007.384-
1.79761287007.3957-
1.79901288007.404-
1.80041289007.3623-
1.80181290007.3457.2734
1.80321291007.3505-
1.80461292007.3549-
1.80601293007.4113-
1.80741294007.3441-
1.80881295007.41647.2664
1.81021296007.367-
1.81161297007.3781-
1.81301298007.3133-
1.81431299007.3499-
1.81571300007.35017.2778
1.81711301007.3525-
1.81851302007.3673-
1.81991303007.3219-
1.82131304007.3453-
1.82271305007.32547.2763
1.82411306007.319-
1.82551307007.4377-
1.82691308007.3988-
1.82831309007.3669-
1.82971310007.31967.2630
1.83111311007.3544-
1.83251312007.4226-
1.83391313007.3527-
1.83531314007.3607-
1.83671315007.35357.2661
1.83811316007.4416-
1.83951317007.3974-
1.84091318007.3579-
1.84231319007.3543-
1.84371320007.40347.2615
1.84511321007.3807-
1.84651322007.3491-
1.84791323007.3643-
1.84931324007.3705-
1.85071325007.34247.2665
1.85211326007.4091-
1.85351327007.3487-
1.85491328007.3754-
1.85621329007.3614-
1.85761330007.37067.2640
1.85901331007.3241-
1.86041332007.3563-
1.86181333007.375-
1.86321334007.39-
1.86461335007.3397.2649
1.86601336007.3124-
1.86741337007.3451-
1.86881338007.4036-
1.87021339007.4332-
1.87161340007.35957.2634
1.87301341007.3304-
1.87441342007.3517-
1.87581343007.3464-
1.87721344007.3736-
1.87861345007.36557.2563
1.88001346007.3531-
1.88141347007.3719-
1.88281348007.358-
1.88421349007.3771-
1.88561350007.36767.2624
1.88701351007.4358-
1.88841352007.3816-
1.88981353007.3698-
1.89121354007.4109-
1.89261355007.34377.2637
1.89401356007.3626-
1.89541357007.3019-
1.89681358007.3109-
1.89821359007.4189-
1.89951360007.3797.2638
1.90091361007.2834-
1.90231362007.3659-
1.90371363007.301-
1.90511364007.3694-
1.90651365007.41347.2559
1.90791366007.3613-
1.90931367007.3723-
1.91071368007.359-
1.91211369007.3488-
1.91351370007.37037.2624
1.91491371007.373-
1.91631372007.3536-
1.91771373007.3622-
1.91911374007.3475-
1.92051375007.34977.2599
1.92191376007.3156-
1.92331377007.3936-
1.92471378007.3661-
1.92611379007.3823-
1.92751380007.37047.2590
1.92891381007.3324-
1.93031382007.3413-
1.93171383007.4154-
1.93311384007.38-
1.93451385007.3727.2686
1.93591386007.3276-
1.93731387007.3933-
1.93871388007.3545-
1.94011389007.3212-
1.94141390007.3857.2629
1.94281391007.3076-
1.94421392007.3437-
1.94561393007.3821-
1.94701394007.3561-
1.94841395007.37617.2564
1.94981396007.345-
1.95121397007.3862-
1.95261398007.3147-
1.95401399007.3153-
1.95541400007.37597.2581
1.95681401007.3512-
1.95821402007.3221-
1.95961403007.3221-
1.96101404007.3378-
1.96241405007.4187.2522
1.96381406007.3232-
1.96521407007.3644-
1.96661408007.3327-
1.96801409007.4102-
1.96941410007.38087.2519
1.97081411007.4179-
1.97221412007.3593-
1.97361413007.3611-
1.97501414007.3889-
1.97641415007.37257.2528
1.97781416007.3545-
1.97921417007.3513-
1.98061418007.3562-
1.98201419007.4105-
1.98341420007.37887.2455
1.98471421007.3548-
1.98611422007.3189-
1.98751423007.3751-
1.98891424007.3456-
1.99031425007.34097.2416
1.99171426007.3857-
1.99311427007.3424-
1.99451428007.3697-
1.99591429007.3368-
1.99731430007.32817.2470
1.99871431007.349-
2.00011432007.3104-
2.00151433007.2866-
2.00291434007.2938-
2.00431435007.28327.2525
2.00571436007.3134-
2.00711437007.3422-
2.00851438007.354-
2.00991439007.3762-
2.01131440007.34217.2496
2.01271441007.3682-
2.01411442007.3433-
2.01551443007.3206-
2.01691444007.3427-
2.01831445007.3087.2491
2.01971446007.3576-
2.02111447007.3634-
2.02251448007.3163-
2.02391449007.3355-
2.02531450007.29937.2443
2.02661451007.3124-
2.02801452007.2989-
2.02941453007.2777-
2.03081454007.318-
2.03221455007.31917.2536
2.03361456007.3191-
2.03501457007.3389-
2.03641458007.3943-
2.03781459007.3429-
2.03921460007.27597.2508
2.04061461007.3273-
2.04201462007.3089-
2.04341463007.3489-
2.04481464007.3907-
2.04621465007.31927.2514
2.04761466007.37-
2.04901467007.3114-
2.05041468007.3059-
2.05181469007.3484-
2.05321470007.35457.2489
2.05461471007.3185-
2.05601472007.3305-
2.05741473007.35-
2.05881474007.3258-
2.06021475007.32187.2510
2.06161476007.3148-
2.06301477007.3125-
2.06441478007.3701-
2.06581479007.3303-
2.06721480007.32017.2497
2.06861481007.344-
2.06991482007.3358-
2.07131483007.308-
2.07271484007.3214-
2.07411485007.26367.2422
2.07551486007.338-
2.07691487007.3584-
2.07831488007.3236-
2.07971489007.3017-
2.08111490007.28717.2389
2.08251491007.3121-
2.08391492007.3548-
2.08531493007.3195-
2.08671494007.3278-
2.08811495007.34297.2485
2.08951496007.3276-
2.09091497007.3815-
2.09231498007.3446-
2.09371499007.3106-
2.09511500007.33157.2442
2.09651501007.3411-
2.09791502007.3313-
2.09931503007.3385-
2.10071504007.3303-
2.10211505007.30257.2433
2.10351506007.3437-
2.10491507007.2959-
2.10631508007.2778-
2.10771509007.3299-
2.10911510007.3147.2409
2.11051511007.3464-
2.11181512007.3584-
2.11321513007.3949-
2.11461514007.2995-
2.11601515007.33027.2409
2.11741516007.3365-
2.11881517007.3126-
2.12021518007.3152-
2.12161519007.3025-
2.12301520007.30237.2481
2.12441521007.2937-
2.12581522007.2798-
2.12721523007.3191-
2.12861524007.3291-
2.13001525007.39397.2443
2.13141526007.3475-
2.13281527007.3048-
2.13421528007.2723-
2.13561529007.2999-
2.13701530007.32287.2454
2.13841531007.3303-
2.13981532007.3118-
2.14121533007.3226-
2.14261534007.3091-
2.14401535007.38077.2413
2.14541536007.3662-
2.14681537007.3398-
2.14821538007.3428-
2.14961539007.2802-
2.15101540007.30417.2479
2.15241541007.2864-
2.15381542007.3573-
2.15511543007.3208-
2.15651544007.3924-
2.15791545007.32877.2377
2.15931546007.3007-
2.16071547007.3419-
2.16211548007.3107-
2.16351549007.351-
2.16491550007.36967.2341
2.16631551007.3428-
2.16771552007.3401-
2.16911553007.3192-
2.17051554007.3308-
2.17191555007.29687.2310
2.17331556007.345-
2.17471557007.2876-
2.17611558007.3395-
2.17751559007.2743-
2.17891560007.30487.2278
2.18031561007.2968-
2.18171562007.304-
2.18311563007.2979-
2.18451564007.3222-
2.18591565007.30877.2294
2.18731566007.3287-
2.18871567007.3045-
2.19011568007.282-
2.19151569007.3118-
2.19291570007.30277.2329
2.19431571007.3439-
2.19571572007.3048-
2.19711573007.2491-
2.19841574007.3033-
2.19981575007.28987.2295
2.20121576007.3246-
2.20261577007.308-
2.20401578007.289-
2.20541579007.3002-
2.20681580007.27127.2300
2.20821581007.3082-
2.20961582007.2943-
2.21101583007.303-
2.21241584007.36-
2.21381585007.30177.2331
2.21521586007.3369-
2.21661587007.3325-
2.21801588007.3156-
2.21941589007.2915-
2.22081590007.28117.2308
2.22221591007.33-
2.22361592007.3608-
2.22501593007.3074-
2.22641594007.2516-
2.22781595007.29277.2327
2.22921596007.2609-
2.23061597007.2576-
2.23201598007.2788-
2.23341599007.3519-
2.23481600007.31837.2274
2.23621601007.3151-
2.23761602007.2841-
2.23901603007.3345-
2.24031604007.3395-
2.24171605007.32877.2291
2.24311606007.3534-
2.24451607007.2882-
2.24591608007.2799-
2.24731609007.2917-
2.24871610007.33217.2309
2.25011611007.3029-
2.25151612007.3154-
2.25291613007.3071-
2.25431614007.2898-
2.25571615007.35697.2289
2.25711616007.2799-
2.25851617007.3055-
2.25991618007.3318-
2.26131619007.3151-
2.26271620007.33447.2232
2.26411621007.3175-
2.26551622007.3058-
2.26691623007.3098-
2.26831624007.3117-
2.26971625007.33237.2170
2.27111626007.3143-
2.27251627007.3185-
2.27391628007.2857-
2.27531629007.3179-
2.27671630007.28047.2178
2.27811631007.2602-
2.27951632007.3945-
2.28091633007.3127-
2.28231634007.2603-
2.28361635007.39557.2154
2.28501636007.3571-
2.28641637007.3685-
2.28781638007.3137-
2.28921639007.3134-
2.29061640007.32597.2164
2.29201641007.2971-
2.29341642007.2757-
2.29481643007.3488-
2.29621644007.278-
2.29761645007.2937.2171
2.29901646007.2647-
2.30041647007.3247-
2.30181648007.2974-
2.30321649007.2486-
2.30461650007.38727.2167
2.30601651007.3051-
2.30741652007.3345-
2.30881653007.3054-
2.31021654007.3863-
2.31161655007.30337.2115
2.31301656007.2665-
2.31441657007.3614-
2.31581658007.2915-
2.31721659007.275-
2.31861660007.28817.2138
2.32001661007.3385-
2.32141662007.262-
2.32281663007.3271-
2.32421664007.312-
2.32551665007.27657.2183
2.32691666007.3658-
2.32831667007.3288-
2.32971668007.2983-
2.33111669007.32-
2.33251670007.31797.2184
2.33391671007.3456-
2.33531672007.3448-
2.33671673007.2967-
2.33811674007.2762-
2.33951675007.26717.2176
2.34091676007.3259-
2.34231677007.2785-
2.34371678007.3411-
2.34511679007.259-
2.34651680007.31587.2174
2.34791681007.2636-
2.34931682007.2761-
2.35071683007.3313-
2.35211684007.3062-
2.35351685007.30187.2178
2.35491686007.297-
2.35631687007.3171-
2.35771688007.3131-
2.35911689007.2629-
2.36051690007.35427.2135
2.36191691007.3249-
2.36331692007.3281-
2.36471693007.2961-
2.36611694007.259-
2.36751695007.31887.2156
2.36881696007.3026-
2.37021697007.2861-
2.37161698007.2868-
2.37301699007.2482-
2.37441700007.29177.2082
2.37581701007.296-
2.37721702007.3291-
2.37861703007.2873-
2.38001704007.2972-
2.38141705007.28397.2122
2.38281706007.338-
2.38421707007.2534-
2.38561708007.2814-
2.38701709007.3249-
2.38841710007.31327.2112
2.38981711007.3041-
2.39121712007.2873-
2.39261713007.3047-
2.39401714007.2862-
2.39541715007.29157.2169
2.39681716007.3199-
2.39821717007.3371-
2.39961718007.3008-
2.40101719007.3091-
2.40241720007.34987.2126
2.40381721007.2807-
2.40521722007.2719-
2.40661723007.2747-
2.40801724007.3028-
2.40941725007.33777.2162
2.41071726007.2937-
2.41211727007.2946-
2.41351728007.2675-
2.41491729007.3463-
2.41631730007.35737.2096
2.41771731007.2735-
2.41911732007.2986-
2.42051733007.314-
2.42191734007.3339-
2.42331735007.33257.2121
2.42471736007.2953-
2.42611737007.3062-
2.42751738007.2839-
2.42891739007.2803-
2.43031740007.27057.2129
2.43171741007.2881-
2.43311742007.289-
2.43451743007.2894-
2.43591744007.3297-
2.43731745007.30317.2111
2.43871746007.3047-
2.44011747007.2708-
2.44151748007.273-
2.44291749007.2946-
2.44431750007.28847.2113
2.44571751007.2696-
2.44711752007.2226-
2.44851753007.3291-
2.44991754007.2454-
2.45131755007.3047.2106
2.45271756007.326-
2.45401757007.3239-
2.45541758007.3112-
2.45681759007.2739-
2.45821760007.29047.2165
2.45961761007.2808-
2.46101762007.285-
2.46241763007.3024-
2.46381764007.2859-
2.46521765007.3227.2154
2.46661766007.3197-
2.46801767007.2602-
2.46941768007.3547-
2.47081769007.3492-
2.47221770007.27457.2086
2.47361771007.3312-
2.47501772007.3061-
2.47641773007.2977-
2.47781774007.315-
2.47921775007.34177.2120
2.48061776007.3253-
2.48201777007.2642-
2.48341778007.281-
2.48481779007.3196-
2.48621780007.30037.2109
2.48761781007.3547-
2.48901782007.3273-
2.49041783007.291-
2.49181784007.2992-
2.49321785007.20977.2127
2.49461786007.2916-
2.49591787007.3876-
2.49731788007.2545-
2.49871789007.2868-
2.50011790007.33717.2077
2.50151791007.2357-
2.50291792007.2748-
2.50431793007.3157-
2.50571794007.287-
2.50711795007.35627.2043
2.50851796007.3259-
2.50991797007.2998-
2.51131798007.2634-
2.51271799007.3293-
2.51411800007.28417.2053
2.51551801007.3328-
2.51691802007.3038-
2.51831803007.3164-
2.51971804007.3311-
2.52111805007.36417.2046
2.52251806007.2603-
2.52391807007.3197-
2.52531808007.3152-
2.52671809007.312-
2.52811810007.32157.2109
2.52951811007.3272-
2.53091812007.2616-
2.53231813007.2534-
2.53371814007.2607-
2.53511815007.34137.2058
2.53651816007.3084-
2.53791817007.3161-
2.53921818007.3155-
2.54061819007.3161-
2.54201820007.29377.2017
2.54341821007.3062-
2.54481822007.2687-
2.54621823007.3431-
2.54761824007.2918-
2.54901825007.29387.2014
2.55041826007.2922-
2.55181827007.274-
2.55321828007.2704-
2.55461829007.2985-
2.55601830007.31217.2031
2.55741831007.3066-
2.55881832007.2817-
2.56021833007.3226-
2.56161834007.3167-
2.56301835007.26527.1982
2.56441836007.3042-
2.56581837007.278-
2.56721838007.2772-
2.56861839007.2801-
2.57001840007.25797.2015
2.57141841007.311-
2.57281842007.2283-
2.57421843007.319-
2.57561844007.2798-
2.57701845007.30527.2001
2.57841846007.376-
2.57981847007.3175-
2.58111848007.3317-
2.58251849007.3527-
2.58391850007.2427.2033
2.58531851007.3024-
2.58671852007.2636-
2.58811853007.2702-
2.58951854007.2714-
2.59091855007.30267.2047
2.59231856007.2877-
2.59371857007.2743-
2.59511858007.347-
2.59651859007.299-
2.59791860007.25877.2015
2.59931861007.2749-
2.60071862007.2782-
2.60211863007.3153-
2.60351864007.2518-
2.60491865007.31867.2015
2.60631866007.2809-
2.60771867007.2761-
2.60911868007.3042-
2.61051869007.3012-
2.61191870007.36387.2022
2.61331871007.338-
2.61471872007.3274-
2.61611873007.3081-
2.61751874007.2949-
2.61891875007.28757.1996
2.62031876007.2622-
2.62171877007.3024-
2.62311878007.319-
2.62441879007.3148-
2.62581880007.30197.1974
2.62721881007.2976-
2.62861882007.241-
2.63001883007.3177-
2.63141884007.2504-
2.63281885007.30037.2001
2.63421886007.2712-
2.63561887007.3366-
2.63701888007.3183-
2.63841889007.2848-
2.63981890007.28397.1976
2.64121891007.2559-
2.64261892007.3602-
2.64401893007.3584-
2.64541894007.2723-
2.64681895007.3137.1950
2.64821896007.2388-
2.64961897007.3167-
2.65101898007.2526-
2.65241899007.2833-
2.65381900007.25127.1948
2.65521901007.3198-
2.65661902007.3318-
2.65801903007.3513-
2.65941904007.3555-
2.66081905007.24567.1973
2.66221906007.3712-
2.66361907007.3138-
2.66501908007.2785-
2.66641909007.2745-
2.66771910007.29627.1972
2.66911911007.3215-
2.67051912007.3452-
2.67191913007.3123-
2.67331914007.2513-
2.67471915007.25727.1951
2.67611916007.2322-
2.67751917007.2792-
2.67891918007.2836-
2.68031919007.3999-
2.68171920007.25867.1954
2.68311921007.3538-
2.68451922007.2851-
2.68591923007.3246-
2.68731924007.2882-
2.68871925007.33157.1967
2.69011926007.3741-
2.69151927007.2929-
2.69291928007.3327-
2.69431929007.3244-
2.69571930007.32757.1927
2.69711931007.2758-
2.69851932007.2527-
2.69991933007.3216-
2.70131934007.2593-
2.70271935007.27517.1941
2.70411936007.3024-
2.70551937007.2553-
2.70691938007.2869-
2.70831939007.2515-
2.70961940007.2427.1952
2.71101941007.25-
2.71241942007.2729-
2.71381943007.3367-
2.71521944007.2988-
2.71661945007.30317.1937
2.71801946007.2935-
2.71941947007.2687-
2.72081948007.3108-
2.72221949007.2569-
2.72361950007.28657.1927
2.72501951007.2696-
2.72641952007.2889-
2.72781953007.2981-
2.72921954007.2823-
2.73061955007.28557.1944
2.73201956007.2456-
2.73341957007.2228-
2.73481958007.3116-
2.73621959007.2661-
2.73761960007.24697.1938
2.73901961007.2889-
2.74041962007.2418-
2.74181963007.314-
2.74321964007.2841-
2.74461965007.33317.1941
2.74601966007.334-
2.74741967007.2825-
2.74881968007.3173-
2.75021969007.3266-
2.75161970007.31367.1945
2.75291971007.2432-
2.75431972007.3033-
2.75571973007.2665-
2.75711974007.2943-
2.75851975007.32147.1936
2.75991976007.2956-
2.76131977007.2683-
2.76271978007.2722-
2.76411979007.2536-
2.76551980007.2847.1925
2.76691981007.2642-
2.76831982007.2795-
2.76971983007.2716-
2.77111984007.3057-
2.77251985007.25997.1922
2.77391986007.2635-
2.77531987007.3134-
2.77671988007.3346-
2.77811989007.2816-
2.77951990007.22197.1902
2.78091991007.2627-
2.78231992007.2471-
2.78371993007.2518-
2.78511994007.2611-
2.78651995007.32957.1916
2.78791996007.2581-
2.78931997007.2973-
2.79071998007.2628-
2.79211999007.2983-
2.79352000007.29167.1932
2.79482001007.2727-
2.79622002007.2925-
2.79762003007.2853-
2.79902004007.2757-
2.80042005007.28347.1935
2.80182006007.3391-
2.80322007007.3253-
2.80462008007.2401-
2.80602009007.2734-
2.80742010007.31697.1928
2.80882011007.2849-
2.81022012007.2474-
2.81162013007.2554-
2.81302014007.3411-
2.81442015007.37997.1912
2.81582016007.3022-
2.81722017007.3073-
2.81862018007.276-
2.82002019007.3047-
2.82142020007.28727.1917
2.82282021007.2589-
2.82422022007.2912-
2.82562023007.314-
2.82702024007.2662-
2.82842025007.26327.1926
2.82982026007.2718-
2.83122027007.2618-
2.83262028007.3372-
2.83402029007.2682-
2.83542030007.29527.1904
2.83682031007.2387-
2.83812032007.2713-
2.83952033007.257-
2.84092034007.2863-
2.84232035007.28037.1912
2.84372036007.332-
2.84512037007.3228-
2.84652038007.2994-
2.84792039007.2788-
2.84932040007.28167.1919
2.85072041007.3265-
2.85212042007.2584-
2.85352043007.3064-
2.85492044007.2654-
2.85632045007.23837.1908
2.85772046007.2946-
2.85912047007.2904-
2.86052048007.2705-
2.86192049007.3591-
2.86332050007.25767.1915
2.86472051007.2923-
2.86612052007.2215-
2.86752053007.3828-
2.86892054007.3112-
2.87032055007.29347.1893
2.87172056007.2748-
2.87312057007.3172-
2.87452058007.3322-
2.87592059007.2914-
2.87732060007.29477.1896
2.87872061007.2877-
2.88002062007.3201-
2.88142063007.2855-
2.88282064007.2369-
2.88422065007.23897.1887
2.88562066007.2633-
2.88702067007.2558-
2.88842068007.2534-
2.88982069007.2581-
2.89122070007.3087.1901
2.89262071007.3036-
2.89402072007.2383-
2.89542073007.2914-
2.89682074007.2914-
2.89822075007.28547.1892
2.89962076007.3364-
2.90102077007.2488-
2.90242078007.264-
2.90382079007.2776-
2.90522080007.287.1912
2.90662081007.2526-
2.90802082007.2958-
2.90942083007.273-
2.91082084007.2924-
2.91222085007.28827.1895
2.91362086007.3607-
2.91502087007.3232-
2.91642088007.3124-
2.91782089007.2363-
2.91922090007.28687.1882
2.92062091007.2967-
2.92202092007.3001-
2.92332093007.297-
2.92472094007.264-
2.92612095007.26767.1880
2.92752096007.2476-
2.92892097007.2872-
2.93032098007.2727-
2.93172099007.3294-
2.93312100007.31657.1879
2.93452101007.2726-
2.93592102007.2513-
2.93732103007.3356-
2.93872104007.3047-
2.94012105007.22777.1888
2.94152106007.2609-
2.94292107007.3206-
2.94432108007.2745-
2.94572109007.294-
2.94712110007.27567.1878
2.94852111007.2556-
2.94992112007.3683-
2.95132113007.2758-
2.95272114007.2821-
2.95412115007.28437.1886
2.95552116007.2722-
2.95692117007.2768-
2.95832118007.2147-
2.95972119007.2815-
2.96112120007.30427.1880
2.96252121007.2778-
2.96392122007.2861-
2.96522123007.2806-
2.96662124007.3319-
2.96802125007.2657.1868
2.96942126007.3076-
2.97082127007.2925-
2.97222128007.222-
2.97362129007.2479-
2.97502130007.26757.1866
2.97642131007.3411-
2.97782132007.2452-
2.97922133007.3194-
2.98062134007.2683-
2.98202135007.31217.1869
2.98342136007.274-
2.98482137007.2328-
2.98622138007.2927-
2.98762139007.269-
2.98902140007.23767.1866
2.99042141007.2713-
2.99182142007.2834-
2.99322143007.258-
2.99462144007.2781-
2.99602145007.24667.1867
2.99742146007.2974-
2.99882147007.2487-

</details>

Framework Versions

  • Python: 3.12.3
  • Sentence Transformers: 5.1.0
  • Transformers: 4.55.4
  • PyTorch: 2.5.1+cu121
  • Accelerate: 1.10.1
  • 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",
}
CoSENTLoss
bibtex
@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},
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->