Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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="
|
64 |
-
outputs=gr.
|
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>."
|