2022-04-02 20:01:06 +08:00
|
|
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
2022-10-24 17:20:12 +08:00
|
|
|
from .bevformer_predictor import BEVFormerPredictor
|
2022-04-02 20:01:06 +08:00
|
|
|
from .classifier import TorchClassifier
|
2022-08-31 10:25:05 +08:00
|
|
|
from .detector import (DetectionPredictor, TorchFaceDetector,
|
2022-10-12 11:32:26 +08:00
|
|
|
TorchYoloXClassifierPredictor, TorchYoloXPredictor,
|
|
|
|
YoloXPredictor)
|
2022-08-25 16:57:37 +08:00
|
|
|
from .face_keypoints_predictor import FaceKeypointsPredictor
|
2022-04-02 20:01:06 +08:00
|
|
|
from .feature_extractor import (TorchFaceAttrExtractor,
|
|
|
|
TorchFaceFeatureExtractor,
|
|
|
|
TorchFeatureExtractor)
|
2022-08-31 10:25:05 +08:00
|
|
|
from .hand_keypoints_predictor import HandKeypointsPredictor
|
2022-11-22 18:58:55 +08:00
|
|
|
from .ocr import (OCRClsPredictor, OCRDetPredictor, OCRPredictor,
|
|
|
|
OCRRecPredictor)
|
2022-04-02 20:01:06 +08:00
|
|
|
from .pose_predictor import (TorchPoseTopDownPredictor,
|
|
|
|
TorchPoseTopDownPredictorWithDetector)
|
2022-09-20 10:04:42 +08:00
|
|
|
from .segmentation import Mask2formerPredictor, SegmentationPredictor
|
2023-01-10 17:33:35 +08:00
|
|
|
from .video_classifier import VideoClassificationPredictor
|
2022-09-26 17:37:52 +08:00
|
|
|
from .wholebody_keypoints_predictor import WholeBodyKeypointsPredictor
|