SentenceTransformer based on distilbert/distilroberta-base
This is a sentence-transformers model finetuned from distilbert/distilroberta-base on the all-nli, sentence-compression, simple-wiki, altlex, quora-duplicates, coco-captions, flickr30k-captions, yahoo-answers and stack-exchange datasets. 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: distilbert/distilroberta-base
- Maximum Sequence Length: 128 tokens
- Output Dimensionality: 768 tokens
- Similarity Function: Cosine Similarity
- Training Datasets:
- Language: en
Model Sources
Full Model Architecture
SentenceTransformer(
(0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: RobertaModel
(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:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("tomaarsen/distilroberta-base-paraphrases-multi")
sentences = [
'guy on a bike',
'Man riding a bike',
'A man cooks on a grill.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
similarities = model.similarity(embeddings)
print(similarities.shape)
Evaluation
Metrics
Semantic Similarity
| Metric |
Value |
| pearson_cosine |
0.8415 |
| spearman_cosine |
0.8452 |
| pearson_manhattan |
0.8502 |
| spearman_manhattan |
0.8517 |
| pearson_euclidean |
0.8535 |
| spearman_euclidean |
0.8555 |
| pearson_dot |
0.6505 |
| spearman_dot |
0.649 |
| pearson_max |
0.8535 |
| spearman_max |
0.8555 |
Semantic Similarity
| Metric |
Value |
| pearson_cosine |
0.8106 |
| spearman_cosine |
0.8145 |
| pearson_manhattan |
0.8225 |
| spearman_manhattan |
0.8131 |
| pearson_euclidean |
0.8255 |
| spearman_euclidean |
0.8165 |
| pearson_dot |
0.5911 |
| spearman_dot |
0.5761 |
| pearson_max |
0.8255 |
| spearman_max |
0.8165 |
Training Details
Training Datasets
all-nli
sentence-compression
simple-wiki
altlex
quora-duplicates
coco-captions
flickr30k-captions
yahoo-answers
stack-exchange
Training Hyperparameters
Non-Default Hyperparameters
eval_strategy: steps
per_device_train_batch_size: 128
per_device_eval_batch_size: 128
num_train_epochs: 1
warmup_ratio: 0.1
fp16: True
batch_sampler: no_duplicates
multi_dataset_batch_sampler: round_robin
All Hyperparameters
Click to expand
overwrite_output_dir: False
do_predict: False
eval_strategy: steps
prediction_loss_only: False
per_device_train_batch_size: 128
per_device_eval_batch_size: 128
per_gpu_train_batch_size: None
per_gpu_eval_batch_size: None
gradient_accumulation_steps: 1
eval_accumulation_steps: None
learning_rate: 5e-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: 1
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
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: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
fsdp_transformer_layer_cls_to_wrap: None
accelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': 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: None
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_sampler: no_duplicates
multi_dataset_batch_sampler: round_robin
Training Logs
| Epoch |
Step |
Training Loss |
sts-dev_spearman_cosine |
sts-test_spearman_cosine |
| 0.0140 |
100 |
3.739 |
- |
- |
| 0.0279 |
200 |
1.1317 |
- |
- |
| 0.0419 |
300 |
0.9645 |
- |
- |
| 0.0558 |
400 |
0.9053 |
- |
- |
| 0.0698 |
500 |
0.8889 |
- |
- |
| 0.0838 |
600 |
0.8741 |
- |
- |
| 0.0977 |
700 |
0.8329 |
- |
- |
| 0.1117 |
800 |
0.8331 |
- |
- |
| 0.1256 |
900 |
0.8241 |
- |
- |
| 0.1396 |
1000 |
0.7829 |
0.8460 |
- |
| 0.1535 |
1100 |
0.7871 |
- |
- |
| 0.1675 |
1200 |
0.7521 |
- |
- |
| 0.1815 |
1300 |
0.7905 |
- |
- |
| 0.1954 |
1400 |
0.7531 |
- |
- |
| 0.2094 |
1500 |
0.7677 |
- |
- |
| 0.2233 |
1600 |
0.7745 |
- |
- |
| 0.2373 |
1700 |
0.7651 |
- |
- |
| 0.2513 |
1800 |
0.7712 |
- |
- |
| 0.2652 |
1900 |
0.7476 |
- |
- |
| 0.2792 |
2000 |
0.7814 |
0.8370 |
- |
| 0.2931 |
2100 |
0.7536 |
- |
- |
| 0.3071 |
2200 |
0.7689 |
- |
- |
| 0.3210 |
2300 |
0.7656 |
- |
- |
| 0.3350 |
2400 |
0.7672 |
- |
- |
| 0.3490 |
2500 |
0.6921 |
- |
- |
| 0.3629 |
2600 |
0.6778 |
- |
- |
| 0.3769 |
2700 |
0.6844 |
- |
- |
| 0.3908 |
2800 |
0.6907 |
- |
- |
| 0.4048 |
2900 |
0.6881 |
- |
- |
| 0.4188 |
3000 |
0.6815 |
0.8372 |
- |
| 0.4327 |
3100 |
0.6869 |
- |
- |
| 0.4467 |
3200 |
0.698 |
- |
- |
| 0.4606 |
3300 |
0.6868 |
- |
- |
| 0.4746 |
3400 |
0.7174 |
- |
- |
| 0.4886 |
3500 |
0.6714 |
- |
- |
| 0.5025 |
3600 |
0.6698 |
- |
- |
| 0.5165 |
3700 |
0.6838 |
- |
- |
| 0.5304 |
3800 |
0.6927 |
- |
- |
| 0.5444 |
3900 |
0.6628 |
- |
- |
| 0.5583 |
4000 |
0.6647 |
0.8367 |
- |
| 0.5723 |
4100 |
0.6766 |
- |
- |
| 0.5863 |
4200 |
0.6987 |
- |
- |
| 0.6002 |
4300 |
0.6895 |
- |
- |
| 0.6142 |
4400 |
0.6571 |
- |
- |
| 0.6281 |
4500 |
0.66 |
- |
- |
| 0.6421 |
4600 |
0.6747 |
- |
- |
| 0.6561 |
4700 |
0.6495 |
- |
- |
| 0.6700 |
4800 |
0.6746 |
- |
- |
| 0.6840 |
4900 |
0.6575 |
- |
- |
| 0.6979 |
5000 |
0.6712 |
0.8454 |
- |
| 0.7119 |
5100 |
0.6627 |
- |
- |
| 0.7259 |
5200 |
0.6538 |
- |
- |
| 0.7398 |
5300 |
0.6659 |
- |
- |
| 0.7538 |
5400 |
0.6551 |
- |
- |
| 0.7677 |
5500 |
0.6548 |
- |
- |
| 0.7817 |
5600 |
0.673 |
- |
- |
| 0.7956 |
5700 |
0.6805 |
- |
- |
| 0.8096 |
5800 |
0.6537 |
- |
- |
| 0.8236 |
5900 |
0.6826 |
- |
- |
| 0.8375 |
6000 |
0.7182 |
0.8370 |
- |
| 0.8515 |
6100 |
0.7391 |
- |
- |
| 0.8654 |
6200 |
0.7006 |
- |
- |
| 0.8794 |
6300 |
0.6774 |
- |
- |
| 0.8934 |
6400 |
0.7076 |
- |
- |
| 0.9073 |
6500 |
0.6893 |
- |
- |
| 0.9213 |
6600 |
0.678 |
- |
- |
| 0.9352 |
6700 |
0.6703 |
- |
- |
| 0.9492 |
6800 |
0.675 |
- |
- |
| 0.9631 |
6900 |
0.6842 |
- |
- |
| 0.9771 |
7000 |
0.6909 |
0.8452 |
- |
| 0.9911 |
7100 |
0.681 |
- |
- |
| 1.0 |
7164 |
- |
- |
0.8145 |
Environmental Impact
Carbon emissions were measured using CodeCarbon.
- Energy Consumed: 0.202 kWh
- Carbon Emitted: 0.079 kg of CO2
- Hours Used: 0.601 hours
Training Hardware
- On Cloud: No
- GPU Model: 1 x NVIDIA GeForce RTX 3090
- CPU Model: 13th Gen Intel(R) Core(TM) i7-13700K
- RAM Size: 31.78 GB
Framework Versions
- Python: 3.11.6
- Sentence Transformers: 3.0.0.dev0
- Transformers: 4.41.0.dev0
- PyTorch: 2.3.0+cu121
- Accelerate: 0.26.1
- Datasets: 2.18.0
- Tokenizers: 0.19.1
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",
}
MultipleNegativesRankingLoss
@misc{henderson2017efficient,
title={Efficient Natural Language Response Suggestion for Smart Reply},
author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
year={2017},
eprint={1705.00652},
archivePrefix={arXiv},
primaryClass={cs.CL}
}