web_serve.py 1.5 KB
Newer Older
M
MRXLT 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 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.
"""
Usage:
    Host a trained paddle model with one line command
    Example:
        python -m paddle_serving_server.web_serve --model ./serving_server_model --port 9292
"""
20
import os
M
MRXLT 已提交
21 22
from multiprocessing import Pool, Process
from .web_service import WebService
23 24
import paddle_serving_server_gpu as serving
from paddle_serving_server_gpu import serve_args
M
MRXLT 已提交
25 26

if __name__ == "__main__":
27 28 29
    args = serve_args()
    web_service = WebService(name=args.name)
    web_service.load_model_config(args.model)
G
guru4elephant 已提交
30
    gpu_ids = []
31
    if args.gpu_ids == "":
G
guru4elephant 已提交
32 33 34 35 36
        if "CUDA_VISIBLE_DEVICES" in os.environ:
            gpu_ids = os.environ["CUDA_VISIBLE_DEVICES"]
    if len(gpu_ids) > 0:
        gpus = [int(x) for x in gpu_ids.split(",")]
        web_service.set_gpus(gpus)
37
    web_service.prepare_server(
M
MRXLT 已提交
38
        workdir=args.workdir, port=args.port, device=args.device)
G
fix bug  
guru4elephant 已提交
39
    web_service.run_server()