sklearn.metrics Module: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<P>(\w)" to "<P> $1") |
m (Text replacement - "]]↵*" to "]]. *") |
||
Line 10: | Line 10: | ||
** [[sklearn.metrics Multilabel Ranking Submodule]]. | ** [[sklearn.metrics Multilabel Ranking Submodule]]. | ||
** [[sklearn.metrics Biclustering Submodule]]. | ** [[sklearn.metrics Biclustering Submodule]]. | ||
** [[sklearn.metrics.cluster Submodule]] | ** [[sklearn.metrics.cluster Submodule]]. | ||
* <B>Counter-Example(s):</B> | * <B>Counter-Example(s):</B> | ||
** <code>[[sklearn.manifold]]</code>, a collection of [[Manifold Learning System]]s. | ** <code>[[sklearn.manifold]]</code>, a collection of [[Manifold Learning System]]s. |
Revision as of 18:44, 4 October 2023
An sklearn.metrics Module is an sklearn module that contains a collection of Metrics subroutines.
- Context:
- It can (often) reference a sklearn.metrics system.
sklearn.metrics.Metric_Name(self, arguments)
or simplysklearn.metrics.Metric_Name()
where Metric_Name is the name of the selected Metric subroutine.
- It can range from being Classification Metrics, to being Regression Metrics, to being Multilabel Ranking Metrics, to being Clustering Metrics, to being Biclustering Metrics, to being Pairwise Metrics.
- It can (often) reference a sklearn.metrics system.
- Example(s)
- Counter-Example(s):
sklearn.manifold
, a collection of Manifold Learning Systems.sklearn.tree
, a collection of Decision Tree Learning Systems.sklearn.ensemble
, a collection of Decision Tree Ensemble Learning Systems.sklearn.covariance
,a collection of Covariance Estimators.sklearn.cluster.bicluster
, a collection of Spectral Biclustering Algorithms.sklearn.linear_model
, a collection of Linear Model Regression Systems.sklearn.neighbors
, a collection of K Nearest Neighbors Algorithms.sklearn.neural_network
, a collection of Neural Network Systems.
- See: Metric, Pairwise Distance, Clustering, Regression Analysis Task, Classification Task, MSE, RMSE.
References
2017A
- (Scikit Learn, 2017) ⇒ http://scikit-learn.org/stable/modules/classes.html#module-sklearn.metrics Retrieved:2017-11-12
- QUOTE: See the Model evaluation: quantifying the quality of predictions section and the Pairwise metrics, Affinities and Kernels section of the user guide for further details.
The sklearn.metrics module includes score functions, performance metrics and pairwise metrics and distance computations.
- QUOTE: See the Model evaluation: quantifying the quality of predictions section and the Pairwise metrics, Affinities and Kernels section of the user guide for further details.