Views
No views yet
SentenceTransformer(
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False, 'architecture': '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()
)pip install -U sentence-transformers1from sentence_transformers import SentenceTransformer
2
3# Download from the 🤗 Hub
4model = SentenceTransformer("1tunadogan/gte-small-financial-matryoshka")
5# Run inference
6sentences = [
7 "How much did GM Financial's primary source of cash from finance charge income increase in 2023 compared to the previous year?",
8 'In the year ended December 31, 2023, Net cash provided by operating activities increased primarily due to an increase in finance charge income of $1.7 billion.',
9 "A corporate entity referred to as a management services organization (MSO) provides various management services and keeps the physician entity 'friendly' through a stock transfer restriction agreement and/or other relationships. The fees under the management services arrangement must comply with state fee splitting laws, which in some states may prohibit percentage-based fees.",
10]
11embeddings = model.encode(sentences)
12print(embeddings.shape)
13# [3, 384]
14
15# Get the similarity scores for the embeddings
16similarities = model.similarity(embeddings, embeddings)
17print(similarities)
18# tensor([[1.0000, 0.6872, 0.2882],
19# [0.6872, 1.0000, 0.3045],
20# [0.2882, 0.3045, 1.0000]])dim_384InformationRetrievalEvaluator with these parameters:
1{
2 "truncate_dim": 384
3}| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.6914 |
| cosine_accuracy@3 | 0.82 |
| cosine_accuracy@5 | 0.8614 |
| cosine_accuracy@10 | 0.8957 |
| cosine_precision@1 | 0.6914 |
| cosine_precision@3 | 0.2733 |
| cosine_precision@5 | 0.1723 |
| cosine_precision@10 | 0.0896 |
| cosine_recall@1 | 0.6914 |
| cosine_recall@3 | 0.82 |
| cosine_recall@5 | 0.8614 |
| cosine_recall@10 | 0.8957 |
| cosine_ndcg@10 | 0.7945 |
| cosine_mrr@10 | 0.7618 |
| cosine_map@100 | 0.7656 |
dim_256InformationRetrievalEvaluator with these parameters:
1{
2 "truncate_dim": 256
3}| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.68 |
| cosine_accuracy@3 | 0.8157 |
| cosine_accuracy@5 | 0.8557 |
| cosine_accuracy@10 | 0.8914 |
| cosine_precision@1 | 0.68 |
| cosine_precision@3 | 0.2719 |
| cosine_precision@5 | 0.1711 |
| cosine_precision@10 | 0.0891 |
| cosine_recall@1 | 0.68 |
| cosine_recall@3 | 0.8157 |
| cosine_recall@5 | 0.8557 |
| cosine_recall@10 | 0.8914 |
| cosine_ndcg@10 | 0.7879 |
| cosine_mrr@10 | 0.7545 |
| cosine_map@100 | 0.7583 |
dim_128InformationRetrievalEvaluator with these parameters:
1{
2 "truncate_dim": 128
3}| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.6743 |
| cosine_accuracy@3 | 0.8043 |
| cosine_accuracy@5 | 0.8386 |
| cosine_accuracy@10 | 0.8814 |
| cosine_precision@1 | 0.6743 |
| cosine_precision@3 | 0.2681 |
| cosine_precision@5 | 0.1677 |
| cosine_precision@10 | 0.0881 |
| cosine_recall@1 | 0.6743 |
| cosine_recall@3 | 0.8043 |
| cosine_recall@5 | 0.8386 |
| cosine_recall@10 | 0.8814 |
| cosine_ndcg@10 | 0.778 |
| cosine_mrr@10 | 0.7448 |
| cosine_map@100 | 0.7491 |
dim_64InformationRetrievalEvaluator with these parameters:
1{
2 "truncate_dim": 64
3}| Metric | Value |
|---|---|
| cosine_accuracy@1 | 0.65 |
| cosine_accuracy@3 | 0.7729 |
| cosine_accuracy@5 | 0.8243 |
| cosine_accuracy@10 | 0.8643 |
| cosine_precision@1 | 0.65 |
| cosine_precision@3 | 0.2576 |
| cosine_precision@5 | 0.1649 |
| cosine_precision@10 | 0.0864 |
| cosine_recall@1 | 0.65 |
| cosine_recall@3 | 0.7729 |
| cosine_recall@5 | 0.8243 |
| cosine_recall@10 | 0.8643 |
| cosine_ndcg@10 | 0.7562 |
| cosine_mrr@10 | 0.7217 |
| cosine_map@100 | 0.7263 |
anchor and positive| anchor | positive | |
|---|---|---|
| type | string | string |
| details |
|
|
| anchor | positive |
|---|---|
What was the amount of cash generated from operations by the company in fiscal year 2023? | Highlights during fiscal year 2023 include the following: We generated $18,085 million of cash from operations. |
How much were unrealized losses on U.S. government and agency securities for those held for 12 months or greater as of June 30, 2023? | U.S. government and agency securities | $ | 7,950 | | $ | (336 | ) | $ | 45,273 | $ | (3,534 | ) | $ | 53,223 | $ | (3,870 | ) |
How is the impairment of assets assessed for projects still under development? | For assets under development, assets are grouped and assessed for impairment by estimating the undiscounted cash flows, which include remaining construction costs, over the asset's remaining useful life. If cash flows do not exceed the carrying amount, impairment based on fair value versus carrying value is considered. |
MatryoshkaLoss with these parameters:
1{
2 "loss": "MultipleNegativesRankingLoss",
3 "matryoshka_dims": [
4 384,
5 256,
6 128,
7 64
8 ],
9 "matryoshka_weights": [
10 1.0,
11 1.0,
12 1.0,
13 1.0
14 ],
15 "n_dims_per_step": -1
16}anchor and positive| anchor | positive | |
|---|---|---|
| type | string | string |
| details |
|
|
| anchor | positive |
|---|---|
How much were the company's debt obligations as of December 31, 2023? | The company's debt obligations as of December 31, 2023, totaled $2,299,887 thousand. |
What are the specific structures and legal considerations for a management services organization (MSO) in relation to its relationship with physician owners? | A corporate entity referred to as a management services organization (MSO) provides various management services and keeps the physician entity 'friendly' through a stock transfer restriction agreement and/or other relationships. The fees under the management services arrangement must comply with state fee splitting laws, which in some states may prohibit percentage-based fees. |
Where does Eli Lilly and Company manufacture and distribute its products? | We manufacture and distribute our products through facilities in the United States (U.S.), including Puerto Rico, and in Europe and Asia. |
MatryoshkaLoss with these parameters:
1{
2 "loss": "MultipleNegativesRankingLoss",
3 "matryoshka_dims": [
4 384,
5 256,
6 128,
7 64
8 ],
9 "matryoshka_weights": [
10 1.0,
11 1.0,
12 1.0,
13 1.0
14 ],
15 "n_dims_per_step": -1
16}eval_strategy: epochgradient_accumulation_steps: 32learning_rate: 2e-05num_train_epochs: 4lr_scheduler_type: cosinewarmup_ratio: 0.1tf32: Falseload_best_model_at_end: Trueoptim: adamw_torchdataloader_pin_memory: Falsegradient_checkpointing: Truebatch_sampler: no_duplicatesoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: epochprediction_loss_only: Trueper_device_train_batch_size: 8per_device_eval_batch_size: 8per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 32eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 2e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1.0num_train_epochs: 4max_steps: -1lr_scheduler_type: cosinelr_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: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Falselocal_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}parallelism_config: Nonedeepspeed: 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: Falsedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsehub_revision: Nonegradient_checkpointing: Truegradient_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: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseliger_kernel_config: Noneeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}| Epoch | Step | Training Loss | Validation Loss | dim_384_cosine_ndcg@10 | dim_256_cosine_ndcg@10 | dim_128_cosine_ndcg@10 | dim_64_cosine_ndcg@10 |
|---|---|---|---|---|---|---|---|
| 0.4061 | 10 | 1.8735 | - | - | - | - | - |
| 0.8122 | 20 | 0.8955 | - | - | - | - | - |
| 1.0 | 25 | - | 0.2409 | 0.7822 | 0.7763 | 0.7623 | 0.7490 |
| 1.2030 | 30 | 0.3892 | - | - | - | - | - |
| 1.6091 | 40 | 0.2253 | - | - | - | - | - |
| 2.0 | 50 | 0.1488 | 0.1453 | 0.7919 | 0.7801 | 0.7701 | 0.7479 |
| 2.4061 | 60 | 0.1474 | - | - | - | - | - |
| 2.8122 | 70 | 0.1287 | - | - | - | - | - |
| 3.0 | 75 | - | 0.1280 | 0.7951 | 0.7883 | 0.7762 | 0.7562 |
| 3.2030 | 80 | 0.0948 | - | - | - | - | - |
| 3.6091 | 90 | 0.0952 | - | - | - | - | - |
| 4.0 | 100 | 0.0974 | 0.1285 | 0.7945 | 0.7879 | 0.778 | 0.7562 |
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}1@misc{kusupati2024matryoshka,
2 title={Matryoshka Representation Learning},
3 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},
4 year={2024},
5 eprint={2205.13147},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG}
8}1@misc{henderson2017efficient,
2 title={Efficient Natural Language Response Suggestion for Smart Reply},
3 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},
4 year={2017},
5 eprint={1705.00652},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}