Mountchicken's picture
Upload 704 files
9bf4bd7
raw
history blame
250 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from mmocr.registry import MODELS
from .encoder_decoder_recognizer import EncoderDecoderRecognizer
@MODELS.register_module()
class CRNN(EncoderDecoderRecognizer):
"""CTC-loss based recognizer."""