Spaces:
Sleeping
Sleeping
debug: Gallery component expects an iterable
Browse files
app.py
CHANGED
@@ -151,8 +151,7 @@ with gr.Blocks(css=custom_css) as interface:
|
|
151 |
t1.join()
|
152 |
t2.join()
|
153 |
image1, text, image2 = results[0]
|
154 |
-
|
155 |
-
return (image1, text), netron_html, image2
|
156 |
|
157 |
# Run button click
|
158 |
run_button.click(
|
|
|
151 |
t1.join()
|
152 |
t2.join()
|
153 |
image1, text, image2 = results[0]
|
154 |
+
return [(image1, text)], netron_html, [image2]
|
|
|
155 |
|
156 |
# Run button click
|
157 |
run_button.click(
|