|
|
|
from . import common, kie, textdet, textrecog |
|
from .builder import (BACKBONES, CONVERTORS, DECODERS, DETECTORS, ENCODERS, |
|
HEADS, LOSSES, NECKS, PREPROCESSOR, build_backbone, |
|
build_convertor, build_decoder, build_detector, |
|
build_encoder, build_loss, build_preprocessor) |
|
from .common import * |
|
from .kie import * |
|
from .ner import * |
|
from .textdet import * |
|
from .textrecog import * |
|
|
|
__all__ = [ |
|
'BACKBONES', 'DETECTORS', 'HEADS', 'LOSSES', 'NECKS', 'build_backbone', |
|
'build_detector', 'build_loss', 'CONVERTORS', 'ENCODERS', 'DECODERS', |
|
'PREPROCESSOR', 'build_convertor', 'build_encoder', 'build_decoder', |
|
'build_preprocessor' |
|
] |
|
__all__ += common.__all__ + kie.__all__ + textdet.__all__ + textrecog.__all__ |
|
|