Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ weights_path = keras.utils.get_file(
|
|
21 |
pokemon_model = keras_cv.models.StableDiffusion(
|
22 |
img_width=img_width, img_height=img_height
|
23 |
)
|
24 |
-
pokemon_model.diffusion_model.load_weights(
|
25 |
|
26 |
pokemon_model.diffusion_model.compile(jit_compile=True)
|
27 |
pokemon_model.decoder.compile(jit_compile=True)
|
|
|
21 |
pokemon_model = keras_cv.models.StableDiffusion(
|
22 |
img_width=img_width, img_height=img_height
|
23 |
)
|
24 |
+
pokemon_model.diffusion_model.load_weights(weights_path)
|
25 |
|
26 |
pokemon_model.diffusion_model.compile(jit_compile=True)
|
27 |
pokemon_model.decoder.compile(jit_compile=True)
|