akar49 commited on
Commit
08f31f9
·
verified ·
1 Parent(s): 382c7c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -28,7 +28,20 @@ def predict(img):
28
  return [emotions, sentiments] #{**emotions, **sentiments}
29
 
30
  # Gradio
31
- title = "Facial Emotion and Sentiment Detector"
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  enable_queue=True
34
 
 
28
  return [emotions, sentiments] #{**emotions, **sentiments}
29
 
30
  # Gradio
31
+ title = "Facial Emotion and Sentiment Detector"
32
+
33
+ description = gr.Markdown(
34
+ """Choose a face image""").value
35
+
36
+ article = gr.Markdown(
37
+ """
38
+ Positive (Happy, Surprise)
39
+
40
+ Negative (Angry, Disgust, Fear, Sad)
41
+
42
+ Neutral (Neutral)
43
+
44
+ **MODEL:** VGG19 """).value
45
 
46
  enable_queue=True
47