Category: Autoencoder Neural Networks

Autoencoder Neural Networks use an encoder and decoder. The encoder creates a latent space that the decoder then uses to generate the original image. There are various types of autoencoder neural networks like Convolutional Autoencoder, Variational Autoencoder, Denoising Autoencoder, etc.

Generating Fictional Celebrity Faces using Convolutional Variational Autoencoder and PyTorch

Generating Fictional Celebrity Faces using Convolutional Variational Autoencoder and PyTorch

This article explains how to use a deep learning neural network model to generate fictional celebrity faces. In particular, we use a convolutional variational autoencoder model to generate and train it on a real life celebrity images dataset. Then we try to generate fictional celebrity faces using this deep learning model. ...

Sparse Autoencoders using KL Divergence with PyTorch

Sparse Autoencoders using KL Divergence with PyTorch

In this tutorial, we will learn about sparse autoencoder neural networks using KL divergence. We will also implement sparse autoencoder neural networks using KL divergence with the PyTorch deep learning library. In the last tutorial, Sparse Autoencoders using L1 Regularization with PyTorch, we discussed sparse autoencoders using L1 regularization. We also learned how to code […] ...