__init__.py 489 Bytes
Newer Older
dongchy920's avatar
dongchy920 committed
1
2
3
4
5
6
7
8
9
10
11
# Copyright (c) OpenMMLab. All rights reserved.
from .architectures import *  # noqa: F401, F403
from .builder import MODELS, MODULES, build_model, build_module
from .common import *  # noqa: F401, F403
from .diffusions import *  # noqa: F401, F403
from .gans import *  # noqa: F401, F403
from .losses import *  # noqa: F401, F403
from .misc import *  # noqa: F401, F403
from .translation_models import *  # noqa: F401, F403

__all__ = ['build_model', 'MODELS', 'build_module', 'MODULES']