Winston B commited on
Commit
c4ef28b
Β·
1 Parent(s): caa351c

Hide index part 2

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -545,7 +545,7 @@ with st.form("choose_model"):
545
  # Cache all DFs
546
  all_dfs = []
547
 
548
- st.dataframe(top_of_fold, use_container_width=True, hide_index=True)
549
 
550
  tab1, tab2, tab3, tab4 = st.tabs(["πŸ€– Stats", "✨ New Data", "πŸ“š Historical", "πŸ“Š Performance"])
551
 
 
545
  # Cache all DFs
546
  all_dfs = []
547
 
548
+ st.dataframe(top_of_fold.set_index('Confidence',drop=True), use_container_width=True)
549
 
550
  tab1, tab2, tab3, tab4 = st.tabs(["πŸ€– Stats", "✨ New Data", "πŸ“š Historical", "πŸ“Š Performance"])
551