BhumikaMak commited on
Commit
e351749
·
verified ·
1 Parent(s): 5c82496

debug: Gallery component expects an iterable

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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
- print('print....', image1, text, image2)
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(