Question: Create a basic CNN model in Keras with the following specifications: Input shape: ( 2 8 , 2 8 , 1 ) 2 D Convolutional

Create a basic CNN model in Keras with the following specifications:
Input shape: (28,28,1)
2D Convolutional layer with 32 filters, kernel size of (3,3), and relu activation.
MaxPooling2D layer with pool size of (2,2).
Flatten layer to convert the 2D output into a 1D vector.
Dense layer with 128 units and relu activation.
Output layer with 10 units and softmax activation.
What is the total number of parameters in the model when it is modeled using Keras/TensorFlow?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!