gaussian_process.kernels.Sum()
  • References/Python/scikit-learn/API Reference/gaussian_process

class sklearn.gaussian_process.kernels.Sum(k1, k2)

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

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

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
preprocessing.FunctionTransformer()
  • References/Python/scikit-learn/API Reference/preprocessing

class sklearn.preprocessing.FunctionTransformer(func=None, inverse_func=None, validate=True, accept_sparse=False, pass_y=False

2025-01-10 15:47:30
Illustration of Gaussian process classification on the XOR dataset
  • References/Python/scikit-learn/Examples/Gaussian Process for Machine Learning

This example illustrates GPC on XOR data. Compared are a stationary, isotropic kernel (RBF) and a non-stationary kernel

2025-01-10 15:47:30
IsolationForest example
  • References/Python/scikit-learn/Examples/Ensemble methods

An example using IsolationForest for anomaly detection. The IsolationForest ?isolates? observations by randomly selecting a feature and then randomly selecting

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

class sklearn.model_selection.GroupKFold(n_splits=3)

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