153628e
1
2
3
4
5
6
7
8
9
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 *