Skip to content

AxelNathanson/pytorch-Variational-Autoencoder

Repository files navigation

Beta-VAE implemented in Pytorch

In this repo, I have implemented two VAE:s inspired by the Beta-VAE [1]. One has a Fully Connected Encoder/decoder architecture and the other CNN. The networks have been trained on the Fashion-MNIST dataset. I have chosen the Fashion-MNIST because it's a relativly simple dataset that I should be able to recreate with a CNN on my own laptop (no GPU) as an exercise.

The models are avalible in models and the training has been performed in the two notebooks:

Both models have been trained with a 3-dimensional latent space, and a Beta<1. The CNN-model can recreate more details than the fully connected one, even though it only uses 0.05 as many parameters, clearly illustrating the advantage of using CNN:s when working with images.

Comparing the images samples from the latent space is however not very straight forward, since we do not know how the models represent the dataset. Our samples are drawn from a standard multivariate normal, we don't know if we are sampling in the middle of the model's representation of one particular label, or the middle of all of them. A logic next step is to explore the latent space to be able to create better-looking samples.

The Beta-parameter in the title is an added weight to the Kullback Leibler divergence term of the loss-function. The KL-term of the loss increases the more our latent space representation of the data diverges from a Standard multivariate normal distribution. In this project, and for this dataset, I have observed that a lower Beta-term has added more flexibility, leading to more separation in the dataset and a better recreation of the images. However, it is worth noting that I am also using a KL-penalty term, based on the size of the dataset to increase stability during training, so the KL-term is being scaled down always during training.

I have experimented with both MSE-loss + Tanh activation (used in the paper) and binary cross-entropy + sigmoid activation. So far, better results have been achieved with binary cross-entropy and sigmoid, but that is probably very problem-specific.

Fully connected encoder/decoder network

A model made out of fully connected networks has no problem learning a general representation of each label. However, I does not recreate details well. In general, it recreates each image as a standard representation of the pice of clothing rather than exact recreations. Bellow is a example generated with the Beta=0.1, where the right side are the real images, and the left the reconstructions.

Alt text

We don't train this kind of model only for the reconstruction, there are better-suited autoencoders for that. The strength here is the ability to now sample from the latent space and create new pieces of clothing.

The sampling is not as sharp as the reconstruction, but we can at least see some real clothes.

Alt text

CNN encoder/decoder network

As expected the CNN-architecture is able to capture more details, especially in the handbags. It is worth noting for example that we get more accurate colours in the recreations.

Alt text

When we generate new samples we see more diversity in the samples. More samples don't look like clothes at all, but the ones recreating garments show a bigger diversity.

Alt text

TODO

  • Optimize hyper-parameters for FC networks.
  • Optimize hyper-parameters for CNN networks.
  • Documentation.

References

[1] beta-VAE: Learning Basic Visual Concepts with a Constrained Variational Framework 2017.

Releases

No releases published

Packages

No packages published

Languages