signature.py 2.4 KB
Newer Older
W
wuzewu 已提交
1
# Copyright (c) 2019  PaddlePaddle Authors. All Rights Reserved.
W
wuzewu 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#
# 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 __future__ import absolute_import
from __future__ import division
from __future__ import print_function
W
wuzewu 已提交
18

W
wuzewu 已提交
19
from paddle.fluid.framework import Variable
W
wuzewu 已提交
20 21

from paddlehub.common.utils import to_list
W
wuzewu 已提交
22 23 24


class Signature:
W
wuzewu 已提交
25 26 27 28 29 30 31
    def __init__(self,
                 name,
                 inputs,
                 outputs,
                 feed_names=None,
                 fetch_names=None,
                 for_predict=False):
W
wuzewu 已提交
32 33 34
        inputs = to_list(inputs)
        outputs = to_list(outputs)

W
wuzewu 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47
        if not feed_names:
            feed_names = [""] * len(inputs)
        feed_names = to_list(feed_names)
        assert len(inputs) == len(
            feed_names), "the length of feed_names must be same with inputs"

        if not fetch_names:
            fetch_names = [""] * len(outputs)
        fetch_names = to_list(fetch_names)
        assert len(outputs) == len(
            fetch_names), "the length of fetch_names must be same with outputs"

        self.name = name
W
wuzewu 已提交
48 49
        for item in inputs:
            assert isinstance(
Z
Zeyu Chen 已提交
50
                item, Variable), "the item of inputs list shoule be Variable"
W
wuzewu 已提交
51 52 53

        for item in outputs:
            assert isinstance(
Z
Zeyu Chen 已提交
54
                item, Variable), "the item of outputs list shoule be Variable"
W
wuzewu 已提交
55 56 57

        self.inputs = inputs
        self.outputs = outputs
W
wuzewu 已提交
58 59
        self.feed_names = feed_names
        self.fetch_names = fetch_names
W
wuzewu 已提交
60
        self.for_predict = for_predict
W
wuzewu 已提交
61

W
wuzewu 已提交
62

W
wuzewu 已提交
63 64 65 66
def create_signature(name="default",
                     inputs=[],
                     outputs=[],
                     feed_names=None,
W
wuzewu 已提交
67 68
                     fetch_names=None,
                     for_predict=False):
W
wuzewu 已提交
69 70 71 72 73
    return Signature(
        name=name,
        inputs=inputs,
        outputs=outputs,
        feed_names=feed_names,
W
wuzewu 已提交
74 75
        fetch_names=fetch_names,
        for_predict=for_predict)