File size: 146 Bytes
0b52685 | 1 2 3 4 5 6 7 8 | import yaml
def read_params(config_path):
with open(config_path) as yaml_file:
config = yaml.safe_load(yaml_file)
return config
|
0b52685 | 1 2 3 4 5 6 7 8 | import yaml
def read_params(config_path):
with open(config_path) as yaml_file:
config = yaml.safe_load(yaml_file)
return config
|