pycharm中运行pytorch程序不会停止

在windows7系统下安装pytorch以后运行程序,发现即使是最后一行是

print(‘hello’)

结果出来以后,程序还是没有停止,显示正在运行的状态。经过查找资料,发现原来是因为pytorch在win7bug的原因。

因为没在csdn上找到相关资料,故在此记录一下。

 

原贴:https://segmentfault.com/q/1010000023865125

 

总结
这个问题,根据网上的资料,好像是Pytorch在window 7上特有的bug。

依据参考文献2,网友的说法,使用CPU训练, PyTorch 1.6.0, Python 3.7.5, Windows 7 x64 的运行环境下,仍然有这个问题。大伙按照修改pytorch版本的思路解决问题的话,可以尝试pytorch 1.6以上的版本。

其它的操作系统,这个问题可以通过安装高版本的pytorch来解决。

目前,我没有啥好的解决方法处理本问题,大伙有好的解决思路可以分享下。

参考文献
[1] https://discuss.pytorch.org/t... (Pytorch code can't stop - PyTorch Forums)
[2] https://github.com/pytorch/py... (Call to backward() obstructs script from terminating (maybe related to Windows 7) · Issue #29383 · pytorch/pytorch · GitHub)
[3] https://github.com/pytorch/py... (loss.backward() keeps running for hours · Issue #33804 · pytorch/pytorch · GitHub)
[4] https://stackoverflow.com/que... (python - pytorch autograd obstructs script from terminating - Stack Overflow)
[5] https://blog.csdn.net/weixin_... ((4条消息)pytorch程序运行结束后不释放进程_weixin_45885232的博客-CSDN博客)
[6] https://www.cnblogs.com/ymjyq... (pytorch GPU的程序kill后未释放内存)

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