CoolFace
Modelpublic

rohit-vt/tink-reranker-phase6_minilm_multikind

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes9downloads
Model Card

CrossEncoder based on cross-encoder/ms-marco-MiniLM-L6-v2

This is a Cross Encoder model finetuned from cross-encoder/ms-marco-MiniLM-L6-v2 using the sentence-transformers library. It computes scores for pairs of texts, which can be used for text reranking and semantic search.

Model Details

Model Description

  • —Model Type: Cross Encoder
  • —Base model: cross-encoder/ms-marco-MiniLM-L6-v2 <!-- at revision c5ee24cb16019beea0893ab7796b1df96625c6b8 -->
  • —Maximum Sequence Length: 512 tokens
  • —Number of Output Labels: 1 label
  • —Supported Modality: Text <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

CrossEncoder(
  (0): Transformer({'transformer_task': 'sequence-classification', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'logits'}}, 'module_output_name': 'scores', 'architecture': 'BertForSequenceClassification'})
)

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 CrossEncoder

# Download from the 🤗 Hub
model = CrossEncoder("cross_encoder_model_id")
# Get scores for pairs of inputs
pairs = [
    ['skill: use of special equipment for daily activities', 'skill: use of special equipment for daily activities'],
    ['skill: use of special equipment for daily activities', 'skill: operate video equipment'],
    ['skill: use of special equipment for daily activities', 'skill: use equipment, tools or technology with precision'],
    ['skill: use of special equipment for daily activities', 'skill: operate emergency equipment'],
    ['skill: use of special equipment for daily activities', 'skill: monitor sports equipment'],
]
scores = model.predict(pairs)
print(scores)
# [ 8.5757 -7.8594 -6.9781 -5.8253 -7.199 ]

# Or rank different texts based on similarity to a single text
ranks = model.rank(
    'skill: use of special equipment for daily activities',
    [
        'skill: use of special equipment for daily activities',
        'skill: operate video equipment',
        'skill: use equipment, tools or technology with precision',
        'skill: operate emergency equipment',
        'skill: monitor sports equipment',
    ]
)
# [{'corpus_id': ..., 'score': ...}, {'corpus_id': ..., 'score': ...}, ...]

<!--

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: 283,415 training samples
  • —Columns: <code>sentenceA</code>, <code>sentenceB</code>, and <code>label</code>
  • —Approximate statistics based on the first 100 samples: | | sentenceA | sentenceB | label | |:---------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:--------------------------------------------------------------| | type | string | string | float | | modality | text | text | | | details | <ul><li>min: 7 tokens</li><li>mean: 8.45 tokens</li><li>max: 11 tokens</li></ul> | <ul><li>min: 6 tokens</li><li>mean: 7.85 tokens</li><li>max: 13 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.2</li><li>max: 1.0</li></ul> |
  • —Samples: | sentenceA | sentenceB | label | |:------------------------------------------|:-------------------------------------------------|:-----------------| | <code>skill: manage staff of music</code> | <code>skill: manage musical staff</code> | <code>1.0</code> | | <code>skill: manage staff of music</code> | <code>skill: organise rehearsals</code> | <code>0.0</code> | | <code>skill: manage staff of music</code> | <code>skill: maintain musical instruments</code> | <code>0.0</code> |
  • —Loss: <code>BinaryCrossEntropyLoss</code> with these parameters:
json
  {
      "activation_fn": "torch.nn.modules.linear.Identity",
      "pos_weight": null
  }

Evaluation Dataset

Unnamed Dataset
  • —Size: 34,418 evaluation samples
  • —Columns: <code>sentenceA</code>, <code>sentenceB</code>, and <code>label</code>
  • —Approximate statistics based on the first 100 samples: | | sentenceA | sentenceB | label | |:---------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:--------------------------------------------------------------| | type | string | string | float | | modality | text | text | | | details | <ul><li>min: 8 tokens</li><li>mean: 11.33 tokens</li><li>max: 13 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 8.41 tokens</li><li>max: 13 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.2</li><li>max: 1.0</li></ul> |
  • —Samples: | sentenceA | sentenceB | label | |:------------------------------------------------------------------|:----------------------------------------------------------------------|:-----------------| | <code>skill: use of special equipment for daily activities</code> | <code>skill: use of special equipment for daily activities</code> | <code>1.0</code> | | <code>skill: use of special equipment for daily activities</code> | <code>skill: operate video equipment</code> | <code>0.0</code> | | <code>skill: use of special equipment for daily activities</code> | <code>skill: use equipment, tools or technology with precision</code> | <code>0.0</code> |
  • —Loss: <code>BinaryCrossEntropyLoss</code> with these parameters:
json
  {
      "activation_fn": "torch.nn.modules.linear.Identity",
      "pos_weight": null
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —per_device_train_batch_size: 32
  • —num_train_epochs: 2
  • —learning_rate: 2e-05
  • —warmup_steps: 0.1
  • —per_device_eval_batch_size: 64
  • —load_best_model_at_end: True
All Hyperparameters

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

  • —per_device_train_batch_size: 32
  • —num_train_epochs: 2
  • —max_steps: -1
  • —learning_rate: 2e-05
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: None
  • —warmup_steps: 0.1
  • —optim: adamwtorchfused
  • —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: 1
  • —average_tokens_across_devices: True
  • —max_grad_norm: 1.0
  • —label_smoothing_factor: 0.0
  • —bf16: False
  • —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: None
  • —trackio_bucket_id: None
  • —trackio_static_space_id: None
  • —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: True
  • —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_static_graph: None
  • —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 LossValidation Loss
0.0023200.4945-
0.0045400.5814-
0.0068600.4900-
0.0090800.4532-
0.01131000.4510-
0.01351200.4708-
0.01581400.4406-
0.01811600.4294-
0.02031800.3748-
0.02262000.3760-
0.02482200.3945-
0.02712400.4406-
0.02942600.3153-
0.03162800.3202-
0.03393000.3955-
0.03613200.3547-
0.03843400.3655-
0.04063600.3811-
0.04293800.3332-
0.04524000.2908-
0.04744200.3522-
0.04974400.3322-
0.05194600.3463-
0.05424800.2666-
0.05655000.2772-
0.05875200.2814-
0.06105400.3095-
0.06325600.2890-
0.06555800.2824-
0.06776000.3377-
0.07006200.2890-
0.07236400.2661-
0.07456600.2162-
0.07686800.2519-
0.07907000.2464-
0.08137200.2898-
0.08357400.2385-
0.08587600.2492-
0.08817800.2343-
0.09038000.2691-
0.09268200.2163-
0.09488400.2362-
0.09718600.2244-
0.09948800.2147-
0.10169000.2375-
0.10399200.2537-
0.10619400.2291-
0.10849600.2029-
0.11069800.2219-
0.112910000.1910-
0.115210200.2092-
0.117410400.1966-
0.119710600.2249-
0.121910800.2290-
0.124211000.1976-
0.126511200.1818-
0.128711400.1805-
0.131011600.1880-
0.133211800.2199-
0.135512000.2392-
0.137712200.1599-
0.140012400.1999-
0.142312600.2348-
0.144512800.1560-
0.146813000.1861-
0.149013200.1938-
0.151313400.1848-
0.153613600.2324-
0.155813800.2084-
0.158114000.1831-
0.160314200.1802-
0.162614400.1447-
0.164814600.2033-
0.167114800.1721-
0.169415000.2134-
0.171615200.2015-
0.173915400.1892-
0.176115600.2068-
0.178415800.1787-
0.180616000.1754-
0.182916200.1681-
0.185216400.1588-
0.187416600.2201-
0.189716800.1788-
0.191917000.1746-
0.194217200.1732-
0.196517400.1969-
0.198717600.1852-
0.201017800.1598-
0.203218000.1455-
0.205518200.1830-
0.207718400.1553-
0.210018600.1480-
0.212318800.2060-
0.214519000.1517-
0.216819200.2047-
0.219019400.1517-
0.221319600.1661-
0.223619800.1666-
0.225820000.1290-
0.228120200.1552-
0.230320400.2184-
0.232620600.1682-
0.234820800.1502-
0.237121000.1523-
0.239421200.1794-
0.241621400.1937-
0.243921600.1570-
0.246121800.1530-
0.248422000.1645-
0.250622200.1873-
0.252922400.1717-
0.255222600.1564-
0.257422800.1497-
0.259723000.1561-
0.261923200.1201-
0.264223400.2274-
0.266523600.1468-
0.268723800.1456-
0.271024000.1242-
0.273224200.1498-
0.275524400.1619-
0.277724600.1763-
0.280024800.1414-
0.282325000.1708-
0.284525200.1596-
0.286825400.1359-
0.289025600.1283-
0.291325800.1325-
0.293626000.1607-
0.295826200.1781-
0.298126400.1578-
0.300326600.1379-
0.302626800.1642-
0.304827000.1552-
0.307127200.1390-
0.309427400.1557-
0.311627600.1420-
0.313927800.1280-
0.316128000.1271-
0.318428200.1747-
0.320728400.1283-
0.322928600.1390-
0.325228800.1510-
0.327429000.1681-
0.329729200.1430-
0.331929400.1513-
0.334229600.1805-
0.336529800.1706-
0.338730000.1291-
0.341030200.1470-
0.343230400.1562-
0.345530600.1521-
0.347730800.1132-
0.350031000.1429-
0.352331200.1430-
0.354531400.1661-
0.356831600.1487-
0.359031800.1683-
0.361332000.1823-
0.363632200.1339-
0.365832400.1568-
0.368132600.1368-
0.370332800.1491-
0.372633000.1514-
0.374833200.1433-
0.377133400.1454-
0.379433600.1558-
0.381633800.1500-
0.383934000.1257-
0.386134200.1762-
0.388434400.1323-
0.390734600.1443-
0.392934800.1413-
0.395235000.1669-
0.397435200.1279-
0.399735400.1332-
0.401935600.1811-
0.404235800.1132-
0.406536000.1251-
0.408736200.1556-
0.411036400.1323-
0.413236600.1841-
0.415536800.1688-
0.417737000.1385-
0.420037200.1584-
0.422337400.1265-
0.424537600.1058-
0.426837800.1738-
0.429038000.1296-
0.431338200.1441-
0.433638400.1558-
0.435838600.1603-
0.438138800.1354-
0.440339000.1338-
0.442639200.1180-
0.444839400.1624-
0.447139600.1540-
0.449439800.1357-
0.451640000.1196-
0.453940200.1317-
0.456140400.1443-
0.458440600.1319-
0.460740800.1500-
0.462941000.1211-
0.465241200.1310-
0.467441400.1687-
0.469741600.1633-
0.471941800.1483-
0.474242000.1402-
0.476542200.1370-
0.478742400.1321-
0.481042600.1663-
0.483242800.1466-
0.485543000.1649-
0.487743200.1551-
0.490043400.1354-
0.492343600.1291-
0.494543800.1232-
0.496844000.1394-
0.499044200.1711-
0.501344400.1653-
0.503644600.1330-
0.505844800.1494-
0.508145000.1388-
0.510345200.1470-
0.512645400.1119-
0.514845600.1531-
0.517145800.1106-
0.519446000.2071-
0.521646200.1406-
0.523946400.1233-
0.526146600.1739-
0.528446800.1433-
0.530747000.1252-
0.532947200.1283-
0.535247400.1451-
0.537447600.1434-
0.539747800.1361-
0.541948000.1687-
0.544248200.1444-
0.546548400.1311-
0.548748600.1135-
0.551048800.1355-
0.553249000.1528-
0.555549200.1135-
0.557849400.1578-
0.560049600.1139-
0.562349800.1376-
0.564550000.1575-
0.566850200.1294-
0.569050400.1731-
0.571350600.1345-
0.573650800.1110-
0.575851000.1241-
0.578151200.1370-
0.580351400.1249-
0.582651600.1276-
0.584851800.1528-
0.587152000.1595-
0.589452200.1519-
0.591652400.1180-
0.593952600.1602-
0.596152800.1305-
0.598453000.1492-
0.600753200.1263-
0.602953400.1221-
0.605253600.1628-
0.607453800.1306-
0.609754000.1137-
0.611954200.1270-
0.614254400.1037-
0.616554600.1423-
0.618754800.1422-
0.621055000.1155-
0.623255200.1124-
0.625555400.1462-
0.627855600.1470-
0.630055800.1272-
0.632356000.1404-
0.634556200.1574-
0.636856400.1287-
0.639056600.1496-
0.641356800.1319-
0.643657000.1390-
0.645857200.1259-
0.648157400.1436-
0.650357600.1211-
0.652657800.1403-
0.654858000.1421-
0.657158200.1278-
0.659458400.1487-
0.661658600.1401-
0.663958800.1323-
0.666159000.1278-
0.668459200.1219-
0.670759400.1246-
0.672959600.1193-
0.675259800.0992-
0.677460000.1137-
0.679760200.1702-
0.681960400.1462-
0.684260600.1049-
0.686560800.1337-
0.688761000.1140-
0.691061200.1368-
0.693261400.1072-
0.695561600.1331-
0.697861800.1227-
0.700062000.1127-
0.702362200.1252-
0.704562400.1724-
0.706862600.1308-
0.709062800.1271-
0.711363000.1724-
0.713663200.1022-
0.715863400.1369-
0.718163600.1276-
0.720363800.1403-
0.722664000.1170-
0.724964200.1371-
0.727164400.1306-
0.729464600.1096-
0.731664800.1315-
0.733965000.1252-
0.736165200.1422-
0.738465400.1196-
0.740765600.1099-
0.742965800.1171-
0.745266000.1233-
0.747466200.0988-
0.749766400.1336-
0.751966600.0951-
0.754266800.1177-
0.756567000.0891-
0.758767200.1037-
0.761067400.1575-
0.763267600.1627-
0.765567800.1356-
0.767868000.1255-
0.770068200.1293-
0.772368400.1727-
0.774568600.1350-
0.776868800.1088-
0.779069000.1652-
0.781369200.1203-
0.783669400.1429-
0.785869600.1123-
0.788169800.1092-
0.790370000.1393-
0.792670200.1178-
0.794970400.1455-
0.797170600.0992-
0.799470800.1120-
0.801671000.0971-
0.803971200.1360-
0.806171400.0997-
0.808471600.1633-
0.810771800.1419-
0.812972000.1224-
0.815272200.1470-
0.817472400.1263-
0.819772600.1213-
0.821972800.1290-
0.824273000.1110-
0.826573200.1044-
0.828773400.1656-
0.831073600.0940-
0.833273800.1162-
0.835574000.1086-
0.837874200.1364-
0.840074400.1590-
0.842374600.1254-
0.844574800.1517-
0.846875000.0943-
0.849075200.1306-
0.851375400.1311-
0.853675600.1224-
0.855875800.1499-
0.858176000.1072-
0.860376200.1057-
0.862676400.1218-
0.864976600.1343-
0.867176800.1349-
0.869477000.1291-
0.871677200.1327-
0.873977400.1035-
0.876177600.1448-
0.878477800.1005-
0.880778000.1217-
0.882978200.1223-
0.885278400.1114-
0.887478600.1353-
0.889778800.1141-
0.891979000.1248-
0.894279200.1036-
0.896579400.0982-
0.898779600.1362-
0.901079800.1182-
0.903280000.1383-
0.905580200.1370-
0.907880400.1169-
0.910080600.0959-
0.912380800.0732-
0.914581000.1126-
0.916881200.1227-
0.919081400.1126-
0.921381600.1022-
0.923681800.1191-
0.925882000.1457-
0.928182200.1202-
0.930382400.1145-
0.932682600.0986-
0.934982800.0958-
0.937183000.1480-
0.939483200.1400-
0.941683400.1376-
0.943983600.1054-
0.946183800.1011-
0.948484000.1038-
0.950784200.0979-
0.952984400.1616-
0.955284600.1278-
0.957484800.1015-
0.959785000.1243-
0.962085200.1362-
0.964285400.1359-
0.966585600.1193-
0.968785800.1196-
0.971086000.1054-
0.973286200.1232-
0.975586400.1002-
0.977886600.0965-
0.980086800.1028-
0.982387000.1397-
0.984587200.1200-
0.986887400.0920-
0.989087600.1367-
0.991387800.1617-
0.993688000.1338-
0.995888200.1117-
0.998188400.1112-
1.08857-0.1138
1.000388600.1318-
1.002688800.1170-
1.004989000.0952-
1.007189200.1078-
1.009489400.1323-
1.011689600.1111-
1.013989800.0896-
1.016190000.1427-
1.018490200.0992-
1.020790400.1147-
1.022990600.1189-
1.025290800.1000-
1.027491000.1109-
1.029791200.1330-
1.032091400.1189-
1.034291600.1119-
1.036591800.1110-
1.038792000.0986-
1.041092200.1108-
1.043292400.1427-
1.045592600.0963-
1.047892800.1274-
1.050093000.1261-
1.052393200.1477-
1.054593400.1275-
1.056893600.1139-
1.059093800.1334-
1.061394000.0853-
1.063694200.0856-
1.065894400.1072-
1.068194600.1045-
1.070394800.0933-
1.072695000.1254-
1.074995200.1021-
1.077195400.0958-
1.079495600.0975-
1.081695800.0982-
1.083996000.0738-
1.086196200.1104-
1.088496400.1209-
1.090796600.1280-
1.092996800.1378-
1.095297000.0999-
1.097497200.0969-
1.099797400.1085-
1.102097600.1081-
1.104297800.0985-
1.106598000.1394-
1.108798200.1111-
1.111098400.1032-
1.113298600.1120-
1.115598800.1087-
1.117899000.1040-
1.120099200.0948-
1.122399400.1622-
1.124599600.1368-
1.126899800.0978-
1.1291100000.0758-
1.1313100200.1054-
1.1336100400.1060-
1.1358100600.1152-
1.1381100800.1185-
1.1403101000.0690-
1.1426101200.0663-
1.1449101400.1041-
1.1471101600.1079-
1.1494101800.1245-
1.1516102000.1174-
1.1539102200.0915-
1.1561102400.1252-
1.1584102600.1389-
1.1607102800.1086-
1.1629103000.1176-
1.1652103200.1017-
1.1674103400.1271-
1.1697103600.1278-
1.1720103800.0998-
1.1742104000.0915-
1.1765104200.0814-
1.1787104400.1152-
1.1810104600.1172-
1.1832104800.1219-
1.1855105000.1186-
1.1878105200.1081-
1.1900105400.1092-
1.1923105600.1238-
1.1945105800.1159-
1.1968106000.1150-
1.1991106200.1342-
1.2013106400.1021-
1.2036106600.0953-
1.2058106800.0941-
1.2081107000.1365-
1.2103107200.1385-
1.2126107400.1116-
1.2149107600.1229-
1.2171107800.0656-
1.2194108000.1187-
1.2216108200.1270-
1.2239108400.1027-
1.2261108600.1329-
1.2284108800.1249-
1.2307109000.0962-
1.2329109200.1043-
1.2352109400.1217-
1.2374109600.0724-
1.2397109800.1017-
1.2420110000.1331-
1.2442110200.0755-
1.2465110400.1111-
1.2487110600.1329-
1.2510110800.1043-
1.2532111000.1207-
1.2555111200.0943-
1.2578111400.1030-
1.2600111600.0963-
1.2623111800.1308-
1.2645112000.0875-
1.2668112200.1386-
1.2691112400.1252-
1.2713112600.1217-
1.2736112800.1075-
1.2758113000.1115-
1.2781113200.1213-
1.2803113400.1037-
1.2826113600.0976-
1.2849113800.0890-
1.2871114000.1561-
1.2894114200.1210-
1.2916114400.1382-
1.2939114600.0879-
1.2961114800.1088-
1.2984115000.1186-
1.3007115200.1158-
1.3029115400.1088-
1.3052115600.1164-
1.3074115800.1281-
1.3097116000.1169-
1.3120116200.1248-
1.3142116400.0721-
1.3165116600.1261-
1.3187116800.0934-
1.3210117000.1061-
1.3232117200.1508-
1.3255117400.1074-
1.3278117600.0709-
1.3300117800.1113-
1.3323118000.0970-
1.3345118200.1075-
1.3368118400.0935-
1.3391118600.1137-
1.3413118800.1068-
1.3436119000.1194-
1.3458119200.1460-
1.3481119400.0848-
1.3503119600.1333-
1.3526119800.1050-
1.3549120000.1189-
1.3571120200.0984-
1.3594120400.1262-
1.3616120600.0903-
1.3639120800.1015-
1.3662121000.1291-
1.3684121200.0797-
1.3707121400.1014-
1.3729121600.0735-
1.3752121800.0878-
1.3774122000.0928-
1.3797122200.1198-
1.3820122400.1146-
1.3842122600.1019-
1.3865122800.0952-
1.3887123000.0986-
1.3910123200.1266-
1.3932123400.1120-
1.3955123600.0761-
1.3978123800.1164-
1.4000124000.1285-
1.4023124200.1286-
1.4045124400.1119-
1.4068124600.1121-
1.4091124800.1134-
1.4113125000.1212-
1.4136125200.1186-
1.4158125400.1504-
1.4181125600.1069-
1.4203125800.0910-
1.4226126000.1152-
1.4249126200.0944-
1.4271126400.0904-
1.4294126600.0922-
1.4316126800.1103-
1.4339127000.1102-
1.4362127200.0846-
1.4384127400.1093-
1.4407127600.0939-
1.4429127800.0705-
1.4452128000.1109-
1.4474128200.0973-
1.4497128400.1047-
1.4520128600.1107-
1.4542128800.0931-
1.4565129000.1074-
1.4587129200.0889-
1.4610129400.1247-
1.4632129600.0915-
1.4655129800.1268-
1.4678130000.0767-
1.4700130200.0900-
1.4723130400.1142-
1.4745130600.1124-
1.4768130800.1433-
1.4791131000.0986-
1.4813131200.1108-
1.4836131400.1017-
1.4858131600.1178-
1.4881131800.0857-
1.4903132000.1113-
1.4926132200.1050-
1.4949132400.0788-
1.4971132600.1045-
1.4994132800.1080-
1.5016133000.1090-
1.5039133200.1287-
1.5062133400.1080-
1.5084133600.1266-
1.5107133800.1179-
1.5129134000.0936-
1.5152134200.1024-
1.5174134400.1493-
1.5197134600.1264-
1.5220134800.1140-
1.5242135000.1174-
1.5265135200.0963-
1.5287135400.1003-
1.5310135600.0957-
1.5333135800.1439-
1.5355136000.1017-
1.5378136200.0863-
1.5400136400.0924-
1.5423136600.0967-
1.5445136800.0885-
1.5468137000.1086-
1.5491137200.1061-
1.5513137400.0790-
1.5536137600.1095-
1.5558137800.0905-
1.5581138000.1270-
1.5603138200.0827-
1.5626138400.0946-
1.5649138600.1224-
1.5671138800.1337-
1.5694139000.0941-
1.5716139200.1315-
1.5739139400.0991-
1.5762139600.1036-
1.5784139800.0949-
1.5807140000.1031-
1.5829140200.1187-
1.5852140400.0953-
1.5874140600.1030-
1.5897140800.1348-
1.5920141000.0819-
1.5942141200.0915-
1.5965141400.1048-
1.5987141600.1103-
1.6010141800.1161-
1.6033142000.0920-
1.6055142200.1065-
1.6078142400.1138-
1.6100142600.1728-
1.6123142800.0890-
1.6145143000.1255-
1.6168143200.1246-
1.6191143400.1170-
1.6213143600.1227-
1.6236143800.0815-
1.6258144000.0951-
1.6281144200.1175-
1.6303144400.1400-
1.6326144600.1135-
1.6349144800.0802-
1.6371145000.1014-
1.6394145200.0905-
1.6416145400.0792-
1.6439145600.0860-
1.6462145800.1000-
1.6484146000.1227-
1.6507146200.1116-
1.6529146400.1339-
1.6552146600.1010-
1.6574146800.0756-
1.6597147000.1146-
1.6620147200.0876-
1.6642147400.1047-
1.6665147600.0923-
1.6687147800.0834-
1.6710148000.1045-
1.6733148200.0895-
1.6755148400.1136-
1.6778148600.1548-
1.6800148800.1097-
1.6823149000.0913-
1.6845149200.1006-
1.6868149400.1189-
1.6891149600.0992-
1.6913149800.1311-
1.6936150000.1086-
1.6958150200.0884-
1.6981150400.1240-
1.7004150600.0947-
1.7026150800.1272-
1.7049151000.1084-
1.7071151200.0965-
1.7094151400.1184-
1.7116151600.1151-
1.7139151800.0879-
1.7162152000.1065-
1.7184152200.1413-
1.7207152400.1166-
1.7229152600.1074-
1.7252152800.1198-
1.7274153000.0731-
1.7297153200.1236-
1.7320153400.0836-
1.7342153600.1106-
1.7365153800.1585-
1.7387154000.1221-
1.7410154200.1253-
1.7433154400.1102-
1.7455154600.1256-
1.7478154800.0859-
1.7500155000.1221-
1.7523155200.1006-
1.7545155400.1082-
1.7568155600.0876-
1.7591155800.0731-
1.7613156000.0801-
1.7636156200.0996-
1.7658156400.1243-
1.7681156600.0737-
1.7704156800.0819-
1.7726157000.1000-
1.7749157200.0974-
1.7771157400.1121-
1.7794157600.1148-
1.7816157800.0984-
1.7839158000.1018-
1.7862158200.0993-
1.7884158400.1025-
1.7907158600.0768-
1.7929158800.0718-
1.7952159000.1078-
1.7974159200.1145-
1.7997159400.1056-
1.8020159600.1182-
1.8042159800.1122-
1.8065160000.0928-
1.8087160200.0912-
1.8110160400.1024-
1.8133160600.1021-
1.8155160800.1015-
1.8178161000.0975-
1.8200161200.0824-
1.8223161400.0978-
1.8245161600.0922-
1.8268161800.0780-
1.8291162000.1148-
1.8313162200.0881-
1.8336162400.0838-
1.8358162600.1035-
1.8381162800.1095-
1.8404163000.1035-
1.8426163200.1172-
1.8449163400.0954-
1.8471163600.1104-
1.8494163800.1016-
1.8516164000.1180-
1.8539164200.0930-
1.8562164400.1632-
1.8584164600.1173-
1.8607164800.1172-
1.8629165000.1154-
1.8652165200.0878-
1.8674165400.0980-
1.8697165600.0747-
1.8720165800.0863-
1.8742166000.1321-
1.8765166200.1467-
1.8787166400.0586-
1.8810166600.1131-
1.8833166800.0919-
1.8855167000.1114-
1.8878167200.1246-
1.8900167400.1225-
1.8923167600.0989-
1.8945167800.0843-
1.8968168000.1071-
1.8991168200.1065-
1.9013168400.1148-
1.9036168600.0871-
1.9058168800.1146-
1.9081169000.0999-
1.9104169200.1351-
1.9126169400.0828-
1.9149169600.0793-
1.9171169800.0954-
1.9194170000.1007-
1.9216170200.1469-
1.9239170400.0844-
1.9262170600.1188-
1.9284170800.1166-
1.9307171000.1270-
1.9329171200.1017-
1.9352171400.0860-
1.9375171600.1060-
1.9397171800.0933-
1.9420172000.1048-
1.9442172200.0714-
1.9465172400.1004-
1.9487172600.1130-
1.9510172800.1194-
1.9533173000.0754-
1.9555173200.0995-
1.9578173400.1108-
1.9600173600.0892-
1.9623173800.1169-
1.9645174000.0973-
1.9668174200.0818-
1.9691174400.1253-
1.9713174600.0961-
1.9736174800.0935-
1.9758175000.1119-
1.9781175200.1048-
1.9804175400.0930-
1.9826175600.1369-
1.9849175800.1327-
1.9871176000.1096-
1.9894176200.1323-
1.9916176400.1296-
1.9939176600.0930-
1.9962176800.1101-
1.9984177000.1217-
2.017714-0.1181
  • —The bold row denotes the saved checkpoint. </details>

Training Time

  • —Training: 41.8 minutes
  • —Evaluation: 1.5 minutes
  • —Total: 43.3 minutes

Framework Versions

  • —Python: 3.13.13
  • —Sentence Transformers: 5.5.0
  • —Transformers: 5.8.1
  • —PyTorch: 2.12.0
  • —Accelerate: 1.14.0
  • —Datasets: 5.0.0
  • —Tokenizers: 0.22.2

Additional Resources

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

<!--

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