ipvikas commited on
Commit
afe1df2
·
1 Parent(s): 31e1d2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def get_quote(image_1):
48
  #import gradio as gr
49
  title = "Image to text generation"
50
 
51
- demo = gr.Interface(fn=get_quote, inputs = "image", outputs=['text'],title = title, description = "Import an image file and get text from it" ,cache_examples=False).launch(debug = True)
52
  if __name__ == "__main__":
53
 
54
  demo.launch()
 
48
  #import gradio as gr
49
  title = "Image to text generation"
50
 
51
+ demo = gr.Interface(fn=get_quote, inputs = "image", outputs=['text'],title = title, description = "Import an image file and get text from it" ,cache_examples=False, enable_queue=True).launch()
52
  if __name__ == "__main__":
53
 
54
  demo.launch()