Package org.apache.uima.ruta.textruler.core

Examples of org.apache.uima.ruta.textruler.core.CasCache$MLCacheEntry


  public F1Scorer(AnalysisEngine ae, String trainingFolder, String testFolder) {
    this.ae = ae;

    trainingDocuments = new ArrayList<TextRulerExampleDocument>();
    CasCache casCache = new CasCache(5, this);

    for (String fileName : getXMIfileNames(trainingFolder))
      trainingDocuments.add(new TextRulerExampleDocument(fileName, casCache));
    testFileNames = getXMIfileNames(testFolder);
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.ruta.textruler.core.CasCache$MLCacheEntry

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.