class sklearn.base.RegressorMixin
[source]
Mixin class for all regression estimators in scikit-learn.
score (X, y[, sample_weight]) | Returns the coefficient of determination R^2 of the prediction. |
__init__($self, /, *args, **kwargs)
Initialize self. See help(type(self)) for accurate signature.
score(X, y, sample_weight=None)
[source]
Returns the coefficient of determination R^2 of the prediction.
The coefficient R^2 is defined as (1 - u/v), where u is the residual sum of squares ((y_true - y_pred) ** 2).sum() and v is the total sum of squares ((y_true - y_true.mean()) ** 2).sum(). The best possible score is 1.0 and it can be negative (because the model can be arbitrarily worse). A constant model that always predicts the expected value of y, disregarding the input features, would get a R^2 score of 0.0.
Parameters: |
|
---|---|
Returns: |
|
© 2007–2018 The scikit-learn developers
Licensed under the 3-clause BSD License.
http://scikit-learn.org/stable/modules/generated/sklearn.base.RegressorMixin.html