web_serve.py 1.4 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 30 31 32 33 34
    args = serve_args()
    web_service = WebService(name=args.name)
    web_service.load_model_config(args.model)
    if args.gpu_ids == "":
        gpu_ids = os.environ["CUDA_VISIBLE_DEVICES"]
    gpus = [int(x) for x in gpu_ids.split(",")]
    web_service.set_gpus(gpus)
    web_service.prepare_server(
M
MRXLT 已提交
35
        workdir=args.workdir, port=args.port, device=args.device)
36
    service.run_server()