Package elki.datasource.filter.transform
Class GlobalPrincipalComponentAnalysisTransform.Par<O extends NumberVector>
- java.lang.Object
-
- elki.datasource.filter.transform.GlobalPrincipalComponentAnalysisTransform.Par<O>
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- GlobalPrincipalComponentAnalysisTransform<O extends NumberVector>
public static class GlobalPrincipalComponentAnalysisTransform.Par<O extends NumberVector> extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) EigenPairFilterfilterFilter to use for dimensionality reduction.static OptionIDFILTER_IDTo specify the eigenvectors to keep.(package private) GlobalPrincipalComponentAnalysisTransform.ModemodeMode.static OptionIDMODE_IDMode control.
-
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.GlobalPrincipalComponentAnalysisTransform<O>make()Make an instance after successful configuration.
-
-
-
Field Detail
-
FILTER_ID
public static final OptionID FILTER_ID
To specify the eigenvectors to keep.
-
MODE_ID
public static final OptionID MODE_ID
Mode control.
-
filter
EigenPairFilter filter
Filter to use for dimensionality reduction.
-
mode
GlobalPrincipalComponentAnalysisTransform.Mode mode
Mode.
-
-
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- Parameters:
config- Parameterization
-
make
public GlobalPrincipalComponentAnalysisTransform<O> 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- Returns:
- a new instance
-
-