问题是当你指定一个训练集 -t train.arff
和一个测试集 test.arff
时,操作的模式是根据测试集来计算模型的性能。但是你不能在不知道实际班级的情况下计算任何类型的表现。如果没有实际的课程,你怎么知道你的预测是对还是错?
我将您提供的数据train.arff
与test.arff
我分配的任意类别标签一起使用。相关的输出行是:
=== Error on training data ===
Correctly Classified Instances 4 80 %
Incorrectly Classified Instances 1 20 %
Kappa statistic 0.6154
Mean absolute error 0.2429
Root mean squared error 0.4016
Relative absolute error 50.0043 %
Root relative squared error 81.8358 %
Total Number of Instances 5
=== Confusion Matrix ===
a b <-- classified as
2 1 | a = 1
0 2 | b = -1
和
=== Error on test data ===
Total Number of Instances 0
Ignored Class Unknown Instances 5
=== Confusion Matrix ===
a b <-- classified as
0 0 | a = 1
0 0 | b = -1
Weka 可以为您提供训练集的这些统计数据,因为它知道实际的类标签和预测的类标签(将模型应用于训练集)。对于测试集,它无法获得任何有关性能的信息,因为它不知道真正的类标签。
您可能想要做的是:
java -cp weka.jar weka.classifiers.bayes.NaiveBayes -t train.arff -T test.arff -p 1-4
在我的情况下会给你:
=== Predictions on test data ===
inst# actual predicted error prediction (feature1,feature2,feature3,feature4)
1 1:? 1:1 1 (1,7,1,0)
2 1:? 1:1 1 (1,5,1,0)
3 1:? 2:-1 0.786 (-1,1,1,0)
4 1:? 2:-1 0.861 (1,1,1,1)
5 1:? 2:-1 0.861 (-1,1,1,1)
因此,您可以获得预测,但无法获得性能,因为您有未标记的测试数据。