Lesson 8 - 01_matmul notebook - EOFError: Ran out of input

I’m having trouble when attempting to unzip the mnist file with :
with gzip.open(path, 'rb') as f:
((x_train, y_train), (x_valid, y_valid), _) = pickle.load(f, encoding='latin-1')

it returns an EOFError: Ran out of input error but I just can’t figure out after googling and stacking what’s wrong.

I’m having the same error when trying to use the get_data() method on the “02_fully_connected” notebook

I’m working on windows 10 but I’m not sure if it’s an OS problem,

Anybody had this problem too ?

Solved the issue… The downloaded mnist pickle file was at 0 byte so I’ve just deleted it and re-downloaded it