neighbors.NearestNeighbors()
  • References/Python/scikit-learn/API Reference/neighbors

class sklearn.neighbors.NearestNeighbors(n_neighbors=5, radius=1.0, algorithm='auto', leaf_size=30, metric='minkowski', p=2, metric_params=None

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

class sklearn.model_selection.LeavePGroupsOut(n_groups)

2025-01-10 15:47:30
Multi-output Decision Tree Regression
  • References/Python/scikit-learn/Examples/Decision Trees

An example to illustrate multi-output regression with decision tree. The

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

sklearn.datasets.fetch_20newsgroups(data_home=None, subset='train', categories=None, shuffle=True, random_state=42, remove=()

2025-01-10 15:47:30
SVM Margins Example
  • References/Python/scikit-learn/Examples/Support Vector Machines

The plots below illustrate the effect the parameter C has on the separation line. A large value of C basically tells our model that we do not have

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

sklearn.isotonic.check_increasing(x, y)

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

class sklearn.semi_supervised.LabelSpreading(kernel='rbf', gamma=20, n_neighbors=7, alpha=0.2, max_iter=30, tol=0.001, n_jobs=1)

2025-01-10 15:47:30
Gaussian Mixture Model Selection
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

This example shows that model selection can be performed with Gaussian Mixture Models using information-theoretic criteria (BIC). Model selection concerns both

2025-01-10 15:47:30
Working With Text Data
  • References/Python/scikit-learn/Tutorials

The goal of this guide is to explore some of the main scikit-learn tools on a single practical task: analysing a collection of text documents (newsgroups

2025-01-10 15:47:30
Model selection with Probabilistic PCA and Factor Analysis
  • References/Python/scikit-learn/Examples/Decomposition

Probabilistic PCA and Factor Analysis are probabilistic models. The consequence is that the likelihood of new data can be used

2025-01-10 15:47:30