SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
This is a sentence-transformers model finetuned from sentence-transformers/all-MiniLM-L6-v2. 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: sentence-transformers/all-MiniLM-L6-v2
- Maximum Sequence Length: 256 tokens
- Output Dimensionality: 384 tokens
- Similarity Function: Cosine Similarity
Model Sources
- Documentation: Sentence Transformers Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Sentence Transformers on Hugging Face
Full Model Architecture
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, '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})
(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("sartifyllc/swahili-all-MiniLM-L6-v2-nli-matryoshka")
# Run inference
sentences = [
'Mwanamume aliyevalia koti la bluu la kuzuia upepo, amelala uso chini kwenye benchi ya bustani, akiwa na chupa ya pombe iliyofungwa kwenye mojawapo ya miguu ya benchi.',
'Mwanamume amelala uso chini kwenye benchi ya bustani.',
'Mwanamume fulani anacheza dansi kwenye klabu hiyo akifungua chupa.',
]
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]
Evaluation
Metrics
Semantic Similarity
- Dataset:
sts-test-256
- Evaluated with
EmbeddingSimilarityEvaluator
Metric | Value |
---|---|
pearson_cosine | 0.6943 |
spearman_cosine | 0.6856 |
pearson_manhattan | 0.6885 |
spearman_manhattan | 0.6872 |
pearson_euclidean | 0.6915 |
spearman_euclidean | 0.6906 |
pearson_dot | 0.6799 |
spearman_dot | 0.6677 |
pearson_max | 0.6943 |
spearman_max | 0.6906 |
Semantic Similarity
- Dataset:
sts-test-128
- Evaluated with
EmbeddingSimilarityEvaluator
Metric | Value |
---|---|
pearson_cosine | 0.6892 |
spearman_cosine | 0.6814 |
pearson_manhattan | 0.6968 |
spearman_manhattan | 0.692 |
pearson_euclidean | 0.7001 |
spearman_euclidean | 0.696 |
pearson_dot | 0.6365 |
spearman_dot | 0.619 |
pearson_max | 0.7001 |
spearman_max | 0.696 |
Semantic Similarity
- Dataset:
sts-test-64
- Evaluated with
EmbeddingSimilarityEvaluator
Metric | Value |
---|---|
pearson_cosine | 0.6782 |
spearman_cosine | 0.6755 |
pearson_manhattan | 0.6962 |
spearman_manhattan | 0.6891 |
pearson_euclidean | 0.6996 |
spearman_euclidean | 0.6938 |
pearson_dot | 0.5812 |
spearman_dot | 0.5607 |
pearson_max | 0.6996 |
spearman_max | 0.6938 |
Training Details
Training Hyperparameters
Non-Default Hyperparameters
per_device_train_batch_size
: 64per_device_eval_batch_size
: 64num_train_epochs
: 1warmup_ratio
: 0.1fp16
: Truebatch_sampler
: no_duplicates
All Hyperparameters
Click to expand
overwrite_output_dir
: Falsedo_predict
: Falseprediction_loss_only
: Trueper_device_train_batch_size
: 64per_device_eval_batch_size
: 64per_gpu_train_batch_size
: Noneper_gpu_eval_batch_size
: Nonegradient_accumulation_steps
: 1eval_accumulation_steps
: Nonelearning_rate
: 5e-05weight_decay
: 0.0adam_beta1
: 0.9adam_beta2
: 0.999adam_epsilon
: 1e-08max_grad_norm
: 1.0num_train_epochs
: 1max_steps
: -1lr_scheduler_type
: linearlr_scheduler_kwargs
: {}warmup_ratio
: 0.1warmup_steps
: 0log_level
: passivelog_level_replica
: warninglog_on_each_node
: Truelogging_nan_inf_filter
: Truesave_safetensors
: Truesave_on_each_node
: Falsesave_only_model
: Falseno_cuda
: Falseuse_cpu
: Falseuse_mps_device
: Falseseed
: 42data_seed
: Nonejit_mode_eval
: Falseuse_ipex
: Falsebf16
: Falsefp16
: Truefp16_opt_level
: O1half_precision_backend
: autobf16_full_eval
: Falsefp16_full_eval
: Falsetf32
: Nonelocal_rank
: 0ddp_backend
: Nonetpu_num_cores
: Nonetpu_metrics_debug
: Falsedebug
: []dataloader_drop_last
: Falsedataloader_num_workers
: 0dataloader_prefetch_factor
: Nonepast_index
: -1disable_tqdm
: Falseremove_unused_columns
: Truelabel_names
: Noneload_best_model_at_end
: Falseignore_data_skip
: Falsefsdp
: []fsdp_min_num_params
: 0fsdp_config
: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap
: Noneaccelerator_config
: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'gradient_accumulation_kwargs': None}deepspeed
: Nonelabel_smoothing_factor
: 0.0optim
: adamw_torchoptim_args
: Noneadafactor
: Falsegroup_by_length
: Falselength_column_name
: lengthddp_find_unused_parameters
: Noneddp_bucket_cap_mb
: Noneddp_broadcast_buffers
: Falsedataloader_pin_memory
: Truedataloader_persistent_workers
: Falseskip_memory_metrics
: Trueuse_legacy_prediction_loop
: Falsepush_to_hub
: Falseresume_from_checkpoint
: Nonehub_model_id
: Nonehub_strategy
: every_savehub_private_repo
: Falsehub_always_push
: Falsegradient_checkpointing
: Falsegradient_checkpointing_kwargs
: Noneinclude_inputs_for_metrics
: Falseeval_do_concat_batches
: Truefp16_backend
: autopush_to_hub_model_id
: Nonepush_to_hub_organization
: Nonemp_parameters
:auto_find_batch_size
: Falsefull_determinism
: Falsetorchdynamo
: Noneray_scope
: lastddp_timeout
: 1800torch_compile
: Falsetorch_compile_backend
: Nonetorch_compile_mode
: Nonedispatch_batches
: Nonesplit_batches
: Noneinclude_tokens_per_second
: Falseinclude_num_input_tokens_seen
: Falseneftune_noise_alpha
: Noneoptim_target_modules
: Nonebatch_sampler
: no_duplicatesmulti_dataset_batch_sampler
: proportional
Training Logs
Epoch | Step | Training Loss | sts-test-128_spearman_cosine | sts-test-256_spearman_cosine | sts-test-64_spearman_cosine |
---|---|---|---|---|---|
0.0229 | 100 | 12.9498 | - | - | - |
0.0459 | 200 | 9.9003 | - | - | - |
0.0688 | 300 | 8.6333 | - | - | - |
0.0918 | 400 | 8.0124 | - | - | - |
0.1147 | 500 | 7.2322 | - | - | - |
0.1376 | 600 | 6.936 | - | - | - |
0.1606 | 700 | 7.2855 | - | - | - |
0.1835 | 800 | 6.5985 | - | - | - |
0.2065 | 900 | 6.4369 | - | - | - |
0.2294 | 1000 | 6.2767 | - | - | - |
0.2524 | 1100 | 6.4011 | - | - | - |
0.2753 | 1200 | 6.1288 | - | - | - |
0.2982 | 1300 | 6.1466 | - | - | - |
0.3212 | 1400 | 5.9279 | - | - | - |
0.3441 | 1500 | 5.8959 | - | - | - |
0.3671 | 1600 | 5.5911 | - | - | - |
0.3900 | 1700 | 5.5258 | - | - | - |
0.4129 | 1800 | 5.5835 | - | - | - |
0.4359 | 1900 | 5.4701 | - | - | - |
0.4588 | 2000 | 5.3888 | - | - | - |
0.4818 | 2100 | 5.4474 | - | - | - |
0.5047 | 2200 | 5.1465 | - | - | - |
0.5276 | 2300 | 5.28 | - | - | - |
0.5506 | 2400 | 5.4184 | - | - | - |
0.5735 | 2500 | 5.3811 | - | - | - |
0.5965 | 2600 | 5.2171 | - | - | - |
0.6194 | 2700 | 5.3212 | - | - | - |
0.6423 | 2800 | 5.2493 | - | - | - |
0.6653 | 2900 | 5.459 | - | - | - |
0.6882 | 3000 | 5.068 | - | - | - |
0.7112 | 3100 | 5.1415 | - | - | - |
0.7341 | 3200 | 5.0764 | - | - | - |
0.7571 | 3300 | 6.1606 | - | - | - |
0.7800 | 3400 | 6.1028 | - | - | - |
0.8029 | 3500 | 5.7441 | - | - | - |
0.8259 | 3600 | 5.7148 | - | - | - |
0.8488 | 3700 | 5.4799 | - | - | - |
0.8718 | 3800 | 5.4396 | - | - | - |
0.8947 | 3900 | 5.3519 | - | - | - |
0.9176 | 4000 | 5.2394 | - | - | - |
0.9406 | 4100 | 5.2311 | - | - | - |
0.9635 | 4200 | 5.3486 | - | - | - |
0.9865 | 4300 | 5.215 | - | - | - |
1.0 | 4359 | - | 0.6814 | 0.6856 | 0.6755 |
Framework Versions
- Python: 3.11.9
- Sentence Transformers: 3.0.1
- Transformers: 4.40.1
- PyTorch: 2.3.0+cu121
- Accelerate: 0.29.3
- Datasets: 2.19.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",
}
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}
}
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}
}
- Downloads last month
- 4
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.
Model tree for sartifyllc/swahili-all-MiniLM-L6-v2-nli-matryoshka
Base model
sentence-transformers/all-MiniLM-L6-v2Evaluation results
- Pearson Cosine on sts test 256self-reported0.694
- Spearman Cosine on sts test 256self-reported0.686
- Pearson Manhattan on sts test 256self-reported0.689
- Spearman Manhattan on sts test 256self-reported0.687
- Pearson Euclidean on sts test 256self-reported0.691
- Spearman Euclidean on sts test 256self-reported0.691
- Pearson Dot on sts test 256self-reported0.680
- Spearman Dot on sts test 256self-reported0.668
- Pearson Max on sts test 256self-reported0.694
- Spearman Max on sts test 256self-reported0.691