Spaces:
Runtime error
Runtime error
File size: 253 Bytes
3094730 |
1 2 3 4 5 6 7 8 |
# Copyright (c) OpenMMLab. All rights reserved.
from mmdeploy.codebase.base import MMCodebase
from .models import * # noqa: F401,F403
from .object_detection import MMYOLO, YOLOObjectDetection
__all__ = ['MMCodebase', 'MMYOLO', 'YOLOObjectDetection']
|