sanchit-gandhi commited on
Commit
d585457
·
1 Parent(s): 78a5c08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -89,6 +89,8 @@ table = table.select_dtypes(exclude=['object', 'string']) # * 100
89
  table.insert(0, "name", name_column)
90
  table = table.round(2)
91
  table = table.rename(columns=COLUMN_NAMES)
 
 
92
 
93
  # Streamlit
94
  st.markdown("# ESC: A Benchmark For Multi-Domain End-to-End Speech Recognition")
 
89
  table.insert(0, "name", name_column)
90
  table = table.round(2)
91
  table = table.rename(columns=COLUMN_NAMES)
92
+ # start indexing from 1
93
+ table.index = table.index + 1
94
 
95
  # Streamlit
96
  st.markdown("# ESC: A Benchmark For Multi-Domain End-to-End Speech Recognition")