inferencer.py 2.3 KB
Newer Older
H
Helin Wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2018 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.

H
Helin Wang 已提交
15
import core
D
daminglu 已提交
16

J
Jeff Wang 已提交
17
import executor
D
daminglu 已提交
18
import framework
J
Jeff Wang 已提交
19
import io
D
daminglu 已提交
20
import unique_name
Q
Qiao Longfei 已提交
21 22
from trainer import check_and_get_place

H
Helin Wang 已提交
23
__all__ = ['Inferencer', ]
H
Helin Wang 已提交
24 25 26


class Inferencer(object):
D
daminglu 已提交
27
    def __init__(self, infer_func, param_path, place=None):
Q
Qiao Longfei 已提交
28
        """
D
daminglu 已提交
29 30
        :param infer_func: a function that will return predict Variable
        :param param_path: the path where the inference model is saved by fluid.io.save_params
Q
Qiao Longfei 已提交
31 32 33
        :param place: place to do the inference
        """
        self.param_path = param_path
H
Helin Wang 已提交
34
        self.scope = core.Scope()
J
Jeff Wang 已提交
35

D
daminglu 已提交
36 37 38 39 40
        self.inference_program = framework.Program()
        with framework.program_guard(self.inference_program):
            with unique_name.guard():
                self.predict_var = infer_func()

Q
Qiao Longfei 已提交
41 42
        self.exe = executor.Executor(check_and_get_place(place))
        with executor.scope_guard(self.scope):
J
Jeff Wang 已提交
43
            # load params from param_path into scope
D
daminglu 已提交
44
            io.load_params(self.exe, param_path, self.inference_program)
Q
Qiao Longfei 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

    def infer(self, inputs, return_numpy=True):
        """
        :param inputs: a map of {"input_name": input_var} that will be feed into the inference program
        to get the predict value
        :param return_numpy: if return numpy value for row tensor
        :return: the predict value of the inference model
        """
        if not isinstance(inputs, dict):
            raise ValueError(
                "inputs should be a map of {'input_name': input_var}")

        with executor.scope_guard(self.scope):
            results = self.exe.run(self.inference_program,
                                   feed=inputs,
D
daminglu 已提交
60
                                   fetch_list=[self.predict_var],
Q
Qiao Longfei 已提交
61 62 63
                                   return_numpy=return_numpy)

        return results