RuntimeError: unexpected EOF, expected 1447905 more bytes. The file might be corrupted.

目的:在用pytorch编译运行开源代码的时候,遇到RuntimeError: unexpected EOF, expected 1447905 more bytes. The file might be corrupted.问题,记录一下解决的方法。

配置完成后,在运行pytorch源码的时候,遇到
在这里插入图片描述从英文翻译来看,有一个文件不够完整。但是编译没有出现错误。需要找到这个不够完整的文件。所以溯源之前的操作,发现在运行代码的时候,下载一个model,中途自己中断了这个下载过程。
RuntimeError: unexpected EOF, expected 1447905 more bytes. The file might be corrupted._第1张图片需要找到上述的路径,把s2dnet_weights.pth删除。然后重新运行即可。

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