diff --git a/ppdet/utils/download.py b/ppdet/utils/download.py index ee8a0eaedf0b3d995ca50ef507093eadd1b84040..00c3ec8c5a2ee46ea696ce9bfca04a28587f9210 100644 --- a/ppdet/utils/download.py +++ b/ppdet/utils/download.py @@ -74,6 +74,7 @@ DATASETS = { 'fruit': ([( 'https://dataset.bj.bcebos.com/PaddleDetection_demo/fruit-detection.tar', 'ee4a1bf2e321b75b0850cc6e063f79d7', ), ], ["fruit-detection"]), + 'objects365': (), } DOWNLOAD_RETRY_LIMIT = 3 @@ -104,8 +105,11 @@ def get_dataset_path(path, annotation, image_dir): if os.path.split(path.strip().lower())[-1] == name: logger.info("Parse dataset_dir {} as dataset " "{}".format(path, name)) + if name == 'objects365': + raise NotImplementedError( + "Dataset {} is not valid for download automatically. Please apply and download the dataset from https://www.objects365.org/download.html". + format(name)) data_dir = osp.join(DATASET_HOME, name) - # For voc, only check dir VOCdevkit/VOC2012, VOCdevkit/VOC2007 if name == 'voc': exists = True