gpt4 book ai didi

python - 类型错误 : 'numpy.float32' object is not iterable

转载 作者:太空宇宙 更新时间:2023-11-03 14:24:46 24 4
gpt4 key购买 nike

我有一系列概率:

proba =  :[[0.254 0.556 0.025] [0.898 0567 .112]]

想要每个最大值为[[0.556] [0.898]]

我该怎么做?尝试了2种方法:

 1. max(sublist) for sublist in proba 
2. proba = map(max,proba)

并收到错误“TypeError:'numpy.float32'对象不可迭代”

有什么建议吗?

最佳答案

我注意到你的代码中存在一些问题,首先,您的数据列表的格式不正确,缺少逗号,等号右侧多了一个 ':'

proba = [[0.254, 0.556, 0.025], [0.898, 0.567, .112]] 

然后你可以得到这样的答案:

max_ = [max(i) for i in proba]

关于python - 类型错误 : 'numpy.float32' object is not iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47717999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com