CoolFace
Modelpublic

pankajrajdeo/UMLS-ED-Bioformer-16L-V-1.25-SpecialTokensUntrained

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

SentenceTransformer

This is a sentence-transformers model trained. It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • —Model Type: Sentence Transformer <!-- - Base model: Unknown -->
  • —Maximum Sequence Length: 1024 tokens
  • —Output Dimensionality: 384 tokens
  • —Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 1024, 'do_lower_case': False}) with Transformer model: BertModel 
  (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)

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("pankajrajdeo/937457_bioformer_16L")
# Run inference
sentences = [
    'E Vicotrat',
    'Eosine I Bluish, Dipotassium Salt',
    'C2742706',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]

# 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 Dataset

Unnamed Dataset
  • —Size: 187,491,593 training samples
  • —Columns: <code>anchor</code>, <code>positive</code>, <code>negativeid</code>, <code>positiveid</code>, and <code>negative</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | negativeid | positiveid | negative | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | string | string | string | | details | <ul><li>min: 3 tokens</li><li>mean: 13.27 tokens</li><li>max: 247 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 12.25 tokens</li><li>max: 157 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 6.27 tokens</li><li>max: 7 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 6.49 tokens</li><li>max: 7 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 13.53 tokens</li><li>max: 118 tokens</li></ul> |
  • —Samples: | anchor | positive | negativeid | positiveid | negative | |:----------------------------------------------|:------------------------------------------------------------------------------------------------|:----------------------|:----------------------|:------------------------------------------------------------------------------------------------| | <code>Zaburzenie metabolizmu minerałów</code> | <code>Distúrbio não especificado do metabolismo de minerais</code> | <code>C2887914</code> | <code>C0154260</code> | <code>Acute alcoholic hepatic failure</code> | | <code>testy funkčnosti placenty</code> | <code>Metoder som brukes til å vurdere morkakefunksjon.</code> | <code>C2350391</code> | <code>C0032049</code> | <code>Hjärtmuskelscintigrafi</code> | | <code>Tsefapiriin:Susc:Pt:Is:OrdQn</code> | <code>cefapirina:susceptibilidad:punto en el tiempo:cepa clínica:ordinal o cuantitativo:</code> | <code>C0942365</code> | <code>C0801894</code> | <code>2 proyecciones:hallazgo:punto en el tiempo:tobillo.izquierdo:Narrativo:radiografía</code> |
  • —Loss: <code>_main_.CustomTripletLoss</code> with these parameters:
json
  {
      "distance_metric": "TripletDistanceMetric.EUCLIDEAN",
      "triplet_margin": 5
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 50
  • —learning_rate: 2e-05
  • —num_train_epochs: 5
  • —warmup_ratio: 0.1
  • —fp16: 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: 50
  • —per_device_eval_batch_size: 8
  • —per_gpu_train_batch_size: None
  • —per_gpu_eval_batch_size: None
  • —gradient_accumulation_steps: 1
  • —eval_accumulation_steps: None
  • —torch_empty_cache_steps: None
  • —learning_rate: 2e-05
  • —weight_decay: 0.0
  • —adam_beta1: 0.9
  • —adam_beta2: 0.999
  • —adam_epsilon: 1e-08
  • —max_grad_norm: 1.0
  • —num_train_epochs: 5
  • —max_steps: -1
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: {}
  • —warmup_ratio: 0.1
  • —warmup_steps: 0
  • —log_level: passive
  • —log_level_replica: warning
  • —log_on_each_node: True
  • —logging_nan_inf_filter: True
  • —save_safetensors: True
  • —save_on_each_node: False
  • —save_only_model: False
  • —restore_callback_states_from_checkpoint: False
  • —no_cuda: False
  • —use_cpu: False
  • —use_mps_device: False
  • —seed: 42
  • —data_seed: None
  • —jit_mode_eval: False
  • —use_ipex: False
  • —bf16: False
  • —fp16: True
  • —fp16_opt_level: O1
  • —half_precision_backend: auto
  • —bf16_full_eval: False
  • —fp16_full_eval: False
  • —tf32: None
  • —local_rank: 0
  • —ddp_backend: None
  • —tpu_num_cores: None
  • —tpu_metrics_debug: False
  • —debug: []
  • —dataloader_drop_last: False
  • —dataloader_num_workers: 0
  • —dataloader_prefetch_factor: None
  • —past_index: -1
  • —disable_tqdm: False
  • —remove_unused_columns: True
  • —label_names: None
  • —load_best_model_at_end: False
  • —ignore_data_skip: False
  • —fsdp: []
  • —fsdp_min_num_params: 0
  • —fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • —fsdp_transformer_layer_cls_to_wrap: None
  • —accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • —deepspeed: None
  • —label_smoothing_factor: 0.0
  • —optim: adamw_torch
  • —optim_args: None
  • —adafactor: False
  • —group_by_length: False
  • —length_column_name: length
  • —ddp_find_unused_parameters: None
  • —ddp_bucket_cap_mb: None
  • —ddp_broadcast_buffers: False
  • —dataloader_pin_memory: True
  • —dataloader_persistent_workers: False
  • —skip_memory_metrics: True
  • —use_legacy_prediction_loop: False
  • —push_to_hub: False
  • —resume_from_checkpoint: None
  • —hub_model_id: None
  • —hub_strategy: every_save
  • —hub_private_repo: 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.000310001.0069
0.000520000.9728
0.000830000.9549
0.001140000.9217
0.001350000.9116
0.001660000.8662
0.001970000.8412
0.002180000.7979
0.002490000.7829
0.0027100000.7578
0.0029110000.7402
0.0032120000.7069
0.0035130000.6906
0.0037140000.6644
0.0040150000.6516
0.0043160000.6344
0.0045170000.6395
0.0048180000.6082
0.0051190000.5944
0.0053200000.5955
0.0056210000.576
0.0059220000.5723
0.0061230000.5475
0.0064240000.5452
0.0067250000.5485
0.0069260000.5143
0.0072270000.5062
0.0075280000.5118
0.0077290000.4992
0.0080300000.5031
0.0083310000.4762
0.0085320000.4773
0.0088330000.4742
0.0091340000.4692
0.0093350000.464
0.0096360000.4687
0.0099370000.4592
0.0101380000.4468
0.0104390000.4425
0.0107400000.4477
0.0109410000.4336
0.0112420000.4331
0.0115430000.4248
0.0117440000.4189
0.0120450000.4147
0.0123460000.4112
0.0125470000.4051
0.0128480000.399
0.0131490000.3921
0.0133500000.3917
0.0136510000.4058
0.0139520000.3843
0.0141530000.3811
0.0144540000.3733
0.0147550000.3787
0.0149560000.3859
0.0152570000.3742
0.0155580000.3682
0.0157590000.3705
0.0160600000.3483
0.0163610000.3469
0.0165620000.3586
0.0168630000.3346
0.0171640000.3474
0.0173650000.3625
0.0176660000.3501
0.0179670000.3456
0.0181680000.3383
0.0184690000.3457
0.0187700000.3437
0.0189710000.3395
0.0192720000.3399
0.0195730000.324
0.0197740000.338
0.0200750000.3268
0.0203760000.3298
0.0205770000.3282
0.0208780000.3356
0.0211790000.3187
0.0213800000.3155
0.0216810000.3181
0.0219820000.3085
0.0221830000.3168
0.0224840000.3162
0.0227850000.3126
0.0229860000.3026
0.0232870000.3017
0.0235880000.2963
0.0237890000.3002
0.0240900000.297
0.0243910000.2993
0.0245920000.306
0.0248930000.2964
0.0251940000.2992
0.0253950000.2921
0.0256960000.3103
0.0259970000.2897
0.0261980000.2843
0.0264990000.2914
0.02671000000.2952
0.02691010000.2922
0.02721020000.2807
0.02751030000.2797
0.02771040000.2849
0.02801050000.2959
0.02831060000.2823
0.02851070000.2637
0.02881080000.2804
0.02911090000.2761
0.02931100000.2821
0.02961110000.2876
0.02991120000.2699
0.03011130000.2758
0.03041140000.2802
0.03071150000.2689
0.03091160000.2871
0.03121170000.2603
0.03151180000.2728
0.03171190000.2769
0.03201200000.2527
0.03231210000.2677
0.03251220000.2748
0.03281230000.2648
0.03311240000.2645
0.03331250000.2637
0.03361260000.2613
0.03391270000.261
0.03411280000.2568
0.03441290000.2611
0.03471300000.2486
0.03491310000.2535
0.03521320000.2525
0.03551330000.2457
0.03571340000.2545
0.03601350000.2596
0.03631360000.2505
0.03651370000.2454
0.03681380000.2696
0.03711390000.2567
0.03731400000.2517
0.03761410000.2436
0.03791420000.2452
0.03811430000.2427
0.03841440000.2525
0.03871450000.243
0.03891460000.2417
0.03921470000.2599
0.03951480000.246
0.03971490000.2379
0.04001500000.2449
0.04031510000.2333
0.04051520000.2399
0.04081530000.2409
0.04111540000.2407
0.04131550000.2369
0.04161560000.2361
0.04191570000.2331
0.04211580000.232
0.04241590000.2337
0.04271600000.2331
0.04291610000.2328
0.04321620000.2278
0.04351630000.2335
0.04371640000.2301
0.04401650000.2381
0.04431660000.2298
0.04451670000.2355
0.04481680000.2254
0.04511690000.2301
0.04531700000.2319
0.04561710000.2314
0.04591720000.236
0.04611730000.2348
0.04641740000.231
0.04671750000.2291
0.04691760000.2246
0.04721770000.2259
0.04751780000.2254
0.04771790000.2223
0.04801800000.2285
0.04831810000.2306
0.04851820000.2233
0.04881830000.2117
0.04911840000.2219
0.04931850000.2226
0.04961860000.2161
0.04991870000.2195
0.05011880000.2208
0.05041890000.2198
0.05071900000.2236
0.05091910000.2178
0.05121920000.2087
0.05151930000.2222
0.05171940000.211
0.05201950000.2287
0.05231960000.2219
0.05251970000.2096
0.05281980000.2112
0.05311990000.2108
0.05332000000.2098
0.05362010000.2176
0.05392020000.2118
0.05412030000.2248
0.05442040000.2124
0.05472050000.2133
0.05492060000.2101
0.05522070000.208
0.05552080000.2129
0.05572090000.208
0.05602100000.2093
0.05632110000.2123
0.05652120000.205
0.05682130000.2012
0.05712140000.2078
0.05732150000.2107
0.05762160000.206
0.05792170000.2055
0.05812180000.2067
0.05842190000.2143
0.05872200000.204
0.05892210000.2071
0.05922220000.2026
0.05952230000.1994
0.05972240000.2045
0.06002250000.2155
0.06032260000.2075
0.06052270000.195
0.06082280000.2028
0.06112290000.1973
0.06132300000.2034
0.06162310000.2039
0.06192320000.1937
0.06212330000.2
0.06242340000.1958
0.06272350000.1986
0.06292360000.1975
0.06322370000.2061
0.06352380000.2021
0.06372390000.1957
0.06402400000.1997
0.06432410000.1968
0.06452420000.1881
0.06482430000.2038
0.06512440000.1991
0.06532450000.1841
0.06562460000.1919
0.06592470000.187
0.06612480000.1889
0.06642490000.1987
0.06672500000.1992
0.06692510000.1913
0.06722520000.1995
0.06752530000.1875
0.06772540000.1923
0.06802550000.1773
0.06832560000.1869
0.06852570000.1975
0.06882580000.1865
0.06912590000.1889
0.06932600000.1896
0.06962610000.1829
0.06992620000.1843
0.07012630000.195
0.07042640000.1818
0.07072650000.1855
0.07092660000.1841
0.07122670000.1889
0.07152680000.1814
0.07172690000.1917
0.07202700000.1862
0.07232710000.1869
0.07252720000.1859
0.07282730000.182
0.07312740000.1896
0.07332750000.1936
0.07362760000.1846
0.07392770000.18
0.07412780000.1812
0.07442790000.1859
0.07472800000.1785
0.07492810000.1806
0.07522820000.182
0.07552830000.1848
0.07572840000.1798
0.07602850000.1853
0.07632860000.1834
0.07652870000.1815
0.07682880000.1819
0.07712890000.1808
0.07732900000.1851
0.07762910000.1823
0.07792920000.179
0.07812930000.1825
0.07842940000.1751
0.07872950000.1778
0.07892960000.1773
0.07922970000.1795
0.07952980000.1854
0.07972990000.1818
0.08003000000.1734
0.08033010000.1787
0.08053020000.1807
0.08083030000.1817
0.08113040000.1722
0.08133050000.1762
0.08163060000.1741
0.08193070000.1754
0.08213080000.1713
0.08243090000.1724
0.08273100000.1745
0.08293110000.1774
0.08323120000.1763
0.08353130000.1768
0.08373140000.1717
0.08403150000.1692
0.08433160000.1721
0.08453170000.1673
0.08483180000.1762
0.08513190000.1784
0.08533200000.1697
0.08563210000.172
0.08593220000.1658
0.08613230000.1761
0.08643240000.1729
0.08673250000.1672
0.08693260000.1671
0.08723270000.1685
0.08753280000.1729
0.08773290000.166
0.08803300000.1712
0.08833310000.1737
0.08853320000.1723
0.08883330000.1705
0.08913340000.1718
0.08933350000.1689
0.08963360000.1747
0.08993370000.1696
0.09013380000.1712
0.09043390000.1674
0.09073400000.1709
0.09093410000.169
0.09123420000.1714
0.09153430000.1544
0.09173440000.1755
0.09203450000.1689
0.09233460000.1561
0.09253470000.1712
0.09283480000.1583
0.09313490000.159
0.09333500000.1715
0.09363510000.1608
0.09393520000.1703
0.09413530000.1682
0.09443540000.1622
0.09473550000.1663
0.09493560000.1632
0.09523570000.1663
0.09553580000.1643
0.09573590000.1674
0.09603600000.1634
0.09633610000.1616
0.09653620000.1691
0.09683630000.1594
0.09713640000.1589
0.09733650000.1568
0.09763660000.1586
0.09793670000.1555
0.09813680000.161
0.09843690000.1615
0.09873700000.1691
0.09893710000.151
0.09923720000.1653
0.09953730000.1545
0.09973740000.1627
0.10003750000.1688
0.10033760000.1594
0.10053770000.1619
0.10083780000.1517
0.10113790000.1605
0.10133800000.1576
0.10163810000.1589
0.10193820000.1643
0.10213830000.164
0.10243840000.158
0.10273850000.1584
0.10293860000.1565
0.10323870000.1566
0.10353880000.1625
0.10373890000.1569
0.10403900000.159
0.10433910000.1541
0.10453920000.159
0.10483930000.1536
0.10513940000.166
0.10533950000.1639
0.10563960000.1491
0.10593970000.1567
0.10613980000.1566
0.10643990000.1641
0.10674000000.1552
0.10694010000.1476
0.10724020000.157
0.10754030000.1538
0.10774040000.152
0.10804050000.1525
0.10834060000.155
0.10854070000.1538
0.10884080000.1506
0.10914090000.1481
0.10934100000.1603
0.10964110000.1509
0.10994120000.1628
0.11014130000.151
0.11044140000.1581
0.11074150000.1511
0.11094160000.1552
0.11124170000.1553
0.11154180000.1508
0.11174190000.1515
0.11204200000.1526
0.11234210000.15
0.11254220000.1497
0.11284230000.1526
0.11314240000.1547
0.11334250000.151
0.11364260000.1471
0.11394270000.1576
0.11414280000.1522
0.11444290000.1506
0.11474300000.1495
0.11494310000.1518
0.11524320000.1467
0.11554330000.1511
0.11574340000.1516
0.11604350000.1476
0.11634360000.1526
0.11654370000.1474
0.11684380000.1445
0.11714390000.1408
0.11734400000.1412
0.11764410000.1445
0.11794420000.145
0.11814430000.1402
0.11844440000.154
0.11874450000.1446
0.11894460000.1476
0.11924470000.1565
0.11954480000.1409
0.11974490000.1511
0.12004500000.139
0.12034510000.1463
0.12054520000.1453
0.12084530000.1432
0.12114540000.1559
0.12134550000.1354
0.12164560000.1419
0.12194570000.1452
0.12214580000.147
0.12244590000.1453
0.12274600000.153
0.12294610000.1496
0.12324620000.1464
0.12354630000.1423
0.12374640000.1403
0.12404650000.1458
0.12434660000.1508
0.12454670000.1442
0.12484680000.1521
0.12514690000.1424
0.12534700000.1545
0.12564710000.1389
0.12594720000.1408
0.12614730000.1398
0.12644740000.1333
0.12674750000.1436
0.12694760000.1423
0.12724770000.1393
0.12754780000.1465
0.12774790000.1484
0.12804800000.1412
0.12834810000.143
0.12854820000.139
0.12884830000.1447
0.12914840000.1388
0.12934850000.1414
0.12964860000.1444
0.12994870000.1365
0.13014880000.1403
0.13044890000.1398
0.13074900000.1302
0.13094910000.1443
0.13124920000.1402
0.13154930000.1451
0.13174940000.1397
0.13204950000.137
0.13234960000.1493
0.13254970000.1415
0.13284980000.1365
0.13314990000.1323
0.13335000000.1384
0.13365010000.1307
0.13395020000.1385
0.13415030000.1394
0.13445040000.1393
0.13475050000.1455
0.13495060000.1374
0.13525070000.1381
0.13555080000.1363
0.13575090000.1392
0.13605100000.1399
0.13635110000.1356
0.13655120000.1395
0.13685130000.1402
0.13715140000.1382
0.13735150000.1408
0.13765160000.1398
0.13795170000.1405
0.13815180000.1351
0.13845190000.1371
0.13875200000.1302
0.13895210000.14
0.13925220000.1363
0.13955230000.1313
0.13975240000.1299
0.14005250000.1372
0.14035260000.1416
0.14055270000.1295
0.14085280000.1359
0.14115290000.1383
0.14135300000.1378
0.14165310000.135
0.14195320000.1405
0.14215330000.14
0.14245340000.1321
0.14275350000.1303
0.14295360000.1319
0.14325370000.1312
0.14355380000.1338
0.14375390000.1361
0.14405400000.139
0.14435410000.1364
0.14455420000.1316
0.14485430000.1331
0.14515440000.1269
0.14535450000.1294
0.14565460000.135
0.14595470000.1328
0.14615480000.1296
0.14645490000.1305
0.14675500000.1334
0.14695510000.1362
0.14725520000.1318
0.14755530000.1312
0.14775540000.1293
0.14805550000.1324
0.14835560000.1256
0.14855570000.1227
0.14885580000.1239
0.14915590000.1287
0.14935600000.1307
0.14965610000.1336
0.14995620000.133
0.15015630000.1278
0.15045640000.1339
0.15075650000.1321
0.15095660000.1322
0.15125670000.1262
0.15155680000.1331
0.15175690000.1361
0.15205700000.1307
0.15235710000.133
0.15255720000.1293
0.15285730000.1283
0.15315740000.1275
0.15335750000.1329
0.15365760000.1307
0.15395770000.1245
0.15415780000.1313
0.15445790000.1256
0.15475800000.1257
0.15495810000.1194
0.15525820000.125
0.15555830000.1345
0.15575840000.1308
0.15605850000.1318
0.15635860000.1348
0.15655870000.1231
0.15685880000.1282
0.15715890000.1281
0.15735900000.1221
0.15765910000.1234
0.15795920000.1334
0.15815930000.1249
0.15845940000.1216
0.15875950000.1295
0.15895960000.1191
0.15925970000.1267
0.15955980000.1273
0.15975990000.124
0.16006000000.1271
0.16036010000.1284
0.16056020000.1285
0.16086030000.1288
0.16116040000.1252
0.16136050000.1255
0.16166060000.1289
0.16196070000.1294
0.16216080000.1294
0.16246090000.1288
0.16276100000.1336
0.16296110000.125
0.16326120000.1288
0.16356130000.122
0.16376140000.1204
0.16406150000.1245
0.16436160000.1303
0.16456170000.1187
0.16486180000.1223
0.16516190000.1311
0.16536200000.1202
0.16566210000.1271
0.16596220000.1218
0.16616230000.1218
0.16646240000.1247
0.16676250000.1289
0.16696260000.1261
0.16726270000.1262
0.16756280000.1251
0.16776290000.1271
0.16806300000.1243
0.16836310000.1266
0.16856320000.1257
0.16886330000.1215
0.16916340000.1236
0.16936350000.1267
0.16966360000.1209
0.16996370000.1188
0.17016380000.1267
0.17046390000.1259
0.17076400000.1225
0.17096410000.1183
0.17126420000.1202
0.17156430000.1279
0.17176440000.1191
0.17206450000.1206
0.17236460000.1178
0.17256470000.1234
0.17286480000.1259
0.17316490000.1227
0.17336500000.1211
0.17366510000.1216
0.17396520000.1182
0.17416530000.1205
0.17446540000.1187
0.17476550000.1144
0.17496560000.1216
0.17526570000.1287
0.17556580000.122
0.17576590000.1213
0.17606600000.1217
0.17636610000.1256
0.17656620000.1227
0.17686630000.1219
0.17716640000.1261
0.17736650000.1169
0.17766660000.1192
0.17796670000.1187
0.17816680000.1117
0.17846690000.1189
0.17876700000.12
0.17896710000.1204
0.17926720000.1208
0.17956730000.119
0.17976740000.1161
0.18006750000.1167
0.18036760000.1235
0.18056770000.1276
0.18086780000.1188
0.18116790000.1135
0.18136800000.1187
0.18166810000.1165
0.18196820000.1224
0.18216830000.125
0.18246840000.1146
0.18276850000.1162
0.18296860000.1172
0.18326870000.1197
0.18356880000.113
0.18376890000.1216
0.18406900000.1144
0.18436910000.1274
0.18456920000.1136
0.18486930000.1202
0.18516940000.1249
0.18536950000.1195
0.18566960000.1158
0.18596970000.1145
0.18616980000.1187
0.18646990000.1173
0.18677000000.1181
0.18697010000.1236
0.18727020000.1223
0.18757030000.1147
0.18777040000.1197
0.18807050000.1125
0.18837060000.1175
0.18857070000.1239
0.18887080000.1263
0.18917090000.1229
0.18937100000.1202
0.18967110000.1159
0.18997120000.1232
0.19017130000.1197
0.19047140000.121
0.19077150000.1189
0.19097160000.1183
0.19127170000.1091
0.19157180000.1186
0.19177190000.115
0.19207200000.1146
0.19237210000.1165
0.19257220000.1192
0.19287230000.1163
0.19317240000.1162
0.19337250000.1156
0.19367260000.1218
0.19397270000.1154
0.19417280000.1131
0.19447290000.118
0.19477300000.1156
0.19497310000.1193
0.19527320000.1143
0.19557330000.1211
0.19577340000.1187
0.19607350000.12
0.19637360000.1164
0.19657370000.1173
0.19687380000.1151
0.19717390000.1143
0.19737400000.1141
0.19767410000.1174
0.19797420000.1185
0.19817430000.1133
0.19847440000.1174
0.19877450000.1154
0.19897460000.1138
0.19927470000.1203
0.19957480000.1119
0.19977490000.111
0.20007500000.1174
0.20037510000.1204
0.20057520000.1177
0.20087530000.1139
0.20117540000.1138
0.20137550000.1179
0.20167560000.1094
0.20197570000.1092
0.20217580000.1108
0.20247590000.1125
0.20277600000.1202
0.20297610000.1119
0.20327620000.1151
0.20357630000.1169
0.20377640000.1109
0.20407650000.1112
0.20437660000.1102
0.20457670000.119
0.20487680000.1131
0.20517690000.1155
0.20537700000.1133
0.20567710000.1127
0.20597720000.1116
0.20617730000.1122
0.20647740000.1151
0.20677750000.1163
0.20697760000.1162
0.20727770000.1096
0.20757780000.1151
0.20777790000.1156
0.20807800000.1135
0.20837810000.1084
0.20857820000.114
0.20887830000.1128
0.20917840000.1142
0.20937850000.1092
0.20967860000.1067
0.20997870000.1156
0.21017880000.1094
0.21047890000.1078
0.21077900000.1133
0.21097910000.1165
0.21127920000.1116
0.21157930000.1111
0.21177940000.1086
0.21207950000.1114
0.21237960000.1069
0.21257970000.1094
0.21287980000.1125
0.21317990000.112
0.21338000000.1107
0.21368010000.1085
0.21398020000.1067
0.21418030000.1149
0.21448040000.1068
0.21478050000.1124
0.21498060000.1109
0.21528070000.1094
0.21558080000.1097
0.21578090000.1106
0.21608100000.1152
0.21638110000.1123
0.21658120000.1102
0.21688130000.11
0.21718140000.1
0.21738150000.1127
0.21768160000.1135
0.21798170000.1127
0.21818180000.108
0.21848190000.1119
0.21878200000.1103
0.21898210000.1084
0.21928220000.1076
0.21958230000.1145
0.21978240000.109
0.22008250000.1119
0.22038260000.1117
0.22058270000.1117
0.22088280000.1062
0.22118290000.1113
0.22138300000.1101
0.22168310000.1053
0.22198320000.1122
0.22218330000.1091
0.22248340000.1106
0.22278350000.1062
0.22298360000.1091
0.22328370000.1144
0.22358380000.1106
0.22378390000.1058
0.22408400000.1085
0.22438410000.1154
0.22458420000.1096
0.22488430000.1062
0.22518440000.1089
0.22538450000.108
0.22568460000.1086
0.22598470000.1084
0.22618480000.1056
0.22648490000.1042
0.22678500000.1204
0.22698510000.1053
0.22728520000.1053
0.22758530000.1065
0.22778540000.1157
0.22808550000.1112
0.22838560000.1058
0.22858570000.1084
0.22888580000.1066
0.22918590000.1116
0.22938600000.1047
0.22968610000.1145
0.22998620000.1094
0.23018630000.1108
0.23048640000.1038
0.23078650000.1044
0.23098660000.106
0.23128670000.105
0.23158680000.108
0.23178690000.1108
0.23208700000.113
0.23238710000.108
0.23258720000.1069
0.23288730000.1098
0.23318740000.1021
0.23338750000.109
0.23368760000.1104
0.23398770000.1043
0.23418780000.1057
0.23448790000.105
0.23478800000.1042
0.23498810000.1116
0.23528820000.1151
0.23558830000.1043
0.23578840000.1023
0.23608850000.1084
0.23638860000.1103
0.23658870000.1028
0.23688880000.1055
0.23718890000.1023
0.23738900000.1099
0.23768910000.1037
0.23798920000.1068
0.23818930000.1128
0.23848940000.1023
0.23878950000.1023
0.23898960000.106
0.23928970000.1005
0.23958980000.1013
0.23978990000.1131
0.24009000000.107
0.24039010000.1096
0.24059020000.0963
0.24089030000.1076
0.24119040000.102
0.24139050000.1147
0.24169060000.1111
0.24199070000.1035
0.24219080000.1059
0.24249090000.1037
0.24279100000.1047
0.24299110000.1049
0.24329120000.1097
0.24359130000.1062
0.24379140000.1016
0.24409150000.1061
0.24439160000.1089
0.24459170000.1032
0.24489180000.1053
0.24519190000.1075
0.24539200000.1048
0.24569210000.1007
0.24599220000.11
0.24619230000.1034
0.24649240000.1059
0.24679250000.1063
0.24699260000.1051
0.24729270000.1064
0.24759280000.0986
0.24779290000.1037
0.24809300000.1093
0.24839310000.102
0.24859320000.0985
0.24889330000.1023
0.24919340000.104
0.24939350000.1108
0.24969360000.1061
0.24999370000.1053

</details>

Framework Versions

  • —Python: 3.12.2
  • —Sentence Transformers: 3.2.1
  • —Transformers: 4.45.2
  • —PyTorch: 2.5.0
  • —Accelerate: 1.0.1
  • —Datasets: 3.0.1
  • —Tokenizers: 0.20.1

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",
}
CustomTripletLoss
bibtex
@misc{hermans2017defense,
    title={In Defense of the Triplet Loss for Person Re-Identification},
    author={Alexander Hermans and Lucas Beyer and Bastian Leibe},
    year={2017},
    eprint={1703.07737},
    archivePrefix={arXiv},
    primaryClass={cs.CV}
}

<!--

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