Spaces:
Sleeping
Sleeping
Update app.py
Browse filesset debug=True and changed output type
app.py
CHANGED
@@ -17,5 +17,5 @@ def OCR(image):
|
|
17 |
|
18 |
return generated_text
|
19 |
|
20 |
-
demo = gr.Interface(fn=OCR, inputs=gr.Image(),outputs=gr.Textbox()
|
21 |
-
demo.launch()
|
|
|
17 |
|
18 |
return generated_text
|
19 |
|
20 |
+
demo = gr.Interface(fn=OCR, inputs=gr.Image(),outputs=gr.outputs.Textbox())
|
21 |
+
demo.launch(debug=True)
|