mirror of
https://github.com/open-mmlab/mmocr.git
synced 2025-06-03 21:54:47 +08:00
9 lines
239 B
Python
9 lines
239 B
Python
|
# 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."""
|