SandraCLV commited on
Commit
073d0fd
·
1 Parent(s): 460a57d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()