| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from importlib import import_module
- from .anomaly_detection import UadDatasetChecker, UadEvaluator, UadExportor, UadTrainer
- from .base import build_dataset_checker, build_evaluater, build_exportor, build_trainer
- from .face_recognition import (
- FaceRecDatasetChecker,
- FaceRecEvaluator,
- FaceRecExportor,
- FaceRecTrainer,
- )
- from .general_recognition import (
- ShiTuRecDatasetChecker,
- ShiTuRecEvaluator,
- ShiTuRecExportor,
- ShiTuRecTrainer,
- )
- from .image_classification import (
- ClsDatasetChecker,
- ClsEvaluator,
- ClsExportor,
- ClsTrainer,
- )
- from .instance_segmentation import (
- COCOInstSegDatasetChecker,
- InstanceSegEvaluator,
- InstanceSegExportor,
- InstanceSegTrainer,
- )
- from .keypoint_detection import (
- KeypointDatasetChecker,
- KeypointEvaluator,
- KeypointExportor,
- KeypointTrainer,
- )
- from .m_3d_bev_detection import (
- BEVFusionDatasetChecker,
- BEVFusionEvaluator,
- BEVFusionExportor,
- BEVFusionTrainer,
- )
- from .multilabel_classification import (
- MLClsDatasetChecker,
- MLClsEvaluator,
- MLClsExportor,
- MLClsTrainer,
- )
- from .multilingual_speech_recognition import (
- WhisperDatasetChecker,
- WhisperEvaluator,
- WhisperExportor,
- WhisperTrainer,
- )
- from .object_detection import COCODatasetChecker, DetEvaluator, DetExportor, DetTrainer
- from .semantic_segmentation import (
- SegDatasetChecker,
- SegEvaluator,
- SegExportor,
- SegTrainer,
- )
- from .table_recognition import (
- TableRecDatasetChecker,
- TableRecEvaluator,
- TableRecExportor,
- TableRecTrainer,
- )
- from .text_detection import (
- TextDetDatasetChecker,
- TextDetEvaluator,
- TextDetExportor,
- TextDetTrainer,
- )
- from .text_recognition import (
- TextRecDatasetChecker,
- TextRecEvaluator,
- TextRecExportor,
- TextRecTrainer,
- )
- from .ts_anomaly_detection import (
- TSADDatasetChecker,
- TSADEvaluator,
- TSADExportor,
- TSADTrainer,
- )
- from .ts_classification import (
- TSCLSDatasetChecker,
- TSCLSEvaluator,
- TSCLSExportor,
- TSCLSTrainer,
- )
- from .ts_forecast import TSFCDatasetChecker, TSFCEvaluator, TSFCTrainer
- from .video_classification import (
- VideoClsDatasetChecker,
- VideoClsEvaluator,
- VideoClsExportor,
- VideoClsTrainer,
- )
- from .video_detection import (
- VideoDetDatasetChecker,
- VideoDetEvaluator,
- VideoDetExportor,
- VideoDetTrainer,
- )
|