Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Q2 By referring to Convolutional Neural Network (CNN) code in Figure Q2: (a) Illustrate the model structure with details of layer labelling (3 marks) (b)

image text in transcribedimage text in transcribed

Q2 By referring to Convolutional Neural Network (CNN) code in Figure Q2: (a) Illustrate the model structure with details of layer labelling (3 marks) (b) Analyze image output shape and its total trainable parameters for each stack of the CNN layer. (17 marks) cnn_model = models. Sequential() cnn_model.add(layers.Conv2D(32, (3,3), activation='relu', input_shape=(150,150,3))) cnn_model.add(layers.MaxPooling2D((2, 2))) cnn_model.add(layers.Conv2D(64, (3,3), activation='relu')) cnn_model.add(layers.MaxPooling2D((2,2))) cnn_model.add(layers.Conv2D(128, (3,3), activation='relu')) cnn_model.add(layers.MaxPooling2D((2,2))) cnn_model.add(layers.Conv2D(128, (3,3), activation='relu')) cnn_model.add(layers. MaxPooling2D((2,2))) cnn_model.add(layers. Flatten()) cnn_model.add(layers. Dense(512, activation='relu')) cnn_model.add(layers. Dense (1, activation='sigmoid')) Figure Q2 Q2 By referring to Convolutional Neural Network (CNN) code in Figure Q2: (a) Illustrate the model structure with details of layer labelling (3 marks) (b) Analyze image output shape and its total trainable parameters for each stack of the CNN layer. (17 marks) cnn_model = models. Sequential() cnn_model.add(layers.Conv2D(32, (3,3), activation='relu', input_shape=(150,150,3))) cnn_model.add(layers.MaxPooling2D((2, 2))) cnn_model.add(layers.Conv2D(64, (3,3), activation='relu')) cnn_model.add(layers.MaxPooling2D((2,2))) cnn_model.add(layers.Conv2D(128, (3,3), activation='relu')) cnn_model.add(layers.MaxPooling2D((2,2))) cnn_model.add(layers.Conv2D(128, (3,3), activation='relu')) cnn_model.add(layers. MaxPooling2D((2,2))) cnn_model.add(layers. Flatten()) cnn_model.add(layers. Dense(512, activation='relu')) cnn_model.add(layers. Dense (1, activation='sigmoid')) Figure Q2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

3319234609, 978-3319234601

More Books

Students also viewed these Databases questions