outputReader = new BufferedReader(new FileReader(output));
String optionsLine = null;
String predictLine = null;
while ((optionsLine = outputReader.readLine()) != null
&& (predictLine = outputReader.readLine()) != null) {
SemiLClassifierEvaluation ce = new SemiLClassifierEvaluation();
// set label, fold, etc
this.initClassifierEvaluation(fileBaseName, ce);
// set name, experiment
this.initClassifierEvaluationFromProperties(kernelProps, ce);
BiMap<Integer, String> classIdToNameMap = loadClassIdMap(
dataDir, ce.getLabel());
// parse options
parseOptions(ce, optionsLine, kernelProps, output.getName());
boolean storeUnlabeled = YES.equalsIgnoreCase(kernelProps
.getProperty(
ParseOption.STORE_UNLABELED.getOptionKey(),