TernausNetV2
TernausNetV2 copied to clipboard
runtime error: CUDNN_STATUS_MAPPING_ERROR
When I execute “prediction = F.sigmoid(model(input_img)).data[0].cpu().numpy()” is reporting error “runtime error: CUDNN_STATUS_MAPPING_ERROR”,what should I do ? thank you very much!
its using PyTorch 0.4, try instead: prediction = torch.sigmoid(model(input_img)).item()