Package weka.classifiers.bayes
Class WAODE
- java.lang.Object
-
- weka.classifiers.Classifier
-
- weka.classifiers.bayes.WAODE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,CapabilitiesHandler,OptionHandler,RevisionHandler,TechnicalInformationHandler
public class WAODE extends Classifier implements TechnicalInformationHandler
WAODE contructs the model called Weightily Averaged One-Dependence Estimators.
For more information, see
L. Jiang, H. Zhang: Weightily Averaged One-Dependence Estimators. In: Proceedings of the 9th Biennial Pacific Rim International Conference on Artificial Intelligence, PRICAI 2006, 970-974, 2006. BibTeX:@inproceedings{Jiang2006, author = {L. Jiang and H. Zhang}, booktitle = {Proceedings of the 9th Biennial Pacific Rim International Conference on Artificial Intelligence, PRICAI 2006}, pages = {970-974}, series = {LNAI}, title = {Weightily Averaged One-Dependence Estimators}, volume = {4099}, year = {2006} }Valid options are:-D If set, classifier is run in debug mode and may output additional info to the console
-I Whether to print some more internals. (default: no)
- Version:
- $Revision: 5516 $
- Author:
- Liangxiao Jiang (ljiang@cug.edu.cn), H. Zhang (hzhang@unb.ca)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WAODE()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbuildClassifier(Instances instances)Generates the classifier.double[]distributionForInstance(Instance instance)Calculates the class membership probabilities for the given test instanceCapabilitiesgetCapabilities()Returns default capabilities of the classifier.booleangetInternals()Gets whether more internals of the classifier are printed.java.lang.String[]getOptions()Gets the current settings of the filter.java.lang.StringgetRevision()Returns the revision string.TechnicalInformationgetTechnicalInformation()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.java.lang.StringglobalInfo()Returns a string describing this classifierjava.lang.StringinternalsTipText()Returns the tip text for this propertyjava.util.EnumerationlistOptions()Gets an enumeration describing the available options.static voidmain(java.lang.String[] argv)Main method for testing this class.voidsetInternals(boolean value)Sets whether internals about classifier are printed via toString().voidsetOptions(java.lang.String[] options)Parses a given list of options.java.lang.StringtoString()returns a string representation of the classifier-
Methods inherited from class weka.classifiers.Classifier
classifyInstance, debugTipText, forName, getDebug, makeCopies, makeCopy, setDebug
-
-
-
-
Method Detail
-
globalInfo
public java.lang.String globalInfo()
Returns a string describing this classifier- Returns:
- a description of the classifier suitable for displaying in the explorer/experimenter gui
-
listOptions
public java.util.Enumeration listOptions()
Gets an enumeration describing the available options.- Specified by:
listOptionsin interfaceOptionHandler- Overrides:
listOptionsin classClassifier- Returns:
- an enumeration of all the available options.
-
setOptions
public void setOptions(java.lang.String[] options) throws java.lang.ExceptionParses a given list of options. Valid options are:-D If set, classifier is run in debug mode and may output additional info to the console
-I Whether to print some more internals. (default: no)
- Specified by:
setOptionsin interfaceOptionHandler- Overrides:
setOptionsin classClassifier- Parameters:
options- the list of options as an array of strings- Throws:
java.lang.Exception- if an option is not supported
-
getOptions
public java.lang.String[] getOptions()
Gets the current settings of the filter.- Specified by:
getOptionsin interfaceOptionHandler- Overrides:
getOptionsin classClassifier- Returns:
- an array of strings suitable for passing to setOptions
-
internalsTipText
public java.lang.String internalsTipText()
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setInternals
public void setInternals(boolean value)
Sets whether internals about classifier are printed via toString().- Parameters:
value- if internals should be printed- See Also:
toString()
-
getInternals
public boolean getInternals()
Gets whether more internals of the classifier are printed.- Returns:
- true if more internals are printed
-
getTechnicalInformation
public TechnicalInformation 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:
getTechnicalInformationin interfaceTechnicalInformationHandler- Returns:
- the technical information about this class
-
getCapabilities
public Capabilities getCapabilities()
Returns default capabilities of the classifier.- Specified by:
getCapabilitiesin interfaceCapabilitiesHandler- Overrides:
getCapabilitiesin classClassifier- Returns:
- the capabilities of this classifier
- See Also:
Capabilities
-
buildClassifier
public void buildClassifier(Instances instances) throws java.lang.Exception
Generates the classifier.- Specified by:
buildClassifierin classClassifier- Parameters:
instances- set of instances serving as training data- Throws:
java.lang.Exception- if the classifier has not been generated successfully
-
distributionForInstance
public double[] distributionForInstance(Instance instance) throws java.lang.Exception
Calculates the class membership probabilities for the given test instance- Overrides:
distributionForInstancein classClassifier- Parameters:
instance- the instance to be classified- Returns:
- predicted class probability distribution
- Throws:
java.lang.Exception- if there is a problem generating the prediction
-
toString
public java.lang.String toString()
returns a string representation of the classifier- Overrides:
toStringin classjava.lang.Object- Returns:
- string representation of the classifier
-
getRevision
public java.lang.String getRevision()
Returns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Overrides:
getRevisionin classClassifier- Returns:
- the revision
-
main
public static void main(java.lang.String[] argv)
Main method for testing this class.- Parameters:
argv- the commandline options, use -h to list all options
-
-