Online learning of a dictionary of parts of faces

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

2017-01-15 04:24:49
Selecting the number of clusters with silhouette analysis on KMeans clustering

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

2017-01-15 04:25:26
Feature agglomeration vs. univariate selection

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

2017-01-15 04:22:01
Various Agglomerative Clustering on a 2D embedding of digits

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

2017-01-15 04:27:23
A demo of the mean-shift clustering algorithm

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

2017-01-15 04:20:14
K-means 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:

2017-01-15 04:22:59
Demo of DBSCAN clustering algorithm

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

2017-01-15 04:21:28
Agglomerative clustering with and without structure

This example shows the effect of imposing a connectivity graph to capture local structure in the data. The graph is simply the graph of 20

2017-01-15 04:20:16
Feature agglomeration

These images how similar features are merged together using feature agglomeration.

2017-01-15 04:22:00
A demo of K-Means clustering on the handwritten digits data

In this example we compare the various initialization strategies for K-means in terms of runtime and quality of the results.

2017-01-15 04:20:13