During the code execution, several versions of functions have been updated. After debugging, it wa found that there was an error in this part. I don't know how to modify it.
try:
import torch
from torch.nn.functional import upsample
except Exception as e:
print("Incompatible version between pytorch, cuda and python.\n" +
"Knowing working version combinations are\n: Cuda 10.0, pytorch 1.0.0, python 3.6.8" + str(e))
When my code reaches this, it shows an error and exits the run.
Thanks!