fatimaxa's picture
Upload 46 files
83be575 verified
raw
history blame contribute delete
169 Bytes
import yaml
# helper function to load configs from yaml file
def load_config(path="config.yaml"):
with open(path, "r") as f:
return yaml.safe_load(f)