python决策评价模型是什么_scikit学习决策树模型评估

By default, the score computed at each CV iteration is the score

method of the estimator. It is possible to change this by using the

scoring parameter:

从DecisionTreeClassifier documentation:Returns the mean accuracy on the given test data and labels. In

multi-label classification, this is the subset accuracy which is a

harsh metric since you require for each sample that each label set be

correctly predicted.

不要被“平均准确度”所迷惑,这只是计算准确度的常规方法。按照source的链接进行操作:from .metrics import accuracy_score

return accuracy_score(y, self.predict(X), sample_weight=sample_weight)

现在是metrics.accuracy_score的source

^{pr2}$

def _weighted_sum(sample_score, sample_weight, normalize=False):

if normalize:

return np.average(sample_score, weights=sample_weight)

elif sample_weight is not None:

return np.dot(sample_score, sample_weight)

else:

return sample_score.sum()

注意:对于accuracy_score,normalize参数默认为True,因此它只返回布尔numpy数组的np.average,因此它只是正确预测的平均数。在

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值