Gaussian Mixture Model Sine Curve
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

This example demonstrates the behavior of Gaussian mixture models fit on data that was not sampled from a mixture of Gaussian random variables. The dataset

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

Plot decision function of a weighted dataset, where the size of points is proportional to its weight. The sample weighting rescales the C parameter, which means

2025-01-10 15:47:30
Cross-validation on Digits Dataset Exercise
  • References/Python/scikit-learn/Examples/Tutorial exercises

A tutorial exercise using Cross-validation with an SVM on the Digits dataset. This exercise is used in the

2025-01-10 15:47:30
Comparison of Manifold Learning methods
  • References/Python/scikit-learn/Examples/Manifold learning

An illustration of dimensionality reduction on the S-curve dataset with various manifold learning methods. For a discussion and comparison of

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
Libsvm GUI
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

A simple graphical frontend for Libsvm mainly intended for didactic purposes. You can create data points by point and click and visualize the decision region induced by different

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

Simple usage of Support Vector Machines to classify a sample. It will plot the decision surface and the support vectors.

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
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