May 2020
Intermediate to advanced
404 pages
10h 52m
English
Now, we are ready to proceed with the creation of the neural network:
model = Sequential()
model.add(Conv2D(32, (3, 3), input_shape=(28,28,1)))
This adds a two-dimensional convolutional neuron layer to the network with an input shape that is the same as the shape of the images.
model.add(Activation('relu'))
Read now
Unlock full access