mirror of
https://github.com/open-mmlab/mmocr.git
synced 2025-06-03 21:54:47 +08:00
13 lines
403 B
Python
13 lines
403 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
from .spts import SPTS
|
||
|
from .spts_decoder import SPTSDecoder
|
||
|
from .spts_dictionary import SPTSDictionary
|
||
|
from .spts_encoder import SPTSEncoder
|
||
|
from .spts_module_loss import SPTSModuleLoss
|
||
|
from .spts_postprocessor import SPTSPostprocessor
|
||
|
|
||
|
__all__ = [
|
||
|
'SPTSEncoder', 'SPTSDecoder', 'SPTSPostprocessor', 'SPTS',
|
||
|
'SPTSDictionary', 'SPTSModuleLoss'
|
||
|
]
|