Matryoshka Representation Learning
Paper • 2205.13147 • Published • 30
How to use vab46/nomic-embed-text-v1.5_Clinical-Trials_Matryoshka2 with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("vab46/nomic-embed-text-v1.5_Clinical-Trials_Matryoshka2", trust_remote_code=True)
sentences = [
"Visual Stimulation Through Video Therapy to Enhance Lower Limb Motor Recovery After Stroke Use of Intensive Visual Stimulation Through Video Therapy to Enhance Lower Limb Motor Recovery After Stroke (SIVIMI). A Single-Center Pilot Study Using a Single-Case Experimental Design (SCED)",
"What is the condition affecting the children participating in this trial?",
"What is the focus of this clinical trial?",
"What is the focus of this clinical trial?"
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]This is a sentence-transformers model finetuned from nomic-ai/nomic-embed-text-v1.5 on the Clinical_trials_anchor-positive-pairs_EmbeddingModel-data2 dataset. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, classification, clustering, and more.
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'NomicBertModel'})
(1): Pooling({'embedding_dimension': 768, 'pooling_mode': 'mean', 'include_prompt': True})
)
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("vab46/nomic-embed-text-v1.5_Clinical-Trials_Matryoshka2")
# Run inference
documents = [
'* 0-12 months of age. (Must be less than 1 year of life for the pulse oximeter portion of the study) Weight greater than 2 Kg at time of study\n* Admitted to an intensive care unit. (Not applicable for outpatient cohort)\n* Arterial line in place as standard of care (Not applicable for outpatient cohort)\n* Informed consent provided by parent or LAR.\n\n',
]
queries = [
'What age group is targeted for this clinical trial?',
'What is the focus of this clinical trial?',
'Are patients with ASA physical status IV excluded from participating in this study?',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 768] [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 0.4220, -0.1157, 0.1650]])
dim_768, dim_512, dim_256, dim_128, dim_64InformationRetrievalEvaluator with these parameters:| Metric | dim_756 | dim_512 | dim_256 | dim_128 | dim_64 |
|---|---|---|---|---|---|
| cosine_accuracy@1 | 0.2891 | 0.2834 | 0.2651 | 0.2514 | 0.2183 |
| cosine_accuracy@3 | 0.3703 | 0.3657 | 0.3531 | 0.336 | 0.2949 |
| cosine_accuracy@5 | 0.3943 | 0.3897 | 0.3783 | 0.3726 | 0.3223 |
| cosine_accuracy@10 | 0.4331 | 0.4286 | 0.4217 | 0.408 | 0.3669 |
| cosine_precision@1 | 0.2891 | 0.2834 | 0.2651 | 0.2514 | 0.2183 |
| cosine_precision@3 | 0.1234 | 0.1219 | 0.1177 | 0.112 | 0.0983 |
| cosine_precision@5 | 0.0789 | 0.0779 | 0.0757 | 0.0745 | 0.0645 |
| cosine_precision@10 | 0.0433 | 0.0429 | 0.0422 | 0.0408 | 0.0367 |
| cosine_recall@1 | 0.2891 | 0.2834 | 0.2651 | 0.2514 | 0.2183 |
| cosine_recall@3 | 0.3703 | 0.3657 | 0.3531 | 0.336 | 0.2949 |
| cosine_recall@5 | 0.3943 | 0.3897 | 0.3783 | 0.3726 | 0.3223 |
| cosine_recall@10 | 0.4331 | 0.4286 | 0.4217 | 0.408 | 0.3669 |
| cosine_ndcg@10 | 0.3588 | 0.355 | 0.341 | 0.3281 | 0.2878 |
| cosine_mrr@10 | 0.3354 | 0.3316 | 0.3154 | 0.3027 | 0.2631 |
| cosine_map@100 | 0.3407 | 0.3368 | 0.3208 | 0.3075 | 0.2691 |
| metric | dimensions | base_value | ft_value | diff | %change | |
|---|---|---|---|---|---|---|
| 0 | accuracy@1 | 768 | 0.169143 | 0.288 | 0.118857 | 70.27027 |
| 1 | accuracy@1 | 512 | 0.164571 | 0.282286 | 0.117714 | 71.52778 |
| 2 | accuracy@1 | 256 | 0.162286 | 0.266286 | 0.104 | 64.08451 |
| 3 | accuracy@1 | 128 | 0.139429 | 0.251429 | 0.112 | 80.32787 |
| 4 | accuracy@1 | 64 | 0.123429 | 0.218286 | 0.094857 | 76.85185 |
| 19 | accuracy@10 | 64 | 0.251429 | 0.368 | 0.116571 | 46.36364 |
| 18 | accuracy@10 | 128 | 0.290286 | 0.408 | 0.117714 | 40.55118 |
| 17 | accuracy@10 | 256 | 0.309714 | 0.421714 | 0.112 | 36.16236 |
| 15 | accuracy@10 | 768 | 0.318857 | 0.433143 | 0.114286 | 35.84229 |
| 16 | accuracy@10 | 512 | 0.310857 | 0.428571 | 0.117714 | 37.86765 |
| 5 | accuracy@3 | 768 | 0.261714 | 0.370286 | 0.108571 | 41.48472 |
| 9 | accuracy@3 | 64 | 0.182857 | 0.294857 | 0.112 | 61.25 |
| 6 | accuracy@3 | 512 | 0.251429 | 0.365714 | 0.114286 | 45.45455 |
| 7 | accuracy@3 | 256 | 0.244571 | 0.353143 | 0.108571 | 44.39252 |
| 8 | accuracy@3 | 128 | 0.219429 | 0.336 | 0.116571 | 53.125 |
| 10 | accuracy@5 | 768 | 0.273143 | 0.394286 | 0.121143 | 44.35146 |
| 13 | accuracy@5 | 128 | 0.259429 | 0.373714 | 0.114286 | 44.05286 |
| 12 | accuracy@5 | 256 | 0.268571 | 0.378286 | 0.109714 | 40.85106 |
| 11 | accuracy@5 | 512 | 0.272 | 0.389714 | 0.117714 | 43.27731 |
| 14 | accuracy@5 | 64 | 0.217143 | 0.322286 | 0.105143 | 48.42105 |
| 60 | map@100 | 768 | 0.223553 | 0.340056 | 0.116504 | 52.11472 |
| 64 | map@100 | 64 | 0.166605 | 0.269093 | 0.102488 | 61.51569 |
| 61 | map@100 | 512 | 0.219486 | 0.336243 | 0.116757 | 53.19588 |
| 62 | map@100 | 256 | 0.214226 | 0.321319 | 0.107093 | 49.99074 |
| 63 | map@100 | 128 | 0.193375 | 0.307525 | 0.11415 | 59.03051 |
| 69 | mrr@10 | 64 | 0.162 | 0.263235 | 0.101235 | 62.49115 |
| 68 | mrr@10 | 128 | 0.189027 | 0.302751 | 0.113725 | 60.16329 |
| 67 | mrr@10 | 256 | 0.209354 | 0.316002 | 0.106648 | 50.94157 |
| 66 | mrr@10 | 512 | 0.214169 | 0.330985 | 0.116816 | 54.54395 |
| 65 | mrr@10 | 768 | 0.218709 | 0.33481 | 0.116101 | 53.08479 |
| 71 | ndcg@10 | 512 | 0.237504 | 0.354557 | 0.117054 | 49.28502 |
| 72 | ndcg@10 | 256 | 0.23342 | 0.341389 | 0.107969 | 46.25535 |
| 70 | ndcg@10 | 768 | 0.242732 | 0.358385 | 0.115653 | 47.64648 |
| 73 | ndcg@10 | 128 | 0.213486 | 0.328125 | 0.114639 | 53.69842 |
| 74 | ndcg@10 | 64 | 0.183309 | 0.288149 | 0.10484 | 57.19309 |
| 40 | precision@1 | 768 | 0.169143 | 0.288 | 0.118857 | 70.27027 |
| 41 | precision@1 | 512 | 0.164571 | 0.282286 | 0.117714 | 71.52778 |
| 42 | precision@1 | 256 | 0.162286 | 0.266286 | 0.104 | 64.08451 |
| 43 | precision@1 | 128 | 0.139429 | 0.251429 | 0.112 | 80.32787 |
| 44 | precision@1 | 64 | 0.123429 | 0.218286 | 0.094857 | 76.85185 |
| 59 | precision@10 | 64 | 0.025143 | 0.0368 | 0.011657 | 46.36364 |
| 57 | precision@10 | 256 | 0.030971 | 0.042171 | 0.0112 | 36.16236 |
| 56 | precision@10 | 512 | 0.031086 | 0.042857 | 0.011771 | 37.86765 |
| 55 | precision@10 | 768 | 0.031886 | 0.043314 | 0.011429 | 35.84229 |
| 58 | precision@10 | 128 | 0.029029 | 0.0408 | 0.011771 | 40.55118 |
| 49 | precision@3 | 64 | 0.060952 | 0.098286 | 0.037333 | 61.25 |
| 48 | precision@3 | 128 | 0.073143 | 0.112 | 0.038857 | 53.125 |
| 47 | precision@3 | 256 | 0.081524 | 0.117714 | 0.03619 | 44.39252 |
| 45 | precision@3 | 768 | 0.087238 | 0.123429 | 0.03619 | 41.48472 |
| 46 | precision@3 | 512 | 0.08381 | 0.121905 | 0.038095 | 45.45455 |
| 50 | precision@5 | 768 | 0.054629 | 0.078857 | 0.024229 | 44.35146 |
| 51 | precision@5 | 512 | 0.0544 | 0.077943 | 0.023543 | 43.27731 |
| 52 | precision@5 | 256 | 0.053714 | 0.075657 | 0.021943 | 40.85106 |
| 53 | precision@5 | 128 | 0.051886 | 0.074743 | 0.022857 | 44.05286 |
| 54 | precision@5 | 64 | 0.043429 | 0.064457 | 0.021029 | 48.42105 |
| 23 | recall@1 | 128 | 0.139429 | 0.251429 | 0.112 | 80.32787 |
| 24 | recall@1 | 64 | 0.123429 | 0.218286 | 0.094857 | 76.85185 |
| 22 | recall@1 | 256 | 0.162286 | 0.266286 | 0.104 | 64.08451 |
| 21 | recall@1 | 512 | 0.164571 | 0.282286 | 0.117714 | 71.52778 |
| 20 | recall@1 | 768 | 0.169143 | 0.288 | 0.118857 | 70.27027 |
| 35 | recall@10 | 768 | 0.318857 | 0.433143 | 0.114286 | 35.84229 |
| 39 | recall@10 | 64 | 0.251429 | 0.368 | 0.116571 | 46.36364 |
| 38 | recall@10 | 128 | 0.290286 | 0.408 | 0.117714 | 40.55118 |
| 36 | recall@10 | 512 | 0.310857 | 0.428571 | 0.117714 | 37.86765 |
| 37 | recall@10 | 256 | 0.309714 | 0.421714 | 0.112 | 36.16236 |
| 29 | recall@3 | 64 | 0.182857 | 0.294857 | 0.112 | 61.25 |
| 28 | recall@3 | 128 | 0.219429 | 0.336 | 0.116571 | 53.125 |
| 27 | recall@3 | 256 | 0.244571 | 0.353143 | 0.108571 | 44.39252 |
| 26 | recall@3 | 512 | 0.251429 | 0.365714 | 0.114286 | 45.45455 |
| 25 | recall@3 | 768 | 0.261714 | 0.370286 | 0.108571 | 41.48472 |
| 31 | recall@5 | 512 | 0.272 | 0.389714 | 0.117714 | 43.27731 |
| 30 | recall@5 | 768 | 0.273143 | 0.394286 | 0.121143 | 44.35146 |
| 34 | recall@5 | 64 | 0.217143 | 0.322286 | 0.105143 | 48.42105 |
| 33 | recall@5 | 128 | 0.259429 | 0.373714 | 0.114286 | 44.05286 |
| 32 | recall@5 | 256 | 0.268571 | 0.378286 | 0.109714 | 40.85106 |
| AVERAGE | 51.87574 | |||||
| VARIANCE | 159.257 | |||||
| STD_DEV | 12.61971 |
positive and anchor| positive | anchor | |
|---|---|---|
| type | string | string |
| modality | text | text |
| details |
|
|
| positive | anchor |
|---|---|
* - Age 18 years or older |
What are the specific kidney diseases included in this clinical trial? |
* Written informed consent obtained and documented by the participant's signature. |
What type of cancer or non-cancerous condition are participants diagnosed with? |
* Patients aged 16 years or older at the time of debonding |
What is the minimum age requirement for patients in this clinical trial? |
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
}
num_train_epochs: 4learning_rate: 2e-05lr_scheduler_type: cosinewarmup_steps: 0.1gradient_accumulation_steps: 4fp16: Trueper_device_eval_batch_size: 32load_best_model_at_end: Truebatch_sampler: no_duplicatesper_device_train_batch_size: 8num_train_epochs: 4max_steps: -1learning_rate: 2e-05lr_scheduler_type: cosinelr_scheduler_kwargs: Nonewarmup_steps: 0.1optim: adamw_torch_fusedoptim_args: Noneweight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08optim_target_modules: Nonegradient_accumulation_steps: 4average_tokens_across_devices: Truemax_grad_norm: 1.0label_smoothing_factor: 0.0bf16: Falsefp16: Truebf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonegradient_checkpointing: Falsegradient_checkpointing_kwargs: Nonetorch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneuse_liger_kernel: Falseliger_kernel_config: Noneuse_cache: Falseneftune_noise_alpha: Nonetorch_empty_cache_steps: Noneauto_find_batch_size: Falselog_on_each_node: Truelogging_nan_inf_filter: Trueinclude_num_input_tokens_seen: nolog_level: passivelog_level_replica: warningdisable_tqdm: Falseproject: huggingfacetrackio_space_id: Nonetrackio_bucket_id: Nonetrackio_static_space_id: Noneper_device_eval_batch_size: 32prediction_loss_only: Trueeval_on_start: Falseeval_do_concat_batches: Trueeval_use_gather_object: Falseeval_accumulation_steps: Noneinclude_for_metrics: []batch_eval_metrics: Falsesave_only_model: Falsesave_on_each_node: Falseenable_jit_checkpoint: Falsepush_to_hub: Falsehub_private_repo: Nonehub_model_id: Nonehub_strategy: every_savehub_always_push: Falsehub_revision: Noneload_best_model_at_end: Trueignore_data_skip: Falserestore_callback_states_from_checkpoint: Falsefull_determinism: Falseseed: 42data_seed: Noneuse_cpu: Falseaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}parallelism_config: Nonedataloader_drop_last: Falsedataloader_num_workers: 0dataloader_pin_memory: Truedataloader_persistent_workers: Falsedataloader_prefetch_factor: Nonedataloader_multiprocessing_context: Nonedataloader_in_order: Trueremove_unused_columns: Truelabel_names: Nonetrain_sampling_strategy: randomlength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falseddp_static_graph: Noneddp_backend: Noneddp_timeout: 1800fsdp: Nonefsdp_config: Nonedeepspeed: Nonedebug: []skip_memory_metrics: Truedo_predict: Falseresume_from_checkpoint: Nonelocal_rank: -1prompts: Nonebatch_sampler: no_duplicatesmulti_dataset_batch_sampler: proportionalrouter_mapping: {}learning_rate_mapping: {}warmup_ratio: None| Epoch | Step | Training Loss | dim_768_cosine_ndcg@10 | dim_512_cosine_ndcg@10 | dim_256_cosine_ndcg@10 | dim_128_cosine_ndcg@10 | dim_64_cosine_ndcg@10 |
|---|---|---|---|---|---|---|---|
| 0.0407 | 10 | 5.5717 | - | - | - | - | - |
| 0.0813 | 20 | 4.9373 | - | - | - | - | - |
| 0.1220 | 30 | 4.5507 | - | - | - | - | - |
| 0.1626 | 40 | 3.8079 | - | - | - | - | - |
| 0.2033 | 50 | 2.9460 | - | - | - | - | - |
| 0.2439 | 60 | 3.1437 | - | - | - | - | - |
| 0.2846 | 70 | 2.5972 | - | - | - | - | - |
| 0.3252 | 80 | 2.5577 | - | - | - | - | - |
| 0.3659 | 90 | 2.5690 | - | - | - | - | - |
| 0.4065 | 100 | 2.1669 | - | - | - | - | - |
| 0.4472 | 110 | 2.2879 | - | - | - | - | - |
| 0.4878 | 120 | 2.6614 | - | - | - | - | - |
| 0.5285 | 130 | 2.2336 | - | - | - | - | - |
| 0.5691 | 140 | 2.2764 | - | - | - | - | - |
| 0.6098 | 150 | 2.3098 | - | - | - | - | - |
| 0.6504 | 160 | 2.0261 | - | - | - | - | - |
| 0.6911 | 170 | 2.1120 | - | - | - | - | - |
| 0.7317 | 180 | 2.1823 | - | - | - | - | - |
| 0.7724 | 190 | 2.0571 | - | - | - | - | - |
| 0.8130 | 200 | 1.9998 | - | - | - | - | - |
| 0.8537 | 210 | 1.5755 | - | - | - | - | - |
| 0.8943 | 220 | 1.9850 | - | - | - | - | - |
| 0.9350 | 230 | 1.8681 | - | - | - | - | - |
| 0.9756 | 240 | 1.6443 | - | - | - | - | - |
| 1.0 | 246 | - | 0.3390 | 0.3358 | 0.3218 | 0.3063 | 0.2723 |
| 1.0163 | 250 | 0.7610 | - | - | - | - | - |
| 1.0569 | 260 | 1.1679 | - | - | - | - | - |
| 1.0976 | 270 | 1.4650 | - | - | - | - | - |
| 1.1382 | 280 | 1.6955 | - | - | - | - | - |
| 1.1789 | 290 | 1.6553 | - | - | - | - | - |
| 1.2195 | 300 | 1.6029 | - | - | - | - | - |
| 1.2602 | 310 | 1.4699 | - | - | - | - | - |
| 1.3008 | 320 | 1.6808 | - | - | - | - | - |
| 1.3415 | 330 | 1.7057 | - | - | - | - | - |
| 1.3821 | 340 | 1.1027 | - | - | - | - | - |
| 1.4228 | 350 | 1.2826 | - | - | - | - | - |
| 1.4634 | 360 | 1.7582 | - | - | - | - | - |
| 1.5041 | 370 | 1.2342 | - | - | - | - | - |
| 1.5447 | 380 | 1.4462 | - | - | - | - | - |
| 1.5854 | 390 | 1.2926 | - | - | - | - | - |
| 1.6260 | 400 | 1.4036 | - | - | - | - | - |
| 1.6667 | 410 | 1.6060 | - | - | - | - | - |
| 1.7073 | 420 | 1.3300 | - | - | - | - | - |
| 1.7480 | 430 | 1.5389 | - | - | - | - | - |
| 1.7886 | 440 | 1.5757 | - | - | - | - | - |
| 1.8293 | 450 | 1.6651 | - | - | - | - | - |
| 1.8699 | 460 | 1.1993 | - | - | - | - | - |
| 1.9106 | 470 | 1.5296 | - | - | - | - | - |
| 1.9512 | 480 | 1.4255 | - | - | - | - | - |
| 1.9919 | 490 | 0.3873 | - | - | - | - | - |
| 2.0 | 492 | - | 0.3547 | 0.3516 | 0.3373 | 0.3165 | 0.2827 |
| 2.0325 | 500 | 0.7046 | - | - | - | - | - |
| 2.0732 | 510 | 0.6703 | - | - | - | - | - |
| 2.1138 | 520 | 0.9343 | - | - | - | - | - |
| 2.1545 | 530 | 1.1007 | - | - | - | - | - |
| 2.1951 | 540 | 1.0442 | - | - | - | - | - |
| 2.2358 | 550 | 0.9432 | - | - | - | - | - |
| 2.2764 | 560 | 0.9315 | - | - | - | - | - |
| 2.3171 | 570 | 0.8180 | - | - | - | - | - |
| 2.3577 | 580 | 1.1383 | - | - | - | - | - |
| 2.3984 | 590 | 0.9215 | - | - | - | - | - |
| 2.4390 | 600 | 0.7907 | - | - | - | - | - |
| 2.4797 | 610 | 1.0829 | - | - | - | - | - |
| 2.5203 | 620 | 0.9923 | - | - | - | - | - |
| 2.5610 | 630 | 1.0240 | - | - | - | - | - |
| 2.6016 | 640 | 0.8502 | - | - | - | - | - |
| 2.6423 | 650 | 0.7081 | - | - | - | - | - |
| 2.6829 | 660 | 1.0104 | - | - | - | - | - |
| 2.7236 | 670 | 0.9618 | - | - | - | - | - |
| 2.7642 | 680 | 1.0599 | - | - | - | - | - |
| 2.8049 | 690 | 0.8671 | - | - | - | - | - |
| 2.8455 | 700 | 0.9581 | - | - | - | - | - |
| 2.8862 | 710 | 0.9968 | - | - | - | - | - |
| 2.9268 | 720 | 1.0256 | - | - | - | - | - |
| 2.9675 | 730 | 0.7552 | - | - | - | - | - |
| 3.0 | 738 | - | 0.3559 | 0.3547 | 0.3395 | 0.3269 | 0.2862 |
| 3.0081 | 740 | 0.0859 | - | - | - | - | - |
| 3.0488 | 750 | 0.8926 | - | - | - | - | - |
| 3.0894 | 760 | 0.6620 | - | - | - | - | - |
| 3.1301 | 770 | 0.6895 | - | - | - | - | - |
| 3.1707 | 780 | 0.7186 | - | - | - | - | - |
| 3.2114 | 790 | 0.5966 | - | - | - | - | - |
| 3.2520 | 800 | 0.8555 | - | - | - | - | - |
| 3.2927 | 810 | 0.4267 | - | - | - | - | - |
| 3.3333 | 820 | 0.7140 | - | - | - | - | - |
| 3.3740 | 830 | 0.6585 | - | - | - | - | - |
| 3.4146 | 840 | 0.4519 | - | - | - | - | - |
| 3.4553 | 850 | 0.5665 | - | - | - | - | - |
| 3.4959 | 860 | 0.6698 | - | - | - | - | - |
| 3.5366 | 870 | 0.6609 | - | - | - | - | - |
| 3.5772 | 880 | 0.6900 | - | - | - | - | - |
| 3.6179 | 890 | 0.9147 | - | - | - | - | - |
| 3.6585 | 900 | 0.8602 | - | - | - | - | - |
| 3.6992 | 910 | 0.4820 | - | - | - | - | - |
| 3.7398 | 920 | 0.6155 | - | - | - | - | - |
| 3.7805 | 930 | 0.8543 | - | - | - | - | - |
| 3.8211 | 940 | 0.5862 | - | - | - | - | - |
| 3.8618 | 950 | 0.6409 | - | - | - | - | - |
| 3.9024 | 960 | 0.8298 | - | - | - | - | - |
| 3.9431 | 970 | 0.8156 | - | - | - | - | - |
| 3.9837 | 980 | 0.1714 | - | - | - | - | - |
| 4.0 | 984 | - | 0.3588 | 0.355 | 0.341 | 0.3281 | 0.2878 |
@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",
}
@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}
}
@misc{oord2019representationlearningcontrastivepredictive,
title={Representation Learning with Contrastive Predictive Coding},
author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
year={2019},
eprint={1807.03748},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/1807.03748},
}
Base model
nomic-ai/nomic-embed-text-v1.5