CoolFace
Modelpublic

cyberbabooshka/mtebai

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes12downloads
Model Card

SentenceTransformer based on mixedbread-ai/mxbai-embed-large-v1

This is a sentence-transformers model finetuned from mixedbread-ai/mxbai-embed-large-v1. 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
  • Base model: mixedbread-ai/mxbai-embed-large-v1 <!-- at revision db9d1fe0f31addb4978201b2bf3e577f3f8900d2 -->
  • Maximum Sequence Length: 512 tokens
  • Output Dimensionality: 1024 dimensions
  • Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
  (1): Pooling({'word_embedding_dimension': 1024, '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})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("cyberbabooshka/mtebai")
# Run inference
sentences = [
    'What is the relationship between the smallest perturbation of a matrix and its rank, as established in theorems regarding matrix perturbations?',
    '"Suppose $A \\in C^{m \\times n}$ has full column rank (= n). Then $\\min _{\\Delta \\in \\mathbb{C}^{m \\times n}}\\left\\{\\|\\Delta\\|_{2} \\mid A+\\Delta \\text { has rank }<n\\right\\}=\\sigma_{n}(A)$."',
    '"If a beam of light enters and then exits the elevator, the observer on Earth and the one accelerating in empty space must observe the same thing, since they cannot distinguish between being on Earth or accelerating in space. The observer in space, who is accelerating, will observe that the beam of light bends as it crosses the elevator... that means that if the path of a beam of light is curved near Earth, it must be because space itself is curved in the presence of a gravitational field!"',
]
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]

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

Evaluation

Metrics

Information Retrieval
MetricValue
cosine_accuracy@10.6095
cosine_accuracy@30.7357
cosine_accuracy@50.7881
cosine_accuracy@100.8357
cosine_precision@10.6095
cosine_precision@30.2452
cosine_precision@50.1576
cosine_precision@100.0836
cosine_recall@10.6095
cosine_recall@30.7357
cosine_recall@50.7881
cosine_recall@100.8357
cosine_ndcg@100.7209
cosine_mrr@100.6843
cosine_map@1000.6898

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

Unnamed Dataset
  • Size: 1,760 training samples
  • Columns: <code>anchor</code> and <code>positive</code>
  • Approximate statistics based on the first 1000 samples: | | anchor | positive | |:--------|:----------------------------------------------------------------------------------|:------------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 9 tokens</li><li>mean: 24.87 tokens</li><li>max: 70 tokens</li></ul> | <ul><li>min: 11 tokens</li><li>mean: 68.37 tokens</li><li>max: 500 tokens</li></ul> |
  • Samples: | anchor | positive | |:---------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>How is a proper coloring of a graph defined in the context of vertices and edges?</code> | <code>"A coloring is called proper if for each edge joining two distinct vertices, the two vertices it joins have different colors."</code> | | <code>What is the relationship between the first excited state of the box model and the p orbitals in a hydrogen atom?</code> | <code>"The p orbitals are similar to the first excited state of the box, i.e. $(n{x},n{y},n{z})=(2,1,1)$ is similar to a $p{x}$ orbital, $(n{x},n{y},n{z})=(1,2,1)$ is similar to a $p{y}$ orbital and $(n{x},n{y},n{z})=(1,1,2)$ is similar to a $p{z}$ orbital."</code> | | <code>How can the behavior of the derivative \( f'(x) \) indicate the presence of a local maximum or minimum at a critical point \( x=a \)?</code> | <code>"If there is a local maximum when \( x=a \), the function must be lower near \( x=a \) than it is right at \( x=a \). If the derivative exists near \( x=a \), this means \( f'(x)>0 \) when \( x \) is near \( a \) and \( x < a \), because the function must 'slope up' just to the left of \( a \). Similarly, \( f'(x) < 0 \) when \( x \) is near \( a \) and \( x>a \), because \( f \) slopes down from the local maximum as we move to the right. Using the same reasoning, if there is a local minimum at \( x=a \), the derivative of \( f \) must be negative just to the left of \( a \) and positive just to the right."</code> |
  • Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim"
  }

Evaluation Dataset

Unnamed Dataset
  • Size: 420 evaluation samples
  • Columns: <code>anchor</code> and <code>positive</code>
  • Approximate statistics based on the first 420 samples: | | anchor | positive | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 12 tokens</li><li>mean: 24.97 tokens</li><li>max: 66 tokens</li></ul> | <ul><li>min: 7 tokens</li><li>mean: 68.52 tokens</li><li>max: 452 tokens</li></ul> |
  • Samples: | anchor | positive | |:------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>What are the two central classes mentioned in the FileSystem framework and what do they represent?</code> | <code>"The class FileReference is the most important entry point to the framework." and "FileSystem is a powerful and elegant library to manipulate files."</code> | | <code>What is the significance of Turing's work in the context of PDE-based models for self-organization of complex systems?</code> | <code>"Turing’s monumental work on the chemical basis of morphogenesis played an important role in igniting researchers’ attention to the PDE-based continuous field models as a mathematical framework to study self-organization of complex systems."</code> | | <code>What are the two options for reducing accelerations as discussed in the passage?</code> | <code>"From the above definitions we see that there are really two options for reducing accelerations. We can reduce the amount that velocity changes, or we can increase the time over which the velocity changes (or both)."</code> |
  • Loss: <code>MultipleNegativesRankingLoss</code> with these parameters:
json
  {
      "scale": 20.0,
      "similarity_fct": "cos_sim"
  }

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: epoch
  • per_device_train_batch_size: 16
  • per_device_eval_batch_size: 16
  • learning_rate: 2e-05
  • weight_decay: 0.05
  • num_train_epochs: 10
  • warmup_ratio: 0.1
  • fp16: True
  • eval_on_start: True
All Hyperparameters

<details><summary>Click to expand</summary>

  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: epoch
  • prediction_loss_only: True
  • per_device_train_batch_size: 16
  • per_device_eval_batch_size: 16
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 2e-05
  • weight_decay: 0.05
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 10
  • max_steps: -1
  • lr_scheduler_type: linear
  • lr_scheduler_kwargs: {}
  • warmup_ratio: 0.1
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: True
  • save_on_each_node: False
  • save_only_model: False
  • restore_callback_states_from_checkpoint: False
  • no_cuda: False
  • use_cpu: False
  • use_mps_device: False
  • seed: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: False
  • fp16: True
  • fp16_opt_level: O1
  • half_precision_backend: auto
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • local_rank: 0
  • ddp_backend: None
  • tpu_num_cores: None
  • tpu_metrics_debug: False
  • debug: []
  • dataloader_drop_last: False
  • dataloader_num_workers: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • fsdp: []
  • fsdp_min_num_params: 0
  • fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamw_torch
  • optim_args: None
  • adafactor: False
  • group_by_length: False
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • skip_memory_metrics: True
  • use_legacy_prediction_loop: False
  • push_to_hub: False
  • resume_from_checkpoint: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_private_repo: None
  • hub_always_push: False
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • include_for_metrics: []
  • eval_do_concat_batches: True
  • fp16_backend: auto
  • push_to_hub_model_id: None
  • push_to_hub_organization: None
  • mp_parameters:
  • auto_find_batch_size: False
  • full_determinism: False
  • torchdynamo: None
  • ray_scope: last
  • ddp_timeout: 1800
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • eval_on_start: True
  • use_liger_kernel: False
  • eval_use_gather_object: False
  • average_tokens_across_devices: False
  • prompts: None
  • batch_sampler: batch_sampler
  • multi_dataset_batch_sampler: proportional

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Losseval_cosine_ndcg@10
00-0.09460.6733
0.009110.1033--
0.018220.0771--
0.027330.0611--
0.036440.1437--
0.045550.1298--
0.054560.2036--
0.063670.0443--
0.072780.1252--
0.081890.1543--
0.0909100.0783--
0.1110.0986--
0.1091120.0788--
0.1182130.128--
0.1273140.1214--
0.1364150.0514--
0.1455160.0867--
0.1545170.0348--
0.1636180.0464--
0.1727190.0458--
0.1818200.1203--
0.1909210.11--
0.2220.0953--
0.2091230.0253--
0.2182240.0346--
0.2273250.0736--
0.2364260.218--
0.2455270.022--
0.2545280.1169--
0.2636290.0089--
0.2727300.0151--
0.2818310.2936--
0.2909320.0334--
0.3330.1829--
0.3091340.0225--
0.3182350.0729--
0.3273360.022--
0.3364370.0068--
0.3455380.0237--
0.3545390.0235--
0.3636400.014--
0.3727410.0754--
0.3818420.0271--
0.3909430.0154--
0.4440.0128--
0.4091450.0196--
0.4182460.1689--
0.4273470.0149--
0.4364480.1441--
0.4455490.0532--
0.4545500.0204--
0.4636510.0111--
0.4727520.0612--
0.4818530.0813--
0.4909540.0044--
0.5550.0029--
0.5091560.011--
0.5182570.0098--
0.5273580.0339--
0.5364590.0284--
0.5455600.0235--
0.5545610.0117--
0.5636620.0118--
0.5727630.0047--
0.5818640.0176--
0.5909650.1605--
0.6660.3625--
0.6091670.06--
0.6182680.0283--
0.6273690.038--
0.6364700.0114--
0.6455710.0258--
0.6545720.1058--
0.6636730.0921--
0.6727740.0215--
0.6818750.0613--
0.6909760.0138--
0.7770.1214--
0.7091780.0868--
0.7182790.0251--
0.7273800.0243--
0.7364810.0159--
0.7455820.0416--
0.7545830.0272--
0.7636840.0487--
0.7727850.1019--
0.7818860.0378--
0.7909870.0228--
0.8880.009--
0.8091890.024--
0.8182900.0266--
0.8273910.0927--
0.8364920.0065--
0.8455930.0061--
0.8545940.0633--
0.8636950.0044--
0.8727960.0082--
0.8818970.0108--
0.8909980.009--
0.9990.0493--
0.90911000.1834--
0.91821010.0372--
0.92731020.046--
0.93641030.0056--
0.94551040.0038--
0.95451050.0183--
0.96361060.027--
0.97271070.0747--
0.98181080.0038--
0.99091090.0165--
1.01100.01880.02710.7058
1.00911110.0169--
1.01821120.0101--
1.02731130.0044--
1.03641140.0061--
1.04551150.0059--
1.05451160.0089--
1.06361170.0849--
1.07271180.0099--
1.08181190.0129--
1.09091200.0202--
1.11210.0032--
1.10911220.0027--
1.11821230.0061--
1.12731240.004--
1.13641250.0028--
1.14551260.0463--
1.15451270.0024--
1.16361280.0044--
1.17271290.1313--
1.18181300.0022--
1.19091310.0026--
1.21320.0696--
1.20911330.0323--
1.21821340.0027--
1.22731350.1714--
1.23641360.0365--
1.24551370.0116--
1.25451380.0036--
1.26361390.0296--
1.27271400.0037--
1.28181410.0036--
1.29091420.0025--
1.31430.0043--
1.30911440.0021--
1.31821450.0032--
1.32731460.0263--
1.33641470.0014--
1.34551480.0993--
1.35451490.0045--
1.36361500.006--
1.37271510.0045--
1.38181520.0022--
1.39091530.0048--
1.41540.0133--
1.40911550.0018--
1.41821560.0012--
1.42731570.001--
1.43641580.0051--
1.44551590.0636--
1.45451600.0911--
1.46361610.0034--
1.47271620.021--
1.48181630.0034--
1.49091640.0022--
1.51650.0109--
1.50911660.0009--
1.51821670.0124--
1.52731680.0097--
1.53641690.0136--
1.54551700.0063--
1.55451710.0105--
1.56361720.0114--
1.57271730.0061--
1.58181740.002--
1.59091750.0037--
1.61760.0279--
1.60911770.0191--
1.61821780.0025--
1.62731790.0009--
1.63641800.0019--
1.64551810.001--
1.65451820.0023--
1.66361830.0005--
1.67271840.0025--
1.68181850.0048--
1.69091860.0035--
1.71870.0328--
1.70911880.0139--
1.71821890.0097--
1.72731900.0051--
1.73641910.0153--
1.74551920.0127--
1.75451930.0828--
1.76361940.0214--
1.77271950.0038--
1.78181960.008--
1.79091970.0218--
1.81980.017--
1.80911990.0016--
1.81822000.0017--
1.82732010.004--
1.83642020.0134--
1.84552030.0103--
1.85452040.0018--
1.86362050.0069--
1.87272060.0617--
1.88182070.0024--
1.89092080.0451--
1.92090.0109--
1.90912100.004--
1.91822110.0035--
1.92732120.0041--
1.93642130.015--
1.94552140.004--
1.95452150.0043--
1.96362160.0036--
1.97272170.0049--
1.98182180.0153--
1.99092190.0037--
2.02200.00390.02320.7161
2.00912210.0318--
2.01822220.003--
2.02732230.0145--
2.03642240.0031--
2.04552250.0025--
2.05452260.0041--
2.06362270.0011--
2.07272280.002--
2.08182290.0597--
2.09092300.0011--
2.12310.0008--
2.10912320.0013--
2.11822330.0056--
2.12732340.004--
2.13642350.0009--
2.14552360.0008--
2.15452370.0029--
2.16362380.0081--
2.17272390.0019--
2.18182400.0021--
2.19092410.0034--
2.22420.0004--
2.20912430.002--
2.21822440.0011--
2.22732450.0487--
2.23642460.0014--
2.24552470.0024--
2.25452480.004--
2.26362490.0028--
2.27272500.0016--
2.28182510.0053--
2.29092520.0039--
2.32530.0015--
2.30912540.0023--
2.31822550.0022--
2.32732560.001--
2.33642570.0016--
2.34552580.0039--
2.35452590.0041--
2.36362600.0013--
2.37272610.0253--
2.38182620.0242--
2.39092630.0021--
2.42640.001--
2.40912650.0013--
2.41822660.0038--
2.42732670.0082--
2.43642680.0071--
2.44552690.0027--
2.45452700.0005--
2.46362710.0009--
2.47272720.0014--
2.48182730.0007--
2.49092740.0088--
2.52750.0147--
2.50912760.0013--
2.51822770.0012--
2.52732780.0007--
2.53642790.0049--
2.54552800.0143--
2.55452810.0014--
2.56362820.0226--
2.57272830.0025--
2.58182840.0007--
2.59092850.0026--
2.62860.0011--
2.60912870.0773--
2.61822880.0094--
2.62732890.0012--
2.63642900.0024--
2.64552910.0012--
2.65452920.0082--
2.66362930.1715--
2.67272940.0006--
2.68182950.0022--
2.69092960.0014--
2.72970.0026--
2.70912980.0014--
2.71822990.001--
2.72733000.0013--
2.73643010.0196--
2.74553020.0023--
2.75453030.0013--
2.76363040.0021--
2.77273050.0048--
2.78183060.0014--
2.79093070.0011--
2.83080.0005--
2.80913090.003--
2.81823100.0009--
2.82733110.0123--
2.83643120.0118--
2.84553130.0015--
2.85453140.0088--
2.86363150.0067--
2.87273160.0016--
2.88183170.0212--
2.89093180.0015--
2.93190.0006--
2.90913200.0013--
2.91823210.001--
2.92733220.0168--
2.93643230.0051--
2.94553240.0013--
2.95453250.0014--
2.96363260.0007--
2.97273270.0059--
2.98183280.0006--
2.99093290.0008--
3.03300.0020.02550.7063
3.00913310.0007--
3.01823320.0014--
3.02733330.0007--
3.03643340.0031--
3.04553350.0007--
3.05453360.0011--
3.06363370.0759--
3.07273380.0027--
3.08183390.0004--
3.09093400.001--
3.13410.0004--
3.10913420.0083--
3.11823430.0008--
3.12733440.0086--
3.13643450.0019--
3.14553460.0087--
3.15453470.0019--
3.16363480.0017--
3.17273490.0054--
3.18183500.0338--
3.19093510.006--
3.23520.0014--
3.20913530.0023--
3.21823540.011--
3.22733550.0004--
3.23643560.0099--
3.24553570.0017--
3.25453580.001--
3.26363590.0024--
3.27273600.0043--
3.28183610.0029--
3.29093620.0023--
3.33630.0007--
3.30913640.0035--
3.31823650.0014--
3.32733660.0052--
3.33643670.0526--
3.34553680.0017--
3.35453690.0082--
3.36363700.0014--
3.37273710.0018--
3.38183720.0013--
3.39093730.0029--
3.43740.0082--
3.40913750.0005--
3.41823760.0007--
3.42733770.0014--
3.43643780.006--
3.44553790.0023--
3.45453800.0017--
3.46363810.0011--
3.47273820.0004--
3.48183830.0033--
3.49093840.0017--
3.53850.0016--
3.50913860.001--
3.51823870.0055--
3.52733880.0058--
3.53643890.0015--
3.54553900.0024--
3.55453910.0022--
3.56363920.0007--
3.57273930.001--
3.58183940.0007--
3.59093950.0046--
3.63960.0005--
3.60913970.0011--
3.61823980.001--
3.62733990.0012--
3.63644000.0006--
3.64554010.0038--
3.65454020.0008--
3.66364030.0009--
3.67274040.0014--
3.68184050.0029--
3.69094060.0052--
3.74070.0011--
3.70914080.0112--
3.71824090.0011--
3.72734100.0045--
3.73644110.0086--
3.74554120.0029--
3.75454130.0004--
3.76364140.0075--
3.77274150.0007--
3.78184160.0006--
3.79094170.0007--
3.84180.0018--
3.80914190.0009--
3.81824200.0258--
3.82734210.0009--
3.83644220.0011--
3.84554230.0004--
3.85454240.0044--
3.86364250.0019--
3.87274260.0015--
3.88184270.1093--
3.89094280.0018--
3.94290.0018--
3.90914300.0142--
3.91824310.0048--
3.92734320.0012--
3.93644330.0113--
3.94554340.002--
3.95454350.0003--
3.96364360.001--
3.97274370.0004--
3.98184380.0012--
3.99094390.0097--
4.04400.15490.02000.7209
4.00914410.0031--
4.01824420.0007--
4.02734430.0096--
4.03644440.0007--
4.04554450.0052--
4.05454460.0019--
4.06364470.0009--
4.07274480.0006--
4.08184490.0022--
4.09094500.0392--
4.14510.023--
4.10914520.0009--
4.11824530.0012--
4.12734540.0009--
4.13644550.0044--
4.14554560.0004--
4.15454570.0009--
4.16364580.0093--
4.17274590.0011--
4.18184600.0014--
4.19094610.0008--
4.24620.0011--
4.20914630.0231--
4.21824640.0018--
4.22734650.001--
4.23644660.0048--
4.24554670.0012--
4.25454680.0012--
4.26364690.0025--
4.27274700.0065--
4.28184710.0008--
4.29094720.0793--
4.34730.0015--
4.30914740.0013--
4.31824750.0044--
4.32734760.0324--
4.33644770.0023--
4.34554780.0019--
4.35454790.001--
4.36364800.0067--
4.37274810.0015--
4.38184820.0005--
4.39094830.0012--
4.44840.012--
4.40914850.0013--
4.41824860.0008--
4.42734870.0027--
4.43644880.0016--
4.44554890.0006--
4.45454900.0007--
4.46364910.0008--
4.47274920.0015--
4.48184930.001--
4.49094940.0013--
4.54950.0021--
4.50914960.001--
4.51824970.0008--
4.52734980.0009--
4.53644990.0016--
4.54555000.0007--

</details>

Framework Versions

  • Python: 3.12.9
  • Sentence Transformers: 4.1.0
  • Transformers: 4.52.3
  • PyTorch: 2.6.0+cu124
  • Accelerate: 1.7.0
  • Datasets: 3.6.0
  • Tokenizers: 0.21.1

Citation

BibTeX

Sentence Transformers
bibtex
@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",
}
MultipleNegativesRankingLoss
bibtex
@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}
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->