本文整理汇总了Python中download.maybe_download_and_extract方法的典型用法代码示例。如果您正苦于以下问题:Python download.maybe_download_and_extract方法的具体用法?Python download.maybe_download_and_extract怎么用?Python download.maybe_download_and_extract使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类download
的用法示例。
在下文中一共展示了download.maybe_download_and_extract方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: maybe_download_and_extract
# 需要导入模块: import download [as 别名]
# 或者: from download import maybe_download_and_extract [as 别名]
def maybe_download_and_extract():
"""
Download and extract the CIFAR-10 data-set if it doesn't already exist
in data_path (set this variable first to the desired path).
"""
download.maybe_download_and_extract(url=data_url, download_dir=data_path)
示例2: maybe_download
# 需要导入模块: import download [as 别名]
# 或者: from download import maybe_download_and_extract [as 别名]
def maybe_download():
"""
Download the Inception model from the internet if it does not already
exist in the data_dir. The file is about 85 MB.
"""
print("Downloading Inception v3 Model ...")
download.maybe_download_and_extract(url=data_url, download_dir=data_dir)
########################################################################
示例3: maybe_download_and_extract
# 需要导入模块: import download [as 别名]
# 或者: from download import maybe_download_and_extract [as 别名]
def maybe_download_and_extract():
"""
Download and extract the IMDB Review data-set if it doesn't already exist
in data_dir (set this variable first to the desired directory).
"""
download.maybe_download_and_extract(url=data_url, download_dir=data_dir)
示例4: maybe_download
# 需要导入模块: import download [as 别名]
# 或者: from download import maybe_download_and_extract [as 别名]
def maybe_download():
"""
Download the Inception model from the internet if it does not already
exist in the data_dir. The file is about 85 MB.
"""
# print("Downloading Inception v3 Model ...")
download.maybe_download_and_extract(url=data_url, download_dir=data_dir)
########################################################################
示例5: maybe_download
# 需要导入模块: import download [as 别名]
# 或者: from download import maybe_download_and_extract [as 别名]
def maybe_download(self):
"""
Download and extract the CIFAR-100 data-set if it doesn't already exist
in data_path (set this variable first to the desired path).
"""
download.maybe_download_and_extract(url=self.data_url, download_dir=self.data_dir)