9 lines
239 B
Python
Raw Normal View History

# Copyright (c) OpenMMLab. All rights reserved.
from mmocr.registry import MODELS
from .two_stage_text_spotting import TwoStageTextSpotter
@MODELS.register_module()
class ABCNet(TwoStageTextSpotter):
"""CTC-loss based recognizer."""