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
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
Label Propagation learning a complex structure
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Example of LabelPropagation learning a complex internal structure to demonstrate ?manifold learning?. The outer circle should be labeled ?red

2025-01-10 15:47:30
Automatic Relevance Determination Regression
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Fit regression model with Bayesian Ridge Regression. See

2025-01-10 15:47:30
Model Complexity Influence
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

Demonstrate how model complexity influences both prediction accuracy and computational performance. The dataset is the Boston Housing dataset (resp. 20 Newsgroups)

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
Prediction Latency
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

This is an example showing the prediction latency of various scikit-learn estimators. The goal is to measure the latency one can expect when doing predictions either

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

Example of Receiver Operating Characteristic (ROC) metric to evaluate classifier output quality. ROC curves typically feature true positive rate

2025-01-10 15:47:30
Normal and Shrinkage Linear Discriminant Analysis for classification
  • References/Python/scikit-learn/Examples/Classification

Shows how shrinkage improves classification.

2025-01-10 15:47:30
A demo of the Spectral Co-Clustering algorithm
  • References/Python/scikit-learn/Examples/Biclustering

This example demonstrates how to generate a dataset and bicluster it using the Spectral Co-Clustering algorithm. The dataset is generated

2025-01-10 15:47:30