When I reach “Explore the Example Data” section It is not getting the data “No such file or directory”
import os
import zipfile
local_zip = './data/cats_and_dogs_filtered.zip'
zip_ref = zipfile.ZipFile(local_zip, 'r')
zip_ref.extractall('./data')
zip_ref.close()
I’m using colab. How to upload the data? I did upload the data folder to my drive where colab is running the .ipynb file but it didn’t see it.