Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
import streamlit as st | |
from st_aggrid import AgGrid, GridOptionsBuilder | |
import pandas as pd | |
def show_table(p1_df, p2_df): | |
st.write("------------------") | |
p1_df = p1_df.reset_index(drop=True) | |
p2_df = p2_df.reset_index(drop=True) | |
actual_ind = 0 | |
for i in range(len(p1_df) - 1, -1, -2): # stepsize because project matchs in both ways and it should only display a match one time | |
actual_ind += 1 | |
match_df = pd.DataFrame() | |
row_from_p1 = p1_df.iloc[[i]] | |
row_from_p2 = p2_df.iloc[[i]] | |
# transform strings to list | |
row_from_p1["crs_3_code_list"] = [row_from_p1['crs_3_code'].item().split(";")[:-1]] | |
row_from_p2["crs_3_code_list"] = [row_from_p2['crs_3_code'].item().split(";")[:-1]] | |
row_from_p1["crs_5_code_list"] = [row_from_p1['crs_3_code'].item().split(";")[:-1]] | |
row_from_p2["crs_5_code_list"] = [row_from_p2['crs_3_code'].item().split(";")[:-1]] | |
row_from_p1["sdg_list"] = [row_from_p1['sgd_pred_code'].item()] | |
row_from_p2["sdg_list"] = [row_from_p2['sgd_pred_code'].item()] | |
# Correctly append rows to match_df | |
st.subheader(f"#{actual_ind}") | |
st.caption(f"Similarity: {round(row_from_p1['similarity'].item(), 4) * 100}%") | |
match_df = pd.concat([row_from_p1, row_from_p2], ignore_index=True) | |
#AgGrid(match_df) | |
st.dataframe( | |
match_df[["iati_id", "title_main", "orga_abbreviation", "client", "description_main", "country", "sdg_list", "crs_3_code_list", "crs_5_code_list"]], | |
use_container_width = True, | |
height = 35 + 35 * len(match_df), | |
column_config={ | |
""" | |
"similarity": st.column_config.TextColumn( | |
"Similarity", | |
help="simialrity", | |
disabled=True | |
), | |
""" | |
"iati_id": st.column_config.TextColumn( | |
"IATI ID", | |
help="IATI Project ID", | |
disabled=True | |
), | |
"orga_abbreviation": st.column_config.TextColumn( | |
"Organization", | |
help="If description not in English, description in other language provided", | |
disabled=True | |
), | |
"client": st.column_config.TextColumn( | |
"Client", | |
help="Client organization of customer", | |
disabled=True | |
), | |
"title_main": st.column_config.TextColumn( | |
"Title", | |
help="If title not in English, title in other language provided", | |
disabled=True | |
), | |
"description_main": st.column_config.TextColumn( | |
"Description", | |
help="If description not in English, description in other language provided", | |
disabled=True | |
), | |
"country": st.column_config.TextColumn( | |
"Country", | |
help="Country of project", | |
disabled=True | |
), | |
"sdg_list": st.column_config.ListColumn( | |
"SDG Prediction", | |
help="Prediction of SDG's", | |
), | |
"crs_3_code_list": st.column_config.ListColumn( | |
"CRS 3", | |
help="CRS 3 code given by organization", | |
), | |
"crs_5_code_list": st.column_config.ListColumn( | |
"CRS 5", | |
help="CRS 5 code given by organization" | |
), | |
}, | |
hide_index=True, | |
) | |
st.write("------------------") |