Introduction

An overview of the multilayer perceptron neural network and deep learning in TensorFlow.

We'll cover the following...

In this chapter, you'll learn about one of the most essential neural networks used in deep learning: the multilayer perceptron. You'll also learn how to use the TensorFlow framework to manipulate this neural network model.

A. Multilayer perceptron

A multilayer perceptron (MLP) is used for a variety of tasks, such as stock analysis, spam detection, and election voting predictions. In this chapter and the next one, you'll ...