File size: 167 Bytes
e0c75d6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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