Having established the fundamentals of TensorFlow tensors and operations, we now turn to constructing machine learning models. TensorFlow integrates Keras as its high-level Application Programming Interface (API), which simplifies the process of defining neural network architectures. This approach allows you to focus more on the model design rather than low-level operational details.
In this chapter, you will learn to:
Dense
, Conv2D
, Dropout
) and activation functions (such as ReLU, Sigmoid, Softmax) as building blocks.We will conclude by applying these concepts to construct a basic classification model, giving you practical experience with the Keras workflow from definition to instantiation.
3.1 Keras: TensorFlow's High-Level API
3.2 The Sequential Model API
3.3 Common Keras Layers
3.4 Activation Functions
3.5 The Functional API for Complex Models
3.6 Custom Layers and Models (Introduction)
3.7 Hands-on Practical: Building a Classifier
© 2025 ApX Machine Learning