Reputation: 5833
Based on the following tutorial:
https://www.tensorflow.org/versions/v0.6.0/tutorials/mnist/pros/index.html#deep-mnist-for-experts
Where is the 32
as the number of features in 1st layer of CNN for MNIST coming from?
And where is the 64
as the number of features in 2nd layer coming from?
Upvotes: 2
Views: 176
Reputation: 31
32 and 64 are the number of filters, they are hyper parameters set by hand just like the numbers of neurons of a full connected DNN network.
Upvotes: 0