Spectral clustering for image segmentation
  • References/Python/scikit-learn/Examples/Clustering

In this example, an image with connected circles is generated and spectral clustering is used to separate the circles. In these settings, the

2025-01-10 15:47:30
Density Estimation for a Gaussian mixture
  • References/Python/scikit-learn/Examples/Gaussian Mixture Models

Plot the density estimation of a mixture of two Gaussians. Data is generated from two Gaussians with different centers and covariance matrices.

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

Transform your features into a higher dimensional, sparse space. Then train a linear model on these features. First fit an ensemble of

2025-01-10 15:47:30
Concatenating multiple feature extraction methods
  • References/Python/scikit-learn/Examples/General examples

In many real-world examples, there are many ways to extract features from a dataset. Often it is beneficial to combine several methods to obtain

2025-01-10 15:47:30
SVM Exercise
  • References/Python/scikit-learn/Examples/Tutorial exercises

A tutorial exercise for using different SVM kernels. This exercise is used in the

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

sklearn.mixture is a package which enables one to learn Gaussian Mixture Models (diagonal, spherical, tied and full covariance matrices supported), sample

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

sklearn.datasets.make_hastie_10_2(n_samples=12000, random_state=None)

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

sklearn.metrics.pairwise.cosine_similarity(X, Y=None, dense_output=True)

2025-01-10 15:47:30
feature_extraction.text.HashingVectorizer()
  • References/Python/scikit-learn/API Reference/feature_extraction

class sklearn.feature_extraction.text.HashingVectorizer(input=u'content', encoding=u'utf-8', decode_error=u'strict'

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

class sklearn.feature_extraction.FeatureHasher(n_features=1048576, input_type='dict', dtype=, non_negative=False)

2025-01-10 15:47:30