Package weka.attributeSelection
Interface SubsetEvaluator
- All Known Implementing Classes:
CfsSubsetEval
,ClassifierSubsetEval
,HoldOutSubsetEvaluator
,UnsupervisedSubsetEvaluator
,WrapperSubsetEval
public interface SubsetEvaluator
Interface for attribute subset evaluators.
- Version:
- $Revision: 8034 $
- Author:
- Mark Hall (mhall@cs.waikato.ac.nz)
-
Method Summary
Modifier and TypeMethodDescriptiondouble
evaluateSubset
(BitSet subset) evaluates a subset of attributes
-
Method Details
-
evaluateSubset
evaluates a subset of attributes- Parameters:
subset
- a bitset representing the attribute subset to be evaluated- Returns:
- the "merit" of the subset
- Throws:
Exception
- if the subset could not be evaluated
-