sklearn.model_selection.cross_val_score()
  • References/Python/scikit-learn/API Reference/model_selection

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

2025-01-10 15:47:30
exceptions.NotFittedError
  • References/Python/scikit-learn/API Reference/exceptions

class sklearn.exceptions.NotFittedError

2025-01-10 15:47:30
Probability Calibration curves
  • References/Python/scikit-learn/Examples/Calibration

When performing classification one often wants to predict not only the class label, but also the associated probability. This probability gives some kind of confidence

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

class sklearn.decomposition.NMF(n_components=None, init=None, solver='cd', tol=0.0001, max_iter=200, random_state=None, alpha=0.0, l1_ratio=0

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

Demonstrate the resolution of a regression problem using a k-Nearest Neighbor and the interpolation of the target using both barycenter and constant weights.

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

sklearn.datasets.make_circles(n_samples=100, shuffle=True, noise=None, random_state=None, factor=0.8)

2025-01-10 15:47:30
gaussian_process.kernels.WhiteKernel()
  • References/Python/scikit-learn/API Reference/gaussian_process

class sklearn.gaussian_process.kernels.WhiteKernel(noise_level=1.0, noise_level_bounds=(1e-05, 100000.0))

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