Spaces:
Runtime error
Runtime error
Commit
ยท
4b616ca
1
Parent(s):
7c1f322
Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,9 @@ from transformers import pipeline
|
|
8 |
|
9 |
# Load pipeline
|
10 |
pipe_lr = joblib.load(open("emotion_detector_pipe_lr.pkl","rb"))
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
|
15 |
# Emojis
|
16 |
emotions_emoji_dict = {"anger":"๐ ","disgust":"๐คฎ", "fear":"๐จ๐ฑ", "joy":"๐ค", "neutral":"๐", "sadness":"๐", "shame":"๐ณ", "surprise":"๐ฎ"}
|
|
|
8 |
|
9 |
# Load pipeline
|
10 |
pipe_lr = joblib.load(open("emotion_detector_pipe_lr.pkl","rb"))
|
11 |
+
emoroberta_emotion_classifier = pipeline(
|
12 |
+
"text-classification", model="arpanghoshal/EmoRoBERTa", return_all_scores=True
|
13 |
+
)
|
14 |
|
15 |
# Emojis
|
16 |
emotions_emoji_dict = {"anger":"๐ ","disgust":"๐คฎ", "fear":"๐จ๐ฑ", "joy":"๐ค", "neutral":"๐", "sadness":"๐", "shame":"๐ณ", "surprise":"๐ฎ"}
|