File size: 2,096 Bytes
ab5430a
 
 
 
 
 
 
88bbcd1
 
ab5430a
88bbcd1
 
 
 
 
ab5430a
88bbcd1
 
ab5430a
88bbcd1
 
 
ab5430a
 
88bbcd1
ab5430a
 
 
88bbcd1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
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"](https://datascience.stackexchange.com/questions/48962/what-is-posterior-collapse-phenomenon). 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](https://keras.io/examples/generative/vq_vae/), and a result of this [paper.](https://arxiv.org/pdf/1711.00937.pdf)

## 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](https://keras.io/examples/generative/vq_vae/)

## 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.