BhumikaMak commited on
Commit
b97dffa
·
verified ·
1 Parent(s): 52e410c

resolved return args

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -150,8 +150,8 @@ with gr.Blocks(css=custom_css) as interface:
150
  t2.start()
151
  t1.join()
152
  t2.join()
153
- print(results)
154
- return results[0][:2], netron_html, results[0][2]
155
 
156
  # Run button click
157
  run_button.click(
 
150
  t2.start()
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(