Static Embeddings with BERT uncased tokenizer finetuned on GooAQ pairs
This is a sentence-transformers model trained on the gooaq dataset. It maps sentences & paragraphs to a 1024-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
- Maximum Sequence Length: inf tokens
- Output Dimensionality: 1024 tokens
- Similarity Function: Cosine Similarity
- Training Dataset:
- Language: en
- License: apache-2.0
Model Sources
- Documentation: Sentence Transformers Documentation
- Repository: Sentence Transformers on GitHub
- Hugging Face: Sentence Transformers on Hugging Face
Full Model Architecture
SentenceTransformer(
(0): StaticEmbedding(
(embedding): EmbeddingBag(30522, 1024, mode='mean')
)
)
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("tomaarsen/static-bert-uncased-gooaq-beir-4")
# Run inference
sentences = [
"how to reverse a video on tiktok that's not yours?",
'[\'Tap "Effects" at the bottom of your screen — it\\\'s an icon that looks like a clock. Open the Effects menu. ... \', \'At the end of the new list that appears, tap "Time." Select "Time" at the end. ... \', \'Select "Reverse" — you\\\'ll then see a preview of your new, reversed video appear on the screen.\']',
'Relative age is the age of a rock layer (or the fossils it contains) compared to other layers. It can be determined by looking at the position of rock layers. Absolute age is the numeric age of a layer of rocks or fossils. Absolute age can be determined by using radiometric dating.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 1024]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
Evaluation
Metrics
Information Retrieval
- Datasets:
NanoClimateFEVER
,NanoDBPedia
,NanoFEVER
,NanoFiQA2018
,NanoHotpotQA
,NanoMSMARCO
,NanoNFCorpus
,NanoNQ
,NanoQuoraRetrieval
,NanoSCIDOCS
,NanoArguAna
,NanoSciFact
andNanoTouche2020
- Evaluated with
InformationRetrievalEvaluator
Metric | NanoClimateFEVER | NanoDBPedia | NanoFEVER | NanoFiQA2018 | NanoHotpotQA | NanoMSMARCO | NanoNFCorpus | NanoNQ | NanoQuoraRetrieval | NanoSCIDOCS | NanoArguAna | NanoSciFact | NanoTouche2020 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cosine_accuracy@1 | 0.2 | 0.52 | 0.42 | 0.36 | 0.58 | 0.2 | 0.38 | 0.2 | 0.9 | 0.28 | 0.12 | 0.46 | 0.6327 |
cosine_accuracy@3 | 0.42 | 0.7 | 0.68 | 0.48 | 0.74 | 0.5 | 0.54 | 0.36 | 0.98 | 0.44 | 0.4 | 0.5 | 0.9592 |
cosine_accuracy@5 | 0.58 | 0.82 | 0.68 | 0.54 | 0.78 | 0.52 | 0.68 | 0.48 | 0.98 | 0.56 | 0.48 | 0.6 | 1.0 |
cosine_accuracy@10 | 0.76 | 0.9 | 0.82 | 0.64 | 0.86 | 0.6 | 0.68 | 0.64 | 1.0 | 0.76 | 0.64 | 0.7 | 1.0 |
cosine_precision@1 | 0.2 | 0.52 | 0.42 | 0.36 | 0.58 | 0.2 | 0.38 | 0.2 | 0.9 | 0.28 | 0.12 | 0.46 | 0.6327 |
cosine_precision@3 | 0.1667 | 0.5133 | 0.2333 | 0.22 | 0.3133 | 0.1667 | 0.36 | 0.12 | 0.3867 | 0.2133 | 0.1333 | 0.1733 | 0.6327 |
cosine_precision@5 | 0.148 | 0.48 | 0.14 | 0.16 | 0.216 | 0.104 | 0.344 | 0.096 | 0.236 | 0.168 | 0.096 | 0.128 | 0.5878 |
cosine_precision@10 | 0.104 | 0.438 | 0.086 | 0.106 | 0.126 | 0.06 | 0.264 | 0.068 | 0.134 | 0.13 | 0.064 | 0.076 | 0.5163 |
cosine_recall@1 | 0.1057 | 0.0405 | 0.3967 | 0.1734 | 0.29 | 0.2 | 0.0197 | 0.19 | 0.8107 | 0.0597 | 0.12 | 0.425 | 0.0422 |
cosine_recall@3 | 0.2223 | 0.1068 | 0.6467 | 0.3213 | 0.47 | 0.5 | 0.0742 | 0.34 | 0.922 | 0.1317 | 0.4 | 0.47 | 0.1213 |
cosine_recall@5 | 0.3057 | 0.1652 | 0.6467 | 0.3738 | 0.54 | 0.52 | 0.0954 | 0.45 | 0.926 | 0.1727 | 0.48 | 0.58 | 0.1889 |
cosine_recall@10 | 0.404 | 0.2933 | 0.7767 | 0.4787 | 0.63 | 0.6 | 0.1162 | 0.62 | 0.99 | 0.2667 | 0.64 | 0.685 | 0.3304 |
cosine_ndcg@10 | 0.3022 | 0.5008 | 0.5891 | 0.3846 | 0.563 | 0.4134 | 0.3205 | 0.3933 | 0.9424 | 0.2455 | 0.3703 | 0.5456 | 0.5635 |
cosine_mrr@10 | 0.3575 | 0.6489 | 0.546 | 0.4441 | 0.6751 | 0.3525 | 0.4863 | 0.3304 | 0.9395 | 0.397 | 0.2857 | 0.5181 | 0.7857 |
cosine_map@100 | 0.2317 | 0.3753 | 0.5326 | 0.3218 | 0.4899 | 0.3712 | 0.1224 | 0.3344 | 0.9189 | 0.1751 | 0.2982 | 0.5101 | 0.4299 |
Nano BEIR
- Dataset:
NanoBEIR_mean
- Evaluated with
NanoBEIREvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.4041 |
cosine_accuracy@3 | 0.5922 |
cosine_accuracy@5 | 0.6692 |
cosine_accuracy@10 | 0.7692 |
cosine_precision@1 | 0.4041 |
cosine_precision@3 | 0.2794 |
cosine_precision@5 | 0.2234 |
cosine_precision@10 | 0.1671 |
cosine_recall@1 | 0.221 |
cosine_recall@3 | 0.3636 |
cosine_recall@5 | 0.4188 |
cosine_recall@10 | 0.5255 |
cosine_ndcg@10 | 0.4719 |
cosine_mrr@10 | 0.5205 |
cosine_map@100 | 0.3932 |
Training Details
Training Dataset
gooaq
- Dataset: gooaq at b089f72
- Size: 3,012,496 training samples
- Columns:
question
andanswer
- Approximate statistics based on the first 1000 samples:
question answer type string string details - min: 18 characters
- mean: 43.23 characters
- max: 96 characters
- min: 55 characters
- mean: 253.36 characters
- max: 371 characters
- Samples:
question answer what is the difference between broilers and layers?
An egg laying poultry is called egger or layer whereas broilers are reared for obtaining meat. So a layer should be able to produce more number of large sized eggs, without growing too much. On the other hand, a broiler should yield more meat and hence should be able to grow well.
what is the difference between chronological order and spatial order?
As a writer, you should always remember that unlike chronological order and the other organizational methods for data, spatial order does not take into account the time. Spatial order is primarily focused on the location. All it does is take into account the location of objects and not the time.
is kamagra same as viagra?
Kamagra is thought to contain the same active ingredient as Viagra, sildenafil citrate. In theory, it should work in much the same way as Viagra, taking about 45 minutes to take effect, and lasting for around 4-6 hours. However, this will vary from person to person.
- Loss:
MatryoshkaLoss
with these parameters:{ "loss": "MultipleNegativesRankingLoss", "matryoshka_dims": [ 1024, 512, 256, 128, 64, 32 ], "matryoshka_weights": [ 1, 1, 1, 1, 1, 1 ], "n_dims_per_step": -1 }
Evaluation Dataset
gooaq
- Dataset: gooaq at b089f72
- Size: 3,012,496 evaluation samples
- Columns:
question
andanswer
- Approximate statistics based on the first 1000 samples:
question answer type string string details - min: 18 characters
- mean: 43.17 characters
- max: 98 characters
- min: 51 characters
- mean: 254.12 characters
- max: 360 characters
- Samples:
question answer how do i program my directv remote with my tv?
['Press MENU on your remote.', 'Select Settings & Help > Settings > Remote Control > Program Remote.', 'Choose the device (TV, audio, DVD) you wish to program. ... ', 'Follow the on-screen prompts to complete programming.']
are rodrigues fruit bats nocturnal?
Before its numbers were threatened by habitat destruction, storms, and hunting, some of those groups could number 500 or more members. Sunrise, sunset. Rodrigues fruit bats are most active at dawn, at dusk, and at night.
why does your heart rate increase during exercise bbc bitesize?
During exercise there is an increase in physical activity and muscle cells respire more than they do when the body is at rest. The heart rate increases during exercise. The rate and depth of breathing increases - this makes sure that more oxygen is absorbed into the blood, and more carbon dioxide is removed from it.
- Loss:
MatryoshkaLoss
with these parameters:{ "loss": "MultipleNegativesRankingLoss", "matryoshka_dims": [ 1024, 512, 256, 128, 64, 32 ], "matryoshka_weights": [ 1, 1, 1, 1, 1, 1 ], "n_dims_per_step": -1 }
Training Hyperparameters
Non-Default Hyperparameters
eval_strategy
: stepsper_device_train_batch_size
: 2048per_device_eval_batch_size
: 2048learning_rate
: 0.2num_train_epochs
: 1warmup_ratio
: 0.1bf16
: Truebatch_sampler
: no_duplicates
All Hyperparameters
Click to expand
overwrite_output_dir
: Falsedo_predict
: Falseeval_strategy
: stepsprediction_loss_only
: Trueper_device_train_batch_size
: 2048per_device_eval_batch_size
: 2048per_gpu_train_batch_size
: Noneper_gpu_eval_batch_size
: Nonegradient_accumulation_steps
: 1eval_accumulation_steps
: Nonetorch_empty_cache_steps
: Nonelearning_rate
: 0.2weight_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
: Falserestore_callback_states_from_checkpoint
: Falseno_cuda
: Falseuse_cpu
: Falseuse_mps_device
: Falseseed
: 42data_seed
: Nonejit_mode_eval
: Falseuse_ipex
: Falsebf16
: Truefp16
: Falsefp16_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, '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
: 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_eval_metrics
: Falseeval_on_start
: Falseuse_liger_kernel
: Falseeval_use_gather_object
: Falsebatch_sampler
: no_duplicatesmulti_dataset_batch_sampler
: proportional
Training Logs
Epoch | Step | Training Loss | Validation Loss | NanoClimateFEVER_cosine_ndcg@10 | NanoDBPedia_cosine_ndcg@10 | NanoFEVER_cosine_ndcg@10 | NanoFiQA2018_cosine_ndcg@10 | NanoHotpotQA_cosine_ndcg@10 | NanoMSMARCO_cosine_ndcg@10 | NanoNFCorpus_cosine_ndcg@10 | NanoNQ_cosine_ndcg@10 | NanoQuoraRetrieval_cosine_ndcg@10 | NanoSCIDOCS_cosine_ndcg@10 | NanoArguAna_cosine_ndcg@10 | NanoSciFact_cosine_ndcg@10 | NanoTouche2020_cosine_ndcg@10 | NanoBEIR_mean_cosine_ndcg@10 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | - | - | 0.0726 | 0.3715 | 0.2100 | 0.1058 | 0.3196 | 0.3109 | 0.2221 | 0.1401 | 0.6737 | 0.1618 | 0.1183 | 0.4337 | 0.1331 | 0.2518 |
0.0007 | 1 | 35.3437 | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - |
0.0682 | 100 | 16.3878 | 2.4139 | 0.2927 | 0.4729 | 0.5725 | 0.3235 | 0.5905 | 0.3674 | 0.2994 | 0.3324 | 0.9123 | 0.2326 | 0.3407 | 0.5618 | 0.5352 | 0.4488 |
0.1363 | 200 | 5.94 | 1.8298 | 0.2897 | 0.4880 | 0.5624 | 0.3447 | 0.5683 | 0.4311 | 0.3066 | 0.3502 | 0.9129 | 0.2533 | 0.3335 | 0.5696 | 0.5365 | 0.4575 |
0.2045 | 300 | 4.8307 | 1.5955 | 0.2780 | 0.4896 | 0.5746 | 0.3513 | 0.5815 | 0.4040 | 0.3125 | 0.3897 | 0.9190 | 0.2578 | 0.3556 | 0.5461 | 0.5401 | 0.4615 |
0.2727 | 400 | 4.33 | 1.4696 | 0.3113 | 0.4909 | 0.5920 | 0.3795 | 0.5836 | 0.3919 | 0.3201 | 0.4023 | 0.9355 | 0.2535 | 0.3419 | 0.5236 | 0.5524 | 0.4676 |
0.3408 | 500 | 4.0423 | 1.3887 | 0.3085 | 0.4966 | 0.5986 | 0.3794 | 0.5914 | 0.3914 | 0.3174 | 0.3590 | 0.9309 | 0.2441 | 0.3537 | 0.5311 | 0.5534 | 0.4658 |
0.4090 | 600 | 3.8422 | 1.3120 | 0.3034 | 0.5052 | 0.6075 | 0.3680 | 0.5834 | 0.4136 | 0.3122 | 0.3725 | 0.9257 | 0.2477 | 0.3583 | 0.5309 | 0.5646 | 0.4687 |
0.4772 | 700 | 3.6795 | 1.2693 | 0.2975 | 0.4988 | 0.5954 | 0.3785 | 0.5811 | 0.4160 | 0.3142 | 0.3908 | 0.9362 | 0.2471 | 0.3479 | 0.5520 | 0.5601 | 0.4704 |
0.5453 | 800 | 3.5367 | 1.2285 | 0.3011 | 0.4947 | 0.5829 | 0.3463 | 0.5689 | 0.4369 | 0.3224 | 0.3791 | 0.9310 | 0.2430 | 0.3663 | 0.5577 | 0.5585 | 0.4684 |
0.6135 | 900 | 3.4279 | 1.1963 | 0.3059 | 0.5027 | 0.5894 | 0.3674 | 0.5758 | 0.4126 | 0.3186 | 0.4066 | 0.9349 | 0.2456 | 0.3672 | 0.5560 | 0.5624 | 0.4727 |
0.6817 | 1000 | 3.3637 | 1.1652 | 0.3056 | 0.5022 | 0.5849 | 0.3702 | 0.5714 | 0.4238 | 0.3161 | 0.4007 | 0.9373 | 0.2430 | 0.3699 | 0.5618 | 0.5657 | 0.4733 |
0.7498 | 1100 | 3.2336 | 1.1312 | 0.3006 | 0.5038 | 0.5920 | 0.3884 | 0.5733 | 0.4241 | 0.3247 | 0.3974 | 0.9369 | 0.2431 | 0.3670 | 0.5644 | 0.5608 | 0.4751 |
0.8180 | 1200 | 3.1952 | 1.1132 | 0.3044 | 0.4987 | 0.5770 | 0.3630 | 0.5735 | 0.4259 | 0.3279 | 0.3955 | 0.9428 | 0.2416 | 0.3798 | 0.5659 | 0.5641 | 0.4739 |
0.8862 | 1300 | 3.1535 | 1.0926 | 0.2983 | 0.4968 | 0.5753 | 0.3812 | 0.5684 | 0.4108 | 0.3203 | 0.3965 | 0.9421 | 0.2428 | 0.3685 | 0.5608 | 0.5628 | 0.4711 |
0.9543 | 1400 | 3.0691 | 1.0862 | 0.3109 | 0.5008 | 0.5870 | 0.3761 | 0.5612 | 0.4121 | 0.3204 | 0.3947 | 0.9426 | 0.2414 | 0.3708 | 0.5456 | 0.5588 | 0.4709 |
1.0 | 1467 | - | - | 0.3022 | 0.5008 | 0.5891 | 0.3846 | 0.5630 | 0.4134 | 0.3205 | 0.3933 | 0.9424 | 0.2455 | 0.3703 | 0.5456 | 0.5635 | 0.4719 |
Environmental Impact
Carbon emissions were measured using CodeCarbon.
- Energy Consumed: 0.017 kWh
- Carbon Emitted: 0.006 kg of CO2
- Hours Used: 0.112 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.3.0.dev0
- Transformers: 4.45.2
- PyTorch: 2.5.0.dev20240807+cu121
- Accelerate: 1.0.0
- Datasets: 2.20.0
- Tokenizers: 0.20.1-dev.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",
}
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}
}
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.
Dataset used to train tomaarsen/static-bert-uncased-gooaq-beir
Evaluation results
- Cosine Accuracy@1 on NanoClimateFEVERself-reported0.200
- Cosine Accuracy@3 on NanoClimateFEVERself-reported0.420
- Cosine Accuracy@5 on NanoClimateFEVERself-reported0.580
- Cosine Accuracy@10 on NanoClimateFEVERself-reported0.760
- Cosine Precision@1 on NanoClimateFEVERself-reported0.200
- Cosine Precision@3 on NanoClimateFEVERself-reported0.167
- Cosine Precision@5 on NanoClimateFEVERself-reported0.148
- Cosine Precision@10 on NanoClimateFEVERself-reported0.104
- Cosine Recall@1 on NanoClimateFEVERself-reported0.106
- Cosine Recall@3 on NanoClimateFEVERself-reported0.222