Spaces:
Runtime error
Runtime error
| 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) | |
| 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) | |