mirror of
https://github.com/open-mmlab/mmocr.git
synced 2025-06-03 21:54:47 +08:00
9 lines
250 B
Python
9 lines
250 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
from mmocr.models.textrecog import EncoderDecoderRecognizer
|
||
|
from mmocr.registry import MODELS
|
||
|
|
||
|
|
||
|
@MODELS.register_module()
|
||
|
class ABCNetRec(EncoderDecoderRecognizer):
|
||
|
"""CTC-loss based recognizer."""
|