Visualization of MLP weights on MNIST
  • References/Python/scikit-learn/Examples/Neural Networks

Sometimes looking at the learned coefficients of a neural network can provide insight into the learning behavior. For example if weights look unstructured

2025-01-10 15:47:30
Plot different SVM classifiers in the iris dataset
  • References/Python/scikit-learn/Examples/Support Vector Machines

Comparison of different linear SVM classifiers on a 2D projection of the iris dataset. We only consider the first 2 features of this dataset:

2025-01-10 15:47:30
Prediction Intervals for Gradient Boosting Regression
  • References/Python/scikit-learn/Examples/Ensemble methods

This example shows how quantile regression can be used to create prediction intervals.

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

class sklearn.model_selection.StratifiedKFold(n_splits=3, shuffle=False, random_state=None)

2025-01-10 15:47:30
Plot classification probability
  • References/Python/scikit-learn/Examples/Classification

Plot the classification probability for different classifiers. We use a 3 class dataset, and we classify it with a Support Vector classifier, L1 and L2 penalized

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

sklearn.feature_selection.mutual_info_classif(X, y, discrete_features='auto', n_neighbors=3, copy=True, random_state=None)

2025-01-10 15:47:30
Biclustering documents with the Spectral Co-clustering algorithm
  • References/Python/scikit-learn/Examples/Biclustering

This example demonstrates the Spectral Co-clustering algorithm on the twenty newsgroups dataset. The ?comp.os.ms-windows.misc

2025-01-10 15:47:30
Outlier detection on a real data set
  • References/Python/scikit-learn/Examples/Examples based on real world datasets

This example illustrates the need for robust covariance estimation on a real data set. It is useful both for outlier detection and for a better understanding

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

class sklearn.preprocessing.FunctionTransformer(func=None, inverse_func=None, validate=True, accept_sparse=False, pass_y=False

2025-01-10 15:47:30
Partial Dependence Plots
  • References/Python/scikit-learn/Examples/Ensemble methods

Partial dependence plots show the dependence between the target function

2025-01-10 15:47:30