fchollet / deep-learning-with-python-notebooks

Jupyter notebooks for the code samples of the book "Deep Learning with Python"
MIT License
17.95k stars 8.48k forks source link

Unziping dogs-vs-cats dataset in colab #202

Open kriaz100 opened 2 years ago

kriaz100 commented 2 years ago

Consider the code below, taken from notebook for chapter 8 (computer vision) Downloading the data

!kaggle competitions download -c dogs-vs-cats !unzip -qq train.zip

Before runninng the last command !unzip train.zip, should we not have to run: !unzip -qq dogs-vs-cats.zip ?

Thank you.