AttributeError: type object 'numpy.int64' has no attribute 'interp1d'
时间: 2023-10-29 22:45:12 浏览: 131
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是由于 numpy.int64 这个对象没有 interp1d 这个属性导致的。interp1d 是一个函数,但这个函数只能被 numpy 中的数组调用。所以如果你尝试在一个 numpy.int64 对象上调用 interp1d 函数,就会出现 AttributeError 这个错误。如果你需要使用这个函数,你需要对正确的 numpy 数组进行调用。
阅读全文