What's the difference in adding methods to TensorFlow?
1 answer
From tensorflow documentation here :
Unlike tf.add, the offset type can be different from the value when both are quantized.
tf.add
is a common addition operation, whereas tf.nn.bias_add
should be used specifically to add bias to weights, which throws an exception if the dtypes do not match.
+1
source to share