Roland Szabo commited on
Commit
3b5be8d
1 Parent(s): 4f57761
Files changed (1) hide show
  1. app.py +2 -2
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="Key Matcher",
39
- description=f"Find the best match for a key from the list of ",)
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()