1
を放送割り当てるtensorflowのいずれかの方法は、現在のソリューションは、他のすべてのを繰り返すかもしれない私のために行列に放送割り当て(tf.Variable)次のコードのような 何か....tensorflow変数は
a = tf.Variable(np.zeros([10,10,10,10], np.int32))
# creating a mask and trying to assign the 2nd, 3rd dimension of a
mask = tf.ones([10,10])
# 1) which is work in this case, but only assign one block
op = a[0,:,:,0].assign(mask)
# 2) attempting to broadcasting while not work, size mismatch
op = a[0].assign(mask)
を達成することができています1) のようにネストされたループに悩まされているかもしれません。
素敵な何かトリックを!ありがとう!それは本当にきれいです。 –