serve.py 2.4 KB
Newer Older
G
guru4elephant 已提交
1
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
G
guru4elephant 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#
# 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.
"""
Usage:
    Host a trained paddle model with one line command
    Example:
G
guru4elephant 已提交
18
        python -m paddle_serving_server.serve --model ./serving_server_model --port 9292
G
guru4elephant 已提交
19
"""
G
guru4elephant 已提交
20 21
import argparse

B
barrierye 已提交
22 23

def parse_args():  # pylint: disable=doc-string-missing
G
guru4elephant 已提交
24
    parser = argparse.ArgumentParser("serve")
B
barrierye 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37
    parser.add_argument(
        "--thread", type=int, default=10, help="Concurrency of server")
    parser.add_argument(
        "--model", type=str, default="", help="Model for serving")
    parser.add_argument(
        "--port", type=int, default=9292, help="Port the server")
    parser.add_argument(
        "--workdir",
        type=str,
        default="workdir",
        help="Working dir of current service")
    parser.add_argument(
        "--device", type=str, default="cpu", help="Type of device")
G
guru4elephant 已提交
38 39
    return parser.parse_args()

B
barrierye 已提交
40 41

def start_standard_model():  # pylint: disable=doc-string-missing
G
guru4elephant 已提交
42 43 44 45 46 47 48 49 50 51
    args = parse_args()
    thread_num = args.thread
    model = args.model
    port = args.port
    workdir = args.workdir
    device = args.device

    if model == "":
        print("You must specify your serving model")
        exit(-1)
G
guru4elephant 已提交
52 53 54 55 56 57 58 59 60 61 62 63

    import paddle_serving_server as serving
    op_maker = serving.OpMaker()
    read_op = op_maker.create('general_reader')
    general_infer_op = op_maker.create('general_infer')
    general_response_op = op_maker.create('general_response')

    op_seq_maker = serving.OpSeqMaker()
    op_seq_maker.add_op(read_op)
    op_seq_maker.add_op(general_infer_op)
    op_seq_maker.add_op(general_response_op)

G
guru4elephant 已提交
64
    server = serving.Server()
G
guru4elephant 已提交
65
    server.set_op_sequence(op_seq_maker.get_op_sequence())
G
guru4elephant 已提交
66
    server.set_num_threads(thread_num)
G
guru4elephant 已提交
67

G
guru4elephant 已提交
68 69
    server.load_model_config(model)
    server.prepare_server(workdir=workdir, port=port, device=device)
G
guru4elephant 已提交
70 71
    server.run_server()

B
barrierye 已提交
72

G
guru4elephant 已提交
73
if __name__ == "__main__":
G
guru4elephant 已提交
74
    start_standard_model()