gpt4 book ai didi

python - numpy 划分的问题

转载 作者:太空宇宙 更新时间:2023-11-04 01:10:46 25 4
gpt4 key购买 nike

我正在尝试使用 numpy divide 对数组执行除法,我有两个数组,我这样调用它:

log_norm_images = np.divide(diff_images, b_0)

我得到错误:

operands could not be broadcast together with shapes (96,96,55,64) (96,96,55).

这些分别是 ndarray 的形状。

现在,在我的 python shell 中,我执行以下测试:

 x = np.random.rand((100, 100, 100))
y = np.random.rand((100, 100))

np.divide(x, y)

运行没有任何错误。我不确定为什么这行得通,而不是我的情况。

最佳答案

您正在尝试将 4 维数组与 3 维数组一起广播。基于 NumPy 的广播行为,只有当每个对应维度的维度相等或其中之一为 1 时,这才会成功。这就是它不匹配的原因:

Your 4-D array:  96 x 96 x 55 x 64
Your 3-D array: 96 x 96 x 55
^ ^
Mismatching dimensions

如果您将 3-D 数组(我想不再是 3-D)填充/ reshape 为明确具有形状 (96, 96, 55, 1),则您的操作可能会起作用。然后它看起来像:

Your 4-D array:  96 x 96 x 55 x 64
Your 3-D array: 96 x 96 x 55 x 1
^
This is acceptable for the broadcast behavior

SciPy/NumPy 文档的链接对此进行了更详细的介绍:

http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html

关于python - numpy 划分的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27842229/

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