I successfully trained the classifier (bayesnet) and built a test suite (ARFF format) that has one instance with one missing value.
Evaluation eTest = new Evaluation(trainingInstance); eTest.evaluateModel(bayes_Classifier, testInstance);
How can I access the prediction for a missing value? I tested both ARFF structures (training and testing) with a graphical interface. They work. I just don't know how to access the prediction value ...
source share