Various Agglomerative Clustering on a 2D embedding of digits
  • References/Python/scikit-learn/Examples/Clustering

An illustration of various linkage option for agglomerative clustering on a 2D embedding of the digits dataset. The goal

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

class sklearn.feature_selection.SelectFpr(score_func=, alpha=0.05)

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

Warning DEPRECATED

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

sklearn.metrics.brier_score_loss(y_true, y_prob, sample_weight=None, pos_label=None)

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

class sklearn.cluster.AgglomerativeClustering(n_clusters=2, affinity='euclidean', memory=Memory(cachedir=None), connectivity=None

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
naive_bayes.BernoulliNB()
  • References/Python/scikit-learn/API Reference/naive_bayes

class sklearn.naive_bayes.BernoulliNB(alpha=1.0, binarize=0.0, fit_prior=True, class_prior=None)

2025-01-10 15:47:30
gaussian_process.kernels.DotProduct()
  • References/Python/scikit-learn/API Reference/gaussian_process

class sklearn.gaussian_process.kernels.DotProduct(sigma_0=1.0, sigma_0_bounds=(1e-05, 100000.0))

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
decomposition.RandomizedPCA()
  • References/Python/scikit-learn/API Reference/decomposition

Warning DEPRECATED

2025-01-10 15:47:30