download.py 13.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
#   Copyright (c) 2019 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 __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
import os.path as osp
import shutil
import requests
import tqdm
import hashlib
import tarfile
import zipfile

K
Kaipeng Deng 已提交
28
from .voc_utils import create_list
29 30 31 32

import logging
logger = logging.getLogger(__name__)

33 34 35 36
__all__ = [
    'get_weights_path', 'get_dataset_path', 'download_dataset',
    'create_voc_list'
]
37 38 39 40

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

K
Kaipeng Deng 已提交
41
# dict of {dataset_name: (download_info, sub_dirs)}
K
Kaipeng Deng 已提交
42
# download info: [(url, md5sum)]
43 44
DATASETS = {
    'coco': ([
W
wangguanzhong 已提交
45 46 47 48 49 50 51 52 53
        (
            'http://images.cocodataset.org/zips/train2017.zip',
            'cced6f7f71b7629ddf16f17bbcfab6b2', ),
        (
            'http://images.cocodataset.org/zips/val2017.zip',
            '442b8da7639aecaf257c1dceb8ba8c80', ),
        (
            'http://images.cocodataset.org/annotations/annotations_trainval2017.zip',
            'f4bbac642086de4f52a3fdda2de5fa2c', ),
54 55
    ], ["annotations", "train2017", "val2017"]),
    'voc': ([
W
wangguanzhong 已提交
56 57 58 59 60 61 62 63 64
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.tar',
            '6cd6e144f989b92b3379bac3b3de84fd', ),
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar',
            'c52e279531787c972589f7e41ab4ae64', ),
        (
            'http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar',
            'b6e924de25625d8de591ea690078ad9f', ),
K
Kaipeng Deng 已提交
65
    ], ["VOCdevkit/VOC2012", "VOCdevkit/VOC2007"]),
G
Guanghua Yu 已提交
66 67 68 69 70 71 72 73 74 75 76
    'wider_face': ([
        (
            'https://dataset.bj.bcebos.com/wider_face/WIDER_train.zip',
            '3fedf70df600953d25982bcd13d91ba2', ),
        (
            'https://dataset.bj.bcebos.com/wider_face/WIDER_val.zip',
            'dfa7d7e790efa35df3788964cf0bbaea', ),
        (
            'https://dataset.bj.bcebos.com/wider_face/wider_face_split.zip',
            'a4a898d6193db4b9ef3260a68bad0dc7', ),
    ], ["WIDER_train", "WIDER_val", "wider_face_split"]),
W
wangguanzhong 已提交
77
    'fruit': ([(
78 79 80
        'https://dataset.bj.bcebos.com/PaddleDetection_demo/fruit.tar',
        'baa8806617a54ccf3685fa7153388ae6', ), ],
              ['Annotations', 'JPEGImages']),
C
cnn 已提交
81 82 83 84 85 86
    'roadsign_voc': ([(
        'https://paddlemodels.bj.bcebos.com/object_detection/roadsign_voc.tar',
        '8d629c0f880dd8b48de9aeff44bf1f3e', ), ], ['annotations', 'images']),
    'roadsign_coco': ([(
        'https://paddlemodels.bj.bcebos.com/object_detection/roadsign_coco.tar',
        '49ce5a9b5ad0d6266163cd01de4b018e', ), ], ['annotations', 'images']),
W
wangguanzhong 已提交
87
    'objects365': (),
88 89 90 91 92 93 94 95 96
}

DOWNLOAD_RETRY_LIMIT = 3


def get_weights_path(url):
    """Get weights path from WEIGHT_HOME, if not exists,
    download it from url.
    """
K
Kaipeng Deng 已提交
97 98
    path, _ = get_path(url, WEIGHTS_HOME)
    return path
99 100


101
def get_dataset_path(path, annotation, image_dir):
102 103 104 105 106
    """
    If path exists, return path.
    Otherwise, get dataset path from DATASET_HOME, if not exists,
    download it.
    """
107
    if _dataset_exists(path, annotation, image_dir):
108 109
        return path

K
Kaipeng Deng 已提交
110
    logger.info("Dataset {} is not valid for reason above, try searching {} or "
111 112 113
                "downloading dataset...".format(
                    osp.realpath(path), DATASET_HOME))

114
    data_name = os.path.split(path.strip().lower())[-1]
115
    for name, dataset in DATASETS.items():
116
        if data_name == name:
Y
Yang Zhang 已提交
117 118
            logger.debug("Parse dataset_dir {} as dataset "
                         "{}".format(path, name))
W
wangguanzhong 已提交
119 120
            if name == 'objects365':
                raise NotImplementedError(
121 122 123
                    "Dataset {} is not valid for download automatically. "
                    "Please apply and download the dataset from "
                    "https://www.objects365.org/download.html".format(name))
124
            data_dir = osp.join(DATASET_HOME, name)
K
Kaipeng Deng 已提交
125
            # For voc, only check dir VOCdevkit/VOC2012, VOCdevkit/VOC2007
C
cnn 已提交
126
            if name == 'voc' or name == 'fruit' or name == 'roadsign_voc':
K
Kaipeng Deng 已提交
127 128 129 130 131 132 133 134
                exists = True
                for sub_dir in dataset[1]:
                    check_dir = osp.join(data_dir, sub_dir)
                    if osp.exists(check_dir):
                        logger.info("Found {}".format(check_dir))
                    else:
                        exists = False
                if exists:
135 136
                    return data_dir

K
Kaipeng Deng 已提交
137
            # voc exist is checked above, voc is not exist here
C
cnn 已提交
138
            check_exist = name != 'voc' and name != 'fruit' and name != 'roadsign_voc'
139
            for url, md5sum in dataset[0]:
K
Kaipeng Deng 已提交
140
                get_path(url, data_dir, md5sum, check_exist)
141

K
Kaipeng Deng 已提交
142
            # voc should create list after download
143
            if name == 'voc':
K
Kaipeng Deng 已提交
144
                create_voc_list(data_dir)
145 146 147
            return data_dir

    # not match any dataset in DATASETS
C
cnn 已提交
148 149 150 151 152
    raise ValueError(
        "Dataset {} is not valid and cannot parse dataset type "
        "'{}' for automaticly downloading, which only supports "
        "'voc' , 'coco', 'wider_face', 'fruit' and 'roadsign_voc' currently".
        format(path, osp.split(path)[-1]))
153 154


K
Kaipeng Deng 已提交
155
def create_voc_list(data_dir, devkit_subdir='VOCdevkit'):
Y
Yang Zhang 已提交
156
    logger.debug("Create voc file list...")
K
Kaipeng Deng 已提交
157
    devkit_dir = osp.join(data_dir, devkit_subdir)
158
    year_dirs = [osp.join(devkit_dir, x) for x in os.listdir(devkit_dir)]
K
Kaipeng Deng 已提交
159

K
Kaipeng Deng 已提交
160 161 162
    # NOTE: since using auto download VOC
    # dataset, VOC default label list should be used, 
    # do not generate label_list.txt here. For default
163
    # label, see ../data/source/voc.py
164
    create_list(year_dirs, data_dir)
Y
Yang Zhang 已提交
165
    logger.debug("Create voc file list finished")
K
Kaipeng Deng 已提交
166 167


168 169
def map_path(url, root_dir):
    # parse path after download to decompress under root_dir
170
    fname = osp.split(url)[-1]
171 172 173 174 175 176 177
    zip_formats = ['.zip', '.tar', '.gz']
    fpath = fname
    for zip_format in zip_formats:
        fpath = fpath.replace(zip_format, '')
    return osp.join(root_dir, fpath)


K
Kaipeng Deng 已提交
178
def get_path(url, root_dir, md5sum=None, check_exist=True):
179 180 181 182 183 184 185 186 187 188 189
    """ Download from given url to root_dir.
    if file or directory specified by url is exists under
    root_dir, return the path directly, otherwise download
    from url and decompress it, return the path.

    url (str): download url
    root_dir (str): root dir for downloading, it should be
                    WEIGHTS_HOME or DATASET_HOME
    md5sum (str): md5 sum of download package
    """
    # parse path after download to decompress under root_dir
190
    fullpath = map_path(url, root_dir)
191 192 193 194

    # For same zip file, decompressed directory name different
    # from zip file name, rename by following map
    decompress_name_map = {
K
Kaipeng Deng 已提交
195 196 197
        "VOCtrainval_11-May-2012": "VOCdevkit/VOC2012",
        "VOCtrainval_06-Nov-2007": "VOCdevkit/VOC2007",
        "VOCtest_06-Nov-2007": "VOCdevkit/VOC2007",
198 199 200 201
        "annotations_trainval": "annotations"
    }
    for k, v in decompress_name_map.items():
        if fullpath.find(k) >= 0:
202
            fullpath = osp.join(osp.split(fullpath)[0], v)
203

K
Kaipeng Deng 已提交
204 205 206
    exist_flag = False
    if osp.exists(fullpath) and check_exist:
        exist_flag = True
Y
Yang Zhang 已提交
207
        logger.debug("Found {}".format(fullpath))
208
    else:
K
Kaipeng Deng 已提交
209
        exist_flag = False
210
        fullname = _download(url, root_dir, md5sum)
K
Kaipeng Deng 已提交
211 212 213 214 215

        # new weights format which postfix is 'pdparams' not
        # need to decompress
        if osp.splitext(fullname)[-1] != '.pdparams':
            _decompress(fullname)
216

K
Kaipeng Deng 已提交
217
    return fullpath, exist_flag
218 219


K
Kaipeng Deng 已提交
220 221 222 223 224 225 226
def download_dataset(path, dataset=None):
    if dataset not in DATASETS.keys():
        logger.error("Unknown dataset {}, it should be "
                     "{}".format(dataset, DATASETS.keys()))
        return
    dataset_info = DATASETS[dataset][0]
    for info in dataset_info:
K
Kaipeng Deng 已提交
227
        get_path(info[0], path, info[1], False)
Y
Yang Zhang 已提交
228
    logger.debug("Download dataset {} finished.".format(dataset))
K
Kaipeng Deng 已提交
229 230


231
def _dataset_exists(path, annotation, image_dir):
232 233 234 235
    """
    Check if user define dataset exists
    """
    if not osp.exists(path):
Y
Yang Zhang 已提交
236 237
        logger.debug("Config dataset_dir {} is not exits, "
                     "dataset config is not valid".format(path))
238 239
        return False

240 241
    if annotation:
        annotation_path = osp.join(path, annotation)
C
cnn 已提交
242 243 244
        if not osp.exists(annotation_path):
            logger.error("Config dataset_dir {} is not exits!".format(path))

245
        if not osp.isfile(annotation_path):
C
cnn 已提交
246 247 248
            logger.warning("Config annotation {} is not a "
                           "file, dataset config is not "
                           "valid".format(annotation_path))
249 250 251
            return False
    if image_dir:
        image_path = osp.join(path, image_dir)
C
cnn 已提交
252 253 254
        if not osp.exists(image_path):
            logger.warning("Config dataset_dir {} is not exits!".format(path))

255
        if not osp.isdir(image_path):
Y
Yang Zhang 已提交
256 257 258
            logger.warning("Config image_dir {} is not a "
                           "directory, dataset config is not "
                           "valid".format(image_path))
259
            return False
260 261 262 263 264 265 266 267 268 269 270 271 272
    return True


def _download(url, path, md5sum=None):
    """
    Download from url, save to path.

    url (str): download url
    path (str): download to given path
    """
    if not osp.exists(path):
        os.makedirs(path)

273
    fname = osp.split(url)[-1]
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
    fullname = osp.join(path, fname)
    retry_cnt = 0

    while not (osp.exists(fullname) and _md5check(fullname, md5sum)):
        if retry_cnt < DOWNLOAD_RETRY_LIMIT:
            retry_cnt += 1
        else:
            raise RuntimeError("Download from {} failed. "
                               "Retry limit reached".format(url))

        logger.info("Downloading {} from {}".format(fname, url))

        req = requests.get(url, stream=True)
        if req.status_code != 200:
            raise RuntimeError("Downloading from {} failed with code "
                               "{}!".format(url, req.status_code))

K
Kaipeng Deng 已提交
291 292 293 294
        # For protecting download interupted, download to
        # tmp_fullname firstly, move tmp_fullname to fullname
        # after download finished
        tmp_fullname = fullname + "_tmp"
295
        total_size = req.headers.get('content-length')
K
Kaipeng Deng 已提交
296
        with open(tmp_fullname, 'wb') as f:
297 298 299 300 301 302 303 304 305 306
            if total_size:
                for chunk in tqdm.tqdm(
                        req.iter_content(chunk_size=1024),
                        total=(int(total_size) + 1023) // 1024,
                        unit='KB'):
                    f.write(chunk)
            else:
                for chunk in req.iter_content(chunk_size=1024):
                    if chunk:
                        f.write(chunk)
K
Kaipeng Deng 已提交
307
        shutil.move(tmp_fullname, fullname)
308 309 310 311 312 313 314 315

    return fullname


def _md5check(fullname, md5sum=None):
    if md5sum is None:
        return True

Y
Yang Zhang 已提交
316
    logger.debug("File {} md5 checking...".format(fullname))
317 318 319 320 321 322 323
    md5 = hashlib.md5()
    with open(fullname, 'rb') as f:
        for chunk in iter(lambda: f.read(4096), b""):
            md5.update(chunk)
    calc_md5sum = md5.hexdigest()

    if calc_md5sum != md5sum:
Y
Yang Zhang 已提交
324 325
        logger.warning("File {} md5 check failed, {}(calc) != "
                       "{}(base)".format(fullname, calc_md5sum, md5sum))
326 327 328 329 330 331 332 333 334 335 336 337 338 339
        return False
    return True


def _decompress(fname):
    """
    Decompress for zip and tar file
    """
    logger.info("Decompressing {}...".format(fname))

    # For protecting decompressing interupted,
    # decompress to fpath_tmp directory firstly, if decompress
    # successed, move decompress files to fpath and delete
    # fpath_tmp and remove download compress file.
340
    fpath = osp.split(fname)[0]
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
    fpath_tmp = osp.join(fpath, 'tmp')
    if osp.isdir(fpath_tmp):
        shutil.rmtree(fpath_tmp)
        os.makedirs(fpath_tmp)

    if fname.find('tar') >= 0:
        with tarfile.open(fname) as tf:
            tf.extractall(path=fpath_tmp)
    elif fname.find('zip') >= 0:
        with zipfile.ZipFile(fname) as zf:
            zf.extractall(path=fpath_tmp)
    else:
        raise TypeError("Unsupport compress file type {}".format(fname))

    for f in os.listdir(fpath_tmp):
        src_dir = osp.join(fpath_tmp, f)
        dst_dir = osp.join(fpath, f)
        _move_and_merge_tree(src_dir, dst_dir)

    shutil.rmtree(fpath_tmp)
    os.remove(fname)


def _move_and_merge_tree(src, dst):
    """
G
Guanghua Yu 已提交
366
    Move src directory to dst, if dst is already exists,
367 368 369 370
    merge src to dst
    """
    if not osp.exists(dst):
        shutil.move(src, dst)
371 372
    elif osp.isfile(src):
        shutil.move(src, dst)
373 374 375 376 377 378 379 380 381 382 383 384
    else:
        for fp in os.listdir(src):
            src_fp = osp.join(src, fp)
            dst_fp = osp.join(dst, fp)
            if osp.isdir(src_fp):
                if osp.isdir(dst_fp):
                    _move_and_merge_tree(src_fp, dst_fp)
                else:
                    shutil.move(src_fp, dst_fp)
            elif osp.isfile(src_fp) and \
                    not osp.isfile(dst_fp):
                shutil.move(src_fp, dst_fp)