2
I have exactly this scenario and I need to know how many connections this set has. I’ve looked in several places and I’m not sure of the answer. I mean, I don’t know how to calculate the number of connections in my network, this is not yet clear to me. What I have is exactly the following:
**Having bias on everything but input - Input: 784 - First Hidden layer - Output: 400 - Second Hidden layer - Output: 200 - Output layer - Output: 10
I would calculate this as follows: (784 * 400) + bias) + ((400 * 200) + bias) + ((200 * 10) + bias) = XXX
I don’t know if that’s right. I need help understanding how to solve this, and if it’s not just something mathematical, what’s the theory for doing this calculation?
Thank you.