Google Colaboratory : OSError: [Errno 5] Input/output error
09:00 02 May 2019

I am using Google Colaboratory, and mounting Google Drive. When I access a csv file, it gets me the following error:

OSError: [Errno 5] Input/output error.

This did not happen before.

How can I access to the csv file as I used to?

I have tried this, but did not work:

Input/output error while using google colab with google drive

This happened after conducting the following code.

for segment_id in tqdm(range(segment_num)):
  with h5py.File(os.path.join(INPUT_PATH, "train.h5"), "r") as f:
    train_answers.append(f['time_to_failure'][segment_id*segment_interval + SEGMENT_LENGTH])

The tqdm bar progressed until 37%, and than gave the following error.

OSError: Unable to open file (file read failed: time = Thu May 2 14:14:09 2019 , filename = './drive/My Drive/Kaggle/LANL-Earthquake-Prediction/input/train.h5', file descriptor = 74, errno = 5, error message = 'Input/output error', buf = 0x7ffc31926d00, total read size = 8, bytes this sub-read = 8, bytes actually read = 18446744073709551615, offset = 0)

Since then, large files like train.csv(9GB), which is on Google Drive cannot be read from Google Colaboratory. It gives the following error.

OSError: [Errno 5] Input/output error

Does anyone have a same problem?

Does anyone know how to solve this?

python-3.x pandas google-colaboratory