MLPs with Keras

Keras (https://keras.io) is a high-level deep learning framework that works seamlessly with low-level deep learning backends such as TensorFlow, Theano, and Microsoft Cognitive Toolkit (CNTK). In Keras, a model is like a sequence of layers where each output is fed into the following computational block until the final layer is reached and the cost function can be evaluated and differentiated.

The generic structure of a model is as follows:

from keras.models import Sequentialmodel = Sequential()model.add(...)model.add(...)...model.add(...)

The Sequential class defines a generic empty sequential model that already implements all the methods needed to add layers, compile the model according to the underlying framework (that is, ...

Get Machine Learning Algorithms - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.