I need to assign zero to Tensorflow variable as seen below. Is it possible to do that? What should I do?
layer = tf.nn.sigmoid(tf.add(tf.matmul(x, h), b))
layer[0] = 0
In the example above, I want to set zero value to the first index of the variable calculated by multiplying x matrix and h vector.