I generated a dataset about 7 hours and saved it as
np.savez("/content/gdrive/My Drive/allc.npz", all=all, lab=lab)
Then, I opened and check the file
d=np.load("/content/gdrive/My Drive/allc.npz")
all=d["all"]
l=d["lab"]
all.shape
And, it worked perfectly
But, today, i opened the file using np.load it shows
BadZipFile: File is not a zip file
What is happened and what to do. Any suggestion
Thank you