inferencer.py 2.6 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
20
import parallel_executor
D
daminglu 已提交
21
import unique_name
Q
Qiao Longfei 已提交
22 23
from trainer import check_and_get_place

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


class Inferencer(object):
28
    def __init__(self, infer_func, param_path, place=None, parallel=False):
Q
Qiao Longfei 已提交
29
        """
D
daminglu 已提交
30 31
        :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 已提交
32 33 34
        :param place: place to do the inference
        """
        self.param_path = param_path
H
Helin Wang 已提交
35
        self.scope = core.Scope()
36 37
        self.parallel = parallel
        self.place = check_and_get_place(place)
J
Jeff Wang 已提交
38

D
daminglu 已提交
39 40 41 42 43
        self.inference_program = framework.Program()
        with framework.program_guard(self.inference_program):
            with unique_name.guard():
                self.predict_var = infer_func()

44 45 46 47 48 49
        if parallel:
            self.exe = parallel_executor.ParallelExecutor(
                use_cuda=isinstance(self.place, core.CUDAPlace),
                loss_name=self.predict_var.name)
        else:
            self.exe = executor.Executor(self.place)
Q
Qiao Longfei 已提交
50
        with executor.scope_guard(self.scope):
J
Jeff Wang 已提交
51
            # load params from param_path into scope
D
daminglu 已提交
52
            io.load_params(self.exe, param_path, self.inference_program)
Q
Qiao Longfei 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

    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 已提交
68
                                   fetch_list=[self.predict_var],
Q
Qiao Longfei 已提交
69 70 71
                                   return_numpy=return_numpy)

        return results