Skip to content

Instantly share code, notes, and snippets.

@elisim
Last active September 2, 2021 10:54
Show Gist options
  • Save elisim/d516c0642ff7c354ebaad51d93e14969 to your computer and use it in GitHub Desktop.
Save elisim/d516c0642ff7c354ebaad51d93e14969 to your computer and use it in GitHub Desktop.
Hydra-Sklearn Blog - Code example 3
# 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