CoolFace
Modelpublic

seongil-dn/e5-large-neg-v0-bs64-2000

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes84downloads
Model Card

SentenceTransformer based on intfloat/multilingual-e5-large

This is a sentence-transformers model finetuned from intfloat/multilingual-e5-large. It maps sentences & paragraphs to a 1024-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: intfloat/multilingual-e5-large <!-- at revision ab10c1a7f42e74530fe7ae5be82e6d4f11a719eb -->
  • —Maximum Sequence Length: 512 tokens
  • —Output Dimensionality: 1024 tokens
  • —Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: XLMRobertaModel 
  (1): Pooling({'word_embedding_dimension': 1024, '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("seongil-dn/e5-large-neg-v0-bs64-2000")
# Run inference
sentences = [
    '아야미 ?카가 홍대 스테이라운지에서 개최하는 것은?',
    '▲ 사진= BJ 야하군 제공 일본 유명 AV배우 아야미 ?카(あやみ旬果)가 한국 팬들을 만난다. 아야미 ?카는 오는 7일 오후 홍대 스테이라운지에서 팬미팅을 개최한다. 야마미 ?카는 독보적인 이미지로 일본 뿐만 아니라 한국에서도 많은 팬을 가지고 있다. 이날 팬미팅에는 근황토크 및 게임, 포토타임, 사인회, 선물 증정 시간 등이 예정돼 있어 팬들의 기대감을 고조시켰다. 한편 아야미 ?카의 팬미팅은 19세 이상의 성인을 대상으로 진행되며, 온라인을 통해 티켓을 구매할 수 있다.',
    '일본 첫 단독공연을 앞둔 힙합그룹 MIB(엠아비)가 일본에서 뜨거운 인기를 실감하고 있다. 공연을 하루 앞둔 지난23일, MIB는 일본 도쿄 시부야에 있는 대형레코드 체인점 \'타워레코드\'에서 \'악수회\'를 성황리에 개최했다. \'악수회\' 수시간 전부터 MIB를 보기 위해 300여명의 팬들이 플래카드를 들고 타워레코드로 모여 현지관 계자를 놀라게 했다. 이에 앞서 MIB는 케이팝 전문방송인 \'K-POP LOVERS\'에 출연해 일본 진출 및 첫 단독 공연을 앞둔 소감을 전한 것은 물론, 강남의 칼럼에 소개된 에피소드에 대해 이야기하고 팬들의 궁금증을 풀어주는 시간도 가졌다. 정글엔터테인먼트 관계자는 "K-힙합을 MIB를 통해 일본 음악시장에 전파 할 수 있는 좋은 기회가 될 것이라고 생각한다"며 "향후 타워레코드 외에도 일본 메이저음반 기획사, 음반사와 접촉해 다양한 프로모션을 진행할 것"이라고 말했다. 현지 연예 관계자는 "MIB 멤버 강남이 재일교포라는 점이 현지 팬들에게 큰 관심을 불러일으키고 있는 것 같다. 특히 강남은 타워레코드 온라인 사이트에 격주 목요일마다 칼럼을 연재하고 있는데 이 또한 큰 인기를 모으고 있다"며 MIB의 일본 내 성공 가능성을 예측했다. 한편, MIB는 오늘(24일) 오후 3시 30분부터 하라주쿠에 위치한 아스트로홀에서 일본의 주요 음반 관계자들이 참석한 가운데 총2회에 걸쳐 일본 첫 단독 공연 \'We are M.I.B\'를 개최한다.& lt;연예부&gt;',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]

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

<!--

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 Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 40
  • —per_device_eval_batch_size: 40
  • —learning_rate: 1e-05
  • —num_train_epochs: 2
  • —warmup_steps: 500
  • —bf16: True
All Hyperparameters

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

  • —overwrite_output_dir: False
  • —do_predict: False
  • —eval_strategy: no
  • —prediction_loss_only: True
  • —per_device_train_batch_size: 40
  • —per_device_eval_batch_size: 40
  • —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: 1e-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: 2
  • —max_steps: -1
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: {}
  • —warmup_ratio: 0.0
  • —warmup_steps: 500
  • —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: True
  • —fp16: False
  • —fp16_opt_level: O1
  • —half_precision_backend: auto
  • —bf16_full_eval: False
  • —fp16_full_eval: False
  • —tf32: None
  • —local_rank: 0
  • —ddp_backend: None
  • —tpu_num_cores: None
  • —tpu_metrics_debug: False
  • —debug: []
  • —dataloader_drop_last: 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: {'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: False
  • —hub_always_push: False
  • —gradient_checkpointing: False
  • —gradient_checkpointing_kwargs: None
  • —include_inputs_for_metrics: False
  • —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
  • —batch_sampler: batch_sampler
  • —multi_dataset_batch_sampler: proportional

</details>

Training Logs

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

EpochStepTraining Loss
0.000312.7219
0.000722.7753
0.001032.7373
0.001342.7529
0.001752.6959
0.002062.768
0.002372.7428
0.002782.7725
0.003092.7389
0.0033102.7752
0.0036112.7
0.0040122.7492
0.0043132.7272
0.0046142.7501
0.0050152.759
0.0053162.7457
0.0056172.7419
0.0060182.739
0.0063192.7581
0.0066202.7158
0.0070212.725
0.0073222.7363
0.0076232.6828
0.0080242.7619
0.0083252.6938
0.0086262.7455
0.0090272.7248
0.0093282.7678
0.0096292.7563
0.0099302.7033
0.0103312.7035
0.0106322.7345
0.0109332.6754
0.0113342.7921
0.0116352.79
0.0119362.6865
0.0123372.7407
0.0126382.7362
0.0129392.6805
0.0133402.7402
0.0136412.6972
0.0139422.7356
0.0143432.712
0.0146442.6828
0.0149452.6852
0.0153462.7227
0.0156472.7209
0.0159482.7307
0.0162492.7703
0.0166502.7254
0.0169512.7373
0.0172522.7207
0.0176532.7273
0.0179542.7449
0.0182552.6575
0.0186562.7346
0.0189572.7311
0.0192582.7281
0.0196592.6742
0.0199602.6287
0.0202612.6896
0.0206622.6906
0.0209632.6318
0.0212642.6971
0.0216652.6691
0.0219662.6948
0.0222672.6952
0.0225682.6762
0.0229692.644
0.0232702.6647
0.0235712.6743
0.0239722.7299
0.0242732.714
0.0245742.6815
0.0249752.6845
0.0252762.7221
0.0255772.6515
0.0259782.6575
0.0262792.7143
0.0265802.6328
0.0269812.695
0.0272822.6909
0.0275832.7089
0.0279842.6435
0.0282852.6404
0.0285862.6449
0.0288872.6821
0.0292882.5998
0.0295892.6966
0.0298902.6861
0.0302912.6372
0.0305922.6655
0.0308932.6021
0.0312942.6309
0.0315952.6164
0.0318962.7396
0.0322972.7013
0.0325982.662
0.0328992.6793
0.03321002.6042
0.03351012.6704
0.03381022.661
0.03421032.6451
0.03451042.6339
0.03481052.6399
0.03511062.5796
0.03551072.5915
0.03581082.5749
0.03611092.6429
0.03651102.5537
0.03681112.6013
0.03711122.5918
0.03751132.5655
0.03781142.563
0.03811152.5716
0.03851162.56
0.03881172.4927
0.03911182.4578
0.03951192.5877
0.03981202.5528
0.04011212.5192
0.04051222.5065
0.04081232.5174
0.04111242.5555
0.04141252.468
0.04181262.5195
0.04211272.5036
0.04241282.479
0.04281292.5091
0.04311302.4626
0.04341312.5031
0.04381322.4815
0.04411332.502
0.04441342.5055
0.04481352.4191
0.04511362.502
0.04541372.4399
0.04581382.4433
0.04611392.4228
0.04641402.3879
0.04681412.4138
0.04711422.4406
0.04741432.4412
0.04771442.3929
0.04811452.4267
0.04841462.448
0.04871472.3706
0.04911482.3915
0.04941492.4324
0.04971502.4307
0.05011512.3764
0.05041522.3366
0.05071532.3657
0.05111542.2976
0.05141552.2982
0.05171562.3343
0.05211572.3154
0.05241582.3333
0.05271592.3634
0.05311602.2703
0.05341612.3085
0.05371622.2974
0.05401632.2984
0.05441642.2948
0.05471652.2454
0.05501662.2938
0.05541672.3112
0.05571682.2443
0.05601692.2266
0.05641702.3432
0.05671712.2663
0.05701722.2468
0.05741732.2611
0.05771742.261
0.05801752.2206
0.05841762.154
0.05871772.2501
0.05901782.2063
0.05941792.2257
0.05971802.151
0.06001812.1894
0.06031822.1617
0.06071832.107
0.06101842.1248
0.06131852.1756
0.06171862.1391
0.06201872.0931
0.06231882.0362
0.06271892.1396
0.06301902.1278
0.06331912.1121
0.06371922.0986
0.06401932.0724
0.06431942.0569
0.06471952.026
0.06501962.0513
0.06531972.0339
0.06561982.0807
0.06601992.028
0.06632002.052
0.06662012.0473
0.06702021.9968
0.06732031.9547
0.06762041.9887
0.06802051.8737
0.06832061.8722
0.06862071.8842
0.06902081.9114
0.06932091.8623
0.06962101.744
0.07002111.8192
0.07032121.8231
0.07062131.781
0.07102141.8544
0.07132151.8087
0.07162161.7882
0.07192171.7918
0.07232181.7644
0.07262191.7063
0.07292201.7894
0.07332211.6937
0.07362221.6524
0.07392231.6182
0.07432241.6464
0.07462251.6342
0.07492261.6756
0.07532271.6458
0.07562281.6434
0.07592291.58
0.07632301.5874
0.07662311.547
0.07692321.5261
0.07732331.568
0.07762341.5031
0.07792351.4509
0.07822361.4294
0.07862371.397
0.07892381.4794
0.07922391.3671
0.07962401.3465
0.07992411.3586
0.08022421.3999
0.08062431.3164
0.08092441.2398
0.08122451.2802
0.08162461.3665
0.08192471.239
0.08222481.1971
0.08262491.2108
0.08292501.2047
0.08322511.1824
0.08362521.1744
0.08392531.118
0.08422541.1106
0.08452551.1378
0.08492561.013
0.08522571.053
0.08552581.121
0.08592591.0225
0.08622600.9968
0.08652610.9309
0.08692620.9649
0.08722630.9778
0.08752640.9871
0.08792650.9451
0.08822660.8348
0.08852670.8388
0.08892680.7932
0.08922690.7745
0.08952700.806
0.08992710.7713
0.09022720.8147
0.09052730.7881
0.09082740.6988
0.09122750.7321
0.09152760.658
0.09182770.6616
0.09222780.7005
0.09252790.6202
0.09282800.6297
0.09322810.6376
0.09352820.5503
0.09382830.5584
0.09422840.553
0.09452850.5496
0.09482860.523
0.09522870.5122
0.09552880.5487
0.09582890.5099
0.09622900.5036
0.09652910.5226
0.09682920.5166
0.09712930.5152
0.09752940.5026
0.09782950.4217
0.09812960.4519
0.09852970.4942
0.09882980.4916
0.09912990.4697
0.09953000.5236
0.09983010.4096
0.10013020.4599
0.10053030.4538
0.10083040.4469
0.10113050.3647
0.10153060.4438
0.10183070.3887
0.10213080.4455
0.10253090.4266
0.10283100.4024
0.10313110.4443
0.10343120.3603
0.10383130.3466
0.10413140.3599
0.10443150.359
0.10483160.3696
0.10513170.3051
0.10543180.3049
0.10583190.3917
0.10613200.3548
0.10643210.3247
0.10683220.3339
0.10713230.3412
0.10743240.3404
0.10783250.3312
0.10813260.3421
0.10843270.3128
0.10883280.3071
0.10913290.3324
0.10943300.3144
0.10973310.3926
0.11013320.329
0.11043330.3127
0.11073340.2943
0.11113350.3113
0.11143360.3196
0.11173370.3124
0.11213380.359
0.11243390.3002
0.11273400.3034
0.11313410.3183
0.11343420.293
0.11373430.3177
0.11413440.3065
0.11443450.3224
0.11473460.242
0.11513470.3478
0.11543480.2316
0.11573490.3266
0.11603500.3164
0.11643510.3205
0.11673520.305
0.11703530.3371
0.11743540.3613
0.11773550.3245
0.11803560.2858
0.11843570.3188
0.11873580.281
0.11903590.2857
0.11943600.293
0.11973610.2687
0.12003620.2914
0.12043630.3362
0.12073640.2652
0.12103650.2964
0.12143660.2987
0.12173670.3005
0.12203680.2879
0.12233690.2194
0.12273700.2624
0.12303710.3211
0.12333720.2729
0.12373730.3242
0.12403740.2367
0.12433750.2894
0.12473760.2264
0.1253770.2065
0.12533780.3032
0.12573790.2204
0.12603800.2386
0.12633810.3083
0.12673820.2363
0.12703830.3204
0.12733840.2661
0.12773850.2817
0.12803860.2944
0.12833870.2524
0.12863880.2543
0.12903890.2629
0.12933900.2952
0.12963910.2251
0.13003920.2912
0.13033930.2922
0.13063940.2564
0.13103950.2916
0.13133960.2392
0.13163970.2545
0.13203980.2597
0.13233990.2941
0.13264000.2025
0.13304010.2615
0.13334020.201
0.13364030.2331
0.13404040.2289
0.13434050.2429
0.13464060.2555
0.13494070.2442
0.13534080.2491
0.13564090.2676
0.13594100.2394
0.13634110.1998
0.13664120.3141
0.13694130.239
0.13734140.2281
0.13764150.2278
0.13794160.1913
0.13834170.2615
0.13864180.2708
0.13894190.2287
0.13934200.2409
0.13964210.271
0.13994220.2295
0.14034230.2403
0.14064240.2443
0.14094250.2621
0.14124260.2835
0.14164270.1829
0.14194280.2298
0.14224290.2479
0.14264300.2467
0.14294310.2288
0.14324320.1992
0.14364330.2195
0.14394340.2502
0.14424350.2043
0.14464360.2548
0.14494370.2429
0.14524380.2039
0.14564390.2663
0.14594400.1836
0.14624410.2144
0.14664420.223
0.14694430.2568
0.14724440.2207
0.14754450.1863
0.14794460.21
0.14824470.2514
0.14854480.208
0.14894490.2201
0.14924500.2132
0.14954510.231
0.14994520.2629
0.15024530.2138
0.15054540.2611
0.15094550.1523
0.15124560.2335
0.15154570.217
0.15194580.2436
0.15224590.2308
0.15254600.1993
0.15294610.2147
0.15324620.2242
0.15354630.1954
0.15384640.1941
0.15424650.2294
0.15454660.1766
0.15484670.1718
0.15524680.2119
0.15554690.2239
0.15584700.2218
0.15624710.2122
0.15654720.1968
0.15684730.197
0.15724740.2105
0.15754750.2177
0.15784760.2139
0.15824770.1804
0.15854780.1768
0.15884790.2257
0.15924800.1626
0.15954810.2167
0.15984820.2452
0.16014830.2573
0.16054840.1989
0.16084850.1899
0.16114860.1869
0.16154870.2136
0.16184880.2129
0.16214890.1992
0.16254900.1839
0.16284910.2387
0.16314920.1933
0.16354930.1896
0.16384940.1924
0.16414950.173
0.16454960.2143
0.16484970.1613
0.16514980.1697
0.16554990.1865
0.16585000.181
0.16615010.185
0.16645020.2185
0.16685030.2051
0.16715040.2386
0.16745050.178
0.16785060.1406
0.16815070.1754
0.16845080.2599
0.16885090.1763
0.16915100.2447
0.16945110.1903
0.16985120.2243
0.17015130.2005
0.17045140.1887
0.17085150.1978
0.17115160.158
0.17145170.1447
0.17185180.2146
0.17215190.2158
0.17245200.1933
0.17275210.1903
0.17315220.1756
0.17345230.2533
0.17375240.2224
0.17415250.2162
0.17445260.1626
0.17475270.1856
0.17515280.1804
0.17545290.2279
0.17575300.2004
0.17615310.1869
0.17645320.2304
0.17675330.2249
0.17715340.1893
0.17745350.1876
0.17775360.1665
0.17815370.2254
0.17845380.1412
0.17875390.1812
0.17905400.1637
0.17945410.1593
0.17975420.172
0.18005430.1991
0.18045440.1942
0.18075450.1753
0.18105460.22
0.18145470.1725
0.18175480.1677
0.18205490.1791
0.18245500.2238
0.18275510.1727
0.18305520.1965
0.18345530.2004
0.18375540.1444
0.18405550.1413
0.18445560.2054
0.18475570.2145
0.18505580.1498
0.18535590.1764
0.18575600.1732
0.18605610.168
0.18635620.1705
0.18675630.1747
0.18705640.1747
0.18735650.1795
0.18775660.1578
0.18805670.2291
0.18835680.2056
0.18875690.1909
0.18905700.1859
0.18935710.198
0.18975720.1701
0.19005730.1664
0.19035740.199
0.19065750.1763
0.19105760.2009
0.19135770.1704
0.19165780.1478
0.19205790.1798
0.19235800.1679
0.19265810.1793
0.19305820.1596
0.19335830.2125
0.19365840.2065
0.19405850.169
0.19435860.1603
0.19465870.1304
0.19505880.1606
0.19535890.2294
0.19565900.1792
0.19605910.1948
0.19635920.2194
0.19665930.1499
0.19695940.1691
0.19735950.2422
0.19765960.1424
0.19795970.1717
0.19835980.1888
0.19865990.1846
0.19896000.2029
0.19936010.2088
0.19966020.2413
0.19996030.1716
0.20036040.1597
0.20066050.1568
0.20096060.214
0.20136070.1433
0.20166080.1803
0.20196090.1769
0.20236100.1897
0.20266110.176
0.20296120.1623
0.20326130.1936
0.20366140.1762
0.20396150.1748
0.20426160.1836
0.20466170.1536
0.20496180.1914
0.20526190.1749
0.20566200.1718
0.20596210.219
0.20626220.1876
0.20666230.1186
0.20696240.1779
0.20726250.1417
0.20766260.1532
0.20796270.1836
0.20826280.2494
0.20866290.1731
0.20896300.1559
0.20926310.1841
0.20956320.158
0.20996330.1894
0.21026340.1955
0.21056350.1873
0.21096360.1761
0.21126370.1713
0.21156380.1897
0.21196390.1616
0.21226400.1556
0.21256410.164
0.21296420.1837
0.21326430.1751
0.21356440.1932
0.21396450.1523
0.21426460.1549
0.21456470.1617
0.21496480.158
0.21526490.1768
0.21556500.1619
0.21586510.192
0.21626520.143
0.21656530.1527
0.21686540.1811
0.21726550.1929
0.21756560.1545
0.21786570.1367
0.21826580.2054
0.21856590.1602
0.21886600.1782
0.21926610.1539
0.21956620.1908
0.21986630.1696
0.22026640.1709
0.22056650.1643
0.22086660.1445
0.22126670.151
0.22156680.1594
0.22186690.2188
0.22216700.1509
0.22256710.1685
0.22286720.1941
0.22316730.1617
0.22356740.2097
0.22386750.1779
0.22416760.1333
0.22456770.1446
0.22486780.1429
0.22516790.1988
0.22556800.1825
0.22586810.1469
0.22616820.201
0.22656830.1884
0.22686840.1717
0.22716850.2082
0.22756860.1408
0.22786870.1423
0.22816880.1839
0.22846890.1547
0.22886900.1988
0.22916910.151
0.22946920.1673
0.22986930.1424
0.23016940.2006
0.23046950.1884
0.23086960.1432
0.23116970.1619
0.23146980.1649
0.23186990.1561
0.23217000.1787
0.23247010.1837
0.23287020.169
0.23317030.1476
0.23347040.1501
0.23387050.1672
0.23417060.1397
0.23447070.1329
0.23477080.1302
0.23517090.1572
0.23547100.1719
0.23577110.1482
0.23617120.1802
0.23647130.1408
0.23677140.1235
0.23717150.1775
0.23747160.1341
0.23777170.1922
0.23817180.1328
0.23847190.1766
0.23877200.1697
0.23917210.1364
0.23947220.1549
0.23977230.1847
0.24017240.132
0.24047250.1391
0.24077260.1868
0.24107270.172
0.24147280.1881
0.24177290.1753
0.24207300.2076
0.24247310.1391
0.24277320.1696
0.24307330.1701
0.24347340.1531
0.24377350.16
0.24407360.1733
0.24447370.1603
0.24477380.1532
0.24507390.156
0.24547400.1547
0.24577410.1572
0.24607420.1279
0.24647430.1353
0.24677440.2082
0.24707450.2309
0.24737460.2141
0.24777470.1741
0.24807480.149
0.24837490.179
0.24877500.1679
0.24907510.1625
0.24937520.1449
0.24977530.1579
0.257540.1826
0.25037550.1537
0.25077560.153
0.25107570.1645
0.25137580.1513
0.25177590.1617
0.25207600.1419
0.25237610.1539
0.25277620.1364
0.25307630.1725
0.25337640.1525
0.25367650.1384
0.25407660.1465
0.25437670.1794
0.25467680.1587
0.25507690.1674
0.25537700.1557
0.25567710.1752
0.25607720.156
0.25637730.1867
0.25667740.181
0.25707750.1386
0.25737760.1204
0.25767770.1888
0.25807780.1812
0.25837790.1809
0.25867800.1604
0.25907810.1423
0.25937820.1562
0.25967830.1381
0.25997840.2003
0.26037850.1189
0.26067860.1423
0.26097870.1547
0.26137880.1473
0.26167890.1447
0.26197900.1697
0.26237910.1574
0.26267920.153
0.26297930.1631
0.26337940.1712
0.26367950.1594
0.26397960.1469
0.26437970.1526
0.26467980.1849
0.26497990.1405
0.26538000.1758
0.26568010.1681
0.26598020.1656
0.26628030.1765
0.26668040.1304
0.26698050.1478
0.26728060.1543
0.26768070.1571
0.26798080.1706
0.26828090.1566
0.26868100.116
0.26898110.1696
0.26928120.149
0.26968130.1491
0.26998140.1538
0.27028150.1548
0.27068160.1794
0.27098170.1287
0.27128180.1373
0.27168190.2021
0.27198200.1706
0.27228210.1636
0.27258220.2122
0.27298230.1666
0.27328240.1332
0.27358250.1849
0.27398260.132
0.27428270.1452
0.27458280.1791
0.27498290.1541
0.27528300.177
0.27558310.179
0.27598320.156
0.27628330.1545
0.27658340.1587
0.27698350.1328
0.27728360.1615
0.27758370.1693
0.27798380.1261
0.27828390.1713
0.27858400.1391
0.27888410.1801
0.27928420.1646
0.27958430.1291
0.27988440.1169
0.28028450.1551
0.28058460.1242
0.28088470.129
0.28128480.1641
0.28158490.1702
0.28188500.1101
0.28228510.1596
0.28258520.1192
0.28288530.1414
0.28328540.1567
0.28358550.1526
0.28388560.136
0.28428570.1018
0.28458580.161
0.28488590.165
0.28518600.1398
0.28558610.1933
0.28588620.1346
0.28618630.1276
0.28658640.1663
0.28688650.2063
0.28718660.1642
0.28758670.1454
0.28788680.1569
0.28818690.1425
0.28858700.1696
0.28888710.1543
0.28918720.1418
0.28958730.1574
0.28988740.1392
0.29018750.1299
0.29058760.1381
0.29088770.1428
0.29118780.1392
0.29148790.115
0.29188800.1614
0.29218810.1249
0.29248820.1928
0.29288830.1119
0.29318840.1694
0.29348850.1482
0.29388860.1661
0.29418870.1426
0.29448880.1548
0.29488890.1462
0.29518900.1448
0.29548910.1315
0.29588920.1428
0.29618930.1514
0.29648940.1736
0.29688950.1712
0.29718960.1563
0.29748970.1528
0.29778980.1762
0.29818990.1885
0.29849000.1445
0.29879010.1461
0.29919020.1145
0.29949030.1246
0.29979040.1697
0.30019050.1172
0.30049060.1248
0.30079070.147
0.30119080.1716
0.30149090.1329
0.30179100.1205
0.30219110.1556
0.30249120.1482
0.30279130.1823
0.30319140.1471
0.30349150.1568
0.30379160.1262
0.30409170.14
0.30449180.152
0.30479190.1625
0.30509200.1708
0.30549210.161
0.30579220.1477
0.30609230.149
0.30649240.1566
0.30679250.1683
0.30709260.137
0.30749270.1511
0.30779280.111
0.30809290.142
0.30849300.1904
0.30879310.1741
0.30909320.1539
0.30949330.1964
0.30979340.1415
0.31009350.1387
0.31039360.1632
0.31079370.1499
0.31109380.1167
0.31139390.1725
0.31179400.1569
0.31209410.1451
0.31239420.1665
0.31279430.1156
0.31309440.1508
0.31339450.123
0.31379460.1809
0.31409470.1476
0.31439480.1467
0.31479490.1577
0.31509500.1417
0.31539510.1403
0.31569520.136
0.31609530.1365
0.31639540.1559
0.31669550.1338
0.31709560.1435
0.31739570.1928
0.31769580.1599
0.31809590.174
0.31839600.1719
0.31869610.1199
0.31909620.1452
0.31939630.1533
0.31969640.1377
0.32009650.1852
0.32039660.1308
0.32069670.1668
0.32109680.174
0.32139690.1361
0.32169700.1461
0.32199710.1458
0.32239720.1788
0.32269730.128
0.32299740.1806
0.32339750.1837
0.32369760.1684
0.32399770.1799
0.32439780.1479
0.32469790.1372
0.32499800.1709
0.32539810.1601
0.32569820.1602
0.32599830.1548
0.32639840.1408
0.32669850.0981
0.32699860.0929
0.32739870.1504
0.32769880.1761
0.32799890.1513
0.32829900.1653
0.32869910.1478
0.32899920.1215
0.32929930.1559
0.32969940.1565
0.32999950.1181
0.33029960.1557
0.33069970.1656
0.33099980.1402
0.33129990.171
0.331610000.1279
0.331910010.1302
0.332210020.1474
0.332610030.1561
0.332910040.124
0.333210050.1699
0.333610060.1551
0.333910070.1414
0.334210080.1353
0.334510090.1226
0.334910100.1327
0.335210110.1568
0.335510120.164
0.335910130.1337
0.336210140.1604
0.336510150.1398
0.336910160.1487
0.337210170.1757
0.337510180.1858
0.337910190.1361
0.338210200.1198
0.338510210.1101
0.338910220.1475
0.339210230.1829
0.339510240.1439
0.339910250.1624
0.340210260.1338
0.340510270.1464
0.340810280.1404
0.341210290.1271
0.341510300.137
0.341810310.1246
0.342210320.1279
0.342510330.1741
0.342810340.1648
0.343210350.1168
0.343510360.1618
0.343810370.1843
0.344210380.1131
0.344510390.1285
0.344810400.144
0.345210410.1336
0.345510420.1431
0.345810430.1516
0.346210440.1466
0.346510450.1638
0.346810460.1353
0.347110470.1596
0.347510480.1889
0.347810490.1504
0.348110500.1531
0.348510510.1595
0.348810520.0985
0.349110530.1303
0.349510540.1189
0.349810550.0956
0.350110560.1302
0.350510570.1249
0.350810580.1471
0.351110590.164
0.351510600.132
0.351810610.1262
0.352110620.1648
0.352510630.1351
0.352810640.12
0.353110650.1193
0.353410660.1415
0.353810670.1616
0.354110680.1521
0.354410690.1315
0.354810700.1537
0.355110710.1506
0.355410720.1429
0.355810730.1421
0.356110740.1755
0.356410750.1345
0.356810760.1542
0.357110770.1113
0.357410780.1479
0.357810790.1284
0.358110800.151
0.358410810.1573
0.358810820.1429
0.359110830.1521
0.359410840.1802
0.359710850.1133
0.360110860.1386
0.360410870.1494
0.360710880.1695
0.361110890.1358
0.361410900.1603
0.361710910.1032
0.362110920.1323
0.362410930.1676
0.362710940.1388
0.363110950.1327
0.363410960.1245
0.363710970.1601
0.364110980.1365
0.364410990.1273
0.364711000.1636
0.365111010.1354
0.365411020.105
0.365711030.1396
0.366011040.1271
0.366411050.1415
0.366711060.1281
0.367011070.1323
0.367411080.1259
0.367711090.1492
0.368011100.1828
0.368411110.1203
0.368711120.1508
0.369011130.1488
0.369411140.1526
0.369711150.1624
0.370011160.125
0.370411170.1443
0.370711180.1626
0.371011190.1262
0.371411200.0984
0.371711210.1567
0.372011220.1146
0.372311230.1605
0.372711240.1194
0.373011250.1291
0.373311260.145
0.373711270.1292
0.374011280.1451
0.374311290.1488
0.374711300.1833
0.37511310.1747
0.375311320.1341
0.375711330.156
0.376011340.1453
0.376311350.1856
0.376711360.1439
0.377011370.1601
0.377311380.1429
0.377711390.1511
0.378011400.1716
0.378311410.1535
0.378611420.1337
0.379011430.1311
0.379311440.1351
0.379611450.1378
0.380011460.1329
0.380311470.1446
0.380611480.1103
0.381011490.1246
0.381311500.1552
0.381611510.1432
0.382011520.1188
0.382311530.1656
0.382611540.158
0.383011550.1438
0.383311560.1372
0.383611570.1478
0.384011580.1493
0.384311590.1446
0.384611600.1234
0.384911610.1538
0.385311620.1521
0.385611630.1907
0.385911640.1535
0.386311650.1073
0.386611660.178
0.386911670.1437
0.387311680.13
0.387611690.1521
0.387911700.1422
0.388311710.1317
0.388611720.1274
0.388911730.1542
0.389311740.1405
0.389611750.1321
0.389911760.1543
0.390311770.1164
0.390611780.1234
0.390911790.1404
0.391211800.1312
0.391611810.1387
0.391911820.1317
0.392211830.1736
0.392611840.1552
0.392911850.1788
0.393211860.1534
0.393611870.1576
0.393911880.1442
0.394211890.1124
0.394611900.1522
0.394911910.1693
0.395211920.1425
0.395611930.1561
0.395911940.1169
0.396211950.1252
0.396611960.1857
0.396911970.132
0.397211980.1382
0.397511990.1264
0.397912000.1331
0.398212010.1882
0.398512020.1667
0.398912030.1411
0.399212040.1246
0.399512050.1412
0.399912060.133
0.400212070.1217
0.400512080.161
0.400912090.115
0.401212100.1178
0.401512110.1191
0.401912120.1155
0.402212130.1252
0.402512140.1308
0.402912150.1417
0.403212160.1346
0.403512170.1529
0.403812180.1345
0.404212190.1496
0.404512200.1642
0.404812210.1116
0.405212220.2078
0.405512230.1302
0.405812240.1379
0.406212250.137
0.406512260.1473
0.406812270.1433
0.407212280.1653
0.407512290.1644
0.407812300.1012
0.408212310.1353
0.408512320.1269
0.408812330.1181
0.409212340.1016
0.409512350.16
0.409812360.1299
0.410112370.1378
0.410512380.1154
0.410812390.1317
0.411112400.1517
0.411512410.1434
0.411812420.1327
0.412112430.1535
0.412512440.1252
0.412812450.1171
0.413112460.1404
0.413512470.1308
0.413812480.1168
0.414112490.1572
0.414512500.1828
0.414812510.1489
0.415112520.1233
0.415512530.1408
0.415812540.1077
0.416112550.1331
0.416412560.1453
0.416812570.1206
0.417112580.1279
0.417412590.126
0.417812600.1749
0.418112610.1259
0.418412620.1676
0.418812630.1391
0.419112640.1022
0.419412650.1714
0.419812660.1649
0.420112670.1673
0.420412680.1725
0.420812690.1834
0.421112700.1112
0.421412710.1335
0.421812720.1086
0.422112730.1409
0.422412740.1315
0.422712750.1459
0.423112760.17
0.423412770.1331
0.423712780.1567
0.424112790.1435
0.424412800.1574
0.424712810.1428
0.425112820.1358
0.425412830.1332
0.425712840.1642
0.426112850.1257
0.426412860.1539
0.426712870.123
0.427112880.1308
0.427412890.1389
0.427712900.1379
0.428112910.1889
0.428412920.1161
0.428712930.1522
0.429012940.1396
0.429412950.1746
0.429712960.1414
0.430012970.1176
0.430412980.1179
0.430712990.1176
0.431013000.1473
0.431413010.1274
0.431713020.1797
0.432013030.1477
0.432413040.1784
0.432713050.153
0.433013060.1142
0.433413070.1599
0.433713080.1287
0.434013090.1225
0.434413100.1493
0.434713110.1487
0.435013120.1191
0.435313130.1369
0.435713140.1385
0.436013150.159
0.436313160.1312
0.436713170.1638
0.437013180.173
0.437313190.1522
0.437713200.1373
0.438013210.1404
0.438313220.1503
0.438713230.151
0.439013240.0974
0.439313250.1556
0.439713260.1025
0.440013270.1511
0.440313280.1085
0.440613290.1518
0.441013300.1196
0.441313310.1418
0.441613320.1377
0.442013330.1581
0.442313340.1433
0.442613350.1691
0.443013360.1443
0.443313370.1306
0.443613380.1392
0.444013390.1223
0.444313400.1273
0.444613410.1187
0.445013420.0895
0.445313430.1606
0.445613440.1434
0.446013450.1258
0.446313460.1351
0.446613470.1399
0.446913480.1515
0.447313490.138
0.447613500.1332
0.447913510.1419
0.448313520.1577
0.448613530.1275
0.448913540.1321
0.449313550.1677
0.449613560.1236
0.449913570.1189
0.450313580.1148
0.450613590.1749
0.450913600.1269
0.451313610.1181
0.451613620.1209
0.451913630.1248
0.452313640.1507
0.452613650.1045
0.452913660.1359
0.453213670.1858
0.453613680.1371
0.453913690.1354
0.454213700.124
0.454613710.1213
0.454913720.1746
0.455213730.1465
0.455613740.127
0.455913750.1263
0.456213760.1211
0.456613770.1425
0.456913780.1666
0.457213790.1351
0.457613800.1097
0.457913810.1004
0.458213820.1253
0.458613830.1352
0.458913840.1253
0.459213850.1255
0.459513860.1105
0.459913870.1502
0.460213880.1268
0.460513890.1168
0.460913900.1388
0.461213910.1536
0.461513920.1737
0.461913930.1548
0.462213940.129
0.462513950.187
0.462913960.148
0.463213970.1279
0.463513980.1468
0.463913990.0936
0.464214000.1215
0.464514010.1624
0.464914020.1534
0.465214030.1684
0.465514040.1802
0.465814050.1426
0.466214060.1346
0.466514070.1464
0.466814080.1583
0.467214090.1226
0.467514100.1413
0.467814110.131
0.468214120.1551
0.468514130.0952
0.468814140.1458
0.469214150.1726
0.469514160.1276
0.469814170.1085
0.470214180.136
0.470514190.1367
0.470814200.1569
0.471214210.1416
0.471514220.1497
0.471814230.1191
0.472114240.1578
0.472514250.1357
0.472814260.1493
0.473114270.126
0.473514280.1171
0.473814290.1437
0.474114300.1494
0.474514310.1242
0.474814320.1548
0.475114330.1721
0.475514340.1254
0.475814350.1283
0.476114360.1085
0.476514370.1332
0.476814380.1471
0.477114390.1211
0.477514400.1498
0.477814410.1793
0.478114420.1313
0.478414430.1694
0.478814440.126
0.479114450.1231
0.479414460.1147
0.479814470.1239
0.480114480.1731
0.480414490.1354
0.480814500.1187
0.481114510.1537
0.481414520.1349
0.481814530.0976
0.482114540.1614
0.482414550.1084
0.482814560.1577
0.483114570.1321
0.483414580.1321
0.483814590.1667
0.484114600.1425
0.484414610.1286
0.484714620.1275
0.485114630.131
0.485414640.088
0.485714650.1257
0.486114660.1579
0.486414670.1235
0.486714680.126
0.487114690.106
0.487414700.1287
0.487714710.1287
0.488114720.1316
0.488414730.1652
0.488714740.1455
0.489114750.1362
0.489414760.1242
0.489714770.1453
0.490114780.1477
0.490414790.1499
0.490714800.1538
0.491014810.162
0.491414820.1272
0.491714830.146
0.492014840.1131
0.492414850.0979
0.492714860.096
0.493014870.1526
0.493414880.156
0.493714890.1324
0.494014900.1278
0.494414910.1641
0.494714920.1473
0.495014930.1217
0.495414940.1232
0.495714950.1196
0.496014960.1401
0.496414970.1692
0.496714980.1534
0.497014990.1276
0.497315000.1544
0.497715010.1394
0.498015020.1176
0.498315030.1226
0.498715040.162
0.499015050.1543
0.499315060.1331
0.499715070.1144
0.515080.1271
0.500315090.1337
0.500715100.1546
0.501015110.1407
0.501315120.1157
0.501715130.1159
0.502015140.1155
0.502315150.1297
0.502715160.1185
0.503015170.1341
0.503315180.1412
0.503615190.1103
0.504015200.1221
0.504315210.096
0.504615220.1245
0.505015230.1045
0.505315240.1329
0.505615250.0995
0.506015260.1546
0.506315270.1573
0.506615280.1329
0.507015290.1253
0.507315300.1691
0.507615310.1607
0.508015320.1223
0.508315330.1282
0.508615340.1748
0.509015350.1077
0.509315360.1129
0.509615370.1518
0.509915380.1133
0.510315390.1462
0.510615400.1005
0.510915410.146
0.511315420.1476
0.511615430.0966
0.511915440.1134
0.512315450.1562
0.512615460.1559
0.512915470.1218
0.513315480.1398
0.513615490.149
0.513915500.1378
0.514315510.1347
0.514615520.115
0.514915530.1433
0.515315540.1165
0.515615550.1376
0.515915560.1578
0.516215570.1051
0.516615580.1548
0.516915590.1495
0.517215600.1797
0.517615610.133
0.517915620.1178
0.518215630.1343
0.518615640.1149
0.518915650.1563
0.519215660.1029
0.519615670.1169
0.519915680.1062
0.520215690.1348
0.520615700.1639
0.520915710.154
0.521215720.2037
0.521615730.0892
0.521915740.1315
0.522215750.1387
0.522515760.1477
0.522915770.1279
0.523215780.1236
0.523515790.1357
0.523915800.1391
0.524215810.1366
0.524515820.1365
0.524915830.1133
0.525215840.1204
0.525515850.1102
0.525915860.1427
0.526215870.0894
0.526515880.1193
0.526915890.1353
0.527215900.1128
0.527515910.1252
0.527915920.1203
0.528215930.1566
0.528515940.1491
0.528815950.1218
0.529215960.1544
0.529515970.1433
0.529815980.1621
0.530215990.1304
0.530516000.1438
0.530816010.1526
0.531216020.15
0.531516030.1319
0.531816040.1128
0.532216050.0952
0.532516060.1349
0.532816070.1564
0.533216080.1308
0.533516090.13
0.533816100.1507
0.534216110.1258
0.534516120.1538
0.534816130.1364
0.535116140.1588
0.535516150.1316
0.535816160.1285
0.536116170.1119
0.536516180.1356
0.536816190.1322
0.537116200.1322
0.537516210.143
0.537816220.1707
0.538116230.112
0.538516240.1509
0.538816250.1388
0.539116260.128
0.539516270.1587
0.539816280.1654
0.540116290.1269
0.540516300.1645
0.540816310.1359
0.541116320.1308
0.541416330.1195
0.541816340.1528
0.542116350.1169
0.542416360.1571
0.542816370.129
0.543116380.1559
0.543416390.1423
0.543816400.1331
0.544116410.1822
0.544416420.113
0.544816430.1224
0.545116440.1317
0.545416450.1244
0.545816460.1902
0.546116470.1466
0.546416480.1383
0.546816490.1063
0.547116500.1047
0.547416510.1087
0.547716520.1249
0.548116530.1375
0.548416540.1128
0.548716550.1254
0.549116560.1171
0.549416570.1363
0.549716580.0966
0.550116590.1286
0.550416600.1322
0.550716610.1034
0.551116620.1267
0.551416630.1213
0.551716640.1307
0.552116650.1303
0.552416660.2143
0.552716670.1043
0.553116680.1364
0.553416690.1386
0.553716700.1358
0.554016710.1389
0.554416720.1269
0.554716730.1744
0.555016740.1094
0.555416750.1245
0.555716760.1042
0.556016770.1789
0.556416780.1519
0.556716790.1247
0.557016800.1083
0.557416810.113
0.557716820.1134
0.558016830.1438
0.558416840.1423
0.558716850.1726
0.559016860.1348
0.559416870.1399
0.559716880.1215
0.560016890.1531
0.560316900.1047
0.560716910.1262
0.561016920.1141
0.561316930.1274
0.561716940.1768
0.562016950.1139
0.562316960.1455
0.562716970.1321
0.563016980.1213
0.563316990.1239
0.563717000.1309
0.564017010.1309
0.564317020.1946
0.564717030.1332
0.565017040.1554
0.565317050.1475
0.565617060.1481
0.566017070.1005
0.566317080.1248
0.566617090.1155
0.567017100.121
0.567317110.1375
0.567617120.1098
0.568017130.1312
0.568317140.1161
0.568617150.1168
0.569017160.1341
0.569317170.1352
0.569617180.1389
0.570017190.1479
0.570317200.1289
0.570617210.1267
0.571017220.1369
0.571317230.1199
0.571617240.1173
0.571917250.1485
0.572317260.1251
0.572617270.1152
0.572917280.1377
0.573317290.1674
0.573617300.1104
0.573917310.1199
0.574317320.1451
0.574617330.128
0.574917340.1379
0.575317350.1651
0.575617360.1546
0.575917370.1184
0.576317380.1145
0.576617390.1425
0.576917400.1386
0.577317410.1351
0.577617420.1697
0.577917430.1169
0.578217440.1645
0.578617450.1364
0.578917460.1133
0.579217470.1576
0.579617480.099
0.579917490.1246
0.580217500.1221
0.580617510.183
0.580917520.1045
0.581217530.1253
0.581617540.1318
0.581917550.1183
0.582217560.1664
0.582617570.1482
0.582917580.1379
0.583217590.1427
0.583617600.1315
0.583917610.1444
0.584217620.1279
0.584517630.1028
0.584917640.1288
0.585217650.1788
0.585517660.1082
0.585917670.136
0.586217680.1066
0.586517690.1192
0.586917700.1554
0.587217710.1402
0.587517720.1122
0.587917730.1368
0.588217740.1082
0.588517750.1337
0.588917760.1595
0.589217770.1612
0.589517780.1389
0.589917790.1422
0.590217800.1248
0.590517810.1178
0.590817820.1123
0.591217830.1157
0.591517840.0907
0.591817850.1271
0.592217860.1059
0.592517870.0902
0.592817880.128
0.593217890.1247
0.593517900.133
0.593817910.1034
0.594217920.1155
0.594517930.1344
0.594817940.1546
0.595217950.1091
0.595517960.1183
0.595817970.1221
0.596217980.1251
0.596517990.1145
0.596818000.1348
0.597118010.1021
0.597518020.1565
0.597818030.1142
0.598118040.1304
0.598518050.1724
0.598818060.1231
0.599118070.1368
0.599518080.1905
0.599818090.1621
0.600118100.1275
0.600518110.1162
0.600818120.1417
0.601118130.0994
0.601518140.1438
0.601818150.1451
0.602118160.1442
0.602518170.1358
0.602818180.1366
0.603118190.1293
0.603418200.1591
0.603818210.1109
0.604118220.1188
0.604418230.1478
0.604818240.138
0.605118250.1601
0.605418260.1462
0.605818270.1389
0.606118280.1463
0.606418290.1562
0.606818300.1302
0.607118310.1653
0.607418320.1381
0.607818330.1652
0.608118340.1426
0.608418350.1554
0.608818360.1233
0.609118370.1148
0.609418380.0977
0.609718390.1064
0.610118400.0952
0.610418410.1344
0.610718420.148
0.611118430.1656
0.611418440.1445
0.611718450.112
0.612118460.1208
0.612418470.1273
0.612718480.1293
0.613118490.1169
0.613418500.1434
0.613718510.1145
0.614118520.119
0.614418530.1183
0.614718540.1035
0.615118550.1103
0.615418560.1155
0.615718570.1084
0.616018580.1419
0.616418590.1512
0.616718600.1768
0.617018610.1375
0.617418620.1368
0.617718630.1207
0.618018640.1507
0.618418650.1206
0.618718660.1298
0.619018670.1448
0.619418680.1484
0.619718690.1358
0.620018700.1503
0.620418710.128
0.620718720.1268
0.621018730.132
0.621418740.1475
0.621718750.1138
0.622018760.1504
0.622318770.1106
0.622718780.1359
0.623018790.1121
0.623318800.1135
0.623718810.1365
0.624018820.1519
0.624318830.1377
0.624718840.1256
0.62518850.1517
0.625318860.1431
0.625718870.1606
0.626018880.1358
0.626318890.1323
0.626718900.1532
0.627018910.1348
0.627318920.1047
0.627718930.0955
0.628018940.1425
0.628318950.1369
0.628618960.148
0.629018970.1358
0.629318980.141
0.629618990.1223
0.630019000.141
0.630319010.131
0.630619020.1353
0.631019030.1049
0.631319040.1306
0.631619050.1335
0.632019060.1496
0.632319070.1225
0.632619080.1151
0.633019090.1228
0.633319100.1589
0.633619110.1672
0.634019120.1378
0.634319130.1501
0.634619140.1303
0.634919150.1186
0.635319160.1301
0.635619170.1113
0.635919180.1205
0.636319190.1398
0.636619200.1232
0.636919210.129
0.637319220.1751
0.637619230.1349
0.637919240.1821
0.638319250.132
0.638619260.1262
0.638919270.1308
0.639319280.1559
0.639619290.1711
0.639919300.1454
0.640319310.1354
0.640619320.1313
0.640919330.1439
0.641219340.1374
0.641619350.0859
0.641919360.1236
0.642219370.1275
0.642619380.1632
0.642919390.1191
0.643219400.174
0.643619410.1651
0.643919420.1578
0.644219430.123
0.644619440.1094
0.644919450.1596
0.645219460.1026
0.645619470.1333
0.645919480.1492
0.646219490.1379
0.646619500.1242
0.646919510.1605
0.647219520.1479
0.647519530.145
0.647919540.1117
0.648219550.15
0.648519560.1361
0.648919570.1564
0.649219580.1639
0.649519590.1724
0.649919600.1377
0.650219610.1046
0.650519620.1585
0.650919630.1427
0.651219640.1149
0.651519650.1622
0.651919660.1185
0.652219670.1374
0.652519680.1591
0.652919690.1241
0.653219700.154
0.653519710.1205
0.653819720.1258
0.654219730.1441
0.654519740.1506
0.654819750.117
0.655219760.1131
0.655519770.1101
0.655819780.1166
0.656219790.137
0.656519800.1237
0.656819810.1453
0.657219820.1176
0.657519830.1226
0.657819840.173
0.658219850.1028
0.658519860.1208
0.658819870.1642
0.659219880.1309
0.659519890.1233
0.659819900.1618
0.660119910.1228
0.660519920.1038
0.660819930.1446
0.661119940.1392
0.661519950.1515
0.661819960.1363
0.662119970.0877
0.662519980.1301
0.662819990.1208
0.663120000.1503

</details>

Framework Versions

  • —Python: 3.10.12
  • —Sentence Transformers: 3.1.1
  • —Transformers: 4.45.2
  • —PyTorch: 2.3.1+cu121
  • —Accelerate: 1.1.1
  • —Datasets: 3.1.0
  • —Tokenizers: 0.20.3

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

<!--

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. -->