无法读取Google Colab中的.7z文件

时间:2018-11-15 08:35:54

标签: tensorflow keras neural-network deep-learning google-colaboratory

我正在使用Google Colab创建深度学习模型,并且在第一次运行此代码时遇到一个问题。

!p7zip -d filename.7z

我收到以下消息:

/usr/bin/p7zip: cannot read filename.7z

但是,当我再次重新运行同一单元格时,代码起作用了。

您知道此问题的原因吗?

1 个答案:

答案 0 :(得分:0)

首先,您必须在文件名之前指定路径 就我而言

!mkdir ~/data
!cd ~/data
!mkdir planet
!cd planet

# -c: competition name
# -f: which file you want to download
# -p: path to where the file should be saved
!kaggle competitions download -c planet-understanding-the-amazon-from-space -f train-jpg.tar.7z -p ~/data/planet/

# Unzip the 7zip files
# -d: which file to un7zip
!p7zip -d ~/data/planet/test-jpg.tar.7z