9 lines
310 B
Python
9 lines
310 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
from .inference import ImageClassificationInferencer, inference_model
|
||
|
from .model import ModelHub, get_model, init_model, list_models
|
||
|
|
||
|
__all__ = [
|
||
|
'init_model', 'inference_model', 'list_models', 'get_model', 'ModelHub',
|
||
|
'ImageClassificationInferencer'
|
||
|
]
|