taimoor61 commited on
Commit
c373dd3
·
1 Parent(s): f7c8f6a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
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 six categories: sadness, joy, love, anger, fear, and surprise."
13
- title = "Classify Texts Expressing Emotion"
14
- examples = [["This is such a beautiful place"]]
 
 
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",