tarzanagh's picture
Add files using upload-large-folder tool
0d96152 verified
Raw
History Blame Contribute Delete
199 Bytes
"""
From https://github.com/jacarvalho/mpd-public
"""
import yaml
def load_params_from_yaml(path: str):
with open(path, "r") as stream:
return yaml.load(stream, Loader=yaml.FullLoader)