We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Config file parameter loading with method AttributeDict may be implemented for more readable code.
Config file
AttributeDict
Read config via:
def _get_config(self): """ Load configuration from self.config.bb.pre_process() writes to self.config. """ with open(self.config, 'r') as cfg: self.config = yaml.load(cfg) self.config = AttributeDict(**self.config)
and access in our case e.g.:
self.config.Prior.priors.sm_clim.type
The text was updated successfully, but these errors were encountered:
tramsauer
No branches or pull requests
Config file
parameter loading with methodAttributeDict
may be implemented for more readable code.Read config via:
and access in our case e.g.:
The text was updated successfully, but these errors were encountered: