KrispyKarim commited on
Commit
1dab31a
·
verified ·
1 Parent(s): a6c2ded

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +40 -19
app.py CHANGED
@@ -1,28 +1,49 @@
1
  import streamlit as st
2
  import pandas as pd
3
 
4
- #from Pages.Sentiment_Analysis import Sentiment_Analysis
5
- #from Pages.Topic_Modeling import Topic_Modeling
6
- #from Pages.Research_Insights import Research_Insights
7
- #from Pages.Team import Team
8
- #from Pages.Contact import Contact
 
 
 
 
 
 
 
9
 
10
- st.title("Topic Modeling to Determine Climate Anxiety Among Youth")
 
 
 
 
 
 
 
 
 
 
11
 
12
- st.header("Our Mission and Plan", divider='red')
 
13
 
14
- st.markdown("Welcome to [Climate Resilience Communities'](https://crc.place/) Climate Anxiety Detection Project! Our mission is to leverage cutting-edge technology to understand and address the growing issue of climate anxiety among youth. In our first phase, we are using BERTopic to analyze posts made by youth on platforms like X (formerly Twitter) and Reddit, focusing on climate change, mental health, and environmental concerns.")
15
- st.markdown('Climate change is not only a global environmental challenge but also a significant source of anxiety among youth. The emotional and psychological toll of climate change is increasingly evident as youth express concerns about their future, the state of the planet, and the lack of meaningful action from those in power. Despite the prevalence of climate anxiety, there is a lack of comprehensive understanding regarding how it manifests in youth. Furthermore, there are limited tools available for early detection and intervention. Without timely support, the mental health issues related to climate anxiety can intensify, potentially affecting youth well-being in profound ways.')
16
- st.markdown('Through our in-depth analysis, we aim to identify key trends, emotional responses, and common concerns expressed by youth online. By uncovering these patterns, we can provide a clearer picture of how climate anxiety is impacting their mental health. Our goal is not just to quantify the rising anxiety surrounding the climate crisis but to provide actionable insights that can inform mental health initiatives, community support programs, and policy decisions.')
17
- st.markdown('We hypothesize that by uncovering common themes, concerns, and expressions related to climate anxiety, and by developing a robust NLP-based or LLM-based model to accurately identify instances of anxiety and interpret the linguistic cues indicative of such feelings, we can create early detection tools and recommend interventions that effectively address climate anxiety. This, in turn, will allow us to better support youth, improving their mental health and well-being in the face of environmental challenges.')
18
- st.markdown('By focusing on the voices of youth, we empower individuals, organizations, and governments to take targeted action in supporting the mental well-being of the next generation. The insights from this project will guide the development of practical support mechanisms and resilience-building strategies.')
19
- st.markdown('The successful execution of this project will provide insights into the manifestation of climate anxiety among youth and help develop a scalable, open-source tool for early detection and intervention. This tool will be equipped with an interactive interface to visualize and implement insights, ensuring accessibility and widespread adoption. Ultimately, our work aims to mitigate the adverse effects of climate anxiety, fostering resilience and well-being in youth as they navigate an uncertain future.')
20
- st.markdown('Join us in this vital conversation and help us build resilient communities equipped to handle the emotional and psychological impacts of climate change.')
21
 
 
22
 
23
- st.header("About The Project")
 
 
 
24
 
25
- st.markdown("Project Background: Explanation of the climate anxiety issue, its growing significance among youth, and the need for intervention.")
26
- st.markdown("Research Approach: Overview of your methodology, including the use of BERT and LDA for topic modeling, the data sources (e.g., social media posts from X and Reddit), and the first phase of the project.")
27
- st.markdown("Goals & Impact: Discuss the potential impact of the project: understanding trends, early detection tools, and the development of interventions.")
28
- st.markdown("Expected Outcomes: Clear articulation of the deliverables, including the open-source tool for early detection and intervention and its potential adoption.")
 
 
 
 
 
 
1
  import streamlit as st
2
  import pandas as pd
3
 
4
+ # Function for the "Mission and Plan" page
5
+ def mission_and_plan():
6
+ st.title("Topic Modeling to Determine Climate Anxiety Among Youth")
7
+ "Topic Modeling to Determine Climate Anxiety Among Youth"
8
+ st.header("Our Mission and Plan", divider='red')
9
+ st.markdown("Welcome to [Climate Resilience Communities'](https://crc.place/) Kids Help Phone Project! Our mission is to leverage cutting-edge technology to understand and address the growing issue of climate anxiety among youth. In our first phase, we are using BERTopic to analyze posts made by youth on platforms like X (formerly Twitter) and Reddit, focusing on climate change, mental health, and environmental concerns.")
10
+ st.markdown('Climate change is not only a global environmental challenge but also a significant source of anxiety among youth. The emotional and psychological toll of climate change is increasingly evident as youth express concerns about their future, the state of the planet, and the lack of meaningful action from those in power. Despite the prevalence of climate anxiety, there is a lack of comprehensive understanding regarding how it manifests in youth.')
11
+ st.markdown('Through our in-depth analysis, we aim to identify key trends, emotional responses, and common concerns expressed by youth online. By uncovering these patterns, we can provide a clearer picture of how climate anxiety is impacting their mental health.')
12
+ st.markdown('We hypothesize that by uncovering common themes, concerns, and expressions related to climate anxiety, and by developing a robust NLP-based or LLM-based model to accurately identify instances of anxiety and interpret the linguistic cues indicative of such feelings, we can create early detection tools and recommend interventions that effectively address climate anxiety. This, in turn, will allow us to better support youth, improving their mental health and well-being in the face of environmental challenges.')
13
+ st.markdown('By focusing on the voices of youth, we empower individuals, organizations, and governments to take targeted action in supporting the mental well-being of the next generation. The insights from this project will guide the development of practical support mechanisms and resilience-building strategies.')
14
+ st.markdown('The successful execution of this project will provide insights into the manifestation of climate anxiety among youth and help develop a scalable, open-source tool for early detection and intervention.')
15
+ st.markdown('Join us in this vital conversation and help us build resilient communities equipped to handle the emotional and psychological impacts of climate change.')
16
 
17
+ # Function for the "About The Project" page
18
+ def about_the_project():
19
+ st.title("About The Project")
20
+ st.header("Project Background")
21
+ st.markdown("Explanation of the climate anxiety issue, its growing significance among youth, and the need for intervention.")
22
+ st.header("Research Approach")
23
+ st.markdown("Overview of your methodology, including the use of BERT and LDA for topic modeling, the data sources (e.g., social media posts from X and Reddit), and the first phase of the project.")
24
+ st.header("Goals & Impact")
25
+ st.markdown("Discuss the potential impact of the project: understanding trends, early detection tools, and the development of interventions.")
26
+ st.header("Expected Outcomes")
27
+ st.markdown("Clear articulation of the deliverables, including the open-source tool for early detection and intervention and its potential adoption.")
28
 
29
+ def data_intro():
30
+ st.title("Data Introduction")
31
 
32
+ st.header("Collection")
 
 
 
 
 
 
33
 
34
+ st.header("Cleaning")
35
 
36
+ sidebar_pages = ["Mission and Plan", "About The Project", "Data Introduction"]
37
+ def main(): # Main function to display the app
38
+ st.sidebar.title("Navigation") # Sidebar with navigation options
39
+ page = st.sidebar.selectbox("Select a page:", sidebar_pages)
40
 
41
+ if page == "Mission and Plan":
42
+ mission_and_plan()
43
+ elif page == "About The Project":
44
+ about_the_project()
45
+ elif page == "Data Introduction":
46
+ data_intro()
47
+
48
+ if __name__ == "__main__":
49
+ main()