Spaces:
Runtime error
Runtime error
John Doe
commited on
Commit
•
a1e91e3
1
Parent(s):
2ceaab0
fixing intermediate image type to pil
Browse files
app.py
CHANGED
@@ -224,7 +224,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
224 |
)
|
225 |
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
|
226 |
with gr.Column():
|
227 |
-
result_image = gr.Image(label="Intermediate Image Output", height=400)
|
228 |
result_video = gr.Video(label="Final Video Output", height=400)
|
229 |
|
230 |
inputs = [
|
|
|
224 |
)
|
225 |
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
|
226 |
with gr.Column():
|
227 |
+
result_image = gr.Image(label="Intermediate Image Output", type="pil", interactive=False, height=400)
|
228 |
result_video = gr.Video(label="Final Video Output", height=400)
|
229 |
|
230 |
inputs = [
|