AutoEval / doctr /io /image /__init__.py
adirathor07's picture
added doctr folder
153628e
raw
history blame contribute delete
193 Bytes
from doctr.file_utils import is_tf_available, is_torch_available
from .base import *
if is_tf_available():
from .tensorflow import *
elif is_torch_available():
from .pytorch import *