lmcinnes/umap

Uniform Manifold Approximation and Projection

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 46 minutes ago
Added to GitGenius on September 8th, 2026
Created on July 2nd, 2017
Open Issues & Pull Requests: 526 (+0)
GitHub issues: Enabled
Number of forks: 870
Total Stargazers: 8,256 (+0)
Total Subscribers: 124 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 9.9 hours
Mean response time: 80.4 days
90th percentile: 385.2 days
Tracked items: 67

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 99% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 6% of issues opened in the past year have been closed. Three people close 50% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 73
New in 7 days: 1
Closed in 7 days: 1
Avg open age: 1,009 days
Stale 30+ days: 70
Stale 90+ days: 69

Recent activity

Opened in 7 days: 1
Closed in 7 days: 1
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • Good Reads (2)
  • enhancement (1)
  • new feature (1)

Detailed Description

UMAP is a dimension reduction technique for visualizing and transforming high-dimensional data into lower-dimensional spaces while preserving topological structure.

The tool addresses the challenge of understanding high-dimensional datasets by reducing them to two or three dimensions suitable for visualization, or to intermediate dimensions for machine learning pipelines. UMAP models data as lying on a Riemannian manifold and searches for a low-dimensional projection that preserves the fuzzy topological structure of that manifold. The approach rests on three core assumptions: that data is uniformly distributed on a manifold, that the Riemannian metric is locally constant, and that the manifold is locally connected. The algorithm also includes densMAP, an augmentation that preserves local density information alongside topological structure.

Developers should choose UMAP when they need dimension reduction that works as a drop-in replacement for t-SNE but with broader applicability beyond visualization alone. The tool suits projects requiring both exploratory visualization of complex datasets and general non-linear dimension reduction for downstream machine learning tasks. Unlike t-SNE, which is primarily a visualization technique, UMAP can be applied to intermediate dimensionality reduction steps in data pipelines.

The project maintains comprehensive documentation through Read the Docs and publishes peer-reviewed papers describing the underlying mathematics and methods. The codebase has automated build testing and coverage tracking in place. The tool is distributed through both PyPI and conda-forge, making it accessible across different Python environments and workflows.