Model reference · open weights

static-retrieval-mrl-en

Available as managed deployment Embeddings sentence-transformers Embeddings 1 variants 0 dl/mo

static-retrieval-mrl-en is an open-weight embedding model from sentence-transformers. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Makersentence-transformers
TypeEmbedding models
TaskEmbeddings
Runs withsentence-transformers
Released2024-10-24
Popularity0 downloads / month
LicenceOpen weights

About

What static-retrieval-mrl-en is

This is a sentence-transformers model trained on the gooaq, msmarco, squad, s2orc, allnli, paq, trivia_qa, msmarco_10m, swim_ir, pubmedqa, miracl, mldr and mr_tydi datasets. It maps sentences & paragraphs to a 1024-dimensional dense vector space and is designed to be used for semantic search.

Read our Static Embeddings blogpost to learn more about this model and how it was trained.

  • 0 Active Parameters: This model does not use any active parameters, instead consisting exclusively of averaging pre-computed token embeddings.
  • 100x to 400x faster: On CPU, this model is 100x to 400x faster than common options like all-mpnet-base-v2. On GPU, it's 10x to 25x faster.
  • Matryoshka: This model was trained with a Matryoshka loss, allowing you to truncate the embeddings for faster retrieval at minimal performance costs.
  • Evaluations: See Evaluations for details on performance on NanoBEIR, embedding speed, and Matryoshka dimensionality truncation. In short, this model is 87.4% as performant as the commonly used all-mpnet-base-v2.
  • Training Script: See train.py for the training script used to train this model from scratch.

See static-similarity-mrl-multilingual-v1 for a general-purpose multilingual static embedding model. It's been trained for semantic textual similarity, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

Model Sources

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-retrieval-mrl-en-v1")
# Run inference
sentences = [
    'Gadofosveset-enhanced MR angiography of carotid arteries: does steady-state imaging improve accuracy of first-pass imaging?',
    'To evaluate the diagnostic accuracy of gadofosveset-enhanced magnetic resonance (MR) angiography in the assessment of carotid artery stenosis, with digital subtraction angiography (DSA) as the reference standard, and to determine the value of reading first-pass, steady-state, and "combined" (first-pass plus steady-state) MR angiograms.',
    'In a longitudinal study we investigated in vivo alterations of CVO during neuroinflammation, applying Gadofluorine M- (Gf) enhanced magnetic resonance imaging (MRI) in experimental autoimmune encephalomyelitis, an animal model of multiple sclerosis. SJL/J mice were monitored by Gadopentate dimeglumine- (Gd-DTPA) and Gf-enhanced MRI after adoptive transfer of proteolipid-protein-specific T cells. Mean Gf intensity ratios were calculated individually for different CVO and correlated to the clinical disease course. Subsequently, the tissue distribution of fluorescence-labeled Gf as well as the extent of cellular inflammation was assessed in corresponding histological slices.',
]
embeddings = model.encode(sentences)
print(e

From the published model card. Full card on the HuggingFace links in the sidebar.

How it works

How embedding models work

Your textsentence / documentEncodermaps meaningVectorlist of numbersAn embedding model turns text into a vector, so similar meanings sit close together — the basis of search and RAG.

Benchmarks

Reported results

As published on the model card — the maker's own numbers, not measured by AxForge.

TaskDatasetMetricScore
Information RetrievalNanoClimateFEVERCosine Accuracy@10.320
Information RetrievalNanoClimateFEVERCosine Accuracy@30.520
Information RetrievalNanoClimateFEVERCosine Accuracy@50.600
Information RetrievalNanoClimateFEVERCosine Accuracy@100.780
Information RetrievalNanoClimateFEVERCosine Precision@10.320
Information RetrievalNanoClimateFEVERCosine Precision@30.193
Information RetrievalNanoClimateFEVERCosine Precision@50.140
Information RetrievalNanoClimateFEVERCosine Precision@100.104
Information RetrievalNanoClimateFEVERCosine Recall@10.147
Information RetrievalNanoClimateFEVERCosine Recall@30.239
Information RetrievalNanoClimateFEVERCosine Recall@50.279
Information RetrievalNanoClimateFEVERCosine Recall@100.420
Information RetrievalNanoClimateFEVERCosine Ndcg@100.331
Information RetrievalNanoClimateFEVERCosine Mrr@100.445
Information RetrievalNanoClimateFEVERCosine Map@1000.260
Information RetrievalNanoDBPediaCosine Accuracy@10.700
Information RetrievalNanoDBPediaCosine Accuracy@30.840
Information RetrievalNanoDBPediaCosine Accuracy@50.900
Information RetrievalNanoDBPediaCosine Accuracy@100.940
Information RetrievalNanoDBPediaCosine Precision@10.700
Information RetrievalNanoDBPediaCosine Precision@30.587
Information RetrievalNanoDBPediaCosine Precision@50.544
Information RetrievalNanoDBPediaCosine Precision@100.452
Information RetrievalNanoDBPediaCosine Recall@10.080

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys static-retrieval-mrl-en for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (static-retrieval-mrl-en below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/embeddings \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"static-retrieval-mrl-en","input":"text to embed"}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms