int jj = 0;
while (source.hasMoreElements(userTestStructure)) {
instance = source.nextElement(userTestStructure);
plotInstances.process(instance, classifierToUse, eval);
if (outputPredictionsText) {
classificationOutput.printClassification(classifierToUse, instance, jj);
}
if ((++jj % 100) == 0) {
m_Log.statusMessage("Evaluating on test data. Processed "
+jj+" instances...");
}