lac_web_service.py 2.1 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.

from paddle_serving_server.web_service import WebService
import sys
M
MRXLT 已提交
17
from paddle_serving_app.reader import LACReader
W
fix lac  
wangjiawei04 已提交
18
import numpy as np
19 20 21 22


class LACService(WebService):
    def load_reader(self):
M
MRXLT 已提交
23
        self.reader = LACReader()
24 25

    def preprocess(self, feed={}, fetch=[]):
B
barrierye 已提交
26
        feed_batch = []
W
fix lac  
wangjiawei04 已提交
27 28 29
        fetch = ["crf_decode"]
        lod_info = [0]
        is_batch = True
B
barrierye 已提交
30 31 32 33
        for ins in feed:
            if "words" not in ins:
                raise ("feed data error!")
            feed_data = self.reader.process(ins["words"])
W
fix lac  
wangjiawei04 已提交
34 35 36 37 38 39 40 41
            feed_batch.append(np.array(feed_data).reshape(len(feed_data), 1))
            lod_info.append(lod_info[-1] + len(feed_data))
        feed_dict = {
            "words": np.concatenate(
                feed_batch, axis=0),
            "words.lod": lod_info
        }
        return feed_dict, fetch, is_batch
42

W
wangjiawei04 已提交
43
    def postprocess(self, feed={}, fetch=[], fetch_map={}):
B
barrierye 已提交
44
        batch_ret = []
B
barrierye 已提交
45
        for idx, ins in enumerate(feed):
B
barrierye 已提交
46 47
            begin = fetch_map['crf_decode.lod'][idx]
            end = fetch_map['crf_decode.lod'][idx + 1]
B
barrierye 已提交
48
            segs = self.reader.parse_result(ins["words"],
B
barrierye 已提交
49 50 51
                                            fetch_map["crf_decode"][begin:end])
            batch_ret.append({"word_seg": "|".join(segs)})
        return batch_ret
W
wangjiawei04 已提交
52

53 54 55 56 57 58

lac_service = LACService(name="lac")
lac_service.load_model_config(sys.argv[1])
lac_service.load_reader()
lac_service.prepare_server(
    workdir=sys.argv[2], port=int(sys.argv[3]), device="cpu")
M
MRXLT 已提交
59 60
lac_service.run_rpc_service()
lac_service.run_web_service()