ipvikas commited on
Commit
5da80f1
·
verified ·
1 Parent(s): ae7024e

Rename app.py to image_summary_demo.py

Browse files
Files changed (1) hide show
  1. app.py → image_summary_demo.py +3 -3
app.py → image_summary_demo.py RENAMED
@@ -41,7 +41,7 @@ def get_quote(image):
41
  #1: Text to Speech
42
  title = "Sentence, listing all the items present in the image file"
43
 
44
- demo = gr.Interface(fn=get_quote, inputs=gr.inputs.Image(type="pil"), outputs=['text'],title = title, description = "Upload an image file and get text from it" ,cache_examples=False, enable_queue=True).launch()
45
- if __name__ == "__main__":
46
 
47
- demo.launch(debug=True, cache_examples=True)
 
41
  #1: Text to Speech
42
  title = "Sentence, listing all the items present in the image file"
43
 
44
+ image_summary_demo = gr.Interface(fn=get_quote, inputs=gr.inputs.Image(type="pil"), outputs=['text'],title = title, description = "Upload an image file and get text from it" ,cache_examples=False, enable_queue=True).launch()
45
+ # if __name__ == "__main__":
46
 
47
+ # demo.launch(debug=True, cache_examples=True)