Spaces:
Runtime error
Runtime error
| import yaml | |
| import os | |
| #read yaml file | |
| def load_config(): | |
| with open(os.path.join('model','config.yaml')) as file: | |
| config= yaml.safe_load(file) | |
| return config | |
| import yaml | |
| import os | |
| #read yaml file | |
| def load_config(): | |
| with open(os.path.join('model','config.yaml')) as file: | |
| config= yaml.safe_load(file) | |
| return config | |