Class TrainValidateTestSet
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.gui.tools.wekainvestigator.evaluation.AbstractEvaluation<ClassifyTab,ResultItem>
-
- adams.gui.tools.wekainvestigator.tab.classifytab.evaluation.AbstractClassifierEvaluation
-
- adams.gui.tools.wekainvestigator.tab.classifytab.evaluation.TrainValidateTestSet
-
- All Implemented Interfaces:
GlobalInfoSupporter,LoggingSupporter,SizeOfHandler,StatusMessageHandler,Stoppable,StoppableWithFeedback,Serializable
public class TrainValidateTestSet extends AbstractClassifierEvaluation implements StoppableWithFeedback
Uses dedicated train/validate/test sets.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringKEY_ADDITIONALstatic StringKEY_DISCARDPREDICTIONSstatic StringKEY_TESTstatic StringKEY_TRAINstatic StringKEY_VALIDATEprotected BaseCheckBoxm_CheckBoxDiscardPredictionswhether to discard the predictions.protected BaseComboBox<String>m_ComboBoxTestthe test set.protected BaseComboBox<String>m_ComboBoxTrainthe train set.protected BaseComboBox<String>m_ComboBoxValidatethe validate set.protected StoppableEvaluationm_Evaluationthe current evaluation.protected weka.classifiers.Classifierm_Modelthe current model.protected DefaultComboBoxModel<String>m_ModelDatasetsthe datasets model.protected ParameterPanelm_PanelParametersthe panel with the parameters.protected SelectOptionPanelm_SelectAdditionalAttributesthe additional attributes to store.protected booleanm_Stoppedwhether the build was stopped.-
Fields inherited from class adams.gui.tools.wekainvestigator.evaluation.AbstractEvaluation
m_Owner, m_PanelOptions
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description TrainValidateTestSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidactivate(int index)Activates the specified dataset.StringcanEvaluate(weka.classifiers.Classifier classifier)Tests whether the classifier can be evaluated.voiddeserialize(Map<String,Object> data, MessageCollection errors)Restores the objects.protected voiddoEvaluate(weka.classifiers.Classifier classifier, ResultItem item)Evaluates the classifier and updates the result item.StringgetName()Returns the name of the evaluation (displayed in combobox).StringglobalInfo()Returns a string describing the object.ResultIteminit(weka.classifiers.Classifier classifier)Initializes the result item.protected voidinitGUI()Initializes the widgets.booleanisStopped()Whether the execution has been stopped.Map<String,Object>serialize(Set<AbstractInvestigatorTab.SerializationOption> options)Returns the objects for serialization.voidstopExecution()Stops the execution.voidupdate()Updates the settings panel.-
Methods inherited from class adams.gui.tools.wekainvestigator.tab.classifytab.evaluation.AbstractClassifierEvaluation
evaluate, fillWithAttributeNames, getEvaluations, transferAdditionalAttributes
-
Methods inherited from class adams.gui.tools.wekainvestigator.evaluation.AbstractEvaluation
addObjectSize, addToHistory, getOwner, getPanel, getProperties, getTestingUpdateInterval, initialize, isValidDataIndex, listOrArray, setOwner, showStatus, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
KEY_TRAIN
public static final String KEY_TRAIN
- See Also:
- Constant Field Values
-
KEY_VALIDATE
public static final String KEY_VALIDATE
- See Also:
- Constant Field Values
-
KEY_TEST
public static final String KEY_TEST
- See Also:
- Constant Field Values
-
KEY_ADDITIONAL
public static final String KEY_ADDITIONAL
- See Also:
- Constant Field Values
-
KEY_DISCARDPREDICTIONS
public static final String KEY_DISCARDPREDICTIONS
- See Also:
- Constant Field Values
-
m_PanelParameters
protected ParameterPanel m_PanelParameters
the panel with the parameters.
-
m_ComboBoxTrain
protected BaseComboBox<String> m_ComboBoxTrain
the train set.
-
m_ComboBoxValidate
protected BaseComboBox<String> m_ComboBoxValidate
the validate set.
-
m_ComboBoxTest
protected BaseComboBox<String> m_ComboBoxTest
the test set.
-
m_ModelDatasets
protected DefaultComboBoxModel<String> m_ModelDatasets
the datasets model.
-
m_SelectAdditionalAttributes
protected SelectOptionPanel m_SelectAdditionalAttributes
the additional attributes to store.
-
m_CheckBoxDiscardPredictions
protected BaseCheckBox m_CheckBoxDiscardPredictions
whether to discard the predictions.
-
m_Model
protected transient weka.classifiers.Classifier m_Model
the current model.
-
m_Evaluation
protected transient StoppableEvaluation m_Evaluation
the current evaluation.
-
m_Stopped
protected boolean m_Stopped
whether the build was stopped.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceGlobalInfoSupporter- Returns:
- a description suitable for displaying in the gui
-
initGUI
protected void initGUI()
Initializes the widgets.- Overrides:
initGUIin classAbstractEvaluation<ClassifyTab,ResultItem>
-
getName
public String getName()
Returns the name of the evaluation (displayed in combobox).- Specified by:
getNamein classAbstractEvaluation<ClassifyTab,ResultItem>- Returns:
- the name
-
canEvaluate
public String canEvaluate(weka.classifiers.Classifier classifier)
Tests whether the classifier can be evaluated.- Specified by:
canEvaluatein classAbstractClassifierEvaluation- Returns:
- null if successful, otherwise error message
-
init
public ResultItem init(weka.classifiers.Classifier classifier) throws Exception
Initializes the result item.- Specified by:
initin classAbstractClassifierEvaluation- Parameters:
classifier- the current classifier- Returns:
- the initialized history item
- Throws:
Exception- if initialization fails
-
doEvaluate
protected void doEvaluate(weka.classifiers.Classifier classifier, ResultItem item) throws ExceptionEvaluates the classifier and updates the result item.- Specified by:
doEvaluatein classAbstractClassifierEvaluation- Parameters:
classifier- the current classifieritem- the item to update- Throws:
Exception- if evaluation fails
-
update
public void update()
Updates the settings panel.- Specified by:
updatein classAbstractEvaluation<ClassifyTab,ResultItem>
-
activate
public void activate(int index)
Activates the specified dataset.- Specified by:
activatein classAbstractEvaluation<ClassifyTab,ResultItem>- Parameters:
index- the index of the dataset
-
stopExecution
public void stopExecution()
Stops the execution.- Specified by:
stopExecutionin interfaceStoppable
-
isStopped
public boolean isStopped()
Whether the execution has been stopped.- Specified by:
isStoppedin interfaceStoppableWithFeedback- Returns:
- true if stopped
-
serialize
public Map<String,Object> serialize(Set<AbstractInvestigatorTab.SerializationOption> options)
Returns the objects for serialization.- Overrides:
serializein classAbstractEvaluation<ClassifyTab,ResultItem>- Parameters:
options- what to serialize- Returns:
- the mapping of the objects to serialize
-
deserialize
public void deserialize(Map<String,Object> data, MessageCollection errors)
Restores the objects.- Overrides:
deserializein classAbstractEvaluation<ClassifyTab,ResultItem>- Parameters:
data- the data to restoreerrors- for storing errors
-
-