np.object
was a deprecated alias for the builtin object
. To avoid this error in existing code, use object
by itself. Doing this will not modify any behavior and is safe.
高版本的numpy np.object弃用了,把np.object改成object,或者降低numpy版本
module ‘numpy‘ has no attribute ‘object‘.
最新推荐文章于 2024-07-28 22:19:59 发布
高版本的numpy库不再支持np.object,将其替换为内置的object类型是安全的,这不会改变代码行为。另一种解决方案是将numpy版本降低到不包含此弃用警告的版本。开发者应当更新他们的代码以避免未来出现错误。
摘要由CSDN通过智能技术生成