TypeError: Object of type 'float32' is not JSON serializable解决方案_typeerror: object of type float32 is not json seri-CSDN博客

网站介绍:文章浏览阅读1.7w次,点赞11次,收藏8次。这个报错一般是使用json.dumps时遇到的,其实就是格式问题。网上搜了下,感觉他们的解决方法都太复杂,这里就提供两个简单有效的思路吧。使用np.float()将要存的数据转换为float64型。在json.dumps()之前添加str()转换成字符串。..._typeerror: object of type float32 is not json serializable