leavoigt commited on
Commit
b719e26
1 Parent(s): a818baa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -6,7 +6,7 @@ import appStore.doc_processing as processing
6
  import appStore.vulnerability_analysis as vulnerability_analysis
7
  import appStore.target as target_analysis
8
 
9
- st.set_page_config(page_title = 'Vulnerability Analysis',
10
  initial_sidebar_state='expanded', layout="wide")
11
 
12
  with st.sidebar:
@@ -34,14 +34,15 @@ with st.container():
34
  with st.expander("ℹ️ - About this app", expanded=False):
35
  st.write(
36
  """
37
- The Vulnerability Analysis App is an open-source\
38
  digital tool which aims to assist policy analysts and \
39
  other users in extracting and filtering references \
40
  to different groups in vulnerable situations from public documents. \
41
  We use Natural Language Processing (NLP), specifically deep \
42
  learning-based text representations to search context-sensitively \
43
- for mentions of the special needs of groups in vulnerable situations
44
- to cluster them thematically.
 
45
  For more understanding on Methodology [Click Here](https://vulnerability-analysis.streamlit.app/)
46
  """)
47
 
@@ -53,6 +54,7 @@ with st.expander("ℹ️ - About this app", expanded=False):
53
  (based on word/sentence count).
54
  - Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
55
  the paragraph contains any or multiple references to vulnerable groups.
 
56
  """)
57
 
58
  st.write("")
 
6
  import appStore.vulnerability_analysis as vulnerability_analysis
7
  import appStore.target as target_analysis
8
 
9
+ st.set_page_config(page_title = 'Climate Vulnerability Analysis',
10
  initial_sidebar_state='expanded', layout="wide")
11
 
12
  with st.sidebar:
 
34
  with st.expander("ℹ️ - About this app", expanded=False):
35
  st.write(
36
  """
37
+ The Climate Vulnerability App is an open-source\
38
  digital tool which aims to assist policy analysts and \
39
  other users in extracting and filtering references \
40
  to different groups in vulnerable situations from public documents. \
41
  We use Natural Language Processing (NLP), specifically deep \
42
  learning-based text representations to search context-sensitively \
43
+ for mentions of the special needs of groups in vulnerable situations \
44
+ to cluster them thematically. The identified references are then provided \
45
+ as a summary, using a LLM chosen by the user.
46
  For more understanding on Methodology [Click Here](https://vulnerability-analysis.streamlit.app/)
47
  """)
48
 
 
54
  (based on word/sentence count).
55
  - Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
56
  the paragraph contains any or multiple references to vulnerable groups.
57
+ - Step 3: The identified references are then summarized using a LLM chosen by the user. \
58
  """)
59
 
60
  st.write("")