You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

SentenceTransformer based on vinai/phobert-base-v2

This is a sentence-transformers model finetuned from vinai/phobert-base-v2 on the wiki-data dataset. It maps sentences & paragraphs to a 768-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: vinai/phobert-base-v2
  • Maximum Sequence Length: 256 tokens
  • Output Dimensionality: 768 dimensions
  • Similarity Function: Cosine Similarity
  • Training Dataset:

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: RobertaModel 
  (1): Pooling({'word_embedding_dimension': 768, '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})
)

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("iambestfeed/phobert-base-v2-wiki-data-filter_fasttext_0.4_wseg-lr2e-05-1-epochs-bs-48")
# Run inference
sentences = [
    'Giới_thiệu của Ommatius singlensis',
    'Ommatius singlensis là một loài ruồi trong họ Asilidae . Ommatius singlensis được Oldroyd miêu_tả năm 1972 . ( )',
    'Hoãn phát_sóng 2 tập vào ngày 8 và 9 tháng 2 để phát_sóng các chương_trình dịp Tết Giáp_Thìn 2024 của nhà đài . ( )',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

Training Details

Training Dataset

wiki-data

  • Dataset: wiki-data at a37fed9
  • Size: 2,129,192 training samples
  • Columns: anchor and positive
  • Approximate statistics based on the first 1000 samples:
    anchor positive
    type string string
    details
    • min: 5 tokens
    • mean: 9.83 tokens
    • max: 24 tokens
    • min: 13 tokens
    • mean: 89.06 tokens
    • max: 256 tokens
  • Samples:
    anchor positive
    Giới_thiệu của Podascon haploopis Podascon haploopis là một loài chân đều trong họ Podasconidae . Loài này được Giard & Bonnier miêu_tả khoa_học năm 1895 . ( Boyko , C. ( 2010 ) . Podascon haploopis Giard & Bonnier , 1895 . In : Schotte , M. , Boyko , C.B , Bruce , N.L. , Poore , G.C.B. , Taiti , S. , Wilson , G.D.F. ( Eds ) ( 2010 ) . World_Marine , Freshwater and Terrestrial_Isopod_Crustaceans database . Gebaseerd op informatie uit het Cơ_sở_dữ_liệu sinh_vật biển , te vinden op http://www.marinespecies.org/aphia.php?p=taxdetails&id=295733)
    Trung_đoàn 266 của Sư_đoàn 341 , Quân_đội nhân_dân Việt_Nam Gọi tắt là E3 gồm các đơn_vị : - Tiểu_đoàn 7 nguyên là Tiểu_đoàn 53 bộ_đội_địa_phương tỉnh Thái_Bình . - Tiểu_đoàn 8 gồm C1 & C3 thuộc Tiểu_đoàn dự_nhiệm 210 huyện Quỳnh_Lưu , tỉnh Nghệ_An . - Tiểu_đoàn 9 gồm các đại_đội dự_nhiệm 272 , 274 và 2 đại_đội dự_nhiệm của Tiểu_đoàn 53 Quảng_Bình . - 5 đại_đội bộ_binh của E129 tỉnh_đội Hà_Tĩnh . Trung_đoàn thành_lập ngày 26/9/1973 . Gia_nhập đội_hình sư_đoàn từ tháng 9/1973 tại Quảng_Bình . Trung_đoàn trưởng : Trung_tá Trịnh_Đăng_Thế_Chính uỷ : Thượng_tá Mai_Thanh_Bình
    Giới_thiệu của Warlus , Somme Warlus là một xã ở tỉnh Somme , vùng Hauts-de-France , Pháp .
  • Loss: MultipleNegativesRankingLoss with these parameters:
    {
        "scale": 20.0,
        "similarity_fct": "cos_sim"
    }
    

Training Hyperparameters

Non-Default Hyperparameters

  • per_device_train_batch_size: 48
  • learning_rate: 2e-05
  • num_train_epochs: 1
  • warmup_ratio: 0.1
  • save_safetensors: False
  • fp16: True
  • push_to_hub: True
  • hub_model_id: iambestfeed/phobert-base-v2-wiki-data-filter_fasttext_0.4_wseg-lr2e-05-1-epochs-bs-48
  • batch_sampler: no_duplicates

All Hyperparameters

Click to expand
  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: no
  • prediction_loss_only: True
  • per_device_train_batch_size: 48
  • per_device_eval_batch_size: 8
  • 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: False
  • 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: True
  • 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: True
  • resume_from_checkpoint: None
  • hub_model_id: iambestfeed/phobert-base-v2-wiki-data-filter_fasttext_0.4_wseg-lr2e-05-1-epochs-bs-48
  • hub_strategy: every_save
  • hub_private_repo: None
  • hub_always_push: False
  • 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
  • dispatch_batches: None
  • split_batches: 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
  • eval_use_gather_object: False
  • average_tokens_across_devices: False
  • prompts: None
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional

Training Logs

Click to expand
Epoch Step Training Loss
0.0005 10 3.4297
0.0009 20 3.3577
0.0014 30 3.3025
0.0018 40 3.1419
0.0023 50 2.9045
0.0027 60 2.7514
0.0032 70 2.5959
0.0036 80 2.3981
0.0041 90 2.2227
0.0045 100 2.0816
0.0050 110 1.8545
0.0054 120 1.7712
0.0059 130 1.5548
0.0063 140 1.4381
0.0068 150 1.2668
0.0072 160 1.1221
0.0077 170 0.9117
0.0081 180 0.8491
0.0086 190 0.7116
0.0090 200 0.5499
0.0095 210 0.4855
0.0099 220 0.465
0.0104 230 0.4186
0.0108 240 0.3358
0.0113 250 0.34
0.0117 260 0.3116
0.0122 270 0.3472
0.0126 280 0.2875
0.0131 290 0.2416
0.0135 300 0.2374
0.0140 310 0.209
0.0144 320 0.2174
0.0149 330 0.2013
0.0153 340 0.2092
0.0158 350 0.169
0.0162 360 0.2011
0.0167 370 0.1779
0.0171 380 0.1604
0.0176 390 0.1839
0.0180 400 0.1724
0.0185 410 0.1651
0.0189 420 0.1458
0.0194 430 0.1503
0.0198 440 0.1843
0.0203 450 0.1832
0.0207 460 0.1434
0.0212 470 0.1687
0.0216 480 0.1338
0.0221 490 0.1171
0.0225 500 0.1166
0.0230 510 0.1409
0.0234 520 0.1145
0.0239 530 0.1409
0.0243 540 0.1202
0.0248 550 0.1091
0.0252 560 0.1496
0.0257 570 0.1157
0.0262 580 0.1344
0.0266 590 0.1176
0.0271 600 0.1066
0.0275 610 0.0734
0.0280 620 0.0838
0.0284 630 0.1262
0.0289 640 0.1111
0.0293 650 0.0809
0.0298 660 0.1006
0.0302 670 0.1265
0.0307 680 0.0762
0.0311 690 0.0935
0.0316 700 0.0835
0.0320 710 0.0887
0.0325 720 0.0891
0.0329 730 0.0756
0.0334 740 0.0855
0.0338 750 0.0828
0.0343 760 0.0846
0.0347 770 0.0909
0.0352 780 0.0716
0.0356 790 0.0922
0.0361 800 0.0947
0.0365 810 0.0699
0.0370 820 0.0875
0.0374 830 0.0845
0.0379 840 0.0778
0.0383 850 0.0818
0.0388 860 0.0503
0.0392 870 0.0782
0.0397 880 0.0459
0.0401 890 0.0867
0.0406 900 0.0683
0.0410 910 0.0946
0.0415 920 0.0531
0.0419 930 0.0479
0.0424 940 0.0808
0.0428 950 0.0779
0.0433 960 0.0797
0.0437 970 0.0757
0.0442 980 0.0592
0.0446 990 0.0714
0.0451 1000 0.0641
0.0455 1010 0.0584
0.0460 1020 0.048
0.0464 1030 0.0585
0.0469 1040 0.0834
0.0473 1050 0.0655
0.0478 1060 0.0789
0.0482 1070 0.0601
0.0487 1080 0.0648
0.0491 1090 0.0717
0.0496 1100 0.0806
0.0500 1110 0.0646
0.0505 1120 0.0831
0.0509 1130 0.0536
0.0514 1140 0.0673
0.0519 1150 0.0786
0.0523 1160 0.0698
0.0528 1170 0.0621
0.0532 1180 0.0619
0.0537 1190 0.0582
0.0541 1200 0.0579
0.0546 1210 0.0459
0.0550 1220 0.0474
0.0555 1230 0.0782
0.0559 1240 0.0436
0.0564 1250 0.0766
0.0568 1260 0.0438
0.0573 1270 0.0643
0.0577 1280 0.0476
0.0582 1290 0.0732
0.0586 1300 0.059
0.0591 1310 0.0527
0.0595 1320 0.0496
0.0600 1330 0.0495
0.0604 1340 0.0542
0.0609 1350 0.0591
0.0613 1360 0.0424
0.0618 1370 0.0525
0.0622 1380 0.0663
0.0627 1390 0.0547
0.0631 1400 0.062
0.0636 1410 0.0592
0.0640 1420 0.0569
0.0645 1430 0.0563
0.0649 1440 0.0561
0.0654 1450 0.0633
0.0658 1460 0.0563
0.0663 1470 0.0523
0.0667 1480 0.0675
0.0672 1490 0.0681
0.0676 1500 0.0437
0.0681 1510 0.0398
0.0685 1520 0.0495
0.0690 1530 0.0698
0.0694 1540 0.0527
0.0699 1550 0.0583
0.0703 1560 0.0417
0.0708 1570 0.0472
0.0712 1580 0.0555
0.0717 1590 0.0368
0.0721 1600 0.0527
0.0726 1610 0.0284
0.0730 1620 0.049
0.0735 1630 0.0509
0.0739 1640 0.0564
0.0744 1650 0.0416
0.0748 1660 0.0395
0.0753 1670 0.0498
0.0757 1680 0.0451
0.0762 1690 0.0339
0.0766 1700 0.0566
0.0771 1710 0.0554
0.0776 1720 0.058
0.0780 1730 0.0332
0.0785 1740 0.0376
0.0789 1750 0.0621
0.0794 1760 0.0498
0.0798 1770 0.034
0.0803 1780 0.0346
0.0807 1790 0.0218
0.0812 1800 0.0542
0.0816 1810 0.0503
0.0821 1820 0.0501
0.0825 1830 0.0588
0.0830 1840 0.0481
0.0834 1850 0.0389
0.0839 1860 0.0593
0.0843 1870 0.0313
0.0848 1880 0.0481
0.0852 1890 0.0436
0.0857 1900 0.0409
0.0861 1910 0.0628
0.0866 1920 0.0503
0.0870 1930 0.0486
0.0875 1940 0.0455
0.0879 1950 0.0477
0.0884 1960 0.0489
0.0888 1970 0.058
0.0893 1980 0.0357
0.0897 1990 0.0428
0.0902 2000 0.0358
0.0906 2010 0.042
0.0911 2020 0.0483
0.0915 2030 0.0493
0.0920 2040 0.0427
0.0924 2050 0.039
0.0929 2060 0.0409
0.0933 2070 0.0428
0.0938 2080 0.0415
0.0942 2090 0.0569
0.0947 2100 0.0473
0.0951 2110 0.0423
0.0956 2120 0.0571
0.0960 2130 0.0459
0.0965 2140 0.0383
0.0969 2150 0.0557
0.0974 2160 0.0433
0.0978 2170 0.041
0.0983 2180 0.035
0.0987 2190 0.035
0.0992 2200 0.0371
0.0996 2210 0.0293
0.1001 2220 0.0455
0.1005 2230 0.0342
0.1010 2240 0.0475
0.1014 2250 0.0455
0.1019 2260 0.0573
0.1023 2270 0.0443
0.1028 2280 0.0328
0.1033 2290 0.0287
0.1037 2300 0.0415
0.1042 2310 0.0294
0.1046 2320 0.0343
0.1051 2330 0.0298
0.1055 2340 0.0277
0.1060 2350 0.0346
0.1064 2360 0.041
0.1069 2370 0.0528
0.1073 2380 0.041
0.1078 2390 0.04
0.1082 2400 0.0249
0.1087 2410 0.0564
0.1091 2420 0.0478
0.1096 2430 0.0394
0.1100 2440 0.0442
0.1105 2450 0.0447
0.1109 2460 0.0347
0.1114 2470 0.0417
0.1118 2480 0.0374
0.1123 2490 0.037
0.1127 2500 0.0339
0.1132 2510 0.0458
0.1136 2520 0.048
0.1141 2530 0.0528
0.1145 2540 0.0647
0.1150 2550 0.0277
0.1154 2560 0.0515
0.1159 2570 0.0316
0.1163 2580 0.0523
0.1168 2590 0.0412
0.1172 2600 0.0294
0.1177 2610 0.0483
0.1181 2620 0.0437
0.1186 2630 0.0314
0.1190 2640 0.0369
0.1195 2650 0.0418
0.1199 2660 0.0417
0.1204 2670 0.051
0.1208 2680 0.0378
0.1213 2690 0.0329
0.1217 2700 0.0452
0.1222 2710 0.0288
0.1226 2720 0.0507
0.1231 2730 0.0347
0.1235 2740 0.0351
0.1240 2750 0.0472
0.1244 2760 0.042
0.1249 2770 0.0266
0.1253 2780 0.0357
0.1258 2790 0.0302
0.1262 2800 0.0416
0.1267 2810 0.0429
0.1271 2820 0.0351
0.1276 2830 0.0332
0.1280 2840 0.0418
0.1285 2850 0.0394
0.1290 2860 0.0275
0.1294 2870 0.0448
0.1299 2880 0.035
0.1303 2890 0.0546
0.1308 2900 0.037
0.1312 2910 0.0611
0.1317 2920 0.0515
0.1321 2930 0.0456
0.1326 2940 0.0368
0.1330 2950 0.0377
0.1335 2960 0.0212
0.1339 2970 0.0351
0.1344 2980 0.0339
0.1348 2990 0.043
0.1353 3000 0.0287
0.1357 3010 0.0363
0.1362 3020 0.0351
0.1366 3030 0.0515
0.1371 3040 0.0405
0.1375 3050 0.0326
0.1380 3060 0.0416
0.1384 3070 0.0364
0.1389 3080 0.0318
0.1393 3090 0.0291
0.1398 3100 0.0372
0.1402 3110 0.0339
0.1407 3120 0.0348
0.1411 3130 0.04
0.1416 3140 0.0515
0.1420 3150 0.0269
0.1425 3160 0.0213
0.1429 3170 0.0232
0.1434 3180 0.0402
0.1438 3190 0.0272
0.1443 3200 0.0442
0.1447 3210 0.0332
0.1452 3220 0.0362
0.1456 3230 0.0218
0.1461 3240 0.0419
0.1465 3250 0.0331
0.1470 3260 0.0259
0.1474 3270 0.0344
0.1479 3280 0.0295
0.1483 3290 0.0371
0.1488 3300 0.048
0.1492 3310 0.0334
0.1497 3320 0.0294
0.1501 3330 0.0343
0.1506 3340 0.0302
0.1510 3350 0.0364
0.1515 3360 0.03
0.1519 3370 0.0475
0.1524 3380 0.0303
0.1528 3390 0.0414
0.1533 3400 0.0251
0.1537 3410 0.0252
0.1542 3420 0.0293
0.1547 3430 0.0314
0.1551 3440 0.0313
0.1556 3450 0.0396
0.1560 3460 0.0362
0.1565 3470 0.0313
0.1569 3480 0.0433
0.1574 3490 0.0451
0.1578 3500 0.0395
0.1583 3510 0.0436
0.1587 3520 0.0396
0.1592 3530 0.0489
0.1596 3540 0.0268
0.1601 3550 0.0264
0.1605 3560 0.0265
0.1610 3570 0.0233
0.1614 3580 0.0265
0.1619 3590 0.0293
0.1623 3600 0.0378
0.1628 3610 0.0277
0.1632 3620 0.0403
0.1637 3630 0.0321
0.1641 3640 0.0268
0.1646 3650 0.023
0.1650 3660 0.0311
0.1655 3670 0.0228
0.1659 3680 0.0279
0.1664 3690 0.0375
0.1668 3700 0.0414
0.1673 3710 0.031
0.1677 3720 0.034
0.1682 3730 0.0401
0.1686 3740 0.0368
0.1691 3750 0.0259
0.1695 3760 0.0236
0.1700 3770 0.0468
0.1704 3780 0.0264
0.1709 3790 0.0196
0.1713 3800 0.0414
0.1718 3810 0.0207
0.1722 3820 0.0233
0.1727 3830 0.0229
0.1731 3840 0.025
0.1736 3850 0.0382
0.1740 3860 0.0388
0.1745 3870 0.0297
0.1749 3880 0.0369
0.1754 3890 0.0409
0.1758 3900 0.0218
0.1763 3910 0.0298
0.1767 3920 0.026
0.1772 3930 0.0357
0.1776 3940 0.0242
0.1781 3950 0.0251
0.1785 3960 0.0154
0.1790 3970 0.0406
0.1794 3980 0.0378
0.1799 3990 0.0509
0.1804 4000 0.0344
0.1808 4010 0.0209
0.1813 4020 0.0181
0.1817 4030 0.0315
0.1822 4040 0.0342
0.1826 4050 0.0382
0.1831 4060 0.032
0.1835 4070 0.035
0.1840 4080 0.0299
0.1844 4090 0.0279
0.1849 4100 0.033
0.1853 4110 0.0384
0.1858 4120 0.037
0.1862 4130 0.0291
0.1867 4140 0.0243
0.1871 4150 0.0362
0.1876 4160 0.0265
0.1880 4170 0.0387
0.1885 4180 0.0331
0.1889 4190 0.0255
0.1894 4200 0.0276
0.1898 4210 0.0347
0.1903 4220 0.0329
0.1907 4230 0.0223
0.1912 4240 0.0236
0.1916 4250 0.0327
0.1921 4260 0.0362
0.1925 4270 0.0211
0.1930 4280 0.0379
0.1934 4290 0.0507
0.1939 4300 0.0304
0.1943 4310 0.0309
0.1948 4320 0.0266
0.1952 4330 0.0242
0.1957 4340 0.0312
0.1961 4350 0.0349
0.1966 4360 0.024
0.1970 4370 0.0199
0.1975 4380 0.0435
0.1979 4390 0.0303
0.1984 4400 0.0347
0.1988 4410 0.0243
0.1993 4420 0.0324
0.1997 4430 0.0271
0.2002 4440 0.027
0.2006 4450 0.0251
0.2011 4460 0.0355
0.2015 4470 0.031
0.2020 4480 0.0457
0.2024 4490 0.04
0.2029 4500 0.0281
0.2033 4510 0.0285
0.2038 4520 0.0272
0.2042 4530 0.0277
0.2047 4540 0.0216
0.2051 4550 0.0291
0.2056 4560 0.0438
0.2061 4570 0.0258
0.2065 4580 0.0374
0.2070 4590 0.0425
0.2074 4600 0.0291
0.2079 4610 0.025
0.2083 4620 0.0251
0.2088 4630 0.0351
0.2092 4640 0.0301
0.2097 4650 0.0351
0.2101 4660 0.0337
0.2106 4670 0.0274
0.2110 4680 0.0253
0.2115 4690 0.0363
0.2119 4700 0.0466
0.2124 4710 0.0403
0.2128 4720 0.0206
0.2133 4730 0.0365
0.2137 4740 0.0259
0.2142 4750 0.0224
0.2146 4760 0.0247
0.2151 4770 0.037
0.2155 4780 0.0327
0.2160 4790 0.0309
0.2164 4800 0.0286
0.2169 4810 0.026
0.2173 4820 0.0278
0.2178 4830 0.0162
0.2182 4840 0.0279
0.2187 4850 0.0207
0.2191 4860 0.0348
0.2196 4870 0.0303
0.2200 4880 0.0204
0.2205 4890 0.0388
0.2209 4900 0.0219
0.2214 4910 0.029
0.2218 4920 0.028
0.2223 4930 0.0255
0.2227 4940 0.0353
0.2232 4950 0.0309
0.2236 4960 0.0252
0.2241 4970 0.0295
0.2245 4980 0.0345
0.2250 4990 0.023
0.2254 5000 0.0321
0.2259 5010 0.0192
0.2263 5020 0.0262
0.2268 5030 0.0254
0.2272 5040 0.0296
0.2277 5050 0.016
0.2281 5060 0.0202
0.2286 5070 0.0204
0.2290 5080 0.0334
0.2295 5090 0.0267
0.2299 5100 0.0243
0.2304 5110 0.0339
0.2308 5120 0.0465
0.2313 5130 0.0239
0.2318 5140 0.0341
0.2322 5150 0.0267
0.2327 5160 0.0302
0.2331 5170 0.031
0.2336 5180 0.0207
0.2340 5190 0.037
0.2345 5200 0.0262
0.2349 5210 0.0198
0.2354 5220 0.0206
0.2358 5230 0.0174
0.2363 5240 0.0316
0.2367 5250 0.0353
0.2372 5260 0.0376
0.2376 5270 0.0258
0.2381 5280 0.0282
0.2385 5290 0.0223
0.2390 5300 0.0285
0.2394 5310 0.0202
0.2399 5320 0.0227
0.2403 5330 0.0269
0.2408 5340 0.023
0.2412 5350 0.0301
0.2417 5360 0.0329
0.2421 5370 0.0217
0.2426 5380 0.029
0.2430 5390 0.0195
0.2435 5400 0.0389
0.2439 5410 0.0325
0.2444 5420 0.0175
0.2448 5430 0.0313
0.2453 5440 0.03
0.2457 5450 0.0215
0.2462 5460 0.0457
0.2466 5470 0.0283
0.2471 5480 0.0148
0.2475 5490 0.0192
0.2480 5500 0.0368
0.2484 5510 0.0221
0.2489 5520 0.0317
0.2493 5530 0.0306
0.2498 5540 0.0214
0.2502 5550 0.0205
0.2507 5560 0.0187
0.2511 5570 0.0275
0.2516 5580 0.0176
0.2520 5590 0.0314
0.2525 5600 0.0254
0.2529 5610 0.0132
0.2534 5620 0.0261
0.2538 5630 0.0309
0.2543 5640 0.0262
0.2547 5650 0.0284
0.2552 5660 0.0301
0.2556 5670 0.0231
0.2561 5680 0.0267
0.2565 5690 0.0195
0.2570 5700 0.017
0.2575 5710 0.0376
0.2579 5720 0.0225
0.2584 5730 0.0258
0.2588 5740 0.0134
0.2593 5750 0.0341
0.2597 5760 0.0295
0.2602 5770 0.0204
0.2606 5780 0.0284
0.2611 5790 0.0222
0.2615 5800 0.0217
0.2620 5810 0.0487
0.2624 5820 0.0207
0.2629 5830 0.0234
0.2633 5840 0.0238
0.2638 5850 0.0245
0.2642 5860 0.0301
0.2647 5870 0.028
0.2651 5880 0.0266
0.2656 5890 0.0248
0.2660 5900 0.0143
0.2665 5910 0.0231
0.2669 5920 0.0166
0.2674 5930 0.0261
0.2678 5940 0.02
0.2683 5950 0.0357
0.2687 5960 0.031
0.2692 5970 0.0279
0.2696 5980 0.027
0.2701 5990 0.0332
0.2705 6000 0.0383
0.2710 6010 0.0295
0.2714 6020 0.0293
0.2719 6030 0.0223
0.2723 6040 0.02
0.2728 6050 0.0265
0.2732 6060 0.0214
0.2737 6070 0.0404
0.2741 6080 0.029
0.2746 6090 0.0145
0.2750 6100 0.036
0.2755 6110 0.0207
0.2759 6120 0.0231
0.2764 6130 0.0233
0.2768 6140 0.0225
0.2773 6150 0.031
0.2777 6160 0.0251
0.2782 6170 0.0179
0.2786 6180 0.0206
0.2791 6190 0.0186
0.2795 6200 0.02
0.2800 6210 0.0163
0.2804 6220 0.0252
0.2809 6230 0.0233
0.2813 6240 0.021
0.2818 6250 0.0174
0.2822 6260 0.0168
0.2827 6270 0.0348
0.2832 6280 0.0207
0.2836 6290 0.0217
0.2841 6300 0.0114
0.2845 6310 0.0241
0.2850 6320 0.0197
0.2854 6330 0.0317
0.2859 6340 0.0316
0.2863 6350 0.0216
0.2868 6360 0.022
0.2872 6370 0.0429
0.2877 6380 0.0112
0.2881 6390 0.0232
0.2886 6400 0.0198
0.2890 6410 0.0317
0.2895 6420 0.017
0.2899 6430 0.029
0.2904 6440 0.0309
0.2908 6450 0.0298
0.2913 6460 0.026
0.2917 6470 0.0424
0.2922 6480 0.0215
0.2926 6490 0.0208
0.2931 6500 0.0199
0.2935 6510 0.0236
0.2940 6520 0.0157
0.2944 6530 0.0205
0.2949 6540 0.0318
0.2953 6550 0.0213
0.2958 6560 0.0171
0.2962 6570 0.017
0.2967 6580 0.0387
0.2971 6590 0.0267
0.2976 6600 0.0281
0.2980 6610 0.0324
0.2985 6620 0.0253
0.2989 6630 0.0202
0.2994 6640 0.0443
0.2998 6650 0.0164
0.3003 6660 0.0237
0.3007 6670 0.0205
0.3012 6680 0.0253
0.3016 6690 0.023
0.3021 6700 0.0158
0.3025 6710 0.0219
0.3030 6720 0.0241
0.3034 6730 0.0234
0.3039 6740 0.0205
0.3043 6750 0.0162
0.3048 6760 0.027
0.3052 6770 0.0132
0.3057 6780 0.0371
0.3061 6790 0.0238
0.3066 6800 0.0209
0.3070 6810 0.0265
0.3075 6820 0.0178
0.3079 6830 0.0217
0.3084 6840 0.017
0.3089 6850 0.0166
0.3093 6860 0.0306
0.3098 6870 0.0215
0.3102 6880 0.031
0.3107 6890 0.0203
0.3111 6900 0.0223
0.3116 6910 0.0188
0.3120 6920 0.0118
0.3125 6930 0.0202
0.3129 6940 0.015
0.3134 6950 0.0185
0.3138 6960 0.0224
0.3143 6970 0.0171
0.3147 6980 0.0238
0.3152 6990 0.0228
0.3156 7000 0.0252
0.3161 7010 0.0151
0.3165 7020 0.019
0.3170 7030 0.0189
0.3174 7040 0.0227
0.3179 7050 0.0331
0.3183 7060 0.0153
0.3188 7070 0.0184
0.3192 7080 0.0231
0.3197 7090 0.0116
0.3201 7100 0.0223
0.3206 7110 0.0188
0.3210 7120 0.0264
0.3215 7130 0.0104
0.3219 7140 0.0183
0.3224 7150 0.0259
0.3228 7160 0.0383
0.3233 7170 0.0187
0.3237 7180 0.019
0.3242 7190 0.0331
0.3246 7200 0.0164
0.3251 7210 0.0208
0.3255 7220 0.0158
0.3260 7230 0.0225
0.3264 7240 0.0376
0.3269 7250 0.027
0.3273 7260 0.0222
0.3278 7270 0.0192
0.3282 7280 0.0323
0.3287 7290 0.0293
0.3291 7300 0.0186
0.3296 7310 0.0315
0.3300 7320 0.0171
0.3305 7330 0.0161
0.3309 7340 0.0151
0.3314 7350 0.021
0.3318 7360 0.024
0.3323 7370 0.0202
0.3327 7380 0.0265
0.3332 7390 0.0167
0.3336 7400 0.0287
0.3341 7410 0.0214
0.3346 7420 0.0379
0.3350 7430 0.0197
0.3355 7440 0.0314
0.3359 7450 0.0243
0.3364 7460 0.0287
0.3368 7470 0.0241
0.3373 7480 0.0321
0.3377 7490 0.0312
0.3382 7500 0.0165
0.3386 7510 0.025
0.3391 7520 0.0267
0.3395 7530 0.0204
0.3400 7540 0.0357
0.3404 7550 0.0255
0.3409 7560 0.0243
0.3413 7570 0.0193
0.3418 7580 0.0161
0.3422 7590 0.018
0.3427 7600 0.0297
0.3431 7610 0.0184
0.3436 7620 0.0116
0.3440 7630 0.0293
0.3445 7640 0.0192
0.3449 7650 0.023
0.3454 7660 0.0231
0.3458 7670 0.0161
0.3463 7680 0.0406
0.3467 7690 0.0182
0.3472 7700 0.0273
0.3476 7710 0.0171
0.3481 7720 0.0176
0.3485 7730 0.0333
0.3490 7740 0.0136
0.3494 7750 0.0151
0.3499 7760 0.0203
0.3503 7770 0.0184
0.3508 7780 0.0322
0.3512 7790 0.0267
0.3517 7800 0.0164
0.3521 7810 0.0144
0.3526 7820 0.0216
0.3530 7830 0.0184
0.3535 7840 0.0218
0.3539 7850 0.0228
0.3544 7860 0.0259
0.3548 7870 0.0131
0.3553 7880 0.019
0.3557 7890 0.0246
0.3562 7900 0.0207
0.3566 7910 0.0289
0.3571 7920 0.0177
0.3575 7930 0.0157
0.3580 7940 0.0305
0.3584 7950 0.0119
0.3589 7960 0.0281
0.3593 7970 0.0211
0.3598 7980 0.0275
0.3603 7990 0.0195
0.3607 8000 0.0165
0.3612 8010 0.0217
0.3616 8020 0.019
0.3621 8030 0.027
0.3625 8040 0.016
0.3630 8050 0.0239
0.3634 8060 0.0247
0.3639 8070 0.0263
0.3643 8080 0.0216
0.3648 8090 0.0331
0.3652 8100 0.0172
0.3657 8110 0.0154
0.3661 8120 0.0214
0.3666 8130 0.0185
0.3670 8140 0.0156
0.3675 8150 0.015
0.3679 8160 0.0156
0.3684 8170 0.0258
0.3688 8180 0.0167
0.3693 8190 0.0232
0.3697 8200 0.0131
0.3702 8210 0.0318
0.3706 8220 0.0158
0.3711 8230 0.0241
0.3715 8240 0.0223
0.3720 8250 0.0095
0.3724 8260 0.0166
0.3729 8270 0.02
0.3733 8280 0.0382
0.3738 8290 0.0162
0.3742 8300 0.013
0.3747 8310 0.0319
0.3751 8320 0.0186
0.3756 8330 0.0252
0.3760 8340 0.0165
0.3765 8350 0.0115
0.3769 8360 0.0176
0.3774 8370 0.0137
0.3778 8380 0.0155
0.3783 8390 0.0218
0.3787 8400 0.0196
0.3792 8410 0.0118
0.3796 8420 0.0157
0.3801 8430 0.0214
0.3805 8440 0.0139
0.3810 8450 0.0257
0.3814 8460 0.017
0.3819 8470 0.0127
0.3823 8480 0.0305
0.3828 8490 0.0301
0.3832 8500 0.0231
0.3837 8510 0.0178
0.3841 8520 0.0301
0.3846 8530 0.0242
0.3850 8540 0.0369
0.3855 8550 0.0198
0.3860 8560 0.0183
0.3864 8570 0.0289
0.3869 8580 0.0235
0.3873 8590 0.0148
0.3878 8600 0.0211
0.3882 8610 0.0075
0.3887 8620 0.0181
0.3891 8630 0.0132
0.3896 8640 0.0226
0.3900 8650 0.0103
0.3905 8660 0.0157
0.3909 8670 0.0239
0.3914 8680 0.0115
0.3918 8690 0.0189
0.3923 8700 0.0121
0.3927 8710 0.0185
0.3932 8720 0.0141
0.3936 8730 0.025
0.3941 8740 0.0198
0.3945 8750 0.0127
0.3950 8760 0.0237
0.3954 8770 0.0184
0.3959 8780 0.0191
0.3963 8790 0.0291
0.3968 8800 0.0275
0.3972 8810 0.0182
0.3977 8820 0.0148
0.3981 8830 0.0132
0.3986 8840 0.0275
0.3990 8850 0.0234
0.3995 8860 0.011
0.3999 8870 0.0234
0.4004 8880 0.0178
0.4008 8890 0.0223
0.4013 8900 0.0204
0.4017 8910 0.0248
0.4022 8920 0.0291
0.4026 8930 0.0261
0.4031 8940 0.0165
0.4035 8950 0.02
0.4040 8960 0.015
0.4044 8970 0.0175
0.4049 8980 0.0262
0.4053 8990 0.0302
0.4058 9000 0.0304
0.4062 9010 0.0373
0.4067 9020 0.0524
0.4071 9030 0.0211
0.4076 9040 0.0214
0.4080 9050 0.0243
0.4085 9060 0.0242
0.4089 9070 0.0356
0.4094 9080 0.0185
0.4098 9090 0.0192
0.4103 9100 0.0116
0.4107 9110 0.0232
0.4112 9120 0.0184
0.4117 9130 0.0207
0.4121 9140 0.0169
0.4126 9150 0.0407
0.4130 9160 0.0235
0.4135 9170 0.0209
0.4139 9180 0.0169
0.4144 9190 0.0206
0.4148 9200 0.0226
0.4153 9210 0.0196
0.4157 9220 0.0338
0.4162 9230 0.0178
0.4166 9240 0.0146
0.4171 9250 0.0279
0.4175 9260 0.0128
0.4180 9270 0.0161
0.4184 9280 0.0139
0.4189 9290 0.0344
0.4193 9300 0.0122
0.4198 9310 0.0154
0.4202 9320 0.0132
0.4207 9330 0.0257
0.4211 9340 0.016
0.4216 9350 0.0111
0.4220 9360 0.0187
0.4225 9370 0.0145
0.4229 9380 0.016
0.4234 9390 0.0186
0.4238 9400 0.0251
0.4243 9410 0.0173
0.4247 9420 0.0213
0.4252 9430 0.0176
0.4256 9440 0.0164
0.4261 9450 0.0275
0.4265 9460 0.0153
0.4270 9470 0.0154
0.4274 9480 0.0279
0.4279 9490 0.0237
0.4283 9500 0.023
0.4288 9510 0.012
0.4292 9520 0.0258
0.4297 9530 0.0213
0.4301 9540 0.0156
0.4306 9550 0.0109
0.4310 9560 0.0241
0.4315 9570 0.0242
0.4319 9580 0.0209
0.4324 9590 0.0231
0.4328 9600 0.0206
0.4333 9610 0.0258
0.4337 9620 0.0113
0.4342 9630 0.0195
0.4346 9640 0.0256
0.4351 9650 0.0273
0.4355 9660 0.0105
0.4360 9670 0.0315
0.4364 9680 0.0207
0.4369 9690 0.012
0.4374 9700 0.014
0.4378 9710 0.0254
0.4383 9720 0.021
0.4387 9730 0.0104
0.4392 9740 0.0145
0.4396 9750 0.0209
0.4401 9760 0.0167
0.4405 9770 0.0243
0.4410 9780 0.0131
0.4414 9790 0.011
0.4419 9800 0.0246
0.4423 9810 0.0203
0.4428 9820 0.0292
0.4432 9830 0.0248
0.4437 9840 0.0124
0.4441 9850 0.0171
0.4446 9860 0.0229
0.4450 9870 0.0186
0.4455 9880 0.0189
0.4459 9890 0.0297
0.4464 9900 0.0186
0.4468 9910 0.0135
0.4473 9920 0.0066
0.4477 9930 0.0287
0.4482 9940 0.021
0.4486 9950 0.02
0.4491 9960 0.0172
0.4495 9970 0.021
0.4500 9980 0.0165
0.4504 9990 0.022
0.4509 10000 0.0249
0.4513 10010 0.0194
0.4518 10020 0.0233
0.4522 10030 0.0201
0.4527 10040 0.0144
0.4531 10050 0.0225
0.4536 10060 0.023
0.4540 10070 0.012
0.4545 10080 0.0374
0.4549 10090 0.0184
0.4554 10100 0.0172
0.4558 10110 0.0103
0.4563 10120 0.0302
0.4567 10130 0.0131
0.4572 10140 0.0283
0.4576 10150 0.0129
0.4581 10160 0.0163
0.4585 10170 0.0158
0.4590 10180 0.0191
0.4594 10190 0.0243
0.4599 10200 0.0308
0.4603 10210 0.0153
0.4608 10220 0.0234
0.4612 10230 0.01
0.4617 10240 0.0287
0.4621 10250 0.0231
0.4626 10260 0.0122
0.4631 10270 0.0206
0.4635 10280 0.0192
0.4640 10290 0.0191
0.4644 10300 0.0228
0.4649 10310 0.0165
0.4653 10320 0.0306
0.4658 10330 0.0155
0.4662 10340 0.0117
0.4667 10350 0.0179
0.4671 10360 0.0097
0.4676 10370 0.0206
0.4680 10380 0.0275
0.4685 10390 0.0186
0.4689 10400 0.0163
0.4694 10410 0.025
0.4698 10420 0.0233
0.4703 10430 0.0303
0.4707 10440 0.0201
0.4712 10450 0.0185
0.4716 10460 0.0158
0.4721 10470 0.0309
0.4725 10480 0.0195
0.4730 10490 0.0185
0.4734 10500 0.0222
0.4739 10510 0.0186
0.4743 10520 0.0226
0.4748 10530 0.0116
0.4752 10540 0.0165
0.4757 10550 0.0151
0.4761 10560 0.0211
0.4766 10570 0.0338
0.4770 10580 0.0467
0.4775 10590 0.0171
0.4779 10600 0.0252
0.4784 10610 0.0144
0.4788 10620 0.0127
0.4793 10630 0.0319
0.4797 10640 0.0256
0.4802 10650 0.0189
0.4806 10660 0.0188
0.4811 10670 0.0183
0.4815 10680 0.0239
0.4820 10690 0.0205
0.4824 10700 0.0144
0.4829 10710 0.0177
0.4833 10720 0.0114
0.4838 10730 0.0117
0.4842 10740 0.0285
0.4847 10750 0.0265
0.4851 10760 0.0219
0.4856 10770 0.0244
0.4860 10780 0.0209
0.4865 10790 0.0173
0.4869 10800 0.0185
0.4874 10810 0.0129
0.4878 10820 0.0162
0.4883 10830 0.015
0.4888 10840 0.0183
0.4892 10850 0.0138
0.4897 10860 0.0172
0.4901 10870 0.0211
0.4906 10880 0.0229
0.4910 10890 0.0129
0.4915 10900 0.0239
0.4919 10910 0.0288
0.4924 10920 0.0117
0.4928 10930 0.0152
0.4933 10940 0.0182
0.4937 10950 0.0258
0.4942 10960 0.0162
0.4946 10970 0.0141
0.4951 10980 0.0195
0.4955 10990 0.0151
0.4960 11000 0.0251
0.4964 11010 0.0167
0.4969 11020 0.0243
0.4973 11030 0.0194
0.4978 11040 0.0223
0.4982 11050 0.0196
0.4987 11060 0.0131
0.4991 11070 0.0207
0.4996 11080 0.013
0.5000 11090 0.0204
0.5005 11100 0.0098
0.5009 11110 0.0136
0.5014 11120 0.0158
0.5018 11130 0.0103
0.5023 11140 0.0179
0.5027 11150 0.0227
0.5032 11160 0.0296
0.5036 11170 0.0136
0.5041 11180 0.0276
0.5045 11190 0.0203
0.5050 11200 0.0176
0.5054 11210 0.0194
0.5059 11220 0.0182
0.5063 11230 0.0211
0.5068 11240 0.0107
0.5072 11250 0.0192
0.5077 11260 0.0173
0.5081 11270 0.0205
0.5086 11280 0.0056
0.5090 11290 0.0237
0.5095 11300 0.0242
0.5099 11310 0.0256
0.5104 11320 0.0152
0.5108 11330 0.0174
0.5113 11340 0.0127
0.5117 11350 0.0101
0.5122 11360 0.0244
0.5126 11370 0.0133
0.5131 11380 0.0179
0.5135 11390 0.0176
0.5140 11400 0.0209
0.5145 11410 0.0116
0.5149 11420 0.0239
0.5154 11430 0.0232
0.5158 11440 0.0206
0.5163 11450 0.0173
0.5167 11460 0.017
0.5172 11470 0.0145
0.5176 11480 0.0201
0.5181 11490 0.0146
0.5185 11500 0.02
0.5190 11510 0.0127
0.5194 11520 0.0167
0.5199 11530 0.0109
0.5203 11540 0.0172
0.5208 11550 0.0118
0.5212 11560 0.028
0.5217 11570 0.0188
0.5221 11580 0.0083
0.5226 11590 0.024
0.5230 11600 0.0225
0.5235 11610 0.0263
0.5239 11620 0.0274
0.5244 11630 0.0403
0.5248 11640 0.0137
0.5253 11650 0.0202
0.5257 11660 0.0115
0.5262 11670 0.0255
0.5266 11680 0.0186
0.5271 11690 0.0274
0.5275 11700 0.0215
0.5280 11710 0.028
0.5284 11720 0.0146
0.5289 11730 0.0201
0.5293 11740 0.0165
0.5298 11750 0.0139
0.5302 11760 0.0175
0.5307 11770 0.0111
0.5311 11780 0.02
0.5316 11790 0.0156
0.5320 11800 0.0164
0.5325 11810 0.0204
0.5329 11820 0.017
0.5334 11830 0.0216
0.5338 11840 0.0213
0.5343 11850 0.0242
0.5347 11860 0.0224
0.5352 11870 0.0203
0.5356 11880 0.0304
0.5361 11890 0.0143
0.5365 11900 0.0241
0.5370 11910 0.0122
0.5374 11920 0.0114
0.5379 11930 0.0241
0.5383 11940 0.018
0.5388 11950 0.0148
0.5392 11960 0.0167
0.5397 11970 0.0151
0.5402 11980 0.0204
0.5406 11990 0.0166
0.5411 12000 0.0167
0.5415 12010 0.0186
0.5420 12020 0.0308
0.5424 12030 0.013
0.5429 12040 0.0119
0.5433 12050 0.021
0.5438 12060 0.0147
0.5442 12070 0.029
0.5447 12080 0.0204
0.5451 12090 0.0203
0.5456 12100 0.019
0.5460 12110 0.0212
0.5465 12120 0.0246
0.5469 12130 0.0141
0.5474 12140 0.0226
0.5478 12150 0.0206
0.5483 12160 0.0247
0.5487 12170 0.0103
0.5492 12180 0.0211
0.5496 12190 0.014
0.5501 12200 0.0209
0.5505 12210 0.0301
0.5510 12220 0.0067
0.5514 12230 0.0181
0.5519 12240 0.0099
0.5523 12250 0.0106
0.5528 12260 0.0103
0.5532 12270 0.0102
0.5537 12280 0.0168
0.5541 12290 0.0179
0.5546 12300 0.0059
0.5550 12310 0.0102
0.5555 12320 0.0139
0.5559 12330 0.0189
0.5564 12340 0.0183
0.5568 12350 0.0277
0.5573 12360 0.0156
0.5577 12370 0.0293
0.5582 12380 0.0083
0.5586 12390 0.0302
0.5591 12400 0.0258
0.5595 12410 0.0257
0.5600 12420 0.0171
0.5604 12430 0.026
0.5609 12440 0.0153
0.5613 12450 0.0191
0.5618 12460 0.0131
0.5622 12470 0.0228
0.5627 12480 0.0198
0.5631 12490 0.0138
0.5636 12500 0.014
0.5640 12510 0.0149
0.5645 12520 0.0222
0.5649 12530 0.0226
0.5654 12540 0.0166
0.5659 12550 0.0146
0.5663 12560 0.0235
0.5668 12570 0.0289
0.5672 12580 0.0263
0.5677 12590 0.0155
0.5681 12600 0.0165
0.5686 12610 0.0168
0.5690 12620 0.0174
0.5695 12630 0.0079
0.5699 12640 0.0226
0.5704 12650 0.0354
0.5708 12660 0.0126
0.5713 12670 0.0155
0.5717 12680 0.0137
0.5722 12690 0.0255
0.5726 12700 0.0144
0.5731 12710 0.0177
0.5735 12720 0.0131
0.5740 12730 0.019
0.5744 12740 0.0145
0.5749 12750 0.0153
0.5753 12760 0.0116
0.5758 12770 0.0134
0.5762 12780 0.0193
0.5767 12790 0.0136
0.5771 12800 0.02
0.5776 12810 0.0235
0.5780 12820 0.0148
0.5785 12830 0.0112
0.5789 12840 0.016
0.5794 12850 0.0284
0.5798 12860 0.0326
0.5803 12870 0.015
0.5807 12880 0.0225
0.5812 12890 0.0123
0.5816 12900 0.0127
0.5821 12910 0.0236
0.5825 12920 0.0192
0.5830 12930 0.0144
0.5834 12940 0.0277
0.5839 12950 0.0098
0.5843 12960 0.0156
0.5848 12970 0.0307
0.5852 12980 0.0243
0.5857 12990 0.0236
0.5861 13000 0.0208
0.5866 13010 0.0234
0.5870 13020 0.021
0.5875 13030 0.0191
0.5879 13040 0.0107
0.5884 13050 0.0247
0.5888 13060 0.0313
0.5893 13070 0.0091
0.5897 13080 0.0101
0.5902 13090 0.0248
0.5906 13100 0.0095
0.5911 13110 0.0121
0.5916 13120 0.0227
0.5920 13130 0.0196
0.5925 13140 0.0145
0.5929 13150 0.0244
0.5934 13160 0.0267
0.5938 13170 0.0267
0.5943 13180 0.0187
0.5947 13190 0.0157
0.5952 13200 0.0225
0.5956 13210 0.0162
0.5961 13220 0.0213
0.5965 13230 0.0111
0.5970 13240 0.0248
0.5974 13250 0.0088
0.5979 13260 0.0203
0.5983 13270 0.0233
0.5988 13280 0.0086
0.5992 13290 0.0151
0.5997 13300 0.0167
0.6001 13310 0.0127
0.6006 13320 0.0171
0.6010 13330 0.0127
0.6015 13340 0.0196
0.6019 13350 0.0254
0.6024 13360 0.0254
0.6028 13370 0.0192
0.6033 13380 0.0192
0.6037 13390 0.014
0.6042 13400 0.0104
0.6046 13410 0.0119
0.6051 13420 0.0126
0.6055 13430 0.02
0.6060 13440 0.0163
0.6064 13450 0.0137
0.6069 13460 0.0235
0.6073 13470 0.0191
0.6078 13480 0.017
0.6082 13490 0.0149
0.6087 13500 0.0162
0.6091 13510 0.0168
0.6096 13520 0.0152
0.6100 13530 0.0154
0.6105 13540 0.0235
0.6109 13550 0.01
0.6114 13560 0.0093
0.6118 13570 0.0187
0.6123 13580 0.0185
0.6127 13590 0.0145
0.6132 13600 0.0116
0.6136 13610 0.0268
0.6141 13620 0.0152
0.6145 13630 0.0108
0.6150 13640 0.0158
0.6154 13650 0.0159
0.6159 13660 0.0109
0.6163 13670 0.0084
0.6168 13680 0.0176
0.6173 13690 0.0181
0.6177 13700 0.0087
0.6182 13710 0.0134
0.6186 13720 0.0159
0.6191 13730 0.0116
0.6195 13740 0.0193
0.6200 13750 0.0148
0.6204 13760 0.0186
0.6209 13770 0.0111
0.6213 13780 0.0122
0.6218 13790 0.0215
0.6222 13800 0.0117
0.6227 13810 0.0176
0.6231 13820 0.0157
0.6236 13830 0.0139
0.6240 13840 0.0244
0.6245 13850 0.021
0.6249 13860 0.0117
0.6254 13870 0.0115
0.6258 13880 0.0248
0.6263 13890 0.018
0.6267 13900 0.0188
0.6272 13910 0.017
0.6276 13920 0.0217
0.6281 13930 0.0138
0.6285 13940 0.0213
0.6290 13950 0.0109
0.6294 13960 0.0114
0.6299 13970 0.0158
0.6303 13980 0.0183
0.6308 13990 0.0138
0.6312 14000 0.0199
0.6317 14010 0.0149
0.6321 14020 0.0179
0.6326 14030 0.015
0.6330 14040 0.0079
0.6335 14050 0.0192
0.6339 14060 0.022
0.6344 14070 0.0171
0.6348 14080 0.0151
0.6353 14090 0.013
0.6357 14100 0.0286
0.6362 14110 0.0228
0.6366 14120 0.0123
0.6371 14130 0.0251
0.6375 14140 0.0064
0.6380 14150 0.0103
0.6384 14160 0.0307
0.6389 14170 0.0218
0.6393 14180 0.0119
0.6398 14190 0.0183
0.6402 14200 0.0285
0.6407 14210 0.0101
0.6411 14220 0.0074
0.6416 14230 0.013
0.6420 14240 0.0126
0.6425 14250 0.0209
0.6430 14260 0.0095
0.6434 14270 0.0231
0.6439 14280 0.0147
0.6443 14290 0.0137
0.6448 14300 0.0102
0.6452 14310 0.0138
0.6457 14320 0.0109
0.6461 14330 0.0348
0.6466 14340 0.0245
0.6470 14350 0.0096
0.6475 14360 0.0114
0.6479 14370 0.0132
0.6484 14380 0.0237
0.6488 14390 0.0102
0.6493 14400 0.0176
0.6497 14410 0.0131
0.6502 14420 0.0101
0.6506 14430 0.0222
0.6511 14440 0.0206
0.6515 14450 0.0098
0.6520 14460 0.0219
0.6524 14470 0.0192
0.6529 14480 0.0126
0.6533 14490 0.018
0.6538 14500 0.011
0.6542 14510 0.0219
0.6547 14520 0.0162
0.6551 14530 0.0194
0.6556 14540 0.0144
0.6560 14550 0.0153
0.6565 14560 0.0128
0.6569 14570 0.0158
0.6574 14580 0.0186
0.6578 14590 0.0114
0.6583 14600 0.0188
0.6587 14610 0.011
0.6592 14620 0.0301
0.6596 14630 0.021
0.6601 14640 0.0137
0.6605 14650 0.0098
0.6610 14660 0.0282
0.6614 14670 0.0108
0.6619 14680 0.0159
0.6623 14690 0.0098
0.6628 14700 0.0242
0.6632 14710 0.0163
0.6637 14720 0.0299
0.6641 14730 0.0113
0.6646 14740 0.0171
0.6650 14750 0.0132
0.6655 14760 0.0198
0.6659 14770 0.0131
0.6664 14780 0.0121
0.6668 14790 0.0232
0.6673 14800 0.0165
0.6677 14810 0.0108
0.6682 14820 0.0149
0.6687 14830 0.0143
0.6691 14840 0.012
0.6696 14850 0.0176
0.6700 14860 0.0245
0.6705 14870 0.0269
0.6709 14880 0.022
0.6714 14890 0.0133
0.6718 14900 0.0308
0.6723 14910 0.0164
0.6727 14920 0.0189
0.6732 14930 0.0123
0.6736 14940 0.0212
0.6741 14950 0.018
0.6745 14960 0.0178
0.6750 14970 0.0201
0.6754 14980 0.0115
0.6759 14990 0.0276
0.6763 15000 0.0135
0.6768 15010 0.0172
0.6772 15020 0.0164
0.6777 15030 0.0084
0.6781 15040 0.0169
0.6786 15050 0.0136
0.6790 15060 0.0083
0.6795 15070 0.0151
0.6799 15080 0.0142
0.6804 15090 0.0115
0.6808 15100 0.0133
0.6813 15110 0.0253
0.6817 15120 0.0212
0.6822 15130 0.0117
0.6826 15140 0.0194
0.6831 15150 0.0137
0.6835 15160 0.0121
0.6840 15170 0.0193
0.6844 15180 0.0144
0.6849 15190 0.0204
0.6853 15200 0.0204
0.6858 15210 0.0104
0.6862 15220 0.0156
0.6867 15230 0.0257
0.6871 15240 0.0115
0.6876 15250 0.0071
0.6880 15260 0.0097
0.6885 15270 0.0173
0.6889 15280 0.015
0.6894 15290 0.0075
0.6898 15300 0.0184
0.6903 15310 0.0095
0.6907 15320 0.0235
0.6912 15330 0.0177
0.6916 15340 0.0138
0.6921 15350 0.0146
0.6925 15360 0.0129
0.6930 15370 0.0223
0.6934 15380 0.0141
0.6939 15390 0.0143
0.6944 15400 0.0172
0.6948 15410 0.0206
0.6953 15420 0.0152
0.6957 15430 0.0089
0.6962 15440 0.0164
0.6966 15450 0.0195
0.6971 15460 0.0135
0.6975 15470 0.0169
0.6980 15480 0.0166
0.6984 15490 0.0106
0.6989 15500 0.0211
0.6993 15510 0.0177
0.6998 15520 0.008
0.7002 15530 0.0176
0.7007 15540 0.0165
0.7011 15550 0.0231
0.7016 15560 0.0152
0.7020 15570 0.0167
0.7025 15580 0.0099
0.7029 15590 0.0145
0.7034 15600 0.0129
0.7038 15610 0.0159
0.7043 15620 0.0147
0.7047 15630 0.0156
0.7052 15640 0.0176
0.7056 15650 0.0252
0.7061 15660 0.0211
0.7065 15670 0.0184
0.7070 15680 0.0137
0.7074 15690 0.0149
0.7079 15700 0.0099
0.7083 15710 0.0199
0.7088 15720 0.0161
0.7092 15730 0.0133
0.7097 15740 0.0109
0.7101 15750 0.025
0.7106 15760 0.0087
0.7110 15770 0.0152
0.7115 15780 0.0175
0.7119 15790 0.0103
0.7124 15800 0.0131
0.7128 15810 0.0157
0.7133 15820 0.0298
0.7137 15830 0.0111
0.7142 15840 0.0174
0.7146 15850 0.0153
0.7151 15860 0.0177
0.7155 15870 0.0139
0.7160 15880 0.0215
0.7164 15890 0.0178
0.7169 15900 0.0214
0.7173 15910 0.0178
0.7178 15920 0.0155
0.7182 15930 0.0148
0.7187 15940 0.0149
0.7191 15950 0.0126
0.7196 15960 0.011
0.7201 15970 0.018
0.7205 15980 0.0198
0.7210 15990 0.0273
0.7214 16000 0.017
0.7219 16010 0.0122
0.7223 16020 0.0139
0.7228 16030 0.0135
0.7232 16040 0.0101
0.7237 16050 0.013
0.7241 16060 0.0141
0.7246 16070 0.0076
0.7250 16080 0.0112
0.7255 16090 0.0126
0.7259 16100 0.0086
0.7264 16110 0.0064
0.7268 16120 0.0116
0.7273 16130 0.0111
0.7277 16140 0.0101
0.7282 16150 0.0104
0.7286 16160 0.0129
0.7291 16170 0.0125
0.7295 16180 0.0146
0.7300 16190 0.0108
0.7304 16200 0.0075
0.7309 16210 0.014
0.7313 16220 0.0125
0.7318 16230 0.0103
0.7322 16240 0.0158
0.7327 16250 0.0158
0.7331 16260 0.0129
0.7336 16270 0.0173
0.7340 16280 0.018
0.7345 16290 0.0275
0.7349 16300 0.0172
0.7354 16310 0.017
0.7358 16320 0.0206
0.7363 16330 0.021
0.7367 16340 0.0123
0.7372 16350 0.0188
0.7376 16360 0.0137
0.7381 16370 0.0145
0.7385 16380 0.0192
0.7390 16390 0.0211
0.7394 16400 0.0211
0.7399 16410 0.0167
0.7403 16420 0.0099
0.7408 16430 0.0114
0.7412 16440 0.0168
0.7417 16450 0.011
0.7421 16460 0.0255
0.7426 16470 0.012
0.7430 16480 0.0145
0.7435 16490 0.0136
0.7439 16500 0.0072
0.7444 16510 0.0215
0.7448 16520 0.0181
0.7453 16530 0.0153
0.7458 16540 0.0072
0.7462 16550 0.0117
0.7467 16560 0.0158
0.7471 16570 0.0094
0.7476 16580 0.0187
0.7480 16590 0.0196
0.7485 16600 0.0147
0.7489 16610 0.0115
0.7494 16620 0.008
0.7498 16630 0.0095
0.7503 16640 0.0124
0.7507 16650 0.0276
0.7512 16660 0.0244
0.7516 16670 0.0186
0.7521 16680 0.019
0.7525 16690 0.01
0.7530 16700 0.0134
0.7534 16710 0.0105
0.7539 16720 0.0116
0.7543 16730 0.0059
0.7548 16740 0.0137
0.7552 16750 0.0068
0.7557 16760 0.022
0.7561 16770 0.0213
0.7566 16780 0.0237
0.7570 16790 0.0181
0.7575 16800 0.0072
0.7579 16810 0.0189
0.7584 16820 0.0103
0.7588 16830 0.0065
0.7593 16840 0.0181
0.7597 16850 0.0131
0.7602 16860 0.0083
0.7606 16870 0.0263
0.7611 16880 0.0226
0.7615 16890 0.018
0.7620 16900 0.0146
0.7624 16910 0.0122
0.7629 16920 0.0077
0.7633 16930 0.0195
0.7638 16940 0.0124
0.7642 16950 0.0185
0.7647 16960 0.0118
0.7651 16970 0.0106
0.7656 16980 0.0049
0.7660 16990 0.0224
0.7665 17000 0.0133
0.7669 17010 0.0224
0.7674 17020 0.0162
0.7678 17030 0.0084
0.7683 17040 0.0157
0.7687 17050 0.0175
0.7692 17060 0.0181
0.7696 17070 0.0149
0.7701 17080 0.0231
0.7705 17090 0.0065
0.7710 17100 0.0078
0.7715 17110 0.0122
0.7719 17120 0.0181
0.7724 17130 0.0252
0.7728 17140 0.0098
0.7733 17150 0.0215
0.7737 17160 0.0284
0.7742 17170 0.0173
0.7746 17180 0.0245
0.7751 17190 0.0207
0.7755 17200 0.0188
0.7760 17210 0.0162
0.7764 17220 0.0229
0.7769 17230 0.0228
0.7773 17240 0.0129
0.7778 17250 0.0174
0.7782 17260 0.0127
0.7787 17270 0.0139
0.7791 17280 0.0273
0.7796 17290 0.0201
0.7800 17300 0.0088
0.7805 17310 0.0067
0.7809 17320 0.0146
0.7814 17330 0.0165
0.7818 17340 0.0099
0.7823 17350 0.0212
0.7827 17360 0.0082
0.7832 17370 0.0152
0.7836 17380 0.0145
0.7841 17390 0.0101
0.7845 17400 0.011
0.7850 17410 0.0167
0.7854 17420 0.0128
0.7859 17430 0.0159
0.7863 17440 0.012
0.7868 17450 0.0131
0.7872 17460 0.0115
0.7877 17470 0.0238
0.7881 17480 0.0129
0.7886 17490 0.0172
0.7890 17500 0.015
0.7895 17510 0.0119
0.7899 17520 0.0072
0.7904 17530 0.0142
0.7908 17540 0.0145
0.7913 17550 0.0126
0.7917 17560 0.014
0.7922 17570 0.0039
0.7926 17580 0.0087
0.7931 17590 0.009
0.7935 17600 0.0147
0.7940 17610 0.0108
0.7944 17620 0.0098
0.7949 17630 0.0173
0.7953 17640 0.0078
0.7958 17650 0.0086
0.7962 17660 0.014
0.7967 17670 0.0171
0.7972 17680 0.0127
0.7976 17690 0.0135
0.7981 17700 0.0073
0.7985 17710 0.0115
0.7990 17720 0.0125
0.7994 17730 0.0186
0.7999 17740 0.0164
0.8003 17750 0.014
0.8008 17760 0.0083
0.8012 17770 0.0142
0.8017 17780 0.0121
0.8021 17790 0.0176
0.8026 17800 0.0136
0.8030 17810 0.0109
0.8035 17820 0.0105
0.8039 17830 0.0172
0.8044 17840 0.0137
0.8048 17850 0.0219
0.8053 17860 0.0054
0.8057 17870 0.0179
0.8062 17880 0.0167
0.8066 17890 0.0215
0.8071 17900 0.0125
0.8075 17910 0.0115
0.8080 17920 0.0105
0.8084 17930 0.0096
0.8089 17940 0.0097
0.8093 17950 0.013
0.8098 17960 0.0298
0.8102 17970 0.0142
0.8107 17980 0.0123
0.8111 17990 0.0133
0.8116 18000 0.024
0.8120 18010 0.0143
0.8125 18020 0.0123
0.8129 18030 0.0158
0.8134 18040 0.0045
0.8138 18050 0.0154
0.8143 18060 0.0072
0.8147 18070 0.015
0.8152 18080 0.0165
0.8156 18090 0.0142
0.8161 18100 0.0089
0.8165 18110 0.0059
0.8170 18120 0.0176
0.8174 18130 0.0098
0.8179 18140 0.0155
0.8183 18150 0.0117
0.8188 18160 0.0156
0.8192 18170 0.0173
0.8197 18180 0.021
0.8201 18190 0.0161
0.8206 18200 0.0193
0.8210 18210 0.0185
0.8215 18220 0.0146
0.8219 18230 0.0107
0.8224 18240 0.014
0.8229 18250 0.01
0.8233 18260 0.0272
0.8238 18270 0.0069
0.8242 18280 0.0079
0.8247 18290 0.0201
0.8251 18300 0.0139
0.8256 18310 0.0127
0.8260 18320 0.0162
0.8265 18330 0.0201
0.8269 18340 0.0067
0.8274 18350 0.0128
0.8278 18360 0.0069
0.8283 18370 0.0171
0.8287 18380 0.0076
0.8292 18390 0.0203
0.8296 18400 0.0109
0.8301 18410 0.0148
0.8305 18420 0.015
0.8310 18430 0.0072
0.8314 18440 0.0169
0.8319 18450 0.0207
0.8323 18460 0.0207
0.8328 18470 0.0106
0.8332 18480 0.0141
0.8337 18490 0.0097
0.8341 18500 0.0161
0.8346 18510 0.007
0.8350 18520 0.0083
0.8355 18530 0.0069
0.8359 18540 0.0156
0.8364 18550 0.0199
0.8368 18560 0.0152
0.8373 18570 0.0061
0.8377 18580 0.0164
0.8382 18590 0.0104
0.8386 18600 0.013
0.8391 18610 0.0203
0.8395 18620 0.0116
0.8400 18630 0.0093
0.8404 18640 0.0116
0.8409 18650 0.0151
0.8413 18660 0.0288
0.8418 18670 0.0186
0.8422 18680 0.0117
0.8427 18690 0.0201
0.8431 18700 0.0052
0.8436 18710 0.0131
0.8440 18720 0.0117
0.8445 18730 0.0147
0.8449 18740 0.0143
0.8454 18750 0.0131
0.8458 18760 0.014
0.8463 18770 0.0165
0.8467 18780 0.0121
0.8472 18790 0.0069
0.8476 18800 0.0203
0.8481 18810 0.0194
0.8486 18820 0.0174
0.8490 18830 0.0084
0.8495 18840 0.0099
0.8499 18850 0.0102
0.8504 18860 0.0141
0.8508 18870 0.0067
0.8513 18880 0.0165
0.8517 18890 0.0129
0.8522 18900 0.0257
0.8526 18910 0.0183
0.8531 18920 0.0151
0.8535 18930 0.0115
0.8540 18940 0.0164
0.8544 18950 0.0113
0.8549 18960 0.0114
0.8553 18970 0.022
0.8558 18980 0.0079
0.8562 18990 0.0196
0.8567 19000 0.0212
0.8571 19010 0.0091
0.8576 19020 0.0134
0.8580 19030 0.0176
0.8585 19040 0.0112
0.8589 19050 0.0181
0.8594 19060 0.0204
0.8598 19070 0.0101
0.8603 19080 0.0153
0.8607 19090 0.0138
0.8612 19100 0.0104
0.8616 19110 0.0086
0.8621 19120 0.0262
0.8625 19130 0.0115
0.8630 19140 0.01
0.8634 19150 0.0095
0.8639 19160 0.0074
0.8643 19170 0.0052
0.8648 19180 0.0275
0.8652 19190 0.0125
0.8657 19200 0.0104
0.8661 19210 0.0078
0.8666 19220 0.0082
0.8670 19230 0.0081
0.8675 19240 0.0155
0.8679 19250 0.0088
0.8684 19260 0.0145
0.8688 19270 0.0137
0.8693 19280 0.0073
0.8697 19290 0.0081
0.8702 19300 0.0124
0.8706 19310 0.0124
0.8711 19320 0.0096
0.8715 19330 0.0155
0.8720 19340 0.0104
0.8724 19350 0.0172
0.8729 19360 0.0111
0.8733 19370 0.0118
0.8738 19380 0.0173
0.8743 19390 0.0073
0.8747 19400 0.0061
0.8752 19410 0.009
0.8756 19420 0.0171
0.8761 19430 0.0129
0.8765 19440 0.025
0.8770 19450 0.0136
0.8774 19460 0.0266
0.8779 19470 0.0097
0.8783 19480 0.0095
0.8788 19490 0.0219
0.8792 19500 0.0079
0.8797 19510 0.0193
0.8801 19520 0.0133
0.8806 19530 0.0136
0.8810 19540 0.0091
0.8815 19550 0.0097
0.8819 19560 0.009
0.8824 19570 0.0116
0.8828 19580 0.0178
0.8833 19590 0.0198
0.8837 19600 0.0062
0.8842 19610 0.0167
0.8846 19620 0.0143
0.8851 19630 0.0133
0.8855 19640 0.0177
0.8860 19650 0.0148
0.8864 19660 0.0119
0.8869 19670 0.0142
0.8873 19680 0.0116
0.8878 19690 0.0141
0.8882 19700 0.015
0.8887 19710 0.0128
0.8891 19720 0.0092
0.8896 19730 0.019
0.8900 19740 0.0104
0.8905 19750 0.0204
0.8909 19760 0.014
0.8914 19770 0.0165
0.8918 19780 0.0092
0.8923 19790 0.0083
0.8927 19800 0.0075
0.8932 19810 0.0121
0.8936 19820 0.0102
0.8941 19830 0.007
0.8945 19840 0.0054
0.8950 19850 0.0142
0.8954 19860 0.0106
0.8959 19870 0.0055
0.8963 19880 0.0148
0.8968 19890 0.0166
0.8972 19900 0.0143
0.8977 19910 0.0129
0.8981 19920 0.0175
0.8986 19930 0.0134
0.8990 19940 0.0146
0.8995 19950 0.0117
0.9000 19960 0.0133
0.9004 19970 0.0211
0.9009 19980 0.0096
0.9013 19990 0.0147
0.9018 20000 0.0113
0.9022 20010 0.0234
0.9027 20020 0.0096
0.9031 20030 0.013
0.9036 20040 0.0151
0.9040 20050 0.0141
0.9045 20060 0.0196
0.9049 20070 0.0105
0.9054 20080 0.0176
0.9058 20090 0.0051
0.9063 20100 0.0148
0.9067 20110 0.0117
0.9072 20120 0.0119
0.9076 20130 0.0148
0.9081 20140 0.0172
0.9085 20150 0.0081
0.9090 20160 0.0195
0.9094 20170 0.0111
0.9099 20180 0.0142
0.9103 20190 0.0084
0.9108 20200 0.0137
0.9112 20210 0.0118
0.9117 20220 0.0104
0.9121 20230 0.0138
0.9126 20240 0.008
0.9130 20250 0.0116
0.9135 20260 0.0092
0.9139 20270 0.0164
0.9144 20280 0.0176
0.9148 20290 0.008
0.9153 20300 0.0134
0.9157 20310 0.0113
0.9162 20320 0.0102
0.9166 20330 0.0143
0.9171 20340 0.0115
0.9175 20350 0.0124
0.9180 20360 0.0086
0.9184 20370 0.0103
0.9189 20380 0.0136
0.9193 20390 0.0098
0.9198 20400 0.019
0.9202 20410 0.0151
0.9207 20420 0.0066
0.9211 20430 0.0142
0.9216 20440 0.0199
0.9220 20450 0.0164
0.9225 20460 0.0122
0.9229 20470 0.0186
0.9234 20480 0.0108
0.9238 20490 0.0139
0.9243 20500 0.0106
0.9247 20510 0.0224
0.9252 20520 0.017
0.9257 20530 0.0073
0.9261 20540 0.0101
0.9266 20550 0.0159
0.9270 20560 0.0178
0.9275 20570 0.0168
0.9279 20580 0.0151
0.9284 20590 0.0236
0.9288 20600 0.0079
0.9293 20610 0.0195
0.9297 20620 0.0066
0.9302 20630 0.0146
0.9306 20640 0.0223
0.9311 20650 0.0213
0.9315 20660 0.0089
0.9320 20670 0.0098
0.9324 20680 0.0131
0.9329 20690 0.0115
0.9333 20700 0.0101
0.9338 20710 0.0174
0.9342 20720 0.009
0.9347 20730 0.0178
0.9351 20740 0.0095
0.9356 20750 0.0102
0.9360 20760 0.0108
0.9365 20770 0.0135
0.9369 20780 0.0128
0.9374 20790 0.017
0.9378 20800 0.0098
0.9383 20810 0.012
0.9387 20820 0.0156
0.9392 20830 0.0156
0.9396 20840 0.0096
0.9401 20850 0.0095
0.9405 20860 0.0171
0.9410 20870 0.0099
0.9414 20880 0.0179
0.9419 20890 0.0249
0.9423 20900 0.0194
0.9428 20910 0.0134
0.9432 20920 0.0115
0.9437 20930 0.0064
0.9441 20940 0.0063
0.9446 20950 0.0093
0.9450 20960 0.0109
0.9455 20970 0.0194
0.9459 20980 0.0113
0.9464 20990 0.0124
0.9468 21000 0.0093
0.9473 21010 0.0091
0.9477 21020 0.0171
0.9482 21030 0.0111
0.9486 21040 0.015
0.9491 21050 0.0144
0.9495 21060 0.0099
0.9500 21070 0.0068
0.9504 21080 0.0064
0.9509 21090 0.0167
0.9514 21100 0.0134
0.9518 21110 0.0103
0.9523 21120 0.0112
0.9527 21130 0.0091
0.9532 21140 0.018
0.9536 21150 0.0073
0.9541 21160 0.0189
0.9545 21170 0.0213
0.9550 21180 0.014
0.9554 21190 0.0092
0.9559 21200 0.0175
0.9563 21210 0.0146
0.9568 21220 0.013
0.9572 21230 0.0145
0.9577 21240 0.0129
0.9581 21250 0.0143
0.9586 21260 0.012
0.9590 21270 0.0148
0.9595 21280 0.015
0.9599 21290 0.0078
0.9604 21300 0.0184
0.9608 21310 0.0086
0.9613 21320 0.0142
0.9617 21330 0.011
0.9622 21340 0.024
0.9626 21350 0.021
0.9631 21360 0.0096
0.9635 21370 0.0169
0.9640 21380 0.0186
0.9644 21390 0.0224
0.9649 21400 0.0138
0.9653 21410 0.0103
0.9658 21420 0.0086
0.9662 21430 0.006
0.9667 21440 0.0147
0.9671 21450 0.0059
0.9676 21460 0.0073
0.9680 21470 0.0066
0.9685 21480 0.0105
0.9689 21490 0.0113
0.9694 21500 0.0139
0.9698 21510 0.0162
0.9703 21520 0.015
0.9707 21530 0.0118
0.9712 21540 0.0129
0.9716 21550 0.0103
0.9721 21560 0.01
0.9725 21570 0.0153
0.9730 21580 0.017
0.9734 21590 0.0185
0.9739 21600 0.0176
0.9743 21610 0.0077
0.9748 21620 0.0077
0.9752 21630 0.0083
0.9757 21640 0.0124
0.9761 21650 0.017
0.9766 21660 0.0252
0.9771 21670 0.0127
0.9775 21680 0.02
0.9780 21690 0.0136
0.9784 21700 0.0186
0.9789 21710 0.0122
0.9793 21720 0.0146
0.9798 21730 0.0144
0.9802 21740 0.0159
0.9807 21750 0.0197
0.9811 21760 0.0152
0.9816 21770 0.0094
0.9820 21780 0.0134
0.9825 21790 0.0232
0.9829 21800 0.0039
0.9834 21810 0.0184
0.9838 21820 0.0139
0.9843 21830 0.0149
0.9847 21840 0.0147
0.9852 21850 0.026
0.9856 21860 0.0077
0.9861 21870 0.0092
0.9865 21880 0.0103
0.9870 21890 0.0196
0.9874 21900 0.017
0.9879 21910 0.009
0.9883 21920 0.0186
0.9888 21930 0.014
0.9892 21940 0.0124
0.9897 21950 0.0174
0.9901 21960 0.0166
0.9906 21970 0.0093
0.9910 21980 0.0107
0.9915 21990 0.0163
0.9919 22000 0.007
0.9924 22010 0.027
0.9928 22020 0.0093
0.9933 22030 0.0095
0.9937 22040 0.0143
0.9942 22050 0.0115
0.9946 22060 0.0104
0.9951 22070 0.0128
0.9955 22080 0.0037
0.9960 22090 0.015
0.9964 22100 0.012
0.9969 22110 0.016
0.9973 22120 0.0213
0.9978 22130 0.0104
0.9982 22140 0.0069
0.9987 22150 0.0087
0.9991 22160 0.0138
0.9996 22170 0.0153

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 3.3.1
  • Transformers: 4.47.0
  • PyTorch: 2.5.1+cu121
  • Accelerate: 1.2.1
  • Datasets: 3.3.1
  • Tokenizers: 0.21.0

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

MultipleNegativesRankingLoss

@misc{henderson2017efficient,
    title={Efficient Natural Language Response Suggestion for Smart Reply},
    author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
    year={2017},
    eprint={1705.00652},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}
Downloads last month
-
Safetensors
Model size
135M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for iambestfeed/phobert-base-v2-wiki-data-filter_fasttext_0.4_wseg-lr2e-05-1-epochs-bs-48

Finetuned
(260)
this model

Dataset used to train iambestfeed/phobert-base-v2-wiki-data-filter_fasttext_0.4_wseg-lr2e-05-1-epochs-bs-48