【问题标题】:Getting errors when trying to calculate accuracy on GaussianNB尝试在 GaussianNB 上计算准确度时出错
【发布时间】:2021-01-28 08:43:28
【问题描述】:

我正在尝试获取我创建的模型的准确性。我的代码是这样的

from sklearn.datasets import fetch_california_housing
from sklearn.model_selection import train_test_split
import numpy as np

data = fetch_california_housing()
c = np.array([1 if y > np.median(data['target']) else 0 for y in data['target']])
X_train, X_test, c_train, c_test = train_test_split(data['data'], c, random_state=0)

gaussian=GaussianNB().fit(X_train, c_train)
pred=gaussian.predict(X_test)    
metrics.accuracy_score(X_test, pred)

此行抛出错误:metrics.accuracy_score(X_test, pred) Saying

ValueError: Classification metrics can't handle a mix of continuous-multioutput and binary targets

我搜索了解决方案,但找不到任何解决方案。我从其他人那里看到的一些帖子有这个问题,说不能使用 metric.accuracy... 因为这是分类问题。但我的是一个分类问题。

我还尝试了另一种方法:pred=score(X_test, pred) whih 给出错误:

TypeError: 'numpy.float64' object is not callable

感谢您的帮助

----------更新-------------

X_test

[[   4.1518       22.            5.66307278 ...    4.18059299
    32.58       -117.05      ]
 [   5.7796       32.            6.10722611 ...    3.02097902
    33.92       -117.97      ]
 [   4.3487       29.            5.93071161 ...    2.91011236
    38.65       -121.84      ]
 ...
 [   3.6296       16.            3.61684211 ...    1.88631579
    34.2        -118.61      ]
 [   5.5133       37.            4.59322034 ...    3.00847458
    33.9        -118.34      ]
 [   4.7639       36.            5.26181818 ...    2.90545455
    37.66       -122.44      ]]

预测

[1 1 1 ... 1 1 1]

【问题讨论】:

  • 你能提供X_testpred的样本吗?
  • 什么是GaussianNB()?自定义函数?
  • 不,不是自定义函数,是贝叶斯朴素分类,是importetfrom sklearn.naive_bayes import GaussianNB

标签: python machine-learning naivebayes


【解决方案1】:

似乎与 c_test 一起工作:

accuracy_score(c_test, pred) # 0.743798

另一种方法是:

1 - ((c_test != pred).sum() / X_test.shape[0]) # 0.743798

【讨论】:

  • 你是对的,谢谢。它似乎与 c_test 一起工作,但我有点担心这是否给出了所需的分数,正如我在 X_test 上预测的那样。我会考虑到这一点
猜你喜欢
  • 2020-12-11
  • 1970-01-01
  • 1970-01-01
  • 2021-10-17
  • 2021-11-12
  • 2013-11-20
  • 1970-01-01
  • 2015-01-19
相关资源
最近更新 更多