Spaces:
Sleeping
Sleeping
File size: 288 Bytes
9bf4bd7 |
1 2 3 4 5 6 7 8 9 |
# Copyright (c) OpenMMLab. All rights reserved.
from mmocr.registry import MODELS
from .encoder_decoder_recognizer import EncoderDecoderRecognizer
@MODELS.register_module()
class MASTER(EncoderDecoderRecognizer):
"""Implementation of `MASTER <https://arxiv.org/abs/1910.02562>`_"""
|