__init__.py 2.3 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
H
huangjun12 已提交
26
    from .det_ct_head import CT_Head
W
WenmuZhou 已提交
27 28

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

    # cls head
    from .cls_head import ClsHead
L
add kie  
LDOUBLEV 已提交
44 45 46 47

    #kie head
    from .kie_sdmgr_head import SDMGRHead

文幕地方's avatar
文幕地方 已提交
48
    from .table_att_head import TableAttentionHead, SLAHead
文幕地方's avatar
文幕地方 已提交
49
    from .table_master_head import TableMasterHead
L
LDOUBLEV 已提交
50

L
LDOUBLEV 已提交
51
    support_dict = [
z37757's avatar
z37757 已提交
52 53
        'DBHead', 'PSEHead', 'FCEHead', 'EASTHead', 'SASTHead', 'CTCHead',
        'ClsHead', 'AttentionHead', 'SRNHead', 'PGHead', 'Transformer',
A
andyjpaddle 已提交
54
        'TableAttentionHead', 'SARHead', 'AsterHead', 'SDMGRHead', 'PRENHead',
A
andyjpaddle 已提交
55
        'MultiHead', 'ABINetHead', 'TableMasterHead', 'SPINAttentionHead',
H
huangjun12 已提交
56
        'VLHead', 'SLAHead', 'RobustScannerHead', 'CT_Head'
L
add kie  
LDOUBLEV 已提交
57
    ]
W
WenmuZhou 已提交
58

M
MissPenguin 已提交
59
    #table head
W
WenmuZhou 已提交
60 61 62 63 64 65

    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