analytics-jiten commited on
Commit
7ff115a
·
1 Parent(s): 6cb821c

Update home.py

Browse files
Files changed (1) hide show
  1. home.py +2 -2
home.py CHANGED
@@ -4,11 +4,11 @@ from PIL import Image
4
  def run():
5
  # Add Picture
6
  image = Image.open('facial_expressions.jpg')
7
- st.image(image, caption='Facial Emotions/Expressions Detection')
8
  # Title
9
  st.title('About This Project')
10
  st.markdown('---')
11
- st.write('###### The Facial Emotions/Expressions Detection tool is a tool to predict/detect the facial expressions/emotions of an image uploaded of a person, backed by a machine learning model, using Keras Framework/API. It classify the expressions into eight categories of facial emotions: Contempt, happy, sad, disgust, angry, neutral, fear and surprised.')
12
  st.markdown('---')
13
 
14
 
 
4
  def run():
5
  # Add Picture
6
  image = Image.open('facial_expressions.jpg')
7
+ st.image(image, caption='Facial Emotions/Expressions Recognition')
8
  # Title
9
  st.title('About This Project')
10
  st.markdown('---')
11
+ st.write('###### The Facial Emotions/Expressions Recognition tool is a tool to recognize the facial expressions/emotions of an image uploaded of a person, backed by a machine learning model, using Keras Framework/API. It classify the expressions into eight categories of facial emotions: Contempt, happy, sad, disgust, angry, neutral, fear and surprised.')
12
  st.markdown('---')
13
 
14