You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 17 in capsnet.py, shouldn't it be : scalar_factor = vector_squared_norm / ((1 + vector_squared_norm) / tf.sqrt(vector_squared_norm + epsilon))
instead of scalar_factor = vector_squared_norm / ((1 + vector_squared_norm) * tf.sqrt(vector_squared_norm + epsilon)) NOTE : changes from multiplication to division.
Because, from the paper, we have
Line 17 in capsnet.py, shouldn't it be :
scalar_factor = vector_squared_norm / ((1 + vector_squared_norm) / tf.sqrt(vector_squared_norm + epsilon))
instead of
scalar_factor = vector_squared_norm / ((1 + vector_squared_norm) * tf.sqrt(vector_squared_norm + epsilon))
NOTE : changes from multiplication to division.
Because, from the paper, we have
which means
The text was updated successfully, but these errors were encountered: