| | |
| | import importlib |
| | import os.path as osp |
| |
|
| | from mmengine.config import Config |
| | from mmengine.config.utils import (_get_cfg_metainfo, |
| | _get_external_cfg_base_path, |
| | _get_package_and_cfg_path) |
| | from mmengine.registry import MODELS, DefaultScope |
| | from mmengine.runner import load_checkpoint |
| | from mmengine.utils import get_installed_path, install_package |
| |
|
| |
|
| | def get_config(cfg_path: str, pretrained: bool = False) -> Config: |
| | """Get config from external package. |
| | |
| | Args: |
| | cfg_path (str): External relative config path. |
| | pretrained (bool): Whether to save pretrained model path. If |
| | ``pretrained==True``, the url of pretrained model can be accessed |
| | by ``cfg.model_path``. Defaults to False. |
| | |
| | Examples: |
| | >>> cfg = get_config('mmdet::faster_rcnn/faster-rcnn_r50_fpn_1x_coco.py', pretrained=True) |
| | >>> # Equivalent to |
| | >>> # cfg = Config.fromfile('/path/to/faster-rcnn_r50_fpn_1x_coco.py') |
| | >>> cfg.model_path |
| | https://download.openmmlab.com/mmdetection/v2.0/faster_rcnn/faster_rcnn_r50_fpn_1x_coco/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth |
| | |
| | Returns: |
| | Config: A `Config` parsed from external package. |
| | """ |
| | |
| | package, cfg_path = _get_package_and_cfg_path(cfg_path) |
| | |
| | install_package(package) |
| | package_path = get_installed_path(package) |
| | try: |
| | |
| | cfg_meta = _get_cfg_metainfo(package_path, cfg_path) |
| | cfg_path = osp.join(package_path, '.mim', cfg_meta['Config']) |
| | cfg = Config.fromfile(cfg_path) |
| | if pretrained: |
| | assert 'Weights' in cfg_meta, ('Cannot find `Weights` in cfg_file' |
| | '.metafile.yml, please check the' |
| | 'metafile') |
| | cfg.model_path = cfg_meta['Weights'] |
| | except ValueError: |
| | |
| | |
| | cfg_path = _get_external_cfg_base_path(package_path, cfg_path) |
| | cfg = Config.fromfile(cfg_path) |
| | except Exception as e: |
| | raise e |
| | return cfg |
| |
|
| |
|
| | def get_model(cfg_path: str, pretrained: bool = False, **kwargs): |
| | """Get built model from external package. |
| | |
| | Args: |
| | cfg_path (str): External relative config path with prefix |
| | 'package::' and without suffix. |
| | pretrained (bool): Whether to load pretrained model. Defaults to False. |
| | kwargs (dict): Default arguments to build model. |
| | |
| | Examples: |
| | >>> model = get_model('mmdet::faster_rcnn/faster-rcnn_r50_fpn_1x_coco.py', pretrained=True) |
| | >>> type(model) |
| | <class 'mmdet.models.detectors.faster_rcnn.FasterRCNN'> |
| | |
| | Returns: |
| | nn.Module: Built model. |
| | """ |
| | package = cfg_path.split('::')[0] |
| | with DefaultScope.overwrite_default_scope(package): |
| | cfg = get_config(cfg_path, pretrained) |
| | if 'data_preprocessor' in cfg: |
| | cfg.model.data_preprocessor = cfg.data_preprocessor |
| | models_module = importlib.import_module(f'{package}.utils') |
| | models_module.register_all_modules() |
| | model = MODELS.build(cfg.model, default_args=kwargs) |
| | if pretrained: |
| | load_checkpoint(model, cfg.model_path) |
| | |
| | |
| | |
| | model._is_init = True |
| | return model |
| |
|