Kernel Density Estimation
  • References/Python/scikit-learn/Examples/Nearest Neighbors

This example shows how kernel density estimation (KDE), a powerful non-parametric density estimation technique, can be used to learn a generative model for a dataset

2025-01-10 15:47:30
Univariate Feature Selection
  • References/Python/scikit-learn/Examples/Feature Selection

An example showing univariate feature selection. Noisy (non informative) features are added to the iris data and univariate feature selection is applied

2025-01-10 15:47:30
A demo of K-Means clustering on the handwritten digits data
  • References/Python/scikit-learn/Examples/Clustering

In this example we compare the various initialization strategies for K-means in terms of runtime and quality of the results.

2025-01-10 15:47:30
Two-class AdaBoost
  • References/Python/scikit-learn/Examples/Ensemble methods

This example fits an AdaBoosted decision stump on a non-linearly separable classification dataset composed of two ?Gaussian quantiles? clusters (see

2025-01-10 15:47:30
Species distribution modeling
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

Modeling species? geographic distributions is an important problem in conservation biology. In this example we model the geographic distribution of two south american

2025-01-10 15:47:30
Agglomerative clustering with and without structure
  • References/Python/scikit-learn/Examples/Clustering

This example shows the effect of imposing a connectivity graph to capture local structure in the data. The graph is simply the graph of 20

2025-01-10 15:47:30
Segmenting the picture of a raccoon face in regions
  • References/Python/scikit-learn/Examples/Clustering

This example uses

2025-01-10 15:47:30
SGD: Maximum margin separating hyperplane
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Plot the maximum margin separating hyperplane within a two-class separable dataset using a linear Support Vector Machines classifier trained using SGD

2025-01-10 15:47:30
Demonstration of k-means assumptions
  • References/Python/scikit-learn/Examples/Clustering

This example is meant to illustrate situations where k-means will produce unintuitive and possibly unexpected clusters. In the first three plots, the input

2025-01-10 15:47:30
Decision Tree Regression with AdaBoost
  • References/Python/scikit-learn/Examples/Ensemble methods

A decision tree is boosted using the AdaBoost.R2 [1] algorithm on a 1D sinusoidal dataset with a small amount of Gaussian noise. 299 boosts (300 decision

2025-01-10 15:47:30