Interface FeaturePreprocessor
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
FeatureGenerator
- All Known Implementing Classes:
FeatureGeneratorTree,InteractingFeatures,MLSophisticatedPipeline,Normalization,PCA,PolynomialFeatures,Standardization,SupervisedFilterSelector,SuvervisedFilterPreprocessor
public interface FeaturePreprocessor extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description weka.core.Instanceapply(weka.core.Instance data)weka.core.Instancesapply(weka.core.Instances data)booleanisPrepared()voidprepare(weka.core.Instances data)
-
-
-
Method Detail
-
prepare
void prepare(weka.core.Instances data) throws PreprocessingException- Throws:
PreprocessingException
-
apply
weka.core.Instance apply(weka.core.Instance data) throws PreprocessingException- Throws:
PreprocessingException
-
apply
weka.core.Instances apply(weka.core.Instances data) throws PreprocessingException- Throws:
PreprocessingException
-
isPrepared
boolean isPrepared()
-
-