Dricz commited on
Commit
7c8cc8a
1 Parent(s): 8db0e71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -140,9 +140,7 @@ video_iface = gr.Interface(
140
  )
141
 
142
 
143
- image_iface = gr.Interface(fn=response2, inputs=inputs, outputs=outputs,
144
- examples=examples,
145
- title=title, description=description, theme="dark")
146
 
147
  demo = gr.TabbedInterface([image_iface, video_iface], ["Image Inference", "Video Inference"])
148
 
 
140
  )
141
 
142
 
143
+ image_iface = gr.Interface(fn=response2, inputs=inputs, outputs=outputs, examples=examples, title=title, description=description, theme="dark")
 
 
144
 
145
  demo = gr.TabbedInterface([image_iface, video_iface], ["Image Inference", "Video Inference"])
146