Test with permutations the significance of a classification score
  • References/Python/scikit-learn/Examples/Feature Selection

In order to test if a classification score is significative a technique in repeating the classification procedure after randomizing

2025-01-10 15:47:30
Receiver Operating Characteristic with cross validation
  • References/Python/scikit-learn/Examples/Model Selection

Example of Receiver Operating Characteristic (ROC) metric to evaluate classifier output quality using cross-validation. ROC

2025-01-10 15:47:30
K-means Clustering
  • References/Python/scikit-learn/Examples/Clustering

The plots display firstly what a K-means algorithm would yield using three clusters. It is then shown what the effect of a bad initialization is on the classification process:

2025-01-10 15:47:30
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
Pixel importances with a parallel forest of trees
  • References/Python/scikit-learn/Examples/Ensemble methods

This example shows the use of forests of trees to evaluate the importance of the pixels in an image classification task (faces). The hotter

2025-01-10 15:47:30
Faces recognition example using eigenfaces and SVMs
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

The dataset used in this example is a preprocessed excerpt of the ?Labeled Faces in the Wild?, aka

2025-01-10 15:47:30
Demo of DBSCAN clustering algorithm
  • References/Python/scikit-learn/Examples/Clustering

Finds core samples of high density and expands clusters from them. print(__doc__) import numpy as np from

2025-01-10 15:47:30
Compare cross decomposition methods
  • References/Python/scikit-learn/Examples/Cross decomposition

Simple usage of various cross decomposition algorithms: - PLSCanonical - PLSRegression, with multivariate response, a.k.a. PLS2 - PLSRegression, with univariate

2025-01-10 15:47:30