SGD: convex loss functions
  • References/Python/scikit-learn/Examples/Generalized Linear Models

A plot that compares the various convex loss functions supported by

2025-01-10 15:47:30
Robust Scaling on Toy Data
  • References/Python/scikit-learn/Examples/Preprocessing

Making sure that each Feature has approximately the same scale can be a crucial preprocessing step. However, when data contains outliers,

2025-01-10 15:47:30
SVM: Separating hyperplane for unbalanced classes
  • References/Python/scikit-learn/Examples/Support Vector Machines

Find the optimal separating hyperplane using an SVC for classes that are unbalanced. We first find the separating plane with a plain

2025-01-10 15:47:30
Pipelining
  • References/Python/scikit-learn/Examples/General examples

The PCA does an unsupervised dimensionality reduction, while the logistic regression does the prediction. We use a GridSearchCV to

2025-01-10 15:47:30
Orthogonal Matching Pursuit
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Using orthogonal matching pursuit for recovering a sparse signal from a noisy measurement encoded with a dictionary print(__doc__)

2025-01-10 15:47:30
Hashing feature transformation using Totally Random Trees
  • References/Python/scikit-learn/Examples/Ensemble methods

RandomTreesEmbedding provides a way to map data to a very high-dimensional, sparse representation, which might be beneficial for classification

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

This example studies the scalability profile of approximate 10-neighbors queries using the LSHForest with n_estimators=20 and

2025-01-10 15:47:30
Feature importances with forests of trees
  • References/Python/scikit-learn/Examples/Ensemble methods

This examples shows the use of forests of trees to evaluate the importance of features on an artificial classification task. The red bars are the feature

2025-01-10 15:47:30
Label Propagation digits active learning
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Demonstrates an active learning technique to learn handwritten digits using label propagation. We start by training a label propagation model

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

Sample usage of Nearest Neighbors classification. It will plot the decision boundaries for each class.

2025-01-10 15:47:30