metadata
language:
- en
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:101762
- loss:TripletLoss
base_model: google-bert/bert-base-uncased
widget:
- source_sentence: Why am I still afraid of the dark?
sentences:
- What one single change can change a life?
- Why do we have a dark side?
- Why are humans afraid of the dark?
- source_sentence: How did you feel when you had sex for the first time?
sentences:
- What do you mean by hypocrite?
- What is the feeling to have sexual intercourse at the first time?
- What does receiving anal sex for the first time feel like?
- source_sentence: How much sleep do we really need as an adult in a night?
sentences:
- What does histrionic personality disorder feel like physically to you?
- How much hours should we sleep daily?
- How do you sleep 7 hours a day?
- source_sentence: How can I learn English from the beginning?
sentences:
- Why am I learning English?
- How do you post a question on Quora?
- How do I learn English?
- source_sentence: How can I open my computer if I forget my password?
sentences:
- What's my state Id number?
- I forgot my security code on my Nokia 206 how can I unlock it?
- I forget my PC password what should I do to open it?
datasets:
- embedding-data/QQP_triplets
pipeline_tag: sentence-similarity
library_name: sentence-transformers
metrics:
- cosine_accuracy
model-index:
- name: SentenceTransformer based on google-bert/bert-base-uncased
results:
- task:
type: triplet
name: Triplet
dataset:
name: sentest
type: sentest
metrics:
- type: cosine_accuracy
value: 0.9882572889328003
name: Cosine Accuracy
SentenceTransformer based on google-bert/bert-base-uncased
This is a sentence-transformers model finetuned from google-bert/bert-base-uncased on the qqp_triplets 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-uncased
- Maximum Sequence Length: 512 tokens
- Output Dimensionality: 768 dimensions
- Similarity Function: Cosine Similarity
- Training Dataset:
- Language: en
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': 512, 'do_lower_case': False}) with Transformer model: 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:
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("palusi/sentest")
# Run inference
sentences = [
'How can I open my computer if I forget my password?',
'I forget my PC password what should I do to open it?',
'I forgot my security code on my Nokia 206 how can I unlock it?',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
Evaluation
Metrics
Triplet
- Dataset:
sentest - Evaluated with
TripletEvaluator
| Metric | Value |
|---|---|
| cosine_accuracy | 0.9883 |
Training Details
Training Dataset
qqp_triplets
- Dataset: qqp_triplets at f475d9c
- Size: 101,762 training samples
- Columns:
anchor,positive, andnegative - Approximate statistics based on the first 1000 samples:
anchor positive negative type string string string details - min: 6 tokens
- mean: 13.96 tokens
- max: 54 tokens
- min: 5 tokens
- mean: 13.99 tokens
- max: 52 tokens
- min: 6 tokens
- mean: 14.49 tokens
- max: 73 tokens
- Samples:
anchor positive negative Who are Mona Punjabi?Who are Mona punjabis?Why are Punjabis so proud of their Punjabi-hood?What are some of the best books on/by Bill Gates?What are the best books of Bill Gates?Are there any films about Bill Gates?Where can I get best pasta in Bangalore?Where can I get best pasta in Bangalore ?Where can I get best street food in Bangalore? - Loss:
TripletLosswith these parameters:{ "distance_metric": "TripletDistanceMetric.EUCLIDEAN", "triplet_margin": 5 }
Evaluation Dataset
qqp_triplets
- Dataset: qqp_triplets at f475d9c
- Size: 101,762 evaluation samples
- Columns:
anchor,positive, andnegative - Approximate statistics based on the first 1000 samples:
anchor positive negative type string string string details - min: 6 tokens
- mean: 13.99 tokens
- max: 61 tokens
- min: 6 tokens
- mean: 13.76 tokens
- max: 49 tokens
- min: 6 tokens
- mean: 14.75 tokens
- max: 78 tokens
- Samples:
anchor positive negative How do l study efficiently?How do you study effectively?Why can't I study efficiently?How do you commit suicide?What is the easiest way to commite suicide?What is a way to commit suicide and not damaging your organs so that they can be donated?How do you learn to speak a foreign language?What is the quickest way a person can learn to speak a new language fluently?What's the easiest foreign language for a native English speaker, living in America, to learn to speak? - Loss:
TripletLosswith these parameters:{ "distance_metric": "TripletDistanceMetric.EUCLIDEAN", "triplet_margin": 5 }
Training Hyperparameters
Non-Default Hyperparameters
eval_strategy: stepsper_device_train_batch_size: 16per_device_eval_batch_size: 16learning_rate: 2e-05weight_decay: 0.01num_train_epochs: 1warmup_ratio: 0.1fp16: Trueload_best_model_at_end: Truepush_to_hub: Truehub_model_id: palusi/sentestbatch_sampler: no_duplicates
All Hyperparameters
Click to expand
overwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 2e-05weight_decay: 0.01adam_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: Falserestore_callback_states_from_checkpoint: 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: Trueignore_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, 'non_blocking': False, '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: Trueresume_from_checkpoint: Nonehub_model_id: palusi/sentesthub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_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_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportional
Training Logs
| Epoch | Step | Training Loss | Validation Loss | sentest_cosine_accuracy |
|---|---|---|---|---|
| -1 | -1 | - | - | 0.8806 |
| 0.0983 | 500 | 2.5691 | - | - |
| 0.1965 | 1000 | 1.2284 | 0.6712 | 0.9645 |
| 0.2948 | 1500 | 0.8769 | - | - |
| 0.3930 | 2000 | 0.7151 | 0.4490 | 0.9787 |
| 0.4913 | 2500 | 0.6506 | - | - |
| 0.5895 | 3000 | 0.5855 | 0.3519 | 0.9848 |
| 0.6878 | 3500 | 0.5397 | - | - |
| 0.7860 | 4000 | 0.4998 | 0.3079 | 0.9871 |
| 0.8843 | 4500 | 0.4885 | - | - |
| 0.9825 | 5000 | 0.483 | 0.288 | 0.9883 |
- The bold row denotes the saved checkpoint.
Framework Versions
- Python: 3.11.11
- Sentence Transformers: 3.4.1
- Transformers: 4.48.2
- PyTorch: 2.5.1+cu124
- Accelerate: 1.3.0
- Datasets: 3.2.0
- Tokenizers: 0.21.0
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",
}
TripletLoss
@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}
}