DEV Community

Cover image for Top HuggingFace models by download: why embedding models beat LLMs in the rankings
MORINAGA
MORINAGA

Posted on

Top HuggingFace models by download: why embedding models beat LLMs in the rankings

The conversation about AI models in 2026 is mostly about LLMs — which text-generation model is newest, which is cheapest per token, which passes which benchmark. The HuggingFace download leaderboard doesn't reflect that conversation at all.

The five most-downloaded models on the platform are sentence encoders, cross-encoders, and masked-language models. The first text-generation model in the ranked list appears at position 10, with about 11% of the download share that the top model carries.

This split is worth understanding if you're deciding what to run in production.

The actual top 5

All numbers are from today's snapshot (2026-08-18) in the models dataset powering aiappdex.com.

1. all-MiniLM-L6-v2 — 257,365,486 downloads, 5,215 likes

Pipeline: sentence-similarity

aiappdex.com/models/sentence-transformers-all-minilm-l6-v2

A 22M-parameter distillation of BERT trained on a billion sentence pairs. Encodes text into 384-dimensional vectors. It's the default "just use this" recommendation for semantic search and clustering because it's fast on CPU, well-maintained, and benchmarks adequately on MTEB. 257 million downloads is a number that reflects integration into libraries and product pipelines at scale — not a model people evaluate once. It's embedded in default configurations.

2. bert-base-uncased — 114,428,580 downloads, 2,734 likes

Pipeline: fill-mask

aiappdex.com/models/google-bert-bert-base-uncased

The 2018 BERT base model from Google, still in the top 2. The high download count here isn't about people choosing BERT-base for new projects — it's about the enormous existing install base of pipelines that depend on it as a fine-tuning base or dependency. When a library pulls bert-base-uncased on install, it contributes to this count whether the user ever interacts with the model directly.

3. ms-marco-MiniLM-L6-v2 — 89,344,493 downloads, 300 likes

Pipeline: text-ranking

aiappdex.com/models/cross-encoder-ms-marco-minilm-l6-v2

The standard cross-encoder reranker for retrieval pipelines. It sits in second-stage retrieval: first, a fast bi-encoder (like all-MiniLM) retrieves candidate documents, then this model scores each query-document pair directly. Reranking is standard in production search and RAG pipelines. The low like count (300) relative to its download count suggests this model is used as infrastructure rather than discovered and starred by developers — it's quietly embedded in LangChain, LlamaIndex, and similar toolkits.

4. bge-small-en-v1.5 — 73,700,917 downloads, 534 likes

Pipeline: feature-extraction

aiappdex.com/models/baai-bge-small-en-v1-5

BAAI's BGE series has been steadily gaining on the sentence-transformers defaults for retrieval-focused use cases. The small variant (384-dim output, Apache 2.0 license) hits a different optimization point than all-MiniLM-L6-v2: it's specifically trained for retrieval rather than general semantic similarity, which shows up in MTEB retrieval benchmark scores. Choosing between bge-small and all-MiniLM is a genuine decision depending on whether your workload skews toward retrieval or clustering.

5. paraphrase-multilingual-MiniLM-L12-v2 — 56,263,986 downloads, 1,347 likes

Pipeline: sentence-similarity

aiappdex.com/models/sentence-transformers-paraphrase-multilingual-minilm-l12-v2

The multilingual equivalent of all-MiniLM, covering 50+ languages from a single checkpoint. 12 layers vs 6 in the MiniLM base, 384-dim output. This is the go-to when your semantic search pipeline needs to handle non-English text without running separate per-language models. Its download count tells you that a meaningful portion of production embedding infrastructure handles multilingual input.

What this tells you about production AI

The first text-generation model in the list — Qwen3-0.6B at 28,848,552 downloads and position 10 — has about 11% of all-MiniLM-L6-v2's downloads. The gap isn't because LLMs are less popular; it's because LLMs are newer and the ecosystem is more fragmented across providers (OpenAI API, Anthropic API, Google, Mistral, and dozens of open-weight variants). Embedding models are less glamorous but more commoditized — all-MiniLM-L6-v2 has been the default for years and shows up wherever a default is needed.

A few useful observations from the top 5:

  • Likes are a weak proxy for usage. ms-marco-MiniLM-L6-v2 has 300 likes and 89 million downloads. That's infrastructure adoption, not developer excitement.
  • Multilingual support is underrated. The multilingual model is #5 with 56 million downloads, suggesting that a substantial share of production search pipelines handle non-English text.
  • Apache 2.0 licensing matters for production. All five models are permissively licensed. Restricted-license models don't make it into library defaults, which is where the download counts compound.

The AI tools directory at aiappdex.com tracks all 1,749 models in this dataset with daily download refreshes. The embedding and reranking sections are worth checking if you're picking a retrieval stack and want to compare current download share alongside benchmark scores.


Part of an ongoing 6-month experiment running three AI-curated directory sites. The technical claims here are real; this article was AI-assisted.

Top comments (0)