Spaces:
Runtime error
Runtime error
Roland Szabo commited on
Commit ·
3b5be8d
1
Parent(s): 4f57761
Fix title
Browse files
app.py
CHANGED
|
@@ -35,7 +35,7 @@ def greet(model_type, text):
|
|
| 35 |
|
| 36 |
|
| 37 |
demo = gr.Interface(fn=greet, inputs=[gr.Radio(["Spacy", "Roberta", "AWS Comprehend"]), "text"],
|
| 38 |
-
outputs="highlight", title="
|
| 39 |
-
description=f"
|
| 40 |
|
| 41 |
demo.launch()
|
|
|
|
| 35 |
|
| 36 |
|
| 37 |
demo = gr.Interface(fn=greet, inputs=[gr.Radio(["Spacy", "Roberta", "AWS Comprehend"]), "text"],
|
| 38 |
+
outputs="highlight", title="NER Comparison",
|
| 39 |
+
description=f"Compare the NER outputs of Spacy, HuggingFace Roberta and AWS Comprehend",)
|
| 40 |
|
| 41 |
demo.launch()
|