2022-04-02 20:01:06 +08:00
|
|
|
# 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 *
|
2022-05-11 17:44:06 +08:00
|
|
|
from .detection import *
|
2022-04-02 20:01:06 +08:00
|
|
|
from .heads import *
|
|
|
|
from .loss import *
|
|
|
|
from .pose import TopDown
|
|
|
|
from .registry import BACKBONES, HEADS, LOSSES, MODELS, NECKS
|
2022-05-31 20:19:17 +08:00
|
|
|
from .segmentation import *
|
2022-04-02 20:01:06 +08:00
|
|
|
from .selfsup import *
|