我想在包含大约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
如何解决上述问题。
答案 0 :(得分:0)
import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
zip_ref.extractall(directory_to_extract_to)