Update app_matching_page.py
Browse filesAdd Dokumenation and Prototyp Disclaimer
- app_matching_page.py +8 -4
app_matching_page.py
CHANGED
@@ -222,7 +222,7 @@ def show_landing_page():
|
|
222 |
|
223 |
st.subheader("About")
|
224 |
st.markdown("""
|
225 |
-
Multiple international organizations have projects in the same field and region. These projects could collaborate or learn from each other to increase their impact if they were aware of one another. The Project Synergy Finder facilitates the search for similar projects across different development organizations and banks in three distinct ways.
|
226 |
st.markdown("<br><br>", unsafe_allow_html=True) # Add two line breaks
|
227 |
|
228 |
st.subheader("Pages")
|
@@ -242,9 +242,9 @@ def show_landing_page():
|
|
242 |
|
243 |
st.subheader("Data")
|
244 |
st.markdown("""
|
245 |
-
**IATI Data**: The data is sourced from the [IATI d-portal](https://d-portal.org/), providing
|
246 |
|
247 |
-
**Data Update**: The data is updated irregularly, with the last retrieval on 10th May 2024.
|
248 |
|
249 |
**Project Data**: Includes Project Title, Description, URL, Country, and Sector classification (CRS). The CRS5 and CRS3 classifications organize development aid into categories, with the 5-digit level providing more specific details within the broader 3-digit categories.
|
250 |
|
@@ -465,6 +465,8 @@ def show_single_matching_page():
|
|
465 |
- Matching of SDGs (AI-predicted).
|
466 |
- Matching of CRS-3 & CRS-5 sector codes.
|
467 |
- Components are weighted to give a normalized score.
|
|
|
|
|
468 |
""")
|
469 |
|
470 |
col1, col2, col3 = st.columns([10, 1, 10])
|
@@ -647,7 +649,9 @@ def show_multi_matching_page():
|
|
647 |
- Text similarity of project description and title (MiniLMM & Cosine Similiarity).
|
648 |
- Matching of SDGs (AI-predicted).
|
649 |
- Matching of CRS-3 & CRS-5 sector codes.
|
650 |
-
- Components are weighted to give a normalized score.
|
|
|
|
|
651 |
""")
|
652 |
col1, col2, col3 = st.columns([10, 1, 10])
|
653 |
with col1:
|
|
|
222 |
|
223 |
st.subheader("About")
|
224 |
st.markdown("""
|
225 |
+
Multiple international organizations have projects in the same field and region. These projects could collaborate or learn from each other to increase their impact if they were aware of one another. The Project Synergy Finder facilitates the search for similar projects across different development organizations and banks in three distinct ways. Note that this app is a prototype, results may be incomplete or inaccurate. """)
|
226 |
st.markdown("<br><br>", unsafe_allow_html=True) # Add two line breaks
|
227 |
|
228 |
st.subheader("Pages")
|
|
|
242 |
|
243 |
st.subheader("Data")
|
244 |
st.markdown("""
|
245 |
+
**IATI Data**: The data is sourced from the [IATI d-portal](https://d-portal.org/), providing project-level information. The International Aid Transparency Initiative (IATI) aims to enhance transparency and effectiveness in development cooperation by making data publicly accessible.
|
246 |
|
247 |
+
**Data Update**: The data is updated irregularly, with the last retrieval on 10th May 2024. Currently, data from projects labeled as active during the last data retrieval are included.
|
248 |
|
249 |
**Project Data**: Includes Project Title, Description, URL, Country, and Sector classification (CRS). The CRS5 and CRS3 classifications organize development aid into categories, with the 5-digit level providing more specific details within the broader 3-digit categories.
|
250 |
|
|
|
465 |
- Matching of SDGs (AI-predicted).
|
466 |
- Matching of CRS-3 & CRS-5 sector codes.
|
467 |
- Components are weighted to give a normalized score.
|
468 |
+
|
469 |
+
Note that this app is a prototype, results may be incomplete or inaccurate.
|
470 |
""")
|
471 |
|
472 |
col1, col2, col3 = st.columns([10, 1, 10])
|
|
|
649 |
- Text similarity of project description and title (MiniLMM & Cosine Similiarity).
|
650 |
- Matching of SDGs (AI-predicted).
|
651 |
- Matching of CRS-3 & CRS-5 sector codes.
|
652 |
+
- Components are weighted to give a normalized score.
|
653 |
+
|
654 |
+
Note that this app is a prototype, results may be incomplete or inaccurate.
|
655 |
""")
|
656 |
col1, col2, col3 = st.columns([10, 1, 10])
|
657 |
with col1:
|