Package elki.math.linearalgebra.pca
Class AutotuningPCA.Par
- java.lang.Object
-
- elki.math.linearalgebra.pca.PCARunner.Par
-
- elki.math.linearalgebra.pca.AutotuningPCA.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- AutotuningPCA
public static class AutotuningPCA.Par extends PCARunner.Par
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description private EigenPairFilterfilterFilter to select eigenvectors.static OptionIDPCA_EIGENPAIR_FILTERParameter for filtering eigenvectors.-
Fields inherited from class elki.math.linearalgebra.pca.PCARunner.Par
covarianceMatrixBuilder, PCA_COVARIANCE_MATRIX, PCARUNNER_ID
-
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.AutotuningPCAmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
PCA_EIGENPAIR_FILTER
public static final OptionID PCA_EIGENPAIR_FILTER
Parameter for filtering eigenvectors.
-
filter
private EigenPairFilter filter
Filter to select eigenvectors.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:ParameterizerConfigure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configurein interfaceParameterizer- Overrides:
configurein classPCARunner.Par- Parameters:
config- Parameterization
-
make
public AutotuningPCA make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
makein interfaceParameterizer- Overrides:
makein classPCARunner.Par- Returns:
- a new instance
-
-