| AbstractCleaner | 
 Abstract base class for cleaners handling weka.core.Instance
 objects. 
 | 
| AbstractDatabaseConnectionCleaner | 
 Ancestor for cleaners that require a database connection. 
 | 
| AbstractSerializableCleaner | 
 Abstract cleaner that can serialize its setup to disk and also load it
 from there. 
 | 
| IQRCleaner | 
 Removes instances outside the given IQR multiplier. 
 | 
| MinMax | 
 Checks an attribute in the Instance whether the value is within a certain range. 
 | 
| PassThrough | 
 Dummy cleaner that flags everything as clean. 
 | 
| RemoveMisclassifiedCleaner | 
 Removes instances that are misclassified by the given relative difference, unless they are within the absolute difference. 
 | 
| 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. 
 |