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
Hi, many thanks you share your code. But can you explain why you use tf.divide after you get the outer product. What's the purpose of using it and the following step, please.
The text was updated successfully, but these errors were encountered:
tf.divide is used to average the summation we get after the outer product. when we take an outer product of two filters with size 28x28, it is multiplying 28x28(784) values with other 28x28(784) values. Dividing by 784 helps to keep values small.
Hi, many thanks you share your code. But can you explain why you use tf.divide after you get the outer product. What's the purpose of using it and the following step, please.
The text was updated successfully, but these errors were encountered: