tomofi's picture
Add application file
2366e36
raw
history blame
No virus
298 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from mmcv.runner import BaseModule
from mmocr.models.builder import ENCODERS
@ENCODERS.register_module()
class BaseEncoder(BaseModule):
"""Base Encoder class for text recognition."""
def forward(self, feat, **kwargs):
return feat