ValueError: could not broadcast input array from shape (0,) into shape (59360,)
时间: 2024-06-07 15:09:22 浏览: 112
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误通常是由于尝试将一个空数组广播到一个非空数组而引起的。可能的原因是你正在尝试将一个形状为 (0,) 的数组广播到一个形状为 (59360,) 的数组中,但这是不可能的。
你需要检查你的代码,找出产生空数组的地方,并确保在将其广播到其它数组之前,它们具有正确的形状和大小。你也可以使用 NumPy 提供的函数,例如 `np.expand_dims()` 或 `np.reshape()`,来调整数组的形状,以便使其与其它数组兼容。
阅读全文