Interface DecisionBoundaryCombiner
-
- All Known Implementing Classes:
PotentialFunctionCombiner
public interface DecisionBoundaryCombiner
- Author:
- pawel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getClass(weka.core.Instance inst)
Get combined decision of the boundaries (class value)int
getDecision(weka.core.Instance inst)
Get combined decision of the boundaries (class index)void
setBoundaries(DecisionBoundaries boundaries)
Sets the boundaries to combine
-
-
-
Method Detail
-
getDecision
int getDecision(weka.core.Instance inst) throws Exception
Get combined decision of the boundaries (class index)- Parameters:
inst
-- Returns:
- Throws:
Exception
-
getClass
double getClass(weka.core.Instance inst) throws Exception
Get combined decision of the boundaries (class value)- Parameters:
inst
-- Returns:
- Throws:
Exception
-
setBoundaries
void setBoundaries(DecisionBoundaries boundaries) throws Exception
Sets the boundaries to combine- Parameters:
boundaries
-- Throws:
Exception
-
-