Color Quantization using K-Means
  • References/Python/scikit-learn/Examples/Clustering

Performs a pixel-wise Vector Quantization (VQ) of an image of the summer palace (China), reducing the number of colors required to show the image from 96,615

2025-01-10 15:47:30
Visualizing the stock market structure
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

This example employs several unsupervised learning techniques to extract the stock market structure from variations in historical quotes. The quantity

2025-01-10 15:47:30
Comparison of kernel ridge regression and SVR
  • References/Python/scikit-learn/Examples/General examples

Both kernel ridge regression (KRR) and SVR learn a non-linear function by employing the kernel trick, i.e., they learn a linear function in the

2025-01-10 15:47:30
Classification of text documents
  • References/Python/scikit-learn/Examples/Working with text documents

This is an example showing how the scikit-learn can be used to classify documents by topics using a bag-of-words approach. This example

2025-01-10 15:47:30
Agglomerative clustering with different metrics
  • References/Python/scikit-learn/Examples/Clustering

Demonstrates the effect of different metrics on the hierarchical clustering. The example is engineered to show the effect of the choice

2025-01-10 15:47:30
Compare BIRCH and MiniBatchKMeans
  • References/Python/scikit-learn/Examples/Clustering

This example compares the timing of Birch (with and without the global clustering step) and MiniBatchKMeans on a synthetic dataset having 100,000 samples and

2025-01-10 15:47:30
SVM Margins Example
  • References/Python/scikit-learn/Examples/Support Vector Machines

The plots below illustrate the effect the parameter C has on the separation line. A large value of C basically tells our model that we do not have

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

Reference: Brendan J. Frey and Delbert Dueck, ?Clustering by Passing Messages Between Data Points?, Science Feb. 2007

2025-01-10 15:47:30
Nearest Centroid Classification
  • References/Python/scikit-learn/Examples/Nearest Neighbors

Sample usage of Nearest Centroid classification. It will plot the decision boundaries for each class.

2025-01-10 15:47:30
Hierarchical clustering
  • References/Python/scikit-learn/Examples/Clustering

Example builds a swiss roll dataset and runs hierarchical clustering on their position. For more information, see

2025-01-10 15:47:30