Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
r-o-y-a
/
emoroberta
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
42b1dd5
emoroberta
/
app.py
r-o-y-a
Update app.py
34d1e2f
over 1 year ago
raw
Copy download link
history
blame
Safe
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()