Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,7 @@ import gradio as gr
|
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
import numpy as np
|
| 5 |
|
| 6 |
-
model = tf.saved_model.load('VQ-VAE')
|
| 7 |
|
| 8 |
class VectorQuantizer(tf.keras.layers.Layer):
|
| 9 |
def __init__(self, num_embeddings, embedding_dim, beta=0.25, **kwargs):
|
|
|
|
| 3 |
import matplotlib.pyplot as plt
|
| 4 |
import numpy as np
|
| 5 |
|
| 6 |
+
model = tf.saved_model.load('VQ-VAE-Model')
|
| 7 |
|
| 8 |
class VectorQuantizer(tf.keras.layers.Layer):
|
| 9 |
def __init__(self, num_embeddings, embedding_dim, beta=0.25, **kwargs):
|