Gradio
https://gyazo.com/7f891e9857359285bac8ba70786aca07
Build and share delightful machine learning apps, all in Python.
website
github
例:
code:python
import gradio as gr
def greet(name):
return f"Hello {name}!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()