You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I was copying data from Google Drive to Colab OOM happened, which could cause the whole page crash. A possible solution is to remount Google Drive, but most time I have to reload the whole program.
for i in range(len(file_ls) - 1):
# Copy files to temp directory
temp_files = []
for file in tf_files[file_ls[i] : file_ls[i + 1]]:
dest = shutil.copy(file, temp_dir)
temp_files.append(dest)
The text was updated successfully, but these errors were encountered:
As noted in that other issue, this appears to be separate from the Transport Endpoint Not Connected issue, as that one did not involve OOM-ing.
We can't diagnose with just that code snippet. How much data are you trying to copy? Can you copy just a few files at a time and process them instead of trying to copy all of them first?
The text was updated successfully, but these errors were encountered: