alterzero / RBPN-PyTorch

The project is an official implement of our CVPR2019 paper "Recurrent Back-Projection Network for Video Super-Resolution"

Home Page:https://alterzero.github.io/projects/RBPN.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Process finished with exit code -1073741819 (0xC0000005)

XY-boy opened this issue · comments

I encountered a problem, the python program did not report any errors, and directly showed that the process exited:
Process finished with exit code -1073741819 (0xC0000005)
.
Has anyone encountered the same problem? I would be grateful if I could be guided

Is there still a freeze somewhere before the error message?
Do you use Windows?
try the following "eval.py":

def eval():
    model.eval()
    count=1
    avg_psnr_predicted = 0.0
    for batch in testing_data_loader:
        input, target, neigbor, flow, bicubic = batch[0], batch[1], batch[2], batch[3], batch[4]

if __name__ == '__main__':	
        
        with torch.no_grad():

It is probably because your image is too short,try larger image. When I set num_work=0 in dataloader , I get the same result as yours, hope that can help you