RCAN在python3+pytorch1.1.0问题

问题1:ImportError: cannot import name '_update_worker_pids'

查看这个大佬博客得知,是pytorch版本问题,参考其博客中 1,5,6,7点修改dataloader.py文件

 

问题2:ImportError: cannot import name '_worker_manager_loop' from 'torch.utils.data.dataloader'

不出意外【点这里】,又是版本问题。。。。

 

问题3:module 'scipy.misc' has no attribute 'imread'

这个问题是因为scipy版本问题,需要安装1.2.1版本【这里】

pip install scipy==1.2.1 # 日期 2019.11.09, pip安装一直失败

or

conda install scipy==1.2.1

 

你可能感兴趣的:(pytorch,python)