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
Sparse coding with a precomputed dictionary
  • References/Python/scikit-learn/Examples/Decomposition

Transform a signal as a sparse combination of Ricker wavelets. This example visually compares different sparse coding methods using the

2025-01-10 15:47:30
Pixel importances with a parallel forest of trees
  • References/Python/scikit-learn/Examples/Ensemble methods

This example shows the use of forests of trees to evaluate the importance of the pixels in an image classification task (faces). The hotter

2025-01-10 15:47:30
Plot classification probability
  • References/Python/scikit-learn/Examples/Classification

Plot the classification probability for different classifiers. We use a 3 class dataset, and we classify it with a Support Vector classifier, L1 and L2 penalized

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
Comparing various online solvers
  • References/Python/scikit-learn/Examples/Generalized Linear Models

An example showing how different online solvers perform on the hand-written digits dataset.

2025-01-10 15:47:30
Recursive feature elimination with cross-validation
  • References/Python/scikit-learn/Examples/Feature Selection

A recursive feature elimination example with automatic tuning of the number of features selected with cross-validation.

2025-01-10 15:47:30
Biclustering documents with the Spectral Co-clustering algorithm
  • References/Python/scikit-learn/Examples/Biclustering

This example demonstrates the Spectral Co-clustering algorithm on the twenty newsgroups dataset. The ?comp.os.ms-windows.misc

2025-01-10 15:47:30
Partial Dependence Plots
  • References/Python/scikit-learn/Examples/Ensemble methods

Partial dependence plots show the dependence between the target function

2025-01-10 15:47:30