Uses of Interface
edu.columbia.cs.ref.algorithm.evaluation.measure.Measure

Packages that use Measure
edu.columbia.cs.ref.algorithm.evaluation   
edu.columbia.cs.ref.algorithm.evaluation.measure.impl   
 

Uses of Measure in edu.columbia.cs.ref.algorithm.evaluation
 

Methods in edu.columbia.cs.ref.algorithm.evaluation with parameters of type Measure
 void Evaluator.addMeasure(Measure measure)
          Adds a new measure to the evaluator.
 double Evaluator.getResult(Measure m)
          Gets the evaluation result for a given measure
 

Uses of Measure in edu.columbia.cs.ref.algorithm.evaluation.measure.impl
 

Classes in edu.columbia.cs.ref.algorithm.evaluation.measure.impl that implement Measure
 class FMeasure
          The Class FMeasure represents the F-Measure.
 class NumberOfExpectedPositiveAnswers
          The Class NumberOfExpectedPositiveAnswers counts the number of positive answers in the golden labels of the testing data.
 class NumberOfPositiveAnswers
          The Class NumberOfPositiveAnswers counts the number of positive answers returned by the model for the testing data.
 class NumberOfTruePositives
          The Class NumberOfTruePositives counts the number of positive answers produced by the model that are consistent with the values in the gold labels of the testing data.
 class Precision
          The Class Precision computes precision.
 class Recall
          The Class Recall computes recall.