typeerror: object of type 'ndarray' is not json serializable
时间: 2023-04-30 08:04:25 浏览: 279
(存入json文件出错)TypeError: Object of type int64 is not JSON serializable
5星 · 资源好评率100%
这个错误是因为尝试将类型为"ndarray"的对象转换为JSON格式时出现了问题。ndarray是numpy中的数组类型,而JSON只能序列化字符串、数值、布尔值、列表和字典等基本数据类型。需要将该对象转换为JSON可序列化的数据类型,例如将数组转换为列表。
阅读全文