作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在解析嵌套字典,它们具有不同程度的嵌套(字典中的字典中的字典等)我事先不知道字典嵌套的程度。
问题是,某些字典值是 numpy.ndarrays
.当我尝试写字典时 my_dictionary
到 JSON 与
with open(my_dictionary, 'w') as f:
json.dump(my_dictionary, f, indent=4)
我会收到以下错误:
TypeError: Object of type ndarray is not JSON serializable
当然,克服这个问题的一种方法是简单地转换所有
numpy.ndarray
值到一个列表中
.tolist()
.
ndarray
列出?
最佳答案
您可以定制json.JSONEncoder
.例如:
import json
class MyEncoder(json.JSONEncoder):
def default(self, obj):
if isinstance(obj, np.ndarray):
return obj.tolist()
return json.JSONEncoder.default(self, obj)
data = {"data": [{"obj": np.array([1, 2, 3])}]}
print(json.dumps(data, cls=MyEncoder, indent=4))
打印:
{
"data": [
{
"obj": [
1,
2,
3
]
}
]
}
关于python - 如何将字典中的嵌套 numpy 数组转换为 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67289440/
我是一名优秀的程序员,十分优秀!