Update app.py
Browse files
app.py
CHANGED
@@ -18,6 +18,5 @@ def launch(input):
|
|
18 |
|
19 |
description = "Simple BLIP test app for image captioning."
|
20 |
|
21 |
-
iface = gr.Interface(launch, description=description, outputs="text")
|
22 |
-
gr.inputs.File(file_count="multiple")
|
23 |
iface.launch()
|
|
|
18 |
|
19 |
description = "Simple BLIP test app for image captioning."
|
20 |
|
21 |
+
iface = gr.Interface(launch, description=description, inputs=gr.inputs.File(file_count="multiple"), outputs="text")
|
|
|
22 |
iface.launch()
|