brendenc commited on
Commit
98434b6
·
1 Parent(s): 86cb70f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -127,7 +127,12 @@ with demo:
127
  However, VQ-VAEs latent space is **discrete** rather than continuous. Below, we can view how well this model compresses and reconstructs MNIST digits, but more importantly, we can see a
128
  discretized latent representation. These discrete representations can then be paired with a network like PixelCNN to generate novel images.
129
 
130
- VQ-VAEs are one of the tools used by DALL-E and are some of the only models that perform on par with VAEs but with a discrete latent space.""")
 
 
 
 
 
131
 
132
  with gr.Row():
133
  with gr.Column():
 
127
  However, VQ-VAEs latent space is **discrete** rather than continuous. Below, we can view how well this model compresses and reconstructs MNIST digits, but more importantly, we can see a
128
  discretized latent representation. These discrete representations can then be paired with a network like PixelCNN to generate novel images.
129
 
130
+ VQ-VAEs are one of the tools used by DALL-E and are some of the only models that perform on par with VAEs but with a discrete latent space.
131
+ For more information check out this [paper](https://arxiv.org/abs/1711.00937) and
132
+ [example](https://keras.io/examples/generative/vq_vae/).
133
+ Full Credits for this example go to [Sayak Paul](https://twitter.com/RisingSayak).
134
+ Model card can be found [here](https://huggingface.co/brendenc/VQ-VAE)
135
+ Demo by [Brenden Connors](https://www.linkedin.com/in/brenden-connors-6a0512195)
136
 
137
  with gr.Row():
138
  with gr.Column():