kavg commited on
Commit
61eaaa0
1 Parent(s): 39c0e48

Update app.py

Browse files

set debug=True and changed output type

Files changed (1) hide show
  1. app.py +2 -2
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(), share=True)
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)