当试图腌制 numpy 中定义的对象 Inf 时(我认为),转储正常,但加载失败:
>>> cPickle.dump(Inf, file("c:/temp/a.pcl",'wb'))
>>> cPickle.load(file("c:/temp/a.pcl",'rb'))
Traceback (most recent call last):
File "<pyshell#257>", line 1, in <module>
cPickle.load(file("c:/temp/a.pcl",'rb'))
ValueError: could not convert string to float
>>> type(Inf)
<type 'float'>
这是为什么?而且 - 有没有办法解决这个问题?我想腌制有 Inf 的东西——把它改成别的东西会破坏程序的优雅......
谢谢