Spaces:
Runtime error
Runtime error
Amir Zait
commited on
Commit
•
2d31a01
1
Parent(s):
b5cd199
bugfix
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ def generate_image(text):
|
|
53 |
condition_scale=cond_scale,
|
54 |
)
|
55 |
encoded_images = encoded_images.sequences[..., 1:]
|
56 |
-
decoded_images = vqgan.
|
57 |
decoded_images = decoded_images.clip(0.0, 1.0).reshape((-1, 256, 256, 3))
|
58 |
img = decoded_images[0]
|
59 |
return Image.fromarray(np.asarray(img * 255, dtype=np.uint8))
|
|
|
53 |
condition_scale=cond_scale,
|
54 |
)
|
55 |
encoded_images = encoded_images.sequences[..., 1:]
|
56 |
+
decoded_images = vqgan.decode_code(encoded_images, vqgan.params)
|
57 |
decoded_images = decoded_images.clip(0.0, 1.0).reshape((-1, 256, 256, 3))
|
58 |
img = decoded_images[0]
|
59 |
return Image.fromarray(np.asarray(img * 255, dtype=np.uint8))
|