ternaus / TernausNetV2

TernausNetV2: Fully Convolutional Network for Instance Segmentation

Home Page:http://openaccess.thecvf.com/content_cvpr_2018_workshops/papers/w4/Iglovikov_TernausNetV2_Fully_Convolutional_CVPR_2018_paper.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

runtime error: CUDNN_STATUS_MAPPING_ERROR

HIWFSS opened this issue · comments

commented

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()