政策资讯

Policy Information


成功解决TypeError: Object of type 'ndarray' is not JSON serializable

来源: 重庆市软件正版化服务中心    |    时间: 2022-09-19    |    浏览量: 64496    |   

 

解决问题

TypeError: Object of type 'ndarray' is not JSON serializable

解决方法

  1. def default(self, obj):
  2. if isinstance(obj, (numpy.int_, numpy.intc, numpy.intp, numpy.int8,
  3. numpy.int16, numpy.int32, numpy.int64, numpy.uint8,
  4. numpy.uint16,numpy.uint32, numpy.uint64)):
  5. return int(obj)
  6. elif isinstance(obj, (numpy.float_, numpy.float16, numpy.float32,
  7. numpy.float64)):
  8. return float(obj)
  9. elif isinstance(obj, (numpy.ndarray,)): add this line
  10. return obj.tolist() add this line
  11. return json.JSONEncoder.default(self, obj)

成功解决!

评论

QQ咨询 扫一扫加入群聊,了解更多平台咨询
微信咨询 扫一扫加入群聊,了解更多平台咨询
意见反馈
立即提交
QQ咨询
微信咨询
意见反馈