Skip to content

Commit

Permalink
[Feature] Add svtr encoder (#1483)
Browse files Browse the repository at this point in the history
* add svtr backbone

* update backbone

* fix

* apply comments, move backbone to encoder

Co-authored-by: gaotongxiao <gaotongxiao@gmail.com>
  • Loading branch information
willpat1213 and gaotongxiao authored Jan 4, 2023
1 parent 65e746e commit 5dbacfe
Show file tree
Hide file tree
Showing 3 changed files with 720 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mmocr/models/textrecog/encoders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
from .nrtr_encoder import NRTREncoder
from .sar_encoder import SAREncoder
from .satrn_encoder import SATRNEncoder
from .svtr_encoder import SVTREncoder

__all__ = [
'SAREncoder', 'NRTREncoder', 'BaseEncoder', 'ChannelReductionEncoder',
'SATRNEncoder', 'ABIEncoder', 'ASTEREncoder'
'SATRNEncoder', 'ABIEncoder', 'SVTREncoder', 'ASTEREncoder'
]
Loading

0 comments on commit 5dbacfe

Please sign in to comment.