-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
releasedIncluded in a releaseIncluded in a release
Description
Is your feature request related to a problem?
Several users wanted to compute metrics on their predictions. This is currently not supported. They must instead call the corresponding methods on regressors and classifiers.
Desired solution
- Add a new package
ml.metrics. - Add classes
RegressionMetricsandClassificationMetricswith static methods for individual metrics and a summarized version (seeRegressor.summarize_metricsandClassifier.summarize_metrics#713).
We wrap them in a class to
- no pollute the global namespace too much
- highlight which metrics are suitable for which task.
The second point was the original reason why we only made metrics available as methods of Regressor and Classifier.
Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
Metadata
Metadata
Assignees
Labels
releasedIncluded in a releaseIncluded in a release
Type
Projects
Status
✔️ Done