Class LED24
java.lang.Object
weka.datagenerators.DataGenerator
weka.datagenerators.ClassificationGenerator
weka.datagenerators.classifiers.classification.LED24
- All Implemented Interfaces:
Serializable
,OptionHandler
,Randomizable
,RevisionHandler
,TechnicalInformationHandler
This generator produces data for a display with 7
LEDs. The original output consists of 10 concepts and 7 boolean attributes.
Here, in addition to the 7 necessary boolean attributes, 17 other, irrelevant
boolean attributes with random values are added to make it harder. By default
10 percent of noise are added to the data.
More information can be found here:
L. Breiman J.H. Friedman R.A. Olshen, C.J. Stone (1984). Classification and Regression Trees. Belmont, California. URL http://www.ics.uci.edu/~mlearn/databases/led-display-creator/. Link:
http:/ /www.ics.uci.edu/~mlearn/databases/led-display-creator/ BibTeX:
More information can be found here:
L. Breiman J.H. Friedman R.A. Olshen, C.J. Stone (1984). Classification and Regression Trees. Belmont, California. URL http://www.ics.uci.edu/~mlearn/databases/led-display-creator/. Link:
http:/ /www.ics.uci.edu/~mlearn/databases/led-display-creator/ BibTeX:
@inbook{Olshen1984, address = {Belmont, California}, author = {L. Breiman J.H. Friedman R.A. Olshen and C.J. Stone}, pages = {43-49}, publisher = {Wadsworth International Group}, title = {Classification and Regression Trees}, year = {1984}, ISBN = {0412048418}, URL = {http://www.ics.uci.edu/\~mlearn/databases/led-display-creator/} }Valid options are:
-h Prints this help.
-o <file> The name of the output file, otherwise the generated data is printed to stdout.
-r <name> The name of the relation.
-d Whether to print debug informations.
-S The seed for random function (default 1)
-n <num> The number of examples to generate (default 100)
-N <num> The noise percentage. (default 10.0)
- Version:
- $Revision: 10203 $
- Author:
- Richard Kirkby (rkirkby at cs dot waikato dot ac dot nz), FracPete (fracpete at waikato dot ac dot nz)
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionInitializes the format for the dataset produced.Generates one example of the dataset.Generates all examples of the dataset.Generates a comment string that documentats the data generator.Generates a comment string that documentates the data generator.double
Gets the noise percentage.String[]
Gets the current settings of the datagenerator.Returns the revision string.boolean
Return if single mode is set for the given data generator mode depends on option setting and or generator type.Returns an instance of a TechnicalInformation object, containing detailed information about the technical background of this class, e.g., paper reference or book this class is based on.Returns a string describing this data generator.Returns an enumeration describing the available options.static void
Main method for executing this class.Returns the tip text for this propertyvoid
setNoisePercent
(double value) Sets the noise percentage.void
setOptions
(String[] options) Parses a list of options for this object.Methods inherited from class weka.datagenerators.ClassificationGenerator
getNumExamples, numExamplesTipText, setNumExamples
Methods inherited from class weka.datagenerators.DataGenerator
debugTipText, defaultOutput, enumToVector, formatTipText, getDatasetFormat, getDebug, getEpilogue, getNumExamplesAct, getOutput, getPrologue, getRandom, getRelationName, getSeed, makeData, outputTipText, randomTipText, relationNameTipText, runDataGenerator, seedTipText, setDatasetFormat, setDebug, setOutput, setRandom, setRelationName, setSeed
-
Constructor Details
-
LED24
public LED24()initializes the generator with default values
-
-
Method Details
-
globalInfo
Returns a string describing this data generator.- Returns:
- a description of the data generator suitable for displaying in the explorer/experimenter gui
-
getTechnicalInformation
Returns an instance of a TechnicalInformation object, containing detailed information about the technical background of this class, e.g., paper reference or book this class is based on.- Specified by:
getTechnicalInformation
in interfaceTechnicalInformationHandler
- Returns:
- the technical information about this class
-
listOptions
Returns an enumeration describing the available options.- Specified by:
listOptions
in interfaceOptionHandler
- Overrides:
listOptions
in classClassificationGenerator
- Returns:
- an enumeration of all the available options
-
setOptions
Parses a list of options for this object. Valid options are:-h Prints this help.
-o <file> The name of the output file, otherwise the generated data is printed to stdout.
-r <name> The name of the relation.
-d Whether to print debug informations.
-S The seed for random function (default 1)
-n <num> The number of examples to generate (default 100)
-N <num> The noise percentage. (default 10.0)
- Specified by:
setOptions
in interfaceOptionHandler
- Overrides:
setOptions
in classClassificationGenerator
- Parameters:
options
- the list of options as an array of strings- Throws:
Exception
- if an option is not supported
-
getOptions
Gets the current settings of the datagenerator.- Specified by:
getOptions
in interfaceOptionHandler
- Overrides:
getOptions
in classClassificationGenerator
- Returns:
- an array of strings suitable for passing to setOptions
- See Also:
-
DataGenerator.removeBlacklist(String[])
-
getNoisePercent
public double getNoisePercent()Gets the noise percentage.- Returns:
- the noise percentage.
-
setNoisePercent
public void setNoisePercent(double value) Sets the noise percentage.- Parameters:
value
- the noise percentage.
-
noisePercentTipText
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
getSingleModeFlag
Return if single mode is set for the given data generator mode depends on option setting and or generator type.- Specified by:
getSingleModeFlag
in classDataGenerator
- Returns:
- single mode flag
- Throws:
Exception
- if mode is not set yet
-
defineDataFormat
Initializes the format for the dataset produced. Must be called before the generateExample or generateExamples methods are used. Re-initializes the random number generator with the given seed.- Overrides:
defineDataFormat
in classDataGenerator
- Returns:
- the format for the dataset
- Throws:
Exception
- if the generating of the format failed- See Also:
-
generateExample
Generates one example of the dataset.- Specified by:
generateExample
in classDataGenerator
- Returns:
- the generated example
- Throws:
Exception
- if the format of the dataset is not yet definedException
- if the generator only works with generateExamples which means in non single mode
-
generateExamples
Generates all examples of the dataset. Re-initializes the random number generator with the given seed, before generating instances.- Specified by:
generateExamples
in classDataGenerator
- Returns:
- the generated dataset
- Throws:
Exception
- if the format of the dataset is not yet definedException
- if the generator only works with generateExample, which means in single mode- See Also:
-
generateStart
Generates a comment string that documentates the data generator. By default this string is added at the beginning of the produced output as ARFF file type, next after the options.- Specified by:
generateStart
in classDataGenerator
- Returns:
- string contains info about the generated rules
-
generateFinished
Generates a comment string that documentats the data generator. By default this string is added at the end of theproduces output as ARFF file type.- Specified by:
generateFinished
in classDataGenerator
- Returns:
- string contains info about the generated rules
- Throws:
Exception
- if the generating of the documentaion fails
-
getRevision
Returns the revision string.- Specified by:
getRevision
in interfaceRevisionHandler
- Returns:
- the revision
-
main
Main method for executing this class.- Parameters:
args
- should contain arguments for the data producer:
-