user12
user12

Reputation: 761

Interpreting fully connected layer in convolutional Neural network architecture

I am trying to interpret this neural network architecture

3×3×32 Convolutional 2×2 MaxPool Dropout 3×3×64 Convolutional 2×2 MaxPool Dropout Flatten 1 × 128 Full connected Dropout 128 × 10 Fully connected Softmax

i am confused here 1 × 128 Full connected and 128 × 10 Fully connected what does it means?

Upvotes: 0

Views: 268

Answers (1)

Uchiha012
Uchiha012

Reputation: 851

After using the flattening operation, the output will be (None, x)

Next in the 128 node fully connected(FC) layer, x is passed through each of the 128 neurons (nodes)

Finally, each of the 128 node's output are passed to 10 node FC layer with softmax activation

Here is a visualization, hope it helps

Similar Architecture

Upvotes: 1

Related Questions