Robust vs Empirical covariance estimate
  • References/Python/scikit-learn/Examples/Covariance estimation

The usual covariance maximum likelihood estimate is very sensitive to the presence of outliers in the data set. In such a case, it would be better to

2025-01-10 15:47:30
Sample pipeline for text feature extraction and evaluation
  • References/Python/scikit-learn/Examples/Model Selection

The dataset used in this example is the 20 newsgroups dataset which will be automatically downloaded and then cached and reused for

2025-01-10 15:47:30
Empirical evaluation of the impact of k-means initialization
  • References/Python/scikit-learn/Examples/Clustering

Evaluate the ability of k-means initializations strategies to make the algorithm convergence robust as measured by the relative

2025-01-10 15:47:30
Probability Calibration curves
  • References/Python/scikit-learn/Examples/Calibration

When performing classification one often wants to predict not only the class label, but also the associated probability. This probability gives some kind of confidence

2025-01-10 15:47:30
Multilabel classification
  • References/Python/scikit-learn/Examples/General examples

This example simulates a multi-label document classification problem. The dataset is generated randomly based on the following process: pick

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

This example shows that model selection can be performed with Gaussian Mixture Models using information-theoretic criteria (BIC). Model selection concerns both

2025-01-10 15:47:30
Bayesian Ridge Regression
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Computes a Bayesian Ridge Regression on a synthetic dataset. See

2025-01-10 15:47:30
Comparing different clustering algorithms on toy datasets
  • References/Python/scikit-learn/Examples/Clustering

This example aims at showing characteristics of different clustering algorithms on datasets that are ?interesting? but still in 2D

2025-01-10 15:47:30
Scaling the regularization parameter for SVCs
  • References/Python/scikit-learn/Examples/Support Vector Machines

The following example illustrates the effect of scaling the regularization parameter when using

2025-01-10 15:47:30
Precision-Recall
  • References/Python/scikit-learn/Examples/Model Selection

Example of Precision-Recall metric to evaluate classifier output quality. In information retrieval, precision is a measure of result relevancy, while recall is a measure

2025-01-10 15:47:30