Make a scorer from a performance metric or loss function.
A scorer is a wrapper around an arbitrary metric or loss function that is called with the signature scorer(estimator, X, y_true, **kwargs)
.
It is accepted in all scikit-learn estimators or functions allowing a scoring
parameter.
The parameter response_method
allows to specify which method of the estimator should be used to feed the scoring/loss function.
Read more in the User Guide.
Score function (or loss function) with signature score_func(y, y_pred, **kwargs)
.
Specifies the response method to use get prediction from an estimator (i.e. predict_proba, decision_function or predict). Possible choices are:
if str
, it corresponds to the name to the method to return;
if a list or tuple of str
, it provides the method names in order of preference. The method returned corresponds to the first method in the list and which is implemented by estimator
.
if None
, it is equivalent to "predict"
.
Added in version 1.4.
Deprecated since version 1.6: None is equivalent to ‘predict’ and is deprecated. It will be removed in version 1.8.
Whether score_func
is a score function (default), meaning high is good, or a loss function, meaning low is good. In the latter case, the scorer object will sign-flip the outcome of the score_func
.
Additional parameters to be passed to score_func
.
Callable object that returns a scalar score; greater is better.
Examples
>>> from sklearn.metrics import fbeta_score, make_scorer >>> ftwo_scorer = make_scorer(fbeta_score, beta=2) >>> ftwo_scorer make_scorer(fbeta_score, response_method='predict', beta=2) >>> from sklearn.model_selection import GridSearchCV >>> from sklearn.svm import LinearSVC >>> grid = GridSearchCV(LinearSVC(), param_grid={'C': [1, 10]}, ... scoring=ftwo_scorer)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4