[开发技巧]·h5文件读取失败分析-OSError:Unable to open file (file signature not found)

[开发技巧]·h5文件读取失败分析-OSError:Unable to open file (file signature not found)

 

使用keras在加载网络网络参数的时候出现这个问题

File "h5py\h5f.pyx", line 78, in h5py.h5f.open
OSError: Unable to open file (file signature not found)

当换个h5文件的时候就正常了,考虑可能是之前的h5文件没有保存成功。

检查一下文件大小,证实了自己猜想,同样的网络大小却不同。


原因可能h5保存时因为一些原因保存失败了,在进行读取时会验证完整性签名信息(file signature not found)。验证失败了,无法读取。

以后大家遇到这个问题时,首先确认一下h5文件是否是完整正确的。

怎么确认呢?可以从h5文件的来源和文件大小做个简单判断。

hope this helps

 

你可能感兴趣的:(深度学习,Python工具类,开发技巧)