__init__.py 566 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
##################################################
# Store Library Version
##################################################
import os.path

try:
    with open(os.path.join(os.path.dirname(__file__), "VERSION")) as f:
        __version__ = f.read().strip()
except Exception:
    raise


##################################################
# utils module accessible from pytorch-widedeep
##################################################
from .utils import dense_utils
from .utils import text_utils
from .utils import fastai_transforms
from .utils import image_utils