Plotting Learning Curves
  • References/Python/scikit-learn/Examples/Model Selection

On the left side the learning curve of a naive Bayes classifier is shown for the digits dataset. Note that the training score and the cross-validation score are both

2025-01-10 15:47:30
Density Estimation for a Gaussian mixture
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

Plot the density estimation of a mixture of two Gaussians. Data is generated from two Gaussians with different centers and covariance matrices.

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

This data sets consists of 3 different types of irises? (Setosa, Versicolour, and Virginica) petal and sepal length, stored in a 150x4 numpy.ndarray The rows being the

2025-01-10 15:47:30
Gradient Boosting regression
  • References/Python/scikit-learn/Examples/Ensemble methods

Demonstrate Gradient Boosting on the Boston housing dataset. This example fits a Gradient Boosting model with least squares loss and 500 regression trees

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

This example uses the only the first feature of the diabetes dataset, in order to illustrate a two-dimensional plot of this regression technique. The

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

A tutorial exercise which uses cross-validation with linear models. This exercise is used in the

2025-01-10 15:47:30
Comparison of the K-Means and MiniBatchKMeans clustering algorithms
  • References/Python/scikit-learn/Examples/Clustering

We want to compare the performance of the MiniBatchKMeans and KMeans: the MiniBatchKMeans is faster, but gives slightly different

2025-01-10 15:47:30
Lasso model selection
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Use the Akaike information criterion (AIC), the Bayes Information criterion (BIC) and cross-validation to select an optimal value of the regularization

2025-01-10 15:47:30
Kernel PCA
  • References/Python/scikit-learn/Examples/Decomposition

This example shows that Kernel PCA is able to find a projection of the data that makes data linearly separable.

2025-01-10 15:47:30
FastICA on 2D point clouds
  • References/Python/scikit-learn/Examples/Decomposition

This example illustrates visually in the feature space a comparison by results using two different component analysis techniques.

2025-01-10 15:47:30