np.add.at(img, (slice(None), z, y, x), cols_reshaped)
img
是4d
cols_reshaped
是2d
z
,y
,x
都是2d
答案 0 :(得分:0)
截至2018年3月,在切片操作和变异方面,Tensorflow比numpy更受限制。 Tensorflow张量是不可变的(有助于区分),因此如果要改变变量,则需要使用变量。我认为你可以通过链接tf的strided_slice和strided_slice_assign功能来模拟这个。