Created
April 15, 2021 02:53
-
-
Save suemnjeri/3364c254d053cb4b36ad6aa236e936c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !wget --no-check-certificate \ | |
| "https://github.com/laxmimerit/dog-cat-full-dataset/archive/refs/heads/master.zip" \ | |
| -O "/tmp/cats-and-dogs.zip" | |
| zip_ref = zipfile.ZipFile('/tmp/cats-and-dogs.zip', 'r') #Opens the zip file in read mode | |
| zip_ref.extractall('/tmp') #Extracts the files into the /tmp folder | |
| zip_ref.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment