typeerror: object of type tensor is not json serializable
时间: 2023-04-29 08:00:54 浏览: 330
Python 出现错误TypeError: ‘NoneType’ object is not iterable解决办法
5星 · 资源好评率100%
这个错误是因为你试图将一个Tensor类型的对象序列化为JSON格式,但是Tensor类型不支持JSON序列化。你需要将Tensor类型转换为Python原生类型(如列表或字典)才能进行JSON序列化。
阅读全文