export_utils.py 3.5 KB
Newer Older
K
Kaipeng Deng 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# 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   
Q
qingqing01 已提交
13 14 15 16 17 18 19 20 21 22
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
import yaml
from collections import OrderedDict

K
Kaipeng Deng 已提交
23
from ppdet.data.source.category import get_categories
Q
qingqing01 已提交
24

K
Kaipeng Deng 已提交
25
from ppdet.utils.logger import setup_logger
26
logger = setup_logger('ppdet.engine')
Q
qingqing01 已提交
27 28 29 30

# Global dictionary
TRT_MIN_SUBGRAPH = {
    'YOLO': 3,
31
    'SSD': 60,
Q
qingqing01 已提交
32 33
    'RCNN': 40,
    'RetinaNet': 40,
C
cnn 已提交
34
    'S2ANet': 40,
Q
qingqing01 已提交
35 36
    'EfficientDet': 40,
    'Face': 3,
F
Feng Ni 已提交
37 38
    'TTFNet': 3,
    'FCOS': 16,
Q
qingqing01 已提交
39
    'SOLOv2': 60,
40
    'HigherHrnet': 40,
Q
qingqing01 已提交
41 42
}

43 44
KEYPOINT_ARCH = ['HigherHrnet', 'Hrnet']

Q
qingqing01 已提交
45

K
Kaipeng Deng 已提交
46
def _parse_reader(reader_cfg, dataset_cfg, metric, arch, image_shape):
Q
qingqing01 已提交
47 48 49
    preprocess_list = []

    anno_file = dataset_cfg.get_anno()
K
Kaipeng Deng 已提交
50

51
    clsid2catid, catid2name = get_categories(metric, arch, anno_file)
Q
qingqing01 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64

    label_list = [str(cat) for cat in catid2name.values()]

    sample_transforms = reader_cfg['sample_transforms']
    for st in sample_transforms[1:]:
        for key, value in st.items():
            p = {'type': key}
            p.update(value)
            preprocess_list.append(p)
    batch_transforms = reader_cfg.get('batch_transforms', None)
    if batch_transforms:
        for bt in batch_transforms:
            for key, value in bt.items():
65
                # for deploy/infer, use PadStride(stride) instead PadBatch(pad_to_stride)
G
Guanghua Yu 已提交
66
                if key == 'PadBatch':
67 68
                    preprocess_list.append({
                        'type': 'PadStride',
Q
qingqing01 已提交
69 70 71 72
                        'stride': value['pad_to_stride']
                    })
                    break

73
    return preprocess_list, label_list, image_shape
Q
qingqing01 已提交
74 75


K
Kaipeng Deng 已提交
76
def _dump_infer_config(config, path, image_shape, model):
Q
qingqing01 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    arch_state = False
    from ppdet.core.config.yaml_helpers import setup_orderdict
    setup_orderdict()
    infer_cfg = OrderedDict({
        'mode': 'fluid',
        'draw_threshold': 0.5,
        'metric': config['metric'],
        'image_shape': image_shape
    })
    infer_arch = config['architecture']

    for arch, min_subgraph_size in TRT_MIN_SUBGRAPH.items():
        if arch in infer_arch:
            infer_cfg['arch'] = arch
            infer_cfg['min_subgraph_size'] = min_subgraph_size
            arch_state = True
            break
    if not arch_state:
        logger.error(
            'Architecture: {} is not supported for exporting model now'.format(
                infer_arch))
        os._exit(0)
G
Guanghua Yu 已提交
99 100
    if 'Mask' in infer_arch:
        infer_cfg['mask'] = True
101 102 103
    label_arch = 'detection_arch'
    if infer_arch in KEYPOINT_ARCH:
        label_arch = 'keypoint_arch'
104
    infer_cfg['Preprocess'], infer_cfg[
K
Kaipeng Deng 已提交
105
        'label_list'], image_shape = _parse_reader(
Q
qingqing01 已提交
106
            config['TestReader'], config['TestDataset'], config['metric'],
107
            label_arch, image_shape)
Q
qingqing01 已提交
108 109 110 111

    yaml.dump(infer_cfg, open(path, 'w'))
    logger.info("Export inference config file to {}".format(os.path.join(path)))
    return image_shape