EasyCV/easycv/models/__init__.py
Cathy0908 b5fb2b70c7
[feature]: support mmdet models config (#25)
* support mmdet models

* add mmlab_models_usage_guide.md

* remove tools/test.py
2022-05-11 17:44:06 +08:00

11 lines
374 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
from .backbones import * # noqa: F401,F403
from .builder import build_backbone, build_head, build_loss, build_model
from .classification import *
from .detection import *
from .heads import *
from .loss import *
from .pose import TopDown
from .registry import BACKBONES, HEADS, LOSSES, MODELS, NECKS
from .selfsup import *