weights = {
# 5x5 conv, 1 input, 32 outputs
'wc1': tf.Variable(tf.random_normal([5, 5, 1, 32])),
# 5x5 conv, 32 inputs, 64 outputs
'wc2': tf.Variable(tf.random_normal([5, 5, 32, 64])),
# fully connected, 7*7*64 inputs, 1024 outputs
'wd1': tf.Variable(tf.random_normal([7*7*64, 1024])),
# 1024 inputs, 10 outputs (class prediction)
'out': tf.Variable(tf.random_normal([1024, num_classes]))
}
私の質問は: はどのように私はそれが第三第二の最初の層では32、64および1024です。この場合には、機能/チャネル出力の数を計算するのですか?そして、私がCNNに32,64,1024以上の数を加えた場合、どのような効果がありますか?このCNNモデルのCNN:理解重み出力チャネル引数