Uses of Class
de.jstacs.classifiers.performanceMeasures.AbstractNumericalTwoClassPerformanceMeasure

Packages that use AbstractNumericalTwoClassPerformanceMeasure
de.jstacs.classifiers.performanceMeasures This package provides the implementations of performance measures that can be used to assess any classifier. 
 

Uses of AbstractNumericalTwoClassPerformanceMeasure in de.jstacs.classifiers.performanceMeasures
 

Subclasses of AbstractNumericalTwoClassPerformanceMeasure in de.jstacs.classifiers.performanceMeasures
 class FalsePositiveRateForFixedSensitivity
          This class implements the false positive rate for a fixed sensitivity.
 class MaximumCorrelationCoefficient
          This class implements the maximum of the correlation coefficient $\frac{ TP*TN - FN*FP }{ \sqrt{ (TP+FN)*(TN+FP)*(TP+FP)*(TN+FN) } }$.
 class MaximumFMeasure
          Computes the maximum of the general F-measure given a positive real parameter $\beta$.
 class MaximumNumericalTwoClassMeasure
          This class prepares everything for an easy implementation of a maximum of any numerical performance measure.
 class PositivePredictiveValueForFixedSensitivity
          This class implements the positive predictive value for a fixed sensitivity.
 class SensitivityForFixedSpecificity
          This class implements the sensitivity for a fixed specificity.