Examples of reflectCountsFromCoveredExamples()


Examples of org.apache.uima.ruta.textruler.core.TextRulerStatisticsCollector.reflectCountsFromCoveredExamples()

    // calculate intersections of coverings:
    TextRulerStatisticsCollector resultC = new TextRulerStatisticsCollector(c1);

    resultC.getCoveredPositiveExamples().retainAll(c2.getCoveredPositiveExamples());
    resultC.getCoveredNegativeExamples().retainAll(c2.getCoveredNegativeExamples());
    resultC.reflectCountsFromCoveredExamples();

    return resultC;
  }

  protected LP2Rule createAndCheckRuleFromStartRules(final List<LP2Rule> startRules,
View Full Code Here

Examples of org.apache.uima.ruta.textruler.core.TextRulerStatisticsCollector.reflectCountsFromCoveredExamples()

    // calculate intersections of coverings:
    TextRulerStatisticsCollector resultC = new TextRulerStatisticsCollector(c1);

    resultC.getCoveredPositiveExamples().retainAll(c2.getCoveredPositiveExamples());
    resultC.getCoveredNegativeExamples().retainAll(c2.getCoveredNegativeExamples());
    resultC.reflectCountsFromCoveredExamples();

    return resultC;
  }

  protected LP2Rule createAndCheckRuleFromStartRules(final List<LP2Rule> startRules,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.