February 2019
Beginner to intermediate
308 pages
7h 42m
English
Before we start training our model, we need to define the parameters of the training process, which is done via the compile method.
There are three different parameters we need to define for the training process:
Then, we can run the compile() function as follows:
# Compile the modelmodel.compile(optimizer='adam', loss='binary_crossentropy', ...
Read now
Unlock full access