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
Decision boundary of label propagation versus SVM on the Iris dataset
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Comparison for decision boundary generated on iris dataset between Label Propagation and SVM. This demonstrates

2025-01-10 15:47:30
Pipeline Anova SVM
  • References/Python/scikit-learn/Examples/Feature Selection

Simple usage of Pipeline that runs successively a univariate feature selection with anova and then a C-SVM of the selected features.

2025-01-10 15:47:30
Gradient Boosting Out-of-Bag estimates
  • References/Python/scikit-learn/Examples/Ensemble methods

Out-of-bag (OOB) estimates can be a useful heuristic to estimate the ?optimal? number of boosting iterations. OOB estimates are almost identical to cross-validation

2025-01-10 15:47:30
Train error vs Test error
  • References/Python/scikit-learn/Examples/Model Selection

Illustration of how the performance of an estimator on unseen data (test data) is not the same as the performance on training data. As the regularization increases

2025-01-10 15:47:30
Discrete versus Real AdaBoost
  • References/Python/scikit-learn/Examples/Ensemble methods

This example is based on Figure 10.2 from Hastie et al 2009 [1] and illustrates the difference in performance between the discrete SAMME [2] boosting algorithm

2025-01-10 15:47:30
The Digit Dataset
  • References/Python/scikit-learn/Examples/Dataset examples

This dataset is made up of 1797 8x8 images. Each image, like the one shown below, is of a hand-written digit. In order to utilize an 8x8 figure like this, we?d have to first

2025-01-10 15:47:30
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
Underfitting vs.
  • References/Python/scikit-learn/Examples/Model Selection

This example demonstrates the problems of underfitting and overfitting and how we can use linear regression with polynomial features to approximate nonlinear functions

2025-01-10 15:47:30
FeatureHasher and DictVectorizer Comparison
  • References/Python/scikit-learn/Examples/Working with text documents

Compares FeatureHasher and DictVectorizer by using both to vectorize text documents. The example demonstrates syntax and speed only; it doesn

2025-01-10 15:47:30