You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
403 B
13 lines
403 B
# Copyright (c) OpenMMLab. All rights reserved.
|
|
import warnings
|
|
|
|
from .builder import DATASETS, PIPELINES
|
|
|
|
__all__ = ['DATASETS', 'PIPELINES']
|
|
|
|
warnings.simplefilter('once', DeprecationWarning)
|
|
warnings.warn(
|
|
'Registries (DATASETS, PIPELINES) have been moved to '
|
|
'mmpose.datasets.builder. Importing from '
|
|
'mmpose.models.registry will be deprecated in the future.',
|
|
DeprecationWarning)
|
|
|