File size: 693 Bytes
e25eb00
 
 
 
 
d291235
b8f575b
e25eb00
 
 
b8f575b
e25eb00
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import streamlit as st
from PIL import Image

def run():
    # Add Picture
    image = Image.open('facial_expressions.jpg')
    st.image(image, caption='Facial Emotions/Expressions Detection')
    # Title
    st.title('About This Project')
    st.markdown('---')
    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, anger, neutral, feat and surprised.')
    st.markdown('---')
    


if __name__ == '__main__':
    run()