Package org.apache.ctakes.ytex.kernel.model

Examples of org.apache.ctakes.ytex.kernel.model.ClassifierEvaluation


  }

  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);
  }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.ytex.kernel.model.ClassifierEvaluation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.