Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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(
|
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()
|