mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
cc0cff893f
- black formatting - isort formatting
25 lines
682 B
Python
25 lines
682 B
Python
import re
|
|
|
|
import gradio as gr
|
|
|
|
male_words, female_words = ["he", "his", "him"], ["she", "hers", "her"]
|
|
|
|
|
|
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}
|
|
|
|
|
|
iface = gr.Interface(
|
|
fn=gender_of_sentence,
|
|
inputs=gr.inputs.Textbox(default="She went to his house to get her keys."),
|
|
outputs="label",
|
|
interpretation="default",
|
|
)
|
|
if __name__ == "__main__":
|
|
iface.launch()
|