...

/

Keras: TensorFlow's Model-Building API

Keras: TensorFlow's Model-Building API

Learn about the TensorFlow's Keras model-building API.

Keras was developed as a separate library that provides high-level building blocks to build models conveniently. It was initially platform agnostic and supported many softwares (for example, TensorFlow and Theano).

However, TensorFlow acquired Keras, and now Keras is an integral part of TensorFlow for building models effortlessly.

APIs provided by Keras

Keras’s primary focus is model building. For that, Keras provides several different APIs with varying degrees of flexibility and complexity. Choosing the right API for the job will require a sound knowledge of the limitations of each API as well as experience. The APIs provided by Keras are:

  • Sequential API: This is the most ...