Out-of-core classification of text documents
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

This is an example showing how scikit-learn can be used for classification using an out-of-core approach: learning from data that doesn?t fit into

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

sklearn.datasets.fetch_lfw_people(data_home=None, funneled=True, resize=0.5, min_faces_per_person=0, color=False, slice_=(slice(70

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

class sklearn.neural_network.MLPRegressor(hidden_layer_sizes=(100, ), activation='relu', solver='adam', alpha=0.0001, batch_size='auto'

2025-01-10 15:47:30
One-class SVM with non-linear kernel
  • References/Python/scikit-learn/Examples/Support Vector Machines

An example using a one-class SVM for novelty detection.

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

sklearn.ensemble.partial_dependence.partial_dependence(gbrt, target_variables, grid=None, X=None, percentiles=(0

2025-01-10 15:47:30
Incremental PCA
  • References/Python/scikit-learn/Examples/Decomposition

Incremental principal component analysis (IPCA) is typically used as a replacement for principal component analysis (PCA) when the dataset to be decomposed is too large to fit

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

4.8.1. Label binarization

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

class sklearn.model_selection.GroupShuffleSplit(n_splits=5, test_size=0.2, train_size=None, random_state=None)

2025-01-10 15:47:30
Online learning of a dictionary of parts of faces
  • References/Python/scikit-learn/Examples/Clustering

This example uses a large dataset of faces to learn a set of 20 x 20 images patches that constitute faces. From the programming standpoint

2025-01-10 15:47:30
Decision boundary of label propagation versus SVM on the Iris dataset
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Comparison for decision boundary generated on iris dataset between Label Propagation and SVM. This demonstrates

2025-01-10 15:47:30