gradio/demo/longest_word/run.py

20 lines
370 B
Python
Raw Normal View History

2021-05-24 23:31:44 +08:00
import gradio as gr
2021-05-24 23:31:44 +08:00
def longest_word(text):
words = text.split(" ")
lengths = [len(word) for word in words]
return max(lengths)
2021-05-24 23:31:44 +08:00
ex = "The quick brown fox jumped over the lazy dog."
iface = gr.Interface(
longest_word, "textbox", "label", interpretation="default", examples=[[ex]]
)
2021-05-24 23:31:44 +08:00
iface.test_launch()
if __name__ == "__main__":
iface.launch()