标签: python tensorflow keras keras-layer keras-2
我需要完成一个Keras自定义图层。输入为10点的10(x,y)坐标。输入张量为in_tensor (?, 2, 10)。 out_tensor (?, 32, 32)还有另一个张量。我需要使用out_tensor中的坐标更新in_tensor。例如,如果(2, 10)中有一个in,则需要将out_tensor的(2,10)元素更新为1.0。应该有10个更新。
in_tensor
(?, 2, 10)
out_tensor
(?, 32, 32)
(2, 10)
in
如何在喀拉拉邦张量中做?谢谢