Last active
September 2, 2021 10:54
-
-
Save elisim/d516c0642ff7c354ebaad51d93e14969 to your computer and use it in GitHub Desktop.
Hydra-Sklearn Blog - Code example 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hydra config file for the decision_tree preprocessing steps | |
_target_: hydra_sklearn_pipeline.make_pipeline | |
#StepName: | |
# _target_: <class to instantiate the step> | |
# param1: <step's first parameter> | |
# param2: <step's second parameter, etc.> | |
steps_config: # use yaml list syntax to preserve to order | |
- StandardScaler: | |
_target_: sklearn.preprocessing.StandardScaler | |
- VarianceThreshold: | |
_target_: sklearn.feature_selection.VarianceThreshold | |
threshold: 0.1 | |
- SimpleImputer: | |
_target_: sklearn.impute.SimpleImputer | |
strategy: 'constant' | |
fill_value: '-1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment