-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
help wantedExtra attention is neededExtra attention is needed
Description
I apologize but I am new to Julia. i am trying to perform recursive feature elimination (RFE) in a pipeline:
ada = Adaboost()
disc = CatNumDiscriminator()
pt = PrunedTree()
rfe=SKPreprocessor("RFE",Dict(:estimator=>ada));
pvote = disc |> ((catf |> ohe) + (numf|>rfe)) |> pt
but always got the same error TypeError("init() missing 1 required positional argument: 'estimator'") although it seems to me that the estimator has been provided. How should RFE be used?
Than you in advance
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is needed