ae14a0c f9b14e7 ae14a0c f9b14e7 ae14a0c
1
2
3
4
5
6
7
import gradio as gr def textclassifer(text): return "hello" interface=gr.Interface(fn=textclassifer,inputs='text',outputs='text') interface.launch()