Classification of text documents using sparse features
  • References/Python/scikit-learn/Examples/Working with text documents

This is an example showing how scikit-learn can be used to classify documents by topics using a bag-of-words approach. This example uses

2025-01-10 15:47:30
Plot randomly generated multilabel dataset
  • References/Python/scikit-learn/Examples/Dataset examples

This illustrates the datasets.make_multilabel_classification dataset generator. Each sample consists of counts of two features (up to

2025-01-10 15:47:30
Logistic Regression 3-class Classifier
  • References/Python/scikit-learn/Examples/Generalized Linear Models

Show below is a logistic-regression classifiers decision boundaries on the

2025-01-10 15:47:30
Illustration of prior and posterior Gaussian process for different kernels
  • References/Python/scikit-learn/Examples/Gaussian Process for Machine Learning

This example illustrates the prior and posterior of a GPR with different kernels. Mean, standard deviation, and 10

2025-01-10 15:47:30
Iso-probability lines for Gaussian Processes classification
  • References/Python/scikit-learn/Examples/Gaussian Process for Machine Learning

A two-dimensional classification example showing iso-probability lines for the predicted probabilities.

2025-01-10 15:47:30
Comparison of the K-Means and MiniBatchKMeans clustering algorithms
  • References/Python/scikit-learn/Examples/Clustering

We want to compare the performance of the MiniBatchKMeans and KMeans: the MiniBatchKMeans is faster, but gives slightly different

2025-01-10 15:47:30
Gradient Boosting regression
  • References/Python/scikit-learn/Examples/Ensemble methods

Demonstrate Gradient Boosting on the Boston housing dataset. This example fits a Gradient Boosting model with least squares loss and 500 regression trees

2025-01-10 15:47:30
Cross-validation on diabetes Dataset Exercise
  • References/Python/scikit-learn/Examples/Tutorial exercises

A tutorial exercise which uses cross-validation with linear models. This exercise is used in the

2025-01-10 15:47:30
Lasso on dense and sparse data
  • References/Python/scikit-learn/Examples/Generalized Linear Models

We show that linear_model.Lasso provides the same results for dense and sparse data and that in the case of sparse data the speed is improved.

2025-01-10 15:47:30
Comparing randomized search and grid search for hyperparameter estimation
  • References/Python/scikit-learn/Examples/Model Selection

Compare randomized search and grid search for optimizing hyperparameters of a random forest. All parameters that influence

2025-01-10 15:47:30