MMOCR / mmocr /models /kie /__init__.py
tomofi's picture
Add application file
2366e36
raw
history blame
No virus
244 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from . import extractors, heads, losses
from .extractors import * # NOQA
from .heads import * # NOQA
from .losses import * # NOQA
__all__ = extractors.__all__ + heads.__all__ + losses.__all__