module.py 9.9 KB
Newer Older
Z
Zeyu Chen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2019  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.

Z
Zeyu Chen 已提交
15 16 17 18 19
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import paddle.fluid as fluid
Z
Zeyu Chen 已提交
20
import numpy as np
Z
Zeyu Chen 已提交
21 22
import tempfile
import os
Z
Zeyu Chen 已提交
23

Z
Zeyu Chen 已提交
24
from collections import defaultdict
Z
Zeyu Chen 已提交
25
from paddle_hub.downloader import download_and_uncompress
Z
Zeyu Chen 已提交
26
from paddle_hub import module_desc_pb2
Z
Zeyu Chen 已提交
27

Z
Zeyu Chen 已提交
28
__all__ = ["Module", "ModuleConfig", "ModuleUtils"]
Z
Zeyu Chen 已提交
29
DICT_NAME = "dict.txt"
Z
Zeyu Chen 已提交
30
ASSETS_NAME = "assets"
Z
Zeyu Chen 已提交
31 32 33 34 35 36 37


def mkdir(path):
    """ the same as the shell command mkdir -p "
    """
    if not os.path.exists(path):
        os.makedirs(path)
Z
Zeyu Chen 已提交
38

Z
Zeyu Chen 已提交
39

Z
Zeyu Chen 已提交
40
class Module(object):
Z
Zeyu Chen 已提交
41 42 43 44
    """
    A module represents a
    """

Z
Zeyu Chen 已提交
45 46 47
    def __init__(self, module_url=None, module_dir=None):
        if module_url == None and module_dir == None:
            raise Exception("Module:module_url and module_dir are None!")
Z
Zeyu Chen 已提交
48 49 50

        self.module_dir = ""
        self.module_name = ""
Z
Zeyu Chen 已提交
51
        # donwload module
Z
Zeyu Chen 已提交
52
        if module_url is not None and module_url.startswith("http"):
Z
Zeyu Chen 已提交
53
            # if it's remote url link, then download and uncompress it
Z
Zeyu Chen 已提交
54 55
            self.module_name, self.module_dir = download_and_uncompress(
                module_url)
Z
Zeyu Chen 已提交
56
            #TODO(ZeyuChen): check url link is valid url
Z
Zeyu Chen 已提交
57
        elif module_dir is not None:
Z
Zeyu Chen 已提交
58
            # otherwise it's local path, no need to deal with it
Z
Zeyu Chen 已提交
59
            self.module_dir = module_dir
Z
Zeyu Chen 已提交
60
            # use the path name as module name by default
Z
Zeyu Chen 已提交
61
            self.module_name = module_dir.split("/")[-1]
Z
Zeyu Chen 已提交
62
            #TODO(ZeyuChen) add more check about loading module from local path
Z
Zeyu Chen 已提交
63 64 65 66 67 68

        # load paddle inference model
        place = fluid.CPUPlace()
        self.exe = fluid.Executor(fluid.CPUPlace())
        [self.inference_program, self.feed_target_names,
         self.fetch_targets] = fluid.io.load_inference_model(
69
             dirname=self.module_dir, executor=self.exe)
Z
Zeyu Chen 已提交
70 71 72 73 74 75 76 77

        print("inference_program")
        print(self.inference_program)
        print("feed_target_names")
        print(self.feed_target_names)
        print("fetch_targets")
        print(self.fetch_targets)

Z
Zeyu Chen 已提交
78 79
        self.config = ModuleConfig(self.module_dir)
        self.config.load()
Z
Zeyu Chen 已提交
80
        # load assets
Z
Zeyu Chen 已提交
81 82 83
        # self.dict = defaultdict(int)
        # self.dict.setdefault(0)
        # self._load_assets(module_dir)
Z
Zeyu Chen 已提交
84

Z
Zeyu Chen 已提交
85 86
    #TODO(ZeyuChen): Need add register more signature to execute different
    # implmentation
Z
Zeyu Chen 已提交
87
    def __call__(self, inputs=None, signature=None):
Z
Zeyu Chen 已提交
88 89 90 91 92 93
        """ Call default signature and return results
        """
        # TODO(ZeyuChen): add proto spec to check which task we need to run
        # if it's NLP word embedding task, then do words preprocessing
        # if it's image classification or image feature task do the other works

Z
Zeyu Chen 已提交
94
        # if it's
Z
Zeyu Chen 已提交
95 96 97 98 99 100 101 102 103 104
        word_ids_lod_tensor = self._process_input(inputs)
        np_words_id = np.array(word_ids_lod_tensor)
        print("word_ids_lod_tensor\n", np_words_id)

        results = self.exe.run(
            self.inference_program,
            feed={self.feed_target_names[0]: word_ids_lod_tensor},
            fetch_list=self.fetch_targets,
            return_numpy=False)  # return_numpy=Flase is important

Z
Zeyu Chen 已提交
105 106 107
        print("module fetch_target_names", self.feed_target_names)
        print("module fetch_targets", self.fetch_targets)
        np_result = np.array(results[0])
Z
Zeyu Chen 已提交
108 109 110 111 112 113

        return np_result

    def get_vars(self):
        return self.inference_program.list_vars()

Z
Zeyu Chen 已提交
114
    def get_feed_var(self, key, signature="default"):
Z
Zeyu Chen 已提交
115
        for var in self.inference_program.list_vars():
Z
Zeyu Chen 已提交
116
            if var.name == self.config.feed_var_name(key, signature):
Z
Zeyu Chen 已提交
117 118
                return var

Z
Zeyu Chen 已提交
119 120 121
        raise Exception("Can't find input var {}".format(key))

    def get_fetch_var(self, key, signature="default"):
Z
Zeyu Chen 已提交
122
        for var in self.inference_program.list_vars():
Z
Zeyu Chen 已提交
123
            if var.name == self.config.fetch_var_name(key, signature):
Z
Zeyu Chen 已提交
124 125
                return var

Z
Zeyu Chen 已提交
126 127
        raise Exception("Can't find output var {}".format(key))

Z
Zeyu Chen 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
    def get_inference_program(self):
        return self.inference_program

    # for text sequence input, transform to lod tensor as paddle graph's input
    def _process_input(self, inputs):
        # words id mapping and dealing with oov
        # transform to lod tensor
        seq = []
        for s in inputs:
            seq.append(self._word_id_mapping(s))

        lod_tensor = self.seq2lod_tensor(seq)

        return lod_tensor

    def seq2lod_tensor(self, seq_inputs, place=fluid.CPUPlace()):
        """ sequence to lod tensor, need to determine which space"""
        lod = []
        lod.append([])
        for s in seq_inputs:
            # generate lod
            lod[0].append(len(s))

        # print("seq", seq_inputs)
        # print("lod", lod)

        lod_tensor = fluid.create_lod_tensor(seq_inputs, lod, place)

        return lod_tensor

    def _word_id_mapping(self, inputs):
Z
Zeyu Chen 已提交
159 160 161
        word_dict = self.config.get_dict()
        return list(map(lambda x: word_dict[x], inputs))

Z
Zeyu Chen 已提交
162

Z
Zeyu Chen 已提交
163
class ModuleConfig(object):
Z
Zeyu Chen 已提交
164
    def __init__(self, module_dir, module_name=None):
Z
Zeyu Chen 已提交
165 166
        # generate model desc protobuf
        self.module_dir = module_dir
Z
Zeyu Chen 已提交
167 168 169
        self.desc = module_desc_pb2.ModuleDesc()
        if module_name == None:
            module_name = module_dir.split("/")[-1]
Z
Zeyu Chen 已提交
170 171 172 173 174
        self.desc.name = module_name
        print("desc.name=", self.desc.name)
        self.desc.contain_assets = True
        print("desc.signature=", self.desc.contain_assets)

Z
Zeyu Chen 已提交
175 176 177 178
        # init dict
        self.dict = defaultdict(int)
        self.dict.setdefault(0)

179
    def load(self):
Z
Zeyu Chen 已提交
180
        """load module config from module dir
Z
Zeyu Chen 已提交
181
        """
Z
Zeyu Chen 已提交
182
        #TODO(ZeyuChen): check module_desc.pb exsitance
183 184
        pb_path = os.path.join(self.module_dir, "module_desc.pb")
        with open(pb_path, "rb") as fi:
Z
Zeyu Chen 已提交
185 186 187 188
            self.desc.ParseFromString(fi.read())

        if self.desc.contain_assets:
            # load assets
Z
Zeyu Chen 已提交
189
            assets_dir = os.path.join(self.module_dir, ASSETS_NAME)
Z
Zeyu Chen 已提交
190 191 192 193 194 195 196 197 198 199
            dict_path = os.path.join(assets_dir, DICT_NAME)
            word_id = 0

            with open(dict_path) as fi:
                words = fi.readlines()
                #TODO(ZeyuChen) check whether word id is duplicated and valid
                for line in fi:
                    w, w_id = line.split()
                    self.dict[w] = int(w_id)

Z
Zeyu Chen 已提交
200
    def dump(self):
201 202 203
        """
        save module_desc.proto first
        """
Z
Zeyu Chen 已提交
204
        pb_path = os.path.join(self.module_dir, "module_desc.pb")
Z
Zeyu Chen 已提交
205 206 207 208
        with open(pb_path, "wb") as fo:
            fo.write(self.desc.SerializeToString())

        # save assets/dictionary
Z
Zeyu Chen 已提交
209
        assets_dir = os.path.join(self.module_dir, ASSETS_NAME)
Z
Zeyu Chen 已提交
210 211
        mkdir(assets_dir)
        with open(os.path.join(assets_dir, DICT_NAME), "w") as fo:
Z
Zeyu Chen 已提交
212 213
            for w in self.dict:
                w_id = self.dict[w]
Z
Zeyu Chen 已提交
214
                fo.write("{}\t{}\n".format(w, w_id))
Z
Zeyu Chen 已提交
215

Z
Zeyu Chen 已提交
216
    def save_dict(self, word_dict, dict_name=DICT_NAME):
Z
Zeyu Chen 已提交
217 218
        """ Save dictionary for NLP module
        """
Z
Zeyu Chen 已提交
219 220 221 222 223 224
        for w in word_dict:
            self.dict[w] = word_dict[w]
        # mkdir(self.module_dir)
        # with open(os.path.join(self.module_dir, DICT_NAME), "w") as fo:
        #     for w in word_dict:
        #         self.dict[w] = word_dict[w]
Z
Zeyu Chen 已提交
225

Z
Zeyu Chen 已提交
226 227 228
    def get_dict(self):
        return self.dict

Z
Zeyu Chen 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    def register_feed_signature(self, feed_desc, sign_name="default"):
        #TODO(ZeyuChen) check fetch_desc key is valid and no duplicated
        for k in feed_desc:
            feed = self.desc.sign2var[sign_name].feed_desc.add()
            feed.key = k
            feed.var_name = feed_desc[k]

    def register_fetch_signature(self, fetch_desc, sign_name="default"):
        #TODO(ZeyuChen) check fetch_desc key is valid and no duplicated
        for k in fetch_desc:
            fetch = self.desc.sign2var[sign_name].fetch_desc.add()
            fetch.key = k
            fetch.var_name = fetch_desc[k]

    def feed_var_name(self, key, sign_name="default"):
        for desc in self.desc.sign2var[sign_name].feed_desc:
            if desc.key == key:
                return desc.var_name
        raise Exception("feed variable {} not found".format(key))

    def fetch_var_name(self, key, sign_name="default"):
        for desc in self.desc.sign2var[sign_name].fetch_desc:
            if desc.key == key:
                return desc.var_name
        raise Exception("fetch variable {} not found".format(key))

Z
Zeyu Chen 已提交
255 256 257

class ModuleUtils(object):
    def __init__(self):
Z
Zeyu Chen 已提交
258
        pass
Z
Zeyu Chen 已提交
259

Z
Zeyu Chen 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
    @staticmethod
    def remove_feed_fetch_op(program):
        """ remove feed and fetch operator and variable for fine-tuning
        """
        print("remove feed fetch op")
        block = program.global_block()
        need_to_remove_op_index = []
        for i, op in enumerate(block.ops):
            if op.type == "feed" or op.type == "fetch":
                need_to_remove_op_index.append(i)

        for index in need_to_remove_op_index[::-1]:
            block._remove_op(index)

        block._remove_var("feed")
        block._remove_var("fetch")

        program.desc.flush()
Z
Zeyu Chen 已提交
278 279 280
        # print("********************************")
        # print(program)
        # print("********************************")
Z
Zeyu Chen 已提交
281

Z
Zeyu Chen 已提交
282 283

if __name__ == "__main__":
Z
Zeyu Chen 已提交
284 285
    url = "http://paddlehub.cdn.bcebos.com/word2vec/word2vec-dim16-simple-example-2.tar.gz"
    m = Module(module_url=url)
Z
Zeyu Chen 已提交
286 287 288 289 290
    inputs = [["it", "is", "new"], ["hello", "world"]]
    #tensor = m._process_input(inputs)
    #print(tensor)
    result = m(inputs)
    print(result)