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
Gaussian Processes regression
  • References/Python/scikit-learn/Examples/Gaussian Process for Machine Learning

A simple one-dimensional regression example computed in two different ways: A noise-free case

2025-01-10 15:47:30
2.8.
  • References/Python/scikit-learn/Guide

Density estimation walks the line between unsupervised learning, feature engineering, and data modeling. Some of the most popular and useful density estimation techniques

2025-01-10 15:47:30
linear_model.SGDClassifier()
  • References/Python/scikit-learn/API Reference/linear_model

class sklearn.linear_model.SGDClassifier(loss='hinge', penalty='l2', alpha=0.0001, l1_ratio=0.15, fit_intercept=True, n_iter=5,

2025-01-10 15:47:30
sklearn.metrics.pairwise_distances_argmin_min()
  • References/Python/scikit-learn/API Reference/metrics

sklearn.metrics.pairwise_distances_argmin_min(X, Y, axis=1, metric='euclidean', batch_size=500, metric_kwargs=None)

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
sklearn.model_selection.cross_val_predict()
  • References/Python/scikit-learn/API Reference/model_selection

sklearn.model_selection.cross_val_predict(estimator, X, y=None, groups=None, cv=None, n_jobs=1, verbose=0, fit_params=None

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
3.5.
  • References/Python/scikit-learn/Guide

Every estimator has its advantages and drawbacks. Its generalization error can be decomposed in terms of bias, variance and noise. The

2025-01-10 15:47:30
Bayesian Ridge Regression
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Computes a Bayesian Ridge Regression on a synthetic dataset. See

2025-01-10 15:47:30