EasyCV/easycv/models/__init__.py
Cathy0908 4c1b3145e6
[feature] add segmentation modules (#71)
* add segmentation module & add ResNetV1c & ResNetV1d & add benchmark
2022-05-31 20:19:17 +08:00

12 lines
402 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 .segmentation import *
from .selfsup import *