}
public void importClassifierEvaluation(String name, Integer fold,
String algorithm, String label, String options, String experiment,
BufferedReader reader) throws IOException {
ClassifierEvaluation ce = new ClassifierEvaluation();
ce.setName(name);
ce.setFold(fold);
ce.setAlgorithm(algorithm);
ce.setLabel(label);
ce.setOptions(options);
ce.setExperiment(experiment);
this.getSessionFactory().getCurrentSession().save(ce);
ClassifierEvaluationInstanceImporter instanceImporter = new ClassifierEvaluationInstanceImporter(
ce, false);
this.importResults(instanceImporter, label, reader);
}