Probability calibration of classifiers
  • References/Python/scikit-learn/Examples/Calibration

When performing classification you often want to predict not only the class label, but also the associated probability. This probability gives you some

2025-01-10 15:47:30
Compare Stochastic learning strategies for MLPClassifier
  • References/Python/scikit-learn/Examples/Neural Networks

This example visualizes some training loss curves for different stochastic learning strategies, including SGD and Adam. Because of time-constraints

2025-01-10 15:47:30
SGD: Maximum margin separating hyperplane
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Plot the maximum margin separating hyperplane within a two-class separable dataset using a linear Support Vector Machines classifier trained using SGD

2025-01-10 15:47:30
Unsupervised learning
  • References/Python/scikit-learn/Tutorials

Clustering: grouping observations together The problem solved in clustering Given the

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

sklearn.model_selection.permutation_test_score(estimator, X, y, groups=None, cv=None, n_permutations=100, n_jobs=1

2025-01-10 15:47:30
The Johnson-Lindenstrauss bound for embedding with random projections
  • References/Python/scikit-learn/Examples/General examples

The

2025-01-10 15:47:30
Gradient Boosting regularization
  • References/Python/scikit-learn/Examples/Ensemble methods

Illustration of the effect of different regularization strategies for Gradient Boosting. The example is taken from Hastie et al 2009. The loss function

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

sklearn.metrics.explained_variance_score(y_true, y_pred, sample_weight=None, multioutput='uniform_average')

2025-01-10 15:47:30
Demonstration of k-means assumptions
  • References/Python/scikit-learn/Examples/Clustering

This example is meant to illustrate situations where k-means will produce unintuitive and possibly unexpected clusters. In the first three plots, the input

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

Support vector machines (SVMs) are a set of supervised learning methods used for

2025-01-10 15:47:30