Building Autoencoders in Keras
blog.keras.io › building-autoencoders-in-kerasMay 14, 2016 · a simple autoencoder based on a fully-connected layer; a sparse autoencoder; a deep fully-connected autoencoder; a deep convolutional autoencoder; an image denoising model; a sequence-to-sequence autoencoder; a variational autoencoder; Note: all code examples have been updated to the Keras 2.0 API on March 14, 2017.
Building Autoencoders in Keras
https://blog.keras.io/building-autoencoders-in-keras.html14.05.2016 · In practical settings, autoencoders applied to images are always convolutional autoencoders --they simply perform much better. Let's implement one. The encoder will consist in a stack of Conv2D and MaxPooling2D layers (max pooling being used for spatial down-sampling), while the decoder will consist in a stack of Conv2D and UpSampling2D layers.