Class MajorityPlaneBoundaryModel
- java.lang.Object
-
- weka.classifiers.functions.explicitboundaries.models.MajorityPlaneBoundaryModel
-
- All Implemented Interfaces:
Serializable
,weka.core.Debuggable
public class MajorityPlaneBoundaryModel extends Object implements Serializable, weka.core.Debuggable
- Author:
- pawel
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MajorityPlaneBoundaryModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
buildDefaultModelPlane(weka.core.Instances dataset)
Builds a default decision boundary if there are instances belonging to only one class.DecisionBoundaryPlane
getPlaneModel()
boolean
isDebug()
boolean
isUseDefault()
void
setDebug(boolean debug)
-
-
-
Method Detail
-
buildDefaultModelPlane
public void buildDefaultModelPlane(weka.core.Instances dataset) throws Exception
Builds a default decision boundary if there are instances belonging to only one class.- Parameters:
dataset
-- Throws:
Exception
-
getPlaneModel
public DecisionBoundaryPlane getPlaneModel()
- Returns:
- the planeModel
-
isUseDefault
public boolean isUseDefault()
- Returns:
- the useDefault
-
isDebug
public boolean isDebug()
- Specified by:
isDebug
in interfaceweka.core.Debuggable
- Returns:
- the debug
-
setDebug
public void setDebug(boolean debug)
- Specified by:
setDebug
in interfaceweka.core.Debuggable
- Parameters:
debug
- the debug to set
-
-