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