Package weka.core
Interface ModelOutputHandler
-
- All Known Implementing Classes:
AbstainingCascade
,ConsensusOrVote
,SuppressModelOutput
,ThresholdedBinaryClassification
,Veto
,VotedImbalance
public interface ModelOutputHandler
Interface for classes that allow user to decide whether to output a model in string representation or not.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getSuppressModelOutput()
Returns whether to output the model with the toString() method or not.void
setSuppressModelOutput​(boolean value)
Sets whether to output the model with the toString() method or not.String
suppressModelOutputTipText()
Returns the tip text for this property.
-
-
-
Method Detail
-
setSuppressModelOutput
void setSuppressModelOutput​(boolean value)
Sets whether to output the model with the toString() method or not.- Parameters:
value
- true if to suppress model output
-
getSuppressModelOutput
boolean getSuppressModelOutput()
Returns whether to output the model with the toString() method or not.- Returns:
- the label index
-
suppressModelOutputTipText
String suppressModelOutputTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
-