BGE base Financial Matryoshka
This is a sentence-transformers model finetuned from BAAI/bge-base-en. 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: BAAI/bge-base-en
- Maximum Sequence Length: 512 tokens
- Output Dimensionality: 768 tokens
- Similarity Function: Cosine Similarity
- 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): Transformer({'max_seq_length': 512, 'do_lower_case': True}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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("riphunter7001x/bge-base-financial")
# Run inference
sentences = [
'The company offers Medicare eligible persons under HMO, PPO, Private Fee-For-Service, or PFFS, and Special Needs Plans, including Dual Eligible Special Needs, or D-SNP, plans in exchange for contractual payments received from CMS. With each of these products, the beneficiary receives benefits in excess of Medicare FFS, typically including reduced cost sharing, enhanced prescription drug benefits, care coordination, data analysis techniques to help identify member needs, complex case management, tools to guide members in their health care decisions, care management programs, wellness and prevention programs and, in some instances, a reduced monthly Part B premium. Most Medicare Advantage plans offer the prescription drug benefit under Part D as part of the basic plan, subject to cost sharing and other limitations.',
'What types of Medicare plans does the company offer and what are the key benefits provided?',
'What were the total cash discounts provided by AbbVie in 2023, 2022, and 2021?',
]
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
Information Retrieval
- Dataset:
dim_768
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.7029 |
cosine_accuracy@3 | 0.8371 |
cosine_accuracy@5 | 0.87 |
cosine_accuracy@10 | 0.9114 |
cosine_precision@1 | 0.7029 |
cosine_precision@3 | 0.279 |
cosine_precision@5 | 0.174 |
cosine_precision@10 | 0.0911 |
cosine_recall@1 | 0.7029 |
cosine_recall@3 | 0.8371 |
cosine_recall@5 | 0.87 |
cosine_recall@10 | 0.9114 |
cosine_ndcg@10 | 0.81 |
cosine_mrr@10 | 0.7773 |
cosine_map@100 | 0.7807 |
Information Retrieval
- Dataset:
dim_512
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.6943 |
cosine_accuracy@3 | 0.83 |
cosine_accuracy@5 | 0.87 |
cosine_accuracy@10 | 0.9129 |
cosine_precision@1 | 0.6943 |
cosine_precision@3 | 0.2767 |
cosine_precision@5 | 0.174 |
cosine_precision@10 | 0.0913 |
cosine_recall@1 | 0.6943 |
cosine_recall@3 | 0.83 |
cosine_recall@5 | 0.87 |
cosine_recall@10 | 0.9129 |
cosine_ndcg@10 | 0.8079 |
cosine_mrr@10 | 0.774 |
cosine_map@100 | 0.7773 |
Information Retrieval
- Dataset:
dim_256
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.6914 |
cosine_accuracy@3 | 0.8271 |
cosine_accuracy@5 | 0.8686 |
cosine_accuracy@10 | 0.9114 |
cosine_precision@1 | 0.6914 |
cosine_precision@3 | 0.2757 |
cosine_precision@5 | 0.1737 |
cosine_precision@10 | 0.0911 |
cosine_recall@1 | 0.6914 |
cosine_recall@3 | 0.8271 |
cosine_recall@5 | 0.8686 |
cosine_recall@10 | 0.9114 |
cosine_ndcg@10 | 0.8048 |
cosine_mrr@10 | 0.7705 |
cosine_map@100 | 0.7738 |
Information Retrieval
- Dataset:
dim_128
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.6814 |
cosine_accuracy@3 | 0.82 |
cosine_accuracy@5 | 0.8629 |
cosine_accuracy@10 | 0.91 |
cosine_precision@1 | 0.6814 |
cosine_precision@3 | 0.2733 |
cosine_precision@5 | 0.1726 |
cosine_precision@10 | 0.091 |
cosine_recall@1 | 0.6814 |
cosine_recall@3 | 0.82 |
cosine_recall@5 | 0.8629 |
cosine_recall@10 | 0.91 |
cosine_ndcg@10 | 0.7983 |
cosine_mrr@10 | 0.7624 |
cosine_map@100 | 0.7654 |
Information Retrieval
- Dataset:
dim_64
- Evaluated with
InformationRetrievalEvaluator
Metric | Value |
---|---|
cosine_accuracy@1 | 0.6629 |
cosine_accuracy@3 | 0.7986 |
cosine_accuracy@5 | 0.8414 |
cosine_accuracy@10 | 0.8971 |
cosine_precision@1 | 0.6629 |
cosine_precision@3 | 0.2662 |
cosine_precision@5 | 0.1683 |
cosine_precision@10 | 0.0897 |
cosine_recall@1 | 0.6629 |
cosine_recall@3 | 0.7986 |
cosine_recall@5 | 0.8414 |
cosine_recall@10 | 0.8971 |
cosine_ndcg@10 | 0.7802 |
cosine_mrr@10 | 0.7428 |
cosine_map@100 | 0.7467 |
Training Details
Training Dataset
Unnamed Dataset
- Size: 6,300 training samples
- Columns:
positive
andanchor
- Approximate statistics based on the first 1000 samples:
positive anchor type string string details - min: 2 tokens
- mean: 45.98 tokens
- max: 208 tokens
- min: 2 tokens
- mean: 20.76 tokens
- max: 43 tokens
- Samples:
positive anchor Adjusted EBITDA does not reflect costs associated with product recall related matters including adjustments to the return reserves, inventory write-downs, logistics costs associated with Member requests, the cost to move the recalled product for those that elect the option, subscription waiver costs of service, and recall-related hardware development and repair costs.
What specific costs associated with product recalls are excluded from Adjusted EBITDA?
The Company sold $17,704 million and $10,709 million of trade accounts receivables under this program during the years ended December 31, 2023 and 2022, respectively.
How much did the Company sell in trade accounts receivables in the year ended December 31, 2023?
Free cash flow less equipment finance leases and principal repayments of all other finance leases and financing obligations was -$12,786 million in 2022 and improved to $35,549 million in 2023.
How did the free cash flow less equipment finance leases and principal repayments of all other finance leases and financing obligations change from 2022 to 2023?
- Loss:
MatryoshkaLoss
with these parameters:{ "loss": "MultipleNegativesRankingLoss", "matryoshka_dims": [ 768, 512, 256, 128, 64 ], "matryoshka_weights": [ 1, 1, 1, 1, 1 ], "n_dims_per_step": -1 }
Training Hyperparameters
Non-Default Hyperparameters
eval_strategy
: stepsper_device_train_batch_size
: 16per_device_eval_batch_size
: 16num_train_epochs
: 10warmup_ratio
: 0.1fp16
: Truebatch_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
: Nonelearning_rate
: 5e-05weight_decay
: 0.0adam_beta1
: 0.9adam_beta2
: 0.999adam_epsilon
: 1e-08max_grad_norm
: 1.0num_train_epochs
: 10max_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
: 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
: Falsebatch_sampler
: no_duplicatesmulti_dataset_batch_sampler
: proportional
Training Logs
Epoch | Step | Training Loss | dim_128_cosine_map@100 | dim_256_cosine_map@100 | dim_512_cosine_map@100 | dim_64_cosine_map@100 | dim_768_cosine_map@100 |
---|---|---|---|---|---|---|---|
0.2538 | 100 | 2.4219 | 0.7320 | 0.7542 | 0.7582 | 0.6929 | 0.7561 |
0.5076 | 200 | 0.468 | 0.7343 | 0.7543 | 0.7574 | 0.7044 | 0.7569 |
0.7614 | 300 | 0.3159 | 0.7569 | 0.7691 | 0.7749 | 0.7288 | 0.7713 |
1.0152 | 400 | 0.317 | 0.7455 | 0.7607 | 0.7646 | 0.7124 | 0.7643 |
1.2690 | 500 | 0.2062 | 0.7465 | 0.7691 | 0.7741 | 0.7211 | 0.7748 |
1.5228 | 600 | 0.1075 | 0.7495 | 0.7599 | 0.7696 | 0.7214 | 0.7697 |
1.7766 | 700 | 0.1079 | 0.7572 | 0.7660 | 0.7752 | 0.7287 | 0.7764 |
2.0305 | 800 | 0.0477 | 0.7447 | 0.7696 | 0.7760 | 0.7211 | 0.7786 |
2.2843 | 900 | 0.0547 | 0.7569 | 0.7728 | 0.7757 | 0.7406 | 0.7746 |
2.5381 | 1000 | 0.0283 | 0.7668 | 0.7756 | 0.7823 | 0.7414 | 0.7841 |
2.7919 | 1100 | 0.0268 | 0.7540 | 0.7673 | 0.7766 | 0.7432 | 0.7748 |
3.0457 | 1200 | 0.0201 | 0.7633 | 0.7739 | 0.7799 | 0.7411 | 0.7775 |
3.2995 | 1300 | 0.0174 | 0.7635 | 0.7745 | 0.7856 | 0.7469 | 0.7851 |
3.5533 | 1400 | 0.0161 | 0.7595 | 0.7765 | 0.7825 | 0.7412 | 0.7782 |
3.8071 | 1500 | 0.0071 | 0.7552 | 0.7680 | 0.7754 | 0.7395 | 0.7739 |
4.0609 | 1600 | 0.009 | 0.7633 | 0.7767 | 0.7834 | 0.7423 | 0.7843 |
4.3147 | 1700 | 0.0079 | 0.7639 | 0.7714 | 0.7770 | 0.7414 | 0.7728 |
4.5685 | 1800 | 0.0109 | 0.7662 | 0.7775 | 0.7845 | 0.7369 | 0.7843 |
4.8223 | 1900 | 0.0024 | 0.7674 | 0.7732 | 0.7776 | 0.7425 | 0.7810 |
5.0761 | 2000 | 0.0052 | 0.7729 | 0.7746 | 0.7820 | 0.7455 | 0.7849 |
5.3299 | 2100 | 0.0022 | 0.7615 | 0.7754 | 0.7813 | 0.7446 | 0.7862 |
5.5838 | 2200 | 0.0065 | 0.7691 | 0.7761 | 0.7809 | 0.7437 | 0.7777 |
5.8376 | 2300 | 0.0011 | 0.7672 | 0.7728 | 0.7757 | 0.7446 | 0.7772 |
6.0914 | 2400 | 0.0046 | 0.7671 | 0.7778 | 0.7805 | 0.7494 | 0.7838 |
6.3452 | 2500 | 0.0013 | 0.7655 | 0.7732 | 0.7780 | 0.7478 | 0.7806 |
6.5990 | 2600 | 0.0058 | 0.7673 | 0.7753 | 0.7779 | 0.7542 | 0.7797 |
6.8528 | 2700 | 0.001 | 0.7654 | 0.7716 | 0.7738 | 0.7535 | 0.7776 |
7.1066 | 2800 | 0.0071 | 0.7684 | 0.7754 | 0.7792 | 0.7518 | 0.7824 |
7.3604 | 2900 | 0.001 | 0.7723 | 0.7765 | 0.7814 | 0.7502 | 0.7826 |
7.6142 | 3000 | 0.0028 | 0.7720 | 0.7754 | 0.7807 | 0.7498 | 0.7806 |
7.8680 | 3100 | 0.0007 | 0.7685 | 0.7728 | 0.7773 | 0.7475 | 0.7816 |
8.1218 | 3200 | 0.004 | 0.7690 | 0.7741 | 0.7773 | 0.7496 | 0.7806 |
8.3756 | 3300 | 0.0006 | 0.7683 | 0.7723 | 0.7755 | 0.7491 | 0.7791 |
8.6294 | 3400 | 0.0011 | 0.7678 | 0.7724 | 0.7756 | 0.7508 | 0.7804 |
8.8832 | 3500 | 0.0006 | 0.7655 | 0.7721 | 0.7769 | 0.7467 | 0.7825 |
9.1371 | 3600 | 0.0013 | 0.7674 | 0.7751 | 0.7788 | 0.7463 | 0.7802 |
9.3909 | 3700 | 0.0006 | 0.7664 | 0.7741 | 0.7793 | 0.7468 | 0.7821 |
9.6447 | 3800 | 0.0011 | 0.7662 | 0.7753 | 0.7782 | 0.7481 | 0.7803 |
9.8985 | 3900 | 0.0005 | 0.7654 | 0.7738 | 0.7773 | 0.7467 | 0.7807 |
Framework Versions
- Python: 3.10.12
- Sentence Transformers: 3.0.1
- Transformers: 4.41.2
- PyTorch: 2.3.0+cu121
- Accelerate: 0.31.0
- Datasets: 2.19.2
- 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
- 6
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.
Model tree for riphunter7001x/bge-base-financial
Base model
BAAI/bge-base-enEvaluation results
- Cosine Accuracy@1 on dim 768self-reported0.703
- Cosine Accuracy@3 on dim 768self-reported0.837
- Cosine Accuracy@5 on dim 768self-reported0.870
- Cosine Accuracy@10 on dim 768self-reported0.911
- Cosine Precision@1 on dim 768self-reported0.703
- Cosine Precision@3 on dim 768self-reported0.279
- Cosine Precision@5 on dim 768self-reported0.174
- Cosine Precision@10 on dim 768self-reported0.091
- Cosine Recall@1 on dim 768self-reported0.703
- Cosine Recall@3 on dim 768self-reported0.837