MikeTangoEcho commited on
Commit
f09d2ab
1 Parent(s): 79c8857

feat: update app

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -119,7 +119,7 @@ asrner_app = gr.Interface(
119
  outputs=[
120
  gr.HighlightedText()
121
  ],
122
- title="ASRNERSBX",
123
  description=(
124
  "Transcribe, Tokenize, Classify"
125
  ),
@@ -134,7 +134,7 @@ ner_app = gr.Interface(
134
  outputs=[
135
  gr.HighlightedText()
136
  ],
137
- title="NERSBX",
138
  description=(
139
  "Tokenize, Classify"
140
  ),
@@ -146,6 +146,10 @@ gradio_app = gr.TabbedInterface(
146
  asrner_app,
147
  ner_app
148
  ],
 
 
 
 
149
  title="ASRNERSBX"
150
  )
151
 
 
119
  outputs=[
120
  gr.HighlightedText()
121
  ],
122
+ title="ASR>NER",
123
  description=(
124
  "Transcribe, Tokenize, Classify"
125
  ),
 
134
  outputs=[
135
  gr.HighlightedText()
136
  ],
137
+ title="NER",
138
  description=(
139
  "Tokenize, Classify"
140
  ),
 
146
  asrner_app,
147
  ner_app
148
  ],
149
+ tab_names=[
150
+ asrner_app.title,
151
+ ner_app.title
152
+ ],
153
  title="ASRNERSBX"
154
  )
155