Multilabel classification
  • References/Python/scikit-learn/Examples/General examples

This example simulates a multi-label document classification problem. The dataset is generated randomly based on the following process: pick

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

This example illustrates the effect of the parameters gamma and C of the Radial Basis Function (RBF) kernel SVM. Intuitively, the gamma

2025-01-10 15:47:30
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
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
Restricted Boltzmann Machine features for digit classification
  • References/Python/scikit-learn/Examples/Neural Networks

For greyscale image data where pixel values can be interpreted as degrees of blackness on a white background, like handwritten

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
Plot the decision boundaries of a VotingClassifier
  • References/Python/scikit-learn/Examples/Ensemble methods

Plot the decision boundaries of a VotingClassifier for two features of the Iris dataset. Plot the class probabilities

2025-01-10 15:47:30
Comparing different clustering algorithms on toy datasets
  • References/Python/scikit-learn/Examples/Clustering

This example aims at showing characteristics of different clustering algorithms on datasets that are ?interesting? but still in 2D

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
Feature Union with Heterogeneous Data Sources
  • References/Python/scikit-learn/Examples/General examples

Datasets can often contain components of that require different feature extraction and processing pipelines. This scenario might occur when:

2025-01-10 15:47:30