Package weka.associations
Class AbstractAssociator
- java.lang.Object
-
- weka.associations.AbstractAssociator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,Associator,CapabilitiesHandler,CapabilitiesIgnorer,CommandlineRunnable,OptionHandler,RevisionHandler
- Direct Known Subclasses:
Apriori,FPGrowth,SingleAssociatorEnhancer
public abstract class AbstractAssociator extends java.lang.Object implements java.lang.Cloneable, Associator, java.io.Serializable, CapabilitiesHandler, CapabilitiesIgnorer, RevisionHandler, OptionHandler, CommandlineRunnable
Abstract scheme for learning associations. All schemes for learning associations implemement this class- Version:
- $Revision: 12201 $
- Author:
- Eibe Frank (eibe@cs.waikato.ac.nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractAssociator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringdoNotCheckCapabilitiesTipText()Returns the tip text for this propertystatic AssociatorforName(java.lang.String associatorName, java.lang.String[] options)Creates a new instance of a associator given it's class name and (optional) arguments to pass to it's setOptions method.CapabilitiesgetCapabilities()Returns the Capabilities of this associator.booleangetDoNotCheckCapabilities()Get whether capabilities checking is turned off.java.lang.String[]getOptions()Gets the current settings of the associatorjava.lang.StringgetRevision()Returns the revision string.java.util.Enumeration<Option>listOptions()Returns an enumeration describing the available options.static Associator[]makeCopies(Associator model, int num)Creates copies of the current associator.static AssociatormakeCopy(Associator model)Creates a deep copy of the given associator using serialization.voidpostExecution()Perform any teardown stuff that might need to happen after execution.voidpreExecution()Perform any setup stuff that might need to happen before commandline execution.voidrun(java.lang.Object toRun, java.lang.String[] options)Execute the supplied object.static voidrunAssociator(Associator associator, java.lang.String[] options)runs the associator with the given commandline optionsvoidsetDoNotCheckCapabilities(boolean doNotCheckCapabilities)Set whether not to check capabilities.voidsetOptions(java.lang.String[] options)Parses a given list of options.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface weka.associations.Associator
buildAssociations
-
-
-
-
Method Detail
-
listOptions
public java.util.Enumeration<Option> listOptions()
Returns an enumeration describing the available options.- Specified by:
listOptionsin interfaceOptionHandler- 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.- Specified by:
setOptionsin interfaceOptionHandler- 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 associator- Specified by:
getOptionsin interfaceOptionHandler- Returns:
- an array of strings suitable for passing to setOptions
-
doNotCheckCapabilitiesTipText
public java.lang.String doNotCheckCapabilitiesTipText()
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setDoNotCheckCapabilities
public void setDoNotCheckCapabilities(boolean doNotCheckCapabilities)
Set whether not to check capabilities.- Specified by:
setDoNotCheckCapabilitiesin interfaceCapabilitiesIgnorer- Parameters:
doNotCheckCapabilities- true if capabilities are not to be checked.
-
getDoNotCheckCapabilities
public boolean getDoNotCheckCapabilities()
Get whether capabilities checking is turned off.- Specified by:
getDoNotCheckCapabilitiesin interfaceCapabilitiesIgnorer- Returns:
- true if capabilities checking is turned off.
-
forName
public static Associator forName(java.lang.String associatorName, java.lang.String[] options) throws java.lang.Exception
Creates a new instance of a associator given it's class name and (optional) arguments to pass to it's setOptions method. If the associator implements OptionHandler and the options parameter is non-null, the associator will have it's options set.- Parameters:
associatorName- the fully qualified class name of the associatoroptions- an array of options suitable for passing to setOptions. May be null.- Returns:
- the newly created associator, ready for use.
- Throws:
java.lang.Exception- if the associator name is invalid, or the options supplied are not acceptable to the associator
-
makeCopy
public static Associator makeCopy(Associator model) throws java.lang.Exception
Creates a deep copy of the given associator using serialization.- Parameters:
model- the associator to copy- Returns:
- a deep copy of the associator
- Throws:
java.lang.Exception- if an error occurs
-
makeCopies
public static Associator[] makeCopies(Associator model, int num) throws java.lang.Exception
Creates copies of the current associator. Note that this method now uses Serialization to perform a deep copy, so the Associator object must be fully Serializable. Any currently built model will now be copied as well.- Parameters:
model- an example associator to copynum- the number of associators copies to create.- Returns:
- an array of associators.
- Throws:
java.lang.Exception- if an error occurs
-
getCapabilities
public Capabilities getCapabilities()
Returns the Capabilities of this associator. Maximally permissive capabilities are allowed by default. Derived associators should override this method and first disable all capabilities and then enable just those capabilities that make sense for the scheme.- Specified by:
getCapabilitiesin interfaceAssociator- Specified by:
getCapabilitiesin interfaceCapabilitiesHandler- Returns:
- the capabilities of this object
- See Also:
Capabilities
-
getRevision
public java.lang.String getRevision()
Returns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Returns:
- the revision
-
runAssociator
public static void runAssociator(Associator associator, java.lang.String[] options)
runs the associator with the given commandline options- Parameters:
associator- the associator to runoptions- the commandline options
-
preExecution
public void preExecution() throws java.lang.ExceptionPerform any setup stuff that might need to happen before commandline execution. Subclasses should override if they need to do something here- Specified by:
preExecutionin interfaceCommandlineRunnable- Throws:
java.lang.Exception- if a problem occurs during setup
-
run
public void run(java.lang.Object toRun, java.lang.String[] options) throws java.lang.ExceptionExecute the supplied object. Subclasses need to override this method.- Specified by:
runin interfaceCommandlineRunnable- Parameters:
toRun- the object to executeoptions- any options to pass to the object- Throws:
java.lang.Exception- if a problem occurs
-
postExecution
public void postExecution() throws java.lang.ExceptionPerform any teardown stuff that might need to happen after execution. Subclasses should override if they need to do something here- Specified by:
postExecutionin interfaceCommandlineRunnable- Throws:
java.lang.Exception- if a problem occurs during teardown
-
-