sklearn.svm.libsvm.predict()
  • References/Python/scikit-learn/API Reference/svm

sklearn.svm.libsvm.predict() Predict target values of X given a model (low-level method)

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

sklearn.preprocessing.normalize(X, norm='l2', axis=1, copy=True, return_norm=False)

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

sklearn.metrics.make_scorer(score_func, greater_is_better=True, needs_proba=False, needs_threshold=False, **kwargs)

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

sklearn.metrics.pairwise.kernel_metrics()

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

sklearn.datasets.make_classification(n_samples=100, n_features=20, n_informative=2, n_redundant=2, n_repeated=0, n_classes=2

2025-01-10 15:47:30
A tutorial on statistical-learning for scientific data processing
  • References/Python/scikit-learn/Tutorials

Statistical learning

2025-01-10 15:47:30
neighbors.DistanceMetric
  • References/Python/scikit-learn/API Reference/neighbors

class sklearn.neighbors.DistanceMetric DistanceMetric class This class provides a uniform interface to

2025-01-10 15:47:30
SVM-Anova
  • References/Python/scikit-learn/Examples/Support Vector Machines

This example shows how to perform univariate feature selection before running a SVC (support vector classifier) to improve the classification

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

class sklearn.preprocessing.LabelBinarizer(neg_label=0, pos_label=1, sparse_output=False)

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