我生成了大约7个小时的数据集,并将其另存为
np.savez("/content/gdrive/My Drive/allc.npz", all=all, lab=lab)
然后,我打开并检查文件
d=np.load("/content/gdrive/My Drive/allc.npz")
all=d["all"]
l=d["lab"]
all.shape
而且效果很好
但是,今天,我使用np.load打开了文件,它显示了
BadZipFile: File is not a zip file
发生了什么事以及该怎么办。任何建议
谢谢