sklearn中预测模型的score函数

Posted cymwill

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sklearn中预测模型的score函数相关的知识,希望对你有一定的参考价值。

sklearn.linear_model.LinearRegression.score

score(self, X, y, sample_weight=None)

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.

 

作用:返回该次预测的系数R2    

  其中R=(1-u/v)。

  u=((y_true - y_pred) ** 2).sum()     v=((y_true - y_true.mean()) ** 2).sum()

 

其中可能得到的最好的分数是1,并且可能是负值(因为模型可能会变得更加糟糕)。当一个模型不论输入何种特征值,其总是输出期望的y的时候,此时返回0。

以上是关于sklearn中预测模型的score函数的主要内容,如果未能解决你的问题,请参考以下文章

sklearn中的模型评估-构建评估函数

sklearn中score为啥使用测试数据

机器学习sklearn(二十七): 模型评估量化预测的质量回归指标

使用 sklearn cross_val_score 和 kfolds 来拟合和帮助预测模型

ValueError:使用 sklearn roc_auc_score 函数不支持多类多输出格式

sklearn中模型评估和预测