tomofi commited on
Commit
9406ee5
·
1 Parent(s): 0d6a678

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ def inference(filepath):
5
  return os.popen(f'ssocr -D-1 -t 70 {filepath}').read().strip()
6
 
7
  title = "Seven Segment Optical Character Recognition"
8
- description = "Gradio demo for SSOCR.Seven Segment Optical Character Recognition or ssocr for short is a program to recognize digits of a seven segment display. An image of one row of digits is used for input and the recognized number is written to the standard output."
9
  article = "<p style='text-align: center'><a href='https://www.unix-ag.uni-kl.de/~auerswal/ssocr/' target='_blank'>SSOCR</a> | <a href='https://github.com/auerswal/ssocr' target='_blank'>Github Repo</a></p>"
10
  gr.Interface(
11
  inference,
 
5
  return os.popen(f'ssocr -D-1 -t 70 {filepath}').read().strip()
6
 
7
  title = "Seven Segment Optical Character Recognition"
8
+ description = "Gradio demo for SSOCR. Seven Segment Optical Character Recognition or ssocr for short is a program to recognize digits of a seven segment display. An image of one row of digits is used for input and the recognized number is written to the standard output."
9
  article = "<p style='text-align: center'><a href='https://www.unix-ag.uni-kl.de/~auerswal/ssocr/' target='_blank'>SSOCR</a> | <a href='https://github.com/auerswal/ssocr' target='_blank'>Github Repo</a></p>"
10
  gr.Interface(
11
  inference,