de.fu_berlin.ties.eval
Interface EvalInput

All Known Subinterfaces:
FMetricsView
All Known Implementing Classes:
FMetrics

public interface EvalInput

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

Version:
$Revision: 1.1 $, $Date: 2004/02/02 18:35:57 $, $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

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

Returns:
the number of false negatives

getFalsePos

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

Returns:
the number of false positives

getTruePos

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

Returns:
the number of true positives


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