web_service_java.py 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# 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.
try:
    from paddle_serving_server.web_service import WebService, Op
except ImportError:
17
    from paddle_serving_server_gpu.web_service import WebService, Op
18 19 20 21 22 23 24 25
import logging
import numpy as np
from numpy import array
import sys
import base64

_LOGGER = logging.getLogger()
np.set_printoptions(threshold=sys.maxsize)
W
wangjiawei04 已提交
26 27


28 29 30 31 32
class UciOp(Op):
    def init_op(self):
        self.separator = ","

    def preprocess(self, input_dicts, data_id, log_id):
33 34 35 36 37
        """
        diff with web_server.py
	javaclient input type is INDArray, restful request input is list.
	this function simply reshape input to the Specified shape.
        """
38 39 40 41 42
        (_, input_dict), = input_dicts.items()
        _LOGGER.error("UciOp::preprocess >>> log_id:{}, input:{}".format(
            log_id, input_dict))
        proc_dict = {}
        x_value = input_dict["x"]
W
wangjiawei04 已提交
43 44
        input_dict["x"] = x_value.reshape(1, 13)

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
        return input_dict, False, None, ""

    def postprocess(self, input_dicts, fetch_dict, log_id):
        _LOGGER.info("UciOp::postprocess >>> log_id:{}, fetch_dict:{}".format(
            log_id, fetch_dict))
        fetch_dict["price"] = str(fetch_dict["price"][0][0])
        return fetch_dict, None, ""


class UciService(WebService):
    def get_pipeline_response(self, read_op):
        uci_op = UciOp(name="uci", input_ops=[read_op])
        return uci_op


uci_service = UciService(name="uci")
uci_service.prepare_pipeline_config("config.yml")
uci_service.run_service()