UnsolvedMNIST / config /__init__.py
Muthukamalan's picture
src file added
af3a445
raw
history blame contribute delete
128 Bytes
import toml
import os
config_file:str = os.path.join(os.path.dirname(__file__),'config.toml')
CONFIG = toml.load(config_file)