Qwen3-VL-Embedding-2B model trained on Korean Visual Document Retrieval query-document screenshot pairs

This is a sentence-transformers model finetuned from Qwen/Qwen3-VL-Embedding-2B on the whybe-choi/ko-vdr-hn and whybe-choi/en-vdr-hn datasets. It maps sentences & paragraphs to a 2048-dimensional dense vector space and can be used for retrieval.

Model Details

Model Description

  • Model Type: Sentence Transformer
  • Base model: Qwen/Qwen3-VL-Embedding-2B
  • Maximum Sequence Length: 262144 tokens
  • Output Dimensionality: 2048 dimensions
  • Similarity Function: Cosine Similarity
  • Supported Modalities: Text, Image, Video, Message
  • Training Datasets:
  • Language: ko
  • License: apache-2.0

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'image': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'video': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'message': {'method': 'forward', 'method_output_name': 'last_hidden_state', 'format': 'structured'}}, 'module_output_name': 'token_embeddings', 'processing_kwargs': {'chat_template': {'add_generation_prompt': True}}, 'unpad_inputs': False, 'architecture': 'Qwen3VLModel'})
  (1): Pooling({'embedding_dimension': 2048, 'pooling_mode': 'lasttoken', 'include_prompt': True})
  (2): Normalize({})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

pip install -U sentence-transformers

Then you can load this model and run inference.

from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
queries = [
    '30인 이상 상용근로자를 보유한 기업의 1인당 평균 월별 법정외 복지비용이 10~29인 규모 기업보다 높은지 판단해 주세요.',
]
documents = [
    'data/images/ko/ko-vdr-public/3818.png',
    'data/images/ko/ko-vdr-public/3950.png',
    'data/images/ko/ko-vdr-public/6891.png',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 2048] [3, 2048]

# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 0.5166, -0.0260,  0.0939]])

Evaluation

Metrics

Information Retrieval

  • Datasets: kovidore-v2-cybersecurity-beir-eval, kovidore-v2-hr-beir-eval, kovidore-v2-energy-beir-eval and kovidore-v2-economic-beir-eval
  • Evaluated with InformationRetrievalEvaluator with these parameters:
    {
        "query_prompt": "Find a screenshot that is relevant to the user's question."
    }
    
Metric kovidore-v2-cybersecurity-beir-eval kovidore-v2-hr-beir-eval kovidore-v2-energy-beir-eval kovidore-v2-economic-beir-eval
cosine_accuracy@1 0.7114 0.4389 0.6358 0.184
cosine_accuracy@3 0.9128 0.6561 0.8497 0.4049
cosine_accuracy@5 0.9396 0.7783 0.9017 0.5092
cosine_accuracy@10 0.9866 0.8733 0.9306 0.6503
cosine_precision@1 0.7114 0.4389 0.6358 0.184
cosine_precision@3 0.472 0.3152 0.4489 0.1452
cosine_precision@5 0.3503 0.2624 0.3457 0.1202
cosine_precision@10 0.2107 0.1796 0.2058 0.0816
cosine_recall@1 0.3503 0.1482 0.2532 0.0794
cosine_recall@3 0.6061 0.3104 0.4985 0.1894
cosine_recall@5 0.714 0.4317 0.6169 0.2599
cosine_recall@10 0.8187 0.5719 0.7158 0.3519
cosine_ndcg@5 0.6873 0.4089 0.5969 0.2213
cosine_ndcg@10 0.7359 0.4702 0.6415 0.2591
cosine_mrr@10 0.8154 0.5764 0.7455 0.324
cosine_map@100 0.6603 0.3848 0.5648 0.2027

Training Details

Training Datasets

whybe-choi/ko-vdr-hn

  • Dataset: whybe-choi/ko-vdr-hn at 74a01af
  • Size: 406,945 training samples
  • Columns: anchor, positive, negative_1, negative_2, negative_3, negative_4, negative_5, negative_6, and negative_7
  • Approximate statistics based on the first 1000 samples:
    anchor positive negative_1 negative_2 negative_3 negative_4 negative_5 negative_6 negative_7
    type string string string string string string string string string
    details
    • min: 36 tokens
    • mean: 66.87 tokens
    • max: 118 tokens
    • min: 1240 tokens
    • mean: 1272.48 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.4 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.51 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.28 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.3 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.69 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.49 tokens
    • max: 1298 tokens
    • min: 1240 tokens
    • mean: 1272.36 tokens
    • max: 1298 tokens
  • Samples:
    anchor positive negative_1 negative_2 negative_3 negative_4 negative_5 negative_6 negative_7
    30인 이상 상용근로자를 보유한 기업의 1인당 평균 월별 법정외 복지비용이 10~29인 규모 기업보다 높은지 판단해 주세요. data/images/ko/ko-vdr-public/3818.png data/images/ko/ko-vdr-public/3763.png data/images/ko/ko-vdr-public/7798.png data/images/ko/ko-vdr-public/3752.png data/images/ko/ko-vdr-public/3770.png data/images/ko/ko-vdr-public/3773.png data/images/ko/ko-vdr-public/7805.png data/images/ko/ko-vdr-public/3785.png
    CAP 기반 조정이 Jensen‑Shannon 발산을 활용한 분포 유사성 검증에 어떤 영향을 미치는가? data/images/ko/ko-vdr-public/3950.png data/images/ko/ko-vdr-public/3934.png data/images/ko/ko-vdr-public/5252.png data/images/ko/ko-vdr-public/3959.png data/images/ko/ko-vdr-public/5096.png data/images/ko/ko-vdr-public/3960.png data/images/ko/ko-vdr-public/5196.png data/images/ko/ko-vdr-public/891.png
    소상공인 음식점업 체감경기 회복세가 온라인 음식서비스 성장률 확대와 소매판매액 내 비내구재 성장세 강화에 기여했는가? data/images/ko/ko-vdr-public/6891.png data/images/ko/ko-vdr-public/6886.png data/images/ko/ko-vdr-public/6919.png data/images/ko/ko-vdr-public/6883.png data/images/ko/ko-vdr-public/6948.png data/images/ko/ko-vdr-public/6882.png data/images/ko/ko-vdr-public/6915.png data/images/ko/ko-vdr-public/6921.png
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "CachedMultipleNegativesRankingLoss",
        "matryoshka_dims": [
            2048,
            1024,
            768,
            512,
            256,
            128
        ],
        "matryoshka_weights": [
            1,
            1,
            1,
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    

whybe-choi/en-vdr-hn

  • Dataset: whybe-choi/en-vdr-hn at c8c903e
  • Size: 301,784 training samples
  • Columns: anchor, positive, negative_1, negative_2, negative_3, negative_4, negative_5, negative_6, and negative_7
  • Approximate statistics based on the first 1000 samples:
    anchor positive negative_1 negative_2 negative_3 negative_4 negative_5 negative_6 negative_7
    type string string string string string string string string string
    details
    • min: 26 tokens
    • mean: 37.72 tokens
    • max: 75 tokens
    • min: 246 tokens
    • mean: 1215.73 tokens
    • max: 1302 tokens
    • min: 126 tokens
    • mean: 1199.3 tokens
    • max: 1302 tokens
    • min: 174 tokens
    • mean: 1205.24 tokens
    • max: 1302 tokens
    • min: 118 tokens
    • mean: 1205.7 tokens
    • max: 1302 tokens
    • min: 126 tokens
    • mean: 1210.24 tokens
    • max: 1302 tokens
    • min: 134 tokens
    • mean: 1209.33 tokens
    • max: 1302 tokens
    • min: 100 tokens
    • mean: 1211.77 tokens
    • max: 1302 tokens
    • min: 70 tokens
    • mean: 1191.3 tokens
    • max: 1302 tokens
  • Samples:
    anchor positive negative_1 negative_2 negative_3 negative_4 negative_5 negative_6 negative_7
    What is the primary purpose of the PTC in lithium batteries? data/images/en/colpali/23d41ee76deaf320b9b7556c965caf7e.jpg data/images/en/colpali/5a713f00d599b2bfddd115a67808de66.jpg data/images/en/colpali/59c8e47f68536ba395df914e39029cec.jpg data/images/en/colpali/73d6ab0da1b8290e6b5b1ed67a4a6885.jpg data/images/en/colpali/dd1cd6682696b6ad9bdaa6da18da3a84.jpg data/images/en/colpali/842382d0ea0cff88578e96904e652c6c.jpg data/images/en/colpali/dd1ce2f3a4e7df95e98ef2cde8e4e7f1.jpg data/images/en/colpali/719e704bce4e95da3e177a3b5db2dc2b.jpg
    How is the baseline CO2 emissions calculated for affected EGUs in the low load natural gas-fired or oil-fired subcategories? data/images/en/colpali/bfd3dd15e306b6ed4ce26cef3956fa95.jpg data/images/en/colpali/aaaa2c2811f72ac8ec402726c6578b13.jpg data/images/en/colpali/1a570a15beb0d27a505db8a4634448a6.jpg data/images/en/colpali/6a50944dae78a15c400dacfe9f2a9145.jpg data/images/en/colpali/997f4d2e956f5ea37c8b174f43585f3d.jpg data/images/en/colpali/3290c06c7e864b4e2e1c4cbd86592de2.jpg data/images/en/colpali/dc09dbce746b4df935a6ff623471e839.jpg data/images/en/colpali/00039af9d06cf667e28455ea3d33d4e2.jpg
    What are some suggestions Liberty Medical Group should consider to improve their accounts receivable turnover and days sales in receivables ratios? data/images/en/colpali/09232c2534e9bcca51ef284a6153a974.jpg data/images/en/colpali/e07a0cd87bd36ea9bedd44b48061e86a.jpg data/images/en/colpali/56cc228953990c3d5b84ff67fb141872.jpg data/images/en/colpali/b1eb0643c43238e35329bd2ec03ace8d.jpg data/images/en/colpali/c19a0b262d75dd5790f1ac26aa0bd836.jpg data/images/en/colpali/aa22a1ee2f4565656969fde81c7280c2.jpg data/images/en/colpali/ab749e1287df0e66b7b2092eb4d20fc1.jpg data/images/en/colpali/8d7b8a908e0d11d58c3d39146831a1f5.jpg
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "CachedMultipleNegativesRankingLoss",
        "matryoshka_dims": [
            2048,
            1024,
            768,
            512,
            256,
            128
        ],
        "matryoshka_weights": [
            1,
            1,
            1,
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    

Training Hyperparameters

Non-Default Hyperparameters

  • per_device_train_batch_size: 128
  • num_train_epochs: 1.0
  • learning_rate: 2e-05
  • lr_scheduler_type: cosine
  • warmup_steps: 0.1
  • gradient_accumulation_steps: 2
  • bf16: True
  • per_device_eval_batch_size: 128
  • eval_on_start: True
  • ddp_find_unused_parameters: True
  • batch_sampler: no_duplicates_hashed

All Hyperparameters

Click to expand
  • per_device_train_batch_size: 128
  • num_train_epochs: 1.0
  • max_steps: -1
  • learning_rate: 2e-05
  • lr_scheduler_type: cosine
  • lr_scheduler_kwargs: None
  • warmup_steps: 0.1
  • optim: adamw_torch_fused
  • optim_args: None
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • optim_target_modules: None
  • gradient_accumulation_steps: 2
  • average_tokens_across_devices: True
  • max_grad_norm: 1.0
  • label_smoothing_factor: 0.0
  • bf16: True
  • fp16: False
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • use_liger_kernel: False
  • liger_kernel_config: None
  • use_cache: False
  • neftune_noise_alpha: None
  • torch_empty_cache_steps: None
  • auto_find_batch_size: False
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • include_num_input_tokens_seen: no
  • log_level: passive
  • log_level_replica: warning
  • disable_tqdm: False
  • project: huggingface
  • trackio_space_id: trackio
  • per_device_eval_batch_size: 128
  • prediction_loss_only: True
  • eval_on_start: True
  • eval_do_concat_batches: True
  • eval_use_gather_object: False
  • eval_accumulation_steps: None
  • include_for_metrics: []
  • batch_eval_metrics: False
  • save_only_model: False
  • save_on_each_node: False
  • enable_jit_checkpoint: False
  • push_to_hub: False
  • hub_private_repo: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_always_push: False
  • hub_revision: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • restore_callback_states_from_checkpoint: False
  • full_determinism: False
  • seed: 42
  • data_seed: None
  • use_cpu: False
  • accelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
  • parallelism_config: None
  • dataloader_drop_last: True
  • dataloader_num_workers: 0
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • dataloader_prefetch_factor: None
  • remove_unused_columns: True
  • label_names: None
  • train_sampling_strategy: random
  • length_column_name: length
  • ddp_find_unused_parameters: True
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • ddp_backend: None
  • ddp_timeout: 1800
  • fsdp: []
  • fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
  • deepspeed: None
  • debug: []
  • skip_memory_metrics: True
  • do_predict: False
  • resume_from_checkpoint: None
  • warmup_ratio: None
  • local_rank: -1
  • prompts: None
  • batch_sampler: no_duplicates_hashed
  • multi_dataset_batch_sampler: proportional
  • router_mapping: {}
  • learning_rate_mapping: {}
  • mini_batch_size: 8
  • matryoshka_dims: [2048, 1024, 768, 512, 256, 128]
  • use_lora: False
  • lora_r: 32
  • lora_alpha: 32
  • lora_dropout: 0.05
  • lora_target_modules: ['q_proj', 'k_proj', 'v_proj', 'o_proj', 'gate_proj', 'up_proj', 'down_proj']
  • use_self_guide: False
  • self_guide_margin: -0.1

Training Logs

Click to expand
Epoch Step Training Loss kovidore-v2-cybersecurity-beir-eval_cosine_ndcg@10 kovidore-v2-hr-beir-eval_cosine_ndcg@10 kovidore-v2-energy-beir-eval_cosine_ndcg@10 kovidore-v2-economic-beir-eval_cosine_ndcg@10
0 0 - 0.6056 0.1877 0.4050 0.1478
0.0007 1 19.1379 - - - -
0.0014 2 18.9229 - - - -
0.0022 3 26.2451 - - - -
0.0029 4 16.0166 - - - -
0.0036 5 19.4486 - - - -
0.0043 6 16.1000 - - - -
0.0051 7 19.3822 - - - -
0.0058 8 25.8949 - - - -
0.0065 9 22.4898 - - - -
0.0072 10 19.8494 - - - -
0.0079 11 15.3722 - - - -
0.0087 12 22.0873 - - - -
0.0094 13 25.5506 - - - -
0.0101 14 12.5892 - - - -
0.0108 15 15.0147 - - - -
0.0116 16 21.0032 - - - -
0.0123 17 15.1064 - - - -
0.0130 18 17.8412 - - - -
0.0137 19 23.8582 - - - -
0.0145 20 20.4970 - - - -
0.0152 21 14.2144 - - - -
0.0159 22 13.9488 - - - -
0.0166 23 17.2926 - - - -
0.0173 24 22.8800 - - - -
0.0181 25 16.2528 - - - -
0.0188 26 16.7433 - - - -
0.0195 27 15.6478 - - - -
0.0202 28 22.1664 - - - -
0.0210 29 21.9191 - - - -
0.0217 30 20.9106 - - - -
0.0224 31 14.3773 - - - -
0.0231 32 17.1562 - - - -
0.0238 33 14.0399 - - - -
0.0246 34 17.3966 - - - -
0.0253 35 11.0495 - - - -
0.0260 36 15.9159 - - - -
0.0267 37 13.2785 - - - -
0.0275 38 19.0166 - - - -
0.0282 39 15.5850 - - - -
0.0289 40 15.7148 - - - -
0.0296 41 12.7469 - - - -
0.0303 42 18.1033 - - - -
0.0311 43 12.9498 - - - -
0.0318 44 15.3477 - - - -
0.0325 45 15.2469 - - - -
0.0332 46 14.6017 - - - -
0.0340 47 17.3267 - - - -
0.0347 48 16.9670 - - - -
0.0354 49 7.2643 - - - -
0.0361 50 9.8470 - - - -
0.0368 51 12.0698 - - - -
0.0376 52 11.7251 - - - -
0.0383 53 9.5320 - - - -
0.0390 54 14.0723 - - - -
0.0397 55 14.4786 - - - -
0.0405 56 9.7275 - - - -
0.0412 57 10.7453 - - - -
0.0419 58 8.3056 - - - -
0.0426 59 9.5374 - - - -
0.0434 60 11.4509 - - - -
0.0441 61 10.8726 - - - -
0.0448 62 11.6201 - - - -
0.0455 63 10.9658 - - - -
0.0462 64 11.0918 - - - -
0.0470 65 16.0870 - - - -
0.0477 66 16.1759 - - - -
0.0484 67 15.3073 - - - -
0.0491 68 11.0324 - - - -
0.0499 69 14.8292 - - - -
0.0506 70 6.7717 - - - -
0.0513 71 12.6847 - - - -
0.0520 72 10.7565 - - - -
0.0527 73 8.8755 - - - -
0.0535 74 13.7171 - - - -
0.0542 75 8.7086 - - - -
0.0549 76 10.3438 - - - -
0.0556 77 10.0306 - - - -
0.0564 78 12.4025 - - - -
0.0571 79 12.8694 - - - -
0.0578 80 10.0686 - - - -
0.0585 81 8.3960 - - - -
0.0592 82 13.9795 - - - -
0.0600 83 10.0807 - - - -
0.0607 84 10.3220 - - - -
0.0614 85 9.8989 - - - -
0.0621 86 9.8388 - - - -
0.0629 87 5.6388 - - - -
0.0636 88 10.0262 - - - -
0.0643 89 8.2790 - - - -
0.0650 90 9.7402 - - - -
0.0658 91 13.4122 - - - -
0.0665 92 11.7798 - - - -
0.0672 93 10.1880 - - - -
0.0679 94 7.9499 - - - -
0.0686 95 9.8354 - - - -
0.0694 96 9.5834 - - - -
0.0701 97 11.9159 - - - -
0.0708 98 11.7099 - - - -
0.0715 99 8.2514 - - - -
0.0723 100 13.1260 0.6757 0.3140 0.5356 0.2223
0.0730 101 11.0303 - - - -
0.0737 102 9.0223 - - - -
0.0744 103 9.5915 - - - -
0.0751 104 13.0176 - - - -
0.0759 105 7.6247 - - - -
0.0766 106 9.9025 - - - -
0.0773 107 9.1125 - - - -
0.0780 108 9.7029 - - - -
0.0788 109 9.1896 - - - -
0.0795 110 11.0168 - - - -
0.0802 111 11.1087 - - - -
0.0809 112 12.3785 - - - -
0.0816 113 9.7064 - - - -
0.0824 114 9.3411 - - - -
0.0831 115 10.9778 - - - -
0.0838 116 8.8305 - - - -
0.0845 117 9.7394 - - - -
0.0853 118 10.3325 - - - -
0.0860 119 8.8358 - - - -
0.0867 120 7.6604 - - - -
0.0874 121 9.5209 - - - -
0.0882 122 8.0198 - - - -
0.0889 123 12.2697 - - - -
0.0896 124 9.0912 - - - -
0.0903 125 7.4947 - - - -
0.0910 126 10.5419 - - - -
0.0918 127 11.2453 - - - -
0.0925 128 10.5963 - - - -
0.0932 129 10.3412 - - - -
0.0939 130 7.8679 - - - -
0.0947 131 12.1248 - - - -
0.0954 132 9.1620 - - - -
0.0961 133 8.8963 - - - -
0.0968 134 10.8781 - - - -
0.0975 135 8.5860 - - - -
0.0983 136 7.5210 - - - -
0.0990 137 9.7468 - - - -
0.0997 138 9.6623 - - - -
0.1004 139 8.4799 - - - -
0.1012 140 8.8839 - - - -
0.1019 141 11.5312 - - - -
0.1026 142 10.4133 - - - -
0.1033 143 9.4093 - - - -
0.1040 144 8.2124 - - - -
0.1048 145 10.8451 - - - -
0.1055 146 9.9916 - - - -
0.1062 147 6.8962 - - - -
0.1069 148 9.9801 - - - -
0.1077 149 8.8308 - - - -
0.1084 150 8.3326 - - - -
0.1091 151 8.0163 - - - -
0.1098 152 7.2944 - - - -
0.1105 153 9.9907 - - - -
0.1113 154 10.0831 - - - -
0.1120 155 8.1769 - - - -
0.1127 156 8.3163 - - - -
0.1134 157 8.1429 - - - -
0.1142 158 9.2245 - - - -
0.1149 159 8.5503 - - - -
0.1156 160 9.8514 - - - -
0.1163 161 9.2164 - - - -
0.1171 162 8.5017 - - - -
0.1178 163 9.2241 - - - -
0.1185 164 8.0048 - - - -
0.1192 165 7.9466 - - - -
0.1199 166 6.8125 - - - -
0.1207 167 8.1324 - - - -
0.1214 168 10.4128 - - - -
0.1221 169 9.1096 - - - -
0.1228 170 9.2938 - - - -
0.1236 171 8.1461 - - - -
0.1243 172 7.7910 - - - -
0.125 173 7.8040 - - - -
0.1257 174 6.9309 - - - -
0.1264 175 8.0909 - - - -
0.1272 176 7.9948 - - - -
0.1279 177 8.1146 - - - -
0.1286 178 9.1950 - - - -
0.1293 179 8.5793 - - - -
0.1301 180 5.2992 - - - -
0.1308 181 5.6427 - - - -
0.1315 182 7.0992 - - - -
0.1322 183 8.0828 - - - -
0.1329 184 5.1109 - - - -
0.1337 185 9.0975 - - - -
0.1344 186 6.7527 - - - -
0.1351 187 9.3605 - - - -
0.1358 188 11.1374 - - - -
0.1366 189 7.0520 - - - -
0.1373 190 6.7000 - - - -
0.1380 191 10.2814 - - - -
0.1387 192 6.9331 - - - -
0.1395 193 6.7634 - - - -
0.1402 194 8.9780 - - - -
0.1409 195 6.9960 - - - -
0.1416 196 7.7169 - - - -
0.1423 197 9.1218 - - - -
0.1431 198 9.8747 - - - -
0.1438 199 8.2517 - - - -
0.1445 200 9.6139 0.7182 0.3707 0.5726 0.1784
0.1452 201 6.3589 - - - -
0.1460 202 7.4813 - - - -
0.1467 203 9.6023 - - - -
0.1474 204 7.6787 - - - -
0.1481 205 7.2351 - - - -
0.1488 206 6.8670 - - - -
0.1496 207 10.3732 - - - -
0.1503 208 9.9240 - - - -
0.1510 209 9.3780 - - - -
0.1517 210 9.3404 - - - -
0.1525 211 8.4722 - - - -
0.1532 212 8.0410 - - - -
0.1539 213 7.7923 - - - -
0.1546 214 8.8958 - - - -
0.1553 215 6.4838 - - - -
0.1561 216 6.5126 - - - -
0.1568 217 6.7802 - - - -
0.1575 218 9.2891 - - - -
0.1582 219 8.7300 - - - -
0.1590 220 9.1180 - - - -
0.1597 221 9.0600 - - - -
0.1604 222 8.6626 - - - -
0.1611 223 9.1981 - - - -
0.1618 224 8.0864 - - - -
0.1626 225 6.5325 - - - -
0.1633 226 7.6085 - - - -
0.1640 227 9.0443 - - - -
0.1647 228 6.4216 - - - -
0.1655 229 9.4925 - - - -
0.1662 230 8.0054 - - - -
0.1669 231 5.3425 - - - -
0.1676 232 8.4954 - - - -
0.1684 233 6.6650 - - - -
0.1691 234 7.7126 - - - -
0.1698 235 7.3105 - - - -
0.1705 236 9.6832 - - - -
0.1712 237 7.1745 - - - -
0.1720 238 8.7681 - - - -
0.1727 239 8.4647 - - - -
0.1734 240 8.5645 - - - -
0.1741 241 9.6978 - - - -
0.1749 242 7.8280 - - - -
0.1756 243 8.1378 - - - -
0.1763 244 8.8602 - - - -
0.1770 245 8.7932 - - - -
0.1777 246 9.0339 - - - -
0.1785 247 5.5556 - - - -
0.1792 248 9.0276 - - - -
0.1799 249 6.3963 - - - -
0.1806 250 8.6511 - - - -
0.1814 251 6.8920 - - - -
0.1821 252 7.6089 - - - -
0.1828 253 6.1774 - - - -
0.1835 254 6.5225 - - - -
0.1842 255 7.1419 - - - -
0.1850 256 6.4712 - - - -
0.1857 257 7.5747 - - - -
0.1864 258 6.2715 - - - -
0.1871 259 7.3575 - - - -
0.1879 260 7.8890 - - - -
0.1886 261 8.7971 - - - -
0.1893 262 8.2353 - - - -
0.1900 263 7.6893 - - - -
0.1908 264 6.1541 - - - -
0.1915 265 6.5112 - - - -
0.1922 266 8.3594 - - - -
0.1929 267 6.3791 - - - -
0.1936 268 7.8584 - - - -
0.1944 269 8.3215 - - - -
0.1951 270 7.1491 - - - -
0.1958 271 7.3401 - - - -
0.1965 272 8.6963 - - - -
0.1973 273 6.4441 - - - -
0.1980 274 7.3672 - - - -
0.1987 275 9.0571 - - - -
0.1994 276 8.8935 - - - -
0.2001 277 7.7856 - - - -
0.2009 278 6.4330 - - - -
0.2016 279 8.5934 - - - -
0.2023 280 8.6859 - - - -
0.2030 281 7.6245 - - - -
0.2038 282 8.6283 - - - -
0.2045 283 5.9387 - - - -
0.2052 284 7.2245 - - - -
0.2059 285 7.2952 - - - -
0.2066 286 7.6956 - - - -
0.2074 287 8.9979 - - - -
0.2081 288 8.9997 - - - -
0.2088 289 6.6219 - - - -
0.2095 290 6.7169 - - - -
0.2103 291 6.3436 - - - -
0.2110 292 8.2345 - - - -
0.2117 293 7.1488 - - - -
0.2124 294 8.1586 - - - -
0.2132 295 7.0979 - - - -
0.2139 296 7.5586 - - - -
0.2146 297 7.0977 - - - -
0.2153 298 8.8792 - - - -
0.2160 299 7.1341 - - - -
0.2168 300 8.1652 0.7142 0.4247 0.6050 0.2661
0.2175 301 9.5709 - - - -
0.2182 302 7.9504 - - - -
0.2189 303 7.8892 - - - -
0.2197 304 6.2182 - - - -
0.2204 305 8.2730 - - - -
0.2211 306 7.8237 - - - -
0.2218 307 7.2448 - - - -
0.2225 308 8.5649 - - - -
0.2233 309 9.0163 - - - -
0.2240 310 6.3014 - - - -
0.2247 311 6.2124 - - - -
0.2254 312 9.1291 - - - -
0.2262 313 7.1985 - - - -
0.2269 314 7.2764 - - - -
0.2276 315 9.3452 - - - -
0.2283 316 7.4676 - - - -
0.2290 317 6.8079 - - - -
0.2298 318 8.5742 - - - -
0.2305 319 9.9193 - - - -
0.2312 320 5.9858 - - - -
0.2319 321 6.8497 - - - -
0.2327 322 6.3486 - - - -
0.2334 323 7.6203 - - - -
0.2341 324 7.9722 - - - -
0.2348 325 9.6823 - - - -
0.2355 326 9.0439 - - - -
0.2363 327 7.0939 - - - -
0.2370 328 7.3688 - - - -
0.2377 329 7.9133 - - - -
0.2384 330 6.1136 - - - -
0.2392 331 8.3561 - - - -
0.2399 332 8.9160 - - - -
0.2406 333 6.2242 - - - -
0.2413 334 6.0803 - - - -
0.2421 335 8.0006 - - - -
0.2428 336 6.2775 - - - -
0.2435 337 7.8405 - - - -
0.2442 338 6.5061 - - - -
0.2449 339 9.0701 - - - -
0.2457 340 6.6981 - - - -
0.2464 341 8.0019 - - - -
0.2471 342 7.0216 - - - -
0.2478 343 7.8473 - - - -
0.2486 344 6.8347 - - - -
0.2493 345 8.0829 - - - -
0.25 346 6.3380 - - - -
0.2507 347 7.2192 - - - -
0.2514 348 6.3448 - - - -
0.2522 349 6.6750 - - - -
0.2529 350 5.9190 - - - -
0.2536 351 8.1827 - - - -
0.2543 352 7.2935 - - - -
0.2551 353 6.7141 - - - -
0.2558 354 5.8674 - - - -
0.2565 355 5.9296 - - - -
0.2572 356 8.4803 - - - -
0.2579 357 6.2370 - - - -
0.2587 358 6.8575 - - - -
0.2594 359 6.6572 - - - -
0.2601 360 6.9343 - - - -
0.2608 361 6.2653 - - - -
0.2616 362 7.9433 - - - -
0.2623 363 6.0115 - - - -
0.2630 364 6.8610 - - - -
0.2637 365 7.1822 - - - -
0.2645 366 9.3142 - - - -
0.2652 367 5.7889 - - - -
0.2659 368 6.8332 - - - -
0.2666 369 6.8526 - - - -
0.2673 370 8.2198 - - - -
0.2681 371 8.3718 - - - -
0.2688 372 5.9132 - - - -
0.2695 373 6.7588 - - - -
0.2702 374 5.7428 - - - -
0.2710 375 8.9354 - - - -
0.2717 376 7.0662 - - - -
0.2724 377 8.1334 - - - -
0.2731 378 7.8102 - - - -
0.2738 379 6.6322 - - - -
0.2746 380 5.8444 - - - -
0.2753 381 7.1785 - - - -
0.2760 382 7.4896 - - - -
0.2767 383 7.2497 - - - -
0.2775 384 6.1833 - - - -
0.2782 385 7.2845 - - - -
0.2789 386 6.0034 - - - -
0.2796 387 8.7919 - - - -
0.2803 388 9.1982 - - - -
0.2811 389 7.7848 - - - -
0.2818 390 9.0149 - - - -
0.2825 391 8.3518 - - - -
0.2832 392 9.0526 - - - -
0.2840 393 8.0202 - - - -
0.2847 394 8.0344 - - - -
0.2854 395 8.3646 - - - -
0.2861 396 8.6428 - - - -
0.2868 397 6.3407 - - - -
0.2876 398 5.8925 - - - -
0.2883 399 6.7617 - - - -
0.2890 400 6.7791 0.7207 0.4104 0.5994 0.2346
0.2897 401 7.5716 - - - -
0.2905 402 7.6600 - - - -
0.2912 403 8.8924 - - - -
0.2919 404 7.6409 - - - -
0.2926 405 7.7922 - - - -
0.2934 406 6.3738 - - - -
0.2941 407 8.0666 - - - -
0.2948 408 7.5364 - - - -
0.2955 409 6.6041 - - - -
0.2962 410 5.6804 - - - -
0.2970 411 6.6729 - - - -
0.2977 412 7.0913 - - - -
0.2984 413 8.3783 - - - -
0.2991 414 6.8530 - - - -
0.2999 415 6.3296 - - - -
0.3006 416 6.3762 - - - -
0.3013 417 6.2155 - - - -
0.3020 418 6.4117 - - - -
0.3027 419 6.6793 - - - -
0.3035 420 6.8263 - - - -
0.3042 421 6.4028 - - - -
0.3049 422 7.7596 - - - -
0.3056 423 7.4189 - - - -
0.3064 424 6.7374 - - - -
0.3071 425 6.8963 - - - -
0.3078 426 8.3500 - - - -
0.3085 427 5.7948 - - - -
0.3092 428 7.2937 - - - -
0.3100 429 6.9338 - - - -
0.3107 430 6.3859 - - - -
0.3114 431 7.5478 - - - -
0.3121 432 7.5736 - - - -
0.3129 433 6.6288 - - - -
0.3136 434 5.3462 - - - -
0.3143 435 6.2010 - - - -
0.3150 436 7.5095 - - - -
0.3158 437 7.4142 - - - -
0.3165 438 5.7945 - - - -
0.3172 439 7.7259 - - - -
0.3179 440 7.8878 - - - -
0.3186 441 6.6473 - - - -
0.3194 442 6.7967 - - - -
0.3201 443 7.4747 - - - -
0.3208 444 6.2259 - - - -
0.3215 445 7.1695 - - - -
0.3223 446 6.0938 - - - -
0.3230 447 7.9218 - - - -
0.3237 448 6.5265 - - - -
0.3244 449 6.8363 - - - -
0.3251 450 7.8182 - - - -
0.3259 451 6.9549 - - - -
0.3266 452 8.2831 - - - -
0.3273 453 7.4832 - - - -
0.3280 454 5.9621 - - - -
0.3288 455 7.9571 - - - -
0.3295 456 7.0751 - - - -
0.3302 457 6.0157 - - - -
0.3309 458 7.7424 - - - -
0.3316 459 7.0588 - - - -
0.3324 460 7.3170 - - - -
0.3331 461 8.6086 - - - -
0.3338 462 7.9951 - - - -
0.3345 463 7.0834 - - - -
0.3353 464 6.4804 - - - -
0.3360 465 7.5319 - - - -
0.3367 466 6.5684 - - - -
0.3374 467 6.6974 - - - -
0.3382 468 8.6434 - - - -
0.3389 469 7.0722 - - - -
0.3396 470 8.8410 - - - -
0.3403 471 7.2724 - - - -
0.3410 472 7.0114 - - - -
0.3418 473 6.3182 - - - -
0.3425 474 6.6589 - - - -
0.3432 475 5.9354 - - - -
0.3439 476 7.3281 - - - -
0.3447 477 5.8394 - - - -
0.3454 478 6.7008 - - - -
0.3461 479 7.3013 - - - -
0.3468 480 8.3300 - - - -
0.3475 481 7.1566 - - - -
0.3483 482 6.7329 - - - -
0.3490 483 6.9272 - - - -
0.3497 484 7.1012 - - - -
0.3504 485 5.7480 - - - -
0.3512 486 7.5637 - - - -
0.3519 487 6.2862 - - - -
0.3526 488 7.3636 - - - -
0.3533 489 5.5500 - - - -
0.3540 490 7.7685 - - - -
0.3548 491 7.4621 - - - -
0.3555 492 5.8204 - - - -
0.3562 493 7.7541 - - - -
0.3569 494 7.7046 - - - -
0.3577 495 7.1885 - - - -
0.3584 496 7.4024 - - - -
0.3591 497 7.1346 - - - -
0.3598 498 7.1843 - - - -
0.3605 499 6.4963 - - - -
0.3613 500 7.4144 0.7201 0.4334 0.6164 0.2291
0.3620 501 6.4894 - - - -
0.3627 502 6.0370 - - - -
0.3634 503 6.0708 - - - -
0.3642 504 7.2179 - - - -
0.3649 505 6.3007 - - - -
0.3656 506 6.8915 - - - -
0.3663 507 6.4981 - - - -
0.3671 508 6.1732 - - - -
0.3678 509 7.7928 - - - -
0.3685 510 6.0202 - - - -
0.3692 511 7.8894 - - - -
0.3699 512 6.8990 - - - -
0.3707 513 6.4587 - - - -
0.3714 514 7.8915 - - - -
0.3721 515 6.5216 - - - -
0.3728 516 7.7441 - - - -
0.3736 517 7.3291 - - - -
0.3743 518 5.6645 - - - -
0.375 519 6.4170 - - - -
0.3757 520 5.3838 - - - -
0.3764 521 7.1110 - - - -
0.3772 522 6.8044 - - - -
0.3779 523 5.7201 - - - -
0.3786 524 6.0177 - - - -
0.3793 525 6.4096 - - - -
0.3801 526 6.0477 - - - -
0.3808 527 7.5181 - - - -
0.3815 528 6.4395 - - - -
0.3822 529 5.7497 - - - -
0.3829 530 6.5995 - - - -
0.3837 531 5.5668 - - - -
0.3844 532 6.8597 - - - -
0.3851 533 6.9825 - - - -
0.3858 534 5.6017 - - - -
0.3866 535 6.7503 - - - -
0.3873 536 7.2479 - - - -
0.3880 537 8.1545 - - - -
0.3887 538 7.1333 - - - -
0.3895 539 7.5139 - - - -
0.3902 540 6.2307 - - - -
0.3909 541 5.9167 - - - -
0.3916 542 5.9867 - - - -
0.3923 543 7.3803 - - - -
0.3931 544 4.4716 - - - -
0.3938 545 7.0082 - - - -
0.3945 546 5.4250 - - - -
0.3952 547 6.0689 - - - -
0.3960 548 7.4904 - - - -
0.3967 549 6.1877 - - - -
0.3974 550 7.3366 - - - -
0.3981 551 8.0649 - - - -
0.3988 552 6.3899 - - - -
0.3996 553 7.5318 - - - -
0.4003 554 6.3690 - - - -
0.4010 555 5.4542 - - - -
0.4017 556 5.7283 - - - -
0.4025 557 5.6050 - - - -
0.4032 558 7.6346 - - - -
0.4039 559 6.0552 - - - -
0.4046 560 6.0251 - - - -
0.4053 561 7.9018 - - - -
0.4061 562 6.4085 - - - -
0.4068 563 6.2235 - - - -
0.4075 564 6.8315 - - - -
0.4082 565 5.5468 - - - -
0.4090 566 7.8764 - - - -
0.4097 567 5.2967 - - - -
0.4104 568 5.8275 - - - -
0.4111 569 6.7897 - - - -
0.4118 570 5.8064 - - - -
0.4126 571 5.2486 - - - -
0.4133 572 7.8639 - - - -
0.4140 573 8.2401 - - - -
0.4147 574 6.6209 - - - -
0.4155 575 5.6385 - - - -
0.4162 576 5.3856 - - - -
0.4169 577 5.2018 - - - -
0.4176 578 7.2776 - - - -
0.4184 579 7.8523 - - - -
0.4191 580 5.9084 - - - -
0.4198 581 5.9106 - - - -
0.4205 582 6.2337 - - - -
0.4212 583 7.3777 - - - -
0.4220 584 7.6100 - - - -
0.4227 585 5.2674 - - - -
0.4234 586 4.8303 - - - -
0.4241 587 6.2205 - - - -
0.4249 588 5.7860 - - - -
0.4256 589 6.7148 - - - -
0.4263 590 5.7199 - - - -
0.4270 591 6.9262 - - - -
0.4277 592 5.5976 - - - -
0.4285 593 6.3777 - - - -
0.4292 594 5.4416 - - - -
0.4299 595 5.5719 - - - -
0.4306 596 6.4046 - - - -
0.4314 597 4.6755 - - - -
0.4321 598 6.6959 - - - -
0.4328 599 6.9291 - - - -
0.4335 600 6.3970 0.7254 0.4488 0.6308 0.2557
0.4342 601 6.1933 - - - -
0.4350 602 7.4759 - - - -
0.4357 603 6.3932 - - - -
0.4364 604 7.1536 - - - -
0.4371 605 6.8583 - - - -
0.4379 606 6.4889 - - - -
0.4386 607 6.3323 - - - -
0.4393 608 4.7390 - - - -
0.4400 609 6.3241 - - - -
0.4408 610 7.4035 - - - -
0.4415 611 7.2400 - - - -
0.4422 612 7.0191 - - - -
0.4429 613 7.6837 - - - -
0.4436 614 5.9045 - - - -
0.4444 615 7.3565 - - - -
0.4451 616 7.6824 - - - -
0.4458 617 6.7168 - - - -
0.4465 618 6.3011 - - - -
0.4473 619 5.9304 - - - -
0.4480 620 6.8737 - - - -
0.4487 621 7.6812 - - - -
0.4494 622 6.8447 - - - -
0.4501 623 5.3368 - - - -
0.4509 624 6.6186 - - - -
0.4516 625 6.2370 - - - -
0.4523 626 7.1336 - - - -
0.4530 627 6.3311 - - - -
0.4538 628 6.9258 - - - -
0.4545 629 6.3771 - - - -
0.4552 630 5.4026 - - - -
0.4559 631 6.4660 - - - -
0.4566 632 5.6474 - - - -
0.4574 633 4.7580 - - - -
0.4581 634 5.2611 - - - -
0.4588 635 6.9563 - - - -
0.4595 636 6.0297 - - - -
0.4603 637 6.3006 - - - -
0.4610 638 5.1162 - - - -
0.4617 639 6.9703 - - - -
0.4624 640 5.6061 - - - -
0.4632 641 7.5849 - - - -
0.4639 642 6.2041 - - - -
0.4646 643 4.6438 - - - -
0.4653 644 7.1355 - - - -
0.4660 645 6.1422 - - - -
0.4668 646 8.0091 - - - -
0.4675 647 4.8879 - - - -
0.4682 648 6.1299 - - - -
0.4689 649 6.5099 - - - -
0.4697 650 7.1893 - - - -
0.4704 651 6.1822 - - - -
0.4711 652 7.4856 - - - -
0.4718 653 6.1758 - - - -
0.4725 654 6.0117 - - - -
0.4733 655 6.6322 - - - -
0.4740 656 6.9167 - - - -
0.4747 657 5.6242 - - - -
0.4754 658 5.7725 - - - -
0.4762 659 6.6833 - - - -
0.4769 660 5.1868 - - - -
0.4776 661 7.3689 - - - -
0.4783 662 6.0024 - - - -
0.4790 663 7.0283 - - - -
0.4798 664 5.6339 - - - -
0.4805 665 6.0052 - - - -
0.4812 666 7.7238 - - - -
0.4819 667 5.8245 - - - -
0.4827 668 5.8603 - - - -
0.4834 669 6.5048 - - - -
0.4841 670 7.3249 - - - -
0.4848 671 7.5311 - - - -
0.4855 672 6.4639 - - - -
0.4863 673 6.7440 - - - -
0.4870 674 5.5285 - - - -
0.4877 675 6.8857 - - - -
0.4884 676 6.6509 - - - -
0.4892 677 6.5391 - - - -
0.4899 678 5.4823 - - - -
0.4906 679 6.0092 - - - -
0.4913 680 5.2657 - - - -
0.4921 681 6.4316 - - - -
0.4928 682 7.5152 - - - -
0.4935 683 6.1815 - - - -
0.4942 684 8.4589 - - - -
0.4949 685 5.7165 - - - -
0.4957 686 6.7732 - - - -
0.4964 687 6.4182 - - - -
0.4971 688 5.6321 - - - -
0.4978 689 5.4118 - - - -
0.4986 690 5.6385 - - - -
0.4993 691 5.4815 - - - -
0.5 692 7.1629 - - - -
0.5007 693 7.2693 - - - -
0.5014 694 5.6839 - - - -
0.5022 695 7.0398 - - - -
0.5029 696 6.4526 - - - -
0.5036 697 7.4029 - - - -
0.5043 698 7.9031 - - - -
0.5051 699 5.9395 - - - -
0.5058 700 6.3084 0.7160 0.4615 0.6214 0.2432
0.5065 701 8.2265 - - - -
0.5072 702 6.8117 - - - -
0.5079 703 4.6658 - - - -
0.5087 704 4.4824 - - - -
0.5094 705 7.1236 - - - -
0.5101 706 6.8124 - - - -
0.5108 707 5.3568 - - - -
0.5116 708 5.3538 - - - -
0.5123 709 6.8925 - - - -
0.5130 710 6.2703 - - - -
0.5137 711 7.1616 - - - -
0.5145 712 6.3860 - - - -
0.5152 713 6.2680 - - - -
0.5159 714 7.1210 - - - -
0.5166 715 6.3944 - - - -
0.5173 716 6.0118 - - - -
0.5181 717 6.2030 - - - -
0.5188 718 5.7602 - - - -
0.5195 719 8.0025 - - - -
0.5202 720 7.1800 - - - -
0.5210 721 6.2964 - - - -
0.5217 722 7.0733 - - - -
0.5224 723 5.6726 - - - -
0.5231 724 5.1116 - - - -
0.5238 725 5.9011 - - - -
0.5246 726 7.9891 - - - -
0.5253 727 5.6028 - - - -
0.5260 728 5.3648 - - - -
0.5267 729 5.9364 - - - -
0.5275 730 6.7550 - - - -
0.5282 731 6.6084 - - - -
0.5289 732 5.5208 - - - -
0.5296 733 5.3407 - - - -
0.5303 734 6.1760 - - - -
0.5311 735 6.8110 - - - -
0.5318 736 5.1548 - - - -
0.5325 737 5.5538 - - - -
0.5332 738 6.7424 - - - -
0.5340 739 6.9557 - - - -
0.5347 740 6.9111 - - - -
0.5354 741 7.0922 - - - -
0.5361 742 6.3088 - - - -
0.5368 743 6.0157 - - - -
0.5376 744 7.0506 - - - -
0.5383 745 6.4379 - - - -
0.5390 746 5.3137 - - - -
0.5397 747 5.7973 - - - -
0.5405 748 6.1224 - - - -
0.5412 749 7.1753 - - - -
0.5419 750 5.9129 - - - -
0.5426 751 6.6327 - - - -
0.5434 752 5.6577 - - - -
0.5441 753 6.1541 - - - -
0.5448 754 4.1901 - - - -
0.5455 755 5.9777 - - - -
0.5462 756 7.4083 - - - -
0.5470 757 6.2733 - - - -
0.5477 758 5.3830 - - - -
0.5484 759 6.9952 - - - -
0.5491 760 7.1979 - - - -
0.5499 761 6.8813 - - - -
0.5506 762 7.8724 - - - -
0.5513 763 5.5486 - - - -
0.5520 764 7.0781 - - - -
0.5527 765 7.2936 - - - -
0.5535 766 7.0201 - - - -
0.5542 767 4.7181 - - - -
0.5549 768 5.9278 - - - -
0.5556 769 7.5756 - - - -
0.5564 770 6.4068 - - - -
0.5571 771 5.9117 - - - -
0.5578 772 4.7990 - - - -
0.5585 773 6.8979 - - - -
0.5592 774 6.5705 - - - -
0.5600 775 6.6100 - - - -
0.5607 776 6.6518 - - - -
0.5614 777 6.1859 - - - -
0.5621 778 6.0871 - - - -
0.5629 779 6.9617 - - - -
0.5636 780 6.8512 - - - -
0.5643 781 5.0229 - - - -
0.5650 782 6.6245 - - - -
0.5658 783 5.2700 - - - -
0.5665 784 6.3649 - - - -
0.5672 785 5.7335 - - - -
0.5679 786 6.2419 - - - -
0.5686 787 5.8438 - - - -
0.5694 788 6.4938 - - - -
0.5701 789 6.0471 - - - -
0.5708 790 7.5045 - - - -
0.5715 791 5.4143 - - - -
0.5723 792 6.9918 - - - -
0.5730 793 6.9107 - - - -
0.5737 794 5.7080 - - - -
0.5744 795 6.6462 - - - -
0.5751 796 6.5096 - - - -
0.5759 797 5.7908 - - - -
0.5766 798 7.0426 - - - -
0.5773 799 7.2596 - - - -
0.5780 800 6.6305 0.7324 0.4638 0.6298 0.2631
0.5788 801 7.8298 - - - -
0.5795 802 6.3981 - - - -
0.5802 803 6.2410 - - - -
0.5809 804 4.6306 - - - -
0.5816 805 5.9941 - - - -
0.5824 806 6.3173 - - - -
0.5831 807 6.2498 - - - -
0.5838 808 5.3062 - - - -
0.5845 809 6.3327 - - - -
0.5853 810 5.1326 - - - -
0.5860 811 7.0057 - - - -
0.5867 812 5.2715 - - - -
0.5874 813 5.3476 - - - -
0.5882 814 5.1968 - - - -
0.5889 815 5.4986 - - - -
0.5896 816 5.8887 - - - -
0.5903 817 6.9317 - - - -
0.5910 818 5.7251 - - - -
0.5918 819 6.2541 - - - -
0.5925 820 5.7925 - - - -
0.5932 821 6.2207 - - - -
0.5939 822 6.9267 - - - -
0.5947 823 6.3197 - - - -
0.5954 824 5.6402 - - - -
0.5961 825 5.8424 - - - -
0.5968 826 6.0290 - - - -
0.5975 827 5.5379 - - - -
0.5983 828 7.8225 - - - -
0.5990 829 5.7548 - - - -
0.5997 830 5.9368 - - - -
0.6004 831 6.4836 - - - -
0.6012 832 4.8128 - - - -
0.6019 833 5.9734 - - - -
0.6026 834 6.4342 - - - -
0.6033 835 6.7642 - - - -
0.6040 836 6.2997 - - - -
0.6048 837 6.8180 - - - -
0.6055 838 6.6107 - - - -
0.6062 839 7.0327 - - - -
0.6069 840 5.5846 - - - -
0.6077 841 6.3881 - - - -
0.6084 842 7.0435 - - - -
0.6091 843 6.8715 - - - -
0.6098 844 5.5611 - - - -
0.6105 845 6.1790 - - - -
0.6113 846 6.7745 - - - -
0.6120 847 6.5725 - - - -
0.6127 848 5.5519 - - - -
0.6134 849 6.5677 - - - -
0.6142 850 7.0109 - - - -
0.6149 851 6.2713 - - - -
0.6156 852 5.3728 - - - -
0.6163 853 6.9830 - - - -
0.6171 854 6.7617 - - - -
0.6178 855 6.0420 - - - -
0.6185 856 5.3266 - - - -
0.6192 857 6.4143 - - - -
0.6199 858 6.7875 - - - -
0.6207 859 6.4280 - - - -
0.6214 860 7.1459 - - - -
0.6221 861 5.8765 - - - -
0.6228 862 4.9146 - - - -
0.6236 863 7.2658 - - - -
0.6243 864 5.2327 - - - -
0.625 865 4.9911 - - - -
0.6257 866 6.8886 - - - -
0.6264 867 6.5086 - - - -
0.6272 868 6.4716 - - - -
0.6279 869 5.5956 - - - -
0.6286 870 6.1783 - - - -
0.6293 871 6.8583 - - - -
0.6301 872 8.1791 - - - -
0.6308 873 6.2713 - - - -
0.6315 874 6.0895 - - - -
0.6322 875 5.5499 - - - -
0.6329 876 6.2712 - - - -
0.6337 877 7.5111 - - - -
0.6344 878 6.1785 - - - -
0.6351 879 6.9142 - - - -
0.6358 880 7.3580 - - - -
0.6366 881 5.7323 - - - -
0.6373 882 5.9078 - - - -
0.6380 883 5.9316 - - - -
0.6387 884 6.5241 - - - -
0.6395 885 5.9147 - - - -
0.6402 886 6.9163 - - - -
0.6409 887 5.7609 - - - -
0.6416 888 7.4602 - - - -
0.6423 889 5.0279 - - - -
0.6431 890 6.5788 - - - -
0.6438 891 5.9567 - - - -
0.6445 892 6.3633 - - - -
0.6452 893 6.7809 - - - -
0.6460 894 6.7259 - - - -
0.6467 895 4.7193 - - - -
0.6474 896 6.0105 - - - -
0.6481 897 6.7474 - - - -
0.6488 898 8.0109 - - - -
0.6496 899 6.0456 - - - -
0.6503 900 5.2050 0.7393 0.4730 0.6410 0.2524
0.6510 901 5.1463 - - - -
0.6517 902 5.0687 - - - -
0.6525 903 6.3515 - - - -
0.6532 904 7.3388 - - - -
0.6539 905 4.9057 - - - -
0.6546 906 5.9118 - - - -
0.6553 907 5.8943 - - - -
0.6561 908 6.8771 - - - -
0.6568 909 7.3559 - - - -
0.6575 910 7.1130 - - - -
0.6582 911 6.8689 - - - -
0.6590 912 5.3926 - - - -
0.6597 913 6.7045 - - - -
0.6604 914 6.4902 - - - -
0.6611 915 7.4196 - - - -
0.6618 916 6.0133 - - - -
0.6626 917 6.2019 - - - -
0.6633 918 5.3724 - - - -
0.6640 919 6.3161 - - - -
0.6647 920 4.8981 - - - -
0.6655 921 5.9653 - - - -
0.6662 922 6.3594 - - - -
0.6669 923 7.2404 - - - -
0.6676 924 6.1499 - - - -
0.6684 925 5.3256 - - - -
0.6691 926 5.6482 - - - -
0.6698 927 5.2433 - - - -
0.6705 928 6.4134 - - - -
0.6712 929 5.9395 - - - -
0.6720 930 4.5305 - - - -
0.6727 931 4.8529 - - - -
0.6734 932 6.0455 - - - -
0.6741 933 4.9438 - - - -
0.6749 934 4.2840 - - - -
0.6756 935 6.8851 - - - -
0.6763 936 6.0733 - - - -
0.6770 937 5.7184 - - - -
0.6777 938 5.5703 - - - -
0.6785 939 6.7682 - - - -
0.6792 940 5.8280 - - - -
0.6799 941 6.9522 - - - -
0.6806 942 6.5575 - - - -
0.6814 943 7.4796 - - - -
0.6821 944 5.1846 - - - -
0.6828 945 7.3063 - - - -
0.6835 946 4.6859 - - - -
0.6842 947 6.6142 - - - -
0.6850 948 5.1374 - - - -
0.6857 949 5.8138 - - - -
0.6864 950 6.0157 - - - -
0.6871 951 5.6976 - - - -
0.6879 952 7.6243 - - - -
0.6886 953 5.7338 - - - -
0.6893 954 4.6641 - - - -
0.6900 955 6.0813 - - - -
0.6908 956 4.7392 - - - -
0.6915 957 5.8588 - - - -
0.6922 958 4.9856 - - - -
0.6929 959 7.2878 - - - -
0.6936 960 4.6268 - - - -
0.6944 961 7.1012 - - - -
0.6951 962 6.8072 - - - -
0.6958 963 7.0386 - - - -
0.6965 964 5.4574 - - - -
0.6973 965 5.0739 - - - -
0.6980 966 7.1669 - - - -
0.6987 967 7.0772 - - - -
0.6994 968 6.4883 - - - -
0.7001 969 6.8535 - - - -
0.7009 970 6.5256 - - - -
0.7016 971 7.3183 - - - -
0.7023 972 6.9475 - - - -
0.7030 973 7.6688 - - - -
0.7038 974 6.8741 - - - -
0.7045 975 4.3367 - - - -
0.7052 976 6.9753 - - - -
0.7059 977 6.4956 - - - -
0.7066 978 5.4959 - - - -
0.7074 979 7.3347 - - - -
0.7081 980 6.2816 - - - -
0.7088 981 5.9169 - - - -
0.7095 982 5.9494 - - - -
0.7103 983 7.0291 - - - -
0.7110 984 6.8919 - - - -
0.7117 985 5.3146 - - - -
0.7124 986 4.2064 - - - -
0.7132 987 6.6610 - - - -
0.7139 988 5.3818 - - - -
0.7146 989 5.6585 - - - -
0.7153 990 6.6635 - - - -
0.7160 991 7.4555 - - - -
0.7168 992 7.1226 - - - -
0.7175 993 6.7291 - - - -
0.7182 994 5.3008 - - - -
0.7189 995 5.1884 - - - -
0.7197 996 6.8463 - - - -
0.7204 997 5.0424 - - - -
0.7211 998 5.7123 - - - -
0.7218 999 6.5097 - - - -
0.7225 1000 5.2729 0.7374 0.4652 0.6384 0.2474
0.7233 1001 6.1351 - - - -
0.7240 1002 7.0543 - - - -
0.7247 1003 5.5299 - - - -
0.7254 1004 4.8530 - - - -
0.7262 1005 6.3248 - - - -
0.7269 1006 7.5397 - - - -
0.7276 1007 7.1854 - - - -
0.7283 1008 6.9686 - - - -
0.7290 1009 5.2717 - - - -
0.7298 1010 7.1020 - - - -
0.7305 1011 5.2572 - - - -
0.7312 1012 5.0391 - - - -
0.7319 1013 6.0665 - - - -
0.7327 1014 4.8885 - - - -
0.7334 1015 6.5301 - - - -
0.7341 1016 6.3835 - - - -
0.7348 1017 6.6436 - - - -
0.7355 1018 5.8138 - - - -
0.7363 1019 5.1528 - - - -
0.7370 1020 6.6783 - - - -
0.7377 1021 7.2755 - - - -
0.7384 1022 6.0392 - - - -
0.7392 1023 5.9935 - - - -
0.7399 1024 7.0521 - - - -
0.7406 1025 6.6390 - - - -
0.7413 1026 5.9858 - - - -
0.7421 1027 6.5687 - - - -
0.7428 1028 7.8341 - - - -
0.7435 1029 6.0880 - - - -
0.7442 1030 5.2623 - - - -
0.7449 1031 6.0979 - - - -
0.7457 1032 5.9854 - - - -
0.7464 1033 6.0550 - - - -
0.7471 1034 6.0724 - - - -
0.7478 1035 6.0514 - - - -
0.7486 1036 6.4059 - - - -
0.7493 1037 6.1786 - - - -
0.75 1038 7.0528 - - - -
0.7507 1039 6.5500 - - - -
0.7514 1040 5.4051 - - - -
0.7522 1041 7.1357 - - - -
0.7529 1042 6.1946 - - - -
0.7536 1043 6.9267 - - - -
0.7543 1044 6.5232 - - - -
0.7551 1045 4.5364 - - - -
0.7558 1046 6.6438 - - - -
0.7565 1047 5.6250 - - - -
0.7572 1048 6.6055 - - - -
0.7579 1049 4.4444 - - - -
0.7587 1050 6.5001 - - - -
0.7594 1051 6.6437 - - - -
0.7601 1052 5.4743 - - - -
0.7608 1053 7.3151 - - - -
0.7616 1054 5.2962 - - - -
0.7623 1055 7.1727 - - - -
0.7630 1056 6.5361 - - - -
0.7637 1057 4.9186 - - - -
0.7645 1058 6.7589 - - - -
0.7652 1059 5.8895 - - - -
0.7659 1060 6.9690 - - - -
0.7666 1061 6.6934 - - - -
0.7673 1062 7.3752 - - - -
0.7681 1063 6.4386 - - - -
0.7688 1064 7.1047 - - - -
0.7695 1065 6.4752 - - - -
0.7702 1066 6.9048 - - - -
0.7710 1067 7.3948 - - - -
0.7717 1068 6.5712 - - - -
0.7724 1069 6.4307 - - - -
0.7731 1070 6.9238 - - - -
0.7738 1071 7.4569 - - - -
0.7746 1072 5.1113 - - - -
0.7753 1073 6.2225 - - - -
0.7760 1074 6.2630 - - - -
0.7767 1075 7.1062 - - - -
0.7775 1076 5.7929 - - - -
0.7782 1077 6.8086 - - - -
0.7789 1078 7.9148 - - - -
0.7796 1079 6.7325 - - - -
0.7803 1080 6.0138 - - - -
0.7811 1081 5.8488 - - - -
0.7818 1082 6.0254 - - - -
0.7825 1083 5.0547 - - - -
0.7832 1084 6.0642 - - - -
0.7840 1085 7.3133 - - - -
0.7847 1086 4.6101 - - - -
0.7854 1087 5.9190 - - - -
0.7861 1088 7.8125 - - - -
0.7868 1089 6.3569 - - - -
0.7876 1090 6.7286 - - - -
0.7883 1091 5.8659 - - - -
0.7890 1092 6.5897 - - - -
0.7897 1093 6.3916 - - - -
0.7905 1094 6.1599 - - - -
0.7912 1095 5.7989 - - - -
0.7919 1096 5.1509 - - - -
0.7926 1097 6.7405 - - - -
0.7934 1098 5.9348 - - - -
0.7941 1099 6.6287 - - - -
0.7948 1100 5.5466 0.7373 0.4677 0.6392 0.2583
0.7955 1101 5.5228 - - - -
0.7962 1102 5.9320 - - - -
0.7970 1103 5.3345 - - - -
0.7977 1104 4.9006 - - - -
0.7984 1105 4.8930 - - - -
0.7991 1106 4.9599 - - - -
0.7999 1107 7.8232 - - - -
0.8006 1108 6.1363 - - - -
0.8013 1109 5.7271 - - - -
0.8020 1110 5.4896 - - - -
0.8027 1111 6.0897 - - - -
0.8035 1112 5.7556 - - - -
0.8042 1113 7.0904 - - - -
0.8049 1114 4.7723 - - - -
0.8056 1115 7.2894 - - - -
0.8064 1116 4.3544 - - - -
0.8071 1117 5.6209 - - - -
0.8078 1118 5.3706 - - - -
0.8085 1119 6.1225 - - - -
0.8092 1120 5.9583 - - - -
0.8100 1121 5.9661 - - - -
0.8107 1122 7.1256 - - - -
0.8114 1123 7.4367 - - - -
0.8121 1124 6.5979 - - - -
0.8129 1125 7.1782 - - - -
0.8136 1126 6.8817 - - - -
0.8143 1127 5.2016 - - - -
0.8150 1128 5.2092 - - - -
0.8158 1129 6.3744 - - - -
0.8165 1130 5.7786 - - - -
0.8172 1131 7.0197 - - - -
0.8179 1132 6.3387 - - - -
0.8186 1133 5.5043 - - - -
0.8194 1134 7.0138 - - - -
0.8201 1135 6.3693 - - - -
0.8208 1136 6.0810 - - - -
0.8215 1137 5.7789 - - - -
0.8223 1138 6.2340 - - - -
0.8230 1139 7.4085 - - - -
0.8237 1140 4.7047 - - - -
0.8244 1141 5.7953 - - - -
0.8251 1142 5.9719 - - - -
0.8259 1143 5.6071 - - - -
0.8266 1144 5.6108 - - - -
0.8273 1145 6.0398 - - - -
0.8280 1146 6.9959 - - - -
0.8288 1147 5.1781 - - - -
0.8295 1148 7.7527 - - - -
0.8302 1149 6.2070 - - - -
0.8309 1150 6.3783 - - - -
0.8316 1151 4.8328 - - - -
0.8324 1152 6.1858 - - - -
0.8331 1153 6.2611 - - - -
0.8338 1154 5.3561 - - - -
0.8345 1155 8.0371 - - - -
0.8353 1156 7.1104 - - - -
0.8360 1157 6.1771 - - - -
0.8367 1158 5.4563 - - - -
0.8374 1159 6.6745 - - - -
0.8382 1160 6.9234 - - - -
0.8389 1161 5.5387 - - - -
0.8396 1162 7.2689 - - - -
0.8403 1163 4.8034 - - - -
0.8410 1164 4.9781 - - - -
0.8418 1165 6.4649 - - - -
0.8425 1166 7.5344 - - - -
0.8432 1167 7.0951 - - - -
0.8439 1168 7.3022 - - - -
0.8447 1169 6.6247 - - - -
0.8454 1170 6.5862 - - - -
0.8461 1171 5.6507 - - - -
0.8468 1172 6.0916 - - - -
0.8475 1173 5.6967 - - - -
0.8483 1174 5.5764 - - - -
0.8490 1175 6.6946 - - - -
0.8497 1176 6.7382 - - - -
0.8504 1177 6.9289 - - - -
0.8512 1178 6.4772 - - - -
0.8519 1179 5.8203 - - - -
0.8526 1180 5.9936 - - - -
0.8533 1181 6.6155 - - - -
0.8540 1182 5.7082 - - - -
0.8548 1183 5.3767 - - - -
0.8555 1184 5.8142 - - - -
0.8562 1185 4.9782 - - - -
0.8569 1186 6.2548 - - - -
0.8577 1187 5.0132 - - - -
0.8584 1188 8.1514 - - - -
0.8591 1189 5.3822 - - - -
0.8598 1190 6.8445 - - - -
0.8605 1191 7.0811 - - - -
0.8613 1192 6.3187 - - - -
0.8620 1193 6.1281 - - - -
0.8627 1194 6.1381 - - - -
0.8634 1195 5.0330 - - - -
0.8642 1196 5.3819 - - - -
0.8649 1197 7.4270 - - - -
0.8656 1198 6.2574 - - - -
0.8663 1199 4.3260 - - - -
0.8671 1200 5.2153 0.7366 0.4667 0.6394 0.2588
0.8678 1201 5.2618 - - - -
0.8685 1202 6.8403 - - - -
0.8692 1203 6.3041 - - - -
0.8699 1204 6.8204 - - - -
0.8707 1205 6.3450 - - - -
0.8714 1206 5.4781 - - - -
0.8721 1207 6.2703 - - - -
0.8728 1208 6.9049 - - - -
0.8736 1209 6.9864 - - - -
0.8743 1210 7.2828 - - - -
0.875 1211 7.0713 - - - -
0.8757 1212 6.9166 - - - -
0.8764 1213 6.9528 - - - -
0.8772 1214 6.2153 - - - -
0.8779 1215 7.3009 - - - -
0.8786 1216 6.1727 - - - -
0.8793 1217 6.5173 - - - -
0.8801 1218 4.9515 - - - -
0.8808 1219 6.1462 - - - -
0.8815 1220 6.1274 - - - -
0.8822 1221 7.9564 - - - -
0.8829 1222 5.9247 - - - -
0.8837 1223 6.5603 - - - -
0.8844 1224 7.6430 - - - -
0.8851 1225 6.4723 - - - -
0.8858 1226 5.9675 - - - -
0.8866 1227 5.1503 - - - -
0.8873 1228 5.5294 - - - -
0.8880 1229 6.1117 - - - -
0.8887 1230 6.2068 - - - -
0.8895 1231 7.0005 - - - -
0.8902 1232 6.4340 - - - -
0.8909 1233 7.3677 - - - -
0.8916 1234 6.5745 - - - -
0.8923 1235 5.5457 - - - -
0.8931 1236 6.8619 - - - -
0.8938 1237 7.4906 - - - -
0.8945 1238 6.8572 - - - -
0.8952 1239 6.4940 - - - -
0.8960 1240 6.0318 - - - -
0.8967 1241 5.9523 - - - -
0.8974 1242 5.8306 - - - -
0.8981 1243 7.4878 - - - -
0.8988 1244 6.0601 - - - -
0.8996 1245 6.0160 - - - -
0.9003 1246 7.5695 - - - -
0.9010 1247 5.1841 - - - -
0.9017 1248 5.8222 - - - -
0.9025 1249 6.3743 - - - -
0.9032 1250 5.0132 - - - -
0.9039 1251 7.3256 - - - -
0.9046 1252 6.4869 - - - -
0.9053 1253 5.3349 - - - -
0.9061 1254 7.6455 - - - -
0.9068 1255 7.2501 - - - -
0.9075 1256 6.6625 - - - -
0.9082 1257 5.8114 - - - -
0.9090 1258 7.4676 - - - -
0.9097 1259 6.8997 - - - -
0.9104 1260 5.9862 - - - -
0.9111 1261 5.9442 - - - -
0.9118 1262 6.6340 - - - -
0.9126 1263 6.6736 - - - -
0.9133 1264 7.2402 - - - -
0.9140 1265 5.8728 - - - -
0.9147 1266 6.8089 - - - -
0.9155 1267 6.7254 - - - -
0.9162 1268 7.1492 - - - -
0.9169 1269 7.3898 - - - -
0.9176 1270 6.1858 - - - -
0.9184 1271 7.3701 - - - -
0.9191 1272 6.5232 - - - -
0.9198 1273 6.1980 - - - -
0.9205 1274 5.5368 - - - -
0.9212 1275 6.8263 - - - -
0.9220 1276 5.8699 - - - -
0.9227 1277 6.0835 - - - -
0.9234 1278 6.7414 - - - -
0.9241 1279 6.1632 - - - -
0.9249 1280 5.3919 - - - -
0.9256 1281 5.3254 - - - -
0.9263 1282 6.8750 - - - -
0.9270 1283 6.6326 - - - -
0.9277 1284 6.2277 - - - -
0.9285 1285 7.0646 - - - -
0.9292 1286 5.2621 - - - -
0.9299 1287 4.0181 - - - -
0.9306 1288 6.5457 - - - -
0.9314 1289 5.1115 - - - -
0.9321 1290 4.9947 - - - -
0.9328 1291 7.8172 - - - -
0.9335 1292 6.9967 - - - -
0.9342 1293 4.2306 - - - -
0.9350 1294 6.4433 - - - -
0.9357 1295 6.2437 - - - -
0.9364 1296 6.6085 - - - -
0.9371 1297 6.7630 - - - -
0.9379 1298 6.5646 - - - -
0.9386 1299 7.1181 - - - -
0.9393 1300 6.6304 0.7348 0.4665 0.6414 0.2600
0.9400 1301 6.9020 - - - -
0.9408 1302 7.2471 - - - -
0.9415 1303 7.2700 - - - -
0.9422 1304 7.2717 - - - -
0.9429 1305 7.0717 - - - -
0.9436 1306 5.5470 - - - -
0.9444 1307 6.9274 - - - -
0.9451 1308 5.7937 - - - -
0.9458 1309 7.3228 - - - -
0.9465 1310 7.1520 - - - -
0.9473 1311 6.0217 - - - -
0.9480 1312 5.7415 - - - -
0.9487 1313 7.0669 - - - -
0.9494 1314 6.5617 - - - -
0.9501 1315 6.0856 - - - -
0.9509 1316 7.2686 - - - -
0.9516 1317 6.7960 - - - -
0.9523 1318 5.8250 - - - -
0.9530 1319 7.0301 - - - -
0.9538 1320 6.0094 - - - -
0.9545 1321 6.6463 - - - -
0.9552 1322 4.9603 - - - -
0.9559 1323 4.6620 - - - -
0.9566 1324 6.6628 - - - -
0.9574 1325 6.3963 - - - -
0.9581 1326 6.0725 - - - -
0.9588 1327 6.4144 - - - -
0.9595 1328 8.0120 - - - -
0.9603 1329 7.1712 - - - -
0.9610 1330 5.5660 - - - -
0.9617 1331 5.3600 - - - -
0.9624 1332 5.9571 - - - -
0.9632 1333 5.0757 - - - -
0.9639 1334 6.6106 - - - -
0.9646 1335 6.4320 - - - -
0.9653 1336 5.9044 - - - -
0.9660 1337 6.4515 - - - -
0.9668 1338 6.2933 - - - -
0.9675 1339 6.8401 - - - -
0.9682 1340 4.3254 - - - -
0.9689 1341 4.2630 - - - -
0.9697 1342 5.1197 - - - -
0.9704 1343 4.5743 - - - -
0.9711 1344 4.3811 - - - -
0.9718 1345 4.0961 - - - -
0.9725 1346 4.2583 - - - -
0.9733 1347 4.3204 - - - -
0.9740 1348 4.5999 - - - -
0.9747 1349 4.3744 - - - -
0.9754 1350 4.1518 - - - -
0.9762 1351 4.4905 - - - -
0.9769 1352 4.5970 - - - -
0.9776 1353 4.5256 - - - -
0.9783 1354 4.2960 - - - -
0.9790 1355 5.0964 - - - -
0.9798 1356 4.6103 - - - -
0.9805 1357 4.6055 - - - -
-1 -1 - 0.7359 0.4702 0.6415 0.2591

Training Time

  • Training: 6.0 days
  • Evaluation: 1.6 hours
  • Total: 6.1 days

Framework Versions

  • Python: 3.10.19
  • Sentence Transformers: 5.4.1
  • Transformers: 5.5.4
  • PyTorch: 2.11.0+cu130
  • Accelerate: 1.13.0
  • Datasets: 4.8.4
  • Tokenizers: 0.22.2

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

MatryoshkaLoss

@misc{kusupati2024matryoshka,
    title={Matryoshka Representation Learning},
    author={Aditya Kusupati and Gantavya Bhatt and Aniket Rege and Matthew Wallingford and Aditya Sinha and Vivek Ramanujan and William Howard-Snyder and Kaifeng Chen and Sham Kakade and Prateek Jain and Ali Farhadi},
    year={2024},
    eprint={2205.13147},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}

CachedMultipleNegativesRankingLoss

@misc{gao2021scaling,
    title={Scaling Deep Contrastive Learning Batch Size under Memory Limited Setup},
    author={Luyu Gao and Yunyi Zhang and Jiawei Han and Jamie Callan},
    year={2021},
    eprint={2101.06983},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}
Downloads last month
18
Safetensors
Model size
2B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for whybe-choi/Qwen3-VL-Embedding-2B-ko-vdr-preview-v0.2

Finetuned
(6)
this model

Datasets used to train whybe-choi/Qwen3-VL-Embedding-2B-ko-vdr-preview-v0.2

Papers for whybe-choi/Qwen3-VL-Embedding-2B-ko-vdr-preview-v0.2

Evaluation results

  • Cosine Accuracy@1 on kovidore v2 cybersecurity beir eval
    self-reported
    0.711
  • Cosine Accuracy@3 on kovidore v2 cybersecurity beir eval
    self-reported
    0.913
  • Cosine Accuracy@5 on kovidore v2 cybersecurity beir eval
    self-reported
    0.940
  • Cosine Accuracy@10 on kovidore v2 cybersecurity beir eval
    self-reported
    0.987
  • Cosine Precision@1 on kovidore v2 cybersecurity beir eval
    self-reported
    0.711
  • Cosine Precision@3 on kovidore v2 cybersecurity beir eval
    self-reported
    0.472
  • Cosine Precision@5 on kovidore v2 cybersecurity beir eval
    self-reported
    0.350
  • Cosine Precision@10 on kovidore v2 cybersecurity beir eval
    self-reported
    0.211