yogeshjat's picture
first
ccab347
raw
history blame contribute delete
163 Bytes
import gradio as gr
from model import prediction
def predict(text):
return prediction(text)
gr.Interface(fn=predict, inputs="text", outputs="text").launch()