Uses of Class
adams.data.cleaner.instance.AbstractCleaner
-
Packages that use AbstractCleaner Package Description adams.data.cleaner.instance adams.flow.control adams.flow.core adams.flow.transformer -
-
Uses of AbstractCleaner in adams.data.cleaner.instance
Subclasses of AbstractCleaner in adams.data.cleaner.instance Modifier and Type Class Description class
AbstractDatabaseConnectionCleaner
Ancestor for cleaners that require a database connection.class
AbstractSerializableCleaner
Abstract cleaner that can serialize its setup to disk and also load it from there.class
IQRCleaner
Removes instances outside the given IQR multiplier.class
MinMax
Checks an attribute in the Instance whether the value is within a certain range.class
PassThrough
Dummy cleaner that flags everything as clean.class
RemoveMisclassifiedCleaner
Removes instances that are misclassified by the given relative difference, unless they are within the absolute difference.class
RemoveOutliers
Cross-validates the specified classifier on the incoming data and applies the outlier detector to the actual vs predicted data to remove the outliers.
NB: only works on full dataset, not instance by instance.Methods in adams.data.cleaner.instance that return AbstractCleaner Modifier and Type Method Description static AbstractCleaner
AbstractCleaner. forCommandLine(String cmdline)
Instantiates the filter from the given commandline (i.e., classname and optional options).static AbstractCleaner
AbstractCleaner. forName(String classname, String[] options)
Instantiates the filter with the given options.AbstractCleaner
AbstractCleaner. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractCleaner
AbstractCleaner. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options. -
Uses of AbstractCleaner in adams.flow.control
Fields in adams.flow.control declared as AbstractCleaner Modifier and Type Field Description protected AbstractCleaner
InstanceCleaner. m_Cleaner
the instance cleaner to use.Methods in adams.flow.control that return AbstractCleaner Modifier and Type Method Description AbstractCleaner
InstanceCleaner. getCleaner()
Returns the cleaner.Methods in adams.flow.control with parameters of type AbstractCleaner Modifier and Type Method Description void
InstanceCleaner. setCleaner(AbstractCleaner value)
Sets the cleaner. -
Uses of AbstractCleaner in adams.flow.core
Methods in adams.flow.core that return AbstractCleaner Modifier and Type Method Description protected AbstractCleaner
CleanerModelLoader. getModelFromContainer(adams.flow.container.AbstractContainer cont, adams.core.MessageCollection errors)
Retrieves the model from the container. -
Uses of AbstractCleaner in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractCleaner Modifier and Type Field Description protected AbstractCleaner
Cleaner. m_ActualCleaner
the cleaner used for training/evaluating.protected AbstractCleaner
Cleaner.CleanJob. m_Cleaner
the cleaner to apply.protected AbstractCleaner
Cleaner. m_Cleaner
the evaluator.Methods in adams.flow.transformer that return AbstractCleaner Modifier and Type Method Description AbstractCleaner
Cleaner. getCleaner()
Returns the cleaner in use.Methods in adams.flow.transformer with parameters of type AbstractCleaner Modifier and Type Method Description void
Cleaner. setCleaner(AbstractCleaner value)
Sets the cleaner to use.Constructors in adams.flow.transformer with parameters of type AbstractCleaner Constructor Description CleanJob(AbstractCleaner cleaner, weka.core.Instances data)
Initializes the job.
-