CoolFace
Modelpublic

Jimmy-Ooi/TTM_1239_12_15_0.0001_AdamW

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes22downloads
Model Card

SentenceTransformer based on google-bert/bert-base-cased

This is a sentence-transformers model finetuned from google-bert/bert-base-cased on the csv dataset. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • —Model Type: Sentence Transformer
  • —Base model: google-bert/bert-base-cased <!-- at revision cd5ef92a9fb2f889e972770a36d4ed042daf221e -->
  • —Maximum Sequence Length: 512 tokens
  • —Output Dimensionality: 768 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —csv <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False, 'architecture': 'BertModel'})
  (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

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("Jimmy-Ooi/TTM_1239_12_15_0.0001_AdamW")
# Run inference
sentences = [
    'OCc1ccc(Nc2nc(-c3ccc(O)cc3O)cs2)cc1',
    'COCCOCCOc1ccc(C=C2C(=O)NC(=S)NC2=O)cc1',
    'CCCCC(=O)NC(=S)Nc1ccc([N+](=O)[O-])cc1[N+](=O)[O-]',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000, -0.7951,  0.7088],
#         [-0.7951,  1.0000, -0.2010],
#         [ 0.7088, -0.2010,  1.0000]])

<!--

Direct Usage (Transformers)

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

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

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

</details> -->

<!--

Out-of-Scope Use

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

<!--

Bias, Risks and Limitations

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

<!--

Recommendations

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

Training Details

Training Dataset

csv
  • —Dataset: csv
  • —Size: 286,816 training samples
  • —Columns: <code>premise</code>, <code>hypothesis</code>, and <code>label</code>
  • —Approximate statistics based on the first 1000 samples: | | premise | hypothesis | label | |:--------|:-----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:------------------------------------------------| | type | string | string | int | | details | <ul><li>min: 10 tokens</li><li>mean: 37.2 tokens</li><li>max: 213 tokens</li></ul> | <ul><li>min: 8 tokens</li><li>mean: 37.9 tokens</li><li>max: 213 tokens</li></ul> | <ul><li>0: ~47.80%</li><li>2: ~52.20%</li></ul> |
  • —Samples: | premise | hypothesis | label | |:-------------------------------------------------------|:-----------------------------------------------------------------------------------------------|:---------------| | <code>O=C1/C(=C/c2ccc(O)cc2O)Oc2cccc(O)c21</code> | <code>COc1c(O)cc2c(c1O)[C@@H]1OC@Hc3ccc(O)c(O)c3)C@@HC@H[C@H]1OC2=O</code> | <code>0</code> | | <code>COc1cc(C2CC(c3ccccc3O)=NN2C(C)=O)ccc1O</code> | <code>COc1cc(C=O)ccc1OC(=O)COC(=O)c1ccc(O)cc1O</code> | <code>2</code> | | <code>Cc1nnc(SCc2cc(=O)c(O)co2)n1NCc1ccc(O)cc1O</code> | <code>O=C1/C(=C/c2ccc(O)cc2O)Oc2cc(O)ccc21</code> | <code>2</code> |
  • —Loss: <code>SoftmaxLoss</code>

Evaluation Dataset

csv
  • —Dataset: csv
  • —Size: 50,615 evaluation samples
  • —Columns: <code>premise</code>, <code>hypothesis</code>, and <code>label</code>
  • —Approximate statistics based on the first 1000 samples: | | premise | hypothesis | label | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|:------------------------------------------------| | type | string | string | int | | details | <ul><li>min: 8 tokens</li><li>mean: 37.07 tokens</li><li>max: 213 tokens</li></ul> | <ul><li>min: 8 tokens</li><li>mean: 38.08 tokens</li><li>max: 213 tokens</li></ul> | <ul><li>0: ~51.20%</li><li>2: ~48.80%</li></ul> |
  • —Samples: | premise | hypothesis | label | |:-----------------------------------------------|:-----------------------------------------------------------|:---------------| | <code>C/C(=N/NC(N)=S)c1c(O)cc(O)cc1O</code> | <code>O=C(CCc1ccc(O)c(O)c1)c1c(O)cc(O)cc1O</code> | <code>0</code> | | <code>O=C(NO)Nc1ccc(C(F)(F)F)cc1</code> | <code>NC(=O)C@HNC(=O)OCc1cc(=O)c(O)co1</code> | <code>2</code> | | <code>O=C1/C(=C/c2ccc(O)cc2O)Sc2ccccc21</code> | <code>O=C(O)CSc1nnc(NC(=S)Nc2ccccc2)s1</code> | <code>0</code> |
  • —Loss: <code>SoftmaxLoss</code>

Training Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 64
  • —num_train_epochs: 15
  • —warmup_steps: 100
  • —optim: adamw_torch
  • —weight_decay: 0.0001
  • —fp16: True
  • —per_device_eval_batch_size: 64
All Hyperparameters

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

  • —per_device_train_batch_size: 64
  • —num_train_epochs: 15
  • —max_steps: -1
  • —learning_rate: 5e-05
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: None
  • —warmup_steps: 100
  • —optim: adamw_torch
  • —optim_args: None
  • —weight_decay: 0.0001
  • —adam_beta1: 0.9
  • —adam_beta2: 0.999
  • —adam_epsilon: 1e-08
  • —optim_target_modules: None
  • —gradient_accumulation_steps: 1
  • —average_tokens_across_devices: True
  • —max_grad_norm: 1.0
  • —label_smoothing_factor: 0.0
  • —bf16: False
  • —fp16: True
  • —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
  • —eval_strategy: no
  • —per_device_eval_batch_size: 64
  • —prediction_loss_only: True
  • —eval_on_start: False
  • —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: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • —parallelism_config: None
  • —dataloader_drop_last: False
  • —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: None
  • —ddp_bucket_cap_mb: None
  • —ddp_broadcast_buffers: False
  • —ddp_backend: None
  • —ddp_timeout: 1800
  • —fsdp: []
  • —fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_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: batch_sampler
  • —multi_dataset_batch_sampler: proportional
  • —router_mapping: {}
  • —learning_rate_mapping: {}

</details>

Training Logs

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

EpochStepTraining Loss
0.02231000.9820
0.04462000.7030
0.06693000.6761
0.08924000.6581
0.11165000.6349
0.13396000.6181
0.15627000.6114
0.17858000.6001
0.20089000.5923
0.223110000.5960
0.245411000.5885
0.267712000.5753
0.290013000.5852
0.312414000.5775
0.334715000.5811
0.357016000.5691
0.379317000.5682
0.401618000.5641
0.423919000.5604
0.446220000.5557
0.468521000.5568
0.490922000.5637
0.513223000.5603
0.535524000.5576
0.557825000.5473
0.580126000.5575
0.602427000.5502
0.624728000.5451
0.647029000.5631
0.669330000.5379
0.691731000.5405
0.714032000.5511
0.736333000.5461
0.758634000.5551
0.780935000.5523
0.803236000.5433
0.825537000.5416
0.847838000.5385
0.870139000.5408
0.892540000.5419
0.914841000.5310
0.937142000.5338
0.959443000.5357
0.981744000.5400
1.004045000.5233
1.026346000.5353
1.048647000.5383
1.071048000.5437
1.093349000.5303
1.115650000.5346
1.137951000.5373
1.160252000.5202
1.182553000.5316
1.204854000.5288
1.227155000.5324
1.249456000.5335
1.271857000.5210
1.294158000.5249
1.316459000.5282
1.338760000.5265
1.361061000.5200
1.383362000.5188
1.405663000.5239
1.427964000.5343
1.450265000.5242
1.472666000.5270
1.494967000.5232
1.517268000.5316
1.539569000.5234
1.561870000.5171
1.584171000.5178
1.606472000.5229
1.628773000.5188
1.651074000.5295
1.673475000.5222
1.695776000.5206
1.718077000.5174
1.740378000.5205
1.762679000.5212
1.784980000.5213
1.807281000.5259
1.829582000.5233
1.851983000.5208
1.874284000.5220
1.896585000.5286
1.918886000.5255
1.941187000.5178
1.963488000.5143
1.985789000.5234
2.008090000.5173
2.030391000.5237
2.052792000.5268
2.075093000.5175
2.097394000.5199
2.119695000.5228
2.141996000.5186
2.164297000.5162
2.186598000.5238
2.208899000.5285
2.2311100000.5246
2.2535101000.5115
2.2758102000.5097
2.2981103000.5199
2.3204104000.5185
2.3427105000.5145
2.3650106000.5133
2.3873107000.5179
2.4096108000.5202
2.4320109000.5135
2.4543110000.5227
2.4766111000.5087
2.4989112000.5127
2.5212113000.5127
2.5435114000.5119
2.5658115000.5053
2.5881116000.5150
2.6104117000.5107
2.6328118000.5120
2.6551119000.5052
2.6774120000.5119
2.6997121000.5163
2.7220122000.5116
2.7443123000.5065
2.7666124000.5132
2.7889125000.5069
2.8112126000.5120
2.8336127000.5048
2.8559128000.5064
2.8782129000.5076
2.9005130000.5119
2.9228131000.5121
2.9451132000.5077
2.9674133000.5169
2.9897134000.5102
3.0120135000.5123
3.0344136000.5109
3.0567137000.5097
3.0790138000.5104
3.1013139000.5068
3.1236140000.5050
3.1459141000.5125
3.1682142000.5061
3.1905143000.5133
3.2129144000.5150
3.2352145000.5162
3.2575146000.5035
3.2798147000.5049
3.3021148000.5044
3.3244149000.5264
3.3467150000.5140
3.3690151000.5096
3.3913152000.5183
3.4137153000.5138
3.4360154000.5143
3.4583155000.5078
3.4806156000.5142
3.5029157000.5166
3.5252158000.4992
3.5475159000.5099
3.5698160000.5023
3.5921161000.4989
3.6145162000.5251
3.6368163000.5076
3.6591164000.5055
3.6814165000.4979
3.7037166000.4928
3.7260167000.5089
3.7483168000.5190
3.7706169000.5068
3.7929170000.5103
3.8153171000.5104
3.8376172000.5145
3.8599173000.5001
3.8822174000.5027
3.9045175000.4983
3.9268176000.5072
3.9491177000.5078
3.9714178000.4996
3.9938179000.5097
4.0161180000.4975
4.0384181000.4970
4.0607182000.4951
4.0830183000.5018
4.1053184000.5034
4.1276185000.5026
4.1499186000.4964
4.1722187000.5183
4.1946188000.5025
4.2169189000.5115
4.2392190000.5100
4.2615191000.5052
4.2838192000.5108
4.3061193000.5144
4.3284194000.5000
4.3507195000.5092
4.3730196000.5068
4.3954197000.5025
4.4177198000.5036
4.4400199000.5043
4.4623200000.5078
4.4846201000.4958
4.5069202000.5131
4.5292203000.5137
4.5515204000.5164
4.5739205000.5020
4.5962206000.5120
4.6185207000.5097
4.6408208000.5008
4.6631209000.5018
4.6854210000.5012
4.7077211000.5151
4.7300212000.5099
4.7523213000.4916
4.7747214000.5069
4.7970215000.5066
4.8193216000.5105
4.8416217000.5074
4.8639218000.5007
4.8862219000.5007
4.9085220000.5094
4.9308221000.5111
4.9531222000.5032
4.9755223000.5076
4.9978224000.5055
5.0201225000.5074
5.0424226000.4981
5.0647227000.5011
5.0870228000.5052
5.1093229000.5083
5.1316230000.4958
5.1539231000.5082
5.1763232000.5011
5.1986233000.5055
5.2209234000.5063
5.2432235000.5023
5.2655236000.5055
5.2878237000.5015
5.3101238000.5101
5.3324239000.5005
5.3548240000.5009
5.3771241000.4987
5.3994242000.5100
5.4217243000.5012
5.4440244000.4957
5.4663245000.4984
5.4886246000.5085
5.5109247000.4949
5.5332248000.4926
5.5556249000.4951
5.5779250000.5027
5.6002251000.4916
5.6225252000.4935
5.6448253000.4979
5.6671254000.4962
5.6894255000.5057
5.7117256000.5107
5.7340257000.4998
5.7564258000.5107
5.7787259000.5023
5.8010260000.5017
5.8233261000.5060
5.8456262000.5086
5.8679263000.5104
5.8902264000.5002
5.9125265000.4973
5.9349266000.5010
5.9572267000.4862
5.9795268000.5028
6.0018269000.4953
6.0241270000.4953
6.0464271000.4987
6.0687272000.5099
6.0910273000.5003
6.1133274000.5031
6.1357275000.5106
6.1580276000.5108
6.1803277000.5048
6.2026278000.4974
6.2249279000.5042
6.2472280000.4944
6.2695281000.4969
6.2918282000.5005
6.3141283000.4979
6.3365284000.4997
6.3588285000.4852
6.3811286000.5046
6.4034287000.4937
6.4257288000.4928
6.4480289000.4923
6.4703290000.4957
6.4926291000.4989
6.5149292000.5025
6.5373293000.4977
6.5596294000.4978
6.5819295000.4977
6.6042296000.5073
6.6265297000.5017
6.6488298000.5113
6.6711299000.4922
6.6934300000.4993
6.7158301000.4952
6.7381302000.4977
6.7604303000.5070
6.7827304000.5040
6.8050305000.4986
6.8273306000.4985
6.8496307000.4967
6.8719308000.4981
6.8942309000.4957
6.9166310000.4914
6.9389311000.4989
6.9612312000.4925
6.9835313000.4955
7.0058314000.4988
7.0281315000.4977
7.0504316000.4970
7.0727317000.5045
7.0950318000.5035
7.1174319000.4930
7.1397320000.5134
7.1620321000.5013
7.1843322000.5013
7.2066323000.4972
7.2289324000.4869
7.2512325000.4938
7.2735326000.4895
7.2959327000.5041
7.3182328000.4976
7.3405329000.4942
7.3628330000.5030
7.3851331000.4962
7.4074332000.5038
7.4297333000.4972
7.4520334000.5018
7.4743335000.5004
7.4967336000.4917
7.5190337000.4969
7.5413338000.5019
7.5636339000.4998
7.5859340000.4919
7.6082341000.5016
7.6305342000.5066
7.6528343000.4945
7.6751344000.4969
7.6975345000.4972
7.7198346000.4908
7.7421347000.5023
7.7644348000.4975
7.7867349000.4966
7.8090350000.5028
7.8313351000.4913
7.8536352000.4973
7.8759353000.5046
7.8983354000.4990
7.9206355000.4830
7.9429356000.4990
7.9652357000.4943
7.9875358000.4927
8.0098359000.4952
8.0321360000.4918
8.0544361000.4933
8.0768362000.4987
8.0991363000.4951
8.1214364000.5015
8.1437365000.5019
8.1660366000.4948
8.1883367000.4961
8.2106368000.4905
8.2329369000.5006
8.2552370000.4941
8.2776371000.5013
8.2999372000.4986
8.3222373000.4984
8.3445374000.4916
8.3668375000.4888
8.3891376000.4887
8.4114377000.4957
8.4337378000.4892
8.4560379000.4998
8.4784380000.4926
8.5007381000.4909
8.5230382000.4937
8.5453383000.4963
8.5676384000.5019
8.5899385000.4903
8.6122386000.4858
8.6345387000.4993
8.6568388000.5100
8.6792389000.5023
8.7015390000.4864
8.7238391000.5138
8.7461392000.5029
8.7684393000.5029
8.7907394000.4978
8.8130395000.5111
8.8353396000.4925
8.8577397000.4878
8.8800398000.4860
8.9023399000.4855
8.9246400000.4951
8.9469401000.5013
8.9692402000.4878
8.9915403000.4937
9.0138404000.4996
9.0361405000.4865
9.0585406000.4911
9.0808407000.4897
9.1031408000.4875
9.1254409000.4932
9.1477410000.4933
9.1700411000.4962
9.1923412000.4918
9.2146413000.5016
9.2369414000.4926
9.2593415000.4955
9.2816416000.4973
9.3039417000.4972
9.3262418000.4978
9.3485419000.4988
9.3708420000.4972
9.3931421000.4855
9.4154422000.4963
9.4378423000.4956
9.4601424000.4855
9.4824425000.4935
9.5047426000.4935
9.5270427000.4941
9.5493428000.4993
9.5716429000.4998
9.5939430000.4897
9.6162431000.4927
9.6386432000.5050
9.6609433000.5053
9.6832434000.4973
9.7055435000.4896
9.7278436000.4914
9.7501437000.4970
9.7724438000.4954
9.7947439000.4929
9.8170440000.4907
9.8394441000.4934
9.8617442000.4901
9.8840443000.5023
9.9063444000.4909
9.9286445000.4944
9.9509446000.4913
9.9732447000.4944
9.9955448000.4961
10.0178449000.4876
10.0402450000.4975
10.0625451000.4891
10.0848452000.4920
10.1071453000.4949
10.1294454000.4916
10.1517455000.4940
10.1740456000.4898
10.1963457000.4976
10.2187458000.4928
10.2410459000.4973
10.2633460000.4904
10.2856461000.4843
10.3079462000.4950
10.3302463000.4842
10.3525464000.4862
10.3748465000.4866
10.3971466000.4927
10.4195467000.4961
10.4418468000.4841
10.4641469000.4932
10.4864470000.4822
10.5087471000.4926
10.5310472000.4905
10.5533473000.4950
10.5756474000.4879
10.5979475000.4868
10.6203476000.4909
10.6426477000.4898
10.6649478000.4921
10.6872479000.4969
10.7095480000.4942
10.7318481000.4924
10.7541482000.4891
10.7764483000.4882
10.7988484000.4882
10.8211485000.5006
10.8434486000.4995
10.8657487000.4937
10.8880488000.4879
10.9103489000.4902
10.9326490000.4931
10.9549491000.4854
10.9772492000.4959
10.9996493000.4963
11.0219494000.4803
11.0442495000.4951
11.0665496000.5074
11.0888497000.4974
11.1111498000.4853
11.1334499000.4933
11.1557500000.4844
11.1780501000.5003
11.2004502000.4912
11.2227503000.4928
11.2450504000.4863
11.2673505000.4946
11.2896506000.4887
11.3119507000.4926
11.3342508000.4901
11.3565509000.4893
11.3788510000.4882
11.4012511000.4900
11.4235512000.4960
11.4458513000.4942
11.4681514000.4909
11.4904515000.4882
11.5127516000.4923
11.5350517000.4964
11.5573518000.4918
11.5797519000.4870
11.6020520000.4869
11.6243521000.4935
11.6466522000.4926
11.6689523000.4952
11.6912524000.4863
11.7135525000.4946
11.7358526000.4949
11.7581527000.4864
11.7805528000.4982
11.8028529000.4954
11.8251530000.4822
11.8474531000.4856
11.8697532000.4853
11.8920533000.4868
11.9143534000.5018
11.9366535000.4959
11.9589536000.4840
11.9813537000.4882
12.0036538000.4805
12.0259539000.4975
12.0482540000.4951
12.0705541000.4936
12.0928542000.4987
12.1151543000.4853
12.1374544000.4826
12.1598545000.4799
12.1821546000.4894
12.2044547000.4805
12.2267548000.4983
12.2490549000.4925
12.2713550000.4861
12.2936551000.4922
12.3159552000.4884
12.3382553000.4946
12.3606554000.4958
12.3829555000.4934
12.4052556000.4868
12.4275557000.4916
12.4498558000.4883
12.4721559000.4928
12.4944560000.5087
12.5167561000.4940
12.5390562000.4897
12.5614563000.4951
12.5837564000.4894
12.6060565000.4952
12.6283566000.4836
12.6506567000.4902
12.6729568000.4874
12.6952569000.4891
12.7175570000.4803
12.7398571000.4965
12.7622572000.4886
12.7845573000.4896
12.8068574000.4864
12.8291575000.4883
12.8514576000.4871
12.8737577000.4854
12.8960578000.4861
12.9183579000.4844
12.9407580000.4893
12.9630581000.4861
12.9853582000.4900
13.0076583000.4837
13.0299584000.4852
13.0522585000.4816
13.0745586000.4992
13.0968587000.4874
13.1191588000.4830
13.1415589000.4879
13.1638590000.4923
13.1861591000.4891
13.2084592000.4936
13.2307593000.4968
13.2530594000.4895
13.2753595000.4784
13.2976596000.4948
13.3199597000.4936
13.3423598000.4903
13.3646599000.4832
13.3869600000.4962
13.4092601000.4907
13.4315602000.4927
13.4538603000.4824
13.4761604000.4843
13.4984605000.4816
13.5207606000.4977
13.5431607000.4940
13.5654608000.4948
13.5877609000.4853
13.6100610000.4848
13.6323611000.4970
13.6546612000.4847
13.6769613000.4825
13.6992614000.4826
13.7216615000.4877
13.7439616000.4877
13.7662617000.4908
13.7885618000.4855
13.8108619000.4831
13.8331620000.4922
13.8554621000.4889
13.8777622000.4851
13.9000623000.4933
13.9224624000.4912
13.9447625000.4857
13.9670626000.4835
13.9893627000.4921
14.0116628000.4883
14.0339629000.4941
14.0562630000.4874
14.0785631000.4949
14.1008632000.4964
14.1232633000.4797
14.1455634000.4883
14.1678635000.4861
14.1901636000.4807
14.2124637000.4943
14.2347638000.4854
14.2570639000.4854
14.2793640000.4762
14.3017641000.4824
14.3240642000.4905
14.3463643000.4968
14.3686644000.4779
14.3909645000.4841
14.4132646000.4868
14.4355647000.4907
14.4578648000.4881
14.4801649000.4953
14.5025650000.4850
14.5248651000.4879
14.5471652000.4885
14.5694653000.4849
14.5917654000.4887
14.6140655000.4881
14.6363656000.4901
14.6586657000.4893
14.6809658000.4909
14.7033659000.4826
14.7256660000.4891
14.7479661000.4842
14.7702662000.4883
14.7925663000.4826
14.8148664000.4996
14.8371665000.4915
14.8594666000.4908
14.8817667000.4943
14.9041668000.4816
14.9264669000.4950
14.9487670000.4856
14.9710671000.4840
14.9933672000.4897

</details>

Framework Versions

  • —Python: 3.12.13
  • —Sentence Transformers: 5.3.0
  • —Transformers: 5.3.0
  • —PyTorch: 2.10.0+cu128
  • —Accelerate: 1.13.0
  • —Datasets: 4.0.0
  • —Tokenizers: 0.22.2

Citation

BibTeX

Sentence Transformers and SoftmaxLoss
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",
}

<!--

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