web_service.py 1.7 KB
Newer Older
B
barriery 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# 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.
B
fix cpu  
barriery 已提交
14
try:
B
barriery 已提交
15
    from paddle_serving_server_gpu.web_service import WebService, Op
B
fix cpu  
barriery 已提交
16
except ImportError:
B
barriery 已提交
17
    from paddle_serving_server.web_service import WebService, Op
B
barriery 已提交
18 19 20 21 22 23
import logging
import numpy as np

_LOGGER = logging.getLogger()


B
barriery 已提交
24 25
class UciOp(Op):
    def init_op(self):
B
barriery 已提交
26 27
        self.separator = ","

B
barriery 已提交
28 29 30
    def preprocess(self, input_dicts):
        (_, input_dict), = input_dicts.items()
        _LOGGER.info(input_dict)
B
barriery 已提交
31 32 33 34
        x_value = input_dict["x"]
        if isinstance(x_value, (str, unicode)):
            input_dict["x"] = np.array(
                [float(x.strip()) for x in x_value.split(self.separator)])
B
barriery 已提交
35 36
        return input_dict

B
barriery 已提交
37
    def postprocess(self, input_dicts, fetch_dict):
B
barriery 已提交
38
        # _LOGGER.info(fetch_dict)
B
barriery 已提交
39 40 41 42
        fetch_dict["price"] = str(fetch_dict["price"][0][0])
        return fetch_dict


B
barriery 已提交
43 44 45 46 47 48
class UciService(WebService):
    def get_pipeline_response(self, read_op):
        uci_op = UciOp(name="uci", input_ops=[read_op])
        return uci_op


B
barriery 已提交
49
uci_service = UciService(name="uci")
B
barriery 已提交
50
uci_service.prepare_pipeline_config("config.yml")
B
barriery 已提交
51
uci_service.run_service()