final MLMethod method = (MLMethod) EncogDirectoryPersistence
.loadObject(resourceFile);
final boolean headers = getScript().expectInputHeaders(evalID);
final AnalystEvaluateCSV eval = new AnalystEvaluateCSV();
eval.setScript(getScript());
getAnalyst().setCurrentQuantTask(eval);
eval.setReport(new AnalystReportBridge(getAnalyst()));
eval.analyze(getAnalyst(), evalFile, headers, getProp()
.getPropertyCSVFormat(
ScriptProperties.SETUP_CONFIG_CSV_FORMAT));
eval.process(outputFile, method);
getAnalyst().setCurrentQuantTask(null);
return eval.shouldStop();
}