Simple Autoencoder
If you look long enough into the autoencoder, it looks back at you. The Autoencoder is a fun deep learning model to look into. Its goal is simple: given an input image, we would like to have the same output image. It’s sort of an identity function for deep learning models, but it is composed of two parts: an encoder and decoder, with the encoder translating the images to a latent space representation and the encoder translating that back to a regular images that we can view. ...