hyperopt / hyperopt-sklearn

Hyper-parameter optimization for sklearn
hyperopt.github.io/hyperopt-sklearn
Other
1.58k stars 271 forks source link

How to disable preprocessing in HyperoptEstimator? #129

Closed taoxinyi closed 4 years ago

taoxinyi commented 5 years ago

In estimator.py , when preprocessing is None in HyperoptEstimator, it will use a preprocessing anyway.

if preprocessing is None:
    preprocessing = components.any_preprocessing('preprocessing')

Is it possible to not use preprocessing at all?

bjkomer commented 5 years ago

yes, you can pass an empty list [] to use no preprocessing