Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSimran Bansari
4,517 PointsGoogle colab, CNN classifier
def neural_model(): model = Sequential() model.add(Conv2D(60, (5, 5), input_shape = (32, 32, 1), activation = 'relu')) model.add(Conv2D(60, (5, 5), input_shape = (32, 32, 1), activation = 'relu')) model.add(MaxPooling2D(pool_size = (2,2)))
model.add(Conv2D(30, (3, 3), activation = 'relu'))
model.add(Conv2D(30, (3, 3), activation = 'relu'))
model.add(MaxPooling2D(pool_size = (2, 2)))
#model.add(Dropout(0.5))
model.add(Flatten())
model.add(Dense(500, activation = 'relu'))
model.add(Dropout(0.5))
model.add(Dense(num_classes, activation = 'softmax'))
model.compile(Adam(lr = 0.001), loss = 'categorical_crossentropy', metrics = ['accuracy'])
return model
what do these parts/layers specifically mean and what are they meant to do in the neural network?