config.py 157 字节
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8
import os

__all__ = ['DATA_HOME']

DATA_HOME = os.path.expanduser('~/.cache/paddle_data_set')

if not os.path.exists(DATA_HOME):
    os.makedirs(DATA_HOME)