emoroberta / app.py
r-o-y-a's picture
Update app.py
34d1e2f
raw
history blame
209 Bytes
import gradio
def my_inference_function(text):
return text
gr = gradio.Interface(
fn = my_inference_function,
inputs = "text",
outputs = "text"
)
gr.load("models/arpanghoshal/EmoRoBERTa").launch()