Interface ExperimentWithCustomizableRelationNames
-
- All Known Implementing Classes:
AbstractExperiment,CrossValidationExperiment,ExtExperiment,TrainTestSplitExperiment
public interface ExperimentWithCustomizableRelationNamesInterface for experiments that allow customizing the relation names of the datasets.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetPrefixDatasetsWithIndex()Returns whether to prefix the datasets with the index.booleangetUseFilename()Returns whether to use the filename (w/o path) instead of the relationname.voidsetPrefixDatasetsWithIndex(boolean value)Sets whether to prefix the datasets with the index.voidsetUseFilename(boolean value)Sets whether to use the filename (w/o path) instead of the relationname.
-
-
-
Method Detail
-
setUseFilename
void setUseFilename(boolean value)
Sets whether to use the filename (w/o path) instead of the relationname.- Parameters:
value- true if to use filename
-
getUseFilename
boolean getUseFilename()
Returns whether to use the filename (w/o path) instead of the relationname.- Returns:
- true if to use the filename
-
setPrefixDatasetsWithIndex
void setPrefixDatasetsWithIndex(boolean value)
Sets whether to prefix the datasets with the index.- Parameters:
value- true if to prefix
-
getPrefixDatasetsWithIndex
boolean getPrefixDatasetsWithIndex()
Returns whether to prefix the datasets with the index.- Returns:
- true if to prefix
-
-