anton-l HF staff commited on
Commit
4d53ef2
β€’
1 Parent(s): 385ad2c

Fix models counter

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -146,7 +146,8 @@ st.sidebar.image("logo.png", width=200)
146
  st.markdown("# The πŸ€— Speech Bench")
147
 
148
  st.markdown(
149
- f"This is a leaderboard of **{len(dataframe)}** speech recognition models and **{len(dataframe['dataset'].unique())}** datasets.\n\n"
 
150
  "β¬… Please select the language you want to find a model for from the dropdown on the left."
151
  )
152
 
 
146
  st.markdown("# The πŸ€— Speech Bench")
147
 
148
  st.markdown(
149
+ f"This is a leaderboard of **{dataframe['model_id'].nunique()}** speech recognition models "
150
+ f"and **{dataframe['dataset'].nunique()}** datasets.\n\n"
151
  "β¬… Please select the language you want to find a model for from the dropdown on the left."
152
  )
153