import streamlit as st
def app():
with open('style.css') as f:
st.markdown(f"", unsafe_allow_html=True)
st.markdown("
Policy Action Tracker
",
unsafe_allow_html=True)
st.markdown("The Policy Action Tracker is an open-source\
digital tool which aims to assist policy analysts and \
other users in extracting and filtering relevant \
information from policy documents.
",
unsafe_allow_html=True)
footer = """
"""
st.markdown(footer, unsafe_allow_html=True)
c1, c2, c3 = st.columns([8,1,12])
with c1:
st.image("docStore/img/ndc.png")
with c3:
st.markdown('The manual extraction \
of relevant information from text documents is a \
time-consuming task for any policy analyst. As the amount and length of \
public policy documents in relation to sustainable development (such as \
National Development Plans and Nationally Determined Contributions) \
continuously increases, a major challenge for policy action tracking – the \
evaluation of stated goals and targets and their actual implementation on \
the ground – arises. Luckily, Artificial Intelligence (AI) and Natural \
Language Processing (NLP) methods can help in shortening and easing this \
task for policy analysts.
',
unsafe_allow_html=True)
intro = """
For this purpose, the United Nations Sustainable Development Solutions \
Network (SDSN) and the Deutsche Gesellschaft für Internationale \
Zusammenarbeit (GIZ) GmbH are collaborated in the development \
of this AI-powered open-source web application that helps find and extract \
relevant information from public policy documents faster to facilitate \
evidence-based decision-making processes in sustainable development and beyond.
This tool allows policy analysts and other users the possibility to rapidly \
search for relevant information/paragraphs in the document according to the \
user’s interest, classify the document’s content according to the Sustainable \
Development Goals (SDGs), and compare climate-related policy documents and NDCs \
across countries using open data from the German Institute of Development and \
Sustainability’s (IDOS) NDC Explorer.
To understand the application's functionalities and learn more about ß
the project, see the attached concept note. We hope you like our application 😊
"""
st.markdown(intro, unsafe_allow_html=True)
# st.image("docStore/img/paris.png")