Spaces:
Runtime error
Runtime error
fixed a bug in examples
Browse files
app.py
CHANGED
|
@@ -123,5 +123,5 @@ text_input = gr.Textbox(label="Caption for image (Optional)")
|
|
| 123 |
iface = gr.Interface(fn=predict,
|
| 124 |
inputs=[image_input, text_input],
|
| 125 |
outputs=gr.Label(),
|
| 126 |
-
examples=["trump-fake.jpeg", "Donald Trump being arrested by authorities."])
|
| 127 |
iface.launch()
|
|
|
|
| 123 |
iface = gr.Interface(fn=predict,
|
| 124 |
inputs=[image_input, text_input],
|
| 125 |
outputs=gr.Label(),
|
| 126 |
+
examples=[["trump-fake.jpeg", "Donald Trump being arrested by authorities."]])
|
| 127 |
iface.launch()
|