December 2018
Intermediate to advanced
274 pages
7h 46m
English
Once the data preparation is completed, the next step is to define the model and create it, so let's create the model:
model_m = Sequential()
The preceding line will create a sequential model that will process the layers in the sequential way they are arranged. There are two ways to build Keras models, sequential and functional:
model_m.add(Conv2D(32, (5, 5), input_shape=(1,28,28), ...
Read now
Unlock full access