Skip to content

Commit

Permalink
fix download.py (PaddlePaddle#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
heavengate authored Nov 1, 2019
1 parent 7ad69cc commit a69ca0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ppdet/utils/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
import logging
logger = logging.getLogger(__name__)

__all__ = ['get_weights_path', 'get_dataset_path']
__all__ = ['get_weights_path', 'get_dataset_path', 'download_dataset', 'create_voc_list']

WEIGHTS_HOME = osp.expanduser("~/.cache/paddle/weights")
DATASET_HOME = osp.expanduser("~/.cache/paddle/dataset")

# dict of {dataset_name: (download_info, sub_dirs)}
# download info: (url, md5sum)
# download info: [(url, md5sum)]
DATASETS = {
'coco': ([
(
Expand Down

0 comments on commit a69ca0e

Please sign in to comment.