Feature agglomeration vs. univariate selection
  • References/Python/scikit-learn/Examples/Clustering

This example compares 2 dimensionality reduction strategies: univariate feature selection with Anova feature

2025-01-10 15:47:30
Online learning of a dictionary of parts of faces
  • References/Python/scikit-learn/Examples/Clustering

This example uses a large dataset of faces to learn a set of 20 x 20 images patches that constitute faces. From the programming standpoint

2025-01-10 15:47:30
Selecting the number of clusters with silhouette analysis on KMeans clustering
  • References/Python/scikit-learn/Examples/Clustering

Silhouette analysis can be used to study the separation distance between the resulting clusters. The silhouette

2025-01-10 15:47:30
K-means Clustering
  • References/Python/scikit-learn/Examples/Clustering

The plots display firstly what a K-means algorithm would yield using three clusters. It is then shown what the effect of a bad initialization is on the classification process:

2025-01-10 15:47:30
Demo of DBSCAN clustering algorithm
  • References/Python/scikit-learn/Examples/Clustering

Finds core samples of high density and expands clusters from them. print(__doc__) import numpy as np from

2025-01-10 15:47:30
A demo of the mean-shift clustering algorithm
  • References/Python/scikit-learn/Examples/Clustering

Reference: Dorin Comaniciu and Peter Meer, ?Mean Shift: A robust approach toward feature space analysis?. IEEE Transactions on Pattern Analysis

2025-01-10 15:47:30
Various Agglomerative Clustering on a 2D embedding of digits
  • References/Python/scikit-learn/Examples/Clustering

An illustration of various linkage option for agglomerative clustering on a 2D embedding of the digits dataset. The goal

2025-01-10 15:47:30
Adjustment for chance in clustering performance evaluation
  • References/Python/scikit-learn/Examples/Clustering

The following plots demonstrate the impact of the number of clusters and number of samples on various clustering performance evaluation

2025-01-10 15:47:30
Demonstration of k-means assumptions
  • References/Python/scikit-learn/Examples/Clustering

This example is meant to illustrate situations where k-means will produce unintuitive and possibly unexpected clusters. In the first three plots, the input

2025-01-10 15:47:30
Segmenting the picture of a raccoon face in regions
  • References/Python/scikit-learn/Examples/Clustering

This example uses

2025-01-10 15:47:30