2020-06-26 02:41:22 +08:00
|
|
|
# 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.
|
2020-10-13 17:13:33 +08:00
|
|
|
|
2021-07-01 17:52:16 +08:00
|
|
|
__all__ = ["build_backbone"]
|
2020-10-13 17:13:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
def build_backbone(config, model_type):
|
2021-11-30 23:26:40 +08:00
|
|
|
if model_type == "det" or model_type == "table":
|
2020-10-13 17:13:33 +08:00
|
|
|
from .det_mobilenet_v3 import MobileNetV3
|
2022-06-27 16:26:53 +08:00
|
|
|
from .det_resnet import ResNet
|
|
|
|
from .det_resnet_vd import ResNet_vd
|
2020-12-09 14:45:25 +08:00
|
|
|
from .det_resnet_vd_sast import ResNet_SAST
|
2022-08-08 14:50:27 +08:00
|
|
|
from .det_pp_lcnet import PPLCNet
|
|
|
|
support_dict = [
|
|
|
|
"MobileNetV3", "ResNet", "ResNet_vd", "ResNet_SAST", "PPLCNet"
|
|
|
|
]
|
2022-07-04 17:21:43 +08:00
|
|
|
if model_type == "table":
|
|
|
|
from .table_master_resnet import TableResNetExtra
|
|
|
|
support_dict.append('TableResNetExtra')
|
2021-07-01 17:52:16 +08:00
|
|
|
elif model_type == "rec" or model_type == "cls":
|
2020-10-13 17:13:33 +08:00
|
|
|
from .rec_mobilenet_v3 import MobileNetV3
|
|
|
|
from .rec_resnet_vd import ResNet
|
2020-12-30 16:15:49 +08:00
|
|
|
from .rec_resnet_fpn import ResNetFPN
|
2021-07-01 17:52:16 +08:00
|
|
|
from .rec_mv1_enhance import MobileNetV1Enhance
|
2021-08-11 17:50:51 +08:00
|
|
|
from .rec_nrtr_mtb import MTB
|
2021-08-24 11:49:26 +08:00
|
|
|
from .rec_resnet_31 import ResNet31
|
2022-07-10 10:21:18 +08:00
|
|
|
from .rec_resnet_32 import ResNet32
|
2022-06-28 15:06:53 +08:00
|
|
|
from .rec_resnet_45 import ResNet45
|
2021-09-29 10:48:11 +08:00
|
|
|
from .rec_resnet_aster import ResNet_ASTER
|
2022-01-17 00:05:09 +08:00
|
|
|
from .rec_micronet import MicroNet
|
2022-02-28 21:48:00 +08:00
|
|
|
from .rec_efficientb3_pren import EfficientNetb3_PREN
|
2022-04-26 16:19:31 +08:00
|
|
|
from .rec_svtrnet import SVTRNet
|
2022-06-28 15:06:53 +08:00
|
|
|
from .rec_vitstr import ViTSTR
|
2022-09-27 10:54:31 +08:00
|
|
|
from .rec_resnet_rfl import ResNetRFL
|
2022-10-15 20:27:05 +08:00
|
|
|
from .rec_densenet import DenseNet
|
2023-02-08 11:25:50 +08:00
|
|
|
from .rec_shallow_cnn import ShallowCNN
|
2023-04-19 16:04:23 +08:00
|
|
|
from .rec_lcnetv3 import LCNetv3
|
2023-04-21 12:34:48 +08:00
|
|
|
from .rec_hgnet import PPHGNet_small
|
2021-07-01 17:52:16 +08:00
|
|
|
support_dict = [
|
2021-09-27 14:58:10 +08:00
|
|
|
'MobileNetV1Enhance', 'MobileNetV3', 'ResNet', 'ResNetFPN', 'MTB',
|
2022-06-28 15:06:53 +08:00
|
|
|
'ResNet31', 'ResNet45', 'ResNet_ASTER', 'MicroNet',
|
2022-10-15 20:27:05 +08:00
|
|
|
'EfficientNetb3_PREN', 'SVTRNet', 'ViTSTR', 'ResNet32', 'ResNetRFL',
|
2023-04-21 12:34:48 +08:00
|
|
|
'DenseNet', 'ShallowCNN', 'LCNetv3', 'PPHGNet_small'
|
2021-07-01 17:52:16 +08:00
|
|
|
]
|
2022-06-28 15:06:53 +08:00
|
|
|
elif model_type == 'e2e':
|
2021-03-08 14:15:47 +08:00
|
|
|
from .e2e_resnet_vd_pg import ResNet
|
|
|
|
support_dict = ['ResNet']
|
2021-10-09 15:40:25 +08:00
|
|
|
elif model_type == 'kie':
|
|
|
|
from .kie_unet_sdmgr import Kie_backbone
|
2022-08-21 10:55:49 +08:00
|
|
|
from .vqa_layoutlm import LayoutLMForSer, LayoutLMv2ForSer, LayoutLMv2ForRe, LayoutXLMForSer, LayoutXLMForRe
|
|
|
|
support_dict = [
|
|
|
|
'Kie_backbone', 'LayoutLMForSer', 'LayoutLMv2ForSer',
|
|
|
|
'LayoutLMv2ForRe', 'LayoutXLMForSer', 'LayoutXLMForRe'
|
|
|
|
]
|
2022-06-28 15:06:53 +08:00
|
|
|
elif model_type == 'table':
|
2021-06-16 16:47:33 +08:00
|
|
|
from .table_resnet_vd import ResNet
|
|
|
|
from .table_mobilenet_v3 import MobileNetV3
|
2022-06-28 15:06:53 +08:00
|
|
|
support_dict = ['ResNet', 'MobileNetV3']
|
2020-10-13 17:13:33 +08:00
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2022-06-28 15:06:53 +08:00
|
|
|
module_name = config.pop('name')
|
2020-10-13 17:13:33 +08:00
|
|
|
assert module_name in support_dict, Exception(
|
2021-07-01 17:52:16 +08:00
|
|
|
"when model typs is {}, backbone only support {}".format(model_type,
|
2020-10-13 17:13:33 +08:00
|
|
|
support_dict))
|
|
|
|
module_class = eval(module_name)(**config)
|
|
|
|
return module_class
|