为什么 weka 不能正确预测我的测试集的值?
使用的命令:
weka -c 'weka.classifiers.functions.SMO -no-cv -t triggering.arff -d triggering.model'
weka -c 'weka.classifiers.functions.SMO -p 0 -T triggering-new.arff -l triggering.model'
训练数据:
@relation triggering
@attribute iota real
@attribute A{TRUE, FALSE}
@attribute B{TRUE, FALSE}
@attribute C{TRUE, FALSE}
@data
10, FALSE, FALSE, FALSE
20, FALSE, FALSE, FALSE
30, FALSE, TRUE, FALSE
40, FALSE, FALSE, TRUE
50, TRUE, FALSE, FALSE
测试数据:
@relation triggering-new
@attribute iota real
@attribute A{TRUE, FALSE}
@attribute B{TRUE, FALSE}
@attribute C{TRUE, FALSE}
@data
10, ?, ?, ?
20, ?, ?, ?
30, ?, ?, ?
预言:
=== Predictions on test data ===
inst# actual predicted error prediction
1 1:? 2:FALSE 1
2 1:? 2:FALSE 1
3 1:? 2:FALSE 1