欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python ValueError: The truth value of an array with more than one element is ambiguous.

程序员文章站 2022-05-27 12:49:40
...
  1. 问题代码
predict_scores = predictions["scores"].to("cpu").numpy()
for i in len(predictions["scores"]):

原因:具有多个元素的数组的真值是不明确的

  1. 解决方案
for i in range(len(predictions["scores"]))
相关标签: python python