import gradio as gr | |
def textclassifer(text): | |
return "hello" | |
interface=gr.Interface(fn=textclassifer,inputs='text',outputs='text') | |
interface.launch() |
import gradio as gr | |
def textclassifer(text): | |
return "hello" | |
interface=gr.Interface(fn=textclassifer,inputs='text',outputs='text') | |
interface.launch() |