Spaces:
Sleeping
Sleeping
Commit ·
9cde3c1
1
Parent(s): 5d154b2
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ if page == 'Home Page':
|
|
| 22 |
st.write('Name : Achmad Dhani')
|
| 23 |
st.write('Batch : HCK-009')
|
| 24 |
st.markdown('Dataset: [Emotion Dataset](https://www.kaggle.com/datasets/abdallahwagih/emotion-dataset)')
|
| 25 |
-
st.write(
|
| 26 |
st.write('')
|
| 27 |
st.caption('Please pick the options in the Select Page Box located on the left of the screen to start!')
|
| 28 |
st.write('')
|
|
@@ -31,14 +31,23 @@ if page == 'Home Page':
|
|
| 31 |
#============================= Background Info ==========================
|
| 32 |
|
| 33 |
with st.expander("Background Information"):
|
| 34 |
-
st.caption('
|
| 35 |
|
| 36 |
#============================= Work Flow ================================
|
| 37 |
|
| 38 |
with st.expander("Work Flow"):
|
| 39 |
st.caption(
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
)
|
| 43 |
|
| 44 |
#============================= Conclussion =================================
|
|
|
|
| 22 |
st.write('Name : Achmad Dhani')
|
| 23 |
st.write('Batch : HCK-009')
|
| 24 |
st.markdown('Dataset: [Emotion Dataset](https://www.kaggle.com/datasets/abdallahwagih/emotion-dataset)')
|
| 25 |
+
st.write("Objective : Mental health is important and a lot of people either doubt or confused regarding in what they are feeling. Validation helps as a reassurance for a lot of people, giving them affirmation by knowing that others shares those same feelings. Employing NLP machine learning with high accuracy will efficiently classify emotions in the hopes to make a person's day a brighter.")
|
| 26 |
st.write('')
|
| 27 |
st.caption('Please pick the options in the Select Page Box located on the left of the screen to start!')
|
| 28 |
st.write('')
|
|
|
|
| 31 |
#============================= Background Info ==========================
|
| 32 |
|
| 33 |
with st.expander("Background Information"):
|
| 34 |
+
st.caption("The dataset is obtained from keggle. It has 5937 entries with 2 object columns. The columns consist of data of people's comments and the respective emotion")
|
| 35 |
|
| 36 |
#============================= Work Flow ================================
|
| 37 |
|
| 38 |
with st.expander("Work Flow"):
|
| 39 |
st.caption(
|
| 40 |
+
'''
|
| 41 |
+
- Data loading from keggle
|
| 42 |
+
- Basic Analysis
|
| 43 |
+
- EDA on most common words
|
| 44 |
+
- Text processing in feature engineering
|
| 45 |
+
- Vectorization
|
| 46 |
+
- Building the models
|
| 47 |
+
- Tuning the models
|
| 48 |
+
- Inference
|
| 49 |
+
- Deployment
|
| 50 |
+
'''
|
| 51 |
)
|
| 52 |
|
| 53 |
#============================= Conclussion =================================
|