Independent reference. No vendor affiliation. Reprinted scores dated to their source; elsewhere we link the official board. Editorial policy.
Abstract
WhatMulti-task embedding benchmark: eight task types, 58 datasets, 112 languages in the original core; over 500 tasks across 250+ languages after MMTEB
WhoMuennighoff, Tazi, Magne & Reimers, 2022 (arXiv:2210.07316); MMTEB expansion, ICLR 2025 (arXiv:2502.13595)
MeasuresEmbedding quality across many jobs, not retrieval alone. Per-task metrics, aggregated by rank.
Leaderboardhuggingface.co/spaces/mteb/leaderboard
Section II.xiv · RAG & Retrieval|Reviewed 2026

MTEB: The Massive Text Embedding Benchmark

MTEB is the benchmark you consult to choose an embedding model. It tests one model, frozen, across eight task types: retrieval, classification, clustering, reranking, pair classification, semantic similarity, summarisation scoring, and cross-lingual bitext mining. The breadth is the point, and it is also the trap: the aggregate rank mixes jobs your pipeline may never do, so the honest read is the task sub-score that matches your workload.

MTEB at a glanceUse MTEB to compare embedding models across the full range of jobs a production pipeline asks of them. For a RAG pipeline, quote the retrieval sub-score rather than the overall rank, because the aggregate folds in classification, clustering and summarisation that RAG does not use. MTEB's retrieval track reuses BEIR datasets, so read the two together; pair either with an end-to-end RAG benchmark for generation faithfulness. Confirm the split (English v2 or multilingual) before comparing two MTEB numbers.
01

What MTEB measures

MTEB, introduced by Muennighoff et al. in 2022, is a multi-task benchmark for text-embedding models. Where earlier evaluations tested embeddings on one job (usually semantic similarity or a single retrieval set), MTEB runs a single frozen model across a wide spread of tasks and reports how it does on each. The original English core spanned eight task types across 58 datasets and 112 languages, which was a step-change in coverage at the time and quickly became the default reference for embedding-model selection.

The defining choice is that the embedding model is not fine-tuned per task. A model produces vectors; a lightweight task head (a logistic-regression probe for classification, a cosine-similarity comparison for STS and retrieval) turns those vectors into predictions. This isolates the quality of the embedding space itself rather than the capacity of a downstream classifier, which is what you want when the question is "which embedding model should I put in my pipeline".

That breadth is why MTEB became the canonical embedding benchmark, and also why it is easy to misread. A model with a high aggregate MTEB rank is good across many jobs on average; it is not necessarily the best at the one job your pipeline actually runs. For retrieval-augmented generation, the retrieval sub-score is the number that matters, and it can diverge sharply from the aggregate rank.

02

The eight task types

Each MTEB task type has its own primary metric, chosen to match the task. Because the metrics are not on a common scale, MTEB cannot meaningfully average raw scores across task types; the leaderboard aggregates by rank instead.

Task type
Metric
What it tests
Retrieval
nDCG@10
Rank relevant documents for a query from a corpus. The task type most relevant to RAG; reuses BEIR datasets, so MTEB retrieval and BEIR overlap directly.
Classification
Accuracy
Train a logistic-regression probe on frozen embeddings and predict a label. Tests whether the embedding space separates classes without fine-tuning.
Clustering
V-measure
Group texts into clusters using the embeddings. The signal that matters for deduplication and topic discovery in a document store.
Pair classification
Average precision
Decide whether two texts are a duplicate or paraphrase from their embedding similarity. Sensitive to paraphrase quality.
Reranking
MAP
Reorder a candidate list given a query. Directly relevant to retrieve-then-rerank pipelines where a first-stage retriever is followed by an embedding reranker.
Semantic textual similarity
Spearman
Correlate embedding cosine similarity with human similarity ratings. The classic STS task; several datasets are near saturation for frontier models.
Summarisation
Spearman
Score machine summaries by embedding similarity to human summaries. A smaller task group; measures how well the embedding captures gist.
Bitext mining
F1
Match parallel sentences across languages. The cross-lingual signal; central to the multilingual MMTEB expansion.

For a RAG workload, retrieval and reranking are the load-bearing rows; for a deduplication or clustering job, clustering and pair classification matter more; for a cross-lingual application, bitext mining is decisive. Reading the task table against your own workload is the whole skill of using MTEB well.

03

From MTEB to MMTEB

The original MTEB was English-centric in practice despite covering 112 languages, and the benchmark has since been expanded substantially. MMTEB (Massive Multilingual Text Embedding Benchmark), published at ICLR 2025 by Enevoldsen and 85 co-authors, grew the suite to over 500 quality-controlled evaluation tasks across more than 250 languages. This is now the broadest embedding evaluation in public use.

The expansion changed how the leaderboard works. Results are organised into named benchmark splits rather than a single global table (an English v2 split, a multilingual split, and language- or domain-specific tracks), and the default ranking uses a Borda count: models are ranked per task and rewarded for placing consistently well across many tasks rather than topping a handful. This matters when you quote a number. An "MTEB score" without its split is ambiguous, because an English-v2 rank and a full-multilingual rank measure different things and a model can lead one while trailing the other.

04

MTEB and BEIR

MTEB and BEIR are quoted together on almost every embedding model card and are easy to conflate. BEIR is retrieval-only: 18 datasets, one job, headline metric nDCG@10. MTEB is the superset benchmark, covering eight task types including retrieval but also classification, clustering, reranking, semantic similarity, summarisation and bitext mining. MTEB's retrieval track incorporates BEIR datasets directly, so the two overlap on retrieval and diverge everywhere else.

The practical rule mirrors the BEIR page: use BEIR when the question is narrow (how good is this retriever at finding relevant documents across domains), and use MTEB when the question is broad (how good is this embedding model for every job a production pipeline runs, from retrieval to reranking to deduplication). For RAG specifically, the MTEB retrieval sub-score and the BEIR average are measuring nearly the same thing; read them together and treat a divergence between them as a signal to look at the per-dataset breakdown.

05

Where MTEB is brittle

Three caveats travel with an MTEB rank. First, benchmark-directed training: MTEB is influential enough that some embedding models are trained with its task types and datasets in view, so a high rank can reflect optimisation toward MTEB as much as general embedding quality. This is the embedding-model form of the wider contamination problem: a model scored on datasets it was tuned on is not being tested cleanly. Second, saturation and noise: several classification and STS datasets are close to solved for frontier models, so top-of-table gaps compress and one-point differences stop being meaningful. Third, aggregate-versus-task mismatch: the headline rank mixes task types, so it can rank a model highly for a workload it is actually mediocre at.

None of these break MTEB as the reference embedding benchmark; they are reasons to read the task sub-scores rather than the aggregate rank. The wider point that benchmarks miss production behaviour applies to embeddings too: MTEB says nothing about latency, index size, or how an embedding behaves on your specific corpus, all of which matter as much as leaderboard rank in a live pipeline.

06

When to use MTEB in 2026

Reach for MTEB first when you are selecting an embedding model and you care about performance across more than one job. Read the task sub-scores that match your workload rather than the aggregate rank, confirm which split (English v2 or multilingual) the number is on, and check the model was not fine-tuned on the exact datasets it is scored on. For a RAG pipeline, quote the retrieval sub-score, pair it with BEIR for the retrieval cross-check, and add an end-to-end benchmark such as RAGAS or a golden dataset scored with LLM-as-judge to check generation faithfulness. See our RAG benchmark comparison for how the embedding, retrieval and end-to-end numbers fit together.

Editor's verdictMTEB is the standard benchmark for embedding-model selection and the right first check when you need one model to do several jobs. Quote the task sub-score that matches your workload rather than the aggregate rank, name the split, and pair it with BEIR for retrieval and an end-to-end benchmark for generation faithfulness. A bare "MTEB rank" is ambiguous; the honest number is per-task and per-split.
Reader Questions
Q.01What is MTEB and what does it measure?+
MTEB (Massive Text Embedding Benchmark) is the standard benchmark for comparing text-embedding models. The original 2022 benchmark spanned eight embedding task types across 58 datasets and 112 languages. Instead of testing one job, it tests everything a production embedding is asked to do: retrieval, classification, clustering, reranking, pair classification, semantic similarity, summarisation scoring, and cross-lingual bitext mining. A single model is run frozen across all tasks, and the per-task scores are aggregated into a leaderboard rank. It is the first place to look when selecting an embedding model.
Q.02What are MTEB's task types and their metrics?+
Eight task types, each with its own primary metric: retrieval (nDCG@10), classification (accuracy via a logistic-regression probe on frozen embeddings), clustering (v-measure), pair classification (average precision), reranking (MAP), semantic textual similarity or STS (Spearman correlation with human similarity ratings), summarisation (Spearman correlation), and bitext mining (F1). Because the metrics differ per task, MTEB cannot simply average raw scores; the current leaderboard aggregates with a rank-based method rather than a naive mean.
Q.03What is the difference between MTEB and BEIR?+
BEIR is retrieval-only: 18 datasets, one job, headline metric nDCG@10. MTEB is broader, covering eight task types including retrieval but also classification, clustering, reranking, semantic similarity and more. MTEB's retrieval track reuses BEIR datasets, so the two overlap on retrieval and diverge everywhere else. Use BEIR when the question is narrow (how good is this model at finding relevant documents); use MTEB when the question is broad (how good is this embedding model across every job a pipeline asks of it). Most embedding model cards report both.
Q.04What is MMTEB and how did it change MTEB?+
MMTEB (Massive Multilingual Text Embedding Benchmark), published at ICLR 2025 by Enevoldsen and 85 co-authors, expanded MTEB from the original 58-dataset English core to over 500 quality-controlled evaluation tasks across more than 250 languages. The leaderboard was restructured around named benchmark splits (for example an English v2 split and a multilingual split) and moved to a Borda-count ranking that rewards models performing consistently across many tasks rather than dominating a few. When someone quotes an MTEB score in 2026, ask which split it is on: an English-v2 number and a full-multilingual number are different benchmarks.
Q.05Can I trust the top of the MTEB leaderboard?+
Read it carefully. MTEB is influential enough that some embedding models are trained with MTEB task types in mind, so leaderboard rank can reflect optimisation toward the benchmark as much as general embedding quality. Small gaps near the top are often within noise, and several classification and STS datasets are close to saturated. The honest read is to weight the task types that match your workload (retrieval sub-scores for a RAG pipeline, clustering for deduplication) rather than trusting the aggregate rank, and to confirm the model was not fine-tuned on the exact datasets it is being scored on.
Q.06Which MTEB score should I quote for a RAG pipeline?+
Quote the retrieval sub-score, not the overall MTEB rank. A RAG pipeline uses embeddings mainly for retrieval, so the aggregate MTEB number (which mixes in classification, clustering and summarisation) can be misleading for RAG model selection. Read the retrieval task scores, ideally alongside the BEIR datasets they reuse, and pair them with an end-to-end RAG benchmark such as RAGAS to check that the generation stage uses the retrieved context faithfully.
BEIR: Zero-Shot RetrievalRAG Benchmarks ComparedRAG Evaluation Deep DiveLLM-as-Judge MethodologyAll BenchmarksBenchmark Contamination

Sources

  1. [1] Muennighoff, N., Tazi, N., Magne, L. & Reimers, N. (2022). MTEB: Massive Text Embedding Benchmark. arXiv:2210.07316. Original English core: eight task types, 58 datasets, 112 languages.
  2. [2] Enevoldsen, K. et al. (2025). MMTEB: Massive Multilingual Text Embedding Benchmark. ICLR 2025. arXiv:2502.13595. Over 500 tasks across 250+ languages; Borda-count ranking.
  3. [3] MTEB leaderboard and evaluation framework. huggingface.co/spaces/mteb/leaderboard and github.com/embeddings-benchmark/mteb. Accessed July 2026.
From the editor

Benchmarking Agents Review is published by Digital Signet, an independent firm that builds and ships AI agents in production for mid-market companies. If you are evaluating, designing, or productionising LLM agents and want a working second opinion, get in touch.

Book a 30-min scoping callDigital Signet →

30 minutes, free, independent.·1-page action plan within 48h.·Honest if not the right fit.