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
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
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
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
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
Concentration Prior Type Analysis of Variation Bayesian Gaussian Mixture
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

This example plots the ellipsoids obtained from a toy dataset (mixture of three Gaussians) fitted by the Baye

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

Plot decision function of a weighted dataset, where the size of points is proportional to its weight. The sample weighting rescales the C parameter, which means

2025-01-10 15:47:30
Underfitting vs.
  • References/Python/scikit-learn/Examples/Model Selection

This example demonstrates the problems of underfitting and overfitting and how we can use linear regression with polynomial features to approximate nonlinear functions

2025-01-10 15:47:30
Pipeline Anova SVM
  • References/Python/scikit-learn/Examples/Feature Selection

Simple usage of Pipeline that runs successively a univariate feature selection with anova and then a C-SVM of the selected features.

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