de.fu_berlin.ties.eval
Interface EvalInput

All Known Subinterfaces:
FMetricsView
All Known Implementing Classes:
FMetrics, SummaryFMetrics

public interface EvalInput

Classes implementing this interface provide input for calculating evaluation metrics: true positives, false negatives and false positives.

Version:
$Revision: 1.4 $, $Date: 2006/10/21 16:04:11 $, $Author: siefkes $
Author:
Christian Siefkes

Method Summary
 long getFalseNeg()
          Returns the number of false negatives (false rejections).
 long getFalsePos()
          Returns the number of false positives (false acceptances).
 long getTruePos()
          Returns the number of true positives (correct recognitions).
 

Method Detail

getFalseNeg

long getFalseNeg()
Returns the number of false negatives (false rejections).

Returns:
the number of false negatives

getFalsePos

long getFalsePos()
Returns the number of false positives (false acceptances).

Returns:
the number of false positives

getTruePos

long getTruePos()
Returns the number of true positives (correct recognitions).

Returns:
the number of true positives


Copyright © 2003-2007 Christian Siefkes. All Rights Reserved.