vq-vae / README.md
brendenc's picture
Update README.md
88bbcd1
metadata
library_name: keras
tags:
  - feature extraction
  - autoencoder

Vector-Quantized Variational Autoencoders (VQ-VAE)

Model description

Learning latent space representations of data remains to be an important task in machine learning. This model, the Vector-Quantized Variational Autoencoder (VQ-VAE) builds upon traditional VAEs in two ways.

  • The encoder network outputs discrete, rather than continous, codes.
  • The prior is learned rather than static.

To learn discrete latent representations, ideas from vector quantisation (VQ) are used. Using the VQ method allows the model to avoid issues of "posterior collapse". By pairing these representations with an autoregressive prior, VQ-VAE models can generate high quality images, videos, speech as well as doing high quality speaker conversion and unsupervised learning of phonemes, providing further evidence of the utility of the learnt representations.

Further learning

This model has been trained using code from this example, and a result of this paper.

Model

Below we have a graphic from the paper above, showing the VQ-VAE model architecture. [!VQ-VAE Model](

Intended uses & limitations

This model is intended to be used for educational purposes. To train your own VQ-VAE model, follow along with this example

Training and evaluation data

This model is trained using the popular MNIST dataset. This dataset can be found/used with the following command

keras.datasets.mnist.load_data()

Hyperparameters

The model was trained usign the following

  • Latent Dimension = 16
  • Number of Embeddings = 128
  • Epochs = 30

The author of the example encourages toying with both the number and size of the embeddings to see how it affects the results.

Reconstruction

Below, we can see a few examples of MNIST digits being reconstructed after passing through our model.