摘要: 原因在于np.int在numpy1.20已经被废弃掉了,具体可以参考:https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations 修改方法: 将 np.int 改为 np.int_ 或者 np.int32 或者 np.int64  阅读全文
posted @ 2021-09-29 17:48 CrazyJhq 阅读(18630) 评论(0) 推荐(3) 编辑