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 classAbstractDatabaseConnectionCleanerAncestor for cleaners that require a database connection.classAbstractSerializableCleanerAbstract cleaner that can serialize its setup to disk and also load it from there.classIQRCleanerRemoves instances outside the given IQR multiplier.classMinMaxChecks an attribute in the Instance whether the value is within a certain range.classPassThroughDummy cleaner that flags everything as clean.classRemoveMisclassifiedCleanerRemoves instances that are misclassified by the given relative difference, unless they are within the absolute difference.classRemoveOutliersCross-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 AbstractCleanerAbstractCleaner. forCommandLine(String cmdline)Instantiates the filter from the given commandline (i.e., classname and optional options).static AbstractCleanerAbstractCleaner. forName(String classname, String[] options)Instantiates the filter with the given options.AbstractCleanerAbstractCleaner. shallowCopy()Returns a shallow copy of itself, i.e., based on the commandline options.AbstractCleanerAbstractCleaner. 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 AbstractCleanerInstanceCleaner. m_Cleanerthe instance cleaner to use.Methods in adams.flow.control that return AbstractCleaner Modifier and Type Method Description AbstractCleanerInstanceCleaner. getCleaner()Returns the cleaner.Methods in adams.flow.control with parameters of type AbstractCleaner Modifier and Type Method Description voidInstanceCleaner. 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 AbstractCleanerCleanerModelLoader. 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 AbstractCleanerCleaner. m_ActualCleanerthe cleaner used for training/evaluating.protected AbstractCleanerCleaner.CleanJob. m_Cleanerthe cleaner to apply.protected AbstractCleanerCleaner. m_Cleanerthe evaluator.Methods in adams.flow.transformer that return AbstractCleaner Modifier and Type Method Description AbstractCleanerCleaner. getCleaner()Returns the cleaner in use.Methods in adams.flow.transformer with parameters of type AbstractCleaner Modifier and Type Method Description voidCleaner. 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.
-