Cross-validation on Digits Dataset Exercise
  • References/Python/scikit-learn/Examples/Tutorial exercises

A tutorial exercise using Cross-validation with an SVM on the Digits dataset. This exercise is used in the

2025-01-10 15:47:30
sklearn.metrics.fbeta_score()
  • References/Python/scikit-learn/API Reference/metrics

sklearn.metrics.fbeta_score(y_true, y_pred, beta, labels=None, pos_label=1, average='binary', sample_weight=None)

2025-01-10 15:47:30
neighbors.LSHForest()
  • References/Python/scikit-learn/API Reference/neighbors

class sklearn.neighbors.LSHForest(n_estimators=10, radius=1.0, n_candidates=50, n_neighbors=5, min_hash_match=4, radius_cutoff_ratio=0

2025-01-10 15:47:30
Selecting the number of clusters with silhouette analysis on KMeans clustering
  • References/Python/scikit-learn/Examples/Clustering

Silhouette analysis can be used to study the separation distance between the resulting clusters. The silhouette

2025-01-10 15:47:30
sklearn.metrics.homogeneity_score()
  • References/Python/scikit-learn/API Reference/metrics

sklearn.metrics.homogeneity_score(labels_true, labels_pred)

2025-01-10 15:47:30
Incremental PCA
  • References/Python/scikit-learn/Examples/Decomposition

Incremental principal component analysis (IPCA) is typically used as a replacement for principal component analysis (PCA) when the dataset to be decomposed is too large to fit

2025-01-10 15:47:30
neighbors.BallTree
  • References/Python/scikit-learn/API Reference/neighbors

class sklearn.neighbors.BallTree BallTree for fast generalized N-point problems BallTree(X, leaf_size=40, metric=

2025-01-10 15:47:30
4.1.
  • References/Python/scikit-learn/Guide

4.1.1. Pipeline: chaining estimators

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
4.8.
  • References/Python/scikit-learn/Guide

4.8.1. Label binarization

2025-01-10 15:47:30