November 2021
Intermediate to advanced
504 pages
15h 55m
English
This chapter covers
Sequential class, the Functional API, and model subclassingYou’ve now got some experience with Keras—you’re familiar with the Sequential model, Dense layers, and built-in APIs for training, evaluation, and inference—compile(), fit(), evaluate(), and predict(). You even learned in chapter 3 how to inherit from the Layer class to create custom layers, and how to use the TensorFlow GradientTape to implement a step-by-step training loop.
In the coming chapters, ...