DCT-Mask运行问题记录

DCT-Mask运行问题记录

  1. 找不到coco数据集
[Errno 2] No such file or directory: 'datasets/coco/annotations/instances_train2017.json'

在DCT文件下创造软连接

ln -s datasets
  1. 找不到R-50.pkl文件
    手动把config/DCT里的weights替换为本地下载的R-50.pkl
  2. torch.rfft找不到
    修改为
torch.fft.fft()
Vc = torch.stack((Vc.real, Vc.imag), -1)

torch.irfft也要更新一下

v=torch.fft.ifft(torch.complex(V[...,0],V[...,1]),dim=1)

这是因为新旧版本的fft函数有变化
新旧版本fft函数变化
新旧版本fft函数变化2

你可能感兴趣的:(深度学习,tensorflow,pytorch)