Faces recognition example using eigenfaces and SVMs
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

The dataset used in this example is a preprocessed excerpt of the ?Labeled Faces in the Wild?, aka

2025-01-10 15:47:30
Nested versus non-nested cross-validation
  • References/Python/scikit-learn/Examples/Model Selection

This example compares non-nested and nested cross-validation strategies on a classifier of the iris data set. Nested cross-validation (CV) is often

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
SVM-Kernels
  • References/Python/scikit-learn/Examples/Support Vector Machines

Three different types of SVM-Kernels are displayed below. The polynomial and RBF are especially useful when the data-points are not linearly separable.

2025-01-10 15:47:30
Comparison of Calibration of Classifiers
  • References/Python/scikit-learn/Examples/Calibration

Well calibrated classifiers are probabilistic classifiers for which the output of the predict_proba method can be directly interpreted as a confidence

2025-01-10 15:47:30
Gaussian Mixture Model Ellipsoids
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

Plot the confidence ellipsoids of a mixture of two Gaussians obtained with Expectation Maximisation (GaussianMixture class) and Variational Inference

2025-01-10 15:47:30
SVM-Anova
  • References/Python/scikit-learn/Examples/Support Vector Machines

This example shows how to perform univariate feature selection before running a SVC (support vector classifier) to improve the classification

2025-01-10 15:47:30
Compare cross decomposition methods
  • References/Python/scikit-learn/Examples/Cross decomposition

Simple usage of various cross decomposition algorithms: - PLSCanonical - PLSRegression, with multivariate response, a.k.a. PLS2 - PLSRegression, with univariate

2025-01-10 15:47:30
SGD: Penalties
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Plot the contours of the three penalties. All of the above are supported by sklearn.linear_model.stochastic_gradient.

2025-01-10 15:47:30
Kernel Density Estimate of Species Distributions
  • References/Python/scikit-learn/Examples/Nearest Neighbors

This shows an example of a neighbors-based query (in particular a kernel density estimate) on geospatial data, using a Ball Tree built upon

2025-01-10 15:47:30