Comparison of kernel ridge and Gaussian process regression
  • References/Python/scikit-learn/Examples/Gaussian Process for Machine Learning

Both kernel ridge regression (KRR) and Gaussian process regression (GPR) learn a target function by employing internally the ?kernel

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

These images how similar features are merged together using feature agglomeration.

2025-01-10 15:47:30
Outlier detection with several methods.
  • References/Python/scikit-learn/Examples/Covariance estimation

When the amount of contamination is known, this example illustrates three different ways of performing

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

class sklearn.decomposition.ProjectedGradientNMF(*args, **kwargs)

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

sklearn.svm.libsvm.fit() Train the model using libsvm (low-level method)

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

class sklearn.ensemble.RandomForestClassifier(n_estimators=10, criterion='gini', max_depth=None, min_samples_split=2, min_samples_leaf=1

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

sklearn.metrics.pairwise.pairwise_kernels(X, Y=None, metric='linear', filter_params=False, n_jobs=1, **kwds)

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

class sklearn.feature_selection.GenericUnivariateSelect(score_func=, mode='percentile', param=1e-05)

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

Naive Bayes methods are a set of supervised learning algorithms based on applying Bayes? theorem with the ?naive? assumption of independence between every pair of features. Given

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

Computes a Theil-Sen Regression on a synthetic dataset. See

2025-01-10 15:47:30