def __init__(self, conf):
SemiSupervisedFeatureSelection.__init__(self, conf)
self.projection = RFE(estimator = conf.model,
n_features_to_select = conf.num_components,
step = conf.step)