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

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

W
wuzewu 已提交
23 24 25 26 27
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 已提交
28 29

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

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

W
wuzewu 已提交
47
    def execute(self, argv):
W
wuzewu 已提交
48
        if not argv:
49
            print("ERROR: Please provide the model/module name\n")
W
wuzewu 已提交
50 51
            self.help()
            return False
52 53 54
        mod_name = argv[0]
        mod_version = None if "==" not in mod_name else mod_name.split("==")[1]
        mod_name = mod_name if "==" not in mod_name else mod_name.split("==")[0]
W
wuzewu 已提交
55
        self.args = self.parser.parse_args(argv[1:])
56
        self.args.type = self.check_type(self.args.type)
W
wuzewu 已提交
57

S
shenyuhan 已提交
58
        extra = {"command": "download"}
59 60
        if self.args.type in ["Module", "Model"]:
            search_result = default_hub_server.get_resource_url(
S
shenyuhan 已提交
61 62 63 64
                mod_name,
                resource_type=self.args.type,
                version=mod_version,
                extra=extra)
65 66
        else:
            search_result = default_hub_server.get_resource_url(
S
shenyuhan 已提交
67 68 69 70
                mod_name,
                resource_type="Module",
                version=mod_version,
                extra=extra)
S
Steffy-zxf 已提交
71
            self.args.type = "Module"
72 73
            if search_result == {}:
                search_result = default_hub_server.get_resource_url(
S
shenyuhan 已提交
74 75 76 77
                    mod_name,
                    resource_type="Model",
                    version=mod_version,
                    extra=extra)
S
Steffy-zxf 已提交
78
                self.args.type = "Model"
W
wuzewu 已提交
79 80
        url = search_result.get('url', None)
        except_md5_value = search_result.get('md5', None)
W
wuzewu 已提交
81
        if not url:
S
Steffy-zxf 已提交
82 83
            tips = "PaddleHub can't find model/module named %s" % mod_name
            if mod_version:
84
                tips += " with version %s" % mod_version
S
Steffy-zxf 已提交
85
            tips += ". Please use the 'hub search' command to find the correct model/module name."
W
wuzewu 已提交
86
            print(tips)
W
wuzewu 已提交
87
            return True
W
wuzewu 已提交
88

W
wuzewu 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
        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 已提交
104
            result, tips, file = default_downloader.download_file(
105
                url=url, save_path=self.args.output_path, print_progress=True)
W
wuzewu 已提交
106 107 108 109 110 111 112 113
            if not result:
                print(tips)
                return False

        if self.args.uncompress:
            result, tips, file = default_downloader.uncompress(
                file=file,
                dirname=self.args.output_path,
S
Steffy-zxf 已提交
114
                delete_file=True,
W
wuzewu 已提交
115 116
                print_progress=True)
            print(tips)
S
Steffy-zxf 已提交
117 118
            if self.args.type == "Model":
                os.rename(file, "./" + mod_name)
W
wuzewu 已提交
119
        return True
W
wuzewu 已提交
120

121 122 123 124 125 126 127 128 129 130
    def check_type(self, mod_type):
        mod_type = mod_type.lower()
        if mod_type == "module":
            mod_type = "Module"
        elif mod_type == "model":
            mod_type = "Model"
        else:
            mod_type = "All"
        return mod_type

W
wuzewu 已提交
131 132

command = DownloadCommand.instance()