if (temp.classAttribute().isNumeric()) {
buff.append(temp.value(temp.classIndex()) + " ");
} else {
buff.append(temp.classAttribute().value((int)temp.value(temp.classIndex())) + " ");
}
preds = classifier.distributionForInstance(temp);
buff.append(" Predicted: ");
for (int j = 0; j < preds.length; j++) {
buff.append("" + preds[j] + " ");
}
buff.append("\n");