janaab commited on
Commit
a69fdf3
·
verified ·
1 Parent(s): d82751e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,13 +38,13 @@ interface = gr.Interface(
38
  fn=highlight_errors,
39
  inputs=["text", "text"],
40
  outputs=[
41
- gr.HTML(label="Highlighted Transcript with Legend"),
42
  gr.Number(label="Word Error Rate"),
43
  gr.Number(label="Substitutions"),
44
  gr.Number(label="Insertions"),
45
  gr.Number(label="Deletions")
46
  ],
47
- title="WER Calculator with Error Highlighting and Legend"
48
  )
49
 
50
  interface.launch()
 
38
  fn=highlight_errors,
39
  inputs=["text", "text"],
40
  outputs=[
41
+ gr.HTML(label="Highlighted Transcript"),
42
  gr.Number(label="Word Error Rate"),
43
  gr.Number(label="Substitutions"),
44
  gr.Number(label="Insertions"),
45
  gr.Number(label="Deletions")
46
  ],
47
+ title="WER Analysis"
48
  )
49
 
50
  interface.launch()