mmclassification/mmpretrain/apis/__init__.py

9 lines
310 B
Python
Raw Normal View History

# Copyright (c) OpenMMLab. All rights reserved.
from .inference import ImageClassificationInferencer, inference_model
from .model import ModelHub, get_model, init_model, list_models
2020-05-21 21:21:43 +08:00
__all__ = [
'init_model', 'inference_model', 'list_models', 'get_model', 'ModelHub',
'ImageClassificationInferencer'
]