Ledoit-Wolf vs OAS estimation
  • References/Python/scikit-learn/Examples/Covariance estimation

The usual covariance maximum likelihood estimate can be regularized using shrinkage. Ledoit and Wolf proposed a close formula to compute the asymptotically optimal

2025-01-10 15:47:30
Comparing various online solvers
  • References/Python/scikit-learn/Examples/Generalized Linear Models

An example showing how different online solvers perform on the hand-written digits dataset.

2025-01-10 15:47:30
Joint feature selection with multi-task Lasso
  • References/Python/scikit-learn/Examples/Generalized Linear Models

The multi-task lasso allows to fit multiple regression problems jointly enforcing the selected features to be the same across tasks. This example

2025-01-10 15:47:30
Kernel Density Estimate of Species Distributions
  • References/Python/scikit-learn/Examples/Nearest Neighbors

This shows an example of a neighbors-based query (in particular a kernel density estimate) on geospatial data, using a Ball Tree built upon

2025-01-10 15:47:30
Outlier detection on a real data set
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

This example illustrates the need for robust covariance estimation on a real data set. It is useful both for outlier detection and for a better understanding

2025-01-10 15:47:30
Prediction Intervals for Gradient Boosting Regression
  • References/Python/scikit-learn/Examples/Ensemble methods

This example shows how quantile regression can be used to create prediction intervals.

2025-01-10 15:47:30
Recursive feature elimination with cross-validation
  • References/Python/scikit-learn/Examples/Feature Selection

A recursive feature elimination example with automatic tuning of the number of features selected with cross-validation.

2025-01-10 15:47:30
Compare cross decomposition methods
  • References/Python/scikit-learn/Examples/Cross decomposition

Simple usage of various cross decomposition algorithms: - PLSCanonical - PLSRegression, with multivariate response, a.k.a. PLS2 - PLSRegression, with univariate

2025-01-10 15:47:30
Comparing random forests and the multi-output meta estimator
  • References/Python/scikit-learn/Examples/Ensemble methods

An example to compare multi-output regression with random forest and the

2025-01-10 15:47:30
Demo of DBSCAN clustering algorithm
  • References/Python/scikit-learn/Examples/Clustering

Finds core samples of high density and expands clusters from them. print(__doc__) import numpy as np from

2025-01-10 15:47:30