__init__.py 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
W
WenmuZhou 已提交
14 15 16 17 18 19 20

__all__ = ['build_head']


def build_head(config):
    # det head
    from .det_db_head import DBHead
M
MissPenguin 已提交
21 22
    from .det_east_head import EASTHead
    from .det_sast_head import SASTHead
W
WenmuZhou 已提交
23
    from .det_pse_head import PSEHead
z37757's avatar
z37757 已提交
24
    from .det_fce_head import FCEHead
J
Jethong 已提交
25
    from .e2e_pg_head import PGHead
W
WenmuZhou 已提交
26 27

    # rec head
D
dyning 已提交
28
    from .rec_ctc_head import CTCHead
L
LDOUBLEV 已提交
29
    from .rec_att_head import AttentionHead
T
tink2123 已提交
30
    from .rec_srn_head import SRNHead
T
Topdu 已提交
31
    from .rec_nrtr_head import Transformer
A
andyjpaddle 已提交
32
    from .rec_sar_head import SARHead
T
tink2123 已提交
33
    from .rec_aster_head import AsterHead
34
    from .rec_pren_head import PRENHead
A
andyjpaddle 已提交
35
    from .rec_multi_head import MultiHead
36
    from .rec_abinet_head import ABINetHead
xuyang2233's avatar
xuyang2233 已提交
37
    from .rec_robustscanner_head import RobustScannerHead
Z
zhoujun 已提交
38 39 40

    # cls head
    from .cls_head import ClsHead
L
add kie  
LDOUBLEV 已提交
41 42 43 44

    #kie head
    from .kie_sdmgr_head import SDMGRHead

L
LDOUBLEV 已提交
45
    from .table_att_head import TableAttentionHead
文幕地方's avatar
文幕地方 已提交
46
    from .table_master_head import TableMasterHead
L
LDOUBLEV 已提交
47

L
LDOUBLEV 已提交
48
    support_dict = [
z37757's avatar
z37757 已提交
49 50
        'DBHead', 'PSEHead', 'FCEHead', 'EASTHead', 'SASTHead', 'CTCHead',
        'ClsHead', 'AttentionHead', 'SRNHead', 'PGHead', 'Transformer',
A
andyjpaddle 已提交
51
        'TableAttentionHead', 'SARHead', 'AsterHead', 'SDMGRHead', 'PRENHead',
xuyang2233's avatar
xuyang2233 已提交
52
        'MultiHead', 'ABINetHead', 'TableMasterHead', 'RobustScannerHead'
L
add kie  
LDOUBLEV 已提交
53
    ]
W
WenmuZhou 已提交
54

M
MissPenguin 已提交
55
    #table head
W
WenmuZhou 已提交
56 57 58 59 60 61

    module_name = config.pop('name')
    assert module_name in support_dict, Exception('head only support {}'.format(
        support_dict))
    module_class = eval(module_name)(**config)
    return module_class