datamatastudios/ai-model-popularity
Datamata AI Model Popularity Index Weekly popularity of the most-downloaded and trending Hugging Face models: trailing downloads, likes, the model's task and its trending rank. One row per model from the most recent weekly snapshot. Latest snapshot: 2026-09-20 Models in this release: 50 Updated: weekly Licence: CC BY 4.0 — free to use and adapt, including commercially, with attribution. Source & methodology: https://www.datamatastudios.com/datasets Quickstart… See the full description on the dataset page: https://huggingface.co/datasets/datamatastudios/ai-model-popularity.
Datamata AI Model Popularity Index
Weekly popularity of the most-downloaded and trending Hugging Face models: trailing downloads, likes, the model's task and its trending rank. One row per model from the most recent weekly snapshot.
- Latest snapshot: 2026-09-20
- Models in this release: 50
- Updated: weekly
- Licence: CC BY 4.0 — free to use and adapt, including commercially, with attribution.
- Source & methodology: <https://www.datamatastudios.com/datasets>
Quickstart
import pandas as pd
# Stream straight from the Hub — no download step needed
df = pd.read_csv("hf://datasets/datamatastudios/ai-model-popularity/ai-model-popularity.csv")
# Most-downloaded models right now
print(df.sort_values("downloads", ascending=False).head(10))Or load it with the 🤗 datasets library:
from datasets import load_dataset
ds = load_dataset("datamatastudios/ai-model-popularity")What you can answer with it
- Which Hugging Face models lead by downloads and likes right now.
- Which models are trending this week (
trending_score) versus steady high-download workhorses. - How popularity splits by task (
pipeline_tag) — text-generation, text-to-image, embeddings and more. - How a model's popularity moves over time, by appending each weekly snapshot.
Columns
How it is built
Each week we query the public Hugging Face Hub API for the top models by trailing-30-day downloads and the current trending models, recording each model's downloads, likes, task tag and trending score on the snapshot date. Full method and known limitations: <https://www.datamatastudios.com/methodology>.
Citation
Datamata Studios. "Datamata AI Model Popularity Index." 2026-09-20. https://www.datamatastudios.com/datasets. Licensed under CC BY 4.0.
