TypeError Object of type int64 is not JSON serializable

TypeError: Object of type int64 is not JSON serializable


debug解析,在正常处理数据过程中,把模型预测结果,其他结构化数据转为str保存时,常常用到

json.dumps(),报错内容如标题所示。
请添加图片描述


原因:json.dumps()不能解析int64,需要将int64转为int,一般我们直接使用numpy结果会导致这个报错。

解决方法:把json.dumps()中的内容numpy转为 int类型。

猜你喜欢

转载自blog.csdn.net/be_humble/article/details/130762451
今日推荐