KangjunNoh's picture
Upload 47 files
906e061 verified
import munch
import toml
def get_config(filepath: str = 'configs/default.toml'):
return munch.munchify(
toml.load(filepath)
)