You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful to enable using a new defaults keyword within hyperopt to set default parameters for feature groups. This will help add search spaces more concisely for datasets with a large number of features while also reducing the search space to allow for a deeper search during hyperopt.
It would be helpful to enable using a new
defaults
keyword within hyperopt to set default parameters for feature groups. This will help add search spaces more concisely for datasets with a large number of features while also reducing the search space to allow for a deeper search during hyperopt.For e.g., a user should be able to add
"defaults.input_features.text.cell_type": {"space": "choice", "categories": ["lstm", "gru"]}
in their hyperopt search space so that all text input features use the sampled cell_type for that particular trial.
The API for this change will be as follows:
defaults.<feature_group>.<feature_type>.<parameter>
, where:feature_group
: either input_features or output_features to distinguish which features to apply this tofeature_type
: the feature type in question, for e.g., text/category/sequence etc.parameter
: the parameter that one wants to search over for that particular feature type, for e.g., vocab_size for textExample Configuration:
The text was updated successfully, but these errors were encountered: