gradio/demo/longest_word/run.py
aliabid94 b4d9825409
Website: WIP (#328)
Ported gradio website into gradio repository, now launched as a docker service from gradio/website
2021-12-13 22:02:19 -08:00

17 lines
380 B
Python

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