Spaces:
Runtime error
Runtime error
Rename app.py to image_summary_demo.py
Browse files
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 |
-
|
45 |
-
if __name__ == "__main__":
|
46 |
|
47 |
-
|
|
|
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)
|