Spaces:
Running
Running
mj-new
commited on
Commit
·
561c769
1
Parent(s):
e86d857
Slighly updated main page
Browse files
app.py
CHANGED
|
@@ -189,7 +189,6 @@ with about:
|
|
| 189 |
st.markdown(ABOUT_INFO, unsafe_allow_html=True)
|
| 190 |
|
| 191 |
# Table - evaluated systems # TODO - change to concatenated table
|
| 192 |
-
st.header("Evaluated ASR systems")
|
| 193 |
dataset = "amu-cai/pl-asr-bigos-v2-secret"
|
| 194 |
split = "test"
|
| 195 |
df_per_sample, df_per_dataset = read_latest_results(dataset, split, codename_to_shortname_mapping=None)
|
|
@@ -204,11 +203,11 @@ with about:
|
|
| 204 |
|
| 205 |
df_evaluated_systems_types_and_count = df_evaluated_systems["Type"].value_counts().reset_index()
|
| 206 |
df_evaluated_systems_types_and_count.columns = ["Type", "Count"]
|
| 207 |
-
st.header("Number of evaluated
|
| 208 |
|
| 209 |
st.dataframe(df_evaluated_systems_types_and_count, hide_index=True, use_container_width=False)
|
| 210 |
|
| 211 |
-
st.header("
|
| 212 |
|
| 213 |
#TODO - add info who created the system (company, institution, team, etc.)
|
| 214 |
st.dataframe(df_evaluated_systems, hide_index=True, height = h_df_systems, use_container_width=True)
|
|
|
|
| 189 |
st.markdown(ABOUT_INFO, unsafe_allow_html=True)
|
| 190 |
|
| 191 |
# Table - evaluated systems # TODO - change to concatenated table
|
|
|
|
| 192 |
dataset = "amu-cai/pl-asr-bigos-v2-secret"
|
| 193 |
split = "test"
|
| 194 |
df_per_sample, df_per_dataset = read_latest_results(dataset, split, codename_to_shortname_mapping=None)
|
|
|
|
| 203 |
|
| 204 |
df_evaluated_systems_types_and_count = df_evaluated_systems["Type"].value_counts().reset_index()
|
| 205 |
df_evaluated_systems_types_and_count.columns = ["Type", "Count"]
|
| 206 |
+
st.header("Number of systems evaluated (freely and commercially available)")
|
| 207 |
|
| 208 |
st.dataframe(df_evaluated_systems_types_and_count, hide_index=True, use_container_width=False)
|
| 209 |
|
| 210 |
+
st.header("Detalied info about evaluated ASR systems")
|
| 211 |
|
| 212 |
#TODO - add info who created the system (company, institution, team, etc.)
|
| 213 |
st.dataframe(df_evaluated_systems, hide_index=True, height = h_df_systems, use_container_width=True)
|