Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,6 +18,6 @@ with gr.Blocks() as demo:
|
|
| 18 |
with gr.Row():
|
| 19 |
inp = gr.Image(type='pil')
|
| 20 |
out = gr.Textbox(placeholder=image_to_text(inp))
|
| 21 |
-
gr.Interface(fn=image_to_text, inputs=inp, outputs=[out])
|
| 22 |
|
| 23 |
demo.launch()
|
|
|
|
| 18 |
with gr.Row():
|
| 19 |
inp = gr.Image(type='pil')
|
| 20 |
out = gr.Textbox(placeholder=image_to_text(inp))
|
| 21 |
+
gr.Interface(fn=image_to_text, inputs=inp, outputs=[out],interpretation="default")
|
| 22 |
|
| 23 |
demo.launch()
|