SVM: Weighted samples
  • References/Python/scikit-learn/Examples/Support Vector Machines

Plot decision function of a weighted dataset, where the size of points is proportional to its weight. The sample weighting rescales the C parameter, which means

2025-01-10 15:47:30
Decision boundary of label propagation versus SVM on the Iris dataset
  • References/Python/scikit-learn/Examples/Semi Supervised Classification

Comparison for decision boundary generated on iris dataset between Label Propagation and SVM. This demonstrates

2025-01-10 15:47:30
Gradient Boosting Out-of-Bag estimates
  • References/Python/scikit-learn/Examples/Ensemble methods

Out-of-bag (OOB) estimates can be a useful heuristic to estimate the ?optimal? number of boosting iterations. OOB estimates are almost identical to cross-validation

2025-01-10 15:47:30
Recognizing hand-written digits
  • References/Python/scikit-learn/Examples/Classification

An example showing how the scikit-learn can be used to recognize images of hand-written digits. This example is commented in the

2025-01-10 15:47:30
Hashing feature transformation using Totally Random Trees
  • References/Python/scikit-learn/Examples/Ensemble methods

RandomTreesEmbedding provides a way to map data to a very high-dimensional, sparse representation, which might be beneficial for classification

2025-01-10 15:47:30
Feature importances with forests of trees
  • References/Python/scikit-learn/Examples/Ensemble methods

This examples shows the use of forests of trees to evaluate the importance of features on an artificial classification task. The red bars are the feature

2025-01-10 15:47:30
One-class SVM with non-linear kernel
  • References/Python/scikit-learn/Examples/Support Vector Machines

An example using a one-class SVM for novelty detection.

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
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
FeatureHasher and DictVectorizer Comparison
  • References/Python/scikit-learn/Examples/Working with text documents

Compares FeatureHasher and DictVectorizer by using both to vectorize text documents. The example demonstrates syntax and speed only; it doesn

2025-01-10 15:47:30