Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -32,10 +32,10 @@ def ner(input):
|
|
32 |
|
33 |
gr.close_all()
|
34 |
demo = gr.Interface(fn=ner,
|
35 |
-
inputs=[gr.Textbox(label="Text to find
|
36 |
-
outputs=[gr.HighlightedText(label="Text with
|
37 |
title="Puncituation Predictor",
|
38 |
-
description="Find
|
39 |
allow_flagging="never",
|
40 |
examples=[])
|
41 |
demo.launch()
|
|
|
32 |
|
33 |
gr.close_all()
|
34 |
demo = gr.Interface(fn=ner,
|
35 |
+
inputs=[gr.Textbox(label="Text to find Punctuation", lines=2)],
|
36 |
+
outputs=[gr.HighlightedText(label="Text with Punct")],
|
37 |
title="Puncituation Predictor",
|
38 |
+
description="Find Puncituations using the `BERT-base` model under the hood!",
|
39 |
allow_flagging="never",
|
40 |
examples=[])
|
41 |
demo.launch()
|