gradio/demo/gender_sentence_custom_interpretation/run.py

43 lines
1.2 KiB
Python
Raw Normal View History

2021-05-24 23:31:44 +08:00
import re
import gradio as gr
2021-12-16 23:22:24 +08:00
male_words, female_words = ["he", "his", "him"], ["she", "hers", "her"]
2021-05-24 23:31:44 +08:00
def gender_of_sentence(sentence):
male_count = len([word for word in sentence.split() if word.lower() in male_words])
female_count = len(
[word for word in sentence.split() if word.lower() in female_words]
)
total = max(male_count + female_count, 1)
return {"male": male_count / total, "female": female_count / total}
2021-05-24 23:31:44 +08:00
def interpret_gender(sentence):
result = gender_of_sentence(sentence)
is_male = result["male"] > result["female"]
interpretation = []
for word in re.split("( )", sentence):
score = 0
token = word.lower()
if (is_male and token in male_words) or (not is_male and token in female_words):
score = 1
elif (is_male and token in female_words) or (
not is_male and token in male_words
):
score = -1
interpretation.append((word, score))
return interpretation
2021-05-24 23:31:44 +08:00
iface = gr.Interface(
fn=gender_of_sentence,
inputs=gr.inputs.Textbox(default="She went to his house to get her keys."),
outputs="label",
interpretation=interpret_gender,
enable_queue=True,
)
2021-05-24 23:31:44 +08:00
if __name__ == "__main__":
2021-12-16 23:22:24 +08:00
iface.launch()