MurDanya commited on
Commit
2c37fc0
·
verified ·
1 Parent(s): af315b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -62,6 +62,7 @@ if st.button("Classify"):
62
  })
63
 
64
  df = pd.DataFrame(results)
 
65
 
66
- st.markdown("### 🧠 Top 95% Predicted Topics")
67
- st.dataframe(df, use_container_width=True)
 
62
  })
63
 
64
  df = pd.DataFrame(results)
65
+ df.index += 1
66
 
67
+ st.markdown("### Top 95% Predicted Topics")
68
+ st.table(df)