export_model.py 3.4 KB
Newer Older
W
wangguanzhong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Copyright (c) 2019 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.

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

import os
20 21 22 23 24
import sys
# add python path of PadleDetection to sys.path
parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))
if parent_path not in sys.path:
    sys.path.append(parent_path)
W
wangguanzhong 已提交
25 26 27 28 29 30 31 32

from paddle import fluid

import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)

K
Kaipeng Deng 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
try:
    from ppdet.core.workspace import load_config, merge_config, create
    from ppdet.utils.cli import ArgsParser
    import ppdet.utils.checkpoint as checkpoint
    from ppdet.utils.export_utils import save_infer_model, dump_infer_config
    from ppdet.utils.check import check_config, check_version, check_py_func, enable_static_mode
except ImportError as e:
    if sys.argv[0].find('static') >= 0:
        logger.error("Importing ppdet failed when running static model "
                     "with error: {}\n"
                     "please try:\n"
                     "\t1. run static model under PaddleDetection/static "
                     "directory\n"
                     "\t2. run 'pip uninstall ppdet' to uninstall ppdet "
                     "dynamic version firstly.".format(e))
        sys.exit(-1)
    else:
        raise e

W
wangguanzhong 已提交
52 53 54 55

def main():
    cfg = load_config(FLAGS.config)
    merge_config(FLAGS.opt)
56 57
    check_config(cfg)

58 59
    check_version()

60
    main_arch = cfg.architecture
W
wangguanzhong 已提交
61 62 63 64 65 66 67 68 69 70 71

    # Use CPU for exporting inference model instead of GPU
    place = fluid.CPUPlace()
    exe = fluid.Executor(place)

    model = create(main_arch)

    startup_prog = fluid.Program()
    infer_prog = fluid.Program()
    with fluid.program_guard(infer_prog, startup_prog):
        with fluid.unique_name.guard():
72 73 74
            inputs_def = cfg['TestReader']['inputs_def']
            inputs_def['use_dataloader'] = False
            feed_vars, _ = model.build_inputs(**inputs_def)
K
Kaipeng Deng 已提交
75 76
            # postprocess not need in exclude_nms, exclude NMS in exclude_nms mode
            test_fetches = model.test(feed_vars, exclude_nms=FLAGS.exclude_nms)
W
wangguanzhong 已提交
77
    infer_prog = infer_prog.clone(True)
78
    check_py_func(infer_prog)
W
wangguanzhong 已提交
79 80 81 82

    exe.run(startup_prog)
    checkpoint.load_params(exe, infer_prog, cfg.weights)

J
Jiawei Wang 已提交
83
    dump_infer_config(FLAGS, cfg)
84
    save_infer_model(FLAGS, exe, feed_vars, test_fetches, infer_prog)
W
wangguanzhong 已提交
85 86 87


if __name__ == '__main__':
88
    enable_static_mode()
W
wangguanzhong 已提交
89 90 91 92 93 94
    parser = ArgsParser()
    parser.add_argument(
        "--output_dir",
        type=str,
        default="output",
        help="Directory for storing the output model files.")
K
Kaipeng Deng 已提交
95 96 97 98 99
    parser.add_argument(
        "--exclude_nms",
        action='store_true',
        default=False,
        help="Whether prune NMS for benchmark")
100

W
wangguanzhong 已提交
101 102
    FLAGS = parser.parse_args()
    main()