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-10-24 17:20:12 +08:00
|
|
|
from .detection3d import *
|
2022-08-25 16:57:37 +08:00
|
|
|
from .face import *
|
2022-04-02 20:01:06 +08:00
|
|
|
from .heads import *
|
|
|
|
from .loss import *
|
2022-09-28 14:03:16 +08:00
|
|
|
from .ocr import *
|
2022-04-02 20:01:06 +08:00
|
|
|
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 *
|
2023-01-10 17:33:35 +08:00
|
|
|
from .video_recognition import *
|