Feature transformations with ensembles of trees
  • References/Python/scikit-learn/Examples/Ensemble methods

Transform your features into a higher dimensional, sparse space. Then train a linear model on these features. First fit an ensemble of

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
Parameter estimation using grid search with cross-validation
  • References/Python/scikit-learn/Examples/Model Selection

This examples shows how a classifier is optimized by cross-validation, which is done using the

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
SVM Exercise
  • References/Python/scikit-learn/Examples/Tutorial exercises

A tutorial exercise for using different SVM kernels. This exercise is used in the

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
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
Face completion with a multi-output estimators
  • References/Python/scikit-learn/Examples/General examples

This example shows the use of multi-output estimator to complete images. The goal is to predict the lower half of a face given its upper half

2025-01-10 15:47:30
Concatenating multiple feature extraction methods
  • References/Python/scikit-learn/Examples/General examples

In many real-world examples, there are many ways to extract features from a dataset. Often it is beneficial to combine several methods to obtain

2025-01-10 15:47:30
Plotting Cross-Validated Predictions
  • References/Python/scikit-learn/Examples/General examples

This example shows how to use cross_val_predict to visualize prediction errors.

2025-01-10 15:47:30