module.py 18.3 KB
Newer Older
S
Steffy-zxf 已提交
1
# coding:utf-8
W
wuzewu 已提交
2
# Copyright (c) 2020  PaddlePaddle Authors. All Rights Reserved.
W
wuzewu 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
#
# 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.

W
wuzewu 已提交
16
import ast
W
wuzewu 已提交
17
import builtins
18
import codecs
W
wuzewu 已提交
19
import inspect
W
wuzewu 已提交
20
import os
21
import re
W
wuzewu 已提交
22
import sys
W
wuzewu 已提交
23
from typing import Callable, Generic, List, Optional, Union
W
wuzewu 已提交
24

25 26
import paddle
import paddle2onnx
W
wuzewu 已提交
27 28
from easydict import EasyDict

W
wuzewu 已提交
29
from paddlehub.utils import parser, log, utils
30
from paddlehub.compat import paddle_utils
W
wuzewu 已提交
31
from paddlehub.compat.module.module_v1 import ModuleV1
W
wuzewu 已提交
32

W
wuzewu 已提交
33

W
wuzewu 已提交
34
class InvalidHubModule(Exception):
35
    def __init__(self, directory: str):
W
wuzewu 已提交
36 37 38 39 40 41 42
        self.directory = directory

    def __str__(self):
        return '{} is not a valid HubModule'.format(self.directory)


_module_serving_func = {}
W
wuzewu 已提交
43
_module_runnable_func = {}
W
wuzewu 已提交
44 45


46
def runnable(func: Callable) -> Callable:
W
wuzewu 已提交
47
    '''Mark a Module method as runnable, when the command `hub run` is used, the method will be called.'''
W
wuzewu 已提交
48
    mod = func.__module__ + '.' + inspect.stack()[1][3]
W
wuzewu 已提交
49
    _module_runnable_func[mod] = func.__name__
W
wuzewu 已提交
50 51 52 53 54 55 56

    def _wrapper(*args, **kwargs):
        return func(*args, **kwargs)

    return _wrapper


57
def serving(func: Callable) -> Callable:
W
wuzewu 已提交
58
    '''Mark a Module method as serving method, when the command `hub serving` is used, the method will be called.'''
W
wuzewu 已提交
59
    mod = func.__module__ + '.' + inspect.stack()[1][3]
走神的阿圆's avatar
走神的阿圆 已提交
60 61 62 63 64 65 66 67
    _module_serving_func[mod] = func.__name__

    def _wrapper(*args, **kwargs):
        return func(*args, **kwargs)

    return _wrapper


W
wuzewu 已提交
68 69 70
class RunModule(object):
    '''The base class of PaddleHub Module, users can inherit this class to implement to realize custom class.'''

H
haoyuying 已提交
71 72 73
    def __init__(self, *args, **kwargs):
        super(RunModule, self).__init__()

W
wuzewu 已提交
74 75 76 77 78 79 80
    def _get_func_name(self, current_cls: Generic, module_func_dict: dict) -> Optional[str]:
        mod = current_cls.__module__ + '.' + current_cls.__name__
        if mod in module_func_dict:
            _func_name = module_func_dict[mod]
            return _func_name
        elif current_cls.__bases__:
            for base_class in current_cls.__bases__:
H
haoyuying 已提交
81 82 83
                base_run_func = self._get_func_name(base_class, module_func_dict)
                if base_run_func:
                    return base_run_func
W
wuzewu 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
        else:
            return None

    # After the 2.0.0rc version, paddle uses the dynamic graph mode by default, which will cause the
    # execution of the static graph model to fail, so compatibility protection is required.
    def __getattribute__(self, attr):
        _attr = object.__getattribute__(self, attr)

        # If the acquired attribute is a built-in property of the object, skip it.
        if re.match('__.*__', attr):
            return _attr
        # If the module is a dynamic graph model, skip it.
        elif isinstance(self, paddle.nn.Layer):
            return _attr
        # If the acquired attribute is not a class method, skip it.
        elif not inspect.ismethod(_attr):
            return _attr

        return paddle_utils.run_in_static_mode(_attr)

    @classmethod
    def get_py_requirements(cls) -> List[str]:
        '''Get Module's python package dependency list.'''
        py_module = sys.modules[cls.__module__]
        directory = os.path.dirname(py_module.__file__)
        req_file = os.path.join(directory, 'requirements.txt')
        if not os.path.exists(req_file):
            return []
112
        with codecs.open(req_file, 'r', encoding='utf8') as file:
W
wuzewu 已提交
113
            return file.read().split('\n')
W
wuzewu 已提交
114

115 116 117 118 119 120 121 122
    @property
    def _run_func_name(self):
        return self._get_func_name(self.__class__, _module_runnable_func)

    @property
    def _run_func(self):
        return getattr(self, self._run_func_name) if self._run_func_name else None

W
wuzewu 已提交
123 124 125 126 127 128
    @property
    def is_runnable(self) -> bool:
        '''
        Whether the Module is runnable, in other words, whether can we execute the Module through the
        `hub run` command.
        '''
129
        return True if self._run_func else False
W
wuzewu 已提交
130

131 132
    @property
    def serving_func_name(self):
133
        return self._get_func_name(self.__class__, _module_serving_func)
W
wuzewu 已提交
134

135 136 137
    @property
    def _pretrained_model_path(self):
        _pretrained_model_attrs = [
W
wuzewu 已提交
138
            'pretrained_model_path', 'rec_pretrained_model_path', 'default_pretrained_model_path', 'model_path'
139 140 141 142 143 144 145 146 147 148 149
        ]

        for _attr in _pretrained_model_attrs:
            if hasattr(self, _attr):
                path = getattr(self, _attr)
                if os.path.exists(path) and os.path.isfile(path):
                    path = os.path.dirname(path)
                return path

        return None

W
wuzewu 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    def sub_modules(self, recursive: bool = True):
        '''
        Get all sub modules.

        Args:
            recursive(bool): Whether to get sub modules recursively. Default to True.
        '''
        _sub_modules = {}
        for key, item in self.__dict__.items():
            if id(item) == id(self):
                continue

            if isinstance(item, (RunModule, ModuleV1)):
                _sub_modules[key] = item
                if not recursive:
                    continue

                for _k, _v in item.sub_modules(recursive):
                    _sub_modules['{}/{}'.format(key, _k)] = _v

        return _sub_modules

    def export_onnx_model(self,
                          dirname: str,
                          input_spec: List[paddle.static.InputSpec] = None,
                          export_sub_modules: bool = True,
                          **kwargs):
177 178 179 180 181
        '''
        Export the model to ONNX format.

        Args:
            dirname(str): The directory to save the onnx model.
W
wuzewu 已提交
182 183 184 185 186 187 188
            input_spec(list): Describes the input of the saved model's forward method, which can be described by
                InputSpec or example Tensor. If None, all input variables of the original Layer's forward method
                would be the inputs of the saved model. Default None.
            export_sub_modules(bool): Whether to export sub modules. Default to True.
            **kwargs(dict|optional): Other export configuration options for compatibility, some may be removed in
                the future. Don't use them If not necessary. Refer to https://github.com/PaddlePaddle/paddle2onnx
                for more information.
189
        '''
W
wuzewu 已提交
190 191 192 193 194 195 196 197
        if export_sub_modules:
            for key, _sub_module in self.sub_modules().items():
                try:
                    sub_dirname = os.path.normpath(os.path.join(dirname, key))
                    _sub_module.export_onnx_model(sub_dirname, export_sub_modules=export_sub_modules, **kwargs)
                except:
                    utils.record_exception('Failed to export sub module {}'.format(_sub_module.name))

198 199 200
        if not self._pretrained_model_path:
            if isinstance(self, paddle.nn.Layer):
                save_file = os.path.join(dirname, '{}'.format(self.name))
W
wuzewu 已提交
201 202 203
                if not input_spec:
                    if hasattr(self, 'input_spec'):
                        input_spec = self.input_spec
204
                    else:
W
wuzewu 已提交
205 206 207 208 209 210 211 212 213
                        _type = self.type.lower()
                        if _type.startswith('cv/image'):
                            input_spec = [paddle.static.InputSpec(shape=[None, 3, None, None], dtype='float32')]
                        else:
                            raise RuntimeError(
                                'Module {} lacks `input_spec`, please specify it when calling `export_onnx_model`.'.
                                format(self.name))

                paddle.onnx.export(self, save_file, input_spec=input_spec, **kwargs)
214
                return
W
wuzewu 已提交
215 216 217 218 219 220

            raise RuntimeError('Module {} does not support exporting models in ONNX format.'.format(self.name))

        if not os.path.exists(self._pretrained_model_path):
            log.logger.warning('The model path of Module {} does not exist'.format(self.name))
            return
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252

        place = paddle.CPUPlace()
        exe = paddle.static.Executor(place)

        model_filename = None
        params_filename = None

        if os.path.exists(os.path.join(self._pretrained_model_path, 'model')):
            model_filename = 'model'

        if os.path.exists(os.path.join(self._pretrained_model_path, 'params')):
            params_filename = 'params'

        if os.path.exists(os.path.join(self._pretrained_model_path, '__params__')):
            params_filename = '__params__'

        save_file = os.path.join(dirname, '{}.onnx'.format(self.name))

        program, inputs, outputs = paddle.fluid.io.load_inference_model(
            dirname=self._pretrained_model_path,
            model_filename=model_filename,
            params_filename=params_filename,
            executor=exe)

        paddle2onnx.program2onnx(
            program=program,
            scope=paddle.static.global_scope(),
            feed_var_names=inputs,
            target_vars=outputs,
            save_file=save_file,
            **kwargs)

W
wuzewu 已提交
253

W
wuzewu 已提交
254
class Module(object):
W
wuzewu 已提交
255
    '''
W
wuzewu 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
    In PaddleHub, Module represents an executable module, which usually a pre-trained model that can be used for end-to-end
    prediction, such as a face detection model or a lexical analysis model, or a pre-trained model that requires finetuning,
    such as BERT/ERNIE. When loading a Module with a specified name, if the Module does not exist locally, PaddleHub will
    automatically request the server or the specified Git source to download the resource.

    Args:
        name(str): Module name.
        directory(str|optional): Directory of the module to be loaded, only takes effect when the `name` is not specified.
        version(str|optional): The version limit of the module, only takes effect when the `name` is specified. When the local
                               Module does not meet the specified version conditions, PaddleHub will re-request the server to
                               download the appropriate Module. Default to None, This means that the local Module will be used.
                               If the Module does not exist, PaddleHub will download the latest version available from the
                               server according to the usage environment.
        source(str|optional): Url of a git repository. If this parameter is specified, PaddleHub will no longer download the
                              specified Module from the default server, but will look for it in the specified repository.
                              Default to None.
        update(bool|optional): Whether to update the locally cached git repository, only takes effect when the `source`
                               is specified. Default to False.
        branch(str|optional): The branch of the specified git repository. Default to None.
W
wuzewu 已提交
275
    '''
W
wuzewu 已提交
276

W
wuzewu 已提交
277
    def __new__(cls,
W
wuzewu 已提交
278
                *,
W
wuzewu 已提交
279 280 281 282 283
                name: str = None,
                directory: str = None,
                version: str = None,
                source: str = None,
                update: bool = False,
W
wuzewu 已提交
284
                branch: str = None,
W
wuzewu 已提交
285
                **kwargs):
W
wuzewu 已提交
286
        if cls.__name__ == 'Module':
287
            from paddlehub.server.server import CacheUpdater
W
wuzewu 已提交
288
            # This branch come from hub.Module(name='xxx') or hub.Module(directory='xxx')
W
wuzewu 已提交
289
            if name:
W
wuzewu 已提交
290 291
                module = cls.init_with_name(
                    name=name, version=version, source=source, update=update, branch=branch, **kwargs)
292
                CacheUpdater("update_cache", module=name, version=version).start()
W
wuzewu 已提交
293
            elif directory:
W
wuzewu 已提交
294
                module = cls.init_with_directory(directory=directory, **kwargs)
295
                CacheUpdater("update_cache", module=directory, version="0.0.0").start()
296
        else:
W
wuzewu 已提交
297
            module = object.__new__(cls)
298

W
wuzewu 已提交
299 300 301
        return module

    @classmethod
302
    def load(cls, directory: str) -> Generic:
W
wuzewu 已提交
303
        '''Load the Module object defined in the specified directory.'''
W
wuzewu 已提交
304 305
        if directory.endswith(os.sep):
            directory = directory[:-1]
W
wuzewu 已提交
306

W
wuzewu 已提交
307
        # If the module description file existed, try to load as ModuleV1
W
wuzewu 已提交
308 309
        desc_file = os.path.join(directory, 'module_desc.pb')
        if os.path.exists(desc_file):
W
wuzewu 已提交
310
            return ModuleV1.load(directory)
W
wuzewu 已提交
311

W
wuzewu 已提交
312 313
        basename = os.path.split(directory)[-1]
        dirname = os.path.join(*list(os.path.split(directory)[:-1]))
W
wuzewu 已提交
314
        py_module = utils.load_py_module(dirname, '{}.module'.format(basename))
W
wuzewu 已提交
315 316 317 318 319

        for _item, _cls in inspect.getmembers(py_module, inspect.isclass):
            _item = py_module.__dict__[_item]
            if hasattr(_item, '_hook_by_hub') and issubclass(_item, RunModule):
                user_module_cls = _item
W
wuzewu 已提交
320
                break
W
wuzewu 已提交
321 322
        else:
            raise InvalidHubModule(directory)
W
wuzewu 已提交
323

W
wuzewu 已提交
324
        user_module_cls.directory = directory
W
wuzewu 已提交
325 326 327 328 329 330 331 332 333

        source_info_file = os.path.join(directory, '_source_info.yaml')
        if os.path.exists(source_info_file):
            info = parser.yaml_parser.parse(source_info_file)
            user_module_cls.source = info.get('source', '')
            user_module_cls.branch = info.get('branch', '')
        else:
            user_module_cls.source = ''
            user_module_cls.branch = ''
334 335 336 337 338 339

        # In the case of multiple cards, the following code can set each process to use the correct place.
        if issubclass(user_module_cls, paddle.nn.Layer):
            place = paddle.get_device().split(':')[0]
            paddle.set_device(place)

W
wuzewu 已提交
340
        return user_module_cls
W
wuzewu 已提交
341

W
wuzewu 已提交
342 343
    @classmethod
    def load_module_info(cls, directory: str) -> EasyDict:
W
wuzewu 已提交
344
        '''Load the infomation of Module object defined in the specified directory.'''
W
wuzewu 已提交
345 346 347 348 349 350 351
        # If is ModuleV1
        desc_file = os.path.join(directory, 'module_desc.pb')
        if os.path.exists(desc_file):
            return ModuleV1.load_module_info(directory)

        # If is ModuleV2
        module_file = os.path.join(directory, 'module.py')
352
        with codecs.open(module_file, 'r', encoding='utf8') as file:
W
wuzewu 已提交
353 354 355 356 357 358 359 360 361 362 363
            pycode = file.read()
            ast_module = ast.parse(pycode)

            for _body in ast_module.body:
                if not isinstance(_body, ast.ClassDef):
                    continue

                for _decorator in _body.decorator_list:
                    if _decorator.func.id != 'moduleinfo':
                        continue

W
wuzewu 已提交
364
                    info = {key.arg: key.value.s for key in _decorator.keywords if key.arg != 'meta'}
W
wuzewu 已提交
365 366 367 368
                    return EasyDict(info)
            else:
                raise InvalidHubModule(directory)

W
wuzewu 已提交
369
    @classmethod
W
wuzewu 已提交
370 371 372 373 374 375
    def init_with_name(cls,
                       name: str,
                       version: str = None,
                       source: str = None,
                       update: bool = False,
                       branch: str = None,
W
wuzewu 已提交
376 377
                       **kwargs) -> Union[RunModule, ModuleV1]:
        '''Initialize Module according to the specified name.'''
W
wuzewu 已提交
378 379
        from paddlehub.module.manager import LocalModuleManager
        manager = LocalModuleManager()
W
wuzewu 已提交
380
        user_module_cls = manager.search(name, source=source, branch=branch)
W
wuzewu 已提交
381
        if not user_module_cls or not user_module_cls.version.match(version):
W
wuzewu 已提交
382
            user_module_cls = manager.install(name=name, version=version, source=source, update=update, branch=branch)
W
wuzewu 已提交
383

W
wuzewu 已提交
384
        directory = manager._get_normalized_path(user_module_cls.name)
W
wuzewu 已提交
385 386 387 388 389 390 391 392 393 394

        # The HubModule in the old version will use the _initialize method to initialize,
        # this function will be obsolete in a future version
        if hasattr(user_module_cls, '_initialize'):
            log.logger.warning(
                'The _initialize method in HubModule will soon be deprecated, you can use the __init__() to handle the initialization of the object'
            )
            user_module = user_module_cls(directory=directory)
            user_module._initialize(**kwargs)
            return user_module
W
wuzewu 已提交
395

396
        if issubclass(user_module_cls, ModuleV1):
W
wuzewu 已提交
397 398
            return user_module_cls(directory=directory, **kwargs)

W
wuzewu 已提交
399 400
        user_module_cls.directory = directory
        return user_module_cls(**kwargs)
W
wuzewu 已提交
401

W
wuzewu 已提交
402
    @classmethod
W
wuzewu 已提交
403 404
    def init_with_directory(cls, directory: str, **kwargs) -> Union[RunModule, ModuleV1]:
        '''Initialize Module according to the specified directory.'''
W
wuzewu 已提交
405
        user_module_cls = cls.load(directory)
W
wuzewu 已提交
406 407 408 409 410 411 412 413 414 415

        # The HubModule in the old version will use the _initialize method to initialize,
        # this function will be obsolete in a future version
        if hasattr(user_module_cls, '_initialize'):
            log.logger.warning(
                'The _initialize method in HubModule will soon be deprecated, you can use the __init__() to handle the initialization of the object'
            )
            user_module = user_module_cls(directory=directory)
            user_module._initialize(**kwargs)
            return user_module
W
wuzewu 已提交
416

417
        if issubclass(user_module_cls, ModuleV1):
W
wuzewu 已提交
418 419
            return user_module_cls(directory=directory, **kwargs)

W
wuzewu 已提交
420 421
        user_module_cls.directory = directory
        return user_module_cls(**kwargs)
W
wuzewu 已提交
422

W
wuzewu 已提交
423

W
wuzewu 已提交
424 425 426 427 428 429
def moduleinfo(name: str,
               version: str,
               author: str = None,
               author_email: str = None,
               summary: str = None,
               type: str = None,
430
               meta=None) -> Callable:
W
wuzewu 已提交
431
    '''
W
wuzewu 已提交
432 433
    Mark Module information for a python class, and the class will automatically be extended to inherit HubModule. In other words, python classes
    marked with moduleinfo can be loaded through hub.Module.
W
wuzewu 已提交
434 435
    '''

436
    def _wrapper(cls: Generic) -> Generic:
W
wuzewu 已提交
437 438 439 440 441 442 443 444 445 446
        wrap_cls = cls
        _meta = RunModule if not meta else meta
        if not issubclass(cls, _meta):
            _bases = []
            for _b in cls.__bases__:
                if issubclass(_meta, _b):
                    continue
                _bases.append(_b)
            _bases.append(_meta)
            _bases = tuple(_bases)
W
wuzewu 已提交
447
            wrap_cls = builtins.type(cls.__name__, _bases, dict(cls.__dict__))
W
wuzewu 已提交
448 449 450 451 452 453 454 455 456

        wrap_cls.name = name
        wrap_cls.version = utils.Version(version)
        wrap_cls.author = author
        wrap_cls.author_email = author_email
        wrap_cls.summary = summary
        wrap_cls.type = type
        wrap_cls._hook_by_hub = True
        return wrap_cls
W
wuzewu 已提交
457

W
wuzewu 已提交
458
    return _wrapper