ProgramSkripsi / model /config.py
Yuuki0's picture
first commit
e0c75d6
raw
history blame contribute delete
167 Bytes
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