mirror of https://github.com/alibaba/EasyCV.git
12 lines
402 B
Python
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 *
|