93a5fd8 be12486 dba7f31 93a5fd8 dba7f31 93a5fd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()