Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Suzana
/
text_basic_emotions
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
e638383
text_basic_emotions
/
app.py
Suzana
Update app.py
e638383
over 2 years ago
raw
Copy download link
history
blame
Safe
224 Bytes
import
gradio
as
gr
examples = [
"I love you"
,
"I lost my wallet"
]
gr.Interface.load(
"huggingface/j-hartmann/emotion-english-distilroberta-base"
,
title=
"Basic emotion detection"
,
examples = examples
).launch();