Blind source separation using FastICA
  • References/Python/scikit-learn/Examples/Decomposition

An example of estimating sources from noisy data.

2025-01-10 15:47:30
Label Propagation learning a complex structure
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Example of LabelPropagation learning a complex internal structure to demonstrate ?manifold learning?. The outer circle should be labeled ?red

2025-01-10 15:47:30
Comparison of Calibration of Classifiers
  • References/Python/scikit-learn/Examples/Calibration

Well calibrated classifiers are probabilistic classifiers for which the output of the predict_proba method can be directly interpreted as a confidence

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

Plot the confidence ellipsoids of a mixture of two Gaussians obtained with Expectation Maximisation (GaussianMixture class) and Variational Inference

2025-01-10 15:47:30
Visualization of MLP weights on MNIST
  • References/Python/scikit-learn/Examples/Neural Networks

Sometimes looking at the learned coefficients of a neural network can provide insight into the learning behavior. For example if weights look unstructured

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
Manifold learning on handwritten digits
  • References/Python/scikit-learn/Examples/Manifold learning

An illustration of various embeddings on the digits dataset. The RandomTreesEmbedding, from 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
A demo of the Spectral Biclustering algorithm
  • References/Python/scikit-learn/Examples/Biclustering

This example demonstrates how to generate a checkerboard dataset and bicluster it using the Spectral Biclustering algorithm. The data is

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

Fit regression model with Bayesian Ridge Regression. See

2025-01-10 15:47:30