Autoencoders are unsupervised learning algorithm. Unlike other algorithms, autoencoders learn to reconstruct the input, that is, an autoencoder takes the input and learns to reproduce the input as an output. We start the chapter by understanding what are autoencoders and how exactly they reconstruct the input. Then, we will learn how autoencoders reconstruct MNIST images.
Going ahead, we will learn about the different variants of autoencoders; first, we will learn about convolutional autoencoders (CAEs), which use convolutional layers; then, we will learn about how denoising autoencoders (DAEs) which learn to remove noise in the input. After this, we will understand sparse autoencoders and how they learn from sparse inputs. At the end of the chapter, we will learn about an interesting generative type of autoencoders called variational autoencoders...