maximuspowers commited on
Commit
5dfca2c
·
verified ·
1 Parent(s): 7cd8165

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -60,8 +60,8 @@ def predict_ner_tags(sentence):
60
  # Gradio Interface
61
  iface = gr.Interface(
62
  fn=predict_ner_tags,
63
- inputs="text",
64
- outputs=gr.outputs.HTML(label="Highlighted Sentence"),
65
  title="Social Bias Named Entity Recognition (with BERT) 🕵",
66
  description=("Enter a sentence to predict biased parts of speech tags. This model uses multi-label BertForTokenClassification, to label the entities: (GEN)eralizations, (UNFAIR)ness, and (STEREO)types. Labels follow BIO format. Try it out :)."
67
  "<br><br>Read more about how this model was trained in this <a href='https://huggingface.co/blog/maximuspowers/bias-entity-recognition' target='_blank'>blog post</a>."
 
60
  # Gradio Interface
61
  iface = gr.Interface(
62
  fn=predict_ner_tags,
63
+ inputs=gr.Textbox(label="Input Sentence"),
64
+ outputs=gr.HTML(label="Highlighted Sentence"),
65
  title="Social Bias Named Entity Recognition (with BERT) 🕵",
66
  description=("Enter a sentence to predict biased parts of speech tags. This model uses multi-label BertForTokenClassification, to label the entities: (GEN)eralizations, (UNFAIR)ness, and (STEREO)types. Labels follow BIO format. Try it out :)."
67
  "<br><br>Read more about how this model was trained in this <a href='https://huggingface.co/blog/maximuspowers/bias-entity-recognition' target='_blank'>blog post</a>."