C3W3 course Exercise 02.
please fix the issue…
use tf.math.reduce_sum
on negative_zero_on_duplicate
for axis=1
and divide it by (batch_size - 1)
mean_negative = tf.reduce_sum(negative_zero_on_duplicate, axis=0) / (batch_size - 1)
I’m not receiving the right response when I use axis = 1, despite the instructions saying to use axis = 1.when axis = 0 to zero was applied. I have the right response. Kindly correct the instructions.