SVM-Anova
  • References/Python/scikit-learn/Examples/Support Vector Machines

This example shows how to perform univariate feature selection before running a SVC (support vector classifier) to improve the classification

2025-01-10 15:47:30
IsolationForest example
  • References/Python/scikit-learn/Examples/Ensemble methods

An example using IsolationForest for anomaly detection. The IsolationForest ?isolates? observations by randomly selecting a feature and then randomly selecting

2025-01-10 15:47:30
SGD: Penalties
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Plot the contours of the three penalties. All of the above are supported by sklearn.linear_model.stochastic_gradient.

2025-01-10 15:47:30
Comparing various online solvers
  • References/Python/scikit-learn/Examples/Generalized Linear Models

An example showing how different online solvers perform on the hand-written digits dataset.

2025-01-10 15:47:30
Linear and Quadratic Discriminant Analysis with confidence ellipsoid
  • References/Python/scikit-learn/Examples/Classification

Plot the confidence ellipsoids of each class and decision boundary print(__doc__)

2025-01-10 15:47:30
Principal components analysis
  • References/Python/scikit-learn/Examples/Decomposition

These figures aid in illustrating how a point cloud can be very flat in one direction?which is where PCA comes in to choose a direction that is not flat.

2025-01-10 15:47:30
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
Image denoising using dictionary learning
  • References/Python/scikit-learn/Examples/Decomposition

An example comparing the effect of reconstructing noisy fragments of a raccoon face image using firstly online

2025-01-10 15:47:30
Multi-class AdaBoosted Decision Trees
  • References/Python/scikit-learn/Examples/Ensemble methods

This example reproduces Figure 1 of Zhu et al [1] and shows how boosting can improve prediction accuracy on a multi-class problem. The classification dataset

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

An example showing univariate feature selection. Noisy (non informative) features are added to the iris data and univariate feature selection is applied

2025-01-10 15:47:30