__call__(self,
dataset,
testdataset=None)
(Call operator)
| source code
|
Invocation of the feature selection
Returns a tuple with the dataset containing the selected features.
If present the tuple also contains the selected features of the
test dataset. Derived classes must provide interface to access other
relevant to the feature selection process information (e.g. mask,
elimination step (in RFE), etc)
- Parameters:
dataset (Dataset) - dataset used to select features
testdataset (Dataset) - dataset the might be used to compute a stopping criterion
|