【发布时间】:2016-06-27 16:49:34
【问题描述】:
我在数据集上应用了分类算法并得出以下统计数据:
Correctly Classified Instances 684 76.1693 %
Incorrectly Classified Instances 214 23.8307 %
Kappa statistic 0
Mean absolute error 0.1343
Root mean squared error 0.2582
Relative absolute error 100 %
Root relative squared error 100 %
Total Number of Instances 898
=== Detailed Accuracy By Class ===
TP Rate FP Rate Precision Recall F-Measure ROC Area Class
0 0 0 0 0 0.5 1
0 0 0 0 0 0.5 2
1 1 0.762 1 0.865 0.5 3
0 0 0 0 0 ? 4
0 0 0 0 0 0.5 5
0 0 0 0 0 0.5 U
Weighted Avg. 0.762 0.762 0.58 0.762 0.659 0.5
=== Confusion Matrix ===
a b c d e f <-- classified as
0 0 8 0 0 0 | a = 1
0 0 99 0 0 0 | b = 2
0 0 684 0 0 0 | c = 3
0 0 0 0 0 0 | d = 4
0 0 67 0 0 0 | e = 5
0 0 40 0 0 0 | f = U
我可以理解大部分数据,但是由于我是 Weka 的新手,因此在解释这些值时存在问题: 1. 总体报告的错误率是多少? 2. 如果模型有什么有趣的地方,如何解释?
【问题讨论】:
-
您的 ML 模型似乎无法学习任何东西,只能预测所有 c 类的测试实例。
标签: performance machine-learning classification weka