Class mRMR
java.lang.Object
org.tribuo.classification.fs.mRMR
- All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.config.Configurable,com.oracle.labs.mlrg.olcut.provenance.Provenancable<FeatureSelectorProvenance>,FeatureSelector<Label>
Selects features according to the Minimum Redundancy Maximum Relevance algorithm.
Uses equal width binning for the feature values.
See:
Peng H, Long F, Ding C. "Feature Selection Based on Mutual Information: Criteria of Max-Dependency, Max-Relevance, and Min-Redundancy" IEEE Transactions on Pattern Analysis and Machine Intelligence (IEEE PAMI), 2005.
-
Field Summary
Fields inherited from interface org.tribuo.FeatureSelector
SELECT_ALL -
Constructor Summary
ConstructorsConstructorDescriptionmRMR(int k, int numBins, int numThreads) Constructs a mRMR feature selector that ranks the topkfeatures. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDoes this feature selection algorithm return an ordered feature set?voidUsed by the OLCUT configuration system, and should not be called by external code.Selects features according to this selection algorithm from the specified dataset.
-
Constructor Details
-
mRMR
public mRMR(int k, int numBins, int numThreads) Constructs a mRMR feature selector that ranks the topkfeatures.Continuous features are binned into
numBinsequal width bins.- Parameters:
k- The number of features to rank.numBins- The number of bins, must be greater than 1.numThreads- The number of computation threads to use.
-
-
Method Details
-
postConfig
public void postConfig()Used by the OLCUT configuration system, and should not be called by external code.- Specified by:
postConfigin interfacecom.oracle.labs.mlrg.olcut.config.Configurable
-
isOrdered
public boolean isOrdered()Description copied from interface:FeatureSelectorDoes this feature selection algorithm return an ordered feature set?- Specified by:
isOrderedin interfaceFeatureSelector<Label>- Returns:
- True if the set is ordered.
-
select
Description copied from interface:FeatureSelectorSelects features according to this selection algorithm from the specified dataset.- Specified by:
selectin interfaceFeatureSelector<Label>- Parameters:
dataset- The dataset to use.- Returns:
- A selected feature set.
-
getProvenance
- Specified by:
getProvenancein interfacecom.oracle.labs.mlrg.olcut.provenance.Provenancable<FeatureSelectorProvenance>
-