export_model.py 2.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# 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.

import os
import sys
import argparse

B
bitcjm 已提交
19 20
sys.path.append(".")

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
import ppgan
from ppgan.utils.config import get_config
from ppgan.utils.setup import setup
from ppgan.engine.trainer import Trainer


def parse_args():
    parser = argparse.ArgumentParser()
    parser.add_argument('-c',
                        '--config-file',
                        metavar="FILE",
                        required=True,
                        help="config file path")
    parser.add_argument("--load",
                        type=str,
                        default=None,
                        required=True,
                        help="put the path to resuming file if needed")
    # config options
    parser.add_argument("-o",
                        "--opt",
                        nargs="+",
                        help="set configuration options")
    parser.add_argument("-s",
                        "--inputs_size",
                        type=str,
                        default=None,
                        required=True,
                        help="the inputs size")
L
LielinJiang 已提交
50 51 52 53 54 55
    parser.add_argument(
        "--output_dir",
        default=None,
        type=str,
        help="The path prefix of inference model to be used.",
    )
L
lzzyzlbb 已提交
56 57 58 59 60 61
    parser.add_argument(
        "--export_serving_model",
        default=False,
        type=bool,
        help="export serving model.",
    )
L
lzzyzlbb 已提交
62 63 64 65 66 67
    parser.add_argument(
        "--model_name",
        default=None,
        type=str,
        help="model_name.",
    )
68 69 70 71 72 73 74 75 76 77 78 79 80
    args = parser.parse_args()
    return args


def main(args, cfg):
    inputs_size = [[int(size) for size in input_size.split(',')]
                   for input_size in args.inputs_size.split(';')]
    model = ppgan.models.builder.build_model(cfg.model)
    model.setup_train_mode(is_train=False)
    state_dicts = ppgan.utils.filesystem.load(args.load)
    for net_name, net in model.nets.items():
        if net_name in state_dicts:
            net.set_state_dict(state_dicts[net_name])
B
bitcjm 已提交
81
    model.export_model(cfg.export_model, args.output_dir, inputs_size,
L
lzzyzlbb 已提交
82
                       args.export_serving_model, args.model_name)
83 84 85 86 87 88


if __name__ == "__main__":
    args = parse_args()
    cfg = get_config(args.config_file, args.opt)
    main(args, cfg)