File size: 1,074 Bytes
1b2ed5f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import streamlit as st

def bert_intro():
    st.title("Topic Modeling with BERT")
    st.markdown("BERT (BERTopic): Explanation of the advanced NLP technique used for analyzing the data, and its application in this project.")

    st.header("Process Flow: Step-by-step breakdown of the analysis process, from data gathering to insights extraction.")

def youth_classification():
    st.title("Youth Classification")

def sentiment_analysis():
    st.title("Sentiment Analysis")

def bert_topic_modeling():
    st.title("Topic Modeling")

sidebar_pages = ["Introduction", "Youth Classification", "Sentiment Analysis", "Topic Modeling"]
def main():
    st.sidebar.title("Navigation")
    page = st.sidebar.selectbox("Select page:", sidebar_pages)

    if page == "Introduction":
        bert_intro()
    elif page == "Youth Classification":
        youth_classification()
    elif page == "Sentiment Analysis":
        sentiment_analysis()
    elif page == "Topic Modeling":
        bert_topic_modeling()

if __name__ == "__main__":
    main()