Update app.py
Browse files
app.py
CHANGED
@@ -9,9 +9,11 @@ def classify(text):
|
|
9 |
label = model(text)[0]["label"]
|
10 |
return label
|
11 |
|
12 |
-
description = "This AI model is trained to classify texts expressing human emotion into
|
13 |
-
title = "
|
14 |
-
examples = [["
|
|
|
|
|
15 |
|
16 |
gr.Interface(fn=classify,
|
17 |
inputs="textbox",
|
|
|
9 |
label = model(text)[0]["label"]
|
10 |
return label
|
11 |
|
12 |
+
description = "This AI model is trained to classify texts expressing human emotion into different categories."
|
13 |
+
title = "Xoxo's Texts Expressing Emotion"
|
14 |
+
examples = [["He is very happy Today",
|
15 |
+
"NOTE Free Palestien"]]
|
16 |
+
|
17 |
|
18 |
gr.Interface(fn=classify,
|
19 |
inputs="textbox",
|