Update app.py
Browse files
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 |
|