Package weka.classifiers.mi
Class MIDD
java.lang.Object
weka.classifiers.Classifier
weka.classifiers.mi.MIDD
- All Implemented Interfaces:
Serializable,Cloneable,CapabilitiesHandler,MultiInstanceCapabilitiesHandler,OptionHandler,RevisionHandler,TechnicalInformationHandler
public class MIDD
extends Classifier
implements OptionHandler, MultiInstanceCapabilitiesHandler, TechnicalInformationHandler
Re-implement the Diverse Density algorithm, changes the testing procedure.
Oded Maron (1998). Learning from ambiguity.
O. Maron, T. Lozano-Perez (1998). A Framework for Multiple Instance Learning. Neural Information Processing Systems. 10. BibTeX:
Oded Maron (1998). Learning from ambiguity.
O. Maron, T. Lozano-Perez (1998). A Framework for Multiple Instance Learning. Neural Information Processing Systems. 10. BibTeX:
@phdthesis{Maron1998,
author = {Oded Maron},
school = {Massachusetts Institute of Technology},
title = {Learning from ambiguity},
year = {1998}
}
@article{Maron1998,
author = {O. Maron and T. Lozano-Perez},
journal = {Neural Information Processing Systems},
title = {A Framework for Multiple Instance Learning},
volume = {10},
year = {1998}
}
Valid options are:
-D Turn on debugging output.
-N <num> Whether to 0=normalize/1=standardize/2=neither. (default 1=standardize)
- Version:
- $Revision: 9144 $
- Author:
- Eibe Frank (eibe@cs.waikato.ac.nz), Xin Xu (xx5@cs.waikato.ac.nz)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intNo normalization/standardizationstatic final intNormalize training datastatic final intStandardize training datastatic final Tag[]The filter to apply to the training data -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbuildClassifier(Instances train) Builds the classifierdouble[]Computes the distribution for a given exemplarReturns the tip text for this propertyReturns default capabilities of the classifier.Gets how the training data will be transformed.Returns the capabilities of this multi-instance classifier for the relational data.String[]Gets the current settings of the classifier.Returns the revision string.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 filterReturns an enumeration describing the available optionsstatic voidMain method for testing this class.voidsetFilterType(SelectedTag newType) Sets how the training data will be transformed.voidsetOptions(String[] options) Parses a given list of options.toString()Gets a string describing the classifier.Methods inherited from class weka.classifiers.Classifier
classifyInstance, debugTipText, forName, getDebug, makeCopies, makeCopy, setDebug
-
Field Details
-
FILTER_NORMALIZE
public static final int FILTER_NORMALIZENormalize training data- See Also:
-
FILTER_STANDARDIZE
public static final int FILTER_STANDARDIZEStandardize training data- See Also:
-
FILTER_NONE
public static final int FILTER_NONENo normalization/standardization- See Also:
-
TAGS_FILTER
The filter to apply to the training data
-
-
Constructor Details
-
MIDD
public MIDD()
-
-
Method Details
-
globalInfo
Returns a string describing this filter- Returns:
- a description of the filter 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:
getTechnicalInformationin interfaceTechnicalInformationHandler- Returns:
- the technical information about this class
-
listOptions
Returns an enumeration describing the available options- Specified by:
listOptionsin interfaceOptionHandler- Overrides:
listOptionsin classClassifier- Returns:
- an enumeration of all the available options
-
setOptions
Parses a given list of options. Valid options are:-D Turn on debugging output.
-N <num> Whether to 0=normalize/1=standardize/2=neither. (default 1=standardize)
- Specified by:
setOptionsin interfaceOptionHandler- Overrides:
setOptionsin classClassifier- 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 classifier.- Specified by:
getOptionsin interfaceOptionHandler- Overrides:
getOptionsin classClassifier- Returns:
- an array of strings suitable for passing to setOptions
-
filterTypeTipText
Returns the tip text for this property- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
getFilterType
Gets how the training data will be transformed. Will be one of FILTER_NORMALIZE, FILTER_STANDARDIZE, FILTER_NONE.- Returns:
- the filtering mode
-
setFilterType
Sets how the training data will be transformed. Should be one of FILTER_NORMALIZE, FILTER_STANDARDIZE, FILTER_NONE.- Parameters:
newType- the new filtering mode
-
getCapabilities
Returns default capabilities of the classifier.- Specified by:
getCapabilitiesin interfaceCapabilitiesHandler- Overrides:
getCapabilitiesin classClassifier- Returns:
- the capabilities of this classifier
- See Also:
-
getMultiInstanceCapabilities
Returns the capabilities of this multi-instance classifier for the relational data.- Specified by:
getMultiInstanceCapabilitiesin interfaceMultiInstanceCapabilitiesHandler- Returns:
- the capabilities of this object
- See Also:
-
buildClassifier
Builds the classifier- Specified by:
buildClassifierin classClassifier- Parameters:
train- the training data to be used for generating the boosted classifier.- Throws:
Exception- if the classifier could not be built successfully
-
distributionForInstance
Computes the distribution for a given exemplar- Overrides:
distributionForInstancein classClassifier- Parameters:
exmp- the exemplar for which distribution is computed- Returns:
- the distribution
- Throws:
Exception- if the distribution can't be computed successfully
-
toString
Gets a string describing the classifier. -
getRevision
Returns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Overrides:
getRevisionin classClassifier- Returns:
- the revision
-
main
Main method for testing this class.- Parameters:
argv- should contain the command line arguments to the scheme (see Evaluation)
-