|
|
__init__(self,
arg1=None,
*options,
**args)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
score(self,
data,
*options,
**args)
invokes selectFeatures to find predictive features and eliminates
the rest of the features from the input dataset |
source code
|
|
|
|
train(self,
data,
*options,
**args)
invokes selectFeatures to find predictive features and eliminates
the rest of the features from the input dataset |
source code
|
|
|
|
oneAgainstOne(self,
data,
targetClass,
**args)
XXXX change maximum into average or add this as another option |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__,
__str__
|
|
|
rank(self,
data,
**args)
Returns:
a ranking of the features in the dataset by converting the scores
to ranks |
source code
|
|
|
|
select(self,
data,
*options,
**args)
invokes selectFeatures to find predictive features and eliminates
the rest of the features from the input dataset |
source code
|
|
|
|
|
|
|
|