Package weka.gui.beans
Class TrainingSetEvent
java.lang.Object
java.util.EventObject
weka.gui.beans.TrainingSetEvent
- All Implemented Interfaces:
Serializable
Event encapsulating a training set
- Version:
- $Revision: 8034 $
- Author:
- Mark Hall
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTrainingSetEvent(Object source, Instances trainSet) Creates a newTrainingSetEventTrainingSetEvent(Object source, Instances trainSet, int setNum, int maxSetNum) Creates a newTrainingSetEventTrainingSetEvent(Object source, Instances trainSet, int runNum, int maxRunNum, int setNum, int maxSetNum) Creates a newTrainingSetEvent -
Method Summary
Modifier and TypeMethodDescriptionintGet the maximum number of runs.intGet the maximum set numberintGet the run number that this training set belongs to.intGet the set number (eg.Get the training instancesbooleanReturns true if the encapsulated instances contain just header informationMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
TrainingSetEvent
Creates a newTrainingSetEvent- Parameters:
source- the source of the eventtrainSet- the training instances
-
TrainingSetEvent
Creates a newTrainingSetEvent- Parameters:
source- the source of the eventtrainSet- the training instancessetNum- the number of the training setmaxSetNum- the maximum number of sets
-
TrainingSetEvent
public TrainingSetEvent(Object source, Instances trainSet, int runNum, int maxRunNum, int setNum, int maxSetNum) Creates a newTrainingSetEvent- Parameters:
source- the source of the eventtrainSet- the training instancesrunNum- the run number that the training set belongs tomaxRunNum- the maximum run numbersetNum- the number of the training setmaxSetNum- the maximum number of sets
-
-
Method Details
-
getTrainingSet
Get the training instances- Returns:
- an
Instancesvalue
-
getRunNumber
public int getRunNumber()Get the run number that this training set belongs to.- Returns:
- the run number for this training set.
-
getMaxRunNumber
public int getMaxRunNumber()Get the maximum number of runs.- Returns:
- return the maximum number of runs.
-
getSetNumber
public int getSetNumber()Get the set number (eg. fold 2 of a 10 fold split)- Returns:
- an
intvalue
-
getMaxSetNumber
public int getMaxSetNumber()Get the maximum set number- Returns:
- an
intvalue
-
isStructureOnly
public boolean isStructureOnly()Returns true if the encapsulated instances contain just header information- Returns:
- true if only header information is available in this DataSetEvent
-