如何在Colab中解压缩图像文件夹

时间:2019-12-19 11:11:33

标签: python deep-learning

我想在包含大约9000张图像的Devanagari数据集上训练深度学习模型。由于数据集很大,因此我要使用Google colab,因为它支持GPU。我将文件夹从本地计算机上传到Zip格式的Colab。但是在解压缩文件时发生错误。

    from google.colab import files

uploaded = files.upload()

for fn in uploaded.keys():
  print('User uploaded file "{name}" with length {length} bytes'.format(
      name=fn, length=len(uploaded[fn])))

当我尝试按照以下步骤解压缩文件

unzip devanagari-character-dataset.zip  

我有以下错误。

      File "<ipython-input-8-92b289004693>", line 1
        unzip devanagari-character-dataset.zip
                       ^

SyntaxError: invalid syntax

如何解决上述问题。

1 个答案:

答案 0 :(得分:0)

import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
    zip_ref.extractall(directory_to_extract_to)