mirror of
https://github.com/alibaba/EasyCV.git
synced 2025-06-03 14:49:00 +08:00
10 lines
552 B
Python
10 lines
552 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
from . import (classification, detection, detection3d, face, ocr, pose,
|
|
segmentation, selfsup, shared)
|
|
from .builder import (build_dali_dataset, build_dataset, build_datasource,
|
|
build_sampler)
|
|
from .loader import (DistributedGivenIterationSampler, DistributedGroupSampler,
|
|
DistributedMPSampler, DistributedSampler, GroupSampler,
|
|
RASampler, build_dataloader)
|
|
from .registry import DATASETS, DATASOURCES, PIPELINES, SAMPLERS
|