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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -9
app.py CHANGED
@@ -48,14 +48,7 @@ def get_quote(image_1):
48
  #import gradio as gr
49
  title = "Image to text generation"
50
 
51
- demo = gr.Interface.load(
52
- fn=get_quote,
53
- inputs = "image",
54
- outputs=['text'],
55
- title = title,
56
- description = "Import an image file and get text from it" ,
57
- cache_examples=False
58
-
59
- )
60
  if __name__ == "__main__":
 
61
  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).launch(debug = True)
 
 
 
 
 
 
 
 
52
  if __name__ == "__main__":
53
+
54
  demo.launch()