-
Hi, Is it possible to override parameters from the defaults list in a .yaml file? I mean something like that: defaults: - _self_ - datamodule/monai_holdout_datamodule - lightningmodule/unetlike - override datamodule/monai_holdout_datamodule/batch_size: 2 I know its possible from the CLI with |
Beta Was this translation helpful? Give feedback.
Answered by
jieru-hu
May 26, 2022
Replies: 1 comment 4 replies
-
yes - since this is a config value you can override it in the yaml. note: defaults lists is used for config groups, not values. datamodule:
monai_holdout_datamodule:
batch_size: 2 |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
YerePhy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
yes - since this is a config value you can override it in the yaml. note: defaults lists is used for config groups, not values.