What problem does it solve?
UMAP-Learn reduces high-dimensional data into lower-dimensional embeddings that preserve meaningful structure, making complex patterns easier to visualize, cluster, and model.
Core Features & Use Cases
- Fast non-linear dimensionality reduction for visualization and general embedding workflows
- Structure-preserving embeddings that balance local and global relationships, controlled by parameters like n_neighbors and min_dist
- Clustering preprocessing by generating higher-dimensional embeddings that often work better with density-based methods like HDBSCAN
- Supervised and semi-supervised embedding by incorporating labels via y to improve class separation
- Quick start to transform new data using fit then transform, enabling reuse of a learned manifold mapping
- Optional advanced variants including Parametric UMAP and DensMAP for efficient inference and density preservation
Quick Start
Ask the AI to help you reduce your standardized dataset into 2D embeddings using UMAP with n_neighbors=15 and min_dist=0.1, then plot the result colored by your labels.