download.py 3.7 KB
Newer Older
W
wuzewu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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
W
wuzewu 已提交
18

W
wuzewu 已提交
19
import argparse
W
wuzewu 已提交
20
import os
W
wuzewu 已提交
21

W
wuzewu 已提交
22 23 24 25 26
from paddlehub.common import utils
from paddlehub.common.downloader import default_downloader
from paddlehub.common.hub_server import default_hub_server
from paddlehub.commands.base_command import BaseCommand, ENTRY

W
wuzewu 已提交
27 28

class DownloadCommand(BaseCommand):
W
wuzewu 已提交
29 30 31 32 33
    name = "download"

    def __init__(self, name):
        super(DownloadCommand, self).__init__(name)
        self.show_in_help = True
Z
Zeyu Chen 已提交
34
        self.description = "Download PaddlePaddle pretrained model files."
W
wuzewu 已提交
35 36
        self.parser = self.parser = argparse.ArgumentParser(
            description=self.__class__.__doc__,
37
            prog='%s %s <model_name>' % (ENTRY, name),
W
wuzewu 已提交
38 39
            usage='%(prog)s [options]',
            add_help=False)
W
wuzewu 已提交
40
        # yapf: disable
W
wuzewu 已提交
41
        self.add_arg('--output_path',  str,  ".",   "path to save the model" )
W
wuzewu 已提交
42 43
        self.add_arg('--uncompress',   bool, False,  "uncompress the download package or not" )
        # yapf: enable
W
wuzewu 已提交
44 45

    def exec(self, argv):
W
wuzewu 已提交
46
        if not argv:
W
wuzewu 已提交
47
            print("ERROR: Please specify a model name\n")
W
wuzewu 已提交
48 49
            self.help()
            return False
W
wuzewu 已提交
50 51
        model_name = argv[0]
        model_version = None if "==" not in model_name else model_name.split(
W
wuzewu 已提交
52
            "==")[1]
W
wuzewu 已提交
53
        model_name = model_name if "==" not in model_name else model_name.split(
W
wuzewu 已提交
54
            "==")[0]
W
wuzewu 已提交
55
        self.args = self.parser.parse_args(argv[1:])
W
wuzewu 已提交
56 57 58 59
        if not self.args.output_path:
            self.args.output_path = "."
        utils.check_path(self.args.output_path)

W
wuzewu 已提交
60
        search_result = default_hub_server.get_model_url(
W
wuzewu 已提交
61
            model_name, version=model_version)
W
wuzewu 已提交
62 63
        url = search_result.get('url', None)
        except_md5_value = search_result.get('md5', None)
W
wuzewu 已提交
64
        if not url:
W
wuzewu 已提交
65 66 67
            tips = "can't found model %s" % model_name
            if model_version:
                tips += " with version %s" % model_version
W
wuzewu 已提交
68
            print(tips)
W
wuzewu 已提交
69
            return True
W
wuzewu 已提交
70

W
wuzewu 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        need_to_download_file = True
        file_name = os.path.basename(url)
        file = os.path.join(self.args.output_path, file_name)
        if os.path.exists(file):
            print("File %s already existed\nWait to check the MD5 value" %
                  file_name)
            file_md5_value = utils.md5_of_file(file)
            if except_md5_value == file_md5_value:
                print("MD5 check pass.")
                need_to_download_file = False
            else:
                print("MD5 check failed!\nDelete invalid file.")
                os.remove(file)

        if need_to_download_file:
W
wuzewu 已提交
86
            result, tips, file = default_downloader.download_file(
87
                url=url, save_path=self.args.output_path, print_progress=True)
W
wuzewu 已提交
88 89 90 91 92 93 94 95
            if not result:
                print(tips)
                return False

        if self.args.uncompress:
            result, tips, file = default_downloader.uncompress(
                file=file,
                dirname=self.args.output_path,
W
wuzewu 已提交
96
                delete_file=True,
W
wuzewu 已提交
97 98
                print_progress=True)
            print(tips)
W
wuzewu 已提交
99
        return True
W
wuzewu 已提交
100 101 102


command = DownloadCommand.instance()