Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

BadZipFile: File is not a zip by importing keras

When I run this code, I got the following error. I have tried different techniques to get rid of this problem but couldn't.

May I request to someone who can help me to solve this issue. There are some solutions to the same problem but I couldn't get theirs points to fix it.

import numpy

from keras.datasets import imdb
(X_train, y_train), (X_test, y_test) = imdb.load_data()

X = numpy.concatenate((X_train, X_test), axis=0)

y = numpy.concatenate((y_train, y_test), axis=0)

Using Theano backend.

BadZipFile    
/home/maaz/anaconda3/lib/python3.6/zipfile.py in _RealGetContents(self)
   1165             raise BadZipFile("File is not a zip file")
   1166         if not endrec:
-> 1167             raise BadZipFile("File is not a zip file")
   1168         if self.debug > 1:
   1169             print(endrec)

BadZipFile: File is not a zip file                            Traceback (most recent call 

BadZipFile: File is not a zip file
like image 978
Newroz Avatar asked Dec 14 '22 23:12

Newroz


1 Answers

This could have happened when a previous download has stopped for some reason resulting in a bad zip file in keras cache. Try cleaning the keras dataset cache: rm ~/.keras/datasets/*

like image 68
Nadav Parag Avatar answered Jan 19 '23 08:01

Nadav Parag