Jan Mühlnikel commited on
Commit
8118f8d
1 Parent(s): c8bd695

text instead of codes as crs

Browse files
Files changed (1) hide show
  1. similarity_page.py +18 -16
similarity_page.py CHANGED
@@ -138,15 +138,16 @@ embeddings = load_embeddings_and_index()
138
 
139
  def show_multi_matching_page():
140
  #st.write(f"Current RAM usage of this app: {get_process_memory():.2f} MB")
141
- st.write(" ")
142
- st.caption("""
143
- The Multi-Project Matching Feature uncovers synergy opportunities among various development banks and organizations by facilitating the search for
144
- similar projects within a selected filter setting. This innovative tool leverages an AI-driven similarity score to compare all available projects
145
- against those meeting the filter criteria, identifying potential matches that may not directly qualify under the selected filter settings.
146
- It integrates projects listed in the IATI database from leading organizations, including BMZ, KfW, GIZ, IAD, ADB, AfDB, EIB, WB, WBTF, and the German
147
- Federal Foreign Office (AA), offering a comprehensive platform for enhancing collaboration and maximizing the impact of development efforts.
148
- """)
149
- st.write("----------------------")
 
150
 
151
  col1, col2, col3 = st.columns([10, 1, 10])
152
  with col1:
@@ -273,13 +274,14 @@ def show_multi_matching_page():
273
 
274
  def show_single_matching_page():
275
 
276
- st.caption("""
277
- Single Project Matching empowers you to choose an individual project using either the project IATI ID or title, and then unveils the top 10 projects
278
- that bear the closest resemblance to your selected one. This selection is refined using a sophisticated AI algorithm that evaluates similarity based
279
- on several key dimensions: Sustainable Development Goals (SDG), Creditor Reporting System (CRS) codes, and textual analysis of project titles and
280
- descriptions.
281
- """)
282
- st.write("---------")
 
283
 
284
  col1, col2 = st.columns([11, 20])
285
  with col1:
 
138
 
139
  def show_multi_matching_page():
140
  #st.write(f"Current RAM usage of this app: {get_process_memory():.2f} MB")
141
+ #st.write(" ")
142
+ with st.popover("Info"):
143
+ st.caption("""
144
+ The Multi-Project Matching Feature uncovers synergy opportunities among various development banks and organizations by facilitating the search for
145
+ similar projects within a selected filter setting. This innovative tool leverages an AI-driven similarity score to compare all available projects
146
+ against those meeting the filter criteria, identifying potential matches that may not directly qualify under the selected filter settings.
147
+ It integrates projects listed in the IATI database from leading organizations, including BMZ, KfW, GIZ, IAD, ADB, AfDB, EIB, WB, WBTF, and the German
148
+ Federal Foreign Office (AA), offering a comprehensive platform for enhancing collaboration and maximizing the impact of development efforts.
149
+ """)
150
+ st.write("----------------------")
151
 
152
  col1, col2, col3 = st.columns([10, 1, 10])
153
  with col1:
 
274
 
275
  def show_single_matching_page():
276
 
277
+ with st.popover("Info"):
278
+ st.caption("""
279
+ Single Project Matching empowers you to choose an individual project using either the project IATI ID or title, and then unveils the top 10 projects
280
+ that bear the closest resemblance to your selected one. This selection is refined using a sophisticated AI algorithm that evaluates similarity based
281
+ on several key dimensions: Sustainable Development Goals (SDG), Creditor Reporting System (CRS) codes, and textual analysis of project titles and
282
+ descriptions.
283
+ """)
284
+ st.write("---------")
285
 
286
  col1, col2 = st.columns([11, 20])
287
  with col1: